SPB Git

spb/lou-ka Public

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

HTML 99.7%

Expansion P2 — Estrie (15 connecteurs, +279 annonces)

Famille Houzez factorisée (dynamic -> gestimmo_estrie, agence_sherbrooke) ·
uptimo (51) · dynamic (49) · matinale (42, Crawl-Delay 20 respecté) ·
gestimmo (41) · montagnais (6 campus étudiants) · floria (Livya) + 8 autres.
6 non-connectables documentés (plateforme plogg morte, vitrines sans prix).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Simon-Pierre Boucher committed 2 days ago (Aug 9, 2026) parent 25b2275

Showing 58 changed files with +20,001 and −0

added louka/connectors/agence_sherbrooke.py +34 −0
@@ -0,0 +1,34 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/agence_sherbrooke.py : connecteur Agence de location Sherbrooke
5 +# (agencedelocationsherbrooke.com) — le portail d'annonces du groupe
6 +# Prestiplex (prestiplex.com n'affiche plus d'inventaire : son sitemap
7 +# property ne contient qu'une fiche de test). Sherbrooke, East Angus, Magog.
8 +# Même plateforme WordPress + thème Houzez que Gestion Dynamic : parsing
9 +# hérité de DynamicConnector. Particularités du site :
10 +# - la PAGE D'ACCUEIL est la page d'annonces (LIST_PATH = "/") ;
11 +# - la disponibilité est l'étiquette /label/ de la carte
12 +# (« Libre maintenant », « Juillet »…) ;
13 +# - l'adresse complète (Nominatim) est déjà sur la carte
14 +# (address.item-address) — ville/secteur en sont déduits.
15 +# -----------------------------------------------------------------------------
16 +from __future__ import annotations
17 +
18 +from .dynamic import DynamicConnector
19 +
20 +
21 +class AgenceSherbrookeConnector(DynamicConnector):
22 + source_id = "agence_sherbrooke"
23 +
24 + BASE = "https://agencedelocationsherbrooke.com"
25 + LIST_PATH = "/"
26 + CITY_DEFAULT = "Sherbrooke"
27 + max_pages = 6
28 +
29 + # -- crochets par site --------------------------------------------------------
30 + def _card_availability(self, card, title: str) -> str:
31 + """Agence : étiquette /label/ de la carte (« Libre maintenant »,
32 + « Juillet »…) — le lien /status/ porte plutôt le secteur."""
33 + label_el = card.select_one("a[href*='/label/']")
34 + return label_el.get_text(" ", strip=True) if label_el else ""
added louka/connectors/alouer_sherbrooke.py +178 −0
@@ -0,0 +1,178 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/alouer_sherbrooke.py : connecteur À Louer Sherbrooke
5 +# (alouersherbrooke.com) — 100+ logements dans 5 immeubles regroupés du
6 +# quartier Université (Sherbrooke) ; clientèle étudiants/professionnels/
7 +# retraités. WordPress (thème idconception) : la liste est servie par
8 +# admin-ajax `pagination-load-posts` (CPT appartements, 8 cartes/page,
9 +# pagination dans la réponse). Cartes : classe `dispo` (À louer, avec date
10 +# « À partir du … ») ou `loue` (Loué — exclues), grandeur (3½…), quartier,
11 +# inclusions et photo. Les fiches (via self.detail, cache BD) ajoutent la
12 +# description complète et la galerie. AUCUN prix ni adresse civique publiés
13 +# par la source (immeubles regroupés, quartier Université) — champs laissés
14 +# vides, rien d'inventé. external_id = slug du billet.
15 +# -----------------------------------------------------------------------------
16 +from __future__ import annotations
17 +
18 +import hashlib
19 +import re
20 +
21 +from bs4 import BeautifulSoup
22 +
23 +from ..schema import Listing, normalize_unit_type
24 +from .base import BaseConnector
25 +
26 +BASE = "https://www.alouersherbrooke.com"
27 +AJAX_URL = f"{BASE}/wp-admin/admin-ajax.php"
28 +
29 +_VARIANT_IMG = re.compile(r"-\d{2,4}x\d{2,4}(?=\.(?:jpg|jpeg|png|webp)$)", re.I)
30 +
31 +
32 +class AlouerSherbrookeConnector(BaseConnector):
33 + source_id = "alouer_sherbrooke"
34 + request_delay = 0.6
35 + max_pages = 12 # garde-fou (7 pages observées)
36 + max_details = 30 # garde-fou fiches détail (vraies requêtes)
37 +
38 + def _ajax_page(self, page: int) -> BeautifulSoup:
39 + resp = self.session.post(
40 + AJAX_URL,
41 + data={"page": str(page), "action": "pagination-load-posts"},
42 + timeout=self.timeout)
43 + resp.raise_for_status()
44 + return BeautifulSoup(resp.text, "html.parser")
45 +
46 + def fetch(self) -> list[Listing]:
47 + listings: dict[str, Listing] = {}
48 + for page in range(1, self.max_pages + 1):
49 + try:
50 + soup = self._ajax_page(page)
51 + except Exception:
52 + break
53 + cards = soup.select(".appartements__bloc")
54 + if not cards:
55 + break
56 + for card in cards:
57 + try:
58 + lst = self._parse_card(card)
59 + except Exception:
60 + continue
61 + if lst and lst.external_id not in listings:
62 + listings[lst.external_id] = lst
63 + # borne réelle de pagination (liens numériques de la réponse)
64 + nums = [int(a.get_text(strip=True))
65 + for a in soup.select(".cvf-universal-pagination li a")
66 + if a.get_text(strip=True).isdigit()]
67 + if nums and page >= max(nums):
68 + break
69 +
70 + # fiches détail (cache BD) : description + galerie
71 + self._fetched = 0
72 + for lst in listings.values():
73 + key = hashlib.sha1(
74 + f"{lst.title}|{lst.availability}|{lst.unit_type}"
75 + .encode("utf-8")).hexdigest()
76 + try:
77 + payload = self.detail(lst.external_id, key,
78 + lambda u=lst.url: self._fetch_detail(u))
79 + except Exception:
80 + continue
81 + if payload.get("description"):
82 + lst.description = payload["description"]
83 + if payload.get("images"):
84 + lst.images = list(dict.fromkeys(payload["images"] + lst.images))[:20]
85 + return list(listings.values())
86 +
87 + # -- carte AJAX -------------------------------------------------------------
88 + def _parse_card(self, card) -> Listing | None:
89 + classes = card.get("class") or []
90 + if "dispo" not in classes:
91 + return None # « loue » = logement loué, exclu
92 + link = card.select_one("a[href*='/appartements/']")
93 + if not link:
94 + return None
95 + url = link["href"].split("?")[0]
96 + m = re.search(r"/appartements/([^/]+)/?$", url.rstrip("/") + "/")
97 + m = re.search(r"/appartements/([^/]+)", url)
98 + if not m:
99 + return None
100 + slug = m.group(1).strip("/")
101 +
102 + title = (link.get("title") or "").strip()
103 + if not title:
104 + h2 = card.select_one("h2")
105 + title = h2.get_text(" ", strip=True) if h2 else slug.replace("-", " ")
106 +
107 + # « À louer » + « À partir du 1 septembre 2026 »
108 + tag = card.select_one(".appartements__dispoTag")
109 + date = card.select_one(".appartements__date")
110 + availability = " ".join(x for x in (
111 + tag.get_text(" ", strip=True) if tag else "",
112 + date.get_text(" ", strip=True) if date else "") if x).strip()
113 +
114 + gr = card.select_one(".appartement__grandeur")
115 + unit_type = normalize_unit_type(gr.get_text(strip=True) if gr else "")
116 + if not re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison",
117 + unit_type or ""):
118 + unit_type = ""
119 +
120 + qu = card.select_one(".appartement__quartier")
121 + sector = re.sub(r"\s+", " ",
122 + qu.get_text(" ", strip=True)).strip() if qu else ""
123 +
124 + amenities = []
125 + for li in card.select("li"):
126 + t = re.sub(r"\s+", " ", li.get_text(" ", strip=True))
127 + if t and t not in amenities:
128 + amenities.append(t)
129 +
130 + img = card.select_one("img[src]")
131 + images = []
132 + if img and str(img.get("src", "")).startswith("http"):
133 + images.append(_VARIANT_IMG.sub("", img["src"]))
134 +
135 + return Listing(
136 + source=self.source_id,
137 + external_id=slug,
138 + url=url,
139 + title=title,
140 + address="", # adresse civique non publiée par la source
141 + sector=sector, # « Université »
142 + city="Sherbrooke",
143 + unit_type=unit_type,
144 + availability=availability,
145 + amenities=amenities,
146 + images=images,
147 + )
148 +
149 + # -- fiche appartement --------------------------------------------------------
150 + def _fetch_detail(self, url: str) -> dict:
151 + if self._fetched >= self.max_details:
152 + raise RuntimeError("budget de fiches détail atteint")
153 + self._fetched += 1
154 + html = self.get(url).text
155 + soup = BeautifulSoup(html, "html.parser")
156 + out: dict = {}
157 +
158 + # contenu du billet : listes descriptives (appartement, immeuble, à
159 + # proximité) — tout en texte brut, le textmine central s'en charge
160 + main = soup.select_one("article, .single__content, main") or soup
161 + parts: list[str] = []
162 + for el in main.find_all(["p", "li", "h2", "h3"]):
163 + t = re.sub(r"\s+", " ", el.get_text(" ", strip=True)).strip()
164 + if t and t not in parts:
165 + parts.append(t)
166 + if sum(len(x) for x in parts) > 1500:
167 + break
168 + if parts:
169 + out["description"] = " | ".join(parts)[:1500]
170 +
171 + images = []
172 + for img in soup.select("img[src*='/wp-content/uploads/']"):
173 + src = _VARIANT_IMG.sub("", str(img.get("src") or ""))
174 + if src.startswith("http") and src not in images \
175 + and not re.search(r"logo|icon|favicon", src, re.I):
176 + images.append(src)
177 + out["images"] = images[:20]
178 + return out
added louka/connectors/ascensio.py +188 −0
@@ -0,0 +1,188 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/ascensio.py : connecteur Groupe Ascensio (groupeascensio.com)
5 +# Société immobilière — logements neufs à Sherbrooke (Les Nations :
6 +# arrondissements Jacques-Cartier et Mont-Bellevue) + Pont-Rouge (région de
7 +# Québec). WordPress : la page /logements-a-louer/ est rendue serveur —
8 +# grille `.grid-logements .grid-item` (une carte par logement disponible :
9 +# type + numéro, date de disponibilité, secteur, immeuble, photo, lien
10 +# /location/<slug>/). Les fiches (via self.detail, cache BD) ajoutent le
11 +# numéro de référence stable (external_id, ex. BRY-2030134), la mensualité,
12 +# la description, les pièces et dimensions et la galerie. Seuls les
13 +# logements affichés (tous « Disponible ») deviennent des annonces.
14 +# -----------------------------------------------------------------------------
15 +from __future__ import annotations
16 +
17 +import hashlib
18 +import re
19 +
20 +from bs4 import BeautifulSoup
21 +
22 +from ..schema import Listing, normalize_unit_type, parse_price
23 +from .base import BaseConnector
24 +
25 +BASE = "https://groupeascensio.com"
26 +LIST_URL = f"{BASE}/logements-a-louer/"
27 +
28 +_VARIANT_IMG = re.compile(r"-\d{2,4}x\d{2,4}(?=\.(?:jpg|jpeg|png|webp)$)", re.I)
29 +
30 +
31 +class AscensioConnector(BaseConnector):
32 + source_id = "ascensio"
33 + request_delay = 0.6
34 + max_details = 40 # garde-fou fiches détail (vraies requêtes)
35 +
36 + def fetch(self) -> list[Listing]:
37 + html = self.get(LIST_URL).text
38 + soup = BeautifulSoup(html, "html.parser")
39 +
40 + listings: dict[str, Listing] = {}
41 + for card in soup.select(".grid-logements .grid-item"):
42 + try:
43 + lst = self._parse_card(card)
44 + except Exception:
45 + continue
46 + if lst and lst.external_id not in listings:
47 + listings[lst.external_id] = lst
48 +
49 + # fiches détail (cache BD) : référence, mensualité, description,
50 + # pièces/dimensions, galerie
51 + self._fetched = 0
52 + out: dict[str, Listing] = {}
53 + for slug, lst in listings.items():
54 + key = hashlib.sha1(
55 + f"{lst.title}|{lst.availability}|{lst.sector}"
56 + .encode("utf-8")).hexdigest()
57 + try:
58 + payload = self.detail(slug, key,
59 + lambda u=lst.url: self._fetch_detail(u))
60 + except Exception:
61 + payload = {}
62 + self._apply_detail(lst, payload)
63 + # référence de gestion stable (BRY-2030134) quand publiée
64 + ref = (payload.get("reference") or "").strip()
65 + lst.external_id = ref or slug
66 + if lst.external_id not in out:
67 + out[lst.external_id] = lst
68 + return list(out.values())
69 +
70 + # -- carte de la grille -----------------------------------------------------------
71 + def _parse_card(self, card) -> Listing | None:
72 + link = card.select_one("a[href*='/location/']")
73 + if not link:
74 + return None
75 + url = link["href"]
76 + m = re.search(r"/location/([^/]+)/?", url)
77 + if not m:
78 + return None
79 + slug = m.group(1)
80 +
81 + title_el = card.select_one(".logement-title")
82 + title = re.sub(r"\s+", " ",
83 + title_el.get_text(" ", strip=True)).strip() if title_el else slug
84 +
85 + # « Disponibilité : 01/08/2026 » (bandeau survol)
86 + availability = ""
87 + extra = card.select_one(".extra-infos")
88 + if extra:
89 + m2 = re.search(r"Disponibilit[eé]\s*:?\s*([\d/]+)",
90 + extra.get_text(" ", strip=True))
91 + if m2:
92 + availability = f"Disponible le {m2.group(1)}"
93 +
94 + sector_el = card.select_one(".secteur-title")
95 + sector = ""
96 + if sector_el:
97 + sector = re.sub(r"^\s*Secteur\s*:?\s*", "",
98 + sector_el.get_text(" ", strip=True)).strip(" .")
99 +
100 + imm_el = card.select_one(".immeuble-value")
101 + immeuble = re.sub(r"\s+", " ",
102 + imm_el.get_text(" ", strip=True)).strip() if imm_el else ""
103 +
104 + # ville réelle : Sherbrooke, sauf mention explicite de Pont-Rouge
105 + city = "Pont-Rouge" if re.search(r"pont-rouge", sector, re.I) else "Sherbrooke"
106 +
107 + unit_type = normalize_unit_type(title)
108 + if not re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison",
109 + unit_type or ""):
110 + unit_type = ""
111 +
112 + img = card.select_one("img[src]")
113 + images = []
114 + if img and str(img.get("src", "")).startswith("http"):
115 + images.append(_VARIANT_IMG.sub("", img["src"]))
116 +
117 + amenities = [f"Immeuble : {immeuble}"] if immeuble else []
118 + return Listing(
119 + source=self.source_id,
120 + external_id=slug, # remplacé par la référence en aval
121 + url=url,
122 + title=f"{title}{immeuble}" if immeuble else title,
123 + address=immeuble if re.match(r"^\d", immeuble) else "",
124 + sector=sector,
125 + city=city,
126 + unit_type=unit_type,
127 + availability=availability,
128 + amenities=amenities,
129 + images=images,
130 + )
131 +
132 + # -- fiche logement ---------------------------------------------------------------
133 + def _fetch_detail(self, url: str) -> dict:
134 + if self._fetched >= self.max_details:
135 + raise RuntimeError("budget de fiches détail atteint")
136 + self._fetched += 1
137 + html = self.get(url).text
138 + soup = BeautifulSoup(html, "html.parser")
139 + out: dict = {}
140 +
141 + # paires h5 -> valeur : Référence, Mensualité, Disponibilités
142 + for h in soup.select("h5"):
143 + lab = h.get_text(" ", strip=True).lower()
144 + sib = h.find_next_sibling()
145 + if sib is None:
146 + continue
147 + val = re.sub(r"\s+", " ", sib.get_text(" ", strip=True)).strip()
148 + if "référence" in lab or "reference" in lab:
149 + out["reference"] = val
150 + elif "mensualité" in lab or "mensualite" in lab:
151 + out["price_label"] = val
152 + elif "disponibilités" in lab or "disponibilites" in lab:
153 + out["availability"] = val
154 + elif "pièces et dimensions" in lab and sib.name == "ul":
155 + out["rooms"] = [re.sub(r"\s+", " ", li.get_text(" ", strip=True))
156 + for li in sib.select("li")][:15]
157 +
158 + # description : paragraphes longs du corps de la fiche
159 + paras = [re.sub(r"\s+", " ", p.get_text(" ", strip=True))
160 + for p in soup.select("p")]
161 + longs = [p for p in paras if len(p) > 120]
162 + if longs:
163 + out["description"] = " ".join(longs)[:1500]
164 +
165 + images: list[str] = []
166 + for img in soup.select("img[src*='/wp-content/uploads/']"):
167 + src = _VARIANT_IMG.sub("", str(img.get("src") or ""))
168 + if src.startswith("http") and src not in images \
169 + and not re.search(r"logo|icon|favicon", src, re.I):
170 + images.append(src)
171 + out["images"] = images[:20]
172 + return out
173 +
174 + def _apply_detail(self, lst: Listing, d: dict) -> None:
175 + if not d:
176 + return
177 + if d.get("price_label"):
178 + lst.price_label = d["price_label"] # « 1425 $ / mois »
179 + lst.price = parse_price(re.sub(r"(\d)\s(\d{3})", r"\1\2",
180 + d["price_label"]))
181 + if d.get("availability"):
182 + lst.availability = d["availability"]
183 + if d.get("description"):
184 + lst.description = d["description"]
185 + if d.get("rooms"):
186 + lst.amenities = list(dict.fromkeys(lst.amenities + d["rooms"]))
187 + if d.get("images"):
188 + lst.images = list(dict.fromkeys(d["images"] + lst.images))[:20]
added louka/connectors/bestlife.py +189 −0
@@ -0,0 +1,189 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/bestlife.py : connecteur Les Gestions Bestlife
5 +# (lesgestionsbestlife.com) — 500+ portes en gestion à Sherbrooke
6 +# (Fleurimont, Rock Forest, Mont-Bellevue), East Angus, Richmond.
7 +# WordPress Divi + WooCommerce : chaque logement est un « produit »
8 +# (archive /appartements-a-louer-sherbrooke/, cartes li.product avec titre
9 +# « adresse – type », prix WooCommerce — promo = del/ins — et taxonomie
10 +# product_cat-<type>). Les fiches produit (via self.detail, cache BD)
11 +# ajoutent la disponibilité (« Disponible dès maintenant »), les listes
12 +# Inclusions/Spécifications et la galerie photos. La ville est extraite de
13 +# la parenthèse du titre (« (East-Angus) », « (Richemond) ») — Sherbrooke
14 +# par défaut. external_id = slug du produit (stable).
15 +# -----------------------------------------------------------------------------
16 +from __future__ import annotations
17 +
18 +import hashlib
19 +import re
20 +
21 +from bs4 import BeautifulSoup
22 +
23 +from ..schema import Listing, normalize_unit_type, parse_price
24 +from .base import BaseConnector
25 +
26 +BASE = "https://lesgestionsbestlife.com"
27 +LIST_URL = f"{BASE}/appartements-a-louer-sherbrooke/"
28 +
29 +# « (East-Angus) », « (Richemond) »… -> vraie ville ; sinon Sherbrooke
30 +_CITY_PARENS = {
31 + "east-angus": "East Angus", "east angus": "East Angus",
32 + "richemond": "Richmond", "richmond": "Richmond",
33 + "windsor": "Windsor", "magog": "Magog",
34 +}
35 +_VARIANT_IMG = re.compile(r"[?&](?:resize|fit)=", re.I)
36 +
37 +
38 +def _clean_price_label(label: str) -> str:
39 + """« 1,150 $ » (virgule de milliers WooCommerce) -> compatible parse_price."""
40 + return re.sub(r"(\d),(\d{3})", r"\1\2", label)
41 +
42 +
43 +class BestlifeConnector(BaseConnector):
44 + source_id = "bestlife"
45 + request_delay = 0.6
46 + max_details = 30 # garde-fou fiches produit (vraies requêtes)
47 +
48 + def fetch(self) -> list[Listing]:
49 + html = self.get(LIST_URL).text
50 + soup = BeautifulSoup(html, "html.parser")
51 +
52 + listings: dict[str, Listing] = {}
53 + for card in soup.select("li.product"):
54 + try:
55 + lst = self._parse_card(card)
56 + except Exception:
57 + continue
58 + if lst and lst.external_id not in listings:
59 + listings[lst.external_id] = lst
60 +
61 + # fiches produit (cache BD) : dispo, inclusions, spécifications, photos
62 + self._fetched = 0
63 + for lst in listings.values():
64 + key = hashlib.sha1(
65 + f"{lst.title}|{lst.price_label}".encode("utf-8")).hexdigest()
66 + try:
67 + payload = self.detail(lst.external_id, key,
68 + lambda u=lst.url: self._fetch_detail(u))
69 + except Exception:
70 + continue
71 + self._apply_detail(lst, payload)
72 + return list(listings.values())
73 +
74 + # -- carte produit ---------------------------------------------------------------
75 + def _parse_card(self, card) -> Listing | None:
76 + link = card.select_one("a.woocommerce-loop-product__link[href]")
77 + title_el = card.select_one("h2")
78 + if not (link and title_el):
79 + return None
80 + url = link["href"]
81 + m = re.search(r"/produit/([^/]+)/?", url)
82 + if not m:
83 + return None
84 + slug = m.group(1)
85 + title = re.sub(r"\s+", " ", title_el.get_text(" ", strip=True)).strip()
86 +
87 + # « 1082 Sainte-Thérèse – 4 1/2 » -> adresse + type
88 + addr_part = re.split(r"\s*[–—-]\s*(?=\d\s*1/2|Loft|Studio|Chambre)",
89 + title, maxsplit=1, flags=re.I)[0].strip()
90 + unit_type = normalize_unit_type(title)
91 + if not re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison",
92 + unit_type or ""):
93 + unit_type = ""
94 +
95 + # ville depuis la parenthèse du titre (sinon Sherbrooke)
96 + city = "Sherbrooke"
97 + pm = re.search(r"\(([^)]+)\)", title)
98 + if pm:
99 + key = pm.group(1).strip().lower()
100 + if key in _CITY_PARENS:
101 + city = _CITY_PARENS[key]
102 + addr_part = re.sub(r"\s*\([^)]+\)", "", addr_part).strip()
103 +
104 + # prix WooCommerce : promo = <del>régulier</del> <ins>courant</ins>
105 + price = None
106 + price_label = ""
107 + price_el = card.select_one("span.price")
108 + if price_el:
109 + price_label = re.sub(r"\s+", " ",
110 + price_el.get_text(" ", strip=True)).strip()
111 + ins = price_el.select_one("ins .woocommerce-Price-amount")
112 + amount = ins or price_el.select_one(".woocommerce-Price-amount")
113 + if amount:
114 + price = parse_price(_clean_price_label(
115 + amount.get_text(" ", strip=True)))
116 +
117 + img = card.select_one("img[src]")
118 + images = []
119 + if img:
120 + src = (img.get("data-orig-file") or img["src"]).strip()
121 + if src.startswith("http"):
122 + images.append(src)
123 +
124 + return Listing(
125 + source=self.source_id,
126 + external_id=slug,
127 + url=url,
128 + title=title,
129 + address=addr_part,
130 + sector="", # non publié sur la carte
131 + city=city,
132 + unit_type=unit_type,
133 + price=price,
134 + price_label=price_label,
135 + availability="", # complété par la fiche produit
136 + images=images,
137 + )
138 +
139 + # -- fiche produit ------------------------------------------------------------
140 + def _fetch_detail(self, url: str) -> dict:
141 + if self._fetched >= self.max_details:
142 + raise RuntimeError("budget de fiches détail atteint")
143 + self._fetched += 1
144 + html = self.get(url).text
145 + soup = BeautifulSoup(html, "html.parser")
146 + out: dict = {}
147 +
148 + # « Disponible dès maintenant » / « Disponible le 1er septembre » —
149 + # ligne en emphase de la fiche (jamais les messages techniques du thème)
150 + for el in soup.find_all(["em", "strong", "p", "h3"]):
151 + t = re.sub(r"\s+", " ", el.get_text(" ", strip=True)).strip()
152 + if re.match(r"^Disponible\b", t) and len(t) <= 80:
153 + out["availability"] = t
154 + break
155 +
156 + # listes Inclusions / Spécifications (commodités affichées)
157 + amenities: list[str] = []
158 + for h in soup.find_all(["h3", "h4"]):
159 + t = h.get_text(" ", strip=True)
160 + if t in ("Inclusions", "Spécifications"):
161 + ul = h.find_next("ul")
162 + if ul:
163 + for li in ul.select("li"):
164 + item = re.sub(r"\s+", " ", li.get_text(" ", strip=True))
165 + if item and item not in amenities:
166 + amenities.append(item)
167 + out["amenities"] = amenities[:25]
168 +
169 + # galerie photos (pleine taille i0.wp.com sans resize)
170 + images: list[str] = []
171 + for img in soup.select(".woocommerce-product-gallery img[src], "
172 + ".et_pb_gallery img[src]"):
173 + src = (img.get("data-orig-file") or img.get("src") or "").strip()
174 + src = src.split("?")[0] if _VARIANT_IMG.search(src) else src
175 + if src.startswith("http") and src not in images:
176 + images.append(src)
177 + out["images"] = images[:20]
178 + return out
179 +
180 + def _apply_detail(self, lst: Listing, d: dict) -> None:
181 + if not d:
182 + return
183 + if d.get("availability"):
184 + lst.availability = d["availability"]
185 + if d.get("amenities"):
186 + lst.amenities = list(dict.fromkeys(lst.amenities + d["amenities"]))
187 + if d.get("images"):
188 + merged = list(dict.fromkeys(d["images"] + lst.images))
189 + lst.images = merged[:20]
added louka/connectors/dynamic.py +316 −0
@@ -0,0 +1,316 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/dynamic.py : connecteur Gestion immobilière Dynamic
5 +# (lesgestionsdynamic.com) — apparts à Sherbrooke, Magog, Granby, East Angus.
6 +# WordPress + thème immobilier Houzez, même famille que gimcote.py : archive
7 +# /a-louer/ paginée (cartes div.item-listing-wrap avec prix, galerie
8 +# data-images, data-listid). Particularité locale : pas d'adresse ni de
9 +# statut sur la carte — la disponibilité est un suffixe du titre
10 +# (« IMMÉDIATEMENT », « JUILLET », « 1er AOÛT »…) et l'adresse/ville/GPS
11 +# viennent de la fiche détail (bloc #property-address-wrap, carte Houzez).
12 +# Sert de CLASSE DE BASE à la famille Houzez de l'Estrie : Gestimmo Estrie
13 +# (gestimmo_estrie.py) et Agence de location Sherbrooke / groupe Prestiplex
14 +# (agence_sherbrooke.py) n'en redéfinissent que les constantes et les
15 +# crochets carte (statut/étiquette/adresse).
16 +# -----------------------------------------------------------------------------
17 +from __future__ import annotations
18 +
19 +import hashlib
20 +import html as htmllib
21 +import json
22 +import re
23 +
24 +from bs4 import BeautifulSoup
25 +
26 +from ..schema import (Listing, normalize_unit_type, parse_price,
27 + strip_accents)
28 +from .base import BaseConnector
29 +
30 +# variantes redimensionnées WordPress (-584x438.jpg) -> pleine taille
31 +_SIZE_SUFFIX = re.compile(r"-\d{2,4}x\d{2,4}(?=\.(?:jpg|jpeg|png|webp)$)", re.I)
32 +_MAP_LATLNG_RE = re.compile(
33 + r'"lat"\s*:\s*"?(-?\d+\.\d+)"?\s*,\s*"lng"\s*:\s*"?(-?\d+\.\d+)"?')
34 +
35 +# villes réelles desservies par la famille (jamais devinées : on ne retient la
36 +# ville que si elle apparaît telle quelle dans l'adresse ou le bloc « Ville »)
37 +_KNOWN_CITIES = [
38 + "Sherbrooke", "Magog", "Granby", "East Angus", "Orford", "Waterville",
39 + "Windsor", "Coaticook", "Ascot Corner", "Lennoxville", "Richmond",
40 + "Cookshire-Eaton", "Bromptonville", "Cowansville", "Bromont", "Valcourt",
41 +]
42 +
43 +# suffixe de disponibilité dans les titres Dynamic : « IMMÉDIATEMENT »,
44 +# « JUILLET », « 1er AOÛT », « LOUÉ »…
45 +_AVAIL_TITLE_RE = re.compile(
46 + r"(imm[eé]diatement|d[èe]s maintenant|lou[ée]|"
47 + r"(?:1er\s+|15\s+)?(?:janvier|f[ée]vrier|mars|avril|mai|juin|juillet|"
48 + r"ao[ûu]t|septembre|octobre|novembre|d[ée]cembre)(?:\s+20\d\d)?)\s*$",
49 + re.I)
50 +
51 +
52 +def _clean_price_label(label: str) -> str:
53 + """'1,450$/mois' ou '1 450 $/mois' -> compatible parse_price."""
54 + return re.sub(r"(\d)[,\s](\d{3})", r"\1\2", label)
55 +
56 +
57 +def _city_from_parts(parts: list[str]) -> tuple[str, str]:
58 + """(ville, secteur) depuis les segments Nominatim de address.item-address :
59 + « 89, Rue des Pins, East Angus, Le Haut-Saint-François, … » — la ville est
60 + le segment qui correspond à une ville connue, le secteur le segment qui la
61 + précède (micro-quartier) quand il ne fait pas partie de l'adresse civique."""
62 + for i, p in enumerate(parts):
63 + for city in _KNOWN_CITIES:
64 + if strip_accents(p.strip().lower()) == strip_accents(city.lower()):
65 + sector = ""
66 + if i >= 3: # [n° civique, rue, quartier, ville, ...]
67 + sector = parts[i - 1].strip()
68 + return city, sector
69 + return "", ""
70 +
71 +
72 +class DynamicConnector(BaseConnector):
73 + source_id = "dynamic"
74 + request_delay = 0.6
75 + max_pages = 12 # garde-fou de pagination
76 + max_details = 80 # garde-fou fiches détail (vraies requêtes)
77 +
78 + BASE = "https://lesgestionsdynamic.com"
79 + LIST_PATH = "/a-louer/"
80 + CITY_DEFAULT = "Sherbrooke" # repli si la fiche ne précise pas la ville
81 +
82 + def fetch(self) -> list[Listing]:
83 + listings: dict[str, Listing] = {}
84 + for page in range(1, self.max_pages + 1):
85 + url = (f"{self.BASE}{self.LIST_PATH}" if page == 1
86 + else f"{self.BASE}{self.LIST_PATH}page/{page}/")
87 + try:
88 + html = self.get(url).text
89 + except Exception:
90 + break
91 + soup = BeautifulSoup(html, "html.parser")
92 + cards = soup.select("div.item-listing-wrap")
93 + if not cards:
94 + break
95 + for card in cards:
96 + try:
97 + self._parse_card(card, listings)
98 + except Exception:
99 + continue
100 +
101 + # fiches détail (cache BD) : adresse/ville/GPS, description,
102 + # caractéristiques, type d'unité (aperçu Houzez), galerie complète
103 + self._fetched = 0
104 + for lst in listings.values():
105 + card_key = hashlib.sha1(
106 + f"{lst.title}|{lst.price_label}|{lst.availability}"
107 + .encode("utf-8")).hexdigest()
108 + try:
109 + payload = self.detail(lst.external_id, card_key,
110 + lambda u=lst.url: self._fetch_detail(u))
111 + except Exception:
112 + continue
113 + self._apply_detail(lst, payload)
114 + return list(listings.values())
115 +
116 + # -- crochets par site --------------------------------------------------------
117 + def _card_availability(self, card, title: str) -> str:
118 + """Dynamic : la disponibilité est un suffixe du titre de l'annonce."""
119 + m = _AVAIL_TITLE_RE.search(title)
120 + return m.group(1).strip() if m else ""
121 +
122 + # -- carte Houzez ---------------------------------------------------------------
123 + def _parse_card(self, card, listings: dict[str, Listing]) -> None:
124 + link = card.select_one("h2.item-title a[href]")
125 + if not link:
126 + return
127 + url = link["href"]
128 + title = re.sub(r"\s+", " ", link.get_text(" ", strip=True)).strip()
129 + m = re.search(r"/(?:property|appartement)/([^/]+)/?", url)
130 + slug = m.group(1) if m else ""
131 + listid_el = card.select_one("[data-listid]")
132 + ext_id = (listid_el.get("data-listid") if listid_el else "") or slug
133 + if not ext_id or str(ext_id) in listings:
134 + return
135 +
136 + # exclusions : logements loués + espaces non résidentiels
137 + if re.search(r"\blou[ée]s?\b", title, re.I):
138 + return
139 + if re.search(r"stationnement|commercial|rangement|garage|entrep[oô]t",
140 + title, re.I):
141 + return
142 + availability = self._card_availability(card, title)
143 + if re.search(r"lou[ée]", availability, re.I):
144 + return
145 +
146 + price_el = card.select_one("li.item-price")
147 + price_label = price_el.get_text(" ", strip=True) if price_el else ""
148 +
149 + # adresse Nominatim de la carte (présente chez Agence, absente chez
150 + # Dynamic/Gestimmo — la fiche détail prendra le relais)
151 + address = sector = ""
152 + city = self.CITY_DEFAULT
153 + addr_el = card.select_one("address.item-address")
154 + if addr_el:
155 + full = addr_el.get_text(" ", strip=True)
156 + parts = [p.strip() for p in full.split(",") if p.strip()]
157 + address = ", ".join(parts[:2]) if len(parts) >= 2 else full
158 + c, s = _city_from_parts(parts)
159 + if c:
160 + city, sector = c, s
161 +
162 + # commodités des cartes Houzez : chambres / salles de bain / pi²
163 + amenities: list[str] = []
164 + for li in card.select("ul.item-amenities li"):
165 + t = re.sub(r"\s+", " ", li.get_text(" ", strip=True))
166 + t = t.replace("Beds:", "Chambres :").replace("Bath:", "Salle(s) de bain :")
167 + if t and t not in amenities:
168 + amenities.append(t)
169 +
170 + # galerie : attribut data-images (JSON, URLs redimensionnées)
171 + images: list[str] = []
172 + raw = card.get("data-images") or ""
173 + if raw:
174 + try:
175 + urls = json.loads(htmllib.unescape(raw))
176 + except Exception:
177 + urls = re.findall(r"https?:[^\"',\\]+", htmllib.unescape(raw))
178 + for u in urls:
179 + if isinstance(u, dict): # variante Houzez : objets {url: …}
180 + u = u.get("url") or u.get("src") or u.get("image") or ""
181 + if not isinstance(u, str):
182 + continue
183 + u = u.replace("\\/", "/").strip()
184 + if u.startswith("http"):
185 + u = _SIZE_SUFFIX.sub("", u)
186 + if u not in images:
187 + images.append(u)
188 + if not images:
189 + thumb = card.select_one("img.wp-post-image[src]")
190 + if thumb:
191 + images = [_SIZE_SUFFIX.sub("", thumb["src"])]
192 +
193 + # type d'unité depuis le titre, seulement si le motif est net
194 + # (normalize_unit_type retourne le texte brut quand rien ne matche)
195 + unit_type = normalize_unit_type(title)
196 + if not re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison",
197 + unit_type or ""):
198 + unit_type = ""
199 +
200 + listings[str(ext_id)] = Listing(
201 + source=self.source_id,
202 + external_id=str(ext_id),
203 + url=url,
204 + title=title,
205 + address=address,
206 + sector=sector,
207 + city=city,
208 + unit_type=unit_type,
209 + price=parse_price(_clean_price_label(price_label)),
210 + price_label=price_label,
211 + availability=availability,
212 + amenities=amenities,
213 + images=images[:30],
214 + )
215 +
216 + # -- fiche détail (Houzez) -----------------------------------------------------
217 + def _fetch_detail(self, url: str) -> dict:
218 + """Adresse structurée (#property-address-wrap), description,
219 + caractéristiques, type d'unité (aperçu) et GPS (carte Houzez)."""
220 + if self._fetched >= self.max_details:
221 + raise RuntimeError("budget de fiches détail atteint")
222 + self._fetched += 1
223 + html = self.get(url).text
224 + soup = BeautifulSoup(html, "html.parser")
225 + out: dict = {}
226 +
227 + desc_el = soup.select_one("#property-description-wrap")
228 + if desc_el:
229 + txt = desc_el.get_text("\n", strip=True)
230 + txt = re.sub(r"^Description\n", "", txt)
231 + out["description"] = re.sub(r"[ \t]+", " ", txt).strip()[:1500]
232 +
233 + out["amenities"] = [a.get_text(" ", strip=True)
234 + for a in soup.select("#property-features-wrap li")
235 + if a.get_text(strip=True)][:25]
236 +
237 + # bloc adresse : « Adresse | 375 rue terrill | Ville |
238 + # Fleurimont (Sherbrooke) | Code postal | J1E 3S7 »
239 + for li in soup.select("#property-address-wrap li"):
240 + st, sp = li.find("strong"), li.find("span")
241 + if not (st and sp):
242 + continue
243 + lab = strip_accents(st.get_text(" ", strip=True).lower())
244 + val = sp.get_text(" ", strip=True)
245 + if lab.startswith("adresse"):
246 + out["address"] = val
247 + elif lab.startswith("ville"):
248 + out["city_raw"] = val
249 + elif "postal" in lab:
250 + out["postal"] = val
251 +
252 + # adresse Nominatim complète (repli ville/secteur)
253 + addr_el = soup.select_one("address.item-address")
254 + if addr_el:
255 + out["item_address"] = addr_el.get_text(" ", strip=True)
256 +
257 + # type d'unité : aperçu Houzez (« Appartement 4 1/2 ») — exiger un
258 + # motif net (« … 4 1/2 », « Studio »…), jamais le mot « chambres » du
259 + # compteur de pièces
260 + ov = soup.select_one(".property-overview-wrap, #property-overview-wrap")
261 + if ov:
262 + m = re.search(r"(\d\s*(?:1/2|½)|\bstudio\b|\bloft\b|\bmaison\b)",
263 + ov.get_text(" ", strip=True), re.I)
264 + if m:
265 + out["type_raw"] = m.group(1)
266 +
267 + m = _MAP_LATLNG_RE.search(html)
268 + if m:
269 + out["lat"], out["lng"] = float(m.group(1)), float(m.group(2))
270 + return out
271 +
272 + def _apply_detail(self, lst: Listing, d: dict) -> None:
273 + """Reporte le payload (frais ou cache BD) sur l'annonce."""
274 + if not d:
275 + return
276 + if d.get("description"):
277 + lst.description = d["description"]
278 + if d.get("amenities"):
279 + lst.amenities = list(dict.fromkeys(lst.amenities + d["amenities"]))
280 +
281 + # adresse structurée de la fiche ; « Ville » au format
282 + # « Fleurimont (Sherbrooke) » (secteur (ville)) ou « Magog »
283 + if d.get("address") and not lst.address:
284 + lst.address = d["address"]
285 + city_raw = (d.get("city_raw") or "").strip()
286 + if city_raw:
287 + m = re.match(r"^(.*?)\s*\((.+)\)\s*$", city_raw)
288 + inner = (m.group(2).strip() if m else city_raw)
289 + outer = (m.group(1).strip() if m else "")
290 + c, _ = _city_from_parts([inner])
291 + if c: # « Fleurimont (Sherbrooke) »
292 + lst.city = c
293 + if outer and not lst.sector:
294 + lst.sector = outer
295 + else:
296 + c2, _ = _city_from_parts([city_raw])
297 + if c2: # « Magog »
298 + lst.city = c2
299 + elif not lst.sector: # « Nord », « Centre-ville »…
300 + lst.sector = city_raw
301 + elif d.get("item_address"):
302 + parts = [p.strip() for p in d["item_address"].split(",") if p.strip()]
303 + c, s = _city_from_parts(parts)
304 + if c:
305 + lst.city = c
306 + if s and not lst.sector:
307 + lst.sector = s
308 + if not lst.address and d.get("item_address"):
309 + parts = [p.strip() for p in d["item_address"].split(",") if p.strip()]
310 + if len(parts) >= 2:
311 + lst.address = ", ".join(parts[:2])
312 +
313 + if not lst.unit_type and d.get("type_raw"):
314 + lst.unit_type = normalize_unit_type(d["type_raw"])
315 + if d.get("lat") is not None and d.get("lng") is not None:
316 + lst.lat, lst.lng = d["lat"], d["lng"]
added louka/connectors/floria.py +139 −0
@@ -0,0 +1,139 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/floria.py : connecteur Gestion Floria (gestionfloria.ca)
5 +# Condos locatifs neufs à Sherbrooke, Magog (Mont-Orford) et Coaticook.
6 +# Site WordPress (Avada) : chaque page /immeuble/<slug>/ embarque le module
7 +# de plans interactifs Livya (app.livya.com, client « gestion-floria », un
8 +# projet/entité par immeuble). Même patron que somex_saintnicolas/louis14 :
9 +# la page Next.js du module est rendue serveur et son flux RSC contient
10 +# l'inventaire JSON complet (numéro, statut, loyer, pièces, superficie,
11 +# adresse, ville, GPS, photos, plans). Découverte des immeubles via la page
12 +# /secteurs/. Certains immeubles partagent le même projet Livya (jumelés
13 +# 52/58 Flanc-Sud, 753/765 Rachel-Hébert…) : dédoublonnage par unitId.
14 +# Seules les unités AVAILABLE deviennent des annonces ; certains projets ne
15 +# publient pas le loyer (rentalPrice = 0) -> prix absent, rien d'inventé.
16 +# -----------------------------------------------------------------------------
17 +from __future__ import annotations
18 +
19 +import re
20 +
21 +from ..schema import Listing
22 +from .base import BaseConnector
23 +from .somex_saintnicolas import _livya_units, _unit_type
24 +
25 +BASE = "https://gestionfloria.ca"
26 +SECTORS_URL = f"{BASE}/secteurs/"
27 +LIVYA = "https://app.livya.com"
28 +
29 +_IMMEUBLE_RE = re.compile(r"https://gestionfloria\.ca/immeuble/[a-z0-9-]+/")
30 +_MODULE_RE = re.compile(
31 + r'<div class="livya-module-container-plans"[^>]*'
32 + r'data-project="([^"]+)"[^>]*data-entity="([^"]+)"')
33 +_CLIENT_RE = re.compile(r'data-client="([^"]+)"')
34 +
35 +
36 +class FloriaConnector(BaseConnector):
37 + source_id = "floria"
38 + request_delay = 0.7
39 + max_buildings = 20 # garde-fou (12 immeubles publiés)
40 +
41 + def fetch(self) -> list[Listing]:
42 + # 1) Découverte : pages immeuble listées sur /secteurs/
43 + sec = self.get(SECTORS_URL).text
44 + pages = sorted(set(_IMMEUBLE_RE.findall(sec)))
45 +
46 + listings: dict[str, Listing] = {}
47 + for page_url in pages[: self.max_buildings]:
48 + try:
49 + html = self.get(page_url).text
50 + except Exception:
51 + continue
52 + m = _MODULE_RE.search(html)
53 + cm = _CLIENT_RE.search(html)
54 + if not (m and cm):
55 + continue # immeuble sans module Livya (ex. 2835 Mézy)
56 + project, entity, client = m.group(1), m.group(2), cm.group(1)
57 + try:
58 + livya_html = self.get(
59 + f"{LIVYA}/fr/{client}/projects/{project}/plans/{entity}"
60 + f"?noLayout=1").text
61 + except Exception:
62 + continue
63 + for u in _livya_units(livya_html):
64 + # dédoublonnage : les immeubles jumelés partagent le projet
65 + uid = str(u.get("unitId") or "")
66 + if not uid or uid in listings:
67 + continue
68 + if u.get("availability") != "AVAILABLE" or not u.get("rental", True):
69 + continue
70 + listings[uid] = self._listing(u, page_url)
71 + return list(listings.values())
72 +
73 + # -- une annonce par unité disponible ------------------------------------------
74 + def _listing(self, u: dict, page_url: str) -> Listing:
75 + num = str(u.get("number") or "").strip()
76 + price = u.get("rentalPrice")
77 + price = float(price) if isinstance(price, (int, float)) and price > 0 else None
78 + area = u.get("unitSize")
79 + area = float(area) if isinstance(area, (int, float)) and area > 0 else None
80 +
81 + street = (u.get("address") or "").strip()
82 + city = (u.get("city") or "").strip()
83 + postal = (u.get("postalCode") or "").strip()
84 + address = ", ".join(x for x in (street, postal) if x)
85 +
86 + # description : étage, modèle, pièces, balcon, plan (champs structurés
87 + # du flux — le textmine central en tire les dérivés)
88 + desc: list[str] = []
89 + floor = str(u.get("floorNumber") or "").strip()
90 + if floor:
91 + desc.append(f"Étage {floor}")
92 + if u.get("typeName"):
93 + desc.append(f"Modèle {u['typeName']}")
94 + if u.get("roomsBed"):
95 + desc.append(f"{u['roomsBed']} chambre(s)")
96 + if u.get("roomsBath"):
97 + desc.append(f"{u['roomsBath']} salle(s) de bain")
98 + if u.get("balconySize"):
99 + desc.append(f"Balcon de {u['balconySize']} pi²")
100 + if u.get("floorPlanUrl"):
101 + desc.append(f"Plan : {u['floorPlanUrl']}")
102 +
103 + images = [img.get("fullUrl") for img in (u.get("typeImages") or [])
104 + if isinstance(img, dict) and img.get("fullUrl")]
105 + if u.get("floorPlanImageUrl"):
106 + images.append(u["floorPlanImageUrl"])
107 +
108 + future = u.get("futureAvailability")
109 + availability = str(future) if future else "Disponible"
110 +
111 + details: dict = {}
112 + if floor.isdigit():
113 + details["floor"] = int(floor)
114 +
115 + lat, lng = u.get("latitude"), u.get("longitude")
116 + unit_type = _unit_type(u.get("rooms"))
117 + title = f"{street} — unité {num}" if street else f"Unité {num}"
118 + if unit_type:
119 + title += f" ({unit_type})"
120 +
121 + return Listing(
122 + source=self.source_id,
123 + external_id=str(u["unitId"]),
124 + url=page_url, # la page immeuble héberge le sélecteur
125 + title=title,
126 + address=address,
127 + sector="", # secteur non publié unité par unité
128 + city=city,
129 + unit_type=unit_type,
130 + price=price,
131 + price_label=f"{price:.0f} $ /mois" if price else "",
132 + availability=availability,
133 + area_sqft=area,
134 + description=" | ".join(desc),
135 + details=details,
136 + images=images[:12],
137 + lat=float(lat) if lat else None,
138 + lng=float(lng) if lng else None,
139 + )
added louka/connectors/gestimmo_estrie.py +48 −0
@@ -0,0 +1,48 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/gestimmo_estrie.py : connecteur Gestimmo Estrie (gestimmoestrie.com)
5 +# Gestionnaire multi-immeubles de Sherbrooke et de l'Estrie. Même plateforme
6 +# WordPress + thème Houzez que Gestion Dynamic : tout le parsing (cartes,
7 +# pagination /a-louer/page/N/, fiches détail, cache BD) est hérité de
8 +# DynamicConnector. Particularités du site :
9 +# - la disponibilité est l'étiquette de statut de la carte
10 +# (lien /status/ : « Libre maintenant », « Juillet », « Loué »…) ;
11 +# - les fiches n'ont pas d'aperçu Houzez : le type d'unité vient du titre
12 +# (« 4 1/2 Rue de la Sainte-Famille ») ou de la ligne « Grandeur : 4 1/2 »
13 +# de la description.
14 +# Les logements « Loué » sont exclus (filtre hérité).
15 +# -----------------------------------------------------------------------------
16 +from __future__ import annotations
17 +
18 +import re
19 +
20 +from .dynamic import DynamicConnector
21 +
22 +# « Grandeur : 4 1/2 » / « Grandeur: Studio » dans la description des fiches
23 +_SIZE_IN_DESC = re.compile(r"grandeur\s*:?\s*(\d\s*1/2|\d\s*½|studio|loft)", re.I)
24 +
25 +
26 +class GestimmoEstrieConnector(DynamicConnector):
27 + source_id = "gestimmo_estrie"
28 +
29 + BASE = "https://gestimmoestrie.com"
30 + LIST_PATH = "/a-louer/"
31 + CITY_DEFAULT = "Sherbrooke"
32 +
33 + # -- crochets par site --------------------------------------------------------
34 + def _card_availability(self, card, title: str) -> str:
35 + """Gestimmo : étiquette de statut de la carte (« Libre maintenant »,
36 + « Juillet », « Loué »…)."""
37 + status_el = card.select_one("a[href*='/status/']")
38 + return status_el.get_text(" ", strip=True) if status_el else ""
39 +
40 + def _fetch_detail(self, url: str) -> dict:
41 + """Fiche Houzez sans bloc aperçu : repli type d'unité sur la ligne
42 + « Grandeur : … » de la description."""
43 + out = super()._fetch_detail(url)
44 + if not out.get("type_raw") and out.get("description"):
45 + m = _SIZE_IN_DESC.search(out["description"])
46 + if m:
47 + out["type_raw"] = m.group(1)
48 + return out
added louka/connectors/immeubles_db.py +133 −0
@@ -0,0 +1,133 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/immeubles_db.py : connecteur Les Immeubles D.B. Busque-Massé
5 +# (immeublesdb.com) — 12 immeubles / ~400 apparts à Sherbrooke, 4 secteurs.
6 +# Site custom PHP (« pm_editor », derrière Cloudflare — le UA de base.py
7 +# passe) : 4 pages statiques /logements-a-louer/secteur-{nord,est,
8 +# centre-ville,ouest}/. Chaque logement offert = une section .container
9 +# avec une cellule galerie (photos /modules/upload/…) et une cellule texte
10 +# (h3 = adresse civique, liste <li> = type, prix « … $ par mois »,
11 +# inclusions). Aucun identifiant publié : external_id = empreinte stable
12 +# (secteur + adresse + ligne de type). Les logements loués sont simplement
13 +# retirés de la page (aucun marqueur « complet » à filtrer).
14 +# -----------------------------------------------------------------------------
15 +from __future__ import annotations
16 +
17 +import hashlib
18 +import re
19 +
20 +from bs4 import BeautifulSoup
21 +
22 +from ..schema import Listing, normalize_unit_type, parse_price
23 +from .base import BaseConnector
24 +
25 +BASE = "https://immeublesdb.com"
26 +SECTORS = {
27 + "secteur-nord": "Nord",
28 + "secteur-est": "Est",
29 + "secteur-centre-ville": "Centre-ville",
30 + "secteur-ouest": "Ouest",
31 +}
32 +
33 +_PRICE_LI = re.compile(r"\d[\d\s]{0,5}\s?\$\s*par mois", re.I)
34 +
35 +
36 +def _clean_price_label(label: str) -> str:
37 + """« 1 125$ par mois » (espace de milliers) -> compatible parse_price."""
38 + return re.sub(r"(\d)\s(\d{3})", r"\1\2", label)
39 +
40 +
41 +class ImmeublesDbConnector(BaseConnector):
42 + source_id = "immeubles_db"
43 + request_delay = 0.6
44 +
45 + def fetch(self) -> list[Listing]:
46 + listings: dict[str, Listing] = {}
47 + for slug, sector in SECTORS.items():
48 + try:
49 + html = self.get(f"{BASE}/logements-a-louer/{slug}/").text
50 + except Exception:
51 + continue
52 + soup = BeautifulSoup(html, "html.parser")
53 + for container in soup.select("div.container"):
54 + try:
55 + lst = self._parse_block(container, sector)
56 + except Exception:
57 + continue
58 + if lst and lst.external_id not in listings:
59 + listings[lst.external_id] = lst
60 + return list(listings.values())
61 +
62 + # -- une section .container = un logement offert --------------------------------
63 + def _parse_block(self, container, sector: str) -> Listing | None:
64 + h3 = container.select_one(".cell_container h3")
65 + ul = container.select_one(".cell_container ul")
66 + if not (h3 and ul):
67 + return None
68 + address_full = re.sub(r"\s+", " ", h3.get_text(" ", strip=True)).strip(" ,")
69 + lis = [re.sub(r"\s+", " ", li.get_text(" ", strip=True)).strip()
70 + for li in ul.select("li")]
71 + lis = [t for t in lis if t]
72 + if not (address_full and lis):
73 + return None
74 +
75 + # « 250, Olivier, Sherbrooke, QC » -> adresse sans la province
76 + parts = [p.strip() for p in address_full.split(",") if p.strip()]
77 + address = ", ".join(p for p in parts if p.upper() != "QC")
78 + city = "Sherbrooke"
79 +
80 + type_line = lis[0]
81 + # « 4 CHAMBRES disponibles à partir de 550 $ » = location à la chambre
82 + # (normalize_unit_type transformerait « 4 chambres » en 6½+)
83 + if re.search(r"chambres?\s+disponibles?", type_line, re.I):
84 + unit_type = "Chambre"
85 + else:
86 + unit_type = normalize_unit_type(type_line)
87 + if not re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison",
88 + unit_type or ""):
89 + unit_type = ""
90 +
91 + # prix : première ligne « … $ par mois »
92 + price = None
93 + price_label = ""
94 + for t in lis:
95 + if _PRICE_LI.search(t):
96 + price_label = t
97 + price = parse_price(_clean_price_label(t))
98 + break
99 +
100 + # disponibilité : seulement si la source l'écrit (sinon vide)
101 + availability = ""
102 + m = re.search(r"libre\s+imm[ée]diatement", " ".join(lis), re.I)
103 + if m:
104 + availability = "Libre immédiatement"
105 +
106 + # photos de la galerie jumelle (chemins relatifs /modules/upload/…)
107 + images: list[str] = []
108 + for img in container.select(".galerie_img_block a[href]"):
109 + href = (img.get("href") or "").strip()
110 + if href.startswith("/"):
111 + href = BASE + href
112 + if href.startswith("http") and href not in images:
113 + images.append(href)
114 +
115 + ext_id = hashlib.sha1(
116 + f"{sector}|{address_full}|{type_line}".encode("utf-8")).hexdigest()[:16]
117 +
118 + return Listing(
119 + source=self.source_id,
120 + external_id=ext_id,
121 + url=f"{BASE}/logements-a-louer/"
122 + f"{[k for k, v in SECTORS.items() if v == sector][0]}/",
123 + title=f"{type_line}{address}",
124 + address=address,
125 + sector=sector,
126 + city=city,
127 + unit_type=unit_type,
128 + price=price,
129 + price_label=price_label,
130 + availability=availability,
131 + description=" | ".join(lis)[:1500],
132 + images=images[:20],
133 + )
added louka/connectors/labonte.py +193 −0
@@ -0,0 +1,193 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/labonte.py : connecteur Gestion Labonté (gestionlabonte.com)
5 +# Gestionnaire établi de Sherbrooke (66 ans). Site Wix : la page /logements
6 +# est rendue serveur — répéteur Wix dont chaque item
7 +# (div id="comp-…__<guid>") porte le prix (« À partir de N $/mois »),
8 +# l'adresse (h2), le nombre de pièces, le secteur, la photo et le lien vers
9 +# la page dynamique /logements/<guid> (le GUID du CMS Wix = external_id
10 +# stable). Les fiches détail (via self.detail, cache BD) ajoutent la
11 +# description, les paires « Détails du logement » (secteur, pièces,
12 +# chambres, étage) et l'adresse complète du bloc « Emplacement ». La galerie
13 +# photos des fiches est chargée côté client (pro-gallery, non SSR) : seule
14 +# la photo de la carte est disponible. Aucun statut « loué » affiché — la
15 +# liste ne montre que l'inventaire courant.
16 +# -----------------------------------------------------------------------------
17 +from __future__ import annotations
18 +
19 +import hashlib
20 +import re
21 +
22 +from bs4 import BeautifulSoup
23 +
24 +from ..schema import Listing, normalize_unit_type, parse_price
25 +from .base import BaseConnector
26 +
27 +BASE = "https://www.gestionlabonte.com"
28 +LIST_URL = f"{BASE}/logements"
29 +
30 +_GUID_RE = re.compile(r"/logements/([0-9a-f-]{36})")
31 +
32 +# villes possibles dans l'adresse « Emplacement » (jamais devinées)
33 +_CITY_RE = re.compile(r"\b(Sherbrooke|Magog|East Angus|Lennoxville)\b", re.I)
34 +
35 +
36 +def _clean_unit_type(raw: str) -> str:
37 + """normalize_unit_type, mais seulement si le motif est net (« 3.5 »,
38 + « 4,5 », « studio »…) — jamais le texte brut en guise de type."""
39 + ut = normalize_unit_type(raw)
40 + if re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison", ut or ""):
41 + return ut
42 + return ""
43 +
44 +
45 +def _lines(el) -> list[str]:
46 + """Lignes de texte nettoyées d'un sous-arbre."""
47 + out = []
48 + for raw in el.get_text("\n", strip=True).split("\n"):
49 + t = re.sub(r"\s+", " ", raw).strip()
50 + if t:
51 + out.append(t)
52 + return out
53 +
54 +
55 +class LabonteConnector(BaseConnector):
56 + source_id = "labonte"
57 + request_delay = 0.7
58 + max_details = 25 # garde-fou fiches détail (vraies requêtes)
59 +
60 + def fetch(self) -> list[Listing]:
61 + html = self.get(LIST_URL).text
62 + soup = BeautifulSoup(html, "html.parser")
63 +
64 + listings: dict[str, Listing] = {}
65 + # items du répéteur : conteneurs suffixés par le GUID de l'item CMS
66 + for item in soup.select('div[id*="__"]'):
67 + link = item.select_one('a[href*="/logements/"]')
68 + if not link:
69 + continue
70 + m = _GUID_RE.search(link.get("href") or "")
71 + if not m:
72 + continue
73 + guid = m.group(1)
74 + iid = (item.get("id") or "")
75 + if not iid.endswith(f"__{guid}") or guid in listings:
76 + continue # garder le conteneur d'item complet, une fois
77 +
78 + lines = _lines(item)
79 + # « À partir de | 1150 | $/mois | 40 rue St-François |
80 + # Nombre de pièces | 3.5 | Secteur | Centre-ville | En savoir plus »
81 + h2 = item.select_one("h2")
82 + address = re.sub(r"\s+", " ", h2.get_text(" ", strip=True)) if h2 else ""
83 +
84 + price = None
85 + price_label = ""
86 + for i, t in enumerate(lines):
87 + if t.lower().startswith("à partir de") and i + 1 < len(lines):
88 + amount = lines[i + 1]
89 + unit = lines[i + 2] if i + 2 < len(lines) else ""
90 + price_label = f"À partir de {amount} {unit}".strip()
91 + price = parse_price(f"{amount} $")
92 + break
93 +
94 + pieces = sector = ""
95 + for i, t in enumerate(lines):
96 + if t.lower().startswith("nombre de pièces") and i + 1 < len(lines):
97 + pieces = lines[i + 1]
98 + elif t.lower() == "secteur" and i + 1 < len(lines):
99 + sector = lines[i + 1]
100 +
101 + img = item.select_one('img[src*="static.wixstatic.com/media"]')
102 + images = []
103 + if img:
104 + images.append(img["src"].split("/v1/")[0])
105 +
106 + listings[guid] = Listing(
107 + source=self.source_id,
108 + external_id=guid,
109 + url=f"{BASE}/logements/{guid}",
110 + title=address or f"Logement {guid[:8]}",
111 + address=address,
112 + sector=sector,
113 + city="Sherbrooke",
114 + unit_type=_clean_unit_type(pieces),
115 + price=price,
116 + price_label=price_label,
117 + availability="", # non publié par la source
118 + images=images,
119 + )
120 +
121 + # fiches détail (cache BD) : description, chambres/étage, adresse complète
122 + self._fetched = 0
123 + for lst in listings.values():
124 + key = hashlib.sha1(
125 + f"{lst.title}|{lst.price_label}|{lst.sector}"
126 + .encode("utf-8")).hexdigest()
127 + try:
128 + payload = self.detail(lst.external_id, key,
129 + lambda u=lst.url: self._fetch_detail(u))
130 + except Exception:
131 + continue
132 + self._apply_detail(lst, payload)
133 + return list(listings.values())
134 +
135 + # -- fiche détail (page dynamique Wix) -------------------------------------------
136 + def _fetch_detail(self, url: str) -> dict:
137 + if self._fetched >= self.max_details:
138 + raise RuntimeError("budget de fiches détail atteint")
139 + self._fetched += 1
140 + html = self.get(url).text
141 + soup = BeautifulSoup(html, "html.parser")
142 + lines = _lines(soup.body or soup)
143 + out: dict = {}
144 +
145 + # description : entre « Description » et « Détails du logement »
146 + try:
147 + i = lines.index("Description")
148 + j = lines.index("Détails du logement")
149 + if 0 <= i < j:
150 + out["description"] = " ".join(lines[i + 1:j])[:1500]
151 + except ValueError:
152 + pass
153 +
154 + # paires « Détails du logement » : Secteur / pièces / chambres / Étage
155 + for i, t in enumerate(lines):
156 + low = t.lower()
157 + if i + 1 >= len(lines):
158 + break
159 + if low == "secteur":
160 + out["sector"] = lines[i + 1]
161 + elif low.startswith("nombre de pièces"):
162 + out["pieces"] = lines[i + 1]
163 + elif low.startswith("nombre de chambres"):
164 + out["bedrooms"] = lines[i + 1]
165 + elif low == "étage":
166 + out["floor"] = lines[i + 1]
167 + elif low == "emplacement":
168 + out["full_address"] = lines[i + 1]
169 + return out
170 +
171 + def _apply_detail(self, lst: Listing, d: dict) -> None:
172 + if not d:
173 + return
174 + if d.get("description"):
175 + lst.description = d["description"]
176 + if d.get("sector") and not lst.sector:
177 + lst.sector = d["sector"]
178 + if d.get("full_address"):
179 + full = d["full_address"]
180 + # « 49 Rue King Ouest, Sherbrooke, QC J1H 1P1, Canada »
181 + lst.address = ", ".join(p.strip() for p in full.split(",")[:2])
182 + m = _CITY_RE.search(full)
183 + if m:
184 + lst.city = m.group(1).title()
185 + if not lst.unit_type and d.get("pieces"):
186 + lst.unit_type = _clean_unit_type(d["pieces"])
187 + details: dict = {}
188 + if str(d.get("bedrooms") or "").isdigit():
189 + details["bedrooms"] = int(d["bedrooms"])
190 + if str(d.get("floor") or "").isdigit():
191 + details["floor"] = int(d["floor"])
192 + if details:
193 + lst.details = {**lst.details, **details}
added louka/connectors/lelaureat.py +136 −0
@@ -0,0 +1,136 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/lelaureat.py : connecteur Résidences Le Lauréat
5 +# (residences-lelaureat.com) — 107 studios étudiants tout inclus rénovés au
6 +# 2145, rue Galt Ouest, Sherbrooke (bail Régie du logement, non-fumeur,
7 +# occupation simple). Site WordPress WPBakery d'une seule page : la section
8 +# « Dimensions des studios » publie 5 TYPES d'unités (Studio Type, Centre
9 +# Arrière, Coin Est, Coin Ouest, Loft) avec dimensions et prix par variante
10 +# (étage / demi-sous-sol). Granularité = type d'unité (aucune unité
11 +# individuelle publiée), comme sig.py. Les inclusions communes (« Notre
12 +# service tout inclus englobe ») sont reprises en commodités. 1 requête.
13 +# -----------------------------------------------------------------------------
14 +from __future__ import annotations
15 +
16 +import re
17 +
18 +from bs4 import BeautifulSoup
19 +
20 +from ..schema import Listing, strip_accents
21 +from .base import BaseConnector
22 +
23 +BASE = "https://www.residences-lelaureat.com"
24 +ADDRESS = "2145 Galt Ouest, Sherbrooke, J1K 3A8"
25 +
26 +_AMOUNT_RE = re.compile(r"\$\s?(\d{3,4})")
27 +_VARIANT_IMG = re.compile(r"-\d{2,4}x\d{2,4}(?=\.(?:jpg|jpeg|png|webp)$)", re.I)
28 +
29 +
30 +def _slug(name: str) -> str:
31 + s = strip_accents(name.strip().lower())
32 + return re.sub(r"[^a-z0-9]+", "-", s).strip("-")
33 +
34 +
35 +class LelaureatConnector(BaseConnector):
36 + source_id = "lelaureat"
37 + request_delay = 0.6
38 +
39 + def fetch(self) -> list[Listing]:
40 + html = self.get(f"{BASE}/").text
41 + soup = BeautifulSoup(html, "html.parser")
42 +
43 + # inclusions communes : listes de la section « tout inclus »
44 + common: list[str] = []
45 + for marker in ("Notre service tout inclus englobe",
46 + "Nos appartements sont équipés"):
47 + el = soup.find(string=re.compile(marker))
48 + if not el:
49 + continue
50 + ul = el.parent.find_next("ul")
51 + if ul:
52 + for li in ul.select("li"):
53 + t = re.sub(r"\s+", " ",
54 + li.get_text(" ", strip=True)).strip(" ►")
55 + if t and t not in common:
56 + common.append(t)
57 +
58 + # galerie du site (photos des studios)
59 + gallery: list[str] = []
60 + for img in soup.select("img[src*='/wp-content/uploads/']"):
61 + src = _VARIANT_IMG.sub("", str(img.get("src") or ""))
62 + if src.startswith("http") and src not in gallery \
63 + and re.search(r"room-|logement|Un-logement", src):
64 + gallery.append(src)
65 +
66 + # 5 types d'unités : titres « Studio … » / « Loft » de la section
67 + # dimensions, chacun précédé de sa dimension et suivi de sa liste
68 + # (prix par variante, particularités)
69 + listings: list[Listing] = []
70 + seen: set[str] = set()
71 + for h in soup.find_all(["h3", "h4", "h5"]):
72 + name = re.sub(r"\s+", " ", h.get_text(" ", strip=True)).strip()
73 + if not re.match(r"^(Studio|Loft)", name) or len(name) > 40:
74 + continue
75 + sid = _slug(name)
76 + if sid in seen:
77 + continue
78 + seen.add(sid)
79 +
80 + dim_el = h.find_previous(string=re.compile(r"\d+\s*'"))
81 + dimension = re.sub(r"\s+", " ", str(dim_el)).strip() if dim_el else ""
82 +
83 + # toutes les puces entre ce titre de type et le suivant : prix par
84 + # variante (étage / demi-sous-sol) + particularités
85 + bullets: list[str] = []
86 + for el in h.find_all_next():
87 + if el.name in ("h3", "h4", "h5") and re.match(
88 + r"^(Studio|Loft|Façade|Galerie|Localisation)",
89 + el.get_text(" ", strip=True)):
90 + break
91 + if el.name == "li" or (el.name == "p" and
92 + "►" in el.get_text()):
93 + t = re.sub(r"\s+", " ", el.get_text(" ", strip=True))
94 + t = t.replace("►", " ").strip()
95 + t = re.sub(r"\s+", " ", t)
96 + if t and t not in bullets:
97 + bullets.append(t)
98 +
99 + # prix : « $855 /$825 » (étage) et « $810 » (demi-sous-sol) ->
100 + # le plus bas des variantes du type
101 + price_lines = [b for b in bullets if "$" in b]
102 + price_label = " / ".join(price_lines)[:80]
103 + amounts = [int(a) for a in _AMOUNT_RE.findall(" ".join(price_lines))]
104 + price = float(min(amounts)) if amounts else None
105 +
106 + # disponibilité : seulement si écrite (ex. Loft « Disponibilité à
107 + # partir de janvier 2026 »)
108 + availability = ""
109 + for b in bullets:
110 + m = re.search(r"Disponibilit[eé].*$", b)
111 + if m:
112 + availability = m.group(0).strip()
113 + break
114 +
115 + desc_parts = [f"Dimensions : {dimension}"] if dimension else []
116 + desc_parts += [b for b in bullets if b]
117 + amenities = [f"Dimensions : {dimension}"] if dimension else []
118 + amenities += common[:12]
119 +
120 + listings.append(Listing(
121 + source=self.source_id,
122 + external_id=sid,
123 + url=f"{BASE}/",
124 + title=f"Résidences Le Lauréat — {name} (étudiant tout inclus)",
125 + address=ADDRESS,
126 + sector="",
127 + city="Sherbrooke",
128 + unit_type="Loft" if name.lower().startswith("loft") else "Studio",
129 + price=price,
130 + price_label=price_label,
131 + availability=availability,
132 + description=" | ".join(desc_parts)[:1000],
133 + amenities=amenities,
134 + images=gallery[:12],
135 + ))
136 + return listings
added louka/connectors/matinale.py +160 −0
@@ -0,0 +1,160 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/matinale.py : connecteur Gestion Matinale (gestionmatinale.com)
5 +# ~44 apparts + maisons à Sherbrooke, Magog et Windsor. WordPress +
6 +# WooCommerce : chaque logement offert est un « produit » — archives
7 +# /a-louer/appartements-logements/ (paginée, 16/page) et /a-louer/maison/.
8 +# Cartes li.product : titre « 1330 KING OUEST, SHERBROOKE, J1J 2B6 (Août) »
9 +# (adresse, ville, code postal + disponibilité entre parenthèses), prix
10 +# WooCommerce, type d'unité dans la taxonomie (classe product_cat-5-1-2) et
11 +# photo. external_id = ID WordPress (classe post-<id>).
12 +# ATTENTION robots.txt : « Crawl-Delay: 20 » -> request_delay de 20 s et
13 +# AUCUNE fiche produit visitée (archives seulement, 4-5 requêtes par sync).
14 +# -----------------------------------------------------------------------------
15 +from __future__ import annotations
16 +
17 +import re
18 +
19 +from bs4 import BeautifulSoup
20 +
21 +from ..schema import Listing, parse_price
22 +from .base import BaseConnector
23 +
24 +BASE = "https://gestionmatinale.com"
25 +ARCHIVES = [
26 + ("/a-louer/appartements-logements/", ""),
27 + ("/a-louer/maison/", "Maison"),
28 +]
29 +
30 +_POST_ID_RE = re.compile(r"\bpost-(\d+)\b")
31 +_CAT_TYPE_RE = re.compile(r"\bproduct_cat-(\d)-1-2\b")
32 +_PARENS_RE = re.compile(r"\(([^)]+)\)\s*$")
33 +_POSTAL_RE = re.compile(r"\b[A-Z]\d[A-Z]\s?\d[A-Z]\d\b")
34 +_CITY_RE = re.compile(r"\b(SHERBROOKE|MAGOG|WINDSOR|EAST ANGUS|ROCK FOREST|"
35 + r"FLEURIMONT|LENNOXVILLE|ORFORD|STUKELY-SUD|"
36 + r"SAINTE-CATHERINE-DE-HATLEY)\b", re.I)
37 +
38 +
39 +class MatinaleConnector(BaseConnector):
40 + source_id = "matinale"
41 + request_delay = 20.0 # robots.txt : Crawl-Delay: 20 — respecté
42 + max_pages = 6 # garde-fou par archive (3 pages observées)
43 +
44 + def fetch(self) -> list[Listing]:
45 + listings: dict[str, Listing] = {}
46 + for path, forced_type in ARCHIVES:
47 + for page in range(1, self.max_pages + 1):
48 + url = (f"{BASE}{path}" if page == 1
49 + else f"{BASE}{path}page/{page}/")
50 + try:
51 + html = self.get(url).text
52 + except Exception:
53 + break
54 + soup = BeautifulSoup(html, "html.parser")
55 + cards = soup.select("li.product")
56 + if not cards:
57 + break
58 + for card in cards:
59 + try:
60 + lst = self._parse_card(card, forced_type)
61 + except Exception:
62 + continue
63 + if lst and lst.external_id not in listings:
64 + listings[lst.external_id] = lst
65 + # dernière page atteinte ?
66 + nums = [int(a.get_text(strip=True))
67 + for a in soup.select("a.page-numbers, span.page-numbers")
68 + if a.get_text(strip=True).isdigit()]
69 + if not nums or page >= max(nums):
70 + break
71 + return list(listings.values())
72 +
73 + # -- carte produit ----------------------------------------------------------------
74 + def _parse_card(self, card, forced_type: str) -> Listing | None:
75 + link = card.select_one("a.woocommerce-loop-product__link[href]")
76 + title_el = card.select_one("h2.woocommerce-loop-product__title")
77 + if not (link and title_el):
78 + return None
79 + url = link["href"]
80 + title = re.sub(r"\s+", " ", title_el.get_text(" ", strip=True)).strip()
81 +
82 + # exclusions : espaces non résidentiels vendus comme produits
83 + if re.search(r"stationnement|garage|rangement|entrep[oô]t", title, re.I):
84 + return None
85 +
86 + classes = " ".join(card.get("class") or [])
87 + m = _POST_ID_RE.search(classes)
88 + ext_id = m.group(1) if m else url.rstrip("/").rsplit("/", 1)[-1]
89 +
90 + # type d'unité : taxonomie WooCommerce (product_cat-5-1-2) ou archive
91 + unit_type = forced_type
92 + mt = _CAT_TYPE_RE.search(classes)
93 + if mt:
94 + n = int(mt.group(1))
95 + unit_type = "6½+" if n >= 6 else f"{n}½"
96 + elif re.search(r"product_cat-mais|product_cat-chalet", classes) \
97 + or re.search(r"\bmaison\b|\bchalet\b", title, re.I):
98 + unit_type = "Maison"
99 +
100 + # disponibilité entre parenthèses du titre : « (Août) », « (Vacant) »,
101 + # « (Janvier 2027) » — certains titres la placent au milieu
102 + availability = ""
103 + mp = re.search(r"\(([^)]{2,25})\)", title)
104 + if mp:
105 + availability = mp.group(1).strip()
106 +
107 + # adresse / ville / code postal depuis le titre
108 + clean = re.sub(r"\s*\([^)]*\)", "", title).strip(" ,")
109 + city = ""
110 + mc = _CITY_RE.search(clean)
111 + if mc:
112 + city = mc.group(1).title()
113 + if city in ("Rock Forest", "Fleurimont", "Lennoxville"):
114 + city = "Sherbrooke"
115 + postal = ""
116 + mpost = _POSTAL_RE.search(clean.upper())
117 + if mpost:
118 + postal = mpost.group(0)
119 + address = clean
120 +
121 + # prix WooCommerce (promo : <ins> = prix courant)
122 + price = None
123 + price_label = ""
124 + price_el = card.select_one("span.price")
125 + if price_el:
126 + price_label = re.sub(r"\s+", " ",
127 + price_el.get_text(" ", strip=True)).strip()
128 + ins = price_el.select_one("ins .woocommerce-Price-amount")
129 + amount = ins or price_el.select_one(".woocommerce-Price-amount")
130 + if amount:
131 + price = parse_price(re.sub(
132 + r"(\d),(\d{3})", r"\1\2",
133 + amount.get_text(" ", strip=True)))
134 +
135 + # photo (chargée en différé : data-src)
136 + images = []
137 + img = card.select_one("img")
138 + if img:
139 + src = (img.get("data-src") or img.get("src") or "").strip()
140 + src = re.sub(r"-\d{2,4}x\d{2,4}(?=\.(?:jpg|jpeg|png|webp)$)", "",
141 + src, flags=re.I)
142 + if src.startswith("http"):
143 + images.append(src)
144 +
145 + details = {"postal_code": postal} if postal else {}
146 + return Listing(
147 + source=self.source_id,
148 + external_id=str(ext_id),
149 + url=url,
150 + title=title,
151 + address=address,
152 + sector="",
153 + city=city or "Sherbrooke",
154 + unit_type=unit_type,
155 + price=price,
156 + price_label=price_label,
157 + availability=availability,
158 + details=details,
159 + images=images,
160 + )
added louka/connectors/montagnais.py +130 −0
@@ -0,0 +1,130 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/montagnais.py : connecteur Le Montagnais, résidences étudiantes
5 +# (lemontagnais.com) — 6 campus/immeubles à Sherbrooke (Campus principal,
6 +# Campus de la santé, Campus Centro, Campus Mont-Bellevue, Résidences E et G),
7 +# location longue durée (bail) : chambres, studios, 2½ à 5½.
8 +# WordPress (thème Oktane « campus ») : la page /logement/ charge la liste
9 +# via admin-ajax `get_posts_location` (post_type=logement) qui retourne le
10 +# JSON complet des types de logements — titre, prix « à partir de »
11 +# (startingFrom), campus (habitation_terms), statut (projet_status/acf),
12 +# adresse structurée Google (ville, code postal, GPS), description,
13 +# caractéristiques ACF et photo. Granularité = type de logement par campus
14 +# (aucune unité individuelle publiée), comme sig.py. 1 requête par sync.
15 +# Seuls les types au statut « Disponible » deviennent des annonces.
16 +# -----------------------------------------------------------------------------
17 +from __future__ import annotations
18 +
19 +import re
20 +
21 +from bs4 import BeautifulSoup
22 +
23 +from ..schema import Listing, normalize_unit_type, parse_price
24 +from .base import BaseConnector
25 +
26 +BASE = "https://www.lemontagnais.com"
27 +LOGEMENT_PAGE = f"{BASE}/logement/"
28 +AJAX_URL = f"{BASE}/wp-admin/admin-ajax.php"
29 +
30 +
31 +class MontagnaisConnector(BaseConnector):
32 + source_id = "montagnais"
33 + request_delay = 0.6
34 +
35 + def fetch(self) -> list[Listing]:
36 + # POST admin-ajax : le même appel que la page /logement/ (post_type
37 + # logement, toutes les fiches d'un coup)
38 + resp = self.session.post(
39 + AJAX_URL,
40 + data={"action": "get_posts_location", "post_type": "logement",
41 + "posts_per_page": "-1", "page": "1"},
42 + timeout=self.timeout)
43 + resp.raise_for_status()
44 + data = resp.json()
45 +
46 + listings: list[Listing] = []
47 + seen: set[str] = set()
48 + for row in data.get("results") or []:
49 + post = (row or {}).get("post") or {}
50 + ext_id = str(post.get("ID") or "")
51 + if not ext_id or ext_id in seen:
52 + continue
53 + seen.add(ext_id)
54 +
55 + # statut : « Disponible » sinon on saute (rien d'inventé)
56 + status = (post.get("projet_status") or "").strip()
57 + if status.lower() != "disponible":
58 + continue
59 +
60 + title = (post.get("post_title") or "").strip()
61 + campus = (post.get("habitation_terms") or "").strip()
62 +
63 + # type d'unité depuis le titre (« Logement 2 ½ », « Studio Galt
64 + # Ouest », « Grande chambre… ») — motif net seulement
65 + unit_type = normalize_unit_type(title)
66 + if not re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison",
67 + unit_type or ""):
68 + unit_type = ""
69 +
70 + # prix « à partir de » (champ startingFrom / ACF logement_a_partir_de)
71 + raw_price = str(post.get("startingFrom") or "").strip()
72 + price_label = f"À partir de {raw_price} $/mois" if raw_price else ""
73 + price = parse_price(price_label)
74 + if price is None and re.fullmatch(r"\d{3,5}(?:[.,]\d{2})?", raw_price):
75 + price = float(raw_price.replace(",", "."))
76 +
77 + # adresse structurée Google (ACF) : rue, ville, code postal, GPS
78 + addr = post.get("address") or {}
79 + street = " ".join(x for x in (
80 + str(addr.get("street_number") or ""),
81 + str(addr.get("street_name") or "")) if x).strip()
82 + postal = (addr.get("post_code") or "").strip()
83 + address = ", ".join(x for x in (street, postal) if x)
84 + city = (addr.get("city") or "").strip() or "Sherbrooke"
85 + lat, lng = addr.get("lat"), addr.get("lng")
86 +
87 + # description (contenu du billet) + caractéristiques ACF (liste)
88 + description = re.sub(
89 + r"\s+", " ", (post.get("post_content") or "")).strip()[:1500]
90 + amenities: list[str] = []
91 + specs = (post.get("habitation_specs") or "").strip()
92 + for t in specs.split(","):
93 + t = t.strip()
94 + if t and t not in amenities:
95 + amenities.append(t)
96 + acf = post.get("acf") or {}
97 + carac = acf.get("logement_caracteristiques") or ""
98 + if carac:
99 + for li in BeautifulSoup(carac, "html.parser").select("li"):
100 + t = re.sub(r"\s+", " ", li.get_text(" ", strip=True))
101 + if t and t not in amenities and len(amenities) < 25:
102 + amenities.append(t)
103 +
104 + images = []
105 + thumb = (post.get("post_thumbnail_url") or "").strip()
106 + if thumb.startswith("http"):
107 + images.append(thumb)
108 +
109 + details = {"residence": campus} if campus else {}
110 + listings.append(Listing(
111 + source=self.source_id,
112 + external_id=ext_id,
113 + url=(post.get("permalink") or LOGEMENT_PAGE),
114 + title=f"{title}{campus}" if campus and
115 + campus.lower() not in title.lower() else title,
116 + address=address,
117 + sector=campus, # campus = « secteur » du Montagnais
118 + city=city,
119 + unit_type=unit_type,
120 + price=price,
121 + price_label=price_label,
122 + availability=status, # « Disponible »
123 + description=description,
124 + amenities=amenities,
125 + details=details,
126 + images=images,
127 + lat=float(lat) if lat else None,
128 + lng=float(lng) if lng else None,
129 + ))
130 + return listings
added louka/connectors/morin.py +223 −0
@@ -0,0 +1,223 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/morin.py : connecteur Constructions Morin (constructionsmorin.com)
5 +# Constructeur-locateur : apparts neufs tout inclus à Sherbrooke
6 +# (St-Élie/Rock-Forest, Fleurimont), Ascot Corner, East Angus, Windsor et
7 +# Lac-Mégantic. WordPress + Avada : la page /appartements-a-louer/ est
8 +# rendue serveur — un bloc .appartement_list_block par TYPE d'unité
9 +# disponible dans un immeuble (adresse h3, ville/secteur, projet, badge de
10 +# type « 4 ½ », « N disponibles », « À partir de … $ », date « Disponible
11 +# dès le … », chambres/sdb/stationnement). Granularité = type d'unité par
12 +# immeuble (les unités individuelles de la fiche n'ont ni prix ni dispo
13 +# propres). Les fiches (via self.detail, cache BD) ajoutent la description
14 +# (inclusions) et la galerie. external_id = slug projet/unité (stable).
15 +# -----------------------------------------------------------------------------
16 +from __future__ import annotations
17 +
18 +import hashlib
19 +import re
20 +
21 +from bs4 import BeautifulSoup
22 +
23 +from ..schema import Listing, normalize_unit_type, parse_price
24 +from .base import BaseConnector
25 +
26 +BASE = "https://constructionsmorin.com"
27 +LIST_URL = f"{BASE}/appartements-a-louer/"
28 +
29 +_VARIANT_IMG = re.compile(r"-\d{2,4}x\d{2,4}(?=\.(?:jpg|jpeg|png|webp)$)", re.I)
30 +_KNOWN_CITIES = ["Sherbrooke", "Ascot Corner", "East Angus", "Windsor",
31 + "Lac-Mégantic"]
32 +
33 +
34 +class MorinConnector(BaseConnector):
35 + source_id = "morin"
36 + request_delay = 0.6
37 + max_details = 25 # garde-fou fiches détail (vraies requêtes)
38 +
39 + def fetch(self) -> list[Listing]:
40 + html = self.get(LIST_URL).text
41 + soup = BeautifulSoup(html, "html.parser")
42 +
43 + listings: dict[str, Listing] = {}
44 + for block in soup.select(".appartement_list_block"):
45 + try:
46 + lst = self._parse_block(block)
47 + except Exception:
48 + continue
49 + if lst and lst.external_id not in listings:
50 + listings[lst.external_id] = lst
51 +
52 + # fiches (cache BD) : description (inclusions) + galerie du projet
53 + self._fetched = 0
54 + for lst in listings.values():
55 + key = hashlib.sha1(
56 + f"{lst.title}|{lst.price_label}|{lst.availability}"
57 + .encode("utf-8")).hexdigest()
58 + try:
59 + payload = self.detail(lst.external_id, key,
60 + lambda u=lst.url: self._fetch_detail(u))
61 + except Exception:
62 + continue
63 + if payload.get("description"):
64 + lst.description = payload["description"]
65 + if payload.get("images"):
66 + lst.images = list(dict.fromkeys(payload["images"] + lst.images))[:20]
67 + if payload.get("area_label") and lst.area_sqft is None:
68 + # « Superficie: 860-1140 pi² » -> borne basse (plage réelle
69 + # conservée en commodité)
70 + m = re.match(r"([\d\s]+)", payload["area_label"])
71 + if m:
72 + try:
73 + val = float(m.group(1).replace(" ", ""))
74 + if 80 <= val <= 20000:
75 + lst.area_sqft = val
76 + except ValueError:
77 + pass
78 + lst.amenities = list(dict.fromkeys(
79 + lst.amenities + [f"Superficie : {payload['area_label']}"]))
80 + return list(listings.values())
81 +
82 + # -- un bloc = un type d'unité disponible dans un immeuble ------------------------
83 + def _parse_block(self, block) -> Listing | None:
84 + link = block.select_one("a[href*='/appartements-a-louer/']")
85 + if not link:
86 + return None
87 + url = link["href"]
88 + m = re.search(r"/appartements-a-louer/([^?#]+?)/?$", url)
89 + if not m:
90 + return None
91 + slug = m.group(1).strip("/") # « horizon/5565-…-4-1-2 »
92 +
93 + h3 = block.select_one("h3")
94 + address = re.sub(r"\s+", " ", h3.get_text(" ", strip=True)).strip() if h3 else ""
95 +
96 + # ville + secteur : « Ascot Corner », « Sherbrooke Secteur St-Élie/… »
97 + sec_el = block.select_one(".appartement_list_information_secteur")
98 + sec_txt = re.sub(r"\s+", " ",
99 + sec_el.get_text(" ", strip=True)).strip() if sec_el else ""
100 + city, sector = "", ""
101 + for c in _KNOWN_CITIES:
102 + if sec_txt.lower().startswith(c.lower()):
103 + city = c
104 + sector = re.sub(r"^Secteur\s+", "", sec_txt[len(c):].strip())
105 + break
106 + if not city:
107 + city = sec_txt
108 +
109 + project_el = sec_el.find_next_sibling("div") if sec_el else None
110 + project = re.sub(r"\s+", " ", project_el.get_text(" ", strip=True)).strip() \
111 + if project_el else ""
112 +
113 + # type d'unité : badge « 4 ½ »
114 + badge = block.select_one(".appartement_list_badge_libre")
115 + unit_type = normalize_unit_type(
116 + badge.get_text(" ", strip=True) if badge else "")
117 + if not re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison",
118 + unit_type or ""):
119 + unit_type = ""
120 +
121 + # « Disponible dès le 1er février 2027! » (bandeau de la carte)
122 + tag = block.select_one(".appartement_list_tag")
123 + availability = re.sub(r"\s+", " ",
124 + tag.get_text(" ", strip=True)).strip() if tag else ""
125 +
126 + # « À partir de | 1395$ »
127 + prix_el = block.select_one(".appartement_list_information_prix_montant")
128 + price_label = ""
129 + price = None
130 + if prix_el:
131 + amount = prix_el.get_text(" ", strip=True)
132 + price_label = f"À partir de {amount}"
133 + price = parse_price(re.sub(r"(\d)\s(\d{3})", r"\1\2", amount))
134 +
135 + # commodités structurées de la carte : dispo/nb unités, chambres, sdb,
136 + # stationnement, superficie
137 + amenities: list[str] = []
138 + libre = block.select_one(".appartement_list_libre_txt")
139 + if libre:
140 + amenities.append(re.sub(r"\s+", " ",
141 + libre.get_text(" ", strip=True)).strip())
142 + nb = block.select_one(".appartement_list_nb_appartement")
143 + if nb:
144 + amenities.append(re.sub(r"\s+", " ",
145 + nb.get_text(" ", strip=True)).strip())
146 + for unit in block.select(".appartement_list_info_block > div"):
147 + val = unit.select_one(".appartement_list_info_block_unit span")
148 + lab = unit.select_one(".appartement_list_info_block_unit_title")
149 + if val and lab:
150 + amenities.append(f"{val.get_text(strip=True)} "
151 + f"{lab.get_text(strip=True)}")
152 + area = None
153 + m2 = re.search(r"Superficie\s*:\s*([\d\s]+)(?:-||à)?([\d\s]*)pi",
154 + block.get_text(" ", strip=True))
155 + if m2:
156 + try:
157 + area = float(m2.group(1).replace(" ", ""))
158 + except ValueError:
159 + pass
160 +
161 + # visuel de la carte (background-image du bloc)
162 + images: list[str] = []
163 + bg = block.select_one(".appartement_list_image_bg")
164 + if bg:
165 + mi = re.search(r"url\('([^']+)'\)", bg.get("style") or "")
166 + if mi and mi.group(1).startswith("http"):
167 + images.append(_VARIANT_IMG.sub("", mi.group(1)))
168 +
169 + title = f"{unit_type}{address}" if unit_type else address
170 + if project:
171 + title += f" ({project})"
172 +
173 + return Listing(
174 + source=self.source_id,
175 + external_id=slug,
176 + url=url,
177 + title=title,
178 + address=address,
179 + sector=sector,
180 + city=city,
181 + unit_type=unit_type,
182 + price=price,
183 + price_label=price_label,
184 + availability=availability,
185 + area_sqft=area,
186 + amenities=amenities,
187 + details={"project": project} if project else {},
188 + images=images,
189 + )
190 +
191 + # -- fiche type d'unité -------------------------------------------------------
192 + def _fetch_detail(self, url: str) -> dict:
193 + if self._fetched >= self.max_details:
194 + raise RuntimeError("budget de fiches détail atteint")
195 + self._fetched += 1
196 + html = self.get(url).text
197 + soup = BeautifulSoup(html, "html.parser")
198 + out: dict = {}
199 +
200 + # « Votre appartement luxueux comprend : » + liste d'inclusions
201 + head = soup.find(string=re.compile(r"appartement.*comprend", re.I))
202 + if head:
203 + ul = head.parent.find_next("ul")
204 + if ul:
205 + items = [re.sub(r"\s+", " ", li.get_text(" ", strip=True)).strip(" ;")
206 + for li in ul.select("li")]
207 + out["description"] = "Votre appartement comprend : " + \
208 + " ; ".join(t for t in items if t)[:1400]
209 +
210 + # « Superficie: 860-1140 pi² » (fiche du type d'unité)
211 + ma = re.search(r"Superficie\s*:\s*([\d\s]+(?:[-–à]\s*[\d\s]+)?)\s*pi",
212 + soup.get_text(" ", strip=True))
213 + if ma:
214 + out["area_label"] = re.sub(r"\s+", " ", ma.group(1)).strip() + " pi²"
215 +
216 + images: list[str] = []
217 + for img in soup.select("img[src*='/wp-content/uploads/']"):
218 + src = _VARIANT_IMG.sub("", str(img.get("src") or ""))
219 + if src.startswith("http") and src not in images \
220 + and not re.search(r"logo|icon|favicon|Projet-", src):
221 + images.append(src)
222 + out["images"] = images[:15]
223 + return out
added louka/connectors/siagi.py +105 −0
@@ -0,0 +1,105 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/siagi.py : connecteur SIA Gestion Immobilière (siagi.ca)
5 +# ~240 logements en gestion — Estrie (Sherbrooke) + Grand Montréal (Laval,
6 +# La Prairie). Site Next.js (App Router) : la page /listings est rendue
7 +# serveur et son flux RSC (self.__next_f.push) embarque le tableau JSON
8 +# "listings" — id (cuid stable), title « Ville · App. N », subtitle (adresse
9 +# civique), rentLabel (« 1 200,00 $ / mois ») et mapEmbedUrl Google Maps
10 +# (adresse complète avec code postal). Une seule requête par sync ; aucun
11 +# rendu JavaScript nécessaire (patron louis14/somex). Les annonces n'ont pas
12 +# de page propre ni de photo/type/disponibilité publiés — champs laissés
13 +# vides, rien d'inventé.
14 +# -----------------------------------------------------------------------------
15 +from __future__ import annotations
16 +
17 +import codecs
18 +import json
19 +import re
20 +from urllib.parse import parse_qs, unquote, urlparse
21 +
22 +from ..schema import Listing, parse_price
23 +from .base import BaseConnector
24 +
25 +BASE = "https://www.siagi.ca"
26 +LIST_URL = f"{BASE}/listings"
27 +
28 +# fragments RSC de Next.js : self.__next_f.push([1,"...payload échappé..."])
29 +_NEXT_F_RE = re.compile(r'self\.__next_f\.push\(\[1,"((?:[^"\\]|\\.)*)"\]\)')
30 +_POSTAL_RE = re.compile(r"\b([A-Z]\d[A-Z]\s?\d[A-Z]\d)\b")
31 +
32 +
33 +def _flight_blob(html: str) -> str:
34 + """Concatène et désérialise les fragments RSC (voir somex_saintnicolas)."""
35 + blob = "".join(codecs.decode(c, "unicode_escape")
36 + for c in _NEXT_F_RE.findall(html))
37 + return blob.encode("latin-1", "ignore").decode("utf-8", "ignore")
38 +
39 +
40 +def _clean_price_label(label: str) -> str:
41 + """« 1 200,00 $ / mois » -> compatible parse_price (virgule décimale)."""
42 + s = re.sub(r"(\d)\s(\d{3})", r"\1\2", label) # espaces de milliers
43 + return re.sub(r",(\d{2})\b", r".\1", s) # virgule décimale
44 +
45 +
46 +class SiagiConnector(BaseConnector):
47 + source_id = "siagi"
48 + request_delay = 0.6
49 +
50 + def fetch(self) -> list[Listing]:
51 + html = self.get(LIST_URL).text
52 + blob = _flight_blob(html)
53 +
54 + i = blob.find('"listings":[')
55 + if i < 0:
56 + raise RuntimeError("tableau listings introuvable dans le flux RSC")
57 + arr, _ = json.JSONDecoder().raw_decode(blob[i + len('"listings":'):])
58 +
59 + listings: list[Listing] = []
60 + seen: set[str] = set()
61 + for it in arr:
62 + if not isinstance(it, dict) or not it.get("id"):
63 + continue
64 + ext_id = str(it["id"])
65 + if ext_id in seen:
66 + continue
67 + seen.add(ext_id)
68 +
69 + title = (it.get("title") or "").strip()
70 + street = (it.get("subtitle") or "").strip()
71 + rent_label = (it.get("rentLabel") or "").strip()
72 +
73 + # « Sherbrooke · App. 12 » -> ville + numéro d'unité
74 + city = ""
75 + m = re.match(r"^(.*?)\s*·", title)
76 + if m:
77 + city = m.group(1).strip().title()
78 +
79 + # adresse complète (avec code postal) dans l'URL Google Maps
80 + postal = ""
81 + try:
82 + q = parse_qs(urlparse(it.get("mapEmbedUrl") or "").query)
83 + full = unquote(q.get("q", [""])[0])
84 + pm = _POSTAL_RE.search(full.upper())
85 + if pm:
86 + postal = pm.group(1)
87 + except Exception:
88 + pass
89 + address = ", ".join(x for x in (street, postal) if x)
90 +
91 + listings.append(Listing(
92 + source=self.source_id,
93 + external_id=ext_id,
94 + url=LIST_URL, # les annonces n'ont pas de page propre
95 + title=title,
96 + address=address,
97 + sector="", # non publié par la source
98 + city=city,
99 + unit_type="", # non publié par la source
100 + price=parse_price(_clean_price_label(rent_label)),
101 + price_label=rent_label,
102 + availability="", # non publié (les annonces affichées
103 + # sont les logements disponibles)
104 + ))
105 + return listings
added louka/connectors/uptimo.py +189 −0
@@ -0,0 +1,189 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/uptimo.py : connecteur Uptimo Gestion immobilière (uptimo.ca)
5 +# Apparts à Sherbrooke (Fleurimont, Mont-Bellevue, Jacques-Cartier…) et
6 +# environs. WordPress Themify + Post Type Builder : l'archive
7 +# /logements-a-louer/ (CPT « propriete », 15 cartes/page, ~6 pages) liste le
8 +# catalogue à louer — cartes .ptb_post avec titre, arrondissement
9 +# (taxonomie) et photo ; l'ID WordPress (classe post-<id>) sert
10 +# d'external_id stable. Les fiches (via self.detail, cache BD) portent les
11 +# champs structurés : « Adresse: », « Ville: », « Prix: »,
12 +# « Type de propriété: » (2 1/2…), salles de bain, description et galerie.
13 +# Aucun statut structuré de disponibilité — la date de libération n'apparaît
14 +# qu'en texte libre dans la description (textmine central).
15 +# -----------------------------------------------------------------------------
16 +from __future__ import annotations
17 +
18 +import hashlib
19 +import re
20 +
21 +from bs4 import BeautifulSoup
22 +
23 +from ..schema import Listing, normalize_unit_type, parse_price
24 +from .base import BaseConnector
25 +
26 +BASE = "https://www.uptimo.ca"
27 +LIST_URL = f"{BASE}/logements-a-louer/"
28 +
29 +_POST_ID_RE = re.compile(r"\bpost-(\d+)\b")
30 +_VARIANT_IMG = re.compile(r"-\d{2,4}x\d{2,4}(?=\.(?:jpg|jpeg|png|webp)$)", re.I)
31 +
32 +
33 +class UptimoConnector(BaseConnector):
34 + source_id = "uptimo"
35 + request_delay = 0.6
36 + max_pages = 10 # garde-fou de pagination (6 pages observées)
37 + max_details = 90 # garde-fou fiches détail (77 propriétés au catalogue)
38 +
39 + def fetch(self) -> list[Listing]:
40 + listings: dict[str, Listing] = {}
41 + for page in range(1, self.max_pages + 1):
42 + url = LIST_URL if page == 1 else f"{LIST_URL}page/{page}/"
43 + try:
44 + html = self.get(url).text
45 + except Exception:
46 + break
47 + soup = BeautifulSoup(html, "html.parser")
48 + cards = soup.select(".ptb_post")
49 + if not cards:
50 + break
51 + for card in cards:
52 + try:
53 + lst = self._parse_card(card)
54 + except Exception:
55 + continue
56 + if lst and lst.external_id not in listings:
57 + listings[lst.external_id] = lst
58 +
59 + # fiches détail (cache BD) : adresse, ville, prix, type, description,
60 + # salles de bain, galerie
61 + self._fetched = 0
62 + for lst in listings.values():
63 + key = hashlib.sha1(
64 + f"{lst.title}|{lst.sector}|{lst.images[:1]}"
65 + .encode("utf-8")).hexdigest()
66 + try:
67 + payload = self.detail(lst.external_id, key,
68 + lambda u=lst.url: self._fetch_detail(u))
69 + except Exception:
70 + continue
71 + self._apply_detail(lst, payload)
72 + return list(listings.values())
73 +
74 + # -- carte d'archive -------------------------------------------------------------
75 + def _parse_card(self, card) -> Listing | None:
76 + link = card.select_one("h3.ptb_post_title a[href]")
77 + if not link:
78 + return None
79 + url = link["href"]
80 + title = re.sub(r"\s+", " ", link.get_text(" ", strip=True)).strip()
81 + m = _POST_ID_RE.search(" ".join(card.get("class") or []))
82 + ext_id = m.group(1) if m else re.sub(r".*/propriete/([^/]+)/?.*", r"\1", url)
83 +
84 + # arrondissement (taxonomie) : « Sherbrooke-Fleurimont »
85 + sector = ""
86 + tax = card.select_one(".ptb_taxonomies_tous_les_arrondissements")
87 + if tax:
88 + sector = re.sub(r"\s+", " ", tax.get_text(" ", strip=True)).strip()
89 + sector = re.sub(r"^Sherbrooke-", "", sector)
90 +
91 + img = card.select_one("img[src]")
92 + images = []
93 + if img and str(img.get("src", "")).startswith("http"):
94 + images.append(_VARIANT_IMG.sub("", img["src"]))
95 +
96 + # type d'unité dans le titre le cas échéant (« - Studio », « 3 1/2 »)
97 + unit_type = normalize_unit_type(title)
98 + if not re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison",
99 + unit_type or ""):
100 + unit_type = ""
101 +
102 + return Listing(
103 + source=self.source_id,
104 + external_id=str(ext_id),
105 + url=url,
106 + title=title,
107 + address="", # complété par la fiche
108 + sector=sector,
109 + city="Sherbrooke",
110 + unit_type=unit_type,
111 + availability="", # aucun statut structuré publié
112 + images=images,
113 + )
114 +
115 + # -- fiche propriété (modules PTB) ---------------------------------------------
116 + def _fetch_detail(self, url: str) -> dict:
117 + if self._fetched >= self.max_details:
118 + raise RuntimeError("budget de fiches détail atteint")
119 + self._fetched += 1
120 + html = self.get(url).text
121 + soup = BeautifulSoup(html, "html.parser")
122 + out: dict = {}
123 +
124 + def module_text(sel: str) -> str:
125 + el = soup.select_one(sel)
126 + return re.sub(r"\s+", " ", el.get_text(" ", strip=True)).strip() if el else ""
127 +
128 + addr = module_text(".ptb_proprite_adresse")
129 + if addr:
130 + out["address"] = re.sub(r"^Adresse\s*:\s*", "", addr, flags=re.I)
131 + prix = module_text(".ptb_proprite_prix")
132 + if prix:
133 + out["price_label"] = re.sub(r"^Prix\s*:\s*", "", prix, flags=re.I)
134 +
135 + # taxonomies : « Ville: Sherbrooke », « Type de propriété: 2 1/2 »,
136 + # « Nombre de salle(s) de bain: 1 »
137 + for tax in soup.select(".ptb_taxonomies"):
138 + t = re.sub(r"\s+", " ", tax.get_text(" ", strip=True)).strip()
139 + if t.lower().startswith("ville"):
140 + out["city"] = re.sub(r"^Ville\s*:\s*", "", t, flags=re.I)
141 + elif t.lower().startswith("type de propriété"):
142 + out["type_raw"] = re.sub(r"^Type de propriété\s*:\s*", "", t,
143 + flags=re.I)
144 + elif "salle(s) de bain" in t.lower():
145 + m = re.search(r"(\d+)\s*$", t)
146 + if m:
147 + out["bathrooms"] = int(m.group(1))
148 +
149 + desc_el = soup.select_one(".ptb_textarea")
150 + if desc_el:
151 + out["description"] = re.sub(
152 + r"[ \t]+", " ", desc_el.get_text("\n", strip=True)).strip()[:1500]
153 +
154 + images: list[str] = []
155 + for img in soup.select(".ptb_gallery img[src], "
156 + ".ptb_proprite_image_principal img[src]"):
157 + src = _VARIANT_IMG.sub("", str(img.get("src") or ""))
158 + if src.startswith("http") and src not in images:
159 + images.append(src)
160 + out["images"] = images[:20]
161 + return out
162 +
163 + def _apply_detail(self, lst: Listing, d: dict) -> None:
164 + if not d:
165 + return
166 + if d.get("address"):
167 + lst.address = d["address"]
168 + if d.get("city"):
169 + # la taxonomie « Ville » mêle parfois la province (« Québec »,
170 + # « Québec, Sherbrooke ») : ne retenir qu'une ville réelle connue
171 + m = re.search(r"\b(Sherbrooke|Magog|Windsor|East Angus|Coaticook|"
172 + r"Ascot Corner|Lennoxville|Richmond)\b",
173 + d["city"], re.I)
174 + if m:
175 + lst.city = m.group(1).title()
176 + if d.get("price_label"):
177 + lst.price_label = d["price_label"]
178 + lst.price = parse_price(re.sub(r"(\d)[,\s](\d{3})", r"\1\2",
179 + d["price_label"]))
180 + if d.get("description"):
181 + lst.description = d["description"]
182 + if not lst.unit_type and d.get("type_raw"):
183 + ut = normalize_unit_type(d["type_raw"])
184 + if re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison", ut or ""):
185 + lst.unit_type = ut
186 + if d.get("bathrooms"):
187 + lst.details = {**lst.details, "bathrooms": d["bathrooms"]}
188 + if d.get("images"):
189 + lst.images = list(dict.fromkeys(d["images"] + lst.images))[:20]
added reports/connectors/agence_sherbrooke.md +27 −0
@@ -0,0 +1,27 @@
1 +# agence_sherbrooke — Agence de location Sherbrooke (groupe Prestiplex)
2 +- site: https://agencedelocationsherbrooke.com (WordPress + thème Houzez)
3 +- méthode: hérite de DynamicConnector (famille Houzez Estrie) — la page
4 + d'ACCUEIL est la page d'annonces (LIST_PATH = "/") + fiches détail (cache BD)
5 +- annonces: 15 (Sherbrooke 12, East Angus 2, Magog 1)
6 +- couverture: prix 100%, dispo 100%, type 100%, adresse 100%, images 100%,
7 + description 100%, GPS 100%
8 +- fixture: ok (21 requêtes) · test: ok (2 verts)
9 +
10 +## Note Prestiplex
11 +- prestiplex.com (candidat P1 de l'étude) n'affiche PLUS d'inventaire : son
12 + sitemap `property-sitemap.xml` ne contient que 2 fiches dont une « test »,
13 + et le menu ne pointe plus vers /nos-logements-a-louer/ (404). Le portail
14 + d'annonces actif du groupe est agencedelocationsherbrooke.com — ce
15 + connecteur couvre donc la famille Prestiplex (voir
16 + reports/sources-entries/prestiplex.json, non connectable).
17 +
18 +## Particularités vs la base Houzez (dynamic.py)
19 +- disponibilité = étiquette `/label/` de la carte (« Libre maintenant »,
20 + « Juillet », « Octobre ») — le lien `/status/` porte ici le SECTEUR
21 + (« Mont Bellevue »), inversé par rapport à gestimmo.
22 +- adresse Nominatim complète déjà sur la carte (`address.item-address`) :
23 + ville/secteur déduits des segments (villes réelles seulement).
24 +
25 +## Fragilités
26 +- Un seul écran d'annonces (pas de pagination observée, max_pages = 6 par
27 + garde-fou) ; si l'inventaire dépasse ~15, vérifier l'apparition de /page/2/.
added reports/connectors/alouer_sherbrooke.md +35 −0
@@ -0,0 +1,35 @@
1 +# alouer_sherbrooke — À Louer Sherbrooke
2 +- site: https://www.alouersherbrooke.com (WordPress, thème idconception,
3 + CPT « appartements »)
4 +- méthode: admin-ajax `pagination-load-posts` (8 cartes/page, 7 pages) +
5 + fiches via self.detail (cache BD)
6 +- annonces: 1 disponible actuellement (3½, quartier Université — le parc de
7 + ~56 fiches est presque entièrement « Loué » : cartes exclues)
8 +- couverture: dispo 100% (« À louer À partir du 1 septembre 2026 »),
9 + type 100%, quartier 100%, images 100%, description 100% ; PAS de prix ni
10 + d'adresse civique publiés par la source
11 +- fixture: ok (13 requêtes) · test: ok (2 verts)
12 +
13 +## Découverte
14 +- robots.txt : WP standard (admin-ajax explicitement permis). Vérifié.
15 +- L'archive publique /appartements/ est mal configurée (elle liste le
16 + blogue) ; la vraie liste est servie par l'action AJAX
17 + `pagination-load-posts` du thème (découverte dans functions.min.js), qui
18 + renvoie les cartes + la pagination.
19 +- Cartes : classe `dispo` (disponible, bandeau vert avec date) vs `loue`
20 + (loué, exclu). external_id = slug du billet.
21 +
22 +## Champs extraits
23 +- availability : bandeau (« À louer » + « À partir du 1 septembre 2026 »).
24 +- unit_type : `.appartement__grandeur` (« 3½ ») ; secteur :
25 + `.appartement__quartier` (« Université ») ; inclusions : <li> de la carte.
26 +- fiche : description complète (paragraphes/listes) + galerie (variantes
27 + WordPress ramenées à la pleine taille).
28 +
29 +## Champs indisponibles à la source
30 +- Prix (politique de l'agence : aucun loyer affiché) ; adresse civique
31 + (immeubles regroupés, quartier Université) — rien d'inventé.
32 +
33 +## Fragilités
34 +- Le connecteur balaie les 7 pages AJAX à chaque sync pour attraper les
35 + retours en disponibilité (~13 requêtes, politesse 0,6 s).
added reports/connectors/ascensio.md +32 −0
@@ -0,0 +1,32 @@
1 +# ascensio — Groupe Ascensio
2 +- site: https://groupeascensio.com/logements-a-louer/ (WordPress custom)
3 +- méthode: grille SSR `.grid-logements .grid-item` (une carte par logement
4 + disponible) + fiches /location/<slug>/ via self.detail (cache BD)
5 +- annonces: 9 (Sherbrooke 8 — Les Nations : Jacques-Cartier/Mont-Bellevue,
6 + Pont-Rouge 1)
7 +- couverture: prix 100% (« 1425 $ / mois »), dispo 100% (« Disponible le
8 + 01/08/2026 »), type 100%, images 100%, description 100% ; adresse 56%
9 + (immeubles nommés sans numéro civique pour certains)
10 +- fixture: ok (10 requêtes) · test: ok (2 verts)
11 +
12 +## Découverte
13 +- robots.txt : WP standard. Vérifié.
14 +- external_id = NUMÉRO DE RÉFÉRENCE de gestion publié sur la fiche
15 + (« BRY-2030134 », « MON-43203C » — stable) ; repli slug si absent.
16 +
17 +## Champs extraits
18 +- carte : titre (« 3½ Logement 301 »), bandeau « Disponibilité :
19 + 01/08/2026 », secteur (« Les Nations - Arrondissement … », « Pont-Rouge,
20 + Région de Québec » -> ville Pont-Rouge), immeuble (« 20 Bryant » -> adresse
21 + quand civique), photo.
22 +- fiche : paires h5 -> valeur (Numéro de référence, Mensualité,
23 + Disponibilités), description (paragraphes longs), « Pièces et dimensions »
24 + (Cuisine 13'-8" x 9'-4"…) -> commodités, galerie.
25 +
26 +## Champs indisponibles à la source
27 +- GPS, superficie chiffrée (dimensions pièce par pièce seulement).
28 +
29 +## Fragilités
30 +- Les fiches reposent sur le gabarit h5/valeur du thème maison.
31 +- Pont-Rouge (Capitale-Nationale) est desservi par la même source — la ville
32 + réelle est conservée.
added reports/connectors/bestlife.md +35 −0
@@ -0,0 +1,35 @@
1 +# bestlife — Les Gestions Bestlife
2 +- site: https://lesgestionsbestlife.com/appartements-a-louer-sherbrooke/
3 + (WordPress Divi + WooCommerce)
4 +- méthode: archive WooCommerce (cartes li.product) + fiches produit via
5 + self.detail (cache BD)
6 +- annonces: 13 (Sherbrooke 11, East Angus 1, Richmond 1)
7 +- couverture: prix 100% (promos del/ins gérées), dispo 92%, type 100%,
8 + adresse 100% (titre), images 100%, commodités 100%
9 +- fixture: ok (14 requêtes) · test: ok (2 verts)
10 +
11 +## Découverte
12 +- robots.txt : WP/Woo standard (répertoires Woo bloqués, admin-ajax permis,
13 + pages produit libres). Vérifié.
14 +- Chaque logement = un « produit » WooCommerce : titre « 1082 Sainte-Thérèse
15 + – 4 1/2 », classes utiles (post-<id>, product_cat-4-1-2, instock).
16 + external_id = slug du produit.
17 +
18 +## Champs extraits
19 +- prix : span.price ; promo = <del>régulier</del> <ins>courant</ins> — le
20 + courant est retenu, price_label garde le texte complet (« Le prix initial
21 + était : … »).
22 +- type : segment après le tiret du titre (garde-fou fullmatch).
23 +- ville : parenthèse du titre (« (East-Angus) » -> East Angus,
24 + « (Richemond) » -> Richmond) ; Sherbrooke par défaut.
25 +- fiche : « Disponible dès maintenant / dès le 1er juillet » (ligne en
26 + emphase — filtrée pour éviter les messages techniques du thème), listes
27 + Inclusions + Spécifications (chat accepté, stationnement…), galerie
28 + (data-orig-file pleine taille).
29 +
30 +## Champs indisponibles à la source
31 +- Superficie, GPS ; 1 fiche sans ligne de disponibilité.
32 +
33 +## Fragilités
34 +- Les libellés Inclusions/Spécifications sont des h3/h4 Divi — dépendants du
35 + gabarit de fiche.
added reports/connectors/dynamic.md +45 −0
@@ -0,0 +1,45 @@
1 +# dynamic — Gestion immobilière Dynamic
2 +- site: https://lesgestionsdynamic.com/a-louer/ (WordPress + thème Houzez)
3 +- méthode: archive /a-louer/ paginée (cartes Houzez) + fiches détail (cache BD)
4 +- annonces: 49 (Sherbrooke 45, Magog 4)
5 +- couverture: prix 100%, dispo 100%, type 100%, adresse 100%, images 100%,
6 + description 100%, GPS 100% (carte Houzez des fiches)
7 +- fixture: ok (54 requêtes) · test: ok (2 verts)
8 +
9 +## Découverte
10 +- robots.txt : `Disallow:` (tout permis, bloc Yoast). Vérifié avant construction.
11 +- L'URL de l'étude (/logements-a-louer/) est morte : la vraie archive est
12 + `/a-louer/` (4 pages de 15 cartes `div.item-listing-wrap`).
13 +- Ce module sert de CLASSE DE BASE à la famille Houzez de l'Estrie :
14 + `gestimmo_estrie.py` et `agence_sherbrooke.py` en héritent (constantes +
15 + crochets carte seulement), comme le_st_georges hérite de la_cour.
16 +
17 +## Champs extraits
18 +- prix : `li.item-price` (« 995 $/mois ») ; virgule/espace de milliers gérés.
19 +- availability : SUFFIXE du titre (« 375, rue Terrill IMMÉDIATEMENT »,
20 + « … JUILLET », « … 1er AOÛT ») — regex dédiée ; les titres « LOUÉ » sont
21 + exclus. Aucun lien /status/ sur les cartes de ce site.
22 +- adresse/ville/secteur : fiche détail — bloc `#property-address-wrap`
23 + (« Adresse | 375 rue terrill | Ville | Fleurimont (Sherbrooke) ») ; le
24 + format « secteur (ville) » est décomposé, la ville n'est retenue que si
25 + elle figure dans la liste des villes réelles de l'Estrie ; repli sur
26 + `address.item-address` (Nominatim).
27 +- type d'unité : titre si motif net, sinon aperçu Houzez de la fiche
28 + (« Appartement 4 1/2 ») — garde-fou fullmatch (jamais de texte brut).
29 +- images : attribut `data-images` des cartes (JSON), variantes -584x438
30 + ramenées à la pleine taille.
31 +- description/commodités : fiche (`#property-description-wrap`,
32 + `#property-features-wrap`) ; GPS : JSON de la carte Houzez.
33 +
34 +## Fiches détail
35 +- via `self.detail()` (cache BD), clé = sha1(titre|prix|dispo) ;
36 + `max_details = 80` vraies requêtes par sync.
37 +
38 +## Champs indisponibles à la source
39 +- Pas de superficie ni de bloc « Détails » structuré (animaux/meublé) sur ce
40 + thème — le textmine central les tire de la description.
41 +
42 +## Fragilités
43 +- La disponibilité vit dans le TITRE (convention rédactionnelle de l'agence) ;
44 + si l'agence change de style, la regex `_AVAIL_TITLE_RE` doit suivre.
45 +- `data-images` livre parfois des objets {url:…} au lieu de chaînes (géré).
added reports/connectors/floria.md +32 −0
@@ -0,0 +1,32 @@
1 +# floria — Gestion Floria
2 +- site: https://gestionfloria.ca (WordPress Avada + modules Livya par immeuble)
3 +- méthode: découverte des 12 pages /immeuble/<slug>/ via /secteurs/, puis flux
4 + RSC Livya (app.livya.com, client « gestion-floria », un projet/entité par
5 + immeuble) — patron somex_saintnicolas/louis14, helpers `_livya_units`
6 + réutilisés
7 +- annonces: 21 unités AVAILABLE (Magog 19 — Flanc-Sud/Mont-Orford et Solea,
8 + Coaticook 1, Sherbrooke 1) après dédoublonnage par unitId
9 +- couverture: dispo 100%, type 100%, adresse 100%, GPS 100%, images 95% ;
10 + prix 24% (5/21 — la plupart des projets publient rentalPrice = 0)
11 +- fixture: ok (21 requêtes) · test: ok (2 verts)
12 +
13 +## Découverte
14 +- robots.txt : `Disallow:` (tout permis) ; app.livya.com : Allow /. Vérifié.
15 +- Le site a été refondu depuis l'étude (Avada + Livya partout, plus de widget
16 + embed.js) : chaque page immeuble embarque
17 + `div.livya-module-container-plans` avec data-project/data-entity.
18 +- Les immeubles jumelés (52/58 Flanc-Sud, 753/765 Rachel-Hébert,
19 + 5252/5276 René-Lévesque, 2503/2519 Yvonne-Bolduc) partagent le même projet
20 + Livya -> dédoublonnage global par unitId. 1 immeuble sans module
21 + (2835 Mézy) est ignoré proprement.
22 +
23 +## Champs extraits
24 +- unité Livya : numéro, étage, pièces (rooms -> 3½…), superficie (unitSize
25 + quand > 0), adresse/ville/code postal, GPS, photos du type + plan d'étage,
26 + balcon/chambres/sdb (description structurée), futureAvailability.
27 +- prix : rentalPrice seulement quand > 0 (Flanc-Sud) — jamais inventé.
28 +
29 +## Fragilités
30 +- ~25 requêtes/sync (2 par immeuble) avec politesse 0,7 s.
31 +- Si Floria ajoute un immeuble, il est découvert automatiquement via
32 + /secteurs/ tant que le motif /immeuble/<slug>/ tient.
added reports/connectors/gestimmo_estrie.md +24 −0
@@ -0,0 +1,24 @@
1 +# gestimmo_estrie — Gestimmo Estrie
2 +- site: https://gestimmoestrie.com/a-louer/ (WordPress + thème Houzez)
3 +- méthode: hérite de DynamicConnector (famille Houzez Estrie) — archive
4 + /a-louer/ paginée + fiches détail (cache BD)
5 +- annonces: 41 (Sherbrooke 32, Lennoxville 5, Coaticook 3, Magog 1)
6 +- couverture: prix 100%, dispo 100%, type 88%, adresse 100%, images 100%,
7 + description 100% ; pas de GPS sur ce thème
8 +- fixture: ok (46 requêtes) · test: ok (2 verts)
9 +
10 +## Particularités vs la base Houzez (dynamic.py)
11 +- disponibilité = étiquette de statut de la carte (lien `/status/` :
12 + « Libre maintenant », « Juillet », « Août » — « Loué » exclu par le filtre
13 + hérité).
14 +- fiches sans bloc aperçu Houzez : le type d'unité vient du titre
15 + (« 4 1/2 Rue de la Sainte-Famille ») ou de la ligne « Grandeur : 4 1/2 » de
16 + la description (repli `_SIZE_IN_DESC`) ; 12 % des annonces (titres 100 %
17 + marketing avec émojis) restent sans type — rien d'inventé.
18 +- adresse : `address.item-address` (Nominatim) de la fiche ; ville retenue
19 + seulement si ville réelle connue (Lennoxville, Coaticook…).
20 +- `data-images` livre des objets {url:…} (variante Houzez gérée dans la base).
21 +
22 +## Fragilités
23 +- Titres très marketing (émojis, promos) : le nettoyage type/adresse dépend
24 + de la fiche détail.
added reports/connectors/immeubles_db.md +35 −0
@@ -0,0 +1,35 @@
1 +# immeubles_db — Les Immeubles D.B. Busque-Massé
2 +- site: https://immeublesdb.com (custom PHP « pm_editor », Cloudflare)
3 +- méthode: 4 pages statiques /logements-a-louer/secteur-{nord,est,
4 + centre-ville,ouest}/ — une section .container par logement offert
5 + (galerie + h3 adresse + liste <li>)
6 +- annonces: 13 (Sherbrooke : Est 7, Nord 3, Centre-ville 3 ; Ouest vide
7 + actuellement)
8 +- couverture: prix 100% (« 1 125$ par mois »), type 100%, adresse 100%,
9 + images 100%, description 100% ; dispo 31% (écrite seulement quand « libre
10 + immédiatement »)
11 +- fixture: ok (4 requêtes) · test: ok (2 verts)
12 +
13 +## Découverte
14 +- robots.txt : uniquement le préambule « content signals » de Cloudflare
15 + (usage recherche/indexation permis, aucune règle User-agent/Disallow).
16 + Vérifié. Le UA de base.py passe Cloudflare.
17 +- Aucun identifiant publié : external_id = sha1(secteur|adresse|ligne de
18 + type) tronqué — stable tant que l'offre ne change pas de texte ; les
19 + logements loués sont simplement retirés des pages.
20 +
21 +## Champs extraits
22 +- adresse : h3 (« 3160, 12e Avenue Nord, Sherbrooke, QC » — QC retiré).
23 +- type : première ligne de la liste (« Studio neuf », « Très grand 3 1/2 ») ;
24 + cas particulier « 4 CHAMBRES disponibles à partir de 550 $ » = location à
25 + la chambre -> type Chambre (normalize aurait donné 6½+).
26 +- prix : première ligne « … $ par mois » (à partir de géré par la
27 + normalisation centrale).
28 +- images : galerie jumelle (`.galerie_img_block a[href]`,
29 + /modules/upload/… absolutisés).
30 +- description : toutes les lignes de la liste (inclusions, étages, meublé…)
31 + — textmine central.
32 +
33 +## Fragilités
34 +- external_id textuel : un changement de rédaction crée une nouvelle annonce
35 + (l'ancienne se ferme au diff) — acceptable pour ~13 annonces.
added reports/connectors/labonte.md +37 −0
@@ -0,0 +1,37 @@
1 +# labonte — Gestion Labonté
2 +- site: https://www.gestionlabonte.com/logements (Wix, rendu serveur)
3 +- méthode: répéteur Wix SSR de /logements (un item par GUID CMS) + fiches
4 + dynamiques /logements/<guid> via self.detail (cache BD)
5 +- annonces: 18 (Sherbrooke — Centre-ville, Est, Ouest)
6 +- couverture: prix 100% (« À partir de N $/mois »), type 94%, adresse 100%
7 + (complète avec la fiche), secteur 100%, description 100%, images 100%
8 + (1 photo/carte) ; disponibilité non publiée
9 +- fixture: ok (19 requêtes) · test: ok (2 verts)
10 +
11 +## Découverte
12 +- robots.txt Wix : `Allow: /`, seul `*?lightbox=` bloqué. Vérifié.
13 +- L'URL de l'étude (/logements-a-louer) est morte -> /logements. La page
14 + n'exige PAS de parser le warmupData : le répéteur est rendu serveur
15 + (conteneurs `div[id="comp-…__<guid>"]`, textes riches wixui).
16 +- external_id = GUID de l'item CMS Wix (stable, visible dans l'URL).
17 +
18 +## Champs extraits
19 +- carte : « À partir de | 1150 | $/mois », h2 = adresse, « Nombre de
20 + pièces | 3.5 », « Secteur | Centre-ville », photo wixstatic (URL média
21 + canonisée avant /v1/).
22 +- fiche : description (entre « Description » et « Détails du logement »),
23 + paires Détails (secteur, pièces, chambres -> details.bedrooms, étage ->
24 + details.floor), bloc « Emplacement » = adresse complète (« 49 Rue King
25 + Ouest, Sherbrooke, QC J1H 1P1 ») -> adresse + ville réelle.
26 +- type d'unité : « 3.5 »/« 4.5 » -> 3½/4½ avec garde-fou (une fiche affiche
27 + « 4 » seul -> type laissé vide, rien d'inventé).
28 +
29 +## Champs indisponibles à la source
30 +- Disponibilité (aucun statut affiché — la liste ne montre que l'inventaire
31 + courant) ; galerie photos des fiches (pro-gallery chargée côté client).
32 +
33 +## Fragilités
34 +- Pages Wix lourdes (~900 Ko/fiche) — cache BD indispensable ;
35 + max_details = 25.
36 +- Secteurs en graphies libres (« Centre ville », « centre-ville de
37 + sherbrooke ») — conservés bruts.
added reports/connectors/lelaureat.md +33 −0
@@ -0,0 +1,33 @@
1 +# lelaureat — Résidences Le Lauréat
2 +- site: https://www.residences-lelaureat.com (WordPress WPBakery, une page)
3 +- méthode: page d'accueil SSR — section « Dimensions des studios » (5 types
4 + d'unités avec dimensions et prix par variante) ; 1 requête par sync
5 +- annonces: 5 types (Studio Type, Centre Arrière, Coin Est, Coin Ouest,
6 + Loft) — 107 studios étudiants tout inclus au 2145, Galt Ouest, Sherbrooke
7 +- couverture: prix 100% (le plus bas des variantes étage/demi-sous-sol ;
8 + étiquette complète conservée), type 100%, adresse 100%, images 100%,
9 + description 100% ; dispo 20% (écrite seulement pour le Loft)
10 +- fixture: ok (1 requête) · test: ok (2 verts)
11 +
12 +## Découverte
13 +- robots.txt : WP standard. Vérifié.
14 +- Granularité = TYPE de studio (résidence étudiante, aucune unité datée
15 + publiée sauf mention ponctuelle) — même approche que sig.py, acceptée pour
16 + Le Montagnais/résidences.
17 +- external_id = slug du nom de type (studio-type, loft…), stable.
18 +
19 +## Champs extraits
20 +- par type : dimensions (« 12' x 20' » — texte conservé, pas de superficie
21 + calculée), prix par variante (« $855 /$825 » étage, « $810 »
22 + demi-sous-sol -> price = min, price_label = toutes les lignes), numéros
23 + d'appartements et tailles de fenêtres (description), disponibilité quand
24 + écrite (« Disponibilité à partir de janvier 2026 » pour le Loft).
25 +- commodités communes : listes « Nos appartements sont équipés » + « Notre
26 + service tout inclus englobe » (internet, électricité, eau chaude,
27 + chauffage, stationnement…).
28 +- images : galerie du site (room-*.jpg, logement*.jpg).
29 +
30 +## Fragilités
31 +- Les puces « ► » sont des <p> hors <ul> — extraction séquentielle entre
32 + titres de types (sensible au gabarit WPBakery).
33 +- Prix mis à jour manuellement par la résidence (page unique).
added reports/connectors/matinale.md +38 −0
@@ -0,0 +1,38 @@
1 +# matinale — Gestion Matinale
2 +- site: https://gestionmatinale.com (WordPress + WooCommerce)
3 +- méthode: archives WooCommerce /a-louer/appartements-logements/ (3 pages,
4 + 16/page) + /a-louer/maison/ — cartes li.product UNIQUEMENT (aucune fiche
5 + visitée, voir robots)
6 +- annonces: 42 (Sherbrooke 37, Orford 2, Magog 1,
7 + Sainte-Catherine-de-Hatley 1, Stukely-Sud 1)
8 +- couverture: prix 100% (1 exception stationnement exclue), dispo 86%
9 + (parenthèse du titre), type 100%, adresse 100% (titre), images 100%
10 +- fixture: ok (4 requêtes) · test: ok (2 verts)
11 +
12 +## Découverte
13 +- robots.txt : `Crawl-Delay: 20` -> request_delay = 20 s RESPECTÉ, d'où le
14 + choix de ne parcourir QUE les 4 pages d'archives (~80 s/sync) et de ne
15 + jamais visiter les 40+ fiches produit.
16 +- Chaque logement = un « produit » : external_id = ID WordPress
17 + (classe post-<id>), type = taxonomie (product_cat-5-1-2 -> 5½,
18 + product_cat-mais…/« maison/chalet » -> Maison).
19 +
20 +## Champs extraits
21 +- titre brut « 1330 KING OUEST, SHERBROOKE, J1J 2B6 (Août) » :
22 + - disponibilité = parenthèse (« Vacant », « Août », « Janvier 2027 ») ;
23 + - ville = jeton de ville réelle connu (Sherbrooke/Magog/Orford/
24 + Stukely-Sud/Sainte-Catherine-de-Hatley ; Rock Forest/Fleurimont ->
25 + Sherbrooke) ;
26 + - code postal -> details.postal_code ; adresse = titre nettoyé.
27 +- prix : span.price (promo <ins> = prix courant, virgules de milliers).
28 +- images : data-src (lazy-load LiteSpeed), variantes ramenées à la pleine
29 + taille.
30 +- exclusions : produits « Stationnement/garage/rangement ».
31 +
32 +## Champs indisponibles à la source (sans visiter les fiches)
33 +- description, commodités, superficie, GPS — enrichissables seulement en
34 + visitant les fiches (interdit de fait par le crawl-delay de 20 s).
35 +
36 +## Fragilités
37 +- La disponibilité vit dans le TITRE (position variable de la parenthèse) ;
38 + 6 titres n'en ont pas.
added reports/connectors/montagnais.md +36 −0
@@ -0,0 +1,36 @@
1 +# montagnais — Le Montagnais, résidences étudiantes
2 +- site: https://www.lemontagnais.com/logement/ (WordPress, thème Oktane « campus »)
3 +- méthode: admin-ajax JSON `get_posts_location` (post_type=logement,
4 + posts_per_page=-1) — 1 requête POST par sync
5 +- annonces: 31 types de logements sur 6 campus (Campus de la santé 12,
6 + Campus principal 8, Résidences G 3 / E 2, Mont-Bellevue 3, Centro 3)
7 +- couverture: prix 100% (« à partir de »), dispo 100% (« Disponible »),
8 + type 100%, GPS 100%, images 100%, description 100% ; adresse civique 26%
9 + (publiée seulement pour certains campus)
10 +- fixture: ok (1 requête) · test: ok (2 verts)
11 +
12 +## Découverte
13 +- robots.txt : WP standard (admin-ajax explicitement permis). Vérifié.
14 +- Le site a été refondu depuis l'étude (plus de pages campus Divi
15 + statiques) : la page /logement/ charge la liste via admin-ajax. La réponse
16 + JSON est complète : post_title, startingFrom (prix), habitation_terms
17 + (campus), projet_status/acf.logement_status, address ACF structurée
18 + (rue, ville, code postal, lat/lng Google), post_content,
19 + acf.logement_caracteristiques (liste HTML), photo, permalink.
20 +- Granularité = TYPE de logement par campus (« Petite chambre - Résidence E »,
21 + « Studio Galt Ouest », « Logement 4 ½ ») — aucune unité individuelle
22 + publiée ; acceptable comme sig.py (résidences étudiantes).
23 +
24 +## Champs extraits
25 +- prix : startingFrom -> price_label « À partir de N $/mois » (price_from
26 + détecté par la normalisation centrale).
27 +- statut : seuls les types « Disponible » deviennent des annonces.
28 +- secteur = campus ; details.residence = campus ; ville = address.city
29 + (Sherbrooke partout).
30 +- commodités : habitation_specs (liste à virgules) + <li> des
31 + caractéristiques ACF.
32 +
33 +## Fragilités
34 +- L'action admin-ajax exige `post_type=logement` (sinon 0 résultat).
35 +- Prix = plancher par type ; les variantes de chambres d'un même type ne
36 + sont pas détaillées par la source.
added reports/connectors/morin.md +33 −0
@@ -0,0 +1,33 @@
1 +# morin — Constructions Morin
2 +- site: https://constructionsmorin.com/appartements-a-louer/ (WordPress + Avada)
3 +- méthode: page principale SSR — un bloc .appartement_list_block par TYPE
4 + d'unité disponible dans un immeuble ; fiches type via self.detail (cache BD)
5 +- annonces: 6 (Horizon à Ascot Corner : 3½/4½/5½ ; Quartier Équestre à
6 + Sherbrooke St-Élie/Rock-Forest : 4½ ×2, 5½)
7 +- couverture: prix 100% (« À partir de 1395$ »), dispo 100% (« Disponible dès
8 + le 1er février 2027! »), type 100%, adresse 100%, superficie 100% (borne
9 + basse des plages « 860-1140 pi² »), images 100%, description 100%
10 +- fixture: ok (7 requêtes) · test: ok (2 verts)
11 +
12 +## Découverte
13 +- robots.txt : `Disallow:` (tout permis). Vérifié.
14 +- Granularité = type d'unité par immeuble : la fiche liste bien les unités
15 + individuelles (« Appartement 101 - Niveau 0 - 4 ½ (Disponible) ») mais sans
16 + prix ni date propres — pas de granularité unité fiable. Le nombre d'unités
17 + disponibles (« 15 disponibles », « Immeuble de 30 unités ») est conservé en
18 + commodités. external_id = slug projet/unité (stable).
19 +- Les autres villes du groupe (East Angus, Windsor, Lac-Mégantic) n'ont
20 + aucune disponibilité affichée actuellement — elles apparaîtront
21 + automatiquement sur la page quand offertes.
22 +
23 +## Champs extraits
24 +- carte : badge type « 4 ½ », adresse h3, ville+secteur (« Sherbrooke
25 + Secteur St-Élie/Rock-Forest » décomposé sur villes réelles connues),
26 + projet (details.project), chambres/sdb/stationnement (commodités), prix
27 + « À partir de », bandeau de disponibilité, visuel (background-image).
28 +- fiche : inclusions (« Votre appartement luxueux comprend… »), superficie
29 + (« Superficie: 860-1140 pi² » -> area_sqft = borne basse, plage complète en
30 + commodité), galerie (les visuels génériques « Projet-* » sont exclus).
31 +
32 +## Fragilités
33 +- Classes maison `appartement_list_*` du thème enfant Avada.
added reports/connectors/siagi.md +30 −0
@@ -0,0 +1,30 @@
1 +# siagi — SIA Gestion Immobilière
2 +- site: https://www.siagi.ca/listings (Next.js App Router, ~240 logements gérés)
3 +- méthode: flux RSC `self.__next_f.push` de la page /listings rendue serveur
4 + (patron louis14/somex) — 1 requête par sync, aucun rendu JavaScript
5 +- annonces: 6 (Sherbrooke 4, Laval 1, La Prairie 1)
6 +- couverture: prix 100%, adresse 100% (rue + code postal), ville 100% ;
7 + dispo/type/images non publiés par la source
8 +- fixture: ok (1 requête) · test: ok (2 verts)
9 +
10 +## Découverte
11 +- robots.txt : redirige vers /login (absent) — pas de blocage. Vérifié.
12 +- Le tableau `"listings":[…]` du flux RSC contient : id (cuid stable =
13 + external_id), title « Ville · App. N », subtitle (adresse civique),
14 + rentLabel (« 1 200,00 $ / mois »), mapEmbedUrl Google Maps (adresse
15 + complète avec code postal, décodée pour le code postal).
16 +
17 +## Champs extraits
18 +- prix : rentLabel — « 1 850,00 $ / mois » (espace de milliers + virgule
19 + décimale normalisés avant parse_price).
20 +- ville : préfixe du titre (« Sherbrooke · App. 12 »).
21 +- adresse : subtitle + code postal extrait de l'URL Google Maps.
22 +
23 +## Champs indisponibles à la source
24 +- Aucune photo, type d'unité, disponibilité ni page détail par annonce
25 + (url = /listings pour toutes) — rien d'inventé.
26 +
27 +## Fragilités
28 +- Source multi-régions (Estrie + Laval + La Prairie) : les annonces suivent
29 + la ville réelle publiée.
30 +- Si SIA ajoute des pages détail (/listings/<id>), enrichir le connecteur.
added reports/connectors/uptimo.md +36 −0
@@ -0,0 +1,36 @@
1 +# uptimo — Uptimo Gestion immobilière
2 +- site: https://www.uptimo.ca/logements-a-louer/ (WordPress Themify +
3 + Post Type Builder, CPT « propriete »)
4 +- méthode: archive paginée (cartes .ptb_post, 15/page, ~4 pages) + fiches via
5 + self.detail (cache BD)
6 +- annonces: 51 (Sherbrooke 48, Magog 3)
7 +- couverture: prix 98%, type 100%, adresse 98%, description 100%,
8 + images 100%, secteur (arrondissement) ; disponibilité non structurée
9 +- fixture: ok (58 requêtes) · test: ok (2 verts)
10 +
11 +## Découverte
12 +- robots.txt : WP standard. Vérifié. L'URL de l'étude
13 + (/unites-disponibles/) redirige vers l'accueil -> la vraie archive est
14 + /logements-a-louer/.
15 +- external_id = ID WordPress (classe post-<id> de la carte, stable).
16 +
17 +## Champs extraits
18 +- carte : titre (adresse [+ type parfois]), taxonomie « Arrondissements »
19 + (« Sherbrooke-Fleurimont » -> secteur Fleurimont), photo.
20 +- fiche (modules PTB) : « Adresse: », « Ville: » (taxonomie parfois
21 + polluée par la province — « Québec », « Québec, Sherbrooke » : seule une
22 + ville réelle connue est retenue, sinon défaut Sherbrooke), « Prix: 950 $ »,
23 + « Type de propriété: 2 1/2 », salles de bain -> details.bathrooms,
24 + description, galerie .ptb_gallery (variantes redimensionnées ramenées à la
25 + pleine taille).
26 +
27 +## Champs indisponibles à la source
28 +- Disponibilité structurée : seulement en texte libre dans la description
29 + (« Disponible août-septembre-octobre ») — textmine central.
30 +- GPS, superficie.
31 +
32 +## Fragilités
33 +- L'archive expose le catalogue « à louer » complet (~51 fiches actives sur
34 + 77 posts) ; certaines fiches peuvent être des reliquats mal dépubliés —
35 + surveiller le volume.
36 +- ~57 requêtes au premier sync (cache BD ensuite).
added reports/sources-entries/agence_sherbrooke.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "agence_sherbrooke",
3 + "name": "Agence de location Sherbrooke (groupe Prestiplex)",
4 + "url": "https://agencedelocationsherbrooke.com",
5 + "listing_url": "https://agencedelocationsherbrooke.com/",
6 + "sectors": "Sherbrooke (Fleurimont, Mont-Bellevue, Les Nations), East Angus, Magog",
7 + "connector": "agence_sherbrooke",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/alouer_sherbrooke.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "alouer_sherbrooke",
3 + "name": "À Louer Sherbrooke",
4 + "url": "https://www.alouersherbrooke.com",
5 + "listing_url": "https://www.alouersherbrooke.com/appartements-a-louer/",
6 + "sectors": "Sherbrooke (quartier Université)",
7 + "connector": "alouer_sherbrooke",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/ascensio.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "ascensio",
3 + "name": "Groupe Ascensio",
4 + "url": "https://groupeascensio.com",
5 + "listing_url": "https://groupeascensio.com/logements-a-louer/",
6 + "sectors": "Sherbrooke (Les Nations : Jacques-Cartier, Mont-Bellevue) — aussi Pont-Rouge (Capitale-Nationale)",
7 + "connector": "ascensio",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/bestlife.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "bestlife",
3 + "name": "Les Gestions Bestlife",
4 + "url": "https://lesgestionsbestlife.com",
5 + "listing_url": "https://lesgestionsbestlife.com/appartements-a-louer-sherbrooke/",
6 + "sectors": "Sherbrooke (Fleurimont, Mont-Bellevue, Rock Forest), East Angus, Richmond",
7 + "connector": "bestlife",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/dynamic.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "dynamic",
3 + "name": "Gestion immobilière Dynamic",
4 + "url": "https://lesgestionsdynamic.com",
5 + "listing_url": "https://lesgestionsdynamic.com/a-louer/",
6 + "sectors": "Sherbrooke (Fleurimont, Les Nations), Magog",
7 + "connector": "dynamic",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/floria.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "floria",
3 + "name": "Gestion Floria",
4 + "url": "https://gestionfloria.ca",
5 + "listing_url": "https://gestionfloria.ca/secteurs/",
6 + "sectors": "Magog (Flanc-Sud/Mont-Orford, Solea), Sherbrooke (Plateau McCrea), Coaticook",
7 + "connector": "floria",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/gestimmo_estrie.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "gestimmo_estrie",
3 + "name": "Gestimmo Estrie",
4 + "url": "https://gestimmoestrie.com",
5 + "listing_url": "https://gestimmoestrie.com/a-louer/",
6 + "sectors": "Sherbrooke (Fleurimont, Mont-Bellevue), Lennoxville, Coaticook, Magog",
7 + "connector": "gestimmo_estrie",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/immeubles_db.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "immeubles_db",
3 + "name": "Les Immeubles D.B. Busque-Massé",
4 + "url": "https://immeublesdb.com",
5 + "listing_url": "https://immeublesdb.com/logements-a-louer/",
6 + "sectors": "Sherbrooke (secteurs Nord, Est, Centre-ville, Ouest)",
7 + "connector": "immeubles_db",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/labonte.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "labonte",
3 + "name": "Gestion Labonté",
4 + "url": "https://www.gestionlabonte.com",
5 + "listing_url": "https://www.gestionlabonte.com/logements",
6 + "sectors": "Sherbrooke (Centre-ville, Est, Ouest)",
7 + "connector": "labonte",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/lelaureat.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "lelaureat",
3 + "name": "Résidences Le Lauréat",
4 + "url": "https://www.residences-lelaureat.com",
5 + "listing_url": "https://www.residences-lelaureat.com/",
6 + "sectors": "Sherbrooke (quartier Université — 2145, Galt Ouest)",
7 + "connector": "lelaureat",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/matinale.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "matinale",
3 + "name": "Gestion Matinale",
4 + "url": "https://gestionmatinale.com",
5 + "listing_url": "https://gestionmatinale.com/a-louer/appartements-logements/",
6 + "sectors": "Sherbrooke, Magog, Orford, Sainte-Catherine-de-Hatley, Stukely-Sud",
7 + "connector": "matinale",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/montagnais.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "montagnais",
3 + "name": "Le Montagnais, résidences étudiantes",
4 + "url": "https://www.lemontagnais.com",
5 + "listing_url": "https://www.lemontagnais.com/logement/",
6 + "sectors": "Sherbrooke (Campus principal, Campus de la santé, Campus Centro, Campus Mont-Bellevue, Résidences E et G)",
7 + "connector": "montagnais",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/morin.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "morin",
3 + "name": "Constructions Morin",
4 + "url": "https://constructionsmorin.com",
5 + "listing_url": "https://constructionsmorin.com/appartements-a-louer/",
6 + "sectors": "Sherbrooke (St-Élie/Rock-Forest, Fleurimont), Ascot Corner, East Angus, Windsor, Lac-Mégantic",
7 + "connector": "morin",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/siagi.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "siagi",
3 + "name": "SIA Gestion Immobilière",
4 + "url": "https://www.siagi.ca",
5 + "listing_url": "https://www.siagi.ca/listings",
6 + "sectors": "Sherbrooke — aussi Laval et La Prairie (Grand Montréal)",
7 + "connector": "siagi",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/uptimo.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "uptimo",
3 + "name": "Uptimo Gestion immobilière",
4 + "url": "https://www.uptimo.ca",
5 + "listing_url": "https://www.uptimo.ca/logements-a-louer/",
6 + "sectors": "Sherbrooke (Fleurimont, Mont-Bellevue, Jacques-Cartier), Magog",
7 + "connector": "uptimo",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added tests/fixtures/agence_sherbrooke/060fe16ec6a569680f3d.html +1248 −0
@@ -0,0 +1,1248 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="b7d6de66bd0d717eb752a95e-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>Appartement à louer - Agence de location Sherbrooke - Page 3</title><style>.houzez-library-modal-btn {margin-left: 5px;background: #35AAE1;vertical-align: top;font-size: 0 !important;}.houzez-library-modal-btn:before {content: '';width: 16px;height: 16px;background-image: url('https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/favicon.png');background-position: center;background-size: contain;background-repeat: no-repeat;}#houzez-library-modal .houzez-elementor-template-library-template-name {text-align: right;flex: 1 0 0%;}</style><meta name="description" content="Que vous soyez étudiants à l&#039;UdeS ou un travailleur à la recherche d&#039;un appartement à louer à Sherbrooke. Nous vous offrons une tonne d&#039;options pour tous les budgets et toutes les durées de séjour. - Page 3" /><meta name="robots" content="noindex, nofollow, max-image-preview:large" /><link rel="canonical" href="https://agencedelocationsherbrooke.com/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="website" /><meta property="og:title" content="Appartement à louer - Agence de location Sherbrooke - Page 3" /><meta property="og:description" content="Que vous soyez étudiants à l&#039;UdeS ou un travailleur à la recherche d&#039;un appartement à louer à Sherbrooke. Nous vous offrons une tonne d&#039;options pour tous les budgets et toutes les durées de séjour. - Page 3" /><meta property="og:url" content="https://agencedelocationsherbrooke.com/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta property="og:image:width" content="254" /><meta property="og:image:height" content="64" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="Appartement à louer - Agence de location Sherbrooke - Page 3" /><meta name="twitter:description" content="Que vous soyez étudiants à l&#039;UdeS ou un travailleur à la recherche d&#039;un appartement à louer à Sherbrooke. Nous vous offrons une tonne d&#039;options pour tous les budgets et toutes les durées de séjour. - Page 3" /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/page\/3#listItem","name":"Page 3"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/page\/3#listItem","position":2,"name":"Page 3","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Appartement \u00e0 louer - Agence de location Sherbrooke - Page 3","description":"Que vous soyez \u00e9tudiants \u00e0 l'UdeS ou un travailleur \u00e0 la recherche d'un appartement \u00e0 louer \u00e0 Sherbrooke. Nous vous offrons une tonne d'options pour tous les budgets et toutes les dur\u00e9es de s\u00e9jour. - Page 3","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#breadcrumblist"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/#mainImage","width":254,"height":64},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#mainImage"},"datePublished":"2016-02-15T23:00:39+00:00","dateModified":"2025-03-17T20:47:33+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2F&#038;format=xml" /><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
2 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}header,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}h5{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}ul{margin-top:0;margin-bottom:1rem}strong{font-weight:bolder}a{color:#007bff;text-decoration:none;background-color:transparent}img{vertical-align:middle;border-style:none}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button,input,select{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox]{box-sizing:border-box;padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}template{display:none}h5{margin-bottom:.5rem;font-weight:500;line-height:1.2}h5{font-size:1.25rem}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-group{margin-bottom:1rem}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-block{display:block;width:100%}.fade:not(.show){opacity:0}.dropdown{position:relative}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.tab-content>.tab-pane{display:none}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}button.close{padding:0;background-color:transparent;border:0}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem}.modal.fade .modal-dialog{-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}}.clearfix:after{display:block;clear:both;content:""}.d-flex{display:-ms-flexbox!important;display:flex!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.mr-1{margin-right:.25rem!important}.mb-2{margin-bottom:.5rem!important}select.bs-select-hidden,select.selectpicker{display:none!important}.houzez-icon{font-family:houzez-iconfont!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-add-circle:before{content:"\e901"}.icon-arrow-up-1:before{content:"\e913"}.icon-love-it:before{content:"\e928"}.icon-move-left-right:before{content:"\e92c"}.icon-navigation-menu:before{content:"\e92d"}.icon-single-neutral:before{content:"\e93a"}.control{display:block;position:relative;padding-left:30px;margin-bottom:15px;font-size:18px}.control input{position:absolute;z-index:-1;opacity:0}.control__indicator{position:absolute;top:2px;left:0;height:20px;width:20px;background:#e6e6e6}.control__indicator:after{content:'';position:absolute;display:none}.control.control--checkbox{line-height:22px}.control--checkbox .control__indicator:after{left:8px;top:4px;width:3px;height:8px;border:solid #fff;border-width:0 2px 2px 0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.grid-view .item-footer,.nav-mobile .main-nav .nav-item,.btn-full-width{width:100%}.login-form-wrap .form-group-field,.login-register-form .modal-header .close span,.nav-mobile .main-nav .nav-item a,.main-nav .nav-item,.header-mobile,.header-main-wrap,.logo img,.header-inner-wrap,.btn-loader{position:relative}.login-form-wrap .form-group-field:after,.compare-property-label .compare-label,.compare-property-label,.grid-view .labels-wrap,.item-price-wrap{position:absolute}.property-lightbox .modal,.compare-property-label .compare-label,.nav-mobile .main-nav .nav-item a{display:block}.login-form-wrap .form-group-field:after,.item-tool>span,.item-tool,label{display:inline-block}.item-author a{display:inline}.grid-view .item-body .item-author,.grid-view .item-body .labels-wrap,.grid-view .item-body .item-price-wrap,.btn-loader{display:none}.control__indicator{background-color:transparent}.item-footer,.control__indicator{background-color:#fff}.property-lightbox .modal-content{border:none}.login-register-tabs .nav-link{border-radius:0}.label{border-radius:2px}.login-form-wrap,.item-tool>span{border-radius:4px}.login-register-form .modal-header .close,.item-price-wrap,.login-register-nav{margin:0}.form-tools{margin-top:20px}.login-form-wrap .form-group,.form-tools .control{margin-bottom:0}.form-tools{margin-bottom:20px}.login-register-form .modal-header,.item-price-wrap,.login-register-nav,.navbar{padding:0}.item-author{float:left}.control__indicator{top:0}.grid-view .labels-wrap{z-index:1}.item-price-wrap,.nav-mobile .main-nav .nav-item a,.main-nav .nav-item{z-index:2}.item-price-wrap{list-style:none}.grid-view .item-footer .item-author{white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.login-register-tabs .nav-link{font-weight:500}strong,label{font-weight:600}.item-author,.item-author a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-column-gap:5px;-moz-column-gap:5px;column-gap:5px}.control{display:block;position:relative;padding-left:30px;margin-bottom:15px;font-size:18px}.control input{position:absolute;z-index:-1;opacity:0}.control__indicator{position:absolute;top:2px;left:0;height:20px;width:20px;background:#fff}.control__indicator:after{content:"";position:absolute;display:none}.control.control--checkbox{line-height:22px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.control--checkbox .control__indicator:after{left:8px;top:4px;width:3px;height:8px;border:solid #fff;border-width:0 2px 2px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.btn-loader{top:2px;width:16px;height:16px;margin-right:15px}.btn-loader:after{content:" ";display:block;width:16px;height:16px;margin:1px;border-radius:50%;border:2px solid #fff;border-color:#fff transparent;-webkit-animation:btn-loader 1.2s linear infinite;animation:btn-loader 1.2s linear infinite}@-webkit-keyframes btn-loader{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes btn-loader{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}[type=password]{direction:ltr;text-align:left}label{padding-bottom:10px;margin-bottom:0}.label{font-size:10px;line-height:11px;font-weight:500;margin:0;text-transform:uppercase;padding:3px 5px;color:#fff;background-color:rgba(0,0,0,.65)}.btn{padding:0 15px;font-weight:500;line-height:40px;white-space:nowrap}.btn-grey-outlined{border-radius:4px!important;background-color:transparent;border-color:#cdd1d4;color:#5c6872}.form-control{height:42px}.form-control{font-weight:400;border:1px solid;border-color:#dce0e0}.control{color:#a1a7a8;min-height:24px;font-size:14px;font-weight:500;line-height:24px}.control__indicator{border:1px solid #dce0e0;border-radius:2px}.control--checkbox .control__indicator:after{left:6px;top:2px;width:6px;height:10px}input[type=checkbox]{margin:6px 0 0}@media (min-width:768px){.container{max-width:750px}}@media (min-width:992px){.container{max-width:970px}}@media (min-width:1200px){.container{max-width:1170px}}@media (max-width:991.98px){.header-desktop{display:none}}.logo{margin-right:20px}.logo img{top:-3px}.login-register{white-space:nowrap}.header-main-wrap{z-index:4}.header-mobile{text-align:center;height:60px;padding:0 10px}@media (min-width:992px){.header-mobile{display:none!important}}.header-mobile .logo{margin:0 auto}.header-mobile .toggle-button-left{background-color:transparent;font-size:20px}.header-mobile-right{min-width:56px}.main-nav .navbar-nav{padding-right:15px;-webkit-padding-start:0;padding-inline-start:0}.main-nav .nav-link{padding-top:0;padding-bottom:0}@media (min-width:1200px){.main-nav .nav-link{padding-right:15px!important;padding-left:15px!important}}.on-hover-menu{background:0 0;margin:0;padding:0;min-height:20px}@media only screen and (min-width:991px){.on-hover-menu ul li{position:relative}}@media (max-width:991.98px){.slideout-menu{position:fixed;left:0;top:0;bottom:0;right:0;z-index:0;width:256px;overflow-y:scroll;-webkit-overflow-scrolling:touch;display:none;margin-bottom:71px}}@media (max-width:991.98px){.slideout-menu-left{left:0}}@media (max-width:991.98px){.slideout-menu-right{right:0;left:auto}}@media (min-width:992px){.nav-mobile{display:none}}.nav-mobile .main-nav .navbar-nav{padding-right:0}.nav-mobile .main-nav .nav-item{display:block}.nav-mobile .main-nav .nav-item a{border-bottom:1px solid;padding:15px}.item-footer{padding:15px 24px;border-top:1px solid #dce0e0}.item-price-wrap{bottom:20px;left:20px;color:#fff;font-weight:600}.item-price-wrap .item-price{font-size:18px}.item-tool>span{width:30px;height:30px;line-height:30px;font-size:14px;text-align:center}.item-tool>span{color:#fff;border:1px solid transparent;background-color:rgba(0,0,0,.35)}.item-author,.item-author a{color:#636363;font-size:12px}.item-author i{margin-right:5px}.grid-view .labels-wrap{top:17px;right:20px}.grid-view .item-footer{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.grid-view .item-footer .item-author{max-width:50%}.item-wrap-v2 .item-footer{border-top:none}.labels-right a{margin-left:3px}.compare-property-panel{background-color:#fff;position:fixed;padding-top:20px;padding-right:15px;padding-bottom:20px;padding-left:20px;border-left:1px solid #dce0e0}.compare-property-panel-vertical{width:300px;height:100%;top:0;z-index:100}.compare-property-panel-right{right:-300px}.compare-property-label{background-color:#636363;width:40px;height:40px;line-height:40px;top:50%;left:-40px;text-align:center;color:#fff;border-top-left-radius:4px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border:none}.compare-property-label .compare-label{background-color:#85c341;font-size:11px;font-weight:700;width:16px;height:16px;line-height:16px;border-radius:50%;top:-5px;left:-5px}.property-lightbox .modal{visibility:hidden}.property-lightbox .modal-dialog{max-width:100%;width:1170px;overflow:hidden}@media (max-width:1199.98px){.property-lightbox .modal-dialog{max-width:100%;width:972px}}@media (max-width:991.98px){.property-lightbox .modal-dialog{max-width:100%;width:760px}}@media (max-width:767.98px){.property-lightbox .modal-dialog{width:100%;height:100%;margin:0}}@media (max-width:767.98px){.property-lightbox .modal-content{height:100%;border-radius:0;background-color:#2d2d2d}}.back-to-top-wrap{position:fixed;left:auto;right:30px;bottom:30px;z-index:99}@media (max-width:767.98px){.back-to-top-wrap{right:15px;bottom:15px}}.back-to-top-wrap .btn-back-to-top{display:none;width:42px;height:42px;line-height:42px;padding:0}.modal .modal-title{font-size:18px}div#login-register-form{z-index:9999}.login-register-form .modal-content{border:none}.login-register-form .modal-dialog{max-width:430px}.login-register-form .modal-header{overflow:hidden;border:none;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.login-register-form .modal-header .close{padding:15px 20px;color:#fff;opacity:1;text-shadow:none;border-left:1px solid rgba(255,255,255,.2)}.login-register-form .modal-header .close span{top:-2px}.login-register-form .modal-header .login-register-tabs .nav-link,.login-register-form .modal-header .login-register-tabs .nav-tabs{border:none}.login-register-form .modal-header .login-register-tabs .nav-link{border-right:1px solid;border-color:rgba(255,255,255,.2);padding:15px 30px;color:#fff}.login-register-form .modal-body{padding:30px}.form-tools .control{color:#636363}.form-tools a{min-height:24px;font-size:14px;font-weight:500}.login-form-wrap{background-color:#fff;border:1px solid #dce0e0}.login-form-wrap .form-group-field:after{font-family:"houzez-iconfont";color:#636363;top:10px;left:18px}.login-form-wrap .form-group-field input{padding-left:42px;border:none}.login-form-wrap .form-group{border-bottom:1px solid #dce0e0}.login-form-wrap .form-group:last-of-type{border-bottom:none}.login-form-wrap .username-field:after{content:""}.login-form-wrap .password-field:after{content:""}.houzez-field-textual{line-height:1.4;font-size:15px;min-height:40px;border-radius:3px}.houzez-field-textual.elementor-size-md{font-size:16px;min-height:47px;border-radius:4px}.close{margin-left:auto}.modal{z-index:1080}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-webkit-input-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-moz-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual:-ms-input-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-ms-input-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-webkit-input-placeholder{opacity:1}.btn,body{font-size:15px;font-family:Roboto,sans-serif}a{color:#00aeff}.login-register-form .modal-header{background-color:#00aeff}.btn-primary{color:#fff;background-color:#00aeff;border-color:#00aeff}.header-v4 .header-inner-wrap{line-height:90px;height:90px}.main-wrap,body{background-color:#f8f8f8}.control--checkbox,.form-control,body{color:#222}.header-v4,.nav-mobile .main-nav,.nav-mobile .navi-login-register{background-color:#fff}.header-mobile{background-color:#004274}.header-mobile .toggle-button-left{color:#fff}.header-v4 a{color:#004274}.nav-mobile .main-nav .nav-item a{color:#004274;border-color:#dce0e0;background-color:#fff}.form-control::-webkit-input-placeholder{color:#a1a7a8}body{line-height:25px;font-weight:300;text-transform:none}.btn{font-weight:500}.form-control{font-family:Roboto,sans-serif;font-size:15px;font-weight:400}label,strong{font-weight:600}.login-register,.main-nav{font-family:Roboto,sans-serif;font-size:14px;font-weight:500;text-transform:none}h5{font-family:Roboto,sans-serif;font-weight:500;text-transform:inherit}.back-to-top-wrap .btn-back-to-top{display:none}.btn-loader:after{border:2px solid #333;border-color:#333 transparent}@media (min-width:1200px){.container{max-width:1210px}}.label-color-87{background-color:#31af00}.status-color-28{background-color:#d93}.status-color-88{background-color:#b7ba00}.status-color-95{background-color:#d33}.status-color-89{background-color:#31af00}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}.main-nav,.login-register{font-family:Poppins;font-size:14px;font-weight:400;text-align:left;text-transform:uppercase}.btn,.form-control{font-family:Poppins;font-size:16px}h5{font-family:Poppins;font-weight:400;text-transform:capitalize}.header-v4 .header-inner-wrap{line-height:90px;height:90px}body,.main-wrap{background-color:#f7f7f7}body,.form-control{color:#222}a{color:#3385d9}.login-register-form .modal-header{background-color:#3385d9}.btn-primary{color:#fff;background-color:#3385d9;border-color:#3385d9}.header-desktop .main-nav .nav-link{letter-spacing:0px}.header-v4{background-color:#fff}.header-v4 a.nav-link{color:#000}.header-mobile{background-color:#fff}.header-mobile .toggle-button-left{color:#000}.nav-mobile .main-nav,.nav-mobile .navi-login-register{background-color:#fff}.nav-mobile .main-nav .nav-item a{color:#000;border-bottom:1px solid #fff;background-color:#fff}.form-control::-webkit-input-placeholder{color:#a1a7a8}#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px}@media only screen and (max-width:768px){.back-to-top-wrap{right:10px;bottom:80px;display:none}#houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px}}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor .elementor-background-overlay{height:100%;width:100%;top:0;left:0;position:absolute}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order);align-self:var(--align-self)}.elementor-invisible{visibility:hidden}:root{--page-title-display:block}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-right:auto;margin-left:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-widget-wrap{position:relative;width:100%;flex-wrap:wrap;align-content:flex-start}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-bottom:20px}.elementor-column{position:relative;min-height:1px;display:flex}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}@media (min-width:768px){.elementor-column.elementor-col-20{width:20%}.elementor-column.elementor-col-25{width:25%}.elementor-column.elementor-col-100{width:100%}}@media (max-width:767px){.elementor-column{width:100%}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input{flex-basis:100%;max-width:100%}.elementor-field-group{flex-wrap:wrap;align-items:center}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{width:100%;max-width:100%;border:1px solid #69727d;background-color:transparent;color:#1f2124;vertical-align:middle;flex-grow:1}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;font-size:inherit;font-family:inherit;font-weight:inherit;font-style:inherit;text-transform:inherit;letter-spacing:inherit;line-height:inherit;flex-basis:100%;padding-right:20px}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;position:absolute;top:50%;transform:translateY(-50%);right:10px;text-shadow:0 0 3px rgba(0,0,0,.3)}.elementor-field-textual{line-height:1.4;font-size:15px;min-height:40px;padding:5px 14px;border-radius:3px}.elementor-field-textual.elementor-size-md{font-size:16px;min-height:47px;padding:6px 16px;border-radius:4px}.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}@media screen and (max-width:767px){.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}}.elementor-button{display:inline-block;line-height:1;background-color:#69727d;font-size:15px;padding:12px 24px;border-radius:3px;color:#fff;fill:#fff;text-align:center}.elementor-button:visited{color:#fff}.elementor-button.elementor-size-md{font-size:16px;padding:15px 30px;border-radius:4px}.elementor-element{--swiper-theme-color:#000;--swiper-navigation-size:44px;--swiper-pagination-bullet-size:6px;--swiper-pagination-bullet-horizontal-gap:6px}.elementor-kit-6{--e-global-color-primary:#6ec1e4;--e-global-color-secondary:#54595f;--e-global-color-text:#7a7a7a;--e-global-color-accent:#ce361a;--e-global-color-1aefe69:#3385d9;--e-global-color-59e125d:#2b6fb4;--e-global-typography-primary-font-family:"Raleway";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Raleway";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Raleway";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Raleway";--e-global-typography-accent-font-weight:500}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-widget:not(:last-child){margin-block-end:20px}.elementor-element{--widgets-spacing:20px 20px}@media (max-width:1024px){.elementor-section.elementor-section-boxed>.elementor-container{max-width:1024px}}@media (max-width:767px){.elementor-section.elementor-section-boxed>.elementor-container{max-width:767px}}.elementor-194 .elementor-element.elementor-element-c1d7965:not(.elementor-motion-effects-element-type-background){background-image:url("https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/houzez-header-1.jpg");background-repeat:no-repeat;background-size:cover}.elementor-194 .elementor-element.elementor-element-c1d7965>.elementor-background-overlay{background-color:#000;opacity:.35}.elementor-194 .elementor-element.elementor-element-a552e5c>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0}.elementor-194 .elementor-element.elementor-element-9cff6ff{--spacer-size:40px}.elementor-194 .elementor-element.elementor-element-9291a31{--spacer-size:50px}.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_subtitle{font-family:"Poppins",Sans-serif;font-size:25px;font-weight:400;margin-bottom:0}.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap{text-align:center;margin-bottom:0}.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap .houzez_section_subtitle{color:#fff}.elementor-194 .elementor-element.elementor-element-590db8a .houzez-spacer-inner{height:30px}.elementor-194 .elementor-element.elementor-element-d3b1356>.elementor-container{max-width:1000px}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group{padding-right:calc(10px/2);padding-left:calc(10px/2);margin-bottom:0}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-form-fields-wrapper{margin-left:calc(-10px/2);margin-right:calc(-10px/2);margin-bottom:0}body .elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-labels-above .elementor-field-group>label{padding-bottom:0}.elementor-194 .elementor-element.elementor-element-f0d3160 .houzez-ele-search-form-wrapper{background-color:#fff;padding:10px;border-radius:4px}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group:not(.elementor-field-type-upload) .elementor-field:not(.elementor-select-wrapper){background-color:#fff;border-color:#e9e9e9}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group .elementor-select-wrapper select{border-color:#e9e9e9}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group .elementor-select-wrapper:before{color:#e9e9e9}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-button{background-color:var(--e-global-color-1aefe69);color:#fff}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-tools .item-compare{display:none}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-tools .item-favorite{display:none}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-footer{display:none}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-author{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-tools .item-compare{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-tools .item-favorite{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-footer{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-author{display:none}@media (min-width:1025px){.elementor-194 .elementor-element.elementor-element-c1d7965:not(.elementor-motion-effects-element-type-background){background-attachment:fixed}}@media (max-width:1024px){.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap{margin-bottom:16px}}@media (max-width:767px){.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap{margin-bottom:16px}body .elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-labels-above .elementor-field-group>label{padding-bottom:10px}}.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="b7d6de66bd0d717eb752a95e-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/css/cf0331b918bdcd2649ea3bb4aaeebfbd.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
3 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
4 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
5 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
6 + .container {
7 + max-width: 1210px;
8 + }
9 + }
10 + .label-color-87 {
11 + background-color: #31af00;
12 + }
13 +
14 + .status-color-28 {
15 + background-color: #dd9933;
16 + }
17 +
18 + .status-color-88 {
19 + background-color: #b7ba00;
20 + }
21 +
22 + .status-color-95 {
23 + background-color: #dd3333;
24 + }
25 +
26 + .status-color-94 {
27 + background-color: #1e73be;
28 + }
29 +
30 + .status-color-89 {
31 + background-color: #31af00;
32 + }
33 +
34 + body {
35 + font-family: Poppins;
36 + font-size: 16px;
37 + font-weight: 400;
38 + line-height: 24px;
39 + text-transform: none;
40 + }
41 + .main-nav,
42 + .dropdown-menu,
43 + .login-register,
44 + .btn.btn-create-listing,
45 + .logged-in-nav,
46 + .btn-phone-number {
47 + font-family: Poppins;
48 + font-size: 14px;
49 + font-weight: 400;
50 + text-align: left;
51 + text-transform: uppercase;
52 + }
53 +
54 + .btn,
55 + .form-control,
56 + .bootstrap-select .text,
57 + .sort-by-title,
58 + .woocommerce ul.products li.product .button {
59 + font-family: Poppins;
60 + font-size: 16px;
61 + }
62 +
63 + h1, h2, h3, h4, h5, h6, .item-title {
64 + font-family: Poppins;
65 + font-weight: 400;
66 + text-transform: capitalize;
67 + }
68 +
69 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
70 + font-weight: 400;
71 + text-transform: capitalize;
72 + text-align: inherit;
73 + }
74 +
75 + .top-bar-wrap {
76 + font-family: Poppins;
77 + font-size: 15px;
78 + font-weight: 300;
79 + line-height: 25px;
80 + text-align: left;
81 + text-transform: none;
82 + }
83 + .footer-wrap {
84 + font-family: Poppins;
85 + font-size: 14px;
86 + font-weight: 300;
87 + line-height: 25px;
88 + text-align: left;
89 + text-transform: none;
90 + }
91 +
92 + .header-v1 .header-inner-wrap,
93 + .header-v1 .navbar-logged-in-wrap {
94 + line-height: 60px;
95 + height: 60px;
96 + }
97 + .header-v2 .header-top .navbar {
98 + height: 110px;
99 + }
100 +
101 + .header-v2 .header-bottom .header-inner-wrap,
102 + .header-v2 .header-bottom .navbar-logged-in-wrap {
103 + line-height: 54px;
104 + height: 54px;
105 + }
106 +
107 + .header-v3 .header-top .header-inner-wrap,
108 + .header-v3 .header-top .header-contact-wrap {
109 + height: 80px;
110 + line-height: 80px;
111 + }
112 + .header-v3 .header-bottom .header-inner-wrap,
113 + .header-v3 .header-bottom .navbar-logged-in-wrap {
114 + line-height: 54px;
115 + height: 54px;
116 + }
117 + .header-v4 .header-inner-wrap,
118 + .header-v4 .navbar-logged-in-wrap {
119 + line-height: 90px;
120 + height: 90px;
121 + }
122 + .header-v5 .header-top .header-inner-wrap,
123 + .header-v5 .header-top .navbar-logged-in-wrap {
124 + line-height: 110px;
125 + height: 110px;
126 + }
127 + .header-v5 .header-bottom .header-inner-wrap {
128 + line-height: 54px;
129 + height: 54px;
130 + }
131 + .header-v6 .header-inner-wrap,
132 + .header-v6 .navbar-logged-in-wrap {
133 + height: 60px;
134 + line-height: 60px;
135 + }
136 + @media (min-width: 1200px) {
137 + .header-v5 .header-top .container {
138 + max-width: 1170px;
139 + }
140 + }
141 +
142 + body,
143 + .main-wrap,
144 + .fw-property-documents-wrap h3 span,
145 + .fw-property-details-wrap h3 span {
146 + background-color: #f7f7f7;
147 + }
148 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
149 + background-color: #ffffff;
150 + }
151 +
152 + body,
153 + .form-control,
154 + .bootstrap-select .text,
155 + .item-title a,
156 + .listing-tabs .nav-tabs .nav-link,
157 + .item-wrap-v2 .item-amenities li span,
158 + .item-wrap-v2 .item-amenities li:before,
159 + .item-parallax-wrap .item-price-wrap,
160 + .list-view .item-body .item-price-wrap,
161 + .property-slider-item .item-price-wrap,
162 + .page-title-wrap .item-price-wrap,
163 + .agent-information .agent-phone span a,
164 + .property-overview-wrap ul li strong,
165 + .mobile-property-title .item-price-wrap .item-price,
166 + .fw-property-features-left li a,
167 + .lightbox-content-wrap .item-price-wrap,
168 + .blog-post-item-v1 .blog-post-title h3 a,
169 + .blog-post-content-widget h4 a,
170 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
171 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
172 + .agent-list-wrap .agent-list-content h2 a,
173 + .agent-list-wrap .agent-list-contact li a,
174 + .agent-contacts-wrap li a,
175 + .menu-edit-property li a,
176 + .statistic-referrals-list li a,
177 + .chart-nav .nav-pills .nav-link,
178 + .dashboard-table-properties td .property-payment-status,
179 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
180 + .payment-method-block .radio-tab .control-text,
181 + .post-title-wrap h2 a,
182 + .lead-nav-tab.nav-pills .nav-link,
183 + .deals-nav-tab.nav-pills .nav-link,
184 + .btn-light-grey-outlined:hover,
185 + button:not(.bs-placeholder) .filter-option-inner-inner,
186 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
187 + .products > .product > .item-body > a,
188 + .woocommerce ul.products li.product .price,
189 + .woocommerce div.product p.price,
190 + .woocommerce div.product span.price,
191 + .woocommerce #reviews #comments ol.commentlist li .meta,
192 + .woocommerce-MyAccount-navigation ul li a,
193 + .activitiy-item-close-button a,
194 + .property-section-wrap li a {
195 + color: #222222;
196 + }
197 +
198 +
199 +
200 + a,
201 + a:hover,
202 + a:active,
203 + a:focus,
204 + .primary-text,
205 + .btn-clear,
206 + .btn-apply,
207 + .btn-primary-outlined,
208 + .btn-primary-outlined:before,
209 + .item-title a:hover,
210 + .sort-by .bootstrap-select .bs-placeholder,
211 + .sort-by .bootstrap-select > .btn,
212 + .sort-by .bootstrap-select > .btn:active,
213 + .page-link,
214 + .page-link:hover,
215 + .accordion-title:before,
216 + .blog-post-content-widget h4 a:hover,
217 + .agent-list-wrap .agent-list-content h2 a:hover,
218 + .agent-list-wrap .agent-list-contact li a:hover,
219 + .agent-contacts-wrap li a:hover,
220 + .agent-nav-wrap .nav-pills .nav-link,
221 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
222 + .menu-edit-property li a.active,
223 + .menu-edit-property li a:hover,
224 + .dashboard-statistic-block h3 .fa,
225 + .statistic-referrals-list li a:hover,
226 + .chart-nav .nav-pills .nav-link.active,
227 + .board-message-icon-wrap.active,
228 + .post-title-wrap h2 a:hover,
229 + .listing-switch-view .switch-btn.active,
230 + .item-wrap-v6 .item-price-wrap,
231 + .listing-v6 .list-view .item-body .item-price-wrap,
232 + .woocommerce nav.woocommerce-pagination ul li a,
233 + .woocommerce nav.woocommerce-pagination ul li span,
234 + .woocommerce-MyAccount-navigation ul li a:hover,
235 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
236 + .property-schedule-tour-form-wrap .control:hover,
237 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
238 + .login-register .btn-icon-login-register + .dropdown-menu a,
239 + .activitiy-item-close-button a:hover,
240 + .property-section-wrap li a:hover,
241 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
242 + color: #3385d9;
243 + }
244 +
245 + .agent-list-position a {
246 + color: #3385d9;
247 + }
248 +
249 + .control input:checked ~ .control__indicator,
250 + .top-banner-wrap .nav-pills .nav-link,
251 + .btn-primary-outlined:hover,
252 + .page-item.active .page-link,
253 + .slick-prev:hover,
254 + .slick-prev:focus,
255 + .slick-next:hover,
256 + .slick-next:focus,
257 + .mobile-property-tools .nav-pills .nav-link.active,
258 + .login-register-form .modal-header,
259 + .agent-nav-wrap .nav-pills .nav-link.active,
260 + .board-message-icon-wrap .notification-circle,
261 + .primary-label,
262 + .fc-event, .fc-event-dot,
263 + .compare-table .table-hover > tbody > tr:hover,
264 + .post-tag,
265 + .datepicker table tr td.active.active,
266 + .datepicker table tr td.active.disabled,
267 + .datepicker table tr td.active.disabled.active,
268 + .datepicker table tr td.active.disabled.disabled,
269 + .datepicker table tr td.active.disabled:active,
270 + .datepicker table tr td.active.disabled:hover,
271 + .datepicker table tr td.active.disabled:hover.active,
272 + .datepicker table tr td.active.disabled:hover.disabled,
273 + .datepicker table tr td.active.disabled:hover:active,
274 + .datepicker table tr td.active.disabled:hover:hover,
275 + .datepicker table tr td.active.disabled:hover[disabled],
276 + .datepicker table tr td.active.disabled[disabled],
277 + .datepicker table tr td.active:active,
278 + .datepicker table tr td.active:hover,
279 + .datepicker table tr td.active:hover.active,
280 + .datepicker table tr td.active:hover.disabled,
281 + .datepicker table tr td.active:hover:active,
282 + .datepicker table tr td.active:hover:hover,
283 + .datepicker table tr td.active:hover[disabled],
284 + .datepicker table tr td.active[disabled],
285 + .ui-slider-horizontal .ui-slider-range,
286 + .btn-bubble {
287 + background-color: #3385d9;
288 + }
289 +
290 + .control input:checked ~ .control__indicator,
291 + .btn-primary-outlined,
292 + .page-item.active .page-link,
293 + .mobile-property-tools .nav-pills .nav-link.active,
294 + .agent-nav-wrap .nav-pills .nav-link,
295 + .agent-nav-wrap .nav-pills .nav-link.active,
296 + .chart-nav .nav-pills .nav-link.active,
297 + .dashaboard-snake-nav .step-block.active,
298 + .fc-event,
299 + .fc-event-dot,
300 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
301 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
302 + border-color: #3385d9;
303 + }
304 +
305 + .slick-arrow:hover {
306 + background-color: rgba(43,111,180,1);
307 + }
308 +
309 + .slick-arrow {
310 + background-color: #3385d9;
311 + }
312 +
313 + .property-banner .nav-pills .nav-link.active {
314 + background-color: rgba(43,111,180,1) !important;
315 + }
316 +
317 + .property-navigation-wrap a.active {
318 + color: #3385d9;
319 + -webkit-box-shadow: inset 0 -3px #3385d9;
320 + box-shadow: inset 0 -3px #3385d9;
321 + }
322 +
323 + .btn-primary,
324 + .fc-button-primary,
325 + .woocommerce nav.woocommerce-pagination ul li a:focus,
326 + .woocommerce nav.woocommerce-pagination ul li a:hover,
327 + .woocommerce nav.woocommerce-pagination ul li span.current {
328 + color: #fff;
329 + background-color: #3385d9;
330 + border-color: #3385d9;
331 + }
332 + .btn-primary:focus, .btn-primary:focus:active,
333 + .fc-button-primary:focus,
334 + .fc-button-primary:focus:active {
335 + color: #fff;
336 + background-color: #3385d9;
337 + border-color: #3385d9;
338 + }
339 + .btn-primary:hover,
340 + .fc-button-primary:hover {
341 + color: #fff;
342 + background-color: #2b6fb4;
343 + border-color: #2b6fb4;
344 + }
345 + .btn-primary:active,
346 + .btn-primary:not(:disabled):not(:disabled):active,
347 + .fc-button-primary:active,
348 + .fc-button-primary:not(:disabled):not(:disabled):active {
349 + color: #fff;
350 + background-color: #2b6fb4;
351 + border-color: #2b6fb4;
352 + }
353 +
354 + .btn-secondary,
355 + .woocommerce span.onsale,
356 + .woocommerce ul.products li.product .button,
357 + .woocommerce #respond input#submit.alt,
358 + .woocommerce a.button.alt,
359 + .woocommerce button.button.alt,
360 + .woocommerce input.button.alt,
361 + .woocommerce #review_form #respond .form-submit input,
362 + .woocommerce #respond input#submit,
363 + .woocommerce a.button,
364 + .woocommerce button.button,
365 + .woocommerce input.button {
366 + color: #fff;
367 + background-color: #656565;
368 + border-color: #656565;
369 + }
370 + .woocommerce ul.products li.product .button:focus,
371 + .woocommerce ul.products li.product .button:active,
372 + .woocommerce #respond input#submit.alt:focus,
373 + .woocommerce a.button.alt:focus,
374 + .woocommerce button.button.alt:focus,
375 + .woocommerce input.button.alt:focus,
376 + .woocommerce #respond input#submit.alt:active,
377 + .woocommerce a.button.alt:active,
378 + .woocommerce button.button.alt:active,
379 + .woocommerce input.button.alt:active,
380 + .woocommerce #review_form #respond .form-submit input:focus,
381 + .woocommerce #review_form #respond .form-submit input:active,
382 + .woocommerce #respond input#submit:active,
383 + .woocommerce a.button:active,
384 + .woocommerce button.button:active,
385 + .woocommerce input.button:active,
386 + .woocommerce #respond input#submit:focus,
387 + .woocommerce a.button:focus,
388 + .woocommerce button.button:focus,
389 + .woocommerce input.button:focus {
390 + color: #fff;
391 + background-color: #656565;
392 + border-color: #656565;
393 + }
394 + .btn-secondary:hover,
395 + .woocommerce ul.products li.product .button:hover,
396 + .woocommerce #respond input#submit.alt:hover,
397 + .woocommerce a.button.alt:hover,
398 + .woocommerce button.button.alt:hover,
399 + .woocommerce input.button.alt:hover,
400 + .woocommerce #review_form #respond .form-submit input:hover,
401 + .woocommerce #respond input#submit:hover,
402 + .woocommerce a.button:hover,
403 + .woocommerce button.button:hover,
404 + .woocommerce input.button:hover {
405 + color: #fff;
406 + background-color: #333333;
407 + border-color: #333333;
408 + }
409 + .btn-secondary:active,
410 + .btn-secondary:not(:disabled):not(:disabled):active {
411 + color: #fff;
412 + background-color: #333333;
413 + border-color: #333333;
414 + }
415 +
416 + .btn-primary-outlined {
417 + color: #3385d9;
418 + background-color: transparent;
419 + border-color: #3385d9;
420 + }
421 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
422 + color: #3385d9;
423 + background-color: transparent;
424 + border-color: #3385d9;
425 + }
426 + .btn-primary-outlined:hover {
427 + color: #fff;
428 + background-color: #2b6fb4;
429 + border-color: #2b6fb4;
430 + }
431 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
432 + color: #3385d9;
433 + background-color: rgba(26, 26, 26, 0);
434 + border-color: #2b6fb4;
435 + }
436 +
437 + .btn-secondary-outlined {
438 + color: #656565;
439 + background-color: transparent;
440 + border-color: #656565;
441 + }
442 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
443 + color: #656565;
444 + background-color: transparent;
445 + border-color: #656565;
446 + }
447 + .btn-secondary-outlined:hover {
448 + color: #fff;
449 + background-color: #333333;
450 + border-color: #333333;
451 + }
452 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
453 + color: #656565;
454 + background-color: rgba(26, 26, 26, 0);
455 + border-color: #333333;
456 + }
457 +
458 + .btn-call {
459 + color: #656565;
460 + background-color: transparent;
461 + border-color: #656565;
462 + }
463 + .btn-call:focus, .btn-call:focus:active {
464 + color: #656565;
465 + background-color: transparent;
466 + border-color: #656565;
467 + }
468 + .btn-call:hover {
469 + color: #656565;
470 + background-color: rgba(26, 26, 26, 0);
471 + border-color: #333333;
472 + }
473 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
474 + color: #656565;
475 + background-color: rgba(26, 26, 26, 0);
476 + border-color: #333333;
477 + }
478 + .icon-delete .btn-loader:after{
479 + border-color: #3385d9 transparent #3385d9 transparent
480 + }
481 +
482 + .header-v1 {
483 + background-color: #004274;
484 + border-bottom: 1px solid #004274;
485 + }
486 +
487 + .header-v1 a.nav-link {
488 + color: #ffffff;
489 + }
490 +
491 + .header-v1 a.nav-link:hover,
492 + .header-v1 a.nav-link:active {
493 + color: #00aeff;
494 + background-color: rgba(255,255,255,0.2);
495 + }
496 + .header-desktop .main-nav .nav-link {
497 + letter-spacing: 0.0px;
498 + }
499 +
500 + .header-v2 .header-top,
501 + .header-v5 .header-top,
502 + .header-v2 .header-contact-wrap {
503 + background-color: #ffffff;
504 + }
505 +
506 + .header-v2 .header-bottom,
507 + .header-v5 .header-bottom {
508 + background-color: #004274;
509 + }
510 +
511 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
512 + color: #004274;
513 + }
514 +
515 + .header-v2 .header-contact-left {
516 + color: #004274;
517 + }
518 +
519 + .header-v2 .header-bottom,
520 + .header-v2 .navbar-nav > li,
521 + .header-v2 .navbar-nav > li:first-of-type,
522 + .header-v5 .header-bottom,
523 + .header-v5 .navbar-nav > li,
524 + .header-v5 .navbar-nav > li:first-of-type {
525 + border-color: rgba(255,255,255,0.2);
526 + }
527 +
528 + .header-v2 a.nav-link,
529 + .header-v5 a.nav-link {
530 + color: #ffffff;
531 + }
532 +
533 + .header-v2 a.nav-link:hover,
534 + .header-v2 a.nav-link:active,
535 + .header-v5 a.nav-link:hover,
536 + .header-v5 a.nav-link:active {
537 + color: #00aeff;
538 + background-color: rgba(255,255,255,0.2);
539 + }
540 +
541 + .header-v2 .header-contact-right a:hover,
542 + .header-v2 .header-contact-right a:active,
543 + .header-v3 .header-contact-right a:hover,
544 + .header-v3 .header-contact-right a:active {
545 + background-color: transparent;
546 + }
547 +
548 + .header-v2 .header-social-icons a,
549 + .header-v5 .header-social-icons a {
550 + color: #004274;
551 + }
552 +
553 + .header-v3 .header-top {
554 + background-color: #004274;
555 + }
556 +
557 + .header-v3 .header-bottom {
558 + background-color: #004272;
559 + }
560 +
561 + .header-v3 .header-contact,
562 + .header-v3-mobile {
563 + background-color: #00aeef;
564 + color: #ffffff;
565 + }
566 +
567 + .header-v3 .header-bottom,
568 + .header-v3 .login-register,
569 + .header-v3 .navbar-nav > li,
570 + .header-v3 .navbar-nav > li:first-of-type {
571 + border-color: ;
572 + }
573 +
574 + .header-v3 a.nav-link,
575 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
576 + color: #ffffff;
577 + }
578 +
579 + .header-v3 a.nav-link:hover,
580 + .header-v3 a.nav-link:active {
581 + color: #00aeff;
582 + background-color: rgba(255,255,255,0.2);
583 + }
584 +
585 + .header-v3 .header-social-icons a {
586 + color: #FFFFFF;
587 + }
588 +
589 + .header-v4 {
590 + background-color: #ffffff;
591 + }
592 +
593 + .header-v4 a.nav-link {
594 + color: #000000;
595 + }
596 +
597 + .header-v4 a.nav-link:hover,
598 + .header-v4 a.nav-link:active {
599 + color: #3385d9;
600 + background-color: rgba(255,255,255,0.2);
601 + }
602 +
603 + .header-v6 .header-top {
604 + background-color: #00AEEF;
605 + }
606 +
607 + .header-v6 a.nav-link {
608 + color: #FFFFFF;
609 + }
610 +
611 + .header-v6 a.nav-link:hover,
612 + .header-v6 a.nav-link:active {
613 + color: #00aeff;
614 + background-color: rgba(255,255,255,0.2);
615 + }
616 +
617 + .header-v6 .header-social-icons a {
618 + color: #FFFFFF;
619 + }
620 +
621 + .header-mobile {
622 + background-color: #ffffff;
623 + }
624 + .header-mobile .toggle-button-left,
625 + .header-mobile .toggle-button-right {
626 + color: #000000;
627 + }
628 +
629 + .nav-mobile .logged-in-nav a,
630 + .nav-mobile .main-nav,
631 + .nav-mobile .navi-login-register {
632 + background-color: #ffffff;
633 + }
634 +
635 + .nav-mobile .logged-in-nav a,
636 + .nav-mobile .main-nav .nav-item .nav-item a,
637 + .nav-mobile .main-nav .nav-item a,
638 + .navi-login-register .main-nav .nav-item a {
639 + color: #000000;
640 + border-bottom: 1px solid #ffffff;
641 + background-color: #ffffff;
642 + }
643 +
644 + .nav-mobile .btn-create-listing,
645 + .navi-login-register .btn-create-listing {
646 + color: #fff;
647 + border: 1px solid #3385d9;
648 + background-color: #3385d9;
649 + }
650 +
651 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
652 + .navi-login-register .btn-create-listing:hover,
653 + .navi-login-register .btn-create-listing:active {
654 + color: #fff;
655 + border: 1px solid #3385d9;
656 + background-color: rgba(0, 174, 255, 0.65);
657 + }
658 +
659 + .header-transparent-wrap .header-v4 {
660 + background-color: transparent;
661 + border-bottom: 1px none rgba(255,255,255,0.3);
662 + }
663 +
664 + .header-transparent-wrap .header-v4 a {
665 + color: #ffffff;
666 + }
667 +
668 + .header-transparent-wrap .header-v4 a:hover,
669 + .header-transparent-wrap .header-v4 a:active {
670 + color: #3385d9;
671 + background-color: rgba(255, 255, 255, 0.1);
672 + }
673 +
674 + .main-nav .navbar-nav .nav-item .dropdown-menu,
675 + .login-register .login-register-nav li .dropdown-menu {
676 + background-color: rgba(255,255,255,0.95);
677 + }
678 +
679 + .login-register .login-register-nav li .dropdown-menu:before {
680 + border-left-color: rgba(255,255,255,0.95);
681 + border-top-color: rgba(255,255,255,0.95);
682 + }
683 +
684 + .main-nav .navbar-nav .nav-item .nav-item a,
685 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
686 + color: #3385d9;
687 + border-bottom: 1px solid #e6e6e6;
688 + }
689 +
690 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
691 + .main-nav .navbar-nav .nav-item .nav-item a:active,
692 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
693 + color: #2b6fb4;
694 + }
695 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
696 + .main-nav .navbar-nav .nav-item .nav-item a:active,
697 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
698 + background-color: rgba(0, 174, 255, 0.1);
699 + }
700 +
701 + .header-main-wrap .btn-create-listing {
702 + color: #3385d9;
703 + border: 1px solid #3385d9;
704 + background-color: #ffffff;
705 + }
706 +
707 + .header-main-wrap .btn-create-listing:hover,
708 + .header-main-wrap .btn-create-listing:active {
709 + color: rgba(255,255,255,1);
710 + border: 1px solid #2b6fb4;
711 + background-color: rgba(43,111,180,1);
712 + }
713 +
714 + .header-transparent-wrap .header-v4 .btn-create-listing {
715 + color: #ffffff;
716 + border: 1px solid #ffffff;
717 + background-color: rgba(255,255,255,0.2);
718 + }
719 +
720 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
721 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
722 + color: rgba(255,255,255,1);
723 + border: 1px solid #3385d9;
724 + background-color: rgba(51,133,217,1);
725 + }
726 +
727 + .header-transparent-wrap .logged-in-nav a,
728 + .logged-in-nav a {
729 + color: #000000;
730 + border-color: #e6e6e6;
731 + background-color: #FFFFFF;
732 + }
733 +
734 + .header-transparent-wrap .logged-in-nav a:hover,
735 + .header-transparent-wrap .logged-in-nav a:active,
736 + .logged-in-nav a:hover,
737 + .logged-in-nav a:active {
738 + color: #000000;
739 + background-color: rgba(204,204,204,0.15);
740 + border-color: #e6e6e6;
741 + }
742 +
743 + .form-control::-webkit-input-placeholder,
744 + .search-banner-wrap ::-webkit-input-placeholder,
745 + .advanced-search ::-webkit-input-placeholder,
746 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
747 + .overlay-search-advanced-module ::-webkit-input-placeholder {
748 + color: #a1a7a8;
749 + }
750 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
751 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
752 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
753 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
754 + color: #a1a7a8;
755 + }
756 + .form-control::placeholder,
757 + .search-banner-wrap ::-webkit-input-placeholder,
758 + .advanced-search ::-webkit-input-placeholder,
759 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
760 + .overlay-search-advanced-module ::-webkit-input-placeholder {
761 + color: #a1a7a8;
762 + }
763 +
764 + .search-banner-wrap ::-moz-placeholder,
765 + .advanced-search ::-moz-placeholder,
766 + .advanced-search-banner-wrap ::-moz-placeholder,
767 + .overlay-search-advanced-module ::-moz-placeholder {
768 + color: #a1a7a8;
769 + }
770 +
771 + .search-banner-wrap :-ms-input-placeholder,
772 + .advanced-search :-ms-input-placeholder,
773 + .advanced-search-banner-wrap ::-ms-input-placeholder,
774 + .overlay-search-advanced-module ::-ms-input-placeholder {
775 + color: #a1a7a8;
776 + }
777 +
778 + .search-banner-wrap :-moz-placeholder,
779 + .advanced-search :-moz-placeholder,
780 + .advanced-search-banner-wrap :-moz-placeholder,
781 + .overlay-search-advanced-module :-moz-placeholder {
782 + color: #a1a7a8;
783 + }
784 +
785 + .advanced-search .form-control,
786 + .advanced-search .bootstrap-select > .btn,
787 + .location-trigger,
788 + .vertical-search-wrap .form-control,
789 + .vertical-search-wrap .bootstrap-select > .btn,
790 + .step-search-wrap .form-control,
791 + .step-search-wrap .bootstrap-select > .btn,
792 + .advanced-search-banner-wrap .form-control,
793 + .advanced-search-banner-wrap .bootstrap-select > .btn,
794 + .search-banner-wrap .form-control,
795 + .search-banner-wrap .bootstrap-select > .btn,
796 + .overlay-search-advanced-module .form-control,
797 + .overlay-search-advanced-module .bootstrap-select > .btn,
798 + .advanced-search-v2 .advanced-search-btn,
799 + .advanced-search-v2 .advanced-search-btn:hover {
800 + border-color: #cccccc;
801 + }
802 +
803 + .advanced-search-nav,
804 + .search-expandable,
805 + .overlay-search-advanced-module {
806 + background-color: #FFFFFF;
807 + }
808 + .btn-search {
809 + color: #ffffff;
810 + background-color: #3385d9;
811 + border-color: #3385d9;
812 + }
813 + .btn-search:hover, .btn-search:active {
814 + color: #ffffff;
815 + background-color: #2b6fb4;
816 + border-color: #2b6fb4;
817 + }
818 + .advanced-search-btn {
819 + color: #666666;
820 + background-color: #ffffff;
821 + border-color: #dce0e0;
822 + }
823 + .advanced-search-btn:hover, .advanced-search-btn:active {
824 + color: #000000;
825 + background-color: #ffffff;
826 + border-color: #dce0e0;
827 + }
828 + .advanced-search-btn:focus {
829 + color: #666666;
830 + background-color: #ffffff;
831 + border-color: #dce0e0;
832 + }
833 + .search-expandable-label {
834 + color: #ffffff;
835 + background-color: #ff6e00;
836 + }
837 + .advanced-search-nav {
838 + padding-top: 10px;
839 + padding-bottom: 10px;
840 + }
841 + .features-list-wrap .control--checkbox,
842 + .features-list-wrap .control--radio,
843 + .range-text,
844 + .features-list-wrap .control--checkbox,
845 + .features-list-wrap .btn-features-list,
846 + .overlay-search-advanced-module .search-title,
847 + .overlay-search-advanced-module .overlay-search-module-close {
848 + color: #222222;
849 + }
850 + .advanced-search-half-map {
851 + background-color: #FFFFFF;
852 + }
853 + .advanced-search-half-map .range-text,
854 + .advanced-search-half-map .features-list-wrap .control--checkbox,
855 + .advanced-search-half-map .features-list-wrap .btn-features-list {
856 + color: #222222;
857 + }
858 +
859 + .save-search-btn {
860 + border-color: #28a745 ;
861 + background-color: #28a745 ;
862 + color: #ffffff ;
863 + }
864 + .save-search-btn:hover,
865 + .save-search-btn:active {
866 + border-color: #28a745;
867 + background-color: #28a745 ;
868 + color: #ffffff ;
869 + }
870 + .label-featured {
871 + background-color: #e22424;
872 + color: #ffffff;
873 + }
874 +
875 + .dashboard-side-wrap {
876 + background-color: #00365e;
877 + }
878 +
879 + .side-menu a {
880 + color: #ffffff;
881 + }
882 +
883 + .side-menu a.active,
884 + .side-menu .side-menu-parent-selected > a,
885 + .side-menu-dropdown a,
886 + .side-menu a:hover {
887 + color: #3385d9;
888 + }
889 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
890 + color: #2b6fb4
891 + }
892 +
893 + .detail-wrap {
894 + background-color: rgba(119,199,32,0.1);
895 + border-color: #3385d9;
896 + }
897 + .top-bar-wrap,
898 + .top-bar-wrap .dropdown-menu,
899 + .switcher-wrap .dropdown-menu {
900 + background-color: #000000;
901 + }
902 + .top-bar-wrap a,
903 + .top-bar-contact,
904 + .top-bar-slogan,
905 + .top-bar-wrap .btn,
906 + .top-bar-wrap .dropdown-menu,
907 + .switcher-wrap .dropdown-menu,
908 + .top-bar-wrap .navbar-toggler {
909 + color: #ffffff;
910 + }
911 + .top-bar-wrap a:hover,
912 + .top-bar-wrap a:active,
913 + .top-bar-wrap .btn:hover,
914 + .top-bar-wrap .btn:active,
915 + .top-bar-wrap .dropdown-menu li:hover,
916 + .top-bar-wrap .dropdown-menu li:active,
917 + .switcher-wrap .dropdown-menu li:hover,
918 + .switcher-wrap .dropdown-menu li:active {
919 + color: rgba(43,111,180,1);
920 + }
921 + .class-energy-indicator:nth-child(1) {
922 + background-color: #33a357;
923 + }
924 + .class-energy-indicator:nth-child(2) {
925 + background-color: #79b752;
926 + }
927 + .class-energy-indicator:nth-child(3) {
928 + background-color: #c3d545;
929 + }
930 + .class-energy-indicator:nth-child(4) {
931 + background-color: #fff12c;
932 + }
933 + .class-energy-indicator:nth-child(5) {
934 + background-color: #edb731;
935 + }
936 + .class-energy-indicator:nth-child(6) {
937 + background-color: #d66f2c;
938 + }
939 + .class-energy-indicator:nth-child(7) {
940 + background-color: #cc232a;
941 + }
942 + .class-energy-indicator:nth-child(8) {
943 + background-color: #cc232a;
944 + }
945 + .class-energy-indicator:nth-child(9) {
946 + background-color: #cc232a;
947 + }
948 + .class-energy-indicator:nth-child(10) {
949 + background-color: #cc232a;
950 + }
951 +
952 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
953 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
954 +
955 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
956 +
957 + .footer-top-wrap {
958 + background-color: #000000;
959 + }
960 +
961 + .footer-bottom-wrap {
962 + background-color: #000000;
963 + }
964 +
965 + .footer-top-wrap,
966 + .footer-top-wrap a,
967 + .footer-bottom-wrap,
968 + .footer-bottom-wrap a,
969 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
970 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
971 + .footer-top-wrap .blog-post-content-widget h4 a,
972 + .footer-top-wrap .blog-post-content-widget,
973 + .footer-top-wrap .form-tools .control,
974 + .footer-top-wrap .slick-dots li.slick-active button:before,
975 + .footer-top-wrap .slick-dots li button::before,
976 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
977 + color: #ffffff;
978 + }
979 +
980 + .footer-top-wrap a:hover,
981 + .footer-bottom-wrap a:hover,
982 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
983 + color: rgba(43,111,180,1);
984 + }
985 + .houzez-osm-cluster {
986 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
987 + text-align: center;
988 + color: #fff;
989 + width: 48px;
990 + height: 48px;
991 + line-height: 48px;
992 + }
993 + .text-success{color:red!important;}
994 +
995 +/*.mobile-property-contact{bottom:40px;}*/
996 +
997 +/* Button retour en haut*/
998 +/*
999 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1000 +.mobile-property-contact .btn{margin-right: 60px;}
1001 +*/
1002 +
1003 +.item-tool.houzez-share{display:none;}
1004 +
1005 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1006 +
1007 +.grecaptcha-badge{display:none!important;}
1008 +
1009 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1010 +
1011 +
1012 +@media only screen and (max-width: 768px) {
1013 + /* For mobile phones: */
1014 +
1015 + /* Button retour en haut*/
1016 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1017 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1018 +}
1019 +/*# sourceURL=houzez-style-inline-css */</style><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1020 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1021 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/pages/194" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/page/3/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/page/3/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1022 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1023 + background-image: none !important;
1024 + }
1025 + @media screen and (max-height: 1024px) {
1026 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1027 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1028 + background-image: none !important;
1029 + }
1030 + }
1031 + @media screen and (max-height: 640px) {
1032 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1033 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1034 + background-image: none !important;
1035 + }
1036 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1037 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1038 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1039 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
1040 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
1041 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
1042 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
1043 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1044 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="home paged wp-singular page-template page-template-elementor_header_footer page page-id-194 wp-custom-logo paged-3 page-paged-3 wp-theme-houzez translatepress-fr_CA transparent-no houzez-header-elementor elementor-default elementor-template-full-width elementor-kit-6 elementor-page elementor-page-194"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-194 current_page_item "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1045 +<a href="https://agencedelocationsherbrooke.com/">
1046 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1047 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-194 current_page_item "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1048 +<button class="btn toggle-button-left">
1049 +<i class="houzez-icon icon-navigation-menu"></i>
1050 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1051 +<a href="https://agencedelocationsherbrooke.com/">
1052 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1053 +</a></div></div><div class="header-mobile-right"></div></div></header><div data-elementor-type="wp-post" data-elementor-id="194" class="elementor elementor-194"><section class="elementor-section elementor-top-section elementor-element elementor-element-c1d7965 elementor-section-height-full elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="c1d7965" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"><div class="elementor-background-overlay"></div><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a552e5c" data-id="a552e5c" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-9cff6ff elementor-widget elementor-widget-spacer" data-id="9cff6ff" data-element_type="widget" data-widget_type="spacer.default"><div class="elementor-widget-container"><div class="elementor-spacer"><div class="elementor-spacer-inner"></div></div></div></div><div class="elementor-element elementor-element-ac6cf9b animated-slow elementor-invisible elementor-widget elementor-widget-houzez_elementor_section_title" data-id="ac6cf9b" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_section_title.default"><div class="elementor-widget-container"><div class="houzez_section_title_wrap section-title-module"><p class="houzez_section_subtitle">Votre appartement idéal est plus proche que vous ne le pensez.</p></div></div></div><div class="elementor-element elementor-element-590db8a elementor-widget elementor-widget-houzez_elementor_space" data-id="590db8a" data-element_type="widget" data-widget_type="houzez_elementor_space.default"><div class="elementor-widget-container"><div class="houzez-spacer"><div class="houzez-spacer-inner"></div></div></div></div><section class="elementor-section elementor-inner-section elementor-element elementor-element-d3b1356 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d3b1356" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-196d994" data-id="196d994" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-f0d3160 animated-slow elementor-button-align-start elementor-mobile-button-align-stretch elementor-tablet-button-align-start elementor-invisible elementor-widget elementor-widget-houzez_elementor_search_builder" data-id="f0d3160" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_search_builder.default"><div class="elementor-widget-container"><form class="houzez-search-form-js houzez-search-builder-form-js" id="houzez-search-f0d3160" method="get" action="https://agencedelocationsherbrooke.com/search-results/" ><div class="houzez-ele-search-form-wrapper elementor-form-fields-wrapper elementor-labels-above"><div class="elementor-field-group elementor-column form-group elementor-field-group-4e8b111 elementor-col-25">
1054 +<label for="form-field-4e8b111" class="elementor-field-label">Taille</label><div class="elementor-field elementor-select-wrapper">
1055 +<select data-size="5" name="type[]" id="form-field-4e8b111" class="selectpicker bs-select-hidden houzez-field-textual form-control elementor-size-md " data-none-results-text="Aucun résultat {0}"><option value="">Toutes</option><option data-ref="2-demi" value="2-demi">2½</option><option data-ref="3-demi" value="3-demi">3½</option><option data-ref="4-demi" value="4-demi">4½</option><option data-ref="5-demi" value="5-demi">5½</option><option data-ref="6-demi" value="6-demi">6½</option><option data-ref="7-demi" value="7-demi">7½</option><option data-ref="chambre" value="chambre">Chambre</option><option data-ref="maison" value="maison">Maison</option><option data-ref="studio" value="studio">Studio</option> </select></div></div><div class="elementor-field-group elementor-column form-group elementor-field-group-field-cities elementor-col-25">
1056 +<label for="form-field-field-cities" class="elementor-field-label">Secteurs</label><div class="elementor-field elementor-select-wrapper">
1057 +<select data-size="5" name="status[]" id="form-field-field-cities" class="selectpicker bs-select-hidden houzez-field-textual form-control elementor-size-md status-js" data-none-results-text="Aucun résultat {0}"><option value="">Tous les secteurs</option><option data-ref="centre-ville" value="centre-ville">Centre-ville</option><option data-ref="deauville" value="deauville">Deauville</option><option data-ref="lennoxville" value="lennoxville">Lennoxville</option><option data-ref="magog" value="magog">Magog</option><option data-ref="mont-bellevue" value="mont-bellevue">Mont Bellevue</option><option data-ref="slug" value="slug">nom</option><option data-ref="secteur-carrefour" value="secteur-carrefour">Secteur Carrefour</option><option data-ref="secteur-cegep" value="secteur-cegep">Secteur Cégep</option><option data-ref="udes" value="udes">UdeS</option><option data-ref="vieux-nord" value="vieux-nord">Vieux Nord</option><option data-ref="waterville" value="waterville">Waterville</option> </select></div></div><div class="elementor-field-group elementor-column form-group elementor-field-group-ca36fd9 elementor-col-25">
1058 +<label for="form-field-ca36fd9" class="elementor-field-label">Prix maximum</label>
1059 +<input name="max-price" type="text" name="max-price" id="form-field-ca36fd9" class="elementor-field form-control elementor-size-md elementor-field-textual" placeholder="Aucun"></div><div class="elementor-field-group elementor-column elementor-field-type-submit elementor-col-20">
1060 +<button type="submit" class="btn houzez-search-button elementor-button elementor-size-md">
1061 +Rechercher </button></div></div></form></div></div></div></div></div></section></div></div></div></section><section class="elementor-section elementor-top-section elementor-element elementor-element-be1f8d7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="be1f8d7" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9c916fa" data-id="9c916fa" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-f8f317b animated-slow elementor-invisible elementor-widget elementor-widget-houzez_elementor_section_title" data-id="f8f317b" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_section_title.default"><div class="elementor-widget-container"><div class="houzez_section_title_wrap section-title-module"><h2 class="houzez_section_title">Annonces vedettes</h2></div></div></div><div class="elementor-element elementor-element-3592c58 elementor-widget elementor-widget-houzez_elementor_properties_carousel_v2n" data-id="3592c58" data-element_type="widget" data-widget_type="houzez_elementor_properties_carousel_v2n.default"><div class="elementor-widget-container"><div class="property-carousel-module houzez-carousel-arrows-VQq3J houzez-carousel-cols-3 property-carousel-module-v2"><div class="property-carousel-buttons-wrap"></div><div class="listing-view grid-view"><div id="houzez-properties-carousel-VQq3J" data-token="VQq3J" class="houzez-properties-carousel-js houzez-all-slider-wrap card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10485" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165930.293-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165930.293-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165928.922-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165926.097-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165924.591-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165923.134-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165921.885-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1062 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1063 +Mont Bellevue
1064 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1065 +Libre maintenant
1066 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1067 +<span class="hz-show-lightbox-js" data-listid="10485" data-toggle="tooltip" data-placement="top" title="Aperçu">
1068 +<i class="houzez-icon icon-expand-3"></i>
1069 +</span></li><li class="item-tool item-favorite">
1070 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10485">
1071 +<i class="houzez-icon icon-love-it "></i>
1072 +</span></li><li class="item-tool item-compare">
1073 +<span class="houzez_compare compare-10485 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10485" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-592x444.jpeg">
1074 +<i class="houzez-icon icon-add-circle"></i>
1075 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1076 +<a href="https://agencedelocationsherbrooke.com/property/951-fabre/" class="listing-featured-thumb hover-effect">
1077 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" fetchpriority="high" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1078 +Mont Bellevue
1079 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1080 +Libre maintenant
1081 +</a></div><h2 class="item-title">
1082 +<a href="https://agencedelocationsherbrooke.com/property/951-fabre/">951 Fabre</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul> <address class="item-address">951, Rue Fabre, Les Nations, Sherbrooke, Estrie, Québec, J1H 4R6, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">1 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambre</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1083 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1084 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1085 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1086 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-6010" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-36-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-36-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-35-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-37-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-33-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-26-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-42-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-27-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-43-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-30-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-40-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-39-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-38-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-34-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-31-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-41-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-32-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/02\/photo-25-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1087 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1088 +Mont Bellevue
1089 +</a><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1090 +Juillet
1091 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,975$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1092 +<span class="hz-show-lightbox-js" data-listid="6010" data-toggle="tooltip" data-placement="top" title="Aperçu">
1093 +<i class="houzez-icon icon-expand-3"></i>
1094 +</span></li><li class="item-tool item-favorite">
1095 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="6010">
1096 +<i class="houzez-icon icon-love-it "></i>
1097 +</span></li><li class="item-tool item-compare">
1098 +<span class="houzez_compare compare-6010 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="6010" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-592x444.jpeg">
1099 +<i class="houzez-icon icon-add-circle"></i>
1100 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1101 +<a href="https://agencedelocationsherbrooke.com/property/873-pailettes-dor/" class="listing-featured-thumb hover-effect">
1102 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-300x225.jpeg 300w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-1024x768.jpeg 1024w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-768x576.jpeg 768w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-1536x1152.jpeg 1536w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-16x12.jpeg 16w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-800x600.jpeg 800w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-120x90.jpeg 120w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36-496x372.jpeg 496w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/02/photo-36.jpeg 2048w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1103 +Mont Bellevue
1104 +</a><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1105 +Juillet
1106 +</a></div><h2 class="item-title">
1107 +<a href="https://agencedelocationsherbrooke.com/property/873-pailettes-dor/">873 Pailettes d&#8217;Or</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,975$/mensuel</li></ul> <address class="item-address">Rue André, Ascot, Le Mont-Bellevue, Sherbrooke, Estrie, Québec, J1H 3B3, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">3 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1108 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1109 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1110 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1111 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-6534" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8231-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8229-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8231-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8222-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8223-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8224-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8225-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8226-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8227-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8228-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8230-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8232-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8234-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8235-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8236-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8238-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/02\/IMG_5616-592x444.png&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1112 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/udes/" class="label-status label status-color-89">
1113 +UdeS
1114 +</a><a href="https://agencedelocationsherbrooke.com/label/aout/" class="hz-label label label-color-120">
1115 +Août
1116 +</a><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1117 +Juillet
1118 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,295$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1119 +<span class="hz-show-lightbox-js" data-listid="6534" data-toggle="tooltip" data-placement="top" title="Aperçu">
1120 +<i class="houzez-icon icon-expand-3"></i>
1121 +</span></li><li class="item-tool item-favorite">
1122 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="6534">
1123 +<i class="houzez-icon icon-love-it "></i>
1124 +</span></li><li class="item-tool item-compare">
1125 +<span class="houzez_compare compare-6534 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="6534" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2024/07/IMG_8231-592x444.jpg">
1126 +<i class="houzez-icon icon-add-circle"></i>
1127 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1128 +<a href="https://agencedelocationsherbrooke.com/property/1139-1147-rue-louis-st-laurent/" class="listing-featured-thumb hover-effect">
1129 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2024/07/IMG_8231-592x444.jpg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2024/07/IMG_8231-592x444.jpg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2024/07/IMG_8231-584x438.jpg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2024/07/IMG_8231-120x90.jpg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/udes/" class="label-status label status-color-89">
1130 +UdeS
1131 +</a><a href="https://agencedelocationsherbrooke.com/label/aout/" class="hz-label label label-color-120">
1132 +Août
1133 +</a><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1134 +Juillet
1135 +</a></div><h2 class="item-title">
1136 +<a href="https://agencedelocationsherbrooke.com/property/1139-1147-rue-louis-st-laurent/">1143 Rue louis St-Laurent</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,295$/mensuel</li></ul> <address class="item-address">Rue Louis-Saint-Laurent, Le Mont-Bellevue, Sherbrooke, Estrie, Québec, J1K 1L2, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">2 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1137 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1138 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1139 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1140 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></div></div></section><section class="elementor-section elementor-top-section elementor-element elementor-element-03673dc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="03673dc" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a57f655" data-id="a57f655" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-2292302 animated-slow elementor-invisible elementor-widget elementor-widget-houzez_elementor_section_title" data-id="2292302" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_section_title.default"><div class="elementor-widget-container"><div class="houzez_section_title_wrap section-title-module"><h2 class="houzez_section_title">Derniers ajouts</h2></div></div></div></div></div></div></section><section class="elementor-section elementor-top-section elementor-element elementor-element-ecf4ba6 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ecf4ba6" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5c676a3" data-id="5c676a3" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-1856cb4 elementor-widget elementor-widget-houzez_elementor_properties_carousel_v2n" data-id="1856cb4" data-element_type="widget" data-widget_type="houzez_elementor_properties_carousel_v2n.default"><div class="elementor-widget-container"><div class="property-carousel-module houzez-carousel-arrows-BmNFz houzez-carousel-cols-3 property-carousel-module-v2"><div class="property-carousel-buttons-wrap"></div><div class="listing-view grid-view"><div id="houzez-properties-carousel-BmNFz" data-token="BmNFz" class="houzez-properties-carousel-js houzez-all-slider-wrap card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10529" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164646.541-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164646.541-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-22-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-21-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-20-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-19-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-18-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-17-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-16-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-15-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/udes/" class="label-status label status-color-89">
1141 +UdeS
1142 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1143 +Octobre
1144 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,095$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1145 +<span class="hz-show-lightbox-js" data-listid="10529" data-toggle="tooltip" data-placement="top" title="Aperçu">
1146 +<i class="houzez-icon icon-expand-3"></i>
1147 +</span></li><li class="item-tool item-favorite">
1148 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10529">
1149 +<i class="houzez-icon icon-love-it "></i>
1150 +</span></li><li class="item-tool item-compare">
1151 +<span class="houzez_compare compare-10529 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10529" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-592x444.jpeg">
1152 +<i class="houzez-icon icon-add-circle"></i>
1153 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1154 +<a href="https://agencedelocationsherbrooke.com/property/1595-lalemant-401/" class="listing-featured-thumb hover-effect">
1155 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/udes/" class="label-status label status-color-89">
1156 +UdeS
1157 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1158 +Octobre
1159 +</a></div><h2 class="item-title">
1160 +<a href="https://agencedelocationsherbrooke.com/property/1595-lalemant-401/">1595 lalemant #401</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,095$/mensuel</li></ul> <address class="item-address">1595, Rue Lalemant, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3C1, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">3 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1161 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1162 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1163 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1164 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10415" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001946.848-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001946.848-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001945.367-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001954.834-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001956.323-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001953.285-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001942.733-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001943.698-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001957.550-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1165 +Centre-ville
1166 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1167 +Octobre
1168 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,195$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1169 +<span class="hz-show-lightbox-js" data-listid="10415" data-toggle="tooltip" data-placement="top" title="Aperçu">
1170 +<i class="houzez-icon icon-expand-3"></i>
1171 +</span></li><li class="item-tool item-favorite">
1172 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10415">
1173 +<i class="houzez-icon icon-love-it "></i>
1174 +</span></li><li class="item-tool item-compare">
1175 +<span class="houzez_compare compare-10415 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10415" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-592x444.jpeg">
1176 +<i class="houzez-icon icon-add-circle"></i>
1177 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1178 +<a href="https://agencedelocationsherbrooke.com/property/368-fusiliers/" class="listing-featured-thumb hover-effect">
1179 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1180 +Centre-ville
1181 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1182 +Octobre
1183 +</a></div><h2 class="item-title">
1184 +<a href="https://agencedelocationsherbrooke.com/property/368-fusiliers/">368 Fusiliers</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,195$/mensuel</li></ul> <address class="item-address">368, Rue des Fusiliers, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4J5, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">3 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1185 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1186 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1187 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1188 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10323" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214604.302-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214604.302-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214605.767-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214602.971-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214601.360-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214607.172-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214600.168-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214558.776-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214552.707-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214551.309-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214549.891-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214548.735-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1189 +Juillet
1190 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1191 +<span class="hz-show-lightbox-js" data-listid="10323" data-toggle="tooltip" data-placement="top" title="Aperçu">
1192 +<i class="houzez-icon icon-expand-3"></i>
1193 +</span></li><li class="item-tool item-favorite">
1194 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10323">
1195 +<i class="houzez-icon icon-love-it "></i>
1196 +</span></li><li class="item-tool item-compare">
1197 +<span class="houzez_compare compare-10323 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10323" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-592x444.jpeg">
1198 +<i class="houzez-icon icon-add-circle"></i>
1199 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1200 +<a href="https://agencedelocationsherbrooke.com/property/94-garneau-3/" class="listing-featured-thumb hover-effect">
1201 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1202 +Juillet
1203 +</a></div><h2 class="item-title">
1204 +<a href="https://agencedelocationsherbrooke.com/property/94-garneau-3/">94 Garneau #3</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul> <address class="item-address">94, Rue Garneau, East Angus, Le Haut-Saint-François, Québec, J0B 1R0, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">2 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1205 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1206 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1207 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1208 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></div></div></section></div></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1209 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1210 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1211 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1212 +<i class="houzez-icon icon-arrow-up-1"></i>
1213 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1214 +<button class="compare-property-label" style="display: none;">
1215 +<span class="compare-count compare-label"></span>
1216 +<i class="houzez-icon icon-move-left-right"></i>
1217 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1218 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1219 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1220 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1221 +<span aria-hidden="true">&times;</span>
1222 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1223 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1224 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1225 +<label class="control control--checkbox flex-grow-1">
1226 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1227 +</label>
1228 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/page/3/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1229 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com?login=success">
1230 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1231 +<span class="btn-loader houzez-loader-js"></span> Connexion
1232 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1233 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1234 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1235 +<span aria-hidden="true">&times;</span>
1236 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1237 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1238 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/page/3/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1239 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1240 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="b7d6de66bd0d717eb752a95e-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1241 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"","search_position":"under_banner","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="houzez_prop_caoursel-js-extra" type="litespeed/javascript">var houzez_prop_caoursel_VQq3J={"slide_auto":"true","auto_speed":"4000","navigation":"false","slide_dots":"true","slide_infinite":"true","slides_to_show":"3","slides_to_scroll":"1"};var houzez_prop_caoursel_BmNFz={"slide_auto":"true","auto_speed":"4000","navigation":"false","slide_dots":"true","slide_infinite":"true","slides_to_show":"3","slides_to_scroll":"1"}</script> <script id="elementor-frontend-js-before" type="litespeed/javascript">var elementorFrontendConfig={"environmentMode":{"edit":!1,"wpPreview":!1,"isScriptDebug":!1},"i18n":{"shareOnFacebook":"Partager sur Facebook","shareOnTwitter":"Partager sur Twitter","pinIt":"Pin it","download":"Download","downloadImage":"T\u00e9l\u00e9charger une image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Lire la vid\u00e9o","previous":"Pr\u00e9c\u00e9dent","next":"Suivant","close":"Fermer","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":!1,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":!0},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":!1},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":!0},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":!1},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":!1},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":!1}},"hasCustomBreakpoints":!1},"version":"3.26.3","is_static":!1,"experimentalFeatures":{"additional_custom_breakpoints":!0,"e_swiper_latest":!0,"e_nested_atomic_repeaters":!0,"e_onboarding":!0,"e_css_smooth_scroll":!0,"home_screen":!0,"landing-pages":!0,"nested-elements":!0,"editor_v2":!0,"link-in-bio":!0,"floating-buttons":!0},"urls":{"assets":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/agencedelocationsherbrooke.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"504a61ef51"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":194,"title":"Appartement%20%C3%A0%20louer%20-%20Agence%20de%20location%20Sherbrooke%20-%20Page%203","excerpt":"","featuredImage":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png"}}</script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1242 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="b7d6de66bd0d717eb752a95e-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="b7d6de66bd0d717eb752a95e-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="b7d6de66bd0d717eb752a95e-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/a0ae847744a881ec0110ff42519e99fa.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="b7d6de66bd0d717eb752a95e-|49" defer></script></body></html>
1243 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:31:03 -->
1244 +
1245 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:31:03 -->
1246 +<!-- Guest Mode -->
1247 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/658d338601fe97eb9916d12bd99818de.css -->
1248 +<!-- QUIC.cloud UCSS in queue -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/191e9e596b9c4934c025.html +1397 −0
@@ -0,0 +1,1397 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="f321a72594e2d0b51b28e062-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>951 Fabre - Agence de location Sherbrooke</title><meta name="description" content="3 ½ à louer – Disponible maintenant 895 $/mois Possibilité d’avoir les 4 électroménagers sans frais supplémentaire Logement non-fumeur 1er plancher Rien d’inclus 1 espace de stationnement inclus Un chat accepté (chiens non permis) Enquête de crédit obligatoire" /><meta name="robots" content="max-image-preview:large" /><meta name="author" content="Catherine Perreault"/><link rel="canonical" href="https://agencedelocationsherbrooke.com/property/951-fabre/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="article" /><meta property="og:title" content="951 Fabre - Agence de location Sherbrooke" /><meta property="og:description" content="3 ½ à louer – Disponible maintenant 895 $/mois Possibilité d’avoir les 4 électroménagers sans frais supplémentaire Logement non-fumeur 1er plancher Rien d’inclus 1 espace de stationnement inclus Un chat accepté (chiens non permis) Enquête de crédit obligatoire" /><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/951-fabre/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-scaled.jpeg" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-scaled.jpeg" /><meta property="og:image:width" content="1920" /><meta property="og:image:height" content="2560" /><meta property="article:published_time" content="2026-07-10T21:14:05+00:00" /><meta property="article:modified_time" content="2026-08-03T19:50:42+00:00" /><meta property="article:publisher" content="https://www.facebook.com/agencedelocationsherbrooke" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="951 Fabre - Agence de location Sherbrooke" /><meta name="twitter:description" content="3 ½ à louer – Disponible maintenant 895 $/mois Possibilité d’avoir les 4 électroménagers sans frais supplémentaire Logement non-fumeur 1er plancher Rien d’inclus 1 espace de stationnement inclus Un chat accepté (chiens non permis) Enquête de crédit obligatoire" /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/951-fabre\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","position":2,"name":"Properties","item":"https:\/\/agencedelocationsherbrooke.com\/property\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/#listItem","name":"3\u00bd"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/#listItem","position":3,"name":"3\u00bd","item":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/951-fabre\/#listItem","name":"951 Fabre"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/951-fabre\/#listItem","position":4,"name":"951 Fabre","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/#listItem","name":"3\u00bd"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/951-fabre\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/951-fabre\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"Person","@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author","url":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/","name":"Catherine Perreault","image":{"@type":"ImageObject","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/951-fabre\/#authorImage","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/litespeed\/avatar\/fdca211e8cbd2f88b79d873de06d8fa9.jpg?ver=1785951645","width":96,"height":96,"caption":"Catherine Perreault"}},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/951-fabre\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/property\/951-fabre\/","name":"951 Fabre - Agence de location Sherbrooke","description":"3 \u00bd \u00e0 louer \u2013 Disponible maintenant 895 $\/mois Possibilit\u00e9 d\u2019avoir les 4 \u00e9lectrom\u00e9nagers sans frais suppl\u00e9mentaire Logement non-fumeur 1er plancher Rien d\u2019inclus 1 espace de stationnement inclus Un chat accept\u00e9 (chiens non permis) Enqu\u00eate de cr\u00e9dit obligatoire","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/951-fabre\/#breadcrumblist"},"author":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"creator":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165930.293-scaled.jpeg","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/951-fabre\/#mainImage","width":1920,"height":2560},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/951-fabre\/#mainImage"},"datePublished":"2026-07-10T21:14:05+00:00","dateModified":"2026-08-03T19:50:42+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//unpkg.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&#038;format=xml" /><meta property="og:title" content="951 Fabre"/><meta property="og:description" content="3 ½ à louer – Disponible maintenant
2 +895 $/mois 
3 +Possibilité d’avoir les 4 électroménagers sans frais supplémentaireLogement non-fumeur1er planc" /><meta property="og:type" content="article"/><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/951-fabre/"/><meta property="og:site_name" content="Agence de location Sherbrooke"/><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-scaled.jpeg"/><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
4 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}body{font-size:15px;font-family:Roboto,sans-serif}body{background-color:#f8f8f8}body{color:#222}body{line-height:25px;font-weight:300;text-transform:none}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}body{background-color:#f7f7f7}body{color:#222}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="f321a72594e2d0b51b28e062-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/ucss/eea72f6b21efb72033c18290725b8620.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="wp-block-library-inline-css">:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
5 +
6 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */</style><style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
7 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
8 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
9 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
10 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
11 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
12 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
13 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
14 + .container {
15 + max-width: 1210px;
16 + }
17 + }
18 + .label-color-87 {
19 + background-color: #31af00;
20 + }
21 +
22 + .status-color-28 {
23 + background-color: #dd9933;
24 + }
25 +
26 + .status-color-88 {
27 + background-color: #b7ba00;
28 + }
29 +
30 + .status-color-95 {
31 + background-color: #dd3333;
32 + }
33 +
34 + .status-color-94 {
35 + background-color: #1e73be;
36 + }
37 +
38 + .status-color-89 {
39 + background-color: #31af00;
40 + }
41 +
42 + body {
43 + font-family: Poppins;
44 + font-size: 16px;
45 + font-weight: 400;
46 + line-height: 24px;
47 + text-transform: none;
48 + }
49 + .main-nav,
50 + .dropdown-menu,
51 + .login-register,
52 + .btn.btn-create-listing,
53 + .logged-in-nav,
54 + .btn-phone-number {
55 + font-family: Poppins;
56 + font-size: 14px;
57 + font-weight: 400;
58 + text-align: left;
59 + text-transform: uppercase;
60 + }
61 +
62 + .btn,
63 + .form-control,
64 + .bootstrap-select .text,
65 + .sort-by-title,
66 + .woocommerce ul.products li.product .button {
67 + font-family: Poppins;
68 + font-size: 16px;
69 + }
70 +
71 + h1, h2, h3, h4, h5, h6, .item-title {
72 + font-family: Poppins;
73 + font-weight: 400;
74 + text-transform: capitalize;
75 + }
76 +
77 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
78 + font-weight: 400;
79 + text-transform: capitalize;
80 + text-align: inherit;
81 + }
82 +
83 + .top-bar-wrap {
84 + font-family: Poppins;
85 + font-size: 15px;
86 + font-weight: 300;
87 + line-height: 25px;
88 + text-align: left;
89 + text-transform: none;
90 + }
91 + .footer-wrap {
92 + font-family: Poppins;
93 + font-size: 14px;
94 + font-weight: 300;
95 + line-height: 25px;
96 + text-align: left;
97 + text-transform: none;
98 + }
99 +
100 + .header-v1 .header-inner-wrap,
101 + .header-v1 .navbar-logged-in-wrap {
102 + line-height: 60px;
103 + height: 60px;
104 + }
105 + .header-v2 .header-top .navbar {
106 + height: 110px;
107 + }
108 +
109 + .header-v2 .header-bottom .header-inner-wrap,
110 + .header-v2 .header-bottom .navbar-logged-in-wrap {
111 + line-height: 54px;
112 + height: 54px;
113 + }
114 +
115 + .header-v3 .header-top .header-inner-wrap,
116 + .header-v3 .header-top .header-contact-wrap {
117 + height: 80px;
118 + line-height: 80px;
119 + }
120 + .header-v3 .header-bottom .header-inner-wrap,
121 + .header-v3 .header-bottom .navbar-logged-in-wrap {
122 + line-height: 54px;
123 + height: 54px;
124 + }
125 + .header-v4 .header-inner-wrap,
126 + .header-v4 .navbar-logged-in-wrap {
127 + line-height: 90px;
128 + height: 90px;
129 + }
130 + .header-v5 .header-top .header-inner-wrap,
131 + .header-v5 .header-top .navbar-logged-in-wrap {
132 + line-height: 110px;
133 + height: 110px;
134 + }
135 + .header-v5 .header-bottom .header-inner-wrap {
136 + line-height: 54px;
137 + height: 54px;
138 + }
139 + .header-v6 .header-inner-wrap,
140 + .header-v6 .navbar-logged-in-wrap {
141 + height: 60px;
142 + line-height: 60px;
143 + }
144 + @media (min-width: 1200px) {
145 + .header-v5 .header-top .container {
146 + max-width: 1170px;
147 + }
148 + }
149 +
150 + body,
151 + .main-wrap,
152 + .fw-property-documents-wrap h3 span,
153 + .fw-property-details-wrap h3 span {
154 + background-color: #f7f7f7;
155 + }
156 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
157 + background-color: #ffffff;
158 + }
159 +
160 + body,
161 + .form-control,
162 + .bootstrap-select .text,
163 + .item-title a,
164 + .listing-tabs .nav-tabs .nav-link,
165 + .item-wrap-v2 .item-amenities li span,
166 + .item-wrap-v2 .item-amenities li:before,
167 + .item-parallax-wrap .item-price-wrap,
168 + .list-view .item-body .item-price-wrap,
169 + .property-slider-item .item-price-wrap,
170 + .page-title-wrap .item-price-wrap,
171 + .agent-information .agent-phone span a,
172 + .property-overview-wrap ul li strong,
173 + .mobile-property-title .item-price-wrap .item-price,
174 + .fw-property-features-left li a,
175 + .lightbox-content-wrap .item-price-wrap,
176 + .blog-post-item-v1 .blog-post-title h3 a,
177 + .blog-post-content-widget h4 a,
178 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
179 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
180 + .agent-list-wrap .agent-list-content h2 a,
181 + .agent-list-wrap .agent-list-contact li a,
182 + .agent-contacts-wrap li a,
183 + .menu-edit-property li a,
184 + .statistic-referrals-list li a,
185 + .chart-nav .nav-pills .nav-link,
186 + .dashboard-table-properties td .property-payment-status,
187 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
188 + .payment-method-block .radio-tab .control-text,
189 + .post-title-wrap h2 a,
190 + .lead-nav-tab.nav-pills .nav-link,
191 + .deals-nav-tab.nav-pills .nav-link,
192 + .btn-light-grey-outlined:hover,
193 + button:not(.bs-placeholder) .filter-option-inner-inner,
194 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
195 + .products > .product > .item-body > a,
196 + .woocommerce ul.products li.product .price,
197 + .woocommerce div.product p.price,
198 + .woocommerce div.product span.price,
199 + .woocommerce #reviews #comments ol.commentlist li .meta,
200 + .woocommerce-MyAccount-navigation ul li a,
201 + .activitiy-item-close-button a,
202 + .property-section-wrap li a {
203 + color: #222222;
204 + }
205 +
206 +
207 +
208 + a,
209 + a:hover,
210 + a:active,
211 + a:focus,
212 + .primary-text,
213 + .btn-clear,
214 + .btn-apply,
215 + .btn-primary-outlined,
216 + .btn-primary-outlined:before,
217 + .item-title a:hover,
218 + .sort-by .bootstrap-select .bs-placeholder,
219 + .sort-by .bootstrap-select > .btn,
220 + .sort-by .bootstrap-select > .btn:active,
221 + .page-link,
222 + .page-link:hover,
223 + .accordion-title:before,
224 + .blog-post-content-widget h4 a:hover,
225 + .agent-list-wrap .agent-list-content h2 a:hover,
226 + .agent-list-wrap .agent-list-contact li a:hover,
227 + .agent-contacts-wrap li a:hover,
228 + .agent-nav-wrap .nav-pills .nav-link,
229 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
230 + .menu-edit-property li a.active,
231 + .menu-edit-property li a:hover,
232 + .dashboard-statistic-block h3 .fa,
233 + .statistic-referrals-list li a:hover,
234 + .chart-nav .nav-pills .nav-link.active,
235 + .board-message-icon-wrap.active,
236 + .post-title-wrap h2 a:hover,
237 + .listing-switch-view .switch-btn.active,
238 + .item-wrap-v6 .item-price-wrap,
239 + .listing-v6 .list-view .item-body .item-price-wrap,
240 + .woocommerce nav.woocommerce-pagination ul li a,
241 + .woocommerce nav.woocommerce-pagination ul li span,
242 + .woocommerce-MyAccount-navigation ul li a:hover,
243 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
244 + .property-schedule-tour-form-wrap .control:hover,
245 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
246 + .login-register .btn-icon-login-register + .dropdown-menu a,
247 + .activitiy-item-close-button a:hover,
248 + .property-section-wrap li a:hover,
249 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
250 + color: #3385d9;
251 + }
252 +
253 + .agent-list-position a {
254 + color: #3385d9;
255 + }
256 +
257 + .control input:checked ~ .control__indicator,
258 + .top-banner-wrap .nav-pills .nav-link,
259 + .btn-primary-outlined:hover,
260 + .page-item.active .page-link,
261 + .slick-prev:hover,
262 + .slick-prev:focus,
263 + .slick-next:hover,
264 + .slick-next:focus,
265 + .mobile-property-tools .nav-pills .nav-link.active,
266 + .login-register-form .modal-header,
267 + .agent-nav-wrap .nav-pills .nav-link.active,
268 + .board-message-icon-wrap .notification-circle,
269 + .primary-label,
270 + .fc-event, .fc-event-dot,
271 + .compare-table .table-hover > tbody > tr:hover,
272 + .post-tag,
273 + .datepicker table tr td.active.active,
274 + .datepicker table tr td.active.disabled,
275 + .datepicker table tr td.active.disabled.active,
276 + .datepicker table tr td.active.disabled.disabled,
277 + .datepicker table tr td.active.disabled:active,
278 + .datepicker table tr td.active.disabled:hover,
279 + .datepicker table tr td.active.disabled:hover.active,
280 + .datepicker table tr td.active.disabled:hover.disabled,
281 + .datepicker table tr td.active.disabled:hover:active,
282 + .datepicker table tr td.active.disabled:hover:hover,
283 + .datepicker table tr td.active.disabled:hover[disabled],
284 + .datepicker table tr td.active.disabled[disabled],
285 + .datepicker table tr td.active:active,
286 + .datepicker table tr td.active:hover,
287 + .datepicker table tr td.active:hover.active,
288 + .datepicker table tr td.active:hover.disabled,
289 + .datepicker table tr td.active:hover:active,
290 + .datepicker table tr td.active:hover:hover,
291 + .datepicker table tr td.active:hover[disabled],
292 + .datepicker table tr td.active[disabled],
293 + .ui-slider-horizontal .ui-slider-range,
294 + .btn-bubble {
295 + background-color: #3385d9;
296 + }
297 +
298 + .control input:checked ~ .control__indicator,
299 + .btn-primary-outlined,
300 + .page-item.active .page-link,
301 + .mobile-property-tools .nav-pills .nav-link.active,
302 + .agent-nav-wrap .nav-pills .nav-link,
303 + .agent-nav-wrap .nav-pills .nav-link.active,
304 + .chart-nav .nav-pills .nav-link.active,
305 + .dashaboard-snake-nav .step-block.active,
306 + .fc-event,
307 + .fc-event-dot,
308 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
309 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
310 + border-color: #3385d9;
311 + }
312 +
313 + .slick-arrow:hover {
314 + background-color: rgba(43,111,180,1);
315 + }
316 +
317 + .slick-arrow {
318 + background-color: #3385d9;
319 + }
320 +
321 + .property-banner .nav-pills .nav-link.active {
322 + background-color: rgba(43,111,180,1) !important;
323 + }
324 +
325 + .property-navigation-wrap a.active {
326 + color: #3385d9;
327 + -webkit-box-shadow: inset 0 -3px #3385d9;
328 + box-shadow: inset 0 -3px #3385d9;
329 + }
330 +
331 + .btn-primary,
332 + .fc-button-primary,
333 + .woocommerce nav.woocommerce-pagination ul li a:focus,
334 + .woocommerce nav.woocommerce-pagination ul li a:hover,
335 + .woocommerce nav.woocommerce-pagination ul li span.current {
336 + color: #fff;
337 + background-color: #3385d9;
338 + border-color: #3385d9;
339 + }
340 + .btn-primary:focus, .btn-primary:focus:active,
341 + .fc-button-primary:focus,
342 + .fc-button-primary:focus:active {
343 + color: #fff;
344 + background-color: #3385d9;
345 + border-color: #3385d9;
346 + }
347 + .btn-primary:hover,
348 + .fc-button-primary:hover {
349 + color: #fff;
350 + background-color: #2b6fb4;
351 + border-color: #2b6fb4;
352 + }
353 + .btn-primary:active,
354 + .btn-primary:not(:disabled):not(:disabled):active,
355 + .fc-button-primary:active,
356 + .fc-button-primary:not(:disabled):not(:disabled):active {
357 + color: #fff;
358 + background-color: #2b6fb4;
359 + border-color: #2b6fb4;
360 + }
361 +
362 + .btn-secondary,
363 + .woocommerce span.onsale,
364 + .woocommerce ul.products li.product .button,
365 + .woocommerce #respond input#submit.alt,
366 + .woocommerce a.button.alt,
367 + .woocommerce button.button.alt,
368 + .woocommerce input.button.alt,
369 + .woocommerce #review_form #respond .form-submit input,
370 + .woocommerce #respond input#submit,
371 + .woocommerce a.button,
372 + .woocommerce button.button,
373 + .woocommerce input.button {
374 + color: #fff;
375 + background-color: #656565;
376 + border-color: #656565;
377 + }
378 + .woocommerce ul.products li.product .button:focus,
379 + .woocommerce ul.products li.product .button:active,
380 + .woocommerce #respond input#submit.alt:focus,
381 + .woocommerce a.button.alt:focus,
382 + .woocommerce button.button.alt:focus,
383 + .woocommerce input.button.alt:focus,
384 + .woocommerce #respond input#submit.alt:active,
385 + .woocommerce a.button.alt:active,
386 + .woocommerce button.button.alt:active,
387 + .woocommerce input.button.alt:active,
388 + .woocommerce #review_form #respond .form-submit input:focus,
389 + .woocommerce #review_form #respond .form-submit input:active,
390 + .woocommerce #respond input#submit:active,
391 + .woocommerce a.button:active,
392 + .woocommerce button.button:active,
393 + .woocommerce input.button:active,
394 + .woocommerce #respond input#submit:focus,
395 + .woocommerce a.button:focus,
396 + .woocommerce button.button:focus,
397 + .woocommerce input.button:focus {
398 + color: #fff;
399 + background-color: #656565;
400 + border-color: #656565;
401 + }
402 + .btn-secondary:hover,
403 + .woocommerce ul.products li.product .button:hover,
404 + .woocommerce #respond input#submit.alt:hover,
405 + .woocommerce a.button.alt:hover,
406 + .woocommerce button.button.alt:hover,
407 + .woocommerce input.button.alt:hover,
408 + .woocommerce #review_form #respond .form-submit input:hover,
409 + .woocommerce #respond input#submit:hover,
410 + .woocommerce a.button:hover,
411 + .woocommerce button.button:hover,
412 + .woocommerce input.button:hover {
413 + color: #fff;
414 + background-color: #333333;
415 + border-color: #333333;
416 + }
417 + .btn-secondary:active,
418 + .btn-secondary:not(:disabled):not(:disabled):active {
419 + color: #fff;
420 + background-color: #333333;
421 + border-color: #333333;
422 + }
423 +
424 + .btn-primary-outlined {
425 + color: #3385d9;
426 + background-color: transparent;
427 + border-color: #3385d9;
428 + }
429 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
430 + color: #3385d9;
431 + background-color: transparent;
432 + border-color: #3385d9;
433 + }
434 + .btn-primary-outlined:hover {
435 + color: #fff;
436 + background-color: #2b6fb4;
437 + border-color: #2b6fb4;
438 + }
439 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
440 + color: #3385d9;
441 + background-color: rgba(26, 26, 26, 0);
442 + border-color: #2b6fb4;
443 + }
444 +
445 + .btn-secondary-outlined {
446 + color: #656565;
447 + background-color: transparent;
448 + border-color: #656565;
449 + }
450 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
451 + color: #656565;
452 + background-color: transparent;
453 + border-color: #656565;
454 + }
455 + .btn-secondary-outlined:hover {
456 + color: #fff;
457 + background-color: #333333;
458 + border-color: #333333;
459 + }
460 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
461 + color: #656565;
462 + background-color: rgba(26, 26, 26, 0);
463 + border-color: #333333;
464 + }
465 +
466 + .btn-call {
467 + color: #656565;
468 + background-color: transparent;
469 + border-color: #656565;
470 + }
471 + .btn-call:focus, .btn-call:focus:active {
472 + color: #656565;
473 + background-color: transparent;
474 + border-color: #656565;
475 + }
476 + .btn-call:hover {
477 + color: #656565;
478 + background-color: rgba(26, 26, 26, 0);
479 + border-color: #333333;
480 + }
481 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
482 + color: #656565;
483 + background-color: rgba(26, 26, 26, 0);
484 + border-color: #333333;
485 + }
486 + .icon-delete .btn-loader:after{
487 + border-color: #3385d9 transparent #3385d9 transparent
488 + }
489 +
490 + .header-v1 {
491 + background-color: #004274;
492 + border-bottom: 1px solid #004274;
493 + }
494 +
495 + .header-v1 a.nav-link {
496 + color: #ffffff;
497 + }
498 +
499 + .header-v1 a.nav-link:hover,
500 + .header-v1 a.nav-link:active {
501 + color: #00aeff;
502 + background-color: rgba(255,255,255,0.2);
503 + }
504 + .header-desktop .main-nav .nav-link {
505 + letter-spacing: 0.0px;
506 + }
507 +
508 + .header-v2 .header-top,
509 + .header-v5 .header-top,
510 + .header-v2 .header-contact-wrap {
511 + background-color: #ffffff;
512 + }
513 +
514 + .header-v2 .header-bottom,
515 + .header-v5 .header-bottom {
516 + background-color: #004274;
517 + }
518 +
519 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
520 + color: #004274;
521 + }
522 +
523 + .header-v2 .header-contact-left {
524 + color: #004274;
525 + }
526 +
527 + .header-v2 .header-bottom,
528 + .header-v2 .navbar-nav > li,
529 + .header-v2 .navbar-nav > li:first-of-type,
530 + .header-v5 .header-bottom,
531 + .header-v5 .navbar-nav > li,
532 + .header-v5 .navbar-nav > li:first-of-type {
533 + border-color: rgba(255,255,255,0.2);
534 + }
535 +
536 + .header-v2 a.nav-link,
537 + .header-v5 a.nav-link {
538 + color: #ffffff;
539 + }
540 +
541 + .header-v2 a.nav-link:hover,
542 + .header-v2 a.nav-link:active,
543 + .header-v5 a.nav-link:hover,
544 + .header-v5 a.nav-link:active {
545 + color: #00aeff;
546 + background-color: rgba(255,255,255,0.2);
547 + }
548 +
549 + .header-v2 .header-contact-right a:hover,
550 + .header-v2 .header-contact-right a:active,
551 + .header-v3 .header-contact-right a:hover,
552 + .header-v3 .header-contact-right a:active {
553 + background-color: transparent;
554 + }
555 +
556 + .header-v2 .header-social-icons a,
557 + .header-v5 .header-social-icons a {
558 + color: #004274;
559 + }
560 +
561 + .header-v3 .header-top {
562 + background-color: #004274;
563 + }
564 +
565 + .header-v3 .header-bottom {
566 + background-color: #004272;
567 + }
568 +
569 + .header-v3 .header-contact,
570 + .header-v3-mobile {
571 + background-color: #00aeef;
572 + color: #ffffff;
573 + }
574 +
575 + .header-v3 .header-bottom,
576 + .header-v3 .login-register,
577 + .header-v3 .navbar-nav > li,
578 + .header-v3 .navbar-nav > li:first-of-type {
579 + border-color: ;
580 + }
581 +
582 + .header-v3 a.nav-link,
583 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
584 + color: #ffffff;
585 + }
586 +
587 + .header-v3 a.nav-link:hover,
588 + .header-v3 a.nav-link:active {
589 + color: #00aeff;
590 + background-color: rgba(255,255,255,0.2);
591 + }
592 +
593 + .header-v3 .header-social-icons a {
594 + color: #FFFFFF;
595 + }
596 +
597 + .header-v4 {
598 + background-color: #ffffff;
599 + }
600 +
601 + .header-v4 a.nav-link {
602 + color: #000000;
603 + }
604 +
605 + .header-v4 a.nav-link:hover,
606 + .header-v4 a.nav-link:active {
607 + color: #3385d9;
608 + background-color: rgba(255,255,255,0.2);
609 + }
610 +
611 + .header-v6 .header-top {
612 + background-color: #00AEEF;
613 + }
614 +
615 + .header-v6 a.nav-link {
616 + color: #FFFFFF;
617 + }
618 +
619 + .header-v6 a.nav-link:hover,
620 + .header-v6 a.nav-link:active {
621 + color: #00aeff;
622 + background-color: rgba(255,255,255,0.2);
623 + }
624 +
625 + .header-v6 .header-social-icons a {
626 + color: #FFFFFF;
627 + }
628 +
629 + .header-mobile {
630 + background-color: #ffffff;
631 + }
632 + .header-mobile .toggle-button-left,
633 + .header-mobile .toggle-button-right {
634 + color: #000000;
635 + }
636 +
637 + .nav-mobile .logged-in-nav a,
638 + .nav-mobile .main-nav,
639 + .nav-mobile .navi-login-register {
640 + background-color: #ffffff;
641 + }
642 +
643 + .nav-mobile .logged-in-nav a,
644 + .nav-mobile .main-nav .nav-item .nav-item a,
645 + .nav-mobile .main-nav .nav-item a,
646 + .navi-login-register .main-nav .nav-item a {
647 + color: #000000;
648 + border-bottom: 1px solid #ffffff;
649 + background-color: #ffffff;
650 + }
651 +
652 + .nav-mobile .btn-create-listing,
653 + .navi-login-register .btn-create-listing {
654 + color: #fff;
655 + border: 1px solid #3385d9;
656 + background-color: #3385d9;
657 + }
658 +
659 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
660 + .navi-login-register .btn-create-listing:hover,
661 + .navi-login-register .btn-create-listing:active {
662 + color: #fff;
663 + border: 1px solid #3385d9;
664 + background-color: rgba(0, 174, 255, 0.65);
665 + }
666 +
667 + .header-transparent-wrap .header-v4 {
668 + background-color: transparent;
669 + border-bottom: 1px none rgba(255,255,255,0.3);
670 + }
671 +
672 + .header-transparent-wrap .header-v4 a {
673 + color: #ffffff;
674 + }
675 +
676 + .header-transparent-wrap .header-v4 a:hover,
677 + .header-transparent-wrap .header-v4 a:active {
678 + color: #3385d9;
679 + background-color: rgba(255, 255, 255, 0.1);
680 + }
681 +
682 + .main-nav .navbar-nav .nav-item .dropdown-menu,
683 + .login-register .login-register-nav li .dropdown-menu {
684 + background-color: rgba(255,255,255,0.95);
685 + }
686 +
687 + .login-register .login-register-nav li .dropdown-menu:before {
688 + border-left-color: rgba(255,255,255,0.95);
689 + border-top-color: rgba(255,255,255,0.95);
690 + }
691 +
692 + .main-nav .navbar-nav .nav-item .nav-item a,
693 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
694 + color: #3385d9;
695 + border-bottom: 1px solid #e6e6e6;
696 + }
697 +
698 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
699 + .main-nav .navbar-nav .nav-item .nav-item a:active,
700 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
701 + color: #2b6fb4;
702 + }
703 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
704 + .main-nav .navbar-nav .nav-item .nav-item a:active,
705 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
706 + background-color: rgba(0, 174, 255, 0.1);
707 + }
708 +
709 + .header-main-wrap .btn-create-listing {
710 + color: #3385d9;
711 + border: 1px solid #3385d9;
712 + background-color: #ffffff;
713 + }
714 +
715 + .header-main-wrap .btn-create-listing:hover,
716 + .header-main-wrap .btn-create-listing:active {
717 + color: rgba(255,255,255,1);
718 + border: 1px solid #2b6fb4;
719 + background-color: rgba(43,111,180,1);
720 + }
721 +
722 + .header-transparent-wrap .header-v4 .btn-create-listing {
723 + color: #ffffff;
724 + border: 1px solid #ffffff;
725 + background-color: rgba(255,255,255,0.2);
726 + }
727 +
728 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
729 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
730 + color: rgba(255,255,255,1);
731 + border: 1px solid #3385d9;
732 + background-color: rgba(51,133,217,1);
733 + }
734 +
735 + .header-transparent-wrap .logged-in-nav a,
736 + .logged-in-nav a {
737 + color: #000000;
738 + border-color: #e6e6e6;
739 + background-color: #FFFFFF;
740 + }
741 +
742 + .header-transparent-wrap .logged-in-nav a:hover,
743 + .header-transparent-wrap .logged-in-nav a:active,
744 + .logged-in-nav a:hover,
745 + .logged-in-nav a:active {
746 + color: #000000;
747 + background-color: rgba(204,204,204,0.15);
748 + border-color: #e6e6e6;
749 + }
750 +
751 + .form-control::-webkit-input-placeholder,
752 + .search-banner-wrap ::-webkit-input-placeholder,
753 + .advanced-search ::-webkit-input-placeholder,
754 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
755 + .overlay-search-advanced-module ::-webkit-input-placeholder {
756 + color: #a1a7a8;
757 + }
758 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
759 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
760 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
761 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
762 + color: #a1a7a8;
763 + }
764 + .form-control::placeholder,
765 + .search-banner-wrap ::-webkit-input-placeholder,
766 + .advanced-search ::-webkit-input-placeholder,
767 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
768 + .overlay-search-advanced-module ::-webkit-input-placeholder {
769 + color: #a1a7a8;
770 + }
771 +
772 + .search-banner-wrap ::-moz-placeholder,
773 + .advanced-search ::-moz-placeholder,
774 + .advanced-search-banner-wrap ::-moz-placeholder,
775 + .overlay-search-advanced-module ::-moz-placeholder {
776 + color: #a1a7a8;
777 + }
778 +
779 + .search-banner-wrap :-ms-input-placeholder,
780 + .advanced-search :-ms-input-placeholder,
781 + .advanced-search-banner-wrap ::-ms-input-placeholder,
782 + .overlay-search-advanced-module ::-ms-input-placeholder {
783 + color: #a1a7a8;
784 + }
785 +
786 + .search-banner-wrap :-moz-placeholder,
787 + .advanced-search :-moz-placeholder,
788 + .advanced-search-banner-wrap :-moz-placeholder,
789 + .overlay-search-advanced-module :-moz-placeholder {
790 + color: #a1a7a8;
791 + }
792 +
793 + .advanced-search .form-control,
794 + .advanced-search .bootstrap-select > .btn,
795 + .location-trigger,
796 + .vertical-search-wrap .form-control,
797 + .vertical-search-wrap .bootstrap-select > .btn,
798 + .step-search-wrap .form-control,
799 + .step-search-wrap .bootstrap-select > .btn,
800 + .advanced-search-banner-wrap .form-control,
801 + .advanced-search-banner-wrap .bootstrap-select > .btn,
802 + .search-banner-wrap .form-control,
803 + .search-banner-wrap .bootstrap-select > .btn,
804 + .overlay-search-advanced-module .form-control,
805 + .overlay-search-advanced-module .bootstrap-select > .btn,
806 + .advanced-search-v2 .advanced-search-btn,
807 + .advanced-search-v2 .advanced-search-btn:hover {
808 + border-color: #cccccc;
809 + }
810 +
811 + .advanced-search-nav,
812 + .search-expandable,
813 + .overlay-search-advanced-module {
814 + background-color: #FFFFFF;
815 + }
816 + .btn-search {
817 + color: #ffffff;
818 + background-color: #3385d9;
819 + border-color: #3385d9;
820 + }
821 + .btn-search:hover, .btn-search:active {
822 + color: #ffffff;
823 + background-color: #2b6fb4;
824 + border-color: #2b6fb4;
825 + }
826 + .advanced-search-btn {
827 + color: #666666;
828 + background-color: #ffffff;
829 + border-color: #dce0e0;
830 + }
831 + .advanced-search-btn:hover, .advanced-search-btn:active {
832 + color: #000000;
833 + background-color: #ffffff;
834 + border-color: #dce0e0;
835 + }
836 + .advanced-search-btn:focus {
837 + color: #666666;
838 + background-color: #ffffff;
839 + border-color: #dce0e0;
840 + }
841 + .search-expandable-label {
842 + color: #ffffff;
843 + background-color: #ff6e00;
844 + }
845 + .advanced-search-nav {
846 + padding-top: 10px;
847 + padding-bottom: 10px;
848 + }
849 + .features-list-wrap .control--checkbox,
850 + .features-list-wrap .control--radio,
851 + .range-text,
852 + .features-list-wrap .control--checkbox,
853 + .features-list-wrap .btn-features-list,
854 + .overlay-search-advanced-module .search-title,
855 + .overlay-search-advanced-module .overlay-search-module-close {
856 + color: #222222;
857 + }
858 + .advanced-search-half-map {
859 + background-color: #FFFFFF;
860 + }
861 + .advanced-search-half-map .range-text,
862 + .advanced-search-half-map .features-list-wrap .control--checkbox,
863 + .advanced-search-half-map .features-list-wrap .btn-features-list {
864 + color: #222222;
865 + }
866 +
867 + .save-search-btn {
868 + border-color: #28a745 ;
869 + background-color: #28a745 ;
870 + color: #ffffff ;
871 + }
872 + .save-search-btn:hover,
873 + .save-search-btn:active {
874 + border-color: #28a745;
875 + background-color: #28a745 ;
876 + color: #ffffff ;
877 + }
878 + .label-featured {
879 + background-color: #e22424;
880 + color: #ffffff;
881 + }
882 +
883 + .dashboard-side-wrap {
884 + background-color: #00365e;
885 + }
886 +
887 + .side-menu a {
888 + color: #ffffff;
889 + }
890 +
891 + .side-menu a.active,
892 + .side-menu .side-menu-parent-selected > a,
893 + .side-menu-dropdown a,
894 + .side-menu a:hover {
895 + color: #3385d9;
896 + }
897 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
898 + color: #2b6fb4
899 + }
900 +
901 + .detail-wrap {
902 + background-color: rgba(119,199,32,0.1);
903 + border-color: #3385d9;
904 + }
905 + .top-bar-wrap,
906 + .top-bar-wrap .dropdown-menu,
907 + .switcher-wrap .dropdown-menu {
908 + background-color: #000000;
909 + }
910 + .top-bar-wrap a,
911 + .top-bar-contact,
912 + .top-bar-slogan,
913 + .top-bar-wrap .btn,
914 + .top-bar-wrap .dropdown-menu,
915 + .switcher-wrap .dropdown-menu,
916 + .top-bar-wrap .navbar-toggler {
917 + color: #ffffff;
918 + }
919 + .top-bar-wrap a:hover,
920 + .top-bar-wrap a:active,
921 + .top-bar-wrap .btn:hover,
922 + .top-bar-wrap .btn:active,
923 + .top-bar-wrap .dropdown-menu li:hover,
924 + .top-bar-wrap .dropdown-menu li:active,
925 + .switcher-wrap .dropdown-menu li:hover,
926 + .switcher-wrap .dropdown-menu li:active {
927 + color: rgba(43,111,180,1);
928 + }
929 + .class-energy-indicator:nth-child(1) {
930 + background-color: #33a357;
931 + }
932 + .class-energy-indicator:nth-child(2) {
933 + background-color: #79b752;
934 + }
935 + .class-energy-indicator:nth-child(3) {
936 + background-color: #c3d545;
937 + }
938 + .class-energy-indicator:nth-child(4) {
939 + background-color: #fff12c;
940 + }
941 + .class-energy-indicator:nth-child(5) {
942 + background-color: #edb731;
943 + }
944 + .class-energy-indicator:nth-child(6) {
945 + background-color: #d66f2c;
946 + }
947 + .class-energy-indicator:nth-child(7) {
948 + background-color: #cc232a;
949 + }
950 + .class-energy-indicator:nth-child(8) {
951 + background-color: #cc232a;
952 + }
953 + .class-energy-indicator:nth-child(9) {
954 + background-color: #cc232a;
955 + }
956 + .class-energy-indicator:nth-child(10) {
957 + background-color: #cc232a;
958 + }
959 +
960 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
961 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
962 +
963 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
964 +
965 + .footer-top-wrap {
966 + background-color: #000000;
967 + }
968 +
969 + .footer-bottom-wrap {
970 + background-color: #000000;
971 + }
972 +
973 + .footer-top-wrap,
974 + .footer-top-wrap a,
975 + .footer-bottom-wrap,
976 + .footer-bottom-wrap a,
977 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
978 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
979 + .footer-top-wrap .blog-post-content-widget h4 a,
980 + .footer-top-wrap .blog-post-content-widget,
981 + .footer-top-wrap .form-tools .control,
982 + .footer-top-wrap .slick-dots li.slick-active button:before,
983 + .footer-top-wrap .slick-dots li button::before,
984 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
985 + color: #ffffff;
986 + }
987 +
988 + .footer-top-wrap a:hover,
989 + .footer-bottom-wrap a:hover,
990 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
991 + color: rgba(43,111,180,1);
992 + }
993 + .houzez-osm-cluster {
994 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
995 + text-align: center;
996 + color: #fff;
997 + width: 48px;
998 + height: 48px;
999 + line-height: 48px;
1000 + }
1001 + .text-success{color:red!important;}
1002 +
1003 +/*.mobile-property-contact{bottom:40px;}*/
1004 +
1005 +/* Button retour en haut*/
1006 +/*
1007 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1008 +.mobile-property-contact .btn{margin-right: 60px;}
1009 +*/
1010 +
1011 +.item-tool.houzez-share{display:none;}
1012 +
1013 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1014 +
1015 +.grecaptcha-badge{display:none!important;}
1016 +
1017 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1018 +
1019 +
1020 +@media only screen and (max-width: 768px) {
1021 + /* For mobile phones: */
1022 +
1023 + /* Button retour en haut*/
1024 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1025 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1026 +}
1027 +/*# sourceURL=houzez-style-inline-css */</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="f321a72594e2d0b51b28e062-|49"></script><link data-asynced="1" as="style" onload="this.onload=null;this.rel='stylesheet'" rel='preload' id='leaflet-css' href='https://unpkg.com/leaflet@1.7.1/dist/leaflet.css' media='all' /><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1028 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1029 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/properties/10485" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/?p=10485' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/property/951-fabre/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/property/951-fabre/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1030 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1031 + background-image: none !important;
1032 + }
1033 + @media screen and (max-height: 1024px) {
1034 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1035 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1036 + background-image: none !important;
1037 + }
1038 + }
1039 + @media screen and (max-height: 640px) {
1040 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1041 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1042 + background-image: none !important;
1043 + }
1044 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1045 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1046 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1047 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1048 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="wp-singular property-template-default single single-property postid-10485 wp-custom-logo wp-theme-houzez translatepress-fr_CA transparent- houzez-header- elementor-default elementor-kit-6"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1049 +<a href="https://agencedelocationsherbrooke.com/">
1050 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1051 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1052 +<button class="btn toggle-button-left">
1053 +<i class="houzez-icon icon-navigation-menu"></i>
1054 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1055 +<a href="https://agencedelocationsherbrooke.com/">
1056 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1057 +</a></div></div><div class="header-mobile-right"></div></div></header><section class="content-wrap property-wrap property-detail-v6 "><div class="property-navigation-wrap"><div class="container-fluid"><ul class="property-navigation list-unstyled d-flex justify-content-between"><li class="property-navigation-item">
1058 +<a class="back-top" href="#main-wrap">
1059 +<i class="houzez-icon icon-arrow-button-circle-up"></i>
1060 +</a></li><li class="property-navigation-item">
1061 +<a class="target" href="#property-features-wrap">Inclusions</a></li><li class="property-navigation-item">
1062 +<a class="target" href="#property-description-wrap">Description</a></li><li class="property-navigation-item">
1063 +<a class="target" href="#property-address-wrap">Addresse</a></li><li class="property-navigation-item">
1064 +<a class="target" href="#property-detail-wrap">Détails</a></li><li class="property-navigation-item">
1065 +<a class="target" href="#property-video-wrap">Vidéo</a></li><li class="property-navigation-item">
1066 +<a class="target" href="#property-walkscore-wrap">Walkscore</a></li><li class="property-navigation-item">
1067 +<a class="target" href="#similar-listings-wrap">Annonces similaires</a></li></ul></div></div><div class="page-title-wrap"><div class="container"><div class="d-flex align-items-center"><div class="breadcrumb-wrap"><nav><ol class="breadcrumb"><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/"><span>Accueil</span></a></li><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/"> <span>3½</span></a></li><li class="breadcrumb-item active">951 Fabre</li></ol></nav></div><ul class="item-tools"><li class="item-tool houzez-favorite">
1068 +<span class="add-favorite-js item-tool-favorite" data-listid="10485">
1069 +<i class="houzez-icon icon-love-it "></i>
1070 +</span></li><li class="item-tool houzez-share">
1071 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1072 +<i class="houzez-icon icon-share"></i>
1073 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1074 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=951+Fabre&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F">
1075 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&amp;t=951+Fabre" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f321a72594e2d0b51b28e062-="">
1076 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1077 +</a>
1078 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=951+Fabre&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-f321a72594e2d0b51b28e062-="">
1079 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1080 +</a>
1081 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f321a72594e2d0b51b28e062-="">
1082 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1083 +</a>
1084 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&title=951+Fabre&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f321a72594e2d0b51b28e062-="">
1085 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1086 +</a>
1087 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#c2b1adafa7adaca782a7baa3afb2aea7eca1adaffd91b7a0a8a7a1b6fffbf7f3e284a3a0b0a7e4a0ada6bbffaab6b6b2b1e7f183e7f084e7f084a3a5a7aca1a7a6a7aeada1a3b6abadacb1aaa7b0a0b0adada9a7eca1adafe7f084b2b0adb2a7b0b6bbe7f084fbf7f3efa4a3a0b0a7e7f084">
1088 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1089 +</a></div></li><li class="item-tool houzez-print " data-propid="10485">
1090 +<span class="item-tool-compare">
1091 +<i class="houzez-icon icon-print-text"></i>
1092 +</span></li></ul></div><div class="d-flex align-items-center property-title-price-wrap"><div class="page-title"><h1>951 Fabre</h1></div><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul></div><div class="property-labels-wrap">
1093 +<span class="label-featured label">Vedette</span><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1094 +Mont Bellevue
1095 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1096 +Libre maintenant
1097 +</a></div>
1098 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>951, Rue Fabre, Les Nations, Sherbrooke, Estrie, Québec, J1H 4R6, Canada</address></div></div><div class="property-top-wrap"><div class="property-banner"><div class="visible-on-mobile"><div class="tab-content" id="pills-tabContent"><div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-scaled.jpeg);"><div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 6</div><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1099 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1100 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1101 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [951 Fabre]</textarea></div>
1102 +<input type="hidden" name="target_email" value="&#99;&#97;th&#101;&#114;&#105;&#110;e.&#112;errea&#117;lt&#64;pres&#116;&#105;p&#108;e&#120;.c&#111;&#109;">
1103 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1104 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/951-fabre/"/>
1105 +<input type="hidden" name="property_title" value="951 Fabre"/>
1106 +<input type="hidden" name="property_id" value="ADLS-10485"/>
1107 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1108 +<input type="hidden" name="listing_id" value="10485">
1109 +<input type="hidden" name="is_listing_form" value="yes">
1110 +<input type="hidden" name="agent_id" value="156">
1111 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1112 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1113 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1114 +</button></form></div></div><a class="houzez-photoswipe-trigger property-banner-trigger" href="#"></a></div><div class="tab-pane houzez-top-area-video " id="pills-video" role="tabpanel" aria-labelledby="pills-video-tab">
1115 +<iframe data-lazyloaded="1" src="about:blank" title="951 Fabre, Sherbrooke, Quebec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/b6ORe_82s8I?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div><div class="container hidden-on-mobile"><div class="row"><div class="col-md-8">
1116 +<a href="#" data-slider-no="1" data-image="0" class="houzez-photoswipe-trigger img-wrap-1" >
1117 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-758x564.jpeg" alt="" width="758" height="564" />
1118 +</a></div><div class="col-md-4">
1119 +<a href="#" data-slider-no="2" data-image="1" class="houzez-photoswipe-trigger swipebox img-wrap-2">
1120 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165928.922-758x564.jpeg" alt="" width="758" height="564" />
1121 +</a>
1122 +<a href="#" data-slider-no="3" data-image="2" class="houzez-photoswipe-trigger swipebox img-wrap-3"><div class="img-wrap-3-text">3 Plus</div>
1123 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165926.097-758x564.jpeg" alt="" width="758" height="564" />
1124 +</a></div>
1125 +<a href="#" class="img-wrap-1 gallery-hidden">
1126 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165924.591-758x564.jpeg" alt="" width="758" height="564" />
1127 +</a>
1128 +<a href="#" class="img-wrap-1 gallery-hidden">
1129 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165923.134-758x564.jpeg" alt="" width="758" height="564" />
1130 +</a>
1131 +<a href="#" class="img-wrap-1 gallery-hidden">
1132 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165921.885-758x564.jpeg" alt="" width="758" height="564" />
1133 +</a><div class="col-md-12"><div class="block-wrap"><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>3½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-beds">Chambre</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div></div></div><div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"><div class="pswp__bg"></div><div class="pswp__scroll-wrap"><div class="pswp__container"><div class="pswp__item"></div><div class="pswp__item"></div><div class="pswp__item"></div></div><div class="pswp__ui pswp__ui--hidden"><div class="pswp__top-bar"><div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button><button class="pswp__button pswp__button--share" title="Share"></button><button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button><button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button><div class="pswp__preloader"><div class="pswp__preloader__icn"><div class="pswp__preloader__cut"><div class="pswp__preloader__donut"></div></div></div></div></div><div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"><div class="pswp__share-tooltip"></div></div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
1134 +</button><button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
1135 +</button><div class="pswp__caption"><div class="pswp__caption__center"></div></div></div></div></div> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">initPhotoswipeDomForJson({"1":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165930.293-scaled.jpeg","w":1920,"h":2560},"2":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165928.922-scaled.jpeg","w":1920,"h":2560},"3":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165926.097-scaled.jpeg","w":1920,"h":2560},"4":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165924.591-scaled.jpeg","w":1920,"h":2560},"5":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165923.134-scaled.jpeg","w":1920,"h":2560},"6":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165921.885-scaled.jpeg","w":1920,"h":2560}});function initPhotoswipeDomForJson(imageData){var pswpElement=document.querySelectorAll('.pswp')[0];var items=[],item;jQuery.each(imageData,function(i,obj){item={src:obj.src,w:obj.w,h:obj.h};items.push(item)});var options={index:0};var x=document.querySelectorAll(".houzez-photoswipe-trigger");for(let i=0;i<x.length;i++){x[i].addEventListener("click",function(){openGallery(x[i].dataset.image)})}
1136 +function openGallery(j){options.index=parseInt(j);options.history=!1;gallery=new PhotoSwipe(pswpElement,PhotoSwipeUI_Default,items,options);gallery.init()}}</script> </div><div class="container"><div class="row"><div class="col-lg-12 col-md-12 bt-full-width-content-wrap"><div class="property-view"><div class="visible-on-mobile"><div class="mobile-top-wrap"><div class="mobile-property-tools clearfix"><ul class="nav nav-pills houzez-media-tabs-4" id="pills-tab" role="tablist"><li class="nav-item">
1137 +<a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1138 +<i class="houzez-icon icon-picture-sun"></i>
1139 +</a></li><li class="nav-item">
1140 +<a class="nav-link " id="pills-video-tab" data-toggle="pill" href="#pills-video" role="tab" aria-controls="pills-video" aria-selected="true">
1141 +<i class="houzez-icon icon-video-player-movie-1"></i>
1142 +</a></li></ul><ul class="item-tools"><li class="item-tool houzez-favorite">
1143 +<span class="add-favorite-js item-tool-favorite" data-listid="10485">
1144 +<i class="houzez-icon icon-love-it "></i>
1145 +</span></li><li class="item-tool houzez-share">
1146 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1147 +<i class="houzez-icon icon-share"></i>
1148 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1149 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=951+Fabre&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F">
1150 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&amp;t=951+Fabre" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f321a72594e2d0b51b28e062-="">
1151 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1152 +</a>
1153 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=951+Fabre&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-f321a72594e2d0b51b28e062-="">
1154 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1155 +</a>
1156 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f321a72594e2d0b51b28e062-="">
1157 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1158 +</a>
1159 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&title=951+Fabre&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f321a72594e2d0b51b28e062-="">
1160 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1161 +</a>
1162 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#25564a48404a4b4065405d44485549400b464a481a7650474f404651181c101405634447574003474a415c184d515155560016640017630017634442404b46404140494a4644514c4a4b564d405747574a4a4e400b464a4800176355574a554057515c0017631c1014084344475740001763">
1163 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1164 +</a></div></li><li class="item-tool houzez-print " data-propid="10485">
1165 +<span class="item-tool-compare">
1166 +<i class="houzez-icon icon-print-text"></i>
1167 +</span></li></ul></div><div class="mobile-property-title clearfix">
1168 +<span class="label-featured label">Vedette</span> <span class="labels-wrap labels-right">
1169 +<a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1170 +Mont Bellevue
1171 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1172 +Libre maintenant
1173 +</a>
1174 +</span>
1175 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>951, Rue Fabre, Les Nations, Sherbrooke, Estrie, Québec, J1H 4R6, Canada</address><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul></div></div><div class="property-overview-wrap property-section-wrap" id="property-overview-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Apperçu</h2><div><strong># Annonce:</strong> ADLS-10485</div></div><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>3½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-beds">Chambre</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div><div class="property-features-wrap property-section-wrap" id="property-features-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Inclusions</h2></div><div class="block-content-wrap"><ul class="list-3-cols list-unstyled"><li><i class="fas fa-cat mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/chat-permis/">Chat permis</a></li><li><i class="fas fa-snowplow mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/deneigement/">Déneigement</a></li><li><i class="houzez-icon icon-check-circle-1 mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/entre-laveuse-secheuse/">Entré laveuse/sécheuse</a></li></ul></div></div></div><div class="property-description-wrap property-section-wrap" id="property-description-wrap"><div class="block-wrap"><div class="block-title-wrap"><h2>Description</h2></div><div class="block-content-wrap"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true" data-pm-slice="1 3 []"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">3 ½ à louer – Disponible maintenant</strong></p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">895 $/mois </strong></p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Possibilité d’avoir les 4 électroménagers sans frais supplémentaire</p><ul class="ak-ul" data-prosemirror-content-type="node" data-prosemirror-node-name="bulletList" data-prosemirror-node-block="true"><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Logement non-fumeur</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">1er plancher</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Rien d’inclus</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">1 espace de stationnement inclus</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Un chat accepté (chiens non permis)</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Enquête de crédit obligatoire</p></li></ul></div></div></div><div class="property-address-wrap property-section-wrap" id="property-address-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Addresse</h2><a class="btn btn-primary btn-slim" href="https://maps.google.com/?q=951,%20Rue%20Fabre,%20Les%20Nations,%20Sherbrooke,%20Estrie,%20Québec,%20J1H%204R6,%20Canada" target="_blank"><i class="houzez-icon icon-maps mr-1"></i> Ouvrir sur Google Maps</a></div><div class="block-content-wrap"><ul class="list-2-cols list-unstyled"><li class="detail-address"><strong>Addresse</strong> <span>951, Rue Fabre, Les Nations, Sherbrooke, Estrie, Québec, J1H 4R6, Canada</span></li><li class="detail-zip"><strong>Zip / Code postal</strong> <span>J1H 4R6</span></li></ul></div><div id="houzez-single-listing-map" class="block-map-wrap"></div></div></div><div class="property-detail-wrap property-section-wrap" id="property-detail-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Détails</h2>
1176 +<span class="small-text grey"><i class="houzez-icon icon-calendar-3 mr-1"></i> Mise à jour le août 3, 2026 à 7:50 pm</span></div><div class="block-content-wrap"><div class="detail-wrap"><ul class="list-2-cols list-unstyled"><li>
1177 +<strong># Annonce:</strong>
1178 +<span>ADLS-10485</span></li><li>
1179 +<strong>Prix:</strong>
1180 +<span> 895$/mensuel</span></li><li>
1181 +<strong>Chambre:</strong>
1182 +<span>1</span></li><li>
1183 +<strong>Pièces:</strong>
1184 +<span>3</span></li><li>
1185 +<strong>Salle de bain:</strong>
1186 +<span>1</span></li><li>
1187 +<strong>Stationnement:</strong>
1188 +<span>1</span></li><li class="prop_type">
1189 +<strong>Type:</strong>
1190 +<span>3½</span></li><li class="prop_status">
1191 +<strong>Statut:</strong>
1192 +<span>Mont Bellevue</span></li></ul></div></div></div></div><div class="property-video-wrap property-section-wrap" id="property-video-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Vidéo</h2></div><div class="block-content-wrap"><div class="block-video-wrap">
1193 +<iframe data-lazyloaded="1" src="about:blank" title="951 Fabre, Sherbrooke, Quebec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/b6ORe_82s8I?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div></div><div class="property-walkscore-wrap property-section-wrap" id="property-walkscore-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Walkscore</h2></div><div class="block-content-wrap"><div id="ws-walkscore-tile"></div></div></div></div><div class="property-contact-agent-wrap property-section-wrap" id="property-contact-agent-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Coordonnées</h2><a class="btn btn-primary btn-slim" href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/" target="_blank">Voir les annonces</a></div><div class="block-content-wrap"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="80" height="80"></a></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-phone-wrap clearfix"></li></ul></div></div><div class="block-title-wrap"><h3>Renseignez-vous sur cette propriété</h3></div><div class="form_messages"></div><div class="row"><div class="col-md-6 col-sm-12"><div class="form-group">
1194 +<label>Nom</label>
1195 +<input class="form-control" name="name" placeholder="Entrez votre nom" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1196 +<label>Téléphone</label>
1197 +<input class="form-control" name="mobile" placeholder="Entrez votre numéro de téléphone" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1198 +<label>Courriel</label>
1199 +<input class="form-control" name="email" placeholder="Entrer votre courriel" type="email"></div></div><div class="col-sm-12 col-xs-12"><div class="form-group form-group-textarea">
1200 +<label>Message</label><textarea class="form-control hz-form-message" name="message" rows="5" placeholder="Entrez votre message">Bonjour, je suis intéressé par [951 Fabre]</textarea></div></div><div class="col-sm-12 col-xs-12">
1201 +<input type="hidden" name="target_email" value="&#99;athe&#114;&#105;&#110;e&#46;&#112;e&#114;r&#101;au&#108;t&#64;pr&#101;&#115;t&#105;&#112;lex.com">
1202 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1203 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/951-fabre/"/>
1204 +<input type="hidden" name="property_title" value="951 Fabre"/>
1205 +<input type="hidden" name="property_id" value="ADLS-10485"/>
1206 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1207 +<input type="hidden" class="is_bottom" value="bottom">
1208 +<input type="hidden" name="listing_id" value="10485">
1209 +<input type="hidden" name="is_listing_form" value="yes">
1210 +<input type="hidden" name="agent_id" value="156">
1211 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><button class="houzez_agent_property_form btn btn-secondary btn-sm-full-width">
1212 +<span class="btn-loader houzez-loader-js"></span> Demande d'informations
1213 +</button></div></div></form></div></div></div><div id="similar-listings-wrap" class="similar-property-wrap listing-v1"><div class="block-title-wrap"><h2>Annonces similaires</h2></div><div class="listing-view list-view card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10466" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224027.371-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224027.371-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224028.416-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224026.249-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224031.334-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224025.351-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224032.728-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1214 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1215 +Mont Bellevue
1216 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1217 +Libre maintenant
1218 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1219 +<span class="hz-show-lightbox-js" data-listid="10466" data-toggle="tooltip" data-placement="top" title="Aperçu">
1220 +<i class="houzez-icon icon-expand-3"></i>
1221 +</span></li><li class="item-tool item-favorite">
1222 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10466">
1223 +<i class="houzez-icon icon-love-it "></i>
1224 +</span></li><li class="item-tool item-compare">
1225 +<span class="houzez_compare compare-10466 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10466" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-592x444.jpeg">
1226 +<i class="houzez-icon icon-add-circle"></i>
1227 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1228 +<a href="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/" class="listing-featured-thumb hover-effect">
1229 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1230 +Mont Bellevue
1231 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1232 +Libre maintenant
1233 +</a></div><h2 class="item-title">
1234 +<a href="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/">1625 Grands-Monts #4</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul> <address class="item-address">1625, Rue des Grands-Monts, Ascot, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3Y9, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lit:</span> <span class="hz-figure">1</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>3½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/">
1235 +Détails</a><div class="item-author">
1236 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1237 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1238 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1239 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10458" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223210.052-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223210.052-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223207.657-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223206.033-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223205.083-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223203.875-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1240 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1241 +Mont Bellevue
1242 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1243 +Libre maintenant
1244 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1245 +<span class="hz-show-lightbox-js" data-listid="10458" data-toggle="tooltip" data-placement="top" title="Aperçu">
1246 +<i class="houzez-icon icon-expand-3"></i>
1247 +</span></li><li class="item-tool item-favorite">
1248 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10458">
1249 +<i class="houzez-icon icon-love-it "></i>
1250 +</span></li><li class="item-tool item-compare">
1251 +<span class="houzez_compare compare-10458 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10458" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-592x444.jpeg">
1252 +<i class="houzez-icon icon-add-circle"></i>
1253 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1254 +<a href="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/" class="listing-featured-thumb hover-effect">
1255 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1256 +Mont Bellevue
1257 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1258 +Libre maintenant
1259 +</a></div><h2 class="item-title">
1260 +<a href="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/">1351 Lalemant #5</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul> <address class="item-address">1351, Rue Lalemant, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 2A9, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lit:</span> <span class="hz-figure">1</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>3½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/">
1261 +Détails</a><div class="item-author">
1262 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1263 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1264 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1265 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10451" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172902.091-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172902.091-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172900.846-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172859.886-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172858.813-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172855.820-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172852.674-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172854.696-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172853.719-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1266 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1267 +Mont Bellevue
1268 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1269 +Libre maintenant
1270 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">795$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1271 +<span class="hz-show-lightbox-js" data-listid="10451" data-toggle="tooltip" data-placement="top" title="Aperçu">
1272 +<i class="houzez-icon icon-expand-3"></i>
1273 +</span></li><li class="item-tool item-favorite">
1274 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10451">
1275 +<i class="houzez-icon icon-love-it "></i>
1276 +</span></li><li class="item-tool item-compare">
1277 +<span class="houzez_compare compare-10451 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10451" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg">
1278 +<i class="houzez-icon icon-add-circle"></i>
1279 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1280 +<a href="https://agencedelocationsherbrooke.com/property/905-courcelette/" class="listing-featured-thumb hover-effect">
1281 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1282 +Mont Bellevue
1283 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1284 +Libre maintenant
1285 +</a></div><h2 class="item-title">
1286 +<a href="https://agencedelocationsherbrooke.com/property/905-courcelette/">905 Courcelette</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">795$/mensuel</li></ul> <address class="item-address">Rue de Courcelette, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3V3, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lit:</span> <span class="hz-figure">1</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>3½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/905-courcelette/">
1287 +Détails</a><div class="item-author">
1288 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1289 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1290 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1291 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></section></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1292 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1293 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1294 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1295 +<i class="houzez-icon icon-arrow-up-1"></i>
1296 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1297 +<button class="compare-property-label" style="display: none;">
1298 +<span class="compare-count compare-label"></span>
1299 +<i class="houzez-icon icon-move-left-right"></i>
1300 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1301 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1302 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1303 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1304 +<span aria-hidden="true">&times;</span>
1305 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1306 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1307 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1308 +<label class="control control--checkbox flex-grow-1">
1309 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1310 +</label>
1311 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/property/951-fabre/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1312 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com/property/951-fabre/?login=success">
1313 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1314 +<span class="btn-loader houzez-loader-js"></span> Connexion
1315 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1316 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1317 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1318 +<span aria-hidden="true">&times;</span>
1319 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1320 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1321 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/property/951-fabre/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1322 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><div class="mobile-property-contact visible-on-mobile"><div class="d-flex justify-content-between"><div class="agent-details flex-grow-1"><div class="d-flex align-items-center"><div class="agent-image">
1323 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" width="50" height="50" alt="Catherine Perreault"></div><ul class="agent-information list-unstyled"><li class="agent-name">
1324 +Catherine Perreault</li></ul></div></div>
1325 +<button class="btn btn-secondary" data-toggle="modal" data-target="#mobile-property-form">
1326 +<i class="houzez-icon icon-messages-bubble"></i>
1327 +</button></div></div><div class="modal fade mobile-property-form" id="mobile-property-form"><div class="modal-dialog" role="document"><div class="modal-content">
1328 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1329 +<span aria-hidden="true">&times;</span>
1330 +</button><div class="modal-body"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1331 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1332 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1333 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [951 Fabre]</textarea></div>
1334 +<input type="hidden" name="target_email" value="&#99;a&#116;h&#101;ri&#110;&#101;.p&#101;&#114;r&#101;ault&#64;p&#114;e&#115;&#116;i&#112;&#108;e&#120;&#46;&#99;&#111;&#109;">
1335 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1336 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/951-fabre/"/>
1337 +<input type="hidden" name="property_title" value="951 Fabre"/>
1338 +<input type="hidden" name="property_id" value="ADLS-10485"/>
1339 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1340 +<input type="hidden" name="listing_id" value="10485">
1341 +<input type="hidden" name="is_listing_form" value="yes">
1342 +<input type="hidden" name="agent_id" value="156">
1343 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1344 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1345 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1346 +</button></form></div></div></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div class="modal-content"><div class="modal-header"><div class="d-flex align-items-center"><div class="lightbox-logo">
1347 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white.png" alt="951 Fabre" width="127" height="32" /></div><div class="lightbox-title flex-grow-1"></div><div class="lightbox-tools"><ul class="list-inline"><li class="list-inline-item btn-favorite">
1348 +<a class="add-favorite-js" data-listid="10485" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Favoris</span></a></li><li class="list-inline-item btn-share">
1349 +<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Partager</span></a><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1350 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=951+Fabre&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F">
1351 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&amp;t=951+Fabre" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f321a72594e2d0b51b28e062-="">
1352 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1353 +</a>
1354 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=951+Fabre&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-f321a72594e2d0b51b28e062-="">
1355 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1356 +</a>
1357 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f321a72594e2d0b51b28e062-="">
1358 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1359 +</a>
1360 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F951-fabre%2F&title=951+Fabre&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f321a72594e2d0b51b28e062-="">
1361 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1362 +</a>
1363 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#0d7e6260686263684d68756c607d6168236e6260325e786f67686e793034383c2d4b6c6f7f682b6f626974306579797d7e283e4c283f4b283f4b6c6a68636e68696861626e6c796462637e65687f6f7f62626668236e6260283f4b7d7f627d687f7974283f4b34383c206b6c6f7f68283f4b">
1364 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1365 +</a></div></li><li class="list-inline-item btn-email">
1366 +<a href="#"><i class="houzez-icon icon-envelope"></i></a></li></ul></div></div>
1367 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1368 +<span aria-hidden="true">&times;</span>
1369 +</button></div><div class="modal-body clearfix"><div class="lightbox-gallery-wrap ">
1370 +<a class="btn-expand">
1371 +<i class="houzez-icon icon-expand-3"></i>
1372 +</a><div class="lightbox-gallery"><div id="lightbox-slider-js" class="lightbox-slider"><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-scaled.jpeg" alt="" title="image - 2026-07-10T165930.293" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165928.922-scaled.jpeg" alt="" title="image - 2026-07-10T165928.922" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165926.097-scaled.jpeg" alt="" title="image - 2026-07-10T165926.097" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165924.591-scaled.jpeg" alt="" title="image - 2026-07-10T165924.591" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165923.134-scaled.jpeg" alt="" title="image - 2026-07-10T165923.134" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165921.885-scaled.jpeg" alt="" title="image - 2026-07-10T165921.885" width="1920" height="2560" /></div></div></div></div><div class="lightbox-form-wrap"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1373 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1374 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1375 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [951 Fabre]</textarea></div>
1376 +<input type="hidden" name="target_email" value="&#99;at&#104;er&#105;ne&#46;&#112;&#101;&#114;re&#97;&#117;l&#116;&#64;pre&#115;&#116;&#105;p&#108;ex.&#99;&#111;&#109;">
1377 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1378 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/951-fabre/"/>
1379 +<input type="hidden" name="property_title" value="951 Fabre"/>
1380 +<input type="hidden" name="property_id" value="ADLS-10485"/>
1381 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1382 +<input type="hidden" name="listing_id" value="10485">
1383 +<input type="hidden" name="is_listing_form" value="yes">
1384 +<input type="hidden" name="agent_id" value="156">
1385 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1386 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1387 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1388 +</button></form></div></div></div></div><div class="modal-footer"></div></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1389 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="f321a72594e2d0b51b28e062-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1390 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="bootstrap-datepicker.fr-CA-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr-CA.min.js"></script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com/property/951-fabre/","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_nav","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"fr-CA","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="leaflet-js" type="litespeed/javascript" data-src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script> <script id="houzez-single-property-map-js-extra" type="litespeed/javascript">var houzez_single_property_map={"title":"951 Fabre","price":" 895$/mensuel","property_id":"10485","pricePin":"895$/mensuel","property_type":"3\u00bd","address":"951, Rue Fabre, Les Nations, Sherbrooke, Estrie, Qu\u00e9bec, J1H 4R6, Canada","lat":"45.3919786","lng":"-71.8888630","term_id":"100","marker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","retinaMarker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","thumbnail":"https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-120x90.jpeg"};var houzez_map_options={"markerPricePins":"no","single_map_zoom":"12","map_type":"roadmap","map_pin_type":"marker","googlemap_stype":"","closeIcon":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/close.png","infoWindowPlac":"https://placehold.it/120x90&text=Agence+de+location+Sherbrooke"}</script> <script id="houzez-walkscore-js-before" type="litespeed/javascript">var ws_wsid=' 65c6f7843483895d5d5ef58e01b2d789';var ws_address='951, Rue Fabre, Les Nations, Sherbrooke, Estrie, Québec, J1H 4R6, Canada';var ws_format='wide';var ws_width='650';var ws_width='100%';var ws_height='400'</script> <script id="houzez-walkscore-js" type="litespeed/javascript" data-src="https://www.walkscore.com/tile/show-walkscore-tile.php"></script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1391 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="f321a72594e2d0b51b28e062-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="f321a72594e2d0b51b28e062-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="f321a72594e2d0b51b28e062-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/7eb3e0d215c9a5e36449ede9b8431764.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="f321a72594e2d0b51b28e062-|49" defer></script></body></html>
1392 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:31:29 -->
1393 +
1394 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:31:28 -->
1395 +<!-- Guest Mode -->
1396 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/ed93c1ba2200a9da666c9871ea0b8f1b.css -->
1397 +<!-- QUIC.cloud UCSS loaded ✅ /ucss/eea72f6b21efb72033c18290725b8620.css -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/1d9d442f51056162f0d0.html +1393 −0
@@ -0,0 +1,1393 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="1f0d98ddc76395dfaf9e3945-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>1351 Lalemant #5 - Agence de location Sherbrooke</title><meta name="description" content="3 ½ à louer – Disponible maintenant 925 $/mois – Chauffage, eau chaude et internet inclus Logement non-fumeur Rez-de-jardin/ Demi sous-sol 1 espace de stationnement inclus Un chat accepté (chiens non permis) Enquête de crédit obligatoire" /><meta name="robots" content="max-image-preview:large" /><meta name="author" content="Catherine Perreault"/><link rel="canonical" href="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="article" /><meta property="og:title" content="1351 Lalemant #5 - Agence de location Sherbrooke" /><meta property="og:description" content="3 ½ à louer – Disponible maintenant 925 $/mois – Chauffage, eau chaude et internet inclus Logement non-fumeur Rez-de-jardin/ Demi sous-sol 1 espace de stationnement inclus Un chat accepté (chiens non permis) Enquête de crédit obligatoire" /><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-scaled.jpeg" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-scaled.jpeg" /><meta property="og:image:width" content="1920" /><meta property="og:image:height" content="2560" /><meta property="article:published_time" content="2026-07-10T02:38:38+00:00" /><meta property="article:modified_time" content="2026-07-10T02:39:10+00:00" /><meta property="article:publisher" content="https://www.facebook.com/agencedelocationsherbrooke" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="1351 Lalemant #5 - Agence de location Sherbrooke" /><meta name="twitter:description" content="3 ½ à louer – Disponible maintenant 925 $/mois – Chauffage, eau chaude et internet inclus Logement non-fumeur Rez-de-jardin/ Demi sous-sol 1 espace de stationnement inclus Un chat accepté (chiens non permis) Enquête de crédit obligatoire" /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1351-lalemant-5\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","position":2,"name":"Properties","item":"https:\/\/agencedelocationsherbrooke.com\/property\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/#listItem","name":"3\u00bd"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/#listItem","position":3,"name":"3\u00bd","item":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1351-lalemant-5\/#listItem","name":"1351 Lalemant #5"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1351-lalemant-5\/#listItem","position":4,"name":"1351 Lalemant #5","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/#listItem","name":"3\u00bd"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1351-lalemant-5\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1351-lalemant-5\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"Person","@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author","url":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/","name":"Catherine Perreault","image":{"@type":"ImageObject","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1351-lalemant-5\/#authorImage","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/litespeed\/avatar\/fdca211e8cbd2f88b79d873de06d8fa9.jpg?ver=1785951645","width":96,"height":96,"caption":"Catherine Perreault"}},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1351-lalemant-5\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/property\/1351-lalemant-5\/","name":"1351 Lalemant #5 - Agence de location Sherbrooke","description":"3 \u00bd \u00e0 louer \u2013 Disponible maintenant 925 $\/mois \u2013 Chauffage, eau chaude et internet inclus Logement non-fumeur Rez-de-jardin\/ Demi sous-sol 1 espace de stationnement inclus Un chat accept\u00e9 (chiens non permis) Enqu\u00eate de cr\u00e9dit obligatoire","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1351-lalemant-5\/#breadcrumblist"},"author":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"creator":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223210.052-scaled.jpeg","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1351-lalemant-5\/#mainImage","width":1920,"height":2560},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1351-lalemant-5\/#mainImage"},"datePublished":"2026-07-10T02:38:38+00:00","dateModified":"2026-07-10T02:39:10+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//unpkg.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&#038;format=xml" /><meta property="og:title" content="1351 Lalemant #5"/><meta property="og:description" content="3 ½ à louer – Disponible maintenant
2 +925 $/mois – Chauffage, eau chaude et internet inclusLogement non-fumeurRez-de-jardin/ Demi sous-sol1 espace " /><meta property="og:type" content="article"/><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/"/><meta property="og:site_name" content="Agence de location Sherbrooke"/><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-scaled.jpeg"/><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
3 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}body{font-size:15px;font-family:Roboto,sans-serif}body{background-color:#f8f8f8}body{color:#222}body{line-height:25px;font-weight:300;text-transform:none}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}body{background-color:#f7f7f7}body{color:#222}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1f0d98ddc76395dfaf9e3945-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/ucss/c8ab2effd4a60b940b5d1ea1e62d48c0.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="wp-block-library-inline-css">:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
4 +
5 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */</style><style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
6 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
7 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
8 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
9 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
10 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
11 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
12 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
13 + .container {
14 + max-width: 1210px;
15 + }
16 + }
17 + .label-color-87 {
18 + background-color: #31af00;
19 + }
20 +
21 + .status-color-28 {
22 + background-color: #dd9933;
23 + }
24 +
25 + .status-color-88 {
26 + background-color: #b7ba00;
27 + }
28 +
29 + .status-color-95 {
30 + background-color: #dd3333;
31 + }
32 +
33 + .status-color-94 {
34 + background-color: #1e73be;
35 + }
36 +
37 + .status-color-89 {
38 + background-color: #31af00;
39 + }
40 +
41 + body {
42 + font-family: Poppins;
43 + font-size: 16px;
44 + font-weight: 400;
45 + line-height: 24px;
46 + text-transform: none;
47 + }
48 + .main-nav,
49 + .dropdown-menu,
50 + .login-register,
51 + .btn.btn-create-listing,
52 + .logged-in-nav,
53 + .btn-phone-number {
54 + font-family: Poppins;
55 + font-size: 14px;
56 + font-weight: 400;
57 + text-align: left;
58 + text-transform: uppercase;
59 + }
60 +
61 + .btn,
62 + .form-control,
63 + .bootstrap-select .text,
64 + .sort-by-title,
65 + .woocommerce ul.products li.product .button {
66 + font-family: Poppins;
67 + font-size: 16px;
68 + }
69 +
70 + h1, h2, h3, h4, h5, h6, .item-title {
71 + font-family: Poppins;
72 + font-weight: 400;
73 + text-transform: capitalize;
74 + }
75 +
76 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
77 + font-weight: 400;
78 + text-transform: capitalize;
79 + text-align: inherit;
80 + }
81 +
82 + .top-bar-wrap {
83 + font-family: Poppins;
84 + font-size: 15px;
85 + font-weight: 300;
86 + line-height: 25px;
87 + text-align: left;
88 + text-transform: none;
89 + }
90 + .footer-wrap {
91 + font-family: Poppins;
92 + font-size: 14px;
93 + font-weight: 300;
94 + line-height: 25px;
95 + text-align: left;
96 + text-transform: none;
97 + }
98 +
99 + .header-v1 .header-inner-wrap,
100 + .header-v1 .navbar-logged-in-wrap {
101 + line-height: 60px;
102 + height: 60px;
103 + }
104 + .header-v2 .header-top .navbar {
105 + height: 110px;
106 + }
107 +
108 + .header-v2 .header-bottom .header-inner-wrap,
109 + .header-v2 .header-bottom .navbar-logged-in-wrap {
110 + line-height: 54px;
111 + height: 54px;
112 + }
113 +
114 + .header-v3 .header-top .header-inner-wrap,
115 + .header-v3 .header-top .header-contact-wrap {
116 + height: 80px;
117 + line-height: 80px;
118 + }
119 + .header-v3 .header-bottom .header-inner-wrap,
120 + .header-v3 .header-bottom .navbar-logged-in-wrap {
121 + line-height: 54px;
122 + height: 54px;
123 + }
124 + .header-v4 .header-inner-wrap,
125 + .header-v4 .navbar-logged-in-wrap {
126 + line-height: 90px;
127 + height: 90px;
128 + }
129 + .header-v5 .header-top .header-inner-wrap,
130 + .header-v5 .header-top .navbar-logged-in-wrap {
131 + line-height: 110px;
132 + height: 110px;
133 + }
134 + .header-v5 .header-bottom .header-inner-wrap {
135 + line-height: 54px;
136 + height: 54px;
137 + }
138 + .header-v6 .header-inner-wrap,
139 + .header-v6 .navbar-logged-in-wrap {
140 + height: 60px;
141 + line-height: 60px;
142 + }
143 + @media (min-width: 1200px) {
144 + .header-v5 .header-top .container {
145 + max-width: 1170px;
146 + }
147 + }
148 +
149 + body,
150 + .main-wrap,
151 + .fw-property-documents-wrap h3 span,
152 + .fw-property-details-wrap h3 span {
153 + background-color: #f7f7f7;
154 + }
155 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
156 + background-color: #ffffff;
157 + }
158 +
159 + body,
160 + .form-control,
161 + .bootstrap-select .text,
162 + .item-title a,
163 + .listing-tabs .nav-tabs .nav-link,
164 + .item-wrap-v2 .item-amenities li span,
165 + .item-wrap-v2 .item-amenities li:before,
166 + .item-parallax-wrap .item-price-wrap,
167 + .list-view .item-body .item-price-wrap,
168 + .property-slider-item .item-price-wrap,
169 + .page-title-wrap .item-price-wrap,
170 + .agent-information .agent-phone span a,
171 + .property-overview-wrap ul li strong,
172 + .mobile-property-title .item-price-wrap .item-price,
173 + .fw-property-features-left li a,
174 + .lightbox-content-wrap .item-price-wrap,
175 + .blog-post-item-v1 .blog-post-title h3 a,
176 + .blog-post-content-widget h4 a,
177 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
178 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
179 + .agent-list-wrap .agent-list-content h2 a,
180 + .agent-list-wrap .agent-list-contact li a,
181 + .agent-contacts-wrap li a,
182 + .menu-edit-property li a,
183 + .statistic-referrals-list li a,
184 + .chart-nav .nav-pills .nav-link,
185 + .dashboard-table-properties td .property-payment-status,
186 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
187 + .payment-method-block .radio-tab .control-text,
188 + .post-title-wrap h2 a,
189 + .lead-nav-tab.nav-pills .nav-link,
190 + .deals-nav-tab.nav-pills .nav-link,
191 + .btn-light-grey-outlined:hover,
192 + button:not(.bs-placeholder) .filter-option-inner-inner,
193 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
194 + .products > .product > .item-body > a,
195 + .woocommerce ul.products li.product .price,
196 + .woocommerce div.product p.price,
197 + .woocommerce div.product span.price,
198 + .woocommerce #reviews #comments ol.commentlist li .meta,
199 + .woocommerce-MyAccount-navigation ul li a,
200 + .activitiy-item-close-button a,
201 + .property-section-wrap li a {
202 + color: #222222;
203 + }
204 +
205 +
206 +
207 + a,
208 + a:hover,
209 + a:active,
210 + a:focus,
211 + .primary-text,
212 + .btn-clear,
213 + .btn-apply,
214 + .btn-primary-outlined,
215 + .btn-primary-outlined:before,
216 + .item-title a:hover,
217 + .sort-by .bootstrap-select .bs-placeholder,
218 + .sort-by .bootstrap-select > .btn,
219 + .sort-by .bootstrap-select > .btn:active,
220 + .page-link,
221 + .page-link:hover,
222 + .accordion-title:before,
223 + .blog-post-content-widget h4 a:hover,
224 + .agent-list-wrap .agent-list-content h2 a:hover,
225 + .agent-list-wrap .agent-list-contact li a:hover,
226 + .agent-contacts-wrap li a:hover,
227 + .agent-nav-wrap .nav-pills .nav-link,
228 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
229 + .menu-edit-property li a.active,
230 + .menu-edit-property li a:hover,
231 + .dashboard-statistic-block h3 .fa,
232 + .statistic-referrals-list li a:hover,
233 + .chart-nav .nav-pills .nav-link.active,
234 + .board-message-icon-wrap.active,
235 + .post-title-wrap h2 a:hover,
236 + .listing-switch-view .switch-btn.active,
237 + .item-wrap-v6 .item-price-wrap,
238 + .listing-v6 .list-view .item-body .item-price-wrap,
239 + .woocommerce nav.woocommerce-pagination ul li a,
240 + .woocommerce nav.woocommerce-pagination ul li span,
241 + .woocommerce-MyAccount-navigation ul li a:hover,
242 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
243 + .property-schedule-tour-form-wrap .control:hover,
244 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
245 + .login-register .btn-icon-login-register + .dropdown-menu a,
246 + .activitiy-item-close-button a:hover,
247 + .property-section-wrap li a:hover,
248 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
249 + color: #3385d9;
250 + }
251 +
252 + .agent-list-position a {
253 + color: #3385d9;
254 + }
255 +
256 + .control input:checked ~ .control__indicator,
257 + .top-banner-wrap .nav-pills .nav-link,
258 + .btn-primary-outlined:hover,
259 + .page-item.active .page-link,
260 + .slick-prev:hover,
261 + .slick-prev:focus,
262 + .slick-next:hover,
263 + .slick-next:focus,
264 + .mobile-property-tools .nav-pills .nav-link.active,
265 + .login-register-form .modal-header,
266 + .agent-nav-wrap .nav-pills .nav-link.active,
267 + .board-message-icon-wrap .notification-circle,
268 + .primary-label,
269 + .fc-event, .fc-event-dot,
270 + .compare-table .table-hover > tbody > tr:hover,
271 + .post-tag,
272 + .datepicker table tr td.active.active,
273 + .datepicker table tr td.active.disabled,
274 + .datepicker table tr td.active.disabled.active,
275 + .datepicker table tr td.active.disabled.disabled,
276 + .datepicker table tr td.active.disabled:active,
277 + .datepicker table tr td.active.disabled:hover,
278 + .datepicker table tr td.active.disabled:hover.active,
279 + .datepicker table tr td.active.disabled:hover.disabled,
280 + .datepicker table tr td.active.disabled:hover:active,
281 + .datepicker table tr td.active.disabled:hover:hover,
282 + .datepicker table tr td.active.disabled:hover[disabled],
283 + .datepicker table tr td.active.disabled[disabled],
284 + .datepicker table tr td.active:active,
285 + .datepicker table tr td.active:hover,
286 + .datepicker table tr td.active:hover.active,
287 + .datepicker table tr td.active:hover.disabled,
288 + .datepicker table tr td.active:hover:active,
289 + .datepicker table tr td.active:hover:hover,
290 + .datepicker table tr td.active:hover[disabled],
291 + .datepicker table tr td.active[disabled],
292 + .ui-slider-horizontal .ui-slider-range,
293 + .btn-bubble {
294 + background-color: #3385d9;
295 + }
296 +
297 + .control input:checked ~ .control__indicator,
298 + .btn-primary-outlined,
299 + .page-item.active .page-link,
300 + .mobile-property-tools .nav-pills .nav-link.active,
301 + .agent-nav-wrap .nav-pills .nav-link,
302 + .agent-nav-wrap .nav-pills .nav-link.active,
303 + .chart-nav .nav-pills .nav-link.active,
304 + .dashaboard-snake-nav .step-block.active,
305 + .fc-event,
306 + .fc-event-dot,
307 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
308 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
309 + border-color: #3385d9;
310 + }
311 +
312 + .slick-arrow:hover {
313 + background-color: rgba(43,111,180,1);
314 + }
315 +
316 + .slick-arrow {
317 + background-color: #3385d9;
318 + }
319 +
320 + .property-banner .nav-pills .nav-link.active {
321 + background-color: rgba(43,111,180,1) !important;
322 + }
323 +
324 + .property-navigation-wrap a.active {
325 + color: #3385d9;
326 + -webkit-box-shadow: inset 0 -3px #3385d9;
327 + box-shadow: inset 0 -3px #3385d9;
328 + }
329 +
330 + .btn-primary,
331 + .fc-button-primary,
332 + .woocommerce nav.woocommerce-pagination ul li a:focus,
333 + .woocommerce nav.woocommerce-pagination ul li a:hover,
334 + .woocommerce nav.woocommerce-pagination ul li span.current {
335 + color: #fff;
336 + background-color: #3385d9;
337 + border-color: #3385d9;
338 + }
339 + .btn-primary:focus, .btn-primary:focus:active,
340 + .fc-button-primary:focus,
341 + .fc-button-primary:focus:active {
342 + color: #fff;
343 + background-color: #3385d9;
344 + border-color: #3385d9;
345 + }
346 + .btn-primary:hover,
347 + .fc-button-primary:hover {
348 + color: #fff;
349 + background-color: #2b6fb4;
350 + border-color: #2b6fb4;
351 + }
352 + .btn-primary:active,
353 + .btn-primary:not(:disabled):not(:disabled):active,
354 + .fc-button-primary:active,
355 + .fc-button-primary:not(:disabled):not(:disabled):active {
356 + color: #fff;
357 + background-color: #2b6fb4;
358 + border-color: #2b6fb4;
359 + }
360 +
361 + .btn-secondary,
362 + .woocommerce span.onsale,
363 + .woocommerce ul.products li.product .button,
364 + .woocommerce #respond input#submit.alt,
365 + .woocommerce a.button.alt,
366 + .woocommerce button.button.alt,
367 + .woocommerce input.button.alt,
368 + .woocommerce #review_form #respond .form-submit input,
369 + .woocommerce #respond input#submit,
370 + .woocommerce a.button,
371 + .woocommerce button.button,
372 + .woocommerce input.button {
373 + color: #fff;
374 + background-color: #656565;
375 + border-color: #656565;
376 + }
377 + .woocommerce ul.products li.product .button:focus,
378 + .woocommerce ul.products li.product .button:active,
379 + .woocommerce #respond input#submit.alt:focus,
380 + .woocommerce a.button.alt:focus,
381 + .woocommerce button.button.alt:focus,
382 + .woocommerce input.button.alt:focus,
383 + .woocommerce #respond input#submit.alt:active,
384 + .woocommerce a.button.alt:active,
385 + .woocommerce button.button.alt:active,
386 + .woocommerce input.button.alt:active,
387 + .woocommerce #review_form #respond .form-submit input:focus,
388 + .woocommerce #review_form #respond .form-submit input:active,
389 + .woocommerce #respond input#submit:active,
390 + .woocommerce a.button:active,
391 + .woocommerce button.button:active,
392 + .woocommerce input.button:active,
393 + .woocommerce #respond input#submit:focus,
394 + .woocommerce a.button:focus,
395 + .woocommerce button.button:focus,
396 + .woocommerce input.button:focus {
397 + color: #fff;
398 + background-color: #656565;
399 + border-color: #656565;
400 + }
401 + .btn-secondary:hover,
402 + .woocommerce ul.products li.product .button:hover,
403 + .woocommerce #respond input#submit.alt:hover,
404 + .woocommerce a.button.alt:hover,
405 + .woocommerce button.button.alt:hover,
406 + .woocommerce input.button.alt:hover,
407 + .woocommerce #review_form #respond .form-submit input:hover,
408 + .woocommerce #respond input#submit:hover,
409 + .woocommerce a.button:hover,
410 + .woocommerce button.button:hover,
411 + .woocommerce input.button:hover {
412 + color: #fff;
413 + background-color: #333333;
414 + border-color: #333333;
415 + }
416 + .btn-secondary:active,
417 + .btn-secondary:not(:disabled):not(:disabled):active {
418 + color: #fff;
419 + background-color: #333333;
420 + border-color: #333333;
421 + }
422 +
423 + .btn-primary-outlined {
424 + color: #3385d9;
425 + background-color: transparent;
426 + border-color: #3385d9;
427 + }
428 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
429 + color: #3385d9;
430 + background-color: transparent;
431 + border-color: #3385d9;
432 + }
433 + .btn-primary-outlined:hover {
434 + color: #fff;
435 + background-color: #2b6fb4;
436 + border-color: #2b6fb4;
437 + }
438 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
439 + color: #3385d9;
440 + background-color: rgba(26, 26, 26, 0);
441 + border-color: #2b6fb4;
442 + }
443 +
444 + .btn-secondary-outlined {
445 + color: #656565;
446 + background-color: transparent;
447 + border-color: #656565;
448 + }
449 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
450 + color: #656565;
451 + background-color: transparent;
452 + border-color: #656565;
453 + }
454 + .btn-secondary-outlined:hover {
455 + color: #fff;
456 + background-color: #333333;
457 + border-color: #333333;
458 + }
459 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
460 + color: #656565;
461 + background-color: rgba(26, 26, 26, 0);
462 + border-color: #333333;
463 + }
464 +
465 + .btn-call {
466 + color: #656565;
467 + background-color: transparent;
468 + border-color: #656565;
469 + }
470 + .btn-call:focus, .btn-call:focus:active {
471 + color: #656565;
472 + background-color: transparent;
473 + border-color: #656565;
474 + }
475 + .btn-call:hover {
476 + color: #656565;
477 + background-color: rgba(26, 26, 26, 0);
478 + border-color: #333333;
479 + }
480 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
481 + color: #656565;
482 + background-color: rgba(26, 26, 26, 0);
483 + border-color: #333333;
484 + }
485 + .icon-delete .btn-loader:after{
486 + border-color: #3385d9 transparent #3385d9 transparent
487 + }
488 +
489 + .header-v1 {
490 + background-color: #004274;
491 + border-bottom: 1px solid #004274;
492 + }
493 +
494 + .header-v1 a.nav-link {
495 + color: #ffffff;
496 + }
497 +
498 + .header-v1 a.nav-link:hover,
499 + .header-v1 a.nav-link:active {
500 + color: #00aeff;
501 + background-color: rgba(255,255,255,0.2);
502 + }
503 + .header-desktop .main-nav .nav-link {
504 + letter-spacing: 0.0px;
505 + }
506 +
507 + .header-v2 .header-top,
508 + .header-v5 .header-top,
509 + .header-v2 .header-contact-wrap {
510 + background-color: #ffffff;
511 + }
512 +
513 + .header-v2 .header-bottom,
514 + .header-v5 .header-bottom {
515 + background-color: #004274;
516 + }
517 +
518 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
519 + color: #004274;
520 + }
521 +
522 + .header-v2 .header-contact-left {
523 + color: #004274;
524 + }
525 +
526 + .header-v2 .header-bottom,
527 + .header-v2 .navbar-nav > li,
528 + .header-v2 .navbar-nav > li:first-of-type,
529 + .header-v5 .header-bottom,
530 + .header-v5 .navbar-nav > li,
531 + .header-v5 .navbar-nav > li:first-of-type {
532 + border-color: rgba(255,255,255,0.2);
533 + }
534 +
535 + .header-v2 a.nav-link,
536 + .header-v5 a.nav-link {
537 + color: #ffffff;
538 + }
539 +
540 + .header-v2 a.nav-link:hover,
541 + .header-v2 a.nav-link:active,
542 + .header-v5 a.nav-link:hover,
543 + .header-v5 a.nav-link:active {
544 + color: #00aeff;
545 + background-color: rgba(255,255,255,0.2);
546 + }
547 +
548 + .header-v2 .header-contact-right a:hover,
549 + .header-v2 .header-contact-right a:active,
550 + .header-v3 .header-contact-right a:hover,
551 + .header-v3 .header-contact-right a:active {
552 + background-color: transparent;
553 + }
554 +
555 + .header-v2 .header-social-icons a,
556 + .header-v5 .header-social-icons a {
557 + color: #004274;
558 + }
559 +
560 + .header-v3 .header-top {
561 + background-color: #004274;
562 + }
563 +
564 + .header-v3 .header-bottom {
565 + background-color: #004272;
566 + }
567 +
568 + .header-v3 .header-contact,
569 + .header-v3-mobile {
570 + background-color: #00aeef;
571 + color: #ffffff;
572 + }
573 +
574 + .header-v3 .header-bottom,
575 + .header-v3 .login-register,
576 + .header-v3 .navbar-nav > li,
577 + .header-v3 .navbar-nav > li:first-of-type {
578 + border-color: ;
579 + }
580 +
581 + .header-v3 a.nav-link,
582 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
583 + color: #ffffff;
584 + }
585 +
586 + .header-v3 a.nav-link:hover,
587 + .header-v3 a.nav-link:active {
588 + color: #00aeff;
589 + background-color: rgba(255,255,255,0.2);
590 + }
591 +
592 + .header-v3 .header-social-icons a {
593 + color: #FFFFFF;
594 + }
595 +
596 + .header-v4 {
597 + background-color: #ffffff;
598 + }
599 +
600 + .header-v4 a.nav-link {
601 + color: #000000;
602 + }
603 +
604 + .header-v4 a.nav-link:hover,
605 + .header-v4 a.nav-link:active {
606 + color: #3385d9;
607 + background-color: rgba(255,255,255,0.2);
608 + }
609 +
610 + .header-v6 .header-top {
611 + background-color: #00AEEF;
612 + }
613 +
614 + .header-v6 a.nav-link {
615 + color: #FFFFFF;
616 + }
617 +
618 + .header-v6 a.nav-link:hover,
619 + .header-v6 a.nav-link:active {
620 + color: #00aeff;
621 + background-color: rgba(255,255,255,0.2);
622 + }
623 +
624 + .header-v6 .header-social-icons a {
625 + color: #FFFFFF;
626 + }
627 +
628 + .header-mobile {
629 + background-color: #ffffff;
630 + }
631 + .header-mobile .toggle-button-left,
632 + .header-mobile .toggle-button-right {
633 + color: #000000;
634 + }
635 +
636 + .nav-mobile .logged-in-nav a,
637 + .nav-mobile .main-nav,
638 + .nav-mobile .navi-login-register {
639 + background-color: #ffffff;
640 + }
641 +
642 + .nav-mobile .logged-in-nav a,
643 + .nav-mobile .main-nav .nav-item .nav-item a,
644 + .nav-mobile .main-nav .nav-item a,
645 + .navi-login-register .main-nav .nav-item a {
646 + color: #000000;
647 + border-bottom: 1px solid #ffffff;
648 + background-color: #ffffff;
649 + }
650 +
651 + .nav-mobile .btn-create-listing,
652 + .navi-login-register .btn-create-listing {
653 + color: #fff;
654 + border: 1px solid #3385d9;
655 + background-color: #3385d9;
656 + }
657 +
658 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
659 + .navi-login-register .btn-create-listing:hover,
660 + .navi-login-register .btn-create-listing:active {
661 + color: #fff;
662 + border: 1px solid #3385d9;
663 + background-color: rgba(0, 174, 255, 0.65);
664 + }
665 +
666 + .header-transparent-wrap .header-v4 {
667 + background-color: transparent;
668 + border-bottom: 1px none rgba(255,255,255,0.3);
669 + }
670 +
671 + .header-transparent-wrap .header-v4 a {
672 + color: #ffffff;
673 + }
674 +
675 + .header-transparent-wrap .header-v4 a:hover,
676 + .header-transparent-wrap .header-v4 a:active {
677 + color: #3385d9;
678 + background-color: rgba(255, 255, 255, 0.1);
679 + }
680 +
681 + .main-nav .navbar-nav .nav-item .dropdown-menu,
682 + .login-register .login-register-nav li .dropdown-menu {
683 + background-color: rgba(255,255,255,0.95);
684 + }
685 +
686 + .login-register .login-register-nav li .dropdown-menu:before {
687 + border-left-color: rgba(255,255,255,0.95);
688 + border-top-color: rgba(255,255,255,0.95);
689 + }
690 +
691 + .main-nav .navbar-nav .nav-item .nav-item a,
692 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
693 + color: #3385d9;
694 + border-bottom: 1px solid #e6e6e6;
695 + }
696 +
697 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
698 + .main-nav .navbar-nav .nav-item .nav-item a:active,
699 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
700 + color: #2b6fb4;
701 + }
702 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
703 + .main-nav .navbar-nav .nav-item .nav-item a:active,
704 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
705 + background-color: rgba(0, 174, 255, 0.1);
706 + }
707 +
708 + .header-main-wrap .btn-create-listing {
709 + color: #3385d9;
710 + border: 1px solid #3385d9;
711 + background-color: #ffffff;
712 + }
713 +
714 + .header-main-wrap .btn-create-listing:hover,
715 + .header-main-wrap .btn-create-listing:active {
716 + color: rgba(255,255,255,1);
717 + border: 1px solid #2b6fb4;
718 + background-color: rgba(43,111,180,1);
719 + }
720 +
721 + .header-transparent-wrap .header-v4 .btn-create-listing {
722 + color: #ffffff;
723 + border: 1px solid #ffffff;
724 + background-color: rgba(255,255,255,0.2);
725 + }
726 +
727 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
728 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
729 + color: rgba(255,255,255,1);
730 + border: 1px solid #3385d9;
731 + background-color: rgba(51,133,217,1);
732 + }
733 +
734 + .header-transparent-wrap .logged-in-nav a,
735 + .logged-in-nav a {
736 + color: #000000;
737 + border-color: #e6e6e6;
738 + background-color: #FFFFFF;
739 + }
740 +
741 + .header-transparent-wrap .logged-in-nav a:hover,
742 + .header-transparent-wrap .logged-in-nav a:active,
743 + .logged-in-nav a:hover,
744 + .logged-in-nav a:active {
745 + color: #000000;
746 + background-color: rgba(204,204,204,0.15);
747 + border-color: #e6e6e6;
748 + }
749 +
750 + .form-control::-webkit-input-placeholder,
751 + .search-banner-wrap ::-webkit-input-placeholder,
752 + .advanced-search ::-webkit-input-placeholder,
753 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
754 + .overlay-search-advanced-module ::-webkit-input-placeholder {
755 + color: #a1a7a8;
756 + }
757 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
758 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
759 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
760 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
761 + color: #a1a7a8;
762 + }
763 + .form-control::placeholder,
764 + .search-banner-wrap ::-webkit-input-placeholder,
765 + .advanced-search ::-webkit-input-placeholder,
766 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
767 + .overlay-search-advanced-module ::-webkit-input-placeholder {
768 + color: #a1a7a8;
769 + }
770 +
771 + .search-banner-wrap ::-moz-placeholder,
772 + .advanced-search ::-moz-placeholder,
773 + .advanced-search-banner-wrap ::-moz-placeholder,
774 + .overlay-search-advanced-module ::-moz-placeholder {
775 + color: #a1a7a8;
776 + }
777 +
778 + .search-banner-wrap :-ms-input-placeholder,
779 + .advanced-search :-ms-input-placeholder,
780 + .advanced-search-banner-wrap ::-ms-input-placeholder,
781 + .overlay-search-advanced-module ::-ms-input-placeholder {
782 + color: #a1a7a8;
783 + }
784 +
785 + .search-banner-wrap :-moz-placeholder,
786 + .advanced-search :-moz-placeholder,
787 + .advanced-search-banner-wrap :-moz-placeholder,
788 + .overlay-search-advanced-module :-moz-placeholder {
789 + color: #a1a7a8;
790 + }
791 +
792 + .advanced-search .form-control,
793 + .advanced-search .bootstrap-select > .btn,
794 + .location-trigger,
795 + .vertical-search-wrap .form-control,
796 + .vertical-search-wrap .bootstrap-select > .btn,
797 + .step-search-wrap .form-control,
798 + .step-search-wrap .bootstrap-select > .btn,
799 + .advanced-search-banner-wrap .form-control,
800 + .advanced-search-banner-wrap .bootstrap-select > .btn,
801 + .search-banner-wrap .form-control,
802 + .search-banner-wrap .bootstrap-select > .btn,
803 + .overlay-search-advanced-module .form-control,
804 + .overlay-search-advanced-module .bootstrap-select > .btn,
805 + .advanced-search-v2 .advanced-search-btn,
806 + .advanced-search-v2 .advanced-search-btn:hover {
807 + border-color: #cccccc;
808 + }
809 +
810 + .advanced-search-nav,
811 + .search-expandable,
812 + .overlay-search-advanced-module {
813 + background-color: #FFFFFF;
814 + }
815 + .btn-search {
816 + color: #ffffff;
817 + background-color: #3385d9;
818 + border-color: #3385d9;
819 + }
820 + .btn-search:hover, .btn-search:active {
821 + color: #ffffff;
822 + background-color: #2b6fb4;
823 + border-color: #2b6fb4;
824 + }
825 + .advanced-search-btn {
826 + color: #666666;
827 + background-color: #ffffff;
828 + border-color: #dce0e0;
829 + }
830 + .advanced-search-btn:hover, .advanced-search-btn:active {
831 + color: #000000;
832 + background-color: #ffffff;
833 + border-color: #dce0e0;
834 + }
835 + .advanced-search-btn:focus {
836 + color: #666666;
837 + background-color: #ffffff;
838 + border-color: #dce0e0;
839 + }
840 + .search-expandable-label {
841 + color: #ffffff;
842 + background-color: #ff6e00;
843 + }
844 + .advanced-search-nav {
845 + padding-top: 10px;
846 + padding-bottom: 10px;
847 + }
848 + .features-list-wrap .control--checkbox,
849 + .features-list-wrap .control--radio,
850 + .range-text,
851 + .features-list-wrap .control--checkbox,
852 + .features-list-wrap .btn-features-list,
853 + .overlay-search-advanced-module .search-title,
854 + .overlay-search-advanced-module .overlay-search-module-close {
855 + color: #222222;
856 + }
857 + .advanced-search-half-map {
858 + background-color: #FFFFFF;
859 + }
860 + .advanced-search-half-map .range-text,
861 + .advanced-search-half-map .features-list-wrap .control--checkbox,
862 + .advanced-search-half-map .features-list-wrap .btn-features-list {
863 + color: #222222;
864 + }
865 +
866 + .save-search-btn {
867 + border-color: #28a745 ;
868 + background-color: #28a745 ;
869 + color: #ffffff ;
870 + }
871 + .save-search-btn:hover,
872 + .save-search-btn:active {
873 + border-color: #28a745;
874 + background-color: #28a745 ;
875 + color: #ffffff ;
876 + }
877 + .label-featured {
878 + background-color: #e22424;
879 + color: #ffffff;
880 + }
881 +
882 + .dashboard-side-wrap {
883 + background-color: #00365e;
884 + }
885 +
886 + .side-menu a {
887 + color: #ffffff;
888 + }
889 +
890 + .side-menu a.active,
891 + .side-menu .side-menu-parent-selected > a,
892 + .side-menu-dropdown a,
893 + .side-menu a:hover {
894 + color: #3385d9;
895 + }
896 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
897 + color: #2b6fb4
898 + }
899 +
900 + .detail-wrap {
901 + background-color: rgba(119,199,32,0.1);
902 + border-color: #3385d9;
903 + }
904 + .top-bar-wrap,
905 + .top-bar-wrap .dropdown-menu,
906 + .switcher-wrap .dropdown-menu {
907 + background-color: #000000;
908 + }
909 + .top-bar-wrap a,
910 + .top-bar-contact,
911 + .top-bar-slogan,
912 + .top-bar-wrap .btn,
913 + .top-bar-wrap .dropdown-menu,
914 + .switcher-wrap .dropdown-menu,
915 + .top-bar-wrap .navbar-toggler {
916 + color: #ffffff;
917 + }
918 + .top-bar-wrap a:hover,
919 + .top-bar-wrap a:active,
920 + .top-bar-wrap .btn:hover,
921 + .top-bar-wrap .btn:active,
922 + .top-bar-wrap .dropdown-menu li:hover,
923 + .top-bar-wrap .dropdown-menu li:active,
924 + .switcher-wrap .dropdown-menu li:hover,
925 + .switcher-wrap .dropdown-menu li:active {
926 + color: rgba(43,111,180,1);
927 + }
928 + .class-energy-indicator:nth-child(1) {
929 + background-color: #33a357;
930 + }
931 + .class-energy-indicator:nth-child(2) {
932 + background-color: #79b752;
933 + }
934 + .class-energy-indicator:nth-child(3) {
935 + background-color: #c3d545;
936 + }
937 + .class-energy-indicator:nth-child(4) {
938 + background-color: #fff12c;
939 + }
940 + .class-energy-indicator:nth-child(5) {
941 + background-color: #edb731;
942 + }
943 + .class-energy-indicator:nth-child(6) {
944 + background-color: #d66f2c;
945 + }
946 + .class-energy-indicator:nth-child(7) {
947 + background-color: #cc232a;
948 + }
949 + .class-energy-indicator:nth-child(8) {
950 + background-color: #cc232a;
951 + }
952 + .class-energy-indicator:nth-child(9) {
953 + background-color: #cc232a;
954 + }
955 + .class-energy-indicator:nth-child(10) {
956 + background-color: #cc232a;
957 + }
958 +
959 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
960 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
961 +
962 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
963 +
964 + .footer-top-wrap {
965 + background-color: #000000;
966 + }
967 +
968 + .footer-bottom-wrap {
969 + background-color: #000000;
970 + }
971 +
972 + .footer-top-wrap,
973 + .footer-top-wrap a,
974 + .footer-bottom-wrap,
975 + .footer-bottom-wrap a,
976 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
977 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
978 + .footer-top-wrap .blog-post-content-widget h4 a,
979 + .footer-top-wrap .blog-post-content-widget,
980 + .footer-top-wrap .form-tools .control,
981 + .footer-top-wrap .slick-dots li.slick-active button:before,
982 + .footer-top-wrap .slick-dots li button::before,
983 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
984 + color: #ffffff;
985 + }
986 +
987 + .footer-top-wrap a:hover,
988 + .footer-bottom-wrap a:hover,
989 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
990 + color: rgba(43,111,180,1);
991 + }
992 + .houzez-osm-cluster {
993 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
994 + text-align: center;
995 + color: #fff;
996 + width: 48px;
997 + height: 48px;
998 + line-height: 48px;
999 + }
1000 + .text-success{color:red!important;}
1001 +
1002 +/*.mobile-property-contact{bottom:40px;}*/
1003 +
1004 +/* Button retour en haut*/
1005 +/*
1006 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1007 +.mobile-property-contact .btn{margin-right: 60px;}
1008 +*/
1009 +
1010 +.item-tool.houzez-share{display:none;}
1011 +
1012 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1013 +
1014 +.grecaptcha-badge{display:none!important;}
1015 +
1016 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1017 +
1018 +
1019 +@media only screen and (max-width: 768px) {
1020 + /* For mobile phones: */
1021 +
1022 + /* Button retour en haut*/
1023 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1024 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1025 +}
1026 +/*# sourceURL=houzez-style-inline-css */</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1f0d98ddc76395dfaf9e3945-|49"></script><link data-asynced="1" as="style" onload="this.onload=null;this.rel='stylesheet'" rel='preload' id='leaflet-css' href='https://unpkg.com/leaflet@1.7.1/dist/leaflet.css' media='all' /><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1027 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1028 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/properties/10458" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/?p=10458' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1029 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1030 + background-image: none !important;
1031 + }
1032 + @media screen and (max-height: 1024px) {
1033 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1034 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1035 + background-image: none !important;
1036 + }
1037 + }
1038 + @media screen and (max-height: 640px) {
1039 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1040 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1041 + background-image: none !important;
1042 + }
1043 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1044 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1045 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1046 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1047 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="wp-singular property-template-default single single-property postid-10458 wp-custom-logo wp-theme-houzez translatepress-fr_CA transparent- houzez-header- elementor-default elementor-kit-6"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1048 +<a href="https://agencedelocationsherbrooke.com/">
1049 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1050 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1051 +<button class="btn toggle-button-left">
1052 +<i class="houzez-icon icon-navigation-menu"></i>
1053 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1054 +<a href="https://agencedelocationsherbrooke.com/">
1055 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1056 +</a></div></div><div class="header-mobile-right"></div></div></header><section class="content-wrap property-wrap property-detail-v6 "><div class="property-navigation-wrap"><div class="container-fluid"><ul class="property-navigation list-unstyled d-flex justify-content-between"><li class="property-navigation-item">
1057 +<a class="back-top" href="#main-wrap">
1058 +<i class="houzez-icon icon-arrow-button-circle-up"></i>
1059 +</a></li><li class="property-navigation-item">
1060 +<a class="target" href="#property-features-wrap">Inclusions</a></li><li class="property-navigation-item">
1061 +<a class="target" href="#property-description-wrap">Description</a></li><li class="property-navigation-item">
1062 +<a class="target" href="#property-address-wrap">Addresse</a></li><li class="property-navigation-item">
1063 +<a class="target" href="#property-detail-wrap">Détails</a></li><li class="property-navigation-item">
1064 +<a class="target" href="#property-video-wrap">Vidéo</a></li><li class="property-navigation-item">
1065 +<a class="target" href="#property-walkscore-wrap">Walkscore</a></li><li class="property-navigation-item">
1066 +<a class="target" href="#similar-listings-wrap">Annonces similaires</a></li></ul></div></div><div class="page-title-wrap"><div class="container"><div class="d-flex align-items-center"><div class="breadcrumb-wrap"><nav><ol class="breadcrumb"><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/"><span>Accueil</span></a></li><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/"> <span>3½</span></a></li><li class="breadcrumb-item active">1351 Lalemant #5</li></ol></nav></div><ul class="item-tools"><li class="item-tool houzez-favorite">
1067 +<span class="add-favorite-js item-tool-favorite" data-listid="10458">
1068 +<i class="houzez-icon icon-love-it "></i>
1069 +</span></li><li class="item-tool houzez-share">
1070 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1071 +<i class="houzez-icon icon-share"></i>
1072 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1073 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=1351+Lalemant+%235&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F">
1074 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&amp;t=1351+Lalemant+%235" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1075 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1076 +</a>
1077 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=1351+Lalemant+%235&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1078 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1079 +</a>
1080 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1081 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1082 +</a>
1083 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&title=1351+Lalemant+%235&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1084 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1085 +</a>
1086 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#0a7965676f65646f4a6f726b677a666f2469656735597f68606f697e373b393f3b2a466b666f676b647e2a293f2c68656e7337627e7e7a792f394b2f384c2f384c6b6d6f64696f6e6f6665696b7e63656479626f7868786565616f246965672f384c7a78657a6f787e732f384c3b393f3b27666b666f676b647e273f2f384c">
1087 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1088 +</a></div></li><li class="item-tool houzez-print " data-propid="10458">
1089 +<span class="item-tool-compare">
1090 +<i class="houzez-icon icon-print-text"></i>
1091 +</span></li></ul></div><div class="d-flex align-items-center property-title-price-wrap"><div class="page-title"><h1>1351 Lalemant #5</h1></div><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul></div><div class="property-labels-wrap">
1092 +<span class="label-featured label">Vedette</span><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1093 +Mont Bellevue
1094 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1095 +Libre maintenant
1096 +</a></div>
1097 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>1351, Rue Lalemant, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 2A9, Canada</address></div></div><div class="property-top-wrap"><div class="property-banner"><div class="visible-on-mobile"><div class="tab-content" id="pills-tabContent"><div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-scaled.jpeg);"><div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 5</div><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1098 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1099 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1100 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [1351 Lalemant #5]</textarea></div>
1101 +<input type="hidden" name="target_email" value="&#99;&#97;th&#101;&#114;ine&#46;perr&#101;au&#108;&#116;&#64;pres&#116;&#105;&#112;&#108;&#101;&#120;&#46;&#99;om">
1102 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1103 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/"/>
1104 +<input type="hidden" name="property_title" value="1351 Lalemant #5"/>
1105 +<input type="hidden" name="property_id" value="ADLS-10458"/>
1106 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1107 +<input type="hidden" name="listing_id" value="10458">
1108 +<input type="hidden" name="is_listing_form" value="yes">
1109 +<input type="hidden" name="agent_id" value="156">
1110 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1111 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1112 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1113 +</button></form></div></div><a class="houzez-photoswipe-trigger property-banner-trigger" href="#"></a></div><div class="tab-pane houzez-top-area-video " id="pills-video" role="tabpanel" aria-labelledby="pills-video-tab">
1114 +<iframe data-lazyloaded="1" src="about:blank" title="1351 lalemant #5, Sherbrooke, Quebec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/2iJAhO7JY28?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div><div class="container hidden-on-mobile"><div class="row"><div class="col-md-8">
1115 +<a href="#" data-slider-no="1" data-image="0" class="houzez-photoswipe-trigger img-wrap-1" >
1116 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-758x564.jpeg" alt="" width="758" height="564" />
1117 +</a></div><div class="col-md-4">
1118 +<a href="#" data-slider-no="2" data-image="1" class="houzez-photoswipe-trigger swipebox img-wrap-2">
1119 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223207.657-758x564.jpeg" alt="" width="758" height="564" />
1120 +</a>
1121 +<a href="#" data-slider-no="3" data-image="2" class="houzez-photoswipe-trigger swipebox img-wrap-3"><div class="img-wrap-3-text">2 Plus</div>
1122 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223206.033-758x564.jpeg" alt="" width="758" height="564" />
1123 +</a></div>
1124 +<a href="#" class="img-wrap-1 gallery-hidden">
1125 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223205.083-758x564.jpeg" alt="" width="758" height="564" />
1126 +</a>
1127 +<a href="#" class="img-wrap-1 gallery-hidden">
1128 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223203.875-758x564.jpeg" alt="" width="758" height="564" />
1129 +</a><div class="col-md-12"><div class="block-wrap"><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>3½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-beds">Chambre</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div></div></div><div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"><div class="pswp__bg"></div><div class="pswp__scroll-wrap"><div class="pswp__container"><div class="pswp__item"></div><div class="pswp__item"></div><div class="pswp__item"></div></div><div class="pswp__ui pswp__ui--hidden"><div class="pswp__top-bar"><div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button><button class="pswp__button pswp__button--share" title="Share"></button><button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button><button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button><div class="pswp__preloader"><div class="pswp__preloader__icn"><div class="pswp__preloader__cut"><div class="pswp__preloader__donut"></div></div></div></div></div><div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"><div class="pswp__share-tooltip"></div></div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
1130 +</button><button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
1131 +</button><div class="pswp__caption"><div class="pswp__caption__center"></div></div></div></div></div> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">initPhotoswipeDomForJson({"1":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223210.052-scaled.jpeg","w":1920,"h":2560},"2":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223207.657-scaled.jpeg","w":1920,"h":2560},"3":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223206.033-scaled.jpeg","w":1920,"h":2560},"4":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223205.083-scaled.jpeg","w":1920,"h":2560},"5":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223203.875-scaled.jpeg","w":1920,"h":2560}});function initPhotoswipeDomForJson(imageData){var pswpElement=document.querySelectorAll('.pswp')[0];var items=[],item;jQuery.each(imageData,function(i,obj){item={src:obj.src,w:obj.w,h:obj.h};items.push(item)});var options={index:0};var x=document.querySelectorAll(".houzez-photoswipe-trigger");for(let i=0;i<x.length;i++){x[i].addEventListener("click",function(){openGallery(x[i].dataset.image)})}
1132 +function openGallery(j){options.index=parseInt(j);options.history=!1;gallery=new PhotoSwipe(pswpElement,PhotoSwipeUI_Default,items,options);gallery.init()}}</script> </div><div class="container"><div class="row"><div class="col-lg-12 col-md-12 bt-full-width-content-wrap"><div class="property-view"><div class="visible-on-mobile"><div class="mobile-top-wrap"><div class="mobile-property-tools clearfix"><ul class="nav nav-pills houzez-media-tabs-4" id="pills-tab" role="tablist"><li class="nav-item">
1133 +<a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1134 +<i class="houzez-icon icon-picture-sun"></i>
1135 +</a></li><li class="nav-item">
1136 +<a class="nav-link " id="pills-video-tab" data-toggle="pill" href="#pills-video" role="tab" aria-controls="pills-video" aria-selected="true">
1137 +<i class="houzez-icon icon-video-player-movie-1"></i>
1138 +</a></li></ul><ul class="item-tools"><li class="item-tool houzez-favorite">
1139 +<span class="add-favorite-js item-tool-favorite" data-listid="10458">
1140 +<i class="houzez-icon icon-love-it "></i>
1141 +</span></li><li class="item-tool houzez-share">
1142 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1143 +<i class="houzez-icon icon-share"></i>
1144 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1145 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=1351+Lalemant+%235&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F">
1146 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&amp;t=1351+Lalemant+%235" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1147 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1148 +</a>
1149 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=1351+Lalemant+%235&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1150 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1151 +</a>
1152 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1153 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1154 +</a>
1155 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&title=1351+Lalemant+%235&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1156 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1157 +</a>
1158 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#deadb1b3bbb1b0bb9ebba6bfb3aeb2bbf0bdb1b3e18dabbcb4bbbdaae3efedebeffe92bfb2bbb3bfb0aafefdebf8bcb1baa7e3b6aaaaaeadfbed9ffbec98fbec98bfb9bbb0bdbbbabbb2b1bdbfaab7b1b0adb6bbacbcacb1b1b5bbf0bdb1b3fbec98aeacb1aebbacaaa7fbec98efedebeff3b2bfb2bbb3bfb0aaf3ebfbec98">
1159 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1160 +</a></div></li><li class="item-tool houzez-print " data-propid="10458">
1161 +<span class="item-tool-compare">
1162 +<i class="houzez-icon icon-print-text"></i>
1163 +</span></li></ul></div><div class="mobile-property-title clearfix">
1164 +<span class="label-featured label">Vedette</span> <span class="labels-wrap labels-right">
1165 +<a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1166 +Mont Bellevue
1167 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1168 +Libre maintenant
1169 +</a>
1170 +</span>
1171 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>1351, Rue Lalemant, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 2A9, Canada</address><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul></div></div><div class="property-overview-wrap property-section-wrap" id="property-overview-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Apperçu</h2><div><strong># Annonce:</strong> ADLS-10458</div></div><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>3½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-beds">Chambre</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div><div class="property-features-wrap property-section-wrap" id="property-features-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Inclusions</h2></div><div class="block-content-wrap"><ul class="list-3-cols list-unstyled"><li><i class="fas fa-cat mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/chat-permis/">Chat permis</a></li><li><i class="fas fa-thermometer-half mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/chauffage/">Chauffage</a></li><li><i class="fas fa-snowplow mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/deneigement/">Déneigement</a></li><li><i class="fas fa-shower mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/eau-chaude/">Eau chaude</a></li><li><i class="houzez-icon icon-check-circle-1 mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/entre-lave-vaisselle/">Entré lave-vaisselle</a></li><li><i class="houzez-icon icon-check-circle-1 mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/entre-laveuse-secheuse/">Entré laveuse/sécheuse</a></li><li><i class="fas fa-wifi mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/wifi/">Wi-Fi</a></li></ul></div></div></div><div class="property-description-wrap property-section-wrap" id="property-description-wrap"><div class="block-wrap"><div class="block-title-wrap"><h2>Description</h2></div><div class="block-content-wrap"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true" data-pm-slice="1 3 []"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">3 ½ à louer – Disponible maintenant</strong></p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">925 $/mois – Chauffage, eau chaude et internet inclus</strong></p><ul class="ak-ul" data-prosemirror-content-type="node" data-prosemirror-node-name="bulletList" data-prosemirror-node-block="true"><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Logement non-fumeur</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Rez-de-jardin/ Demi sous-sol</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">1 espace de stationnement inclus</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Un chat accepté (chiens non permis)</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Enquête de crédit obligatoire</p></li></ul></div></div></div><div class="property-address-wrap property-section-wrap" id="property-address-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Addresse</h2><a class="btn btn-primary btn-slim" href="https://maps.google.com/?q=1351,%20Rue%20Lalemant,%20Mont-Bellevue,%20Les%20Nations,%20Sherbrooke,%20Estrie,%20Québec,%20J1H%202A9,%20Canada" target="_blank"><i class="houzez-icon icon-maps mr-1"></i> Ouvrir sur Google Maps</a></div><div class="block-content-wrap"><ul class="list-2-cols list-unstyled"><li class="detail-address"><strong>Addresse</strong> <span>1351, Rue Lalemant, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 2A9, Canada</span></li><li class="detail-zip"><strong>Zip / Code postal</strong> <span>J1H 2A9</span></li></ul></div><div id="houzez-single-listing-map" class="block-map-wrap"></div></div></div><div class="property-detail-wrap property-section-wrap" id="property-detail-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Détails</h2>
1172 +<span class="small-text grey"><i class="houzez-icon icon-calendar-3 mr-1"></i> Mise à jour le juillet 10, 2026 à 2:39 am</span></div><div class="block-content-wrap"><div class="detail-wrap"><ul class="list-2-cols list-unstyled"><li>
1173 +<strong># Annonce:</strong>
1174 +<span>ADLS-10458</span></li><li>
1175 +<strong>Prix:</strong>
1176 +<span> 925$/mensuel</span></li><li>
1177 +<strong>Chambre:</strong>
1178 +<span>1</span></li><li>
1179 +<strong>Pièces:</strong>
1180 +<span>3</span></li><li>
1181 +<strong>Salle de bain:</strong>
1182 +<span>1</span></li><li>
1183 +<strong>Stationnement:</strong>
1184 +<span>1</span></li><li class="prop_type">
1185 +<strong>Type:</strong>
1186 +<span>3½</span></li><li class="prop_status">
1187 +<strong>Statut:</strong>
1188 +<span>Mont Bellevue</span></li></ul></div></div></div></div><div class="property-video-wrap property-section-wrap" id="property-video-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Vidéo</h2></div><div class="block-content-wrap"><div class="block-video-wrap">
1189 +<iframe data-lazyloaded="1" src="about:blank" title="1351 lalemant #5, Sherbrooke, Quebec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/2iJAhO7JY28?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div></div><div class="property-walkscore-wrap property-section-wrap" id="property-walkscore-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Walkscore</h2></div><div class="block-content-wrap"><div id="ws-walkscore-tile"></div></div></div></div><div class="property-contact-agent-wrap property-section-wrap" id="property-contact-agent-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Coordonnées</h2><a class="btn btn-primary btn-slim" href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/" target="_blank">Voir les annonces</a></div><div class="block-content-wrap"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="80" height="80"></a></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-phone-wrap clearfix"></li></ul></div></div><div class="block-title-wrap"><h3>Renseignez-vous sur cette propriété</h3></div><div class="form_messages"></div><div class="row"><div class="col-md-6 col-sm-12"><div class="form-group">
1190 +<label>Nom</label>
1191 +<input class="form-control" name="name" placeholder="Entrez votre nom" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1192 +<label>Téléphone</label>
1193 +<input class="form-control" name="mobile" placeholder="Entrez votre numéro de téléphone" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1194 +<label>Courriel</label>
1195 +<input class="form-control" name="email" placeholder="Entrer votre courriel" type="email"></div></div><div class="col-sm-12 col-xs-12"><div class="form-group form-group-textarea">
1196 +<label>Message</label><textarea class="form-control hz-form-message" name="message" rows="5" placeholder="Entrez votre message">Bonjour, je suis intéressé par [1351 Lalemant #5]</textarea></div></div><div class="col-sm-12 col-xs-12">
1197 +<input type="hidden" name="target_email" value="ca&#116;h&#101;rin&#101;.pe&#114;&#114;&#101;&#97;&#117;&#108;t&#64;p&#114;e&#115;ti&#112;lex.com">
1198 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1199 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/"/>
1200 +<input type="hidden" name="property_title" value="1351 Lalemant #5"/>
1201 +<input type="hidden" name="property_id" value="ADLS-10458"/>
1202 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1203 +<input type="hidden" class="is_bottom" value="bottom">
1204 +<input type="hidden" name="listing_id" value="10458">
1205 +<input type="hidden" name="is_listing_form" value="yes">
1206 +<input type="hidden" name="agent_id" value="156">
1207 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><button class="houzez_agent_property_form btn btn-secondary btn-sm-full-width">
1208 +<span class="btn-loader houzez-loader-js"></span> Demande d'informations
1209 +</button></div></div></form></div></div></div><div id="similar-listings-wrap" class="similar-property-wrap listing-v1"><div class="block-title-wrap"><h2>Annonces similaires</h2></div><div class="listing-view list-view card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10485" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165930.293-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165930.293-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165928.922-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165926.097-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165924.591-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165923.134-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165921.885-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1210 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1211 +Mont Bellevue
1212 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1213 +Libre maintenant
1214 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1215 +<span class="hz-show-lightbox-js" data-listid="10485" data-toggle="tooltip" data-placement="top" title="Aperçu">
1216 +<i class="houzez-icon icon-expand-3"></i>
1217 +</span></li><li class="item-tool item-favorite">
1218 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10485">
1219 +<i class="houzez-icon icon-love-it "></i>
1220 +</span></li><li class="item-tool item-compare">
1221 +<span class="houzez_compare compare-10485 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10485" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-592x444.jpeg">
1222 +<i class="houzez-icon icon-add-circle"></i>
1223 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1224 +<a href="https://agencedelocationsherbrooke.com/property/951-fabre/" class="listing-featured-thumb hover-effect">
1225 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1226 +Mont Bellevue
1227 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1228 +Libre maintenant
1229 +</a></div><h2 class="item-title">
1230 +<a href="https://agencedelocationsherbrooke.com/property/951-fabre/">951 Fabre</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul> <address class="item-address">951, Rue Fabre, Les Nations, Sherbrooke, Estrie, Québec, J1H 4R6, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lit:</span> <span class="hz-figure">1</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>3½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/951-fabre/">
1231 +Détails</a><div class="item-author">
1232 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1233 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1234 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1235 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10466" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224027.371-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224027.371-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224028.416-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224026.249-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224031.334-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224025.351-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224032.728-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1236 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1237 +Mont Bellevue
1238 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1239 +Libre maintenant
1240 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1241 +<span class="hz-show-lightbox-js" data-listid="10466" data-toggle="tooltip" data-placement="top" title="Aperçu">
1242 +<i class="houzez-icon icon-expand-3"></i>
1243 +</span></li><li class="item-tool item-favorite">
1244 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10466">
1245 +<i class="houzez-icon icon-love-it "></i>
1246 +</span></li><li class="item-tool item-compare">
1247 +<span class="houzez_compare compare-10466 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10466" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-592x444.jpeg">
1248 +<i class="houzez-icon icon-add-circle"></i>
1249 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1250 +<a href="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/" class="listing-featured-thumb hover-effect">
1251 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1252 +Mont Bellevue
1253 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1254 +Libre maintenant
1255 +</a></div><h2 class="item-title">
1256 +<a href="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/">1625 Grands-Monts #4</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul> <address class="item-address">1625, Rue des Grands-Monts, Ascot, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3Y9, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lit:</span> <span class="hz-figure">1</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>3½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/">
1257 +Détails</a><div class="item-author">
1258 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1259 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1260 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1261 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10451" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172902.091-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172902.091-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172900.846-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172859.886-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172858.813-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172855.820-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172852.674-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172854.696-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172853.719-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1262 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1263 +Mont Bellevue
1264 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1265 +Libre maintenant
1266 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">795$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1267 +<span class="hz-show-lightbox-js" data-listid="10451" data-toggle="tooltip" data-placement="top" title="Aperçu">
1268 +<i class="houzez-icon icon-expand-3"></i>
1269 +</span></li><li class="item-tool item-favorite">
1270 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10451">
1271 +<i class="houzez-icon icon-love-it "></i>
1272 +</span></li><li class="item-tool item-compare">
1273 +<span class="houzez_compare compare-10451 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10451" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg">
1274 +<i class="houzez-icon icon-add-circle"></i>
1275 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1276 +<a href="https://agencedelocationsherbrooke.com/property/905-courcelette/" class="listing-featured-thumb hover-effect">
1277 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1278 +Mont Bellevue
1279 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1280 +Libre maintenant
1281 +</a></div><h2 class="item-title">
1282 +<a href="https://agencedelocationsherbrooke.com/property/905-courcelette/">905 Courcelette</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">795$/mensuel</li></ul> <address class="item-address">Rue de Courcelette, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3V3, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lit:</span> <span class="hz-figure">1</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>3½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/905-courcelette/">
1283 +Détails</a><div class="item-author">
1284 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1285 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1286 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1287 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></section></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1288 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1289 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1290 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1291 +<i class="houzez-icon icon-arrow-up-1"></i>
1292 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1293 +<button class="compare-property-label" style="display: none;">
1294 +<span class="compare-count compare-label"></span>
1295 +<i class="houzez-icon icon-move-left-right"></i>
1296 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1297 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1298 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1299 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1300 +<span aria-hidden="true">&times;</span>
1301 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1302 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1303 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1304 +<label class="control control--checkbox flex-grow-1">
1305 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1306 +</label>
1307 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/property/1351-lalemant-5/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1308 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/?login=success">
1309 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1310 +<span class="btn-loader houzez-loader-js"></span> Connexion
1311 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1312 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1313 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1314 +<span aria-hidden="true">&times;</span>
1315 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1316 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1317 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/property/1351-lalemant-5/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1318 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><div class="mobile-property-contact visible-on-mobile"><div class="d-flex justify-content-between"><div class="agent-details flex-grow-1"><div class="d-flex align-items-center"><div class="agent-image">
1319 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" width="50" height="50" alt="Catherine Perreault"></div><ul class="agent-information list-unstyled"><li class="agent-name">
1320 +Catherine Perreault</li></ul></div></div>
1321 +<button class="btn btn-secondary" data-toggle="modal" data-target="#mobile-property-form">
1322 +<i class="houzez-icon icon-messages-bubble"></i>
1323 +</button></div></div><div class="modal fade mobile-property-form" id="mobile-property-form"><div class="modal-dialog" role="document"><div class="modal-content">
1324 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1325 +<span aria-hidden="true">&times;</span>
1326 +</button><div class="modal-body"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1327 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1328 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1329 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [1351 Lalemant #5]</textarea></div>
1330 +<input type="hidden" name="target_email" value="c&#97;&#116;her&#105;n&#101;&#46;&#112;&#101;&#114;r&#101;au&#108;t&#64;p&#114;estipl&#101;x&#46;&#99;&#111;m">
1331 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1332 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/"/>
1333 +<input type="hidden" name="property_title" value="1351 Lalemant #5"/>
1334 +<input type="hidden" name="property_id" value="ADLS-10458"/>
1335 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1336 +<input type="hidden" name="listing_id" value="10458">
1337 +<input type="hidden" name="is_listing_form" value="yes">
1338 +<input type="hidden" name="agent_id" value="156">
1339 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1340 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1341 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1342 +</button></form></div></div></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div class="modal-content"><div class="modal-header"><div class="d-flex align-items-center"><div class="lightbox-logo">
1343 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white.png" alt="1351 Lalemant #5" width="127" height="32" /></div><div class="lightbox-title flex-grow-1"></div><div class="lightbox-tools"><ul class="list-inline"><li class="list-inline-item btn-favorite">
1344 +<a class="add-favorite-js" data-listid="10458" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Favoris</span></a></li><li class="list-inline-item btn-share">
1345 +<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Partager</span></a><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1346 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=1351+Lalemant+%235&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F">
1347 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&amp;t=1351+Lalemant+%235" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1348 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1349 +</a>
1350 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=1351+Lalemant+%235&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1351 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1352 +</a>
1353 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1354 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1355 +</a>
1356 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1351-lalemant-5%2F&title=1351+Lalemant+%235&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-1f0d98ddc76395dfaf9e3945-="">
1357 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1358 +</a>
1359 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#04776b69616b6a6144617c65697468612a676b693b5771666e6167703935373135244865686169656a7024273122666b607d396c707074772137452136422136426563616a67616061686b6765706d6b6a776c617666766b6b6f612a676b6921364274766b746176707d21364235373135296865686169656a702931213642">
1360 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1361 +</a></div></li><li class="list-inline-item btn-email">
1362 +<a href="#"><i class="houzez-icon icon-envelope"></i></a></li></ul></div></div>
1363 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1364 +<span aria-hidden="true">&times;</span>
1365 +</button></div><div class="modal-body clearfix"><div class="lightbox-gallery-wrap ">
1366 +<a class="btn-expand">
1367 +<i class="houzez-icon icon-expand-3"></i>
1368 +</a><div class="lightbox-gallery"><div id="lightbox-slider-js" class="lightbox-slider"><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-scaled.jpeg" alt="" title="image - 2026-07-09T223210.052" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223207.657-scaled.jpeg" alt="" title="image - 2026-07-09T223207.657" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223206.033-scaled.jpeg" alt="" title="image - 2026-07-09T223206.033" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223205.083-scaled.jpeg" alt="" title="image - 2026-07-09T223205.083" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223203.875-scaled.jpeg" alt="" title="image - 2026-07-09T223203.875" width="1920" height="2560" /></div></div></div></div><div class="lightbox-form-wrap"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1369 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1370 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1371 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [1351 Lalemant #5]</textarea></div>
1372 +<input type="hidden" name="target_email" value="cat&#104;&#101;r&#105;n&#101;.p&#101;&#114;&#114;&#101;a&#117;lt&#64;&#112;res&#116;iple&#120;.c&#111;m">
1373 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1374 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/"/>
1375 +<input type="hidden" name="property_title" value="1351 Lalemant #5"/>
1376 +<input type="hidden" name="property_id" value="ADLS-10458"/>
1377 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1378 +<input type="hidden" name="listing_id" value="10458">
1379 +<input type="hidden" name="is_listing_form" value="yes">
1380 +<input type="hidden" name="agent_id" value="156">
1381 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1382 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1383 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1384 +</button></form></div></div></div></div><div class="modal-footer"></div></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1385 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="1f0d98ddc76395dfaf9e3945-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1386 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="bootstrap-datepicker.fr-CA-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr-CA.min.js"></script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com/property/1351-lalemant-5/","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_nav","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"fr-CA","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="leaflet-js" type="litespeed/javascript" data-src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script> <script id="houzez-single-property-map-js-extra" type="litespeed/javascript">var houzez_single_property_map={"title":"1351 Lalemant #5","price":" 925$/mensuel","property_id":"10458","pricePin":"925$/mensuel","property_type":"3\u00bd","address":"1351, Rue Lalemant, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Qu\u00e9bec, J1H 2A9, Canada","lat":"45.3856025","lng":"-71.9091871","term_id":"100","marker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","retinaMarker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","thumbnail":"https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-120x90.jpeg"};var houzez_map_options={"markerPricePins":"no","single_map_zoom":"12","map_type":"roadmap","map_pin_type":"marker","googlemap_stype":"","closeIcon":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/close.png","infoWindowPlac":"https://placehold.it/120x90&text=Agence+de+location+Sherbrooke"}</script> <script id="houzez-walkscore-js-before" type="litespeed/javascript">var ws_wsid=' 65c6f7843483895d5d5ef58e01b2d789';var ws_address='1351, Rue Lalemant, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 2A9, Canada';var ws_format='wide';var ws_width='650';var ws_width='100%';var ws_height='400'</script> <script id="houzez-walkscore-js" type="litespeed/javascript" data-src="https://www.walkscore.com/tile/show-walkscore-tile.php"></script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1387 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="1f0d98ddc76395dfaf9e3945-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="1f0d98ddc76395dfaf9e3945-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="1f0d98ddc76395dfaf9e3945-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/7eb3e0d215c9a5e36449ede9b8431764.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="1f0d98ddc76395dfaf9e3945-|49" defer></script></body></html>
1388 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:31:41 -->
1389 +
1390 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:31:41 -->
1391 +<!-- Guest Mode -->
1392 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/ed93c1ba2200a9da666c9871ea0b8f1b.css -->
1393 +<!-- QUIC.cloud UCSS loaded ✅ /ucss/c8ab2effd4a60b940b5d1ea1e62d48c0.css -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/2261c4fe67ca9cd614da.html +1326 −0
@@ -0,0 +1,1326 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="f9936141f2fee8323bcdddef-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>368 Fusiliers - Agence de location Sherbrooke</title><meta name="description" content="5 1/2 à louer disponible 1er octobre *Il est interdit de fumer dans l’appartement et dans l’immeuble -Internet inclus -Rez-de-chaussé-Thermopompe-1 stationnement inclus et possible-Entrée indépendante-1 chat accepté, chien interdit-Enquête de crédit obligatoire" /><meta name="robots" content="max-image-preview:large" /><meta name="author" content="Catherine Perreault"/><link rel="canonical" href="https://agencedelocationsherbrooke.com/property/368-fusiliers/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="article" /><meta property="og:title" content="368 Fusiliers - Agence de location Sherbrooke" /><meta property="og:description" content="5 1/2 à louer disponible 1er octobre *Il est interdit de fumer dans l’appartement et dans l’immeuble -Internet inclus -Rez-de-chaussé-Thermopompe-1 stationnement inclus et possible-Entrée indépendante-1 chat accepté, chien interdit-Enquête de crédit obligatoire" /><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/368-fusiliers/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-scaled.jpeg" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-scaled.jpeg" /><meta property="og:image:width" content="1920" /><meta property="og:image:height" content="2560" /><meta property="article:published_time" content="2026-06-19T04:23:20+00:00" /><meta property="article:modified_time" content="2026-06-19T04:23:20+00:00" /><meta property="article:publisher" content="https://www.facebook.com/agencedelocationsherbrooke" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="368 Fusiliers - Agence de location Sherbrooke" /><meta name="twitter:description" content="5 1/2 à louer disponible 1er octobre *Il est interdit de fumer dans l’appartement et dans l’immeuble -Internet inclus -Rez-de-chaussé-Thermopompe-1 stationnement inclus et possible-Entrée indépendante-1 chat accepté, chien interdit-Enquête de crédit obligatoire" /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/368-fusiliers\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","position":2,"name":"Properties","item":"https:\/\/agencedelocationsherbrooke.com\/property\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","name":"5\u00bd"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","position":3,"name":"5\u00bd","item":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/368-fusiliers\/#listItem","name":"368 Fusiliers"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/368-fusiliers\/#listItem","position":4,"name":"368 Fusiliers","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","name":"5\u00bd"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/368-fusiliers\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/368-fusiliers\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"Person","@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author","url":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/","name":"Catherine Perreault","image":{"@type":"ImageObject","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/368-fusiliers\/#authorImage","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/litespeed\/avatar\/fdca211e8cbd2f88b79d873de06d8fa9.jpg?ver=1785951645","width":96,"height":96,"caption":"Catherine Perreault"}},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/368-fusiliers\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/property\/368-fusiliers\/","name":"368 Fusiliers - Agence de location Sherbrooke","description":"5 1\/2 \u00e0 louer disponible 1er octobre *Il est interdit de fumer dans l\u2019appartement et dans l\u2019immeuble -Internet inclus -Rez-de-chauss\u00e9-Thermopompe-1 stationnement inclus et possible-Entr\u00e9e ind\u00e9pendante-1 chat accept\u00e9, chien interdit-Enqu\u00eate de cr\u00e9dit obligatoire","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/368-fusiliers\/#breadcrumblist"},"author":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"creator":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001946.848-scaled.jpeg","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/368-fusiliers\/#mainImage","width":1920,"height":2560},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/368-fusiliers\/#mainImage"},"datePublished":"2026-06-19T04:23:20+00:00","dateModified":"2026-06-19T04:23:20+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//unpkg.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&#038;format=xml" /><meta property="og:title" content="368 Fusiliers"/><meta property="og:description" content="5 1/2 à louer disponible 1er octobre
2 +*Il est interdit de fumer dans l’appartement et dans l’immeuble
3 +-Internet inclus
4 +-Rez-de-chaussé-Thermopompe-1 statio" /><meta property="og:type" content="article"/><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/368-fusiliers/"/><meta property="og:site_name" content="Agence de location Sherbrooke"/><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-scaled.jpeg"/><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
5 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}body{font-size:15px;font-family:Roboto,sans-serif}body{background-color:#f8f8f8}body{color:#222}body{line-height:25px;font-weight:300;text-transform:none}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}body{background-color:#f7f7f7}body{color:#222}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="f9936141f2fee8323bcdddef-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/ucss/53df4ecf63a221f01557df7a2c0b1e14.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="wp-block-library-inline-css">:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
6 +
7 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */</style><style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
8 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
9 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
10 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
11 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
12 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
13 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
14 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
15 + .container {
16 + max-width: 1210px;
17 + }
18 + }
19 + .label-color-87 {
20 + background-color: #31af00;
21 + }
22 +
23 + .status-color-28 {
24 + background-color: #dd9933;
25 + }
26 +
27 + .status-color-88 {
28 + background-color: #b7ba00;
29 + }
30 +
31 + .status-color-95 {
32 + background-color: #dd3333;
33 + }
34 +
35 + .status-color-94 {
36 + background-color: #1e73be;
37 + }
38 +
39 + .status-color-89 {
40 + background-color: #31af00;
41 + }
42 +
43 + body {
44 + font-family: Poppins;
45 + font-size: 16px;
46 + font-weight: 400;
47 + line-height: 24px;
48 + text-transform: none;
49 + }
50 + .main-nav,
51 + .dropdown-menu,
52 + .login-register,
53 + .btn.btn-create-listing,
54 + .logged-in-nav,
55 + .btn-phone-number {
56 + font-family: Poppins;
57 + font-size: 14px;
58 + font-weight: 400;
59 + text-align: left;
60 + text-transform: uppercase;
61 + }
62 +
63 + .btn,
64 + .form-control,
65 + .bootstrap-select .text,
66 + .sort-by-title,
67 + .woocommerce ul.products li.product .button {
68 + font-family: Poppins;
69 + font-size: 16px;
70 + }
71 +
72 + h1, h2, h3, h4, h5, h6, .item-title {
73 + font-family: Poppins;
74 + font-weight: 400;
75 + text-transform: capitalize;
76 + }
77 +
78 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
79 + font-weight: 400;
80 + text-transform: capitalize;
81 + text-align: inherit;
82 + }
83 +
84 + .top-bar-wrap {
85 + font-family: Poppins;
86 + font-size: 15px;
87 + font-weight: 300;
88 + line-height: 25px;
89 + text-align: left;
90 + text-transform: none;
91 + }
92 + .footer-wrap {
93 + font-family: Poppins;
94 + font-size: 14px;
95 + font-weight: 300;
96 + line-height: 25px;
97 + text-align: left;
98 + text-transform: none;
99 + }
100 +
101 + .header-v1 .header-inner-wrap,
102 + .header-v1 .navbar-logged-in-wrap {
103 + line-height: 60px;
104 + height: 60px;
105 + }
106 + .header-v2 .header-top .navbar {
107 + height: 110px;
108 + }
109 +
110 + .header-v2 .header-bottom .header-inner-wrap,
111 + .header-v2 .header-bottom .navbar-logged-in-wrap {
112 + line-height: 54px;
113 + height: 54px;
114 + }
115 +
116 + .header-v3 .header-top .header-inner-wrap,
117 + .header-v3 .header-top .header-contact-wrap {
118 + height: 80px;
119 + line-height: 80px;
120 + }
121 + .header-v3 .header-bottom .header-inner-wrap,
122 + .header-v3 .header-bottom .navbar-logged-in-wrap {
123 + line-height: 54px;
124 + height: 54px;
125 + }
126 + .header-v4 .header-inner-wrap,
127 + .header-v4 .navbar-logged-in-wrap {
128 + line-height: 90px;
129 + height: 90px;
130 + }
131 + .header-v5 .header-top .header-inner-wrap,
132 + .header-v5 .header-top .navbar-logged-in-wrap {
133 + line-height: 110px;
134 + height: 110px;
135 + }
136 + .header-v5 .header-bottom .header-inner-wrap {
137 + line-height: 54px;
138 + height: 54px;
139 + }
140 + .header-v6 .header-inner-wrap,
141 + .header-v6 .navbar-logged-in-wrap {
142 + height: 60px;
143 + line-height: 60px;
144 + }
145 + @media (min-width: 1200px) {
146 + .header-v5 .header-top .container {
147 + max-width: 1170px;
148 + }
149 + }
150 +
151 + body,
152 + .main-wrap,
153 + .fw-property-documents-wrap h3 span,
154 + .fw-property-details-wrap h3 span {
155 + background-color: #f7f7f7;
156 + }
157 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
158 + background-color: #ffffff;
159 + }
160 +
161 + body,
162 + .form-control,
163 + .bootstrap-select .text,
164 + .item-title a,
165 + .listing-tabs .nav-tabs .nav-link,
166 + .item-wrap-v2 .item-amenities li span,
167 + .item-wrap-v2 .item-amenities li:before,
168 + .item-parallax-wrap .item-price-wrap,
169 + .list-view .item-body .item-price-wrap,
170 + .property-slider-item .item-price-wrap,
171 + .page-title-wrap .item-price-wrap,
172 + .agent-information .agent-phone span a,
173 + .property-overview-wrap ul li strong,
174 + .mobile-property-title .item-price-wrap .item-price,
175 + .fw-property-features-left li a,
176 + .lightbox-content-wrap .item-price-wrap,
177 + .blog-post-item-v1 .blog-post-title h3 a,
178 + .blog-post-content-widget h4 a,
179 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
180 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
181 + .agent-list-wrap .agent-list-content h2 a,
182 + .agent-list-wrap .agent-list-contact li a,
183 + .agent-contacts-wrap li a,
184 + .menu-edit-property li a,
185 + .statistic-referrals-list li a,
186 + .chart-nav .nav-pills .nav-link,
187 + .dashboard-table-properties td .property-payment-status,
188 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
189 + .payment-method-block .radio-tab .control-text,
190 + .post-title-wrap h2 a,
191 + .lead-nav-tab.nav-pills .nav-link,
192 + .deals-nav-tab.nav-pills .nav-link,
193 + .btn-light-grey-outlined:hover,
194 + button:not(.bs-placeholder) .filter-option-inner-inner,
195 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
196 + .products > .product > .item-body > a,
197 + .woocommerce ul.products li.product .price,
198 + .woocommerce div.product p.price,
199 + .woocommerce div.product span.price,
200 + .woocommerce #reviews #comments ol.commentlist li .meta,
201 + .woocommerce-MyAccount-navigation ul li a,
202 + .activitiy-item-close-button a,
203 + .property-section-wrap li a {
204 + color: #222222;
205 + }
206 +
207 +
208 +
209 + a,
210 + a:hover,
211 + a:active,
212 + a:focus,
213 + .primary-text,
214 + .btn-clear,
215 + .btn-apply,
216 + .btn-primary-outlined,
217 + .btn-primary-outlined:before,
218 + .item-title a:hover,
219 + .sort-by .bootstrap-select .bs-placeholder,
220 + .sort-by .bootstrap-select > .btn,
221 + .sort-by .bootstrap-select > .btn:active,
222 + .page-link,
223 + .page-link:hover,
224 + .accordion-title:before,
225 + .blog-post-content-widget h4 a:hover,
226 + .agent-list-wrap .agent-list-content h2 a:hover,
227 + .agent-list-wrap .agent-list-contact li a:hover,
228 + .agent-contacts-wrap li a:hover,
229 + .agent-nav-wrap .nav-pills .nav-link,
230 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
231 + .menu-edit-property li a.active,
232 + .menu-edit-property li a:hover,
233 + .dashboard-statistic-block h3 .fa,
234 + .statistic-referrals-list li a:hover,
235 + .chart-nav .nav-pills .nav-link.active,
236 + .board-message-icon-wrap.active,
237 + .post-title-wrap h2 a:hover,
238 + .listing-switch-view .switch-btn.active,
239 + .item-wrap-v6 .item-price-wrap,
240 + .listing-v6 .list-view .item-body .item-price-wrap,
241 + .woocommerce nav.woocommerce-pagination ul li a,
242 + .woocommerce nav.woocommerce-pagination ul li span,
243 + .woocommerce-MyAccount-navigation ul li a:hover,
244 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
245 + .property-schedule-tour-form-wrap .control:hover,
246 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
247 + .login-register .btn-icon-login-register + .dropdown-menu a,
248 + .activitiy-item-close-button a:hover,
249 + .property-section-wrap li a:hover,
250 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
251 + color: #3385d9;
252 + }
253 +
254 + .agent-list-position a {
255 + color: #3385d9;
256 + }
257 +
258 + .control input:checked ~ .control__indicator,
259 + .top-banner-wrap .nav-pills .nav-link,
260 + .btn-primary-outlined:hover,
261 + .page-item.active .page-link,
262 + .slick-prev:hover,
263 + .slick-prev:focus,
264 + .slick-next:hover,
265 + .slick-next:focus,
266 + .mobile-property-tools .nav-pills .nav-link.active,
267 + .login-register-form .modal-header,
268 + .agent-nav-wrap .nav-pills .nav-link.active,
269 + .board-message-icon-wrap .notification-circle,
270 + .primary-label,
271 + .fc-event, .fc-event-dot,
272 + .compare-table .table-hover > tbody > tr:hover,
273 + .post-tag,
274 + .datepicker table tr td.active.active,
275 + .datepicker table tr td.active.disabled,
276 + .datepicker table tr td.active.disabled.active,
277 + .datepicker table tr td.active.disabled.disabled,
278 + .datepicker table tr td.active.disabled:active,
279 + .datepicker table tr td.active.disabled:hover,
280 + .datepicker table tr td.active.disabled:hover.active,
281 + .datepicker table tr td.active.disabled:hover.disabled,
282 + .datepicker table tr td.active.disabled:hover:active,
283 + .datepicker table tr td.active.disabled:hover:hover,
284 + .datepicker table tr td.active.disabled:hover[disabled],
285 + .datepicker table tr td.active.disabled[disabled],
286 + .datepicker table tr td.active:active,
287 + .datepicker table tr td.active:hover,
288 + .datepicker table tr td.active:hover.active,
289 + .datepicker table tr td.active:hover.disabled,
290 + .datepicker table tr td.active:hover:active,
291 + .datepicker table tr td.active:hover:hover,
292 + .datepicker table tr td.active:hover[disabled],
293 + .datepicker table tr td.active[disabled],
294 + .ui-slider-horizontal .ui-slider-range,
295 + .btn-bubble {
296 + background-color: #3385d9;
297 + }
298 +
299 + .control input:checked ~ .control__indicator,
300 + .btn-primary-outlined,
301 + .page-item.active .page-link,
302 + .mobile-property-tools .nav-pills .nav-link.active,
303 + .agent-nav-wrap .nav-pills .nav-link,
304 + .agent-nav-wrap .nav-pills .nav-link.active,
305 + .chart-nav .nav-pills .nav-link.active,
306 + .dashaboard-snake-nav .step-block.active,
307 + .fc-event,
308 + .fc-event-dot,
309 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
310 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
311 + border-color: #3385d9;
312 + }
313 +
314 + .slick-arrow:hover {
315 + background-color: rgba(43,111,180,1);
316 + }
317 +
318 + .slick-arrow {
319 + background-color: #3385d9;
320 + }
321 +
322 + .property-banner .nav-pills .nav-link.active {
323 + background-color: rgba(43,111,180,1) !important;
324 + }
325 +
326 + .property-navigation-wrap a.active {
327 + color: #3385d9;
328 + -webkit-box-shadow: inset 0 -3px #3385d9;
329 + box-shadow: inset 0 -3px #3385d9;
330 + }
331 +
332 + .btn-primary,
333 + .fc-button-primary,
334 + .woocommerce nav.woocommerce-pagination ul li a:focus,
335 + .woocommerce nav.woocommerce-pagination ul li a:hover,
336 + .woocommerce nav.woocommerce-pagination ul li span.current {
337 + color: #fff;
338 + background-color: #3385d9;
339 + border-color: #3385d9;
340 + }
341 + .btn-primary:focus, .btn-primary:focus:active,
342 + .fc-button-primary:focus,
343 + .fc-button-primary:focus:active {
344 + color: #fff;
345 + background-color: #3385d9;
346 + border-color: #3385d9;
347 + }
348 + .btn-primary:hover,
349 + .fc-button-primary:hover {
350 + color: #fff;
351 + background-color: #2b6fb4;
352 + border-color: #2b6fb4;
353 + }
354 + .btn-primary:active,
355 + .btn-primary:not(:disabled):not(:disabled):active,
356 + .fc-button-primary:active,
357 + .fc-button-primary:not(:disabled):not(:disabled):active {
358 + color: #fff;
359 + background-color: #2b6fb4;
360 + border-color: #2b6fb4;
361 + }
362 +
363 + .btn-secondary,
364 + .woocommerce span.onsale,
365 + .woocommerce ul.products li.product .button,
366 + .woocommerce #respond input#submit.alt,
367 + .woocommerce a.button.alt,
368 + .woocommerce button.button.alt,
369 + .woocommerce input.button.alt,
370 + .woocommerce #review_form #respond .form-submit input,
371 + .woocommerce #respond input#submit,
372 + .woocommerce a.button,
373 + .woocommerce button.button,
374 + .woocommerce input.button {
375 + color: #fff;
376 + background-color: #656565;
377 + border-color: #656565;
378 + }
379 + .woocommerce ul.products li.product .button:focus,
380 + .woocommerce ul.products li.product .button:active,
381 + .woocommerce #respond input#submit.alt:focus,
382 + .woocommerce a.button.alt:focus,
383 + .woocommerce button.button.alt:focus,
384 + .woocommerce input.button.alt:focus,
385 + .woocommerce #respond input#submit.alt:active,
386 + .woocommerce a.button.alt:active,
387 + .woocommerce button.button.alt:active,
388 + .woocommerce input.button.alt:active,
389 + .woocommerce #review_form #respond .form-submit input:focus,
390 + .woocommerce #review_form #respond .form-submit input:active,
391 + .woocommerce #respond input#submit:active,
392 + .woocommerce a.button:active,
393 + .woocommerce button.button:active,
394 + .woocommerce input.button:active,
395 + .woocommerce #respond input#submit:focus,
396 + .woocommerce a.button:focus,
397 + .woocommerce button.button:focus,
398 + .woocommerce input.button:focus {
399 + color: #fff;
400 + background-color: #656565;
401 + border-color: #656565;
402 + }
403 + .btn-secondary:hover,
404 + .woocommerce ul.products li.product .button:hover,
405 + .woocommerce #respond input#submit.alt:hover,
406 + .woocommerce a.button.alt:hover,
407 + .woocommerce button.button.alt:hover,
408 + .woocommerce input.button.alt:hover,
409 + .woocommerce #review_form #respond .form-submit input:hover,
410 + .woocommerce #respond input#submit:hover,
411 + .woocommerce a.button:hover,
412 + .woocommerce button.button:hover,
413 + .woocommerce input.button:hover {
414 + color: #fff;
415 + background-color: #333333;
416 + border-color: #333333;
417 + }
418 + .btn-secondary:active,
419 + .btn-secondary:not(:disabled):not(:disabled):active {
420 + color: #fff;
421 + background-color: #333333;
422 + border-color: #333333;
423 + }
424 +
425 + .btn-primary-outlined {
426 + color: #3385d9;
427 + background-color: transparent;
428 + border-color: #3385d9;
429 + }
430 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
431 + color: #3385d9;
432 + background-color: transparent;
433 + border-color: #3385d9;
434 + }
435 + .btn-primary-outlined:hover {
436 + color: #fff;
437 + background-color: #2b6fb4;
438 + border-color: #2b6fb4;
439 + }
440 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
441 + color: #3385d9;
442 + background-color: rgba(26, 26, 26, 0);
443 + border-color: #2b6fb4;
444 + }
445 +
446 + .btn-secondary-outlined {
447 + color: #656565;
448 + background-color: transparent;
449 + border-color: #656565;
450 + }
451 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
452 + color: #656565;
453 + background-color: transparent;
454 + border-color: #656565;
455 + }
456 + .btn-secondary-outlined:hover {
457 + color: #fff;
458 + background-color: #333333;
459 + border-color: #333333;
460 + }
461 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
462 + color: #656565;
463 + background-color: rgba(26, 26, 26, 0);
464 + border-color: #333333;
465 + }
466 +
467 + .btn-call {
468 + color: #656565;
469 + background-color: transparent;
470 + border-color: #656565;
471 + }
472 + .btn-call:focus, .btn-call:focus:active {
473 + color: #656565;
474 + background-color: transparent;
475 + border-color: #656565;
476 + }
477 + .btn-call:hover {
478 + color: #656565;
479 + background-color: rgba(26, 26, 26, 0);
480 + border-color: #333333;
481 + }
482 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
483 + color: #656565;
484 + background-color: rgba(26, 26, 26, 0);
485 + border-color: #333333;
486 + }
487 + .icon-delete .btn-loader:after{
488 + border-color: #3385d9 transparent #3385d9 transparent
489 + }
490 +
491 + .header-v1 {
492 + background-color: #004274;
493 + border-bottom: 1px solid #004274;
494 + }
495 +
496 + .header-v1 a.nav-link {
497 + color: #ffffff;
498 + }
499 +
500 + .header-v1 a.nav-link:hover,
501 + .header-v1 a.nav-link:active {
502 + color: #00aeff;
503 + background-color: rgba(255,255,255,0.2);
504 + }
505 + .header-desktop .main-nav .nav-link {
506 + letter-spacing: 0.0px;
507 + }
508 +
509 + .header-v2 .header-top,
510 + .header-v5 .header-top,
511 + .header-v2 .header-contact-wrap {
512 + background-color: #ffffff;
513 + }
514 +
515 + .header-v2 .header-bottom,
516 + .header-v5 .header-bottom {
517 + background-color: #004274;
518 + }
519 +
520 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
521 + color: #004274;
522 + }
523 +
524 + .header-v2 .header-contact-left {
525 + color: #004274;
526 + }
527 +
528 + .header-v2 .header-bottom,
529 + .header-v2 .navbar-nav > li,
530 + .header-v2 .navbar-nav > li:first-of-type,
531 + .header-v5 .header-bottom,
532 + .header-v5 .navbar-nav > li,
533 + .header-v5 .navbar-nav > li:first-of-type {
534 + border-color: rgba(255,255,255,0.2);
535 + }
536 +
537 + .header-v2 a.nav-link,
538 + .header-v5 a.nav-link {
539 + color: #ffffff;
540 + }
541 +
542 + .header-v2 a.nav-link:hover,
543 + .header-v2 a.nav-link:active,
544 + .header-v5 a.nav-link:hover,
545 + .header-v5 a.nav-link:active {
546 + color: #00aeff;
547 + background-color: rgba(255,255,255,0.2);
548 + }
549 +
550 + .header-v2 .header-contact-right a:hover,
551 + .header-v2 .header-contact-right a:active,
552 + .header-v3 .header-contact-right a:hover,
553 + .header-v3 .header-contact-right a:active {
554 + background-color: transparent;
555 + }
556 +
557 + .header-v2 .header-social-icons a,
558 + .header-v5 .header-social-icons a {
559 + color: #004274;
560 + }
561 +
562 + .header-v3 .header-top {
563 + background-color: #004274;
564 + }
565 +
566 + .header-v3 .header-bottom {
567 + background-color: #004272;
568 + }
569 +
570 + .header-v3 .header-contact,
571 + .header-v3-mobile {
572 + background-color: #00aeef;
573 + color: #ffffff;
574 + }
575 +
576 + .header-v3 .header-bottom,
577 + .header-v3 .login-register,
578 + .header-v3 .navbar-nav > li,
579 + .header-v3 .navbar-nav > li:first-of-type {
580 + border-color: ;
581 + }
582 +
583 + .header-v3 a.nav-link,
584 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
585 + color: #ffffff;
586 + }
587 +
588 + .header-v3 a.nav-link:hover,
589 + .header-v3 a.nav-link:active {
590 + color: #00aeff;
591 + background-color: rgba(255,255,255,0.2);
592 + }
593 +
594 + .header-v3 .header-social-icons a {
595 + color: #FFFFFF;
596 + }
597 +
598 + .header-v4 {
599 + background-color: #ffffff;
600 + }
601 +
602 + .header-v4 a.nav-link {
603 + color: #000000;
604 + }
605 +
606 + .header-v4 a.nav-link:hover,
607 + .header-v4 a.nav-link:active {
608 + color: #3385d9;
609 + background-color: rgba(255,255,255,0.2);
610 + }
611 +
612 + .header-v6 .header-top {
613 + background-color: #00AEEF;
614 + }
615 +
616 + .header-v6 a.nav-link {
617 + color: #FFFFFF;
618 + }
619 +
620 + .header-v6 a.nav-link:hover,
621 + .header-v6 a.nav-link:active {
622 + color: #00aeff;
623 + background-color: rgba(255,255,255,0.2);
624 + }
625 +
626 + .header-v6 .header-social-icons a {
627 + color: #FFFFFF;
628 + }
629 +
630 + .header-mobile {
631 + background-color: #ffffff;
632 + }
633 + .header-mobile .toggle-button-left,
634 + .header-mobile .toggle-button-right {
635 + color: #000000;
636 + }
637 +
638 + .nav-mobile .logged-in-nav a,
639 + .nav-mobile .main-nav,
640 + .nav-mobile .navi-login-register {
641 + background-color: #ffffff;
642 + }
643 +
644 + .nav-mobile .logged-in-nav a,
645 + .nav-mobile .main-nav .nav-item .nav-item a,
646 + .nav-mobile .main-nav .nav-item a,
647 + .navi-login-register .main-nav .nav-item a {
648 + color: #000000;
649 + border-bottom: 1px solid #ffffff;
650 + background-color: #ffffff;
651 + }
652 +
653 + .nav-mobile .btn-create-listing,
654 + .navi-login-register .btn-create-listing {
655 + color: #fff;
656 + border: 1px solid #3385d9;
657 + background-color: #3385d9;
658 + }
659 +
660 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
661 + .navi-login-register .btn-create-listing:hover,
662 + .navi-login-register .btn-create-listing:active {
663 + color: #fff;
664 + border: 1px solid #3385d9;
665 + background-color: rgba(0, 174, 255, 0.65);
666 + }
667 +
668 + .header-transparent-wrap .header-v4 {
669 + background-color: transparent;
670 + border-bottom: 1px none rgba(255,255,255,0.3);
671 + }
672 +
673 + .header-transparent-wrap .header-v4 a {
674 + color: #ffffff;
675 + }
676 +
677 + .header-transparent-wrap .header-v4 a:hover,
678 + .header-transparent-wrap .header-v4 a:active {
679 + color: #3385d9;
680 + background-color: rgba(255, 255, 255, 0.1);
681 + }
682 +
683 + .main-nav .navbar-nav .nav-item .dropdown-menu,
684 + .login-register .login-register-nav li .dropdown-menu {
685 + background-color: rgba(255,255,255,0.95);
686 + }
687 +
688 + .login-register .login-register-nav li .dropdown-menu:before {
689 + border-left-color: rgba(255,255,255,0.95);
690 + border-top-color: rgba(255,255,255,0.95);
691 + }
692 +
693 + .main-nav .navbar-nav .nav-item .nav-item a,
694 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
695 + color: #3385d9;
696 + border-bottom: 1px solid #e6e6e6;
697 + }
698 +
699 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
700 + .main-nav .navbar-nav .nav-item .nav-item a:active,
701 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
702 + color: #2b6fb4;
703 + }
704 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
705 + .main-nav .navbar-nav .nav-item .nav-item a:active,
706 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
707 + background-color: rgba(0, 174, 255, 0.1);
708 + }
709 +
710 + .header-main-wrap .btn-create-listing {
711 + color: #3385d9;
712 + border: 1px solid #3385d9;
713 + background-color: #ffffff;
714 + }
715 +
716 + .header-main-wrap .btn-create-listing:hover,
717 + .header-main-wrap .btn-create-listing:active {
718 + color: rgba(255,255,255,1);
719 + border: 1px solid #2b6fb4;
720 + background-color: rgba(43,111,180,1);
721 + }
722 +
723 + .header-transparent-wrap .header-v4 .btn-create-listing {
724 + color: #ffffff;
725 + border: 1px solid #ffffff;
726 + background-color: rgba(255,255,255,0.2);
727 + }
728 +
729 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
730 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
731 + color: rgba(255,255,255,1);
732 + border: 1px solid #3385d9;
733 + background-color: rgba(51,133,217,1);
734 + }
735 +
736 + .header-transparent-wrap .logged-in-nav a,
737 + .logged-in-nav a {
738 + color: #000000;
739 + border-color: #e6e6e6;
740 + background-color: #FFFFFF;
741 + }
742 +
743 + .header-transparent-wrap .logged-in-nav a:hover,
744 + .header-transparent-wrap .logged-in-nav a:active,
745 + .logged-in-nav a:hover,
746 + .logged-in-nav a:active {
747 + color: #000000;
748 + background-color: rgba(204,204,204,0.15);
749 + border-color: #e6e6e6;
750 + }
751 +
752 + .form-control::-webkit-input-placeholder,
753 + .search-banner-wrap ::-webkit-input-placeholder,
754 + .advanced-search ::-webkit-input-placeholder,
755 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
756 + .overlay-search-advanced-module ::-webkit-input-placeholder {
757 + color: #a1a7a8;
758 + }
759 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
760 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
761 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
762 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
763 + color: #a1a7a8;
764 + }
765 + .form-control::placeholder,
766 + .search-banner-wrap ::-webkit-input-placeholder,
767 + .advanced-search ::-webkit-input-placeholder,
768 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
769 + .overlay-search-advanced-module ::-webkit-input-placeholder {
770 + color: #a1a7a8;
771 + }
772 +
773 + .search-banner-wrap ::-moz-placeholder,
774 + .advanced-search ::-moz-placeholder,
775 + .advanced-search-banner-wrap ::-moz-placeholder,
776 + .overlay-search-advanced-module ::-moz-placeholder {
777 + color: #a1a7a8;
778 + }
779 +
780 + .search-banner-wrap :-ms-input-placeholder,
781 + .advanced-search :-ms-input-placeholder,
782 + .advanced-search-banner-wrap ::-ms-input-placeholder,
783 + .overlay-search-advanced-module ::-ms-input-placeholder {
784 + color: #a1a7a8;
785 + }
786 +
787 + .search-banner-wrap :-moz-placeholder,
788 + .advanced-search :-moz-placeholder,
789 + .advanced-search-banner-wrap :-moz-placeholder,
790 + .overlay-search-advanced-module :-moz-placeholder {
791 + color: #a1a7a8;
792 + }
793 +
794 + .advanced-search .form-control,
795 + .advanced-search .bootstrap-select > .btn,
796 + .location-trigger,
797 + .vertical-search-wrap .form-control,
798 + .vertical-search-wrap .bootstrap-select > .btn,
799 + .step-search-wrap .form-control,
800 + .step-search-wrap .bootstrap-select > .btn,
801 + .advanced-search-banner-wrap .form-control,
802 + .advanced-search-banner-wrap .bootstrap-select > .btn,
803 + .search-banner-wrap .form-control,
804 + .search-banner-wrap .bootstrap-select > .btn,
805 + .overlay-search-advanced-module .form-control,
806 + .overlay-search-advanced-module .bootstrap-select > .btn,
807 + .advanced-search-v2 .advanced-search-btn,
808 + .advanced-search-v2 .advanced-search-btn:hover {
809 + border-color: #cccccc;
810 + }
811 +
812 + .advanced-search-nav,
813 + .search-expandable,
814 + .overlay-search-advanced-module {
815 + background-color: #FFFFFF;
816 + }
817 + .btn-search {
818 + color: #ffffff;
819 + background-color: #3385d9;
820 + border-color: #3385d9;
821 + }
822 + .btn-search:hover, .btn-search:active {
823 + color: #ffffff;
824 + background-color: #2b6fb4;
825 + border-color: #2b6fb4;
826 + }
827 + .advanced-search-btn {
828 + color: #666666;
829 + background-color: #ffffff;
830 + border-color: #dce0e0;
831 + }
832 + .advanced-search-btn:hover, .advanced-search-btn:active {
833 + color: #000000;
834 + background-color: #ffffff;
835 + border-color: #dce0e0;
836 + }
837 + .advanced-search-btn:focus {
838 + color: #666666;
839 + background-color: #ffffff;
840 + border-color: #dce0e0;
841 + }
842 + .search-expandable-label {
843 + color: #ffffff;
844 + background-color: #ff6e00;
845 + }
846 + .advanced-search-nav {
847 + padding-top: 10px;
848 + padding-bottom: 10px;
849 + }
850 + .features-list-wrap .control--checkbox,
851 + .features-list-wrap .control--radio,
852 + .range-text,
853 + .features-list-wrap .control--checkbox,
854 + .features-list-wrap .btn-features-list,
855 + .overlay-search-advanced-module .search-title,
856 + .overlay-search-advanced-module .overlay-search-module-close {
857 + color: #222222;
858 + }
859 + .advanced-search-half-map {
860 + background-color: #FFFFFF;
861 + }
862 + .advanced-search-half-map .range-text,
863 + .advanced-search-half-map .features-list-wrap .control--checkbox,
864 + .advanced-search-half-map .features-list-wrap .btn-features-list {
865 + color: #222222;
866 + }
867 +
868 + .save-search-btn {
869 + border-color: #28a745 ;
870 + background-color: #28a745 ;
871 + color: #ffffff ;
872 + }
873 + .save-search-btn:hover,
874 + .save-search-btn:active {
875 + border-color: #28a745;
876 + background-color: #28a745 ;
877 + color: #ffffff ;
878 + }
879 + .label-featured {
880 + background-color: #e22424;
881 + color: #ffffff;
882 + }
883 +
884 + .dashboard-side-wrap {
885 + background-color: #00365e;
886 + }
887 +
888 + .side-menu a {
889 + color: #ffffff;
890 + }
891 +
892 + .side-menu a.active,
893 + .side-menu .side-menu-parent-selected > a,
894 + .side-menu-dropdown a,
895 + .side-menu a:hover {
896 + color: #3385d9;
897 + }
898 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
899 + color: #2b6fb4
900 + }
901 +
902 + .detail-wrap {
903 + background-color: rgba(119,199,32,0.1);
904 + border-color: #3385d9;
905 + }
906 + .top-bar-wrap,
907 + .top-bar-wrap .dropdown-menu,
908 + .switcher-wrap .dropdown-menu {
909 + background-color: #000000;
910 + }
911 + .top-bar-wrap a,
912 + .top-bar-contact,
913 + .top-bar-slogan,
914 + .top-bar-wrap .btn,
915 + .top-bar-wrap .dropdown-menu,
916 + .switcher-wrap .dropdown-menu,
917 + .top-bar-wrap .navbar-toggler {
918 + color: #ffffff;
919 + }
920 + .top-bar-wrap a:hover,
921 + .top-bar-wrap a:active,
922 + .top-bar-wrap .btn:hover,
923 + .top-bar-wrap .btn:active,
924 + .top-bar-wrap .dropdown-menu li:hover,
925 + .top-bar-wrap .dropdown-menu li:active,
926 + .switcher-wrap .dropdown-menu li:hover,
927 + .switcher-wrap .dropdown-menu li:active {
928 + color: rgba(43,111,180,1);
929 + }
930 + .class-energy-indicator:nth-child(1) {
931 + background-color: #33a357;
932 + }
933 + .class-energy-indicator:nth-child(2) {
934 + background-color: #79b752;
935 + }
936 + .class-energy-indicator:nth-child(3) {
937 + background-color: #c3d545;
938 + }
939 + .class-energy-indicator:nth-child(4) {
940 + background-color: #fff12c;
941 + }
942 + .class-energy-indicator:nth-child(5) {
943 + background-color: #edb731;
944 + }
945 + .class-energy-indicator:nth-child(6) {
946 + background-color: #d66f2c;
947 + }
948 + .class-energy-indicator:nth-child(7) {
949 + background-color: #cc232a;
950 + }
951 + .class-energy-indicator:nth-child(8) {
952 + background-color: #cc232a;
953 + }
954 + .class-energy-indicator:nth-child(9) {
955 + background-color: #cc232a;
956 + }
957 + .class-energy-indicator:nth-child(10) {
958 + background-color: #cc232a;
959 + }
960 +
961 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
962 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
963 +
964 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
965 +
966 + .footer-top-wrap {
967 + background-color: #000000;
968 + }
969 +
970 + .footer-bottom-wrap {
971 + background-color: #000000;
972 + }
973 +
974 + .footer-top-wrap,
975 + .footer-top-wrap a,
976 + .footer-bottom-wrap,
977 + .footer-bottom-wrap a,
978 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
979 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
980 + .footer-top-wrap .blog-post-content-widget h4 a,
981 + .footer-top-wrap .blog-post-content-widget,
982 + .footer-top-wrap .form-tools .control,
983 + .footer-top-wrap .slick-dots li.slick-active button:before,
984 + .footer-top-wrap .slick-dots li button::before,
985 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
986 + color: #ffffff;
987 + }
988 +
989 + .footer-top-wrap a:hover,
990 + .footer-bottom-wrap a:hover,
991 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
992 + color: rgba(43,111,180,1);
993 + }
994 + .houzez-osm-cluster {
995 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
996 + text-align: center;
997 + color: #fff;
998 + width: 48px;
999 + height: 48px;
1000 + line-height: 48px;
1001 + }
1002 + .text-success{color:red!important;}
1003 +
1004 +/*.mobile-property-contact{bottom:40px;}*/
1005 +
1006 +/* Button retour en haut*/
1007 +/*
1008 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1009 +.mobile-property-contact .btn{margin-right: 60px;}
1010 +*/
1011 +
1012 +.item-tool.houzez-share{display:none;}
1013 +
1014 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1015 +
1016 +.grecaptcha-badge{display:none!important;}
1017 +
1018 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1019 +
1020 +
1021 +@media only screen and (max-width: 768px) {
1022 + /* For mobile phones: */
1023 +
1024 + /* Button retour en haut*/
1025 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1026 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1027 +}
1028 +/*# sourceURL=houzez-style-inline-css */</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="f9936141f2fee8323bcdddef-|49"></script><link data-asynced="1" as="style" onload="this.onload=null;this.rel='stylesheet'" rel='preload' id='leaflet-css' href='https://unpkg.com/leaflet@1.7.1/dist/leaflet.css' media='all' /><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1029 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1030 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/properties/10415" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/?p=10415' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/property/368-fusiliers/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/property/368-fusiliers/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1031 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1032 + background-image: none !important;
1033 + }
1034 + @media screen and (max-height: 1024px) {
1035 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1036 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1037 + background-image: none !important;
1038 + }
1039 + }
1040 + @media screen and (max-height: 640px) {
1041 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1042 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1043 + background-image: none !important;
1044 + }
1045 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1046 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1047 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1048 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1049 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="wp-singular property-template-default single single-property postid-10415 wp-custom-logo wp-theme-houzez translatepress-fr_CA transparent- houzez-header- elementor-default elementor-kit-6"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1050 +<a href="https://agencedelocationsherbrooke.com/">
1051 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1052 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1053 +<button class="btn toggle-button-left">
1054 +<i class="houzez-icon icon-navigation-menu"></i>
1055 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1056 +<a href="https://agencedelocationsherbrooke.com/">
1057 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1058 +</a></div></div><div class="header-mobile-right"></div></div></header><section class="content-wrap property-wrap property-detail-v6 "><div class="property-navigation-wrap"><div class="container-fluid"><ul class="property-navigation list-unstyled d-flex justify-content-between"><li class="property-navigation-item">
1059 +<a class="back-top" href="#main-wrap">
1060 +<i class="houzez-icon icon-arrow-button-circle-up"></i>
1061 +</a></li><li class="property-navigation-item">
1062 +<a class="target" href="#property-features-wrap">Inclusions</a></li><li class="property-navigation-item">
1063 +<a class="target" href="#property-description-wrap">Description</a></li><li class="property-navigation-item">
1064 +<a class="target" href="#property-address-wrap">Addresse</a></li><li class="property-navigation-item">
1065 +<a class="target" href="#property-detail-wrap">Détails</a></li><li class="property-navigation-item">
1066 +<a class="target" href="#property-video-wrap">Vidéo</a></li><li class="property-navigation-item">
1067 +<a class="target" href="#property-walkscore-wrap">Walkscore</a></li><li class="property-navigation-item">
1068 +<a class="target" href="#similar-listings-wrap">Annonces similaires</a></li></ul></div></div><div class="page-title-wrap"><div class="container"><div class="d-flex align-items-center"><div class="breadcrumb-wrap"><nav><ol class="breadcrumb"><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/"><span>Accueil</span></a></li><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/"> <span>5½</span></a></li><li class="breadcrumb-item active">368 Fusiliers</li></ol></nav></div><ul class="item-tools"><li class="item-tool houzez-favorite">
1069 +<span class="add-favorite-js item-tool-favorite" data-listid="10415">
1070 +<i class="houzez-icon icon-love-it "></i>
1071 +</span></li><li class="item-tool houzez-share">
1072 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1073 +<i class="houzez-icon icon-share"></i>
1074 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1075 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=368+Fusiliers&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F">
1076 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&amp;t=368+Fusiliers" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f9936141f2fee8323bcdddef-="">
1077 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1078 +</a>
1079 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=368+Fusiliers&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-f9936141f2fee8323bcdddef-="">
1080 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1081 +</a>
1082 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f9936141f2fee8323bcdddef-="">
1083 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1084 +</a>
1085 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&title=368+Fusiliers&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f9936141f2fee8323bcdddef-="">
1086 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1087 +</a>
1088 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#bbc8d4d6ded4d5defbdec3dad6cbd7de95d8d4d684e8ced9d1ded8cf86888d839bfdcec8d2d7d2dec9c89dd9d4dfc286d3cfcfcbc89e88fa9e89fd9e89fddadcded5d8dedfded7d4d8dacfd2d4d5c8d3dec9d9c9d4d4d0de95d8d4d69e89fdcbc9d4cbdec9cfc29e89fd888d8396ddcec8d2d7d2dec9c89e89fd">
1089 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1090 +</a></div></li><li class="item-tool houzez-print " data-propid="10415">
1091 +<span class="item-tool-compare">
1092 +<i class="houzez-icon icon-print-text"></i>
1093 +</span></li></ul></div><div class="d-flex align-items-center property-title-price-wrap"><div class="page-title"><h1>368 Fusiliers</h1></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,195$/mensuel</li></ul></div><div class="property-labels-wrap">
1094 +<a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1095 +Centre-ville
1096 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1097 +Octobre
1098 +</a></div>
1099 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>368, Rue des Fusiliers, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4J5, Canada</address></div></div><div class="property-top-wrap"><div class="property-banner"><div class="visible-on-mobile"><div class="tab-content" id="pills-tabContent"><div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-scaled.jpeg);"><div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 8</div><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1100 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1101 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1102 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [368 Fusiliers]</textarea></div>
1103 +<input type="hidden" name="target_email" value="&#99;&#97;&#116;he&#114;&#105;&#110;&#101;.perreaul&#116;&#64;p&#114;&#101;stip&#108;&#101;&#120;&#46;co&#109;">
1104 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1105 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/368-fusiliers/"/>
1106 +<input type="hidden" name="property_title" value="368 Fusiliers"/>
1107 +<input type="hidden" name="property_id" value="ADLS-10415"/>
1108 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1109 +<input type="hidden" name="listing_id" value="10415">
1110 +<input type="hidden" name="is_listing_form" value="yes">
1111 +<input type="hidden" name="agent_id" value="156">
1112 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1113 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1114 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1115 +</button></form></div></div><a class="houzez-photoswipe-trigger property-banner-trigger" href="#"></a></div><div class="tab-pane houzez-top-area-video " id="pills-video" role="tabpanel" aria-labelledby="pills-video-tab">
1116 +<iframe data-lazyloaded="1" src="about:blank" title="368 rue fusiliers, Sherbrooke, Quebec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/vKOcmr-EEto?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div><div class="container hidden-on-mobile"><div class="row"><div class="col-md-8">
1117 +<a href="#" data-slider-no="1" data-image="0" class="houzez-photoswipe-trigger img-wrap-1" >
1118 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-758x564.jpeg" alt="" width="758" height="564" />
1119 +</a></div><div class="col-md-4">
1120 +<a href="#" data-slider-no="2" data-image="1" class="houzez-photoswipe-trigger swipebox img-wrap-2">
1121 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001945.367-758x564.jpeg" alt="" width="758" height="564" />
1122 +</a>
1123 +<a href="#" data-slider-no="3" data-image="2" class="houzez-photoswipe-trigger swipebox img-wrap-3"><div class="img-wrap-3-text">5 Plus</div>
1124 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001954.834-758x564.jpeg" alt="" width="758" height="564" />
1125 +</a></div>
1126 +<a href="#" class="img-wrap-1 gallery-hidden">
1127 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001956.323-758x564.jpeg" alt="" width="758" height="564" />
1128 +</a>
1129 +<a href="#" class="img-wrap-1 gallery-hidden">
1130 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001953.285-758x564.jpeg" alt="" width="758" height="564" />
1131 +</a>
1132 +<a href="#" class="img-wrap-1 gallery-hidden">
1133 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001942.733-758x564.jpeg" alt="" width="758" height="564" />
1134 +</a>
1135 +<a href="#" class="img-wrap-1 gallery-hidden">
1136 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001943.698-758x564.jpeg" alt="" width="758" height="564" />
1137 +</a>
1138 +<a href="#" class="img-wrap-1 gallery-hidden">
1139 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001957.550-758x564.jpeg" alt="" width="758" height="564" />
1140 +</a><div class="col-md-12"><div class="block-wrap"><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>5½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>5</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div></div></div><div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"><div class="pswp__bg"></div><div class="pswp__scroll-wrap"><div class="pswp__container"><div class="pswp__item"></div><div class="pswp__item"></div><div class="pswp__item"></div></div><div class="pswp__ui pswp__ui--hidden"><div class="pswp__top-bar"><div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button><button class="pswp__button pswp__button--share" title="Share"></button><button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button><button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button><div class="pswp__preloader"><div class="pswp__preloader__icn"><div class="pswp__preloader__cut"><div class="pswp__preloader__donut"></div></div></div></div></div><div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"><div class="pswp__share-tooltip"></div></div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
1141 +</button><button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
1142 +</button><div class="pswp__caption"><div class="pswp__caption__center"></div></div></div></div></div> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">initPhotoswipeDomForJson({"1":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001946.848-scaled.jpeg","w":1920,"h":2560},"2":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001945.367-scaled.jpeg","w":1920,"h":2560},"3":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001954.834-scaled.jpeg","w":1920,"h":2560},"4":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001956.323-scaled.jpeg","w":1920,"h":2560},"5":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001953.285-scaled.jpeg","w":1920,"h":2560},"6":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001942.733-scaled.jpeg","w":1920,"h":2560},"7":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001943.698-scaled.jpeg","w":1920,"h":2560},"8":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001957.550-scaled.jpeg","w":1920,"h":2560}});function initPhotoswipeDomForJson(imageData){var pswpElement=document.querySelectorAll('.pswp')[0];var items=[],item;jQuery.each(imageData,function(i,obj){item={src:obj.src,w:obj.w,h:obj.h};items.push(item)});var options={index:0};var x=document.querySelectorAll(".houzez-photoswipe-trigger");for(let i=0;i<x.length;i++){x[i].addEventListener("click",function(){openGallery(x[i].dataset.image)})}
1143 +function openGallery(j){options.index=parseInt(j);options.history=!1;gallery=new PhotoSwipe(pswpElement,PhotoSwipeUI_Default,items,options);gallery.init()}}</script> </div><div class="container"><div class="row"><div class="col-lg-12 col-md-12 bt-full-width-content-wrap"><div class="property-view"><div class="visible-on-mobile"><div class="mobile-top-wrap"><div class="mobile-property-tools clearfix"><ul class="nav nav-pills houzez-media-tabs-4" id="pills-tab" role="tablist"><li class="nav-item">
1144 +<a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1145 +<i class="houzez-icon icon-picture-sun"></i>
1146 +</a></li><li class="nav-item">
1147 +<a class="nav-link " id="pills-video-tab" data-toggle="pill" href="#pills-video" role="tab" aria-controls="pills-video" aria-selected="true">
1148 +<i class="houzez-icon icon-video-player-movie-1"></i>
1149 +</a></li></ul><ul class="item-tools"><li class="item-tool houzez-favorite">
1150 +<span class="add-favorite-js item-tool-favorite" data-listid="10415">
1151 +<i class="houzez-icon icon-love-it "></i>
1152 +</span></li><li class="item-tool houzez-share">
1153 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1154 +<i class="houzez-icon icon-share"></i>
1155 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1156 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=368+Fusiliers&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F">
1157 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&amp;t=368+Fusiliers" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f9936141f2fee8323bcdddef-="">
1158 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1159 +</a>
1160 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=368+Fusiliers&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-f9936141f2fee8323bcdddef-="">
1161 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1162 +</a>
1163 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f9936141f2fee8323bcdddef-="">
1164 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1165 +</a>
1166 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&title=368+Fusiliers&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f9936141f2fee8323bcdddef-="">
1167 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1168 +</a>
1169 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#9eedf1f3fbf1f0fbdefbe6fff3eef2fbb0fdf1f3a1cdebfcf4fbfdeaa3ada8a6bed8ebedf7f2f7fbecedb8fcf1fae7a3f6eaeaeeedbbaddfbbacd8bbacd8fff9fbf0fdfbfafbf2f1fdffeaf7f1f0edf6fbecfcecf1f1f5fbb0fdf1f3bbacd8eeecf1eefbeceae7bbacd8ada8a6b3f8ebedf7f2f7fbecedbbacd8">
1170 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1171 +</a></div></li><li class="item-tool houzez-print " data-propid="10415">
1172 +<span class="item-tool-compare">
1173 +<i class="houzez-icon icon-print-text"></i>
1174 +</span></li></ul></div><div class="mobile-property-title clearfix">
1175 +<span class="labels-wrap labels-right">
1176 +<a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1177 +Centre-ville
1178 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1179 +Octobre
1180 +</a>
1181 +</span>
1182 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>368, Rue des Fusiliers, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4J5, Canada</address><ul class="item-price-wrap hide-on-list"><li class="item-price">1,195$/mensuel</li></ul></div></div><div class="property-overview-wrap property-section-wrap" id="property-overview-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Apperçu</h2><div><strong># Annonce:</strong> ADLS-10415</div></div><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>5½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>5</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div><div class="property-features-wrap property-section-wrap" id="property-features-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Inclusions</h2></div><div class="block-content-wrap"><ul class="list-3-cols list-unstyled"><li><i class="fas fa-cat mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/chat-permis/">Chat permis</a></li><li><i class="fas fa-snowplow mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/deneigement/">Déneigement</a></li><li><i class="fas fa-fan mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/thermopompe/">Thermopompe</a></li><li><i class="fas fa-wifi mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/wifi/">Wi-Fi</a></li></ul></div></div></div><div class="property-description-wrap property-section-wrap" id="property-description-wrap"><div class="block-wrap"><div class="block-title-wrap"><h2>Description</h2></div><div class="block-content-wrap"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true" data-pm-slice="1 1 []">5 1/2 à louer disponible 1er octobre</p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">*Il est interdit de fumer dans l’appartement et dans l’immeuble</p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">-Internet inclus</p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">-Rez-de-chaussé<br data-prosemirror-content-type="node" data-prosemirror-node-name="hardBreak" data-prosemirror-node-inline="true" />-Thermopompe<br data-prosemirror-content-type="node" data-prosemirror-node-name="hardBreak" data-prosemirror-node-inline="true" />-1 stationnement inclus et possible<br data-prosemirror-content-type="node" data-prosemirror-node-name="hardBreak" data-prosemirror-node-inline="true" />-Entrée indépendante<br data-prosemirror-content-type="node" data-prosemirror-node-name="hardBreak" data-prosemirror-node-inline="true" />-1 chat accepté, chien interdit<br data-prosemirror-content-type="node" data-prosemirror-node-name="hardBreak" data-prosemirror-node-inline="true" />-Enquête de crédit obligatoire</p></div></div></div><div class="property-address-wrap property-section-wrap" id="property-address-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Addresse</h2><a class="btn btn-primary btn-slim" href="https://maps.google.com/?q=368,%20Rue%20des%20Fusiliers,%20Mont-Bellevue,%20Les%20Nations,%20Sherbrooke,%20Estrie,%20Québec,%20J1H%204J5,%20Canada" target="_blank"><i class="houzez-icon icon-maps mr-1"></i> Ouvrir sur Google Maps</a></div><div class="block-content-wrap"><ul class="list-2-cols list-unstyled"><li class="detail-address"><strong>Addresse</strong> <span>368, Rue des Fusiliers, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4J5, Canada</span></li><li class="detail-zip"><strong>Zip / Code postal</strong> <span>J1H 4J5</span></li></ul></div><div id="houzez-single-listing-map" class="block-map-wrap"></div></div></div><div class="property-detail-wrap property-section-wrap" id="property-detail-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Détails</h2>
1183 +<span class="small-text grey"><i class="houzez-icon icon-calendar-3 mr-1"></i> Mise à jour le juin 19, 2026 à 4:23 am</span></div><div class="block-content-wrap"><div class="detail-wrap"><ul class="list-2-cols list-unstyled"><li>
1184 +<strong># Annonce:</strong>
1185 +<span>ADLS-10415</span></li><li>
1186 +<strong>Prix:</strong>
1187 +<span> 1,195$/mensuel</span></li><li>
1188 +<strong>Chambres:</strong>
1189 +<span>3</span></li><li>
1190 +<strong>Pièces:</strong>
1191 +<span>5</span></li><li>
1192 +<strong>Salle de bain:</strong>
1193 +<span>1</span></li><li>
1194 +<strong>Stationnement:</strong>
1195 +<span>1</span></li><li class="prop_type">
1196 +<strong>Type:</strong>
1197 +<span>5½</span></li><li class="prop_status">
1198 +<strong>Statut:</strong>
1199 +<span>Centre-ville</span></li></ul></div></div></div></div><div class="property-video-wrap property-section-wrap" id="property-video-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Vidéo</h2></div><div class="block-content-wrap"><div class="block-video-wrap">
1200 +<iframe data-lazyloaded="1" src="about:blank" title="368 rue fusiliers, Sherbrooke, Quebec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/vKOcmr-EEto?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div></div><div class="property-walkscore-wrap property-section-wrap" id="property-walkscore-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Walkscore</h2></div><div class="block-content-wrap"><div id="ws-walkscore-tile"></div></div></div></div><div class="property-contact-agent-wrap property-section-wrap" id="property-contact-agent-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Coordonnées</h2><a class="btn btn-primary btn-slim" href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/" target="_blank">Voir les annonces</a></div><div class="block-content-wrap"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="80" height="80"></a></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-phone-wrap clearfix"></li></ul></div></div><div class="block-title-wrap"><h3>Renseignez-vous sur cette propriété</h3></div><div class="form_messages"></div><div class="row"><div class="col-md-6 col-sm-12"><div class="form-group">
1201 +<label>Nom</label>
1202 +<input class="form-control" name="name" placeholder="Entrez votre nom" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1203 +<label>Téléphone</label>
1204 +<input class="form-control" name="mobile" placeholder="Entrez votre numéro de téléphone" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1205 +<label>Courriel</label>
1206 +<input class="form-control" name="email" placeholder="Entrer votre courriel" type="email"></div></div><div class="col-sm-12 col-xs-12"><div class="form-group form-group-textarea">
1207 +<label>Message</label><textarea class="form-control hz-form-message" name="message" rows="5" placeholder="Entrez votre message">Bonjour, je suis intéressé par [368 Fusiliers]</textarea></div></div><div class="col-sm-12 col-xs-12">
1208 +<input type="hidden" name="target_email" value="&#99;&#97;&#116;h&#101;r&#105;&#110;&#101;.perr&#101;a&#117;lt&#64;&#112;res&#116;ip&#108;&#101;&#120;&#46;&#99;om">
1209 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1210 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/368-fusiliers/"/>
1211 +<input type="hidden" name="property_title" value="368 Fusiliers"/>
1212 +<input type="hidden" name="property_id" value="ADLS-10415"/>
1213 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1214 +<input type="hidden" class="is_bottom" value="bottom">
1215 +<input type="hidden" name="listing_id" value="10415">
1216 +<input type="hidden" name="is_listing_form" value="yes">
1217 +<input type="hidden" name="agent_id" value="156">
1218 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><button class="houzez_agent_property_form btn btn-secondary btn-sm-full-width">
1219 +<span class="btn-loader houzez-loader-js"></span> Demande d'informations
1220 +</button></div></div></form></div></div></div></div></div></div></div></section></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1221 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1222 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1223 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1224 +<i class="houzez-icon icon-arrow-up-1"></i>
1225 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1226 +<button class="compare-property-label" style="display: none;">
1227 +<span class="compare-count compare-label"></span>
1228 +<i class="houzez-icon icon-move-left-right"></i>
1229 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1230 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1231 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1232 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1233 +<span aria-hidden="true">&times;</span>
1234 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1235 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1236 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1237 +<label class="control control--checkbox flex-grow-1">
1238 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1239 +</label>
1240 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/property/368-fusiliers/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1241 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com/property/368-fusiliers/?login=success">
1242 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1243 +<span class="btn-loader houzez-loader-js"></span> Connexion
1244 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1245 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1246 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1247 +<span aria-hidden="true">&times;</span>
1248 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1249 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1250 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/property/368-fusiliers/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1251 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><div class="mobile-property-contact visible-on-mobile"><div class="d-flex justify-content-between"><div class="agent-details flex-grow-1"><div class="d-flex align-items-center"><div class="agent-image">
1252 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" width="50" height="50" alt="Catherine Perreault"></div><ul class="agent-information list-unstyled"><li class="agent-name">
1253 +Catherine Perreault</li></ul></div></div>
1254 +<button class="btn btn-secondary" data-toggle="modal" data-target="#mobile-property-form">
1255 +<i class="houzez-icon icon-messages-bubble"></i>
1256 +</button></div></div><div class="modal fade mobile-property-form" id="mobile-property-form"><div class="modal-dialog" role="document"><div class="modal-content">
1257 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1258 +<span aria-hidden="true">&times;</span>
1259 +</button><div class="modal-body"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1260 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1261 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1262 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [368 Fusiliers]</textarea></div>
1263 +<input type="hidden" name="target_email" value="&#99;a&#116;&#104;&#101;&#114;i&#110;e.&#112;&#101;&#114;r&#101;a&#117;&#108;t&#64;p&#114;&#101;&#115;tiplex.&#99;om">
1264 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1265 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/368-fusiliers/"/>
1266 +<input type="hidden" name="property_title" value="368 Fusiliers"/>
1267 +<input type="hidden" name="property_id" value="ADLS-10415"/>
1268 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1269 +<input type="hidden" name="listing_id" value="10415">
1270 +<input type="hidden" name="is_listing_form" value="yes">
1271 +<input type="hidden" name="agent_id" value="156">
1272 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1273 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1274 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1275 +</button></form></div></div></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div class="modal-content"><div class="modal-header"><div class="d-flex align-items-center"><div class="lightbox-logo">
1276 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white.png" alt="368 Fusiliers" width="127" height="32" /></div><div class="lightbox-title flex-grow-1"></div><div class="lightbox-tools"><ul class="list-inline"><li class="list-inline-item btn-favorite">
1277 +<a class="add-favorite-js" data-listid="10415" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Favoris</span></a></li><li class="list-inline-item btn-share">
1278 +<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Partager</span></a><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1279 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=368+Fusiliers&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F">
1280 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&amp;t=368+Fusiliers" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f9936141f2fee8323bcdddef-="">
1281 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1282 +</a>
1283 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=368+Fusiliers&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-f9936141f2fee8323bcdddef-="">
1284 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1285 +</a>
1286 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f9936141f2fee8323bcdddef-="">
1287 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1288 +</a>
1289 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F368-fusiliers%2F&title=368+Fusiliers&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f9936141f2fee8323bcdddef-="">
1290 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1291 +</a>
1292 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#b8cbd7d5ddd7d6ddf8ddc0d9d5c8d4dd96dbd7d587ebcddad2dddbcc858b8e8098fecdcbd1d4d1ddcacb9edad7dcc185d0ccccc8cb9d8bf99d8afe9d8afed9dfddd6dbdddcddd4d7dbd9ccd1d7d6cbd0ddcadacad7d7d3dd96dbd7d59d8afec8cad7c8ddcaccc19d8afe8b8e8095decdcbd1d4d1ddcacb9d8afe">
1293 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1294 +</a></div></li><li class="list-inline-item btn-email">
1295 +<a href="#"><i class="houzez-icon icon-envelope"></i></a></li></ul></div></div>
1296 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1297 +<span aria-hidden="true">&times;</span>
1298 +</button></div><div class="modal-body clearfix"><div class="lightbox-gallery-wrap ">
1299 +<a class="btn-expand">
1300 +<i class="houzez-icon icon-expand-3"></i>
1301 +</a><div class="lightbox-gallery"><div id="lightbox-slider-js" class="lightbox-slider"><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-scaled.jpeg" alt="" title="image - 2026-06-19T001946.848" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001945.367-scaled.jpeg" alt="" title="image - 2026-06-19T001945.367" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001954.834-scaled.jpeg" alt="" title="image - 2026-06-19T001954.834" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001956.323-scaled.jpeg" alt="" title="image - 2026-06-19T001956.323" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001953.285-scaled.jpeg" alt="" title="image - 2026-06-19T001953.285" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001942.733-scaled.jpeg" alt="" title="image - 2026-06-19T001942.733" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001943.698-scaled.jpeg" alt="" title="image - 2026-06-19T001943.698" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001957.550-scaled.jpeg" alt="" title="image - 2026-06-19T001957.550" width="1920" height="2560" /></div></div></div></div><div class="lightbox-form-wrap"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1302 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1303 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1304 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [368 Fusiliers]</textarea></div>
1305 +<input type="hidden" name="target_email" value="c&#97;the&#114;&#105;ne.p&#101;&#114;&#114;e&#97;ul&#116;&#64;&#112;r&#101;s&#116;&#105;&#112;le&#120;.com">
1306 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1307 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/368-fusiliers/"/>
1308 +<input type="hidden" name="property_title" value="368 Fusiliers"/>
1309 +<input type="hidden" name="property_id" value="ADLS-10415"/>
1310 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1311 +<input type="hidden" name="listing_id" value="10415">
1312 +<input type="hidden" name="is_listing_form" value="yes">
1313 +<input type="hidden" name="agent_id" value="156">
1314 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1315 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1316 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1317 +</button></form></div></div></div></div><div class="modal-footer"></div></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1318 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="f9936141f2fee8323bcdddef-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1319 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="bootstrap-datepicker.fr-CA-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr-CA.min.js"></script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com/property/368-fusiliers/","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_nav","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"fr-CA","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="leaflet-js" type="litespeed/javascript" data-src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script> <script id="houzez-single-property-map-js-extra" type="litespeed/javascript">var houzez_single_property_map={"title":"368 Fusiliers","price":" 1,195$/mensuel","property_id":"10415","pricePin":"1,195$/mensuel","property_type":"5\u00bd","address":"368, Rue des Fusiliers, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Qu\u00e9bec, J1H 4J5, Canada","lat":"45.3976249","lng":"-71.8942574","term_id":"101","marker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","retinaMarker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","thumbnail":"https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-120x90.jpeg"};var houzez_map_options={"markerPricePins":"no","single_map_zoom":"12","map_type":"roadmap","map_pin_type":"marker","googlemap_stype":"","closeIcon":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/close.png","infoWindowPlac":"https://placehold.it/120x90&text=Agence+de+location+Sherbrooke"}</script> <script id="houzez-walkscore-js-before" type="litespeed/javascript">var ws_wsid=' 65c6f7843483895d5d5ef58e01b2d789';var ws_address='368, Rue des Fusiliers, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4J5, Canada';var ws_format='wide';var ws_width='650';var ws_width='100%';var ws_height='400'</script> <script id="houzez-walkscore-js" type="litespeed/javascript" data-src="https://www.walkscore.com/tile/show-walkscore-tile.php"></script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1320 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="f9936141f2fee8323bcdddef-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="f9936141f2fee8323bcdddef-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="f9936141f2fee8323bcdddef-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/7eb3e0d215c9a5e36449ede9b8431764.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="f9936141f2fee8323bcdddef-|49" defer></script></body></html>
1321 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:31:20 -->
1322 +
1323 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:31:20 -->
1324 +<!-- Guest Mode -->
1325 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/ed93c1ba2200a9da666c9871ea0b8f1b.css -->
1326 +<!-- QUIC.cloud UCSS loaded ✅ /ucss/53df4ecf63a221f01557df7a2c0b1e14.css -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/3691963c5af4e2f2ee59.html +1342 −0
@@ -0,0 +1,1342 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="6ea13a3d84ca5be3e612ee17-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>804 Degré, Magog - Agence de location Sherbrooke</title><meta name="description" content="4 1/2 disponible maintenant à Magog Interdiction de fumer dans l’immeuble et dans l’appartement. Rien d’inclus Thermopompe Espace de rangement Entrée laveuse-sécheuse et lave-vaiselle dans le logement 1 stationnement inclus, possibilité d’en avoir 2 avec un supplément. Tolérance pour 1 chat, les chiens ne sont pas autorisés. Situé au demi sous-sol Enquête de crédit obligatoire." /><meta name="robots" content="max-image-preview:large" /><meta name="author" content="Catherine Perreault"/><link rel="canonical" href="https://agencedelocationsherbrooke.com/property/804-degre-magog/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="article" /><meta property="og:title" content="804 Degré, Magog - Agence de location Sherbrooke" /><meta property="og:description" content="4 1/2 disponible maintenant à Magog Interdiction de fumer dans l’immeuble et dans l’appartement. Rien d’inclus Thermopompe Espace de rangement Entrée laveuse-sécheuse et lave-vaiselle dans le logement 1 stationnement inclus, possibilité d’en avoir 2 avec un supplément. Tolérance pour 1 chat, les chiens ne sont pas autorisés. Situé au demi sous-sol Enquête de crédit obligatoire." /><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/804-degre-magog/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0867-scaled.jpg" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0867-scaled.jpg" /><meta property="og:image:width" content="1920" /><meta property="og:image:height" content="2560" /><meta property="article:published_time" content="2025-02-12T03:32:51+00:00" /><meta property="article:modified_time" content="2026-07-04T21:18:47+00:00" /><meta property="article:publisher" content="https://www.facebook.com/agencedelocationsherbrooke" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="804 Degré, Magog - Agence de location Sherbrooke" /><meta name="twitter:description" content="4 1/2 disponible maintenant à Magog Interdiction de fumer dans l’immeuble et dans l’appartement. Rien d’inclus Thermopompe Espace de rangement Entrée laveuse-sécheuse et lave-vaiselle dans le logement 1 stationnement inclus, possibilité d’en avoir 2 avec un supplément. Tolérance pour 1 chat, les chiens ne sont pas autorisés. Situé au demi sous-sol Enquête de crédit obligatoire." /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/804-degre-magog\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","position":2,"name":"Properties","item":"https:\/\/agencedelocationsherbrooke.com\/property\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/#listItem","name":"4\u00bd"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/#listItem","position":3,"name":"4\u00bd","item":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/804-degre-magog\/#listItem","name":"804 Degr\u00e9, Magog"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/804-degre-magog\/#listItem","position":4,"name":"804 Degr\u00e9, Magog","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/#listItem","name":"4\u00bd"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/804-degre-magog\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/804-degre-magog\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"Person","@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author","url":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/","name":"Catherine Perreault","image":{"@type":"ImageObject","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/804-degre-magog\/#authorImage","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/litespeed\/avatar\/fdca211e8cbd2f88b79d873de06d8fa9.jpg?ver=1785951645","width":96,"height":96,"caption":"Catherine Perreault"}},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/804-degre-magog\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/property\/804-degre-magog\/","name":"804 Degr\u00e9, Magog - Agence de location Sherbrooke","description":"4 1\/2 disponible maintenant \u00e0 Magog Interdiction de fumer dans l\u2019immeuble et dans l\u2019appartement. Rien d\u2019inclus Thermopompe Espace de rangement Entr\u00e9e laveuse-s\u00e9cheuse et lave-vaiselle dans le logement 1 stationnement inclus, possibilit\u00e9 d\u2019en avoir 2 avec un suppl\u00e9ment. Tol\u00e9rance pour 1 chat, les chiens ne sont pas autoris\u00e9s. Situ\u00e9 au demi sous-sol Enqu\u00eate de cr\u00e9dit obligatoire.","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/804-degre-magog\/#breadcrumblist"},"author":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"creator":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/IMG_0867-scaled.jpg","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/804-degre-magog\/#mainImage","width":1920,"height":2560},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/804-degre-magog\/#mainImage"},"datePublished":"2025-02-12T03:32:51+00:00","dateModified":"2026-07-04T21:18:47+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//unpkg.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&#038;format=xml" /><meta property="og:title" content="804 Degré, Magog"/><meta property="og:description" content="4 1/2 disponible maintenant à Magog
2 +Interdiction de fumer dans l’immeuble et dans l’appartement.Rien d’inclus
3 +Thermopompe
4 +Espace de rangement
5 +Entrée l" /><meta property="og:type" content="article"/><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/804-degre-magog/"/><meta property="og:site_name" content="Agence de location Sherbrooke"/><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0867-scaled.jpg"/><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
6 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}body{font-size:15px;font-family:Roboto,sans-serif}body{background-color:#f8f8f8}body{color:#222}body{line-height:25px;font-weight:300;text-transform:none}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}body{background-color:#f7f7f7}body{color:#222}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="6ea13a3d84ca5be3e612ee17-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/ucss/8409a6cfda2f115c931a191293f338ae.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="wp-block-library-inline-css">:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
7 +
8 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */</style><style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
9 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
10 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
11 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
12 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
13 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
14 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
15 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
16 + .container {
17 + max-width: 1210px;
18 + }
19 + }
20 + .label-color-87 {
21 + background-color: #31af00;
22 + }
23 +
24 + .status-color-28 {
25 + background-color: #dd9933;
26 + }
27 +
28 + .status-color-88 {
29 + background-color: #b7ba00;
30 + }
31 +
32 + .status-color-95 {
33 + background-color: #dd3333;
34 + }
35 +
36 + .status-color-94 {
37 + background-color: #1e73be;
38 + }
39 +
40 + .status-color-89 {
41 + background-color: #31af00;
42 + }
43 +
44 + body {
45 + font-family: Poppins;
46 + font-size: 16px;
47 + font-weight: 400;
48 + line-height: 24px;
49 + text-transform: none;
50 + }
51 + .main-nav,
52 + .dropdown-menu,
53 + .login-register,
54 + .btn.btn-create-listing,
55 + .logged-in-nav,
56 + .btn-phone-number {
57 + font-family: Poppins;
58 + font-size: 14px;
59 + font-weight: 400;
60 + text-align: left;
61 + text-transform: uppercase;
62 + }
63 +
64 + .btn,
65 + .form-control,
66 + .bootstrap-select .text,
67 + .sort-by-title,
68 + .woocommerce ul.products li.product .button {
69 + font-family: Poppins;
70 + font-size: 16px;
71 + }
72 +
73 + h1, h2, h3, h4, h5, h6, .item-title {
74 + font-family: Poppins;
75 + font-weight: 400;
76 + text-transform: capitalize;
77 + }
78 +
79 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
80 + font-weight: 400;
81 + text-transform: capitalize;
82 + text-align: inherit;
83 + }
84 +
85 + .top-bar-wrap {
86 + font-family: Poppins;
87 + font-size: 15px;
88 + font-weight: 300;
89 + line-height: 25px;
90 + text-align: left;
91 + text-transform: none;
92 + }
93 + .footer-wrap {
94 + font-family: Poppins;
95 + font-size: 14px;
96 + font-weight: 300;
97 + line-height: 25px;
98 + text-align: left;
99 + text-transform: none;
100 + }
101 +
102 + .header-v1 .header-inner-wrap,
103 + .header-v1 .navbar-logged-in-wrap {
104 + line-height: 60px;
105 + height: 60px;
106 + }
107 + .header-v2 .header-top .navbar {
108 + height: 110px;
109 + }
110 +
111 + .header-v2 .header-bottom .header-inner-wrap,
112 + .header-v2 .header-bottom .navbar-logged-in-wrap {
113 + line-height: 54px;
114 + height: 54px;
115 + }
116 +
117 + .header-v3 .header-top .header-inner-wrap,
118 + .header-v3 .header-top .header-contact-wrap {
119 + height: 80px;
120 + line-height: 80px;
121 + }
122 + .header-v3 .header-bottom .header-inner-wrap,
123 + .header-v3 .header-bottom .navbar-logged-in-wrap {
124 + line-height: 54px;
125 + height: 54px;
126 + }
127 + .header-v4 .header-inner-wrap,
128 + .header-v4 .navbar-logged-in-wrap {
129 + line-height: 90px;
130 + height: 90px;
131 + }
132 + .header-v5 .header-top .header-inner-wrap,
133 + .header-v5 .header-top .navbar-logged-in-wrap {
134 + line-height: 110px;
135 + height: 110px;
136 + }
137 + .header-v5 .header-bottom .header-inner-wrap {
138 + line-height: 54px;
139 + height: 54px;
140 + }
141 + .header-v6 .header-inner-wrap,
142 + .header-v6 .navbar-logged-in-wrap {
143 + height: 60px;
144 + line-height: 60px;
145 + }
146 + @media (min-width: 1200px) {
147 + .header-v5 .header-top .container {
148 + max-width: 1170px;
149 + }
150 + }
151 +
152 + body,
153 + .main-wrap,
154 + .fw-property-documents-wrap h3 span,
155 + .fw-property-details-wrap h3 span {
156 + background-color: #f7f7f7;
157 + }
158 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
159 + background-color: #ffffff;
160 + }
161 +
162 + body,
163 + .form-control,
164 + .bootstrap-select .text,
165 + .item-title a,
166 + .listing-tabs .nav-tabs .nav-link,
167 + .item-wrap-v2 .item-amenities li span,
168 + .item-wrap-v2 .item-amenities li:before,
169 + .item-parallax-wrap .item-price-wrap,
170 + .list-view .item-body .item-price-wrap,
171 + .property-slider-item .item-price-wrap,
172 + .page-title-wrap .item-price-wrap,
173 + .agent-information .agent-phone span a,
174 + .property-overview-wrap ul li strong,
175 + .mobile-property-title .item-price-wrap .item-price,
176 + .fw-property-features-left li a,
177 + .lightbox-content-wrap .item-price-wrap,
178 + .blog-post-item-v1 .blog-post-title h3 a,
179 + .blog-post-content-widget h4 a,
180 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
181 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
182 + .agent-list-wrap .agent-list-content h2 a,
183 + .agent-list-wrap .agent-list-contact li a,
184 + .agent-contacts-wrap li a,
185 + .menu-edit-property li a,
186 + .statistic-referrals-list li a,
187 + .chart-nav .nav-pills .nav-link,
188 + .dashboard-table-properties td .property-payment-status,
189 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
190 + .payment-method-block .radio-tab .control-text,
191 + .post-title-wrap h2 a,
192 + .lead-nav-tab.nav-pills .nav-link,
193 + .deals-nav-tab.nav-pills .nav-link,
194 + .btn-light-grey-outlined:hover,
195 + button:not(.bs-placeholder) .filter-option-inner-inner,
196 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
197 + .products > .product > .item-body > a,
198 + .woocommerce ul.products li.product .price,
199 + .woocommerce div.product p.price,
200 + .woocommerce div.product span.price,
201 + .woocommerce #reviews #comments ol.commentlist li .meta,
202 + .woocommerce-MyAccount-navigation ul li a,
203 + .activitiy-item-close-button a,
204 + .property-section-wrap li a {
205 + color: #222222;
206 + }
207 +
208 +
209 +
210 + a,
211 + a:hover,
212 + a:active,
213 + a:focus,
214 + .primary-text,
215 + .btn-clear,
216 + .btn-apply,
217 + .btn-primary-outlined,
218 + .btn-primary-outlined:before,
219 + .item-title a:hover,
220 + .sort-by .bootstrap-select .bs-placeholder,
221 + .sort-by .bootstrap-select > .btn,
222 + .sort-by .bootstrap-select > .btn:active,
223 + .page-link,
224 + .page-link:hover,
225 + .accordion-title:before,
226 + .blog-post-content-widget h4 a:hover,
227 + .agent-list-wrap .agent-list-content h2 a:hover,
228 + .agent-list-wrap .agent-list-contact li a:hover,
229 + .agent-contacts-wrap li a:hover,
230 + .agent-nav-wrap .nav-pills .nav-link,
231 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
232 + .menu-edit-property li a.active,
233 + .menu-edit-property li a:hover,
234 + .dashboard-statistic-block h3 .fa,
235 + .statistic-referrals-list li a:hover,
236 + .chart-nav .nav-pills .nav-link.active,
237 + .board-message-icon-wrap.active,
238 + .post-title-wrap h2 a:hover,
239 + .listing-switch-view .switch-btn.active,
240 + .item-wrap-v6 .item-price-wrap,
241 + .listing-v6 .list-view .item-body .item-price-wrap,
242 + .woocommerce nav.woocommerce-pagination ul li a,
243 + .woocommerce nav.woocommerce-pagination ul li span,
244 + .woocommerce-MyAccount-navigation ul li a:hover,
245 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
246 + .property-schedule-tour-form-wrap .control:hover,
247 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
248 + .login-register .btn-icon-login-register + .dropdown-menu a,
249 + .activitiy-item-close-button a:hover,
250 + .property-section-wrap li a:hover,
251 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
252 + color: #3385d9;
253 + }
254 +
255 + .agent-list-position a {
256 + color: #3385d9;
257 + }
258 +
259 + .control input:checked ~ .control__indicator,
260 + .top-banner-wrap .nav-pills .nav-link,
261 + .btn-primary-outlined:hover,
262 + .page-item.active .page-link,
263 + .slick-prev:hover,
264 + .slick-prev:focus,
265 + .slick-next:hover,
266 + .slick-next:focus,
267 + .mobile-property-tools .nav-pills .nav-link.active,
268 + .login-register-form .modal-header,
269 + .agent-nav-wrap .nav-pills .nav-link.active,
270 + .board-message-icon-wrap .notification-circle,
271 + .primary-label,
272 + .fc-event, .fc-event-dot,
273 + .compare-table .table-hover > tbody > tr:hover,
274 + .post-tag,
275 + .datepicker table tr td.active.active,
276 + .datepicker table tr td.active.disabled,
277 + .datepicker table tr td.active.disabled.active,
278 + .datepicker table tr td.active.disabled.disabled,
279 + .datepicker table tr td.active.disabled:active,
280 + .datepicker table tr td.active.disabled:hover,
281 + .datepicker table tr td.active.disabled:hover.active,
282 + .datepicker table tr td.active.disabled:hover.disabled,
283 + .datepicker table tr td.active.disabled:hover:active,
284 + .datepicker table tr td.active.disabled:hover:hover,
285 + .datepicker table tr td.active.disabled:hover[disabled],
286 + .datepicker table tr td.active.disabled[disabled],
287 + .datepicker table tr td.active:active,
288 + .datepicker table tr td.active:hover,
289 + .datepicker table tr td.active:hover.active,
290 + .datepicker table tr td.active:hover.disabled,
291 + .datepicker table tr td.active:hover:active,
292 + .datepicker table tr td.active:hover:hover,
293 + .datepicker table tr td.active:hover[disabled],
294 + .datepicker table tr td.active[disabled],
295 + .ui-slider-horizontal .ui-slider-range,
296 + .btn-bubble {
297 + background-color: #3385d9;
298 + }
299 +
300 + .control input:checked ~ .control__indicator,
301 + .btn-primary-outlined,
302 + .page-item.active .page-link,
303 + .mobile-property-tools .nav-pills .nav-link.active,
304 + .agent-nav-wrap .nav-pills .nav-link,
305 + .agent-nav-wrap .nav-pills .nav-link.active,
306 + .chart-nav .nav-pills .nav-link.active,
307 + .dashaboard-snake-nav .step-block.active,
308 + .fc-event,
309 + .fc-event-dot,
310 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
311 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
312 + border-color: #3385d9;
313 + }
314 +
315 + .slick-arrow:hover {
316 + background-color: rgba(43,111,180,1);
317 + }
318 +
319 + .slick-arrow {
320 + background-color: #3385d9;
321 + }
322 +
323 + .property-banner .nav-pills .nav-link.active {
324 + background-color: rgba(43,111,180,1) !important;
325 + }
326 +
327 + .property-navigation-wrap a.active {
328 + color: #3385d9;
329 + -webkit-box-shadow: inset 0 -3px #3385d9;
330 + box-shadow: inset 0 -3px #3385d9;
331 + }
332 +
333 + .btn-primary,
334 + .fc-button-primary,
335 + .woocommerce nav.woocommerce-pagination ul li a:focus,
336 + .woocommerce nav.woocommerce-pagination ul li a:hover,
337 + .woocommerce nav.woocommerce-pagination ul li span.current {
338 + color: #fff;
339 + background-color: #3385d9;
340 + border-color: #3385d9;
341 + }
342 + .btn-primary:focus, .btn-primary:focus:active,
343 + .fc-button-primary:focus,
344 + .fc-button-primary:focus:active {
345 + color: #fff;
346 + background-color: #3385d9;
347 + border-color: #3385d9;
348 + }
349 + .btn-primary:hover,
350 + .fc-button-primary:hover {
351 + color: #fff;
352 + background-color: #2b6fb4;
353 + border-color: #2b6fb4;
354 + }
355 + .btn-primary:active,
356 + .btn-primary:not(:disabled):not(:disabled):active,
357 + .fc-button-primary:active,
358 + .fc-button-primary:not(:disabled):not(:disabled):active {
359 + color: #fff;
360 + background-color: #2b6fb4;
361 + border-color: #2b6fb4;
362 + }
363 +
364 + .btn-secondary,
365 + .woocommerce span.onsale,
366 + .woocommerce ul.products li.product .button,
367 + .woocommerce #respond input#submit.alt,
368 + .woocommerce a.button.alt,
369 + .woocommerce button.button.alt,
370 + .woocommerce input.button.alt,
371 + .woocommerce #review_form #respond .form-submit input,
372 + .woocommerce #respond input#submit,
373 + .woocommerce a.button,
374 + .woocommerce button.button,
375 + .woocommerce input.button {
376 + color: #fff;
377 + background-color: #656565;
378 + border-color: #656565;
379 + }
380 + .woocommerce ul.products li.product .button:focus,
381 + .woocommerce ul.products li.product .button:active,
382 + .woocommerce #respond input#submit.alt:focus,
383 + .woocommerce a.button.alt:focus,
384 + .woocommerce button.button.alt:focus,
385 + .woocommerce input.button.alt:focus,
386 + .woocommerce #respond input#submit.alt:active,
387 + .woocommerce a.button.alt:active,
388 + .woocommerce button.button.alt:active,
389 + .woocommerce input.button.alt:active,
390 + .woocommerce #review_form #respond .form-submit input:focus,
391 + .woocommerce #review_form #respond .form-submit input:active,
392 + .woocommerce #respond input#submit:active,
393 + .woocommerce a.button:active,
394 + .woocommerce button.button:active,
395 + .woocommerce input.button:active,
396 + .woocommerce #respond input#submit:focus,
397 + .woocommerce a.button:focus,
398 + .woocommerce button.button:focus,
399 + .woocommerce input.button:focus {
400 + color: #fff;
401 + background-color: #656565;
402 + border-color: #656565;
403 + }
404 + .btn-secondary:hover,
405 + .woocommerce ul.products li.product .button:hover,
406 + .woocommerce #respond input#submit.alt:hover,
407 + .woocommerce a.button.alt:hover,
408 + .woocommerce button.button.alt:hover,
409 + .woocommerce input.button.alt:hover,
410 + .woocommerce #review_form #respond .form-submit input:hover,
411 + .woocommerce #respond input#submit:hover,
412 + .woocommerce a.button:hover,
413 + .woocommerce button.button:hover,
414 + .woocommerce input.button:hover {
415 + color: #fff;
416 + background-color: #333333;
417 + border-color: #333333;
418 + }
419 + .btn-secondary:active,
420 + .btn-secondary:not(:disabled):not(:disabled):active {
421 + color: #fff;
422 + background-color: #333333;
423 + border-color: #333333;
424 + }
425 +
426 + .btn-primary-outlined {
427 + color: #3385d9;
428 + background-color: transparent;
429 + border-color: #3385d9;
430 + }
431 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
432 + color: #3385d9;
433 + background-color: transparent;
434 + border-color: #3385d9;
435 + }
436 + .btn-primary-outlined:hover {
437 + color: #fff;
438 + background-color: #2b6fb4;
439 + border-color: #2b6fb4;
440 + }
441 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
442 + color: #3385d9;
443 + background-color: rgba(26, 26, 26, 0);
444 + border-color: #2b6fb4;
445 + }
446 +
447 + .btn-secondary-outlined {
448 + color: #656565;
449 + background-color: transparent;
450 + border-color: #656565;
451 + }
452 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
453 + color: #656565;
454 + background-color: transparent;
455 + border-color: #656565;
456 + }
457 + .btn-secondary-outlined:hover {
458 + color: #fff;
459 + background-color: #333333;
460 + border-color: #333333;
461 + }
462 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
463 + color: #656565;
464 + background-color: rgba(26, 26, 26, 0);
465 + border-color: #333333;
466 + }
467 +
468 + .btn-call {
469 + color: #656565;
470 + background-color: transparent;
471 + border-color: #656565;
472 + }
473 + .btn-call:focus, .btn-call:focus:active {
474 + color: #656565;
475 + background-color: transparent;
476 + border-color: #656565;
477 + }
478 + .btn-call:hover {
479 + color: #656565;
480 + background-color: rgba(26, 26, 26, 0);
481 + border-color: #333333;
482 + }
483 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
484 + color: #656565;
485 + background-color: rgba(26, 26, 26, 0);
486 + border-color: #333333;
487 + }
488 + .icon-delete .btn-loader:after{
489 + border-color: #3385d9 transparent #3385d9 transparent
490 + }
491 +
492 + .header-v1 {
493 + background-color: #004274;
494 + border-bottom: 1px solid #004274;
495 + }
496 +
497 + .header-v1 a.nav-link {
498 + color: #ffffff;
499 + }
500 +
501 + .header-v1 a.nav-link:hover,
502 + .header-v1 a.nav-link:active {
503 + color: #00aeff;
504 + background-color: rgba(255,255,255,0.2);
505 + }
506 + .header-desktop .main-nav .nav-link {
507 + letter-spacing: 0.0px;
508 + }
509 +
510 + .header-v2 .header-top,
511 + .header-v5 .header-top,
512 + .header-v2 .header-contact-wrap {
513 + background-color: #ffffff;
514 + }
515 +
516 + .header-v2 .header-bottom,
517 + .header-v5 .header-bottom {
518 + background-color: #004274;
519 + }
520 +
521 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
522 + color: #004274;
523 + }
524 +
525 + .header-v2 .header-contact-left {
526 + color: #004274;
527 + }
528 +
529 + .header-v2 .header-bottom,
530 + .header-v2 .navbar-nav > li,
531 + .header-v2 .navbar-nav > li:first-of-type,
532 + .header-v5 .header-bottom,
533 + .header-v5 .navbar-nav > li,
534 + .header-v5 .navbar-nav > li:first-of-type {
535 + border-color: rgba(255,255,255,0.2);
536 + }
537 +
538 + .header-v2 a.nav-link,
539 + .header-v5 a.nav-link {
540 + color: #ffffff;
541 + }
542 +
543 + .header-v2 a.nav-link:hover,
544 + .header-v2 a.nav-link:active,
545 + .header-v5 a.nav-link:hover,
546 + .header-v5 a.nav-link:active {
547 + color: #00aeff;
548 + background-color: rgba(255,255,255,0.2);
549 + }
550 +
551 + .header-v2 .header-contact-right a:hover,
552 + .header-v2 .header-contact-right a:active,
553 + .header-v3 .header-contact-right a:hover,
554 + .header-v3 .header-contact-right a:active {
555 + background-color: transparent;
556 + }
557 +
558 + .header-v2 .header-social-icons a,
559 + .header-v5 .header-social-icons a {
560 + color: #004274;
561 + }
562 +
563 + .header-v3 .header-top {
564 + background-color: #004274;
565 + }
566 +
567 + .header-v3 .header-bottom {
568 + background-color: #004272;
569 + }
570 +
571 + .header-v3 .header-contact,
572 + .header-v3-mobile {
573 + background-color: #00aeef;
574 + color: #ffffff;
575 + }
576 +
577 + .header-v3 .header-bottom,
578 + .header-v3 .login-register,
579 + .header-v3 .navbar-nav > li,
580 + .header-v3 .navbar-nav > li:first-of-type {
581 + border-color: ;
582 + }
583 +
584 + .header-v3 a.nav-link,
585 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
586 + color: #ffffff;
587 + }
588 +
589 + .header-v3 a.nav-link:hover,
590 + .header-v3 a.nav-link:active {
591 + color: #00aeff;
592 + background-color: rgba(255,255,255,0.2);
593 + }
594 +
595 + .header-v3 .header-social-icons a {
596 + color: #FFFFFF;
597 + }
598 +
599 + .header-v4 {
600 + background-color: #ffffff;
601 + }
602 +
603 + .header-v4 a.nav-link {
604 + color: #000000;
605 + }
606 +
607 + .header-v4 a.nav-link:hover,
608 + .header-v4 a.nav-link:active {
609 + color: #3385d9;
610 + background-color: rgba(255,255,255,0.2);
611 + }
612 +
613 + .header-v6 .header-top {
614 + background-color: #00AEEF;
615 + }
616 +
617 + .header-v6 a.nav-link {
618 + color: #FFFFFF;
619 + }
620 +
621 + .header-v6 a.nav-link:hover,
622 + .header-v6 a.nav-link:active {
623 + color: #00aeff;
624 + background-color: rgba(255,255,255,0.2);
625 + }
626 +
627 + .header-v6 .header-social-icons a {
628 + color: #FFFFFF;
629 + }
630 +
631 + .header-mobile {
632 + background-color: #ffffff;
633 + }
634 + .header-mobile .toggle-button-left,
635 + .header-mobile .toggle-button-right {
636 + color: #000000;
637 + }
638 +
639 + .nav-mobile .logged-in-nav a,
640 + .nav-mobile .main-nav,
641 + .nav-mobile .navi-login-register {
642 + background-color: #ffffff;
643 + }
644 +
645 + .nav-mobile .logged-in-nav a,
646 + .nav-mobile .main-nav .nav-item .nav-item a,
647 + .nav-mobile .main-nav .nav-item a,
648 + .navi-login-register .main-nav .nav-item a {
649 + color: #000000;
650 + border-bottom: 1px solid #ffffff;
651 + background-color: #ffffff;
652 + }
653 +
654 + .nav-mobile .btn-create-listing,
655 + .navi-login-register .btn-create-listing {
656 + color: #fff;
657 + border: 1px solid #3385d9;
658 + background-color: #3385d9;
659 + }
660 +
661 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
662 + .navi-login-register .btn-create-listing:hover,
663 + .navi-login-register .btn-create-listing:active {
664 + color: #fff;
665 + border: 1px solid #3385d9;
666 + background-color: rgba(0, 174, 255, 0.65);
667 + }
668 +
669 + .header-transparent-wrap .header-v4 {
670 + background-color: transparent;
671 + border-bottom: 1px none rgba(255,255,255,0.3);
672 + }
673 +
674 + .header-transparent-wrap .header-v4 a {
675 + color: #ffffff;
676 + }
677 +
678 + .header-transparent-wrap .header-v4 a:hover,
679 + .header-transparent-wrap .header-v4 a:active {
680 + color: #3385d9;
681 + background-color: rgba(255, 255, 255, 0.1);
682 + }
683 +
684 + .main-nav .navbar-nav .nav-item .dropdown-menu,
685 + .login-register .login-register-nav li .dropdown-menu {
686 + background-color: rgba(255,255,255,0.95);
687 + }
688 +
689 + .login-register .login-register-nav li .dropdown-menu:before {
690 + border-left-color: rgba(255,255,255,0.95);
691 + border-top-color: rgba(255,255,255,0.95);
692 + }
693 +
694 + .main-nav .navbar-nav .nav-item .nav-item a,
695 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
696 + color: #3385d9;
697 + border-bottom: 1px solid #e6e6e6;
698 + }
699 +
700 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
701 + .main-nav .navbar-nav .nav-item .nav-item a:active,
702 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
703 + color: #2b6fb4;
704 + }
705 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
706 + .main-nav .navbar-nav .nav-item .nav-item a:active,
707 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
708 + background-color: rgba(0, 174, 255, 0.1);
709 + }
710 +
711 + .header-main-wrap .btn-create-listing {
712 + color: #3385d9;
713 + border: 1px solid #3385d9;
714 + background-color: #ffffff;
715 + }
716 +
717 + .header-main-wrap .btn-create-listing:hover,
718 + .header-main-wrap .btn-create-listing:active {
719 + color: rgba(255,255,255,1);
720 + border: 1px solid #2b6fb4;
721 + background-color: rgba(43,111,180,1);
722 + }
723 +
724 + .header-transparent-wrap .header-v4 .btn-create-listing {
725 + color: #ffffff;
726 + border: 1px solid #ffffff;
727 + background-color: rgba(255,255,255,0.2);
728 + }
729 +
730 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
731 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
732 + color: rgba(255,255,255,1);
733 + border: 1px solid #3385d9;
734 + background-color: rgba(51,133,217,1);
735 + }
736 +
737 + .header-transparent-wrap .logged-in-nav a,
738 + .logged-in-nav a {
739 + color: #000000;
740 + border-color: #e6e6e6;
741 + background-color: #FFFFFF;
742 + }
743 +
744 + .header-transparent-wrap .logged-in-nav a:hover,
745 + .header-transparent-wrap .logged-in-nav a:active,
746 + .logged-in-nav a:hover,
747 + .logged-in-nav a:active {
748 + color: #000000;
749 + background-color: rgba(204,204,204,0.15);
750 + border-color: #e6e6e6;
751 + }
752 +
753 + .form-control::-webkit-input-placeholder,
754 + .search-banner-wrap ::-webkit-input-placeholder,
755 + .advanced-search ::-webkit-input-placeholder,
756 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
757 + .overlay-search-advanced-module ::-webkit-input-placeholder {
758 + color: #a1a7a8;
759 + }
760 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
761 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
762 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
763 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
764 + color: #a1a7a8;
765 + }
766 + .form-control::placeholder,
767 + .search-banner-wrap ::-webkit-input-placeholder,
768 + .advanced-search ::-webkit-input-placeholder,
769 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
770 + .overlay-search-advanced-module ::-webkit-input-placeholder {
771 + color: #a1a7a8;
772 + }
773 +
774 + .search-banner-wrap ::-moz-placeholder,
775 + .advanced-search ::-moz-placeholder,
776 + .advanced-search-banner-wrap ::-moz-placeholder,
777 + .overlay-search-advanced-module ::-moz-placeholder {
778 + color: #a1a7a8;
779 + }
780 +
781 + .search-banner-wrap :-ms-input-placeholder,
782 + .advanced-search :-ms-input-placeholder,
783 + .advanced-search-banner-wrap ::-ms-input-placeholder,
784 + .overlay-search-advanced-module ::-ms-input-placeholder {
785 + color: #a1a7a8;
786 + }
787 +
788 + .search-banner-wrap :-moz-placeholder,
789 + .advanced-search :-moz-placeholder,
790 + .advanced-search-banner-wrap :-moz-placeholder,
791 + .overlay-search-advanced-module :-moz-placeholder {
792 + color: #a1a7a8;
793 + }
794 +
795 + .advanced-search .form-control,
796 + .advanced-search .bootstrap-select > .btn,
797 + .location-trigger,
798 + .vertical-search-wrap .form-control,
799 + .vertical-search-wrap .bootstrap-select > .btn,
800 + .step-search-wrap .form-control,
801 + .step-search-wrap .bootstrap-select > .btn,
802 + .advanced-search-banner-wrap .form-control,
803 + .advanced-search-banner-wrap .bootstrap-select > .btn,
804 + .search-banner-wrap .form-control,
805 + .search-banner-wrap .bootstrap-select > .btn,
806 + .overlay-search-advanced-module .form-control,
807 + .overlay-search-advanced-module .bootstrap-select > .btn,
808 + .advanced-search-v2 .advanced-search-btn,
809 + .advanced-search-v2 .advanced-search-btn:hover {
810 + border-color: #cccccc;
811 + }
812 +
813 + .advanced-search-nav,
814 + .search-expandable,
815 + .overlay-search-advanced-module {
816 + background-color: #FFFFFF;
817 + }
818 + .btn-search {
819 + color: #ffffff;
820 + background-color: #3385d9;
821 + border-color: #3385d9;
822 + }
823 + .btn-search:hover, .btn-search:active {
824 + color: #ffffff;
825 + background-color: #2b6fb4;
826 + border-color: #2b6fb4;
827 + }
828 + .advanced-search-btn {
829 + color: #666666;
830 + background-color: #ffffff;
831 + border-color: #dce0e0;
832 + }
833 + .advanced-search-btn:hover, .advanced-search-btn:active {
834 + color: #000000;
835 + background-color: #ffffff;
836 + border-color: #dce0e0;
837 + }
838 + .advanced-search-btn:focus {
839 + color: #666666;
840 + background-color: #ffffff;
841 + border-color: #dce0e0;
842 + }
843 + .search-expandable-label {
844 + color: #ffffff;
845 + background-color: #ff6e00;
846 + }
847 + .advanced-search-nav {
848 + padding-top: 10px;
849 + padding-bottom: 10px;
850 + }
851 + .features-list-wrap .control--checkbox,
852 + .features-list-wrap .control--radio,
853 + .range-text,
854 + .features-list-wrap .control--checkbox,
855 + .features-list-wrap .btn-features-list,
856 + .overlay-search-advanced-module .search-title,
857 + .overlay-search-advanced-module .overlay-search-module-close {
858 + color: #222222;
859 + }
860 + .advanced-search-half-map {
861 + background-color: #FFFFFF;
862 + }
863 + .advanced-search-half-map .range-text,
864 + .advanced-search-half-map .features-list-wrap .control--checkbox,
865 + .advanced-search-half-map .features-list-wrap .btn-features-list {
866 + color: #222222;
867 + }
868 +
869 + .save-search-btn {
870 + border-color: #28a745 ;
871 + background-color: #28a745 ;
872 + color: #ffffff ;
873 + }
874 + .save-search-btn:hover,
875 + .save-search-btn:active {
876 + border-color: #28a745;
877 + background-color: #28a745 ;
878 + color: #ffffff ;
879 + }
880 + .label-featured {
881 + background-color: #e22424;
882 + color: #ffffff;
883 + }
884 +
885 + .dashboard-side-wrap {
886 + background-color: #00365e;
887 + }
888 +
889 + .side-menu a {
890 + color: #ffffff;
891 + }
892 +
893 + .side-menu a.active,
894 + .side-menu .side-menu-parent-selected > a,
895 + .side-menu-dropdown a,
896 + .side-menu a:hover {
897 + color: #3385d9;
898 + }
899 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
900 + color: #2b6fb4
901 + }
902 +
903 + .detail-wrap {
904 + background-color: rgba(119,199,32,0.1);
905 + border-color: #3385d9;
906 + }
907 + .top-bar-wrap,
908 + .top-bar-wrap .dropdown-menu,
909 + .switcher-wrap .dropdown-menu {
910 + background-color: #000000;
911 + }
912 + .top-bar-wrap a,
913 + .top-bar-contact,
914 + .top-bar-slogan,
915 + .top-bar-wrap .btn,
916 + .top-bar-wrap .dropdown-menu,
917 + .switcher-wrap .dropdown-menu,
918 + .top-bar-wrap .navbar-toggler {
919 + color: #ffffff;
920 + }
921 + .top-bar-wrap a:hover,
922 + .top-bar-wrap a:active,
923 + .top-bar-wrap .btn:hover,
924 + .top-bar-wrap .btn:active,
925 + .top-bar-wrap .dropdown-menu li:hover,
926 + .top-bar-wrap .dropdown-menu li:active,
927 + .switcher-wrap .dropdown-menu li:hover,
928 + .switcher-wrap .dropdown-menu li:active {
929 + color: rgba(43,111,180,1);
930 + }
931 + .class-energy-indicator:nth-child(1) {
932 + background-color: #33a357;
933 + }
934 + .class-energy-indicator:nth-child(2) {
935 + background-color: #79b752;
936 + }
937 + .class-energy-indicator:nth-child(3) {
938 + background-color: #c3d545;
939 + }
940 + .class-energy-indicator:nth-child(4) {
941 + background-color: #fff12c;
942 + }
943 + .class-energy-indicator:nth-child(5) {
944 + background-color: #edb731;
945 + }
946 + .class-energy-indicator:nth-child(6) {
947 + background-color: #d66f2c;
948 + }
949 + .class-energy-indicator:nth-child(7) {
950 + background-color: #cc232a;
951 + }
952 + .class-energy-indicator:nth-child(8) {
953 + background-color: #cc232a;
954 + }
955 + .class-energy-indicator:nth-child(9) {
956 + background-color: #cc232a;
957 + }
958 + .class-energy-indicator:nth-child(10) {
959 + background-color: #cc232a;
960 + }
961 +
962 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
963 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
964 +
965 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
966 +
967 + .footer-top-wrap {
968 + background-color: #000000;
969 + }
970 +
971 + .footer-bottom-wrap {
972 + background-color: #000000;
973 + }
974 +
975 + .footer-top-wrap,
976 + .footer-top-wrap a,
977 + .footer-bottom-wrap,
978 + .footer-bottom-wrap a,
979 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
980 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
981 + .footer-top-wrap .blog-post-content-widget h4 a,
982 + .footer-top-wrap .blog-post-content-widget,
983 + .footer-top-wrap .form-tools .control,
984 + .footer-top-wrap .slick-dots li.slick-active button:before,
985 + .footer-top-wrap .slick-dots li button::before,
986 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
987 + color: #ffffff;
988 + }
989 +
990 + .footer-top-wrap a:hover,
991 + .footer-bottom-wrap a:hover,
992 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
993 + color: rgba(43,111,180,1);
994 + }
995 + .houzez-osm-cluster {
996 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
997 + text-align: center;
998 + color: #fff;
999 + width: 48px;
1000 + height: 48px;
1001 + line-height: 48px;
1002 + }
1003 + .text-success{color:red!important;}
1004 +
1005 +/*.mobile-property-contact{bottom:40px;}*/
1006 +
1007 +/* Button retour en haut*/
1008 +/*
1009 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1010 +.mobile-property-contact .btn{margin-right: 60px;}
1011 +*/
1012 +
1013 +.item-tool.houzez-share{display:none;}
1014 +
1015 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1016 +
1017 +.grecaptcha-badge{display:none!important;}
1018 +
1019 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1020 +
1021 +
1022 +@media only screen and (max-width: 768px) {
1023 + /* For mobile phones: */
1024 +
1025 + /* Button retour en haut*/
1026 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1027 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1028 +}
1029 +/*# sourceURL=houzez-style-inline-css */</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="6ea13a3d84ca5be3e612ee17-|49"></script><link data-asynced="1" as="style" onload="this.onload=null;this.rel='stylesheet'" rel='preload' id='leaflet-css' href='https://unpkg.com/leaflet@1.7.1/dist/leaflet.css' media='all' /><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1030 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1031 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/properties/8438" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/?p=8438' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/property/804-degre-magog/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/property/804-degre-magog/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1032 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1033 + background-image: none !important;
1034 + }
1035 + @media screen and (max-height: 1024px) {
1036 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1037 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1038 + background-image: none !important;
1039 + }
1040 + }
1041 + @media screen and (max-height: 640px) {
1042 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1043 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1044 + background-image: none !important;
1045 + }
1046 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1047 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1048 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1049 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1050 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="wp-singular property-template-default single single-property postid-8438 wp-custom-logo wp-theme-houzez translatepress-fr_CA transparent- houzez-header- elementor-default elementor-kit-6"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1051 +<a href="https://agencedelocationsherbrooke.com/">
1052 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1053 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1054 +<button class="btn toggle-button-left">
1055 +<i class="houzez-icon icon-navigation-menu"></i>
1056 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1057 +<a href="https://agencedelocationsherbrooke.com/">
1058 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1059 +</a></div></div><div class="header-mobile-right"></div></div></header><section class="content-wrap property-wrap property-detail-v6 "><div class="property-navigation-wrap"><div class="container-fluid"><ul class="property-navigation list-unstyled d-flex justify-content-between"><li class="property-navigation-item">
1060 +<a class="back-top" href="#main-wrap">
1061 +<i class="houzez-icon icon-arrow-button-circle-up"></i>
1062 +</a></li><li class="property-navigation-item">
1063 +<a class="target" href="#property-features-wrap">Inclusions</a></li><li class="property-navigation-item">
1064 +<a class="target" href="#property-description-wrap">Description</a></li><li class="property-navigation-item">
1065 +<a class="target" href="#property-address-wrap">Addresse</a></li><li class="property-navigation-item">
1066 +<a class="target" href="#property-detail-wrap">Détails</a></li><li class="property-navigation-item">
1067 +<a class="target" href="#property-video-wrap">Vidéo</a></li><li class="property-navigation-item">
1068 +<a class="target" href="#property-walkscore-wrap">Walkscore</a></li><li class="property-navigation-item">
1069 +<a class="target" href="#similar-listings-wrap">Annonces similaires</a></li></ul></div></div><div class="page-title-wrap"><div class="container"><div class="d-flex align-items-center"><div class="breadcrumb-wrap"><nav><ol class="breadcrumb"><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/"><span>Accueil</span></a></li><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/"> <span>4½</span></a></li><li class="breadcrumb-item active">804 Degré, Magog</li></ol></nav></div><ul class="item-tools"><li class="item-tool houzez-favorite">
1070 +<span class="add-favorite-js item-tool-favorite" data-listid="8438">
1071 +<i class="houzez-icon icon-love-it "></i>
1072 +</span></li><li class="item-tool houzez-share">
1073 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1074 +<i class="houzez-icon icon-share"></i>
1075 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1076 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=804+Degr%C3%A9%2C+Magog&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F">
1077 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&amp;t=804+Degr%C3%A9%2C+Magog" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1078 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1079 +</a>
1080 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=804+Degr%C3%A9%2C+Magog&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1081 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1082 +</a>
1083 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0867-768x1024.jpg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1084 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1085 +</a>
1086 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&title=804+Degr%C3%A9%2C+Magog&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1087 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1088 +</a>
1089 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#12617d7f777d7c7752776a737f627e773c717d7f2d416770787771662f2a22263256777560d1bb3e325f73757d7534707d766b2f7a666662613721533720543720547375777c717776777e7d7173667b7d7c617a776070607d7d79773c717d7f37205462607d627760666b3720542a22263f76777560773f7f73757d75372054">
1090 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1091 +</a></div></li><li class="item-tool houzez-print " data-propid="8438">
1092 +<span class="item-tool-compare">
1093 +<i class="houzez-icon icon-print-text"></i>
1094 +</span></li></ul></div><div class="d-flex align-items-center property-title-price-wrap"><div class="page-title"><h1>804 Degré, Magog</h1></div><ul class="item-price-wrap hide-on-list"><li class="item-price">950$/mensuel</li></ul></div><div class="property-labels-wrap">
1095 +<span class="label-featured label">Vedette</span><a href="https://agencedelocationsherbrooke.com/status/magog/" class="label-status label status-color-117">
1096 +Magog
1097 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1098 +Libre maintenant
1099 +</a></div>
1100 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>Rue Degré, Magog, Memphrémagog, Québec, J1X 5T4, Canada</address></div></div><div class="property-top-wrap"><div class="property-banner"><div class="visible-on-mobile"><div class="tab-content" id="pills-tabContent"><div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0867-scaled.jpg);"><div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 13</div><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1101 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1102 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1103 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [804 Degré, Magog]</textarea></div>
1104 +<input type="hidden" name="target_email" value="&#99;&#97;&#116;her&#105;n&#101;.&#112;er&#114;&#101;&#97;&#117;l&#116;&#64;&#112;&#114;&#101;s&#116;&#105;&#112;le&#120;.&#99;&#111;m">
1105 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1106 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/804-degre-magog/"/>
1107 +<input type="hidden" name="property_title" value="804 Degré, Magog"/>
1108 +<input type="hidden" name="property_id" value="ADLS-8438"/>
1109 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1110 +<input type="hidden" name="listing_id" value="8438">
1111 +<input type="hidden" name="is_listing_form" value="yes">
1112 +<input type="hidden" name="agent_id" value="156">
1113 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1114 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1115 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1116 +</button></form></div></div><a class="houzez-photoswipe-trigger property-banner-trigger" href="#"></a></div><div class="tab-pane houzez-top-area-video " id="pills-video" role="tabpanel" aria-labelledby="pills-video-tab">
1117 +<iframe data-lazyloaded="1" src="about:blank" title="804 Degré, Magog, Québec" width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/jvD0NilbNtI?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div><div class="container hidden-on-mobile"><div class="row"><div class="col-md-8">
1118 +<a href="#" data-slider-no="1" data-image="0" class="houzez-photoswipe-trigger img-wrap-1" >
1119 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0867-758x564.jpg" alt="" width="758" height="564" />
1120 +</a></div><div class="col-md-4">
1121 +<a href="#" data-slider-no="2" data-image="1" class="houzez-photoswipe-trigger swipebox img-wrap-2">
1122 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0868-758x564.jpg" alt="" width="758" height="564" />
1123 +</a>
1124 +<a href="#" data-slider-no="3" data-image="2" class="houzez-photoswipe-trigger swipebox img-wrap-3"><div class="img-wrap-3-text">10 Plus</div>
1125 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0869-758x564.jpg" alt="" width="758" height="564" />
1126 +</a></div>
1127 +<a href="#" class="img-wrap-1 gallery-hidden">
1128 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0870-758x564.jpg" alt="" width="758" height="564" />
1129 +</a>
1130 +<a href="#" class="img-wrap-1 gallery-hidden">
1131 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0871-758x564.jpg" alt="" width="758" height="564" />
1132 +</a>
1133 +<a href="#" class="img-wrap-1 gallery-hidden">
1134 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0872-758x564.jpg" alt="" width="758" height="564" />
1135 +</a>
1136 +<a href="#" class="img-wrap-1 gallery-hidden">
1137 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0873-758x564.jpg" alt="" width="758" height="564" />
1138 +</a>
1139 +<a href="#" class="img-wrap-1 gallery-hidden">
1140 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0874-758x564.jpg" alt="" width="758" height="564" />
1141 +</a>
1142 +<a href="#" class="img-wrap-1 gallery-hidden">
1143 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0875-758x564.jpg" alt="" width="758" height="564" />
1144 +</a>
1145 +<a href="#" class="img-wrap-1 gallery-hidden">
1146 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/photo-758x564.jpeg" alt="" width="758" height="564" />
1147 +</a>
1148 +<a href="#" class="img-wrap-1 gallery-hidden">
1149 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/photo-3-758x564.jpeg" alt="" width="758" height="564" />
1150 +</a>
1151 +<a href="#" class="img-wrap-1 gallery-hidden">
1152 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/photo-2-758x564.jpeg" alt="" width="758" height="564" />
1153 +</a>
1154 +<a href="#" class="img-wrap-1 gallery-hidden">
1155 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/photo-1-758x564.jpeg" alt="" width="758" height="564" />
1156 +</a><div class="col-md-12"><div class="block-wrap"><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>4½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>2</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>4</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div></div></div><div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"><div class="pswp__bg"></div><div class="pswp__scroll-wrap"><div class="pswp__container"><div class="pswp__item"></div><div class="pswp__item"></div><div class="pswp__item"></div></div><div class="pswp__ui pswp__ui--hidden"><div class="pswp__top-bar"><div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button><button class="pswp__button pswp__button--share" title="Share"></button><button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button><button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button><div class="pswp__preloader"><div class="pswp__preloader__icn"><div class="pswp__preloader__cut"><div class="pswp__preloader__donut"></div></div></div></div></div><div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"><div class="pswp__share-tooltip"></div></div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
1157 +</button><button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
1158 +</button><div class="pswp__caption"><div class="pswp__caption__center"></div></div></div></div></div> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">initPhotoswipeDomForJson({"1":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/IMG_0867-scaled.jpg","w":1920,"h":2560},"2":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/IMG_0868-scaled.jpg","w":1920,"h":2560},"3":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/IMG_0869-scaled.jpg","w":1920,"h":2560},"4":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/IMG_0870-scaled.jpg","w":1920,"h":2560},"5":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/IMG_0871-scaled.jpg","w":1920,"h":2560},"6":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/IMG_0872-scaled.jpg","w":1920,"h":2560},"7":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/IMG_0873-scaled.jpg","w":1920,"h":2560},"8":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/IMG_0874-scaled.jpg","w":1920,"h":2560},"9":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/IMG_0875-scaled.jpg","w":1920,"h":2560},"10":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/photo.jpeg","w":1536,"h":2048},"11":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/photo-3.jpeg","w":1536,"h":2048},"12":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/photo-2.jpeg","w":1536,"h":2048},"13":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2025\/02\/photo-1.jpeg","w":1536,"h":2048}});function initPhotoswipeDomForJson(imageData){var pswpElement=document.querySelectorAll('.pswp')[0];var items=[],item;jQuery.each(imageData,function(i,obj){item={src:obj.src,w:obj.w,h:obj.h};items.push(item)});var options={index:0};var x=document.querySelectorAll(".houzez-photoswipe-trigger");for(let i=0;i<x.length;i++){x[i].addEventListener("click",function(){openGallery(x[i].dataset.image)})}
1159 +function openGallery(j){options.index=parseInt(j);options.history=!1;gallery=new PhotoSwipe(pswpElement,PhotoSwipeUI_Default,items,options);gallery.init()}}</script> </div><div class="container"><div class="row"><div class="col-lg-12 col-md-12 bt-full-width-content-wrap"><div class="property-view"><div class="visible-on-mobile"><div class="mobile-top-wrap"><div class="mobile-property-tools clearfix"><ul class="nav nav-pills houzez-media-tabs-4" id="pills-tab" role="tablist"><li class="nav-item">
1160 +<a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1161 +<i class="houzez-icon icon-picture-sun"></i>
1162 +</a></li><li class="nav-item">
1163 +<a class="nav-link " id="pills-video-tab" data-toggle="pill" href="#pills-video" role="tab" aria-controls="pills-video" aria-selected="true">
1164 +<i class="houzez-icon icon-video-player-movie-1"></i>
1165 +</a></li></ul><ul class="item-tools"><li class="item-tool houzez-favorite">
1166 +<span class="add-favorite-js item-tool-favorite" data-listid="8438">
1167 +<i class="houzez-icon icon-love-it "></i>
1168 +</span></li><li class="item-tool houzez-share">
1169 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1170 +<i class="houzez-icon icon-share"></i>
1171 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1172 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=804+Degr%C3%A9%2C+Magog&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F">
1173 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&amp;t=804+Degr%C3%A9%2C+Magog" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1174 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1175 +</a>
1176 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=804+Degr%C3%A9%2C+Magog&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1177 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1178 +</a>
1179 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0867-768x1024.jpg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1180 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1181 +</a>
1182 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&title=804+Degr%C3%A9%2C+Magog&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1183 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1184 +</a>
1185 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#90e3fffdf5fffef5d0f5e8f1fde0fcf5bef3fffdafc3e5f2faf5f3e4ada8a0a4b0d4f5f7e25339bcb0ddf1f7fff7b6f2fff4e9adf8e4e4e0e3b5a3d1b5a2d6b5a2d6f1f7f5fef3f5f4f5fcfff3f1e4f9fffee3f8f5e2f2e2fffffbf5bef3fffdb5a2d6e0e2ffe0f5e2e4e9b5a2d6a8a0a4bdf4f5f7e2f5bdfdf1f7fff7b5a2d6">
1186 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1187 +</a></div></li><li class="item-tool houzez-print " data-propid="8438">
1188 +<span class="item-tool-compare">
1189 +<i class="houzez-icon icon-print-text"></i>
1190 +</span></li></ul></div><div class="mobile-property-title clearfix">
1191 +<span class="label-featured label">Vedette</span> <span class="labels-wrap labels-right">
1192 +<a href="https://agencedelocationsherbrooke.com/status/magog/" class="label-status label status-color-117">
1193 +Magog
1194 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1195 +Libre maintenant
1196 +</a>
1197 +</span>
1198 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>Rue Degré, Magog, Memphrémagog, Québec, J1X 5T4, Canada</address><ul class="item-price-wrap hide-on-list"><li class="item-price">950$/mensuel</li></ul></div></div><div class="property-overview-wrap property-section-wrap" id="property-overview-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Apperçu</h2><div><strong># Annonce:</strong> ADLS-8438</div></div><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>4½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>2</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>4</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div><div class="property-features-wrap property-section-wrap" id="property-features-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Inclusions</h2></div><div class="block-content-wrap"><ul class="list-3-cols list-unstyled"><li><i class="fas fa-cat mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/chat-permis/">Chat permis</a></li><li><i class="fas fa-snowplow mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/deneigement/">Déneigement</a></li><li><i class="houzez-icon icon-check-circle-1 mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/entre-lave-vaisselle/">Entré lave-vaisselle</a></li><li><i class="houzez-icon icon-check-circle-1 mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/entre-laveuse-secheuse/">Entré laveuse/sécheuse</a></li><li><i class="fas fa-fan mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/thermopompe/">Thermopompe</a></li></ul></div></div></div><div class="property-description-wrap property-section-wrap" id="property-description-wrap"><div class="block-wrap"><div class="block-title-wrap"><h2>Description</h2></div><div class="block-content-wrap"><p data-pm-slice="1 1 []"><strong>4 1/2 disponible maintenant à Magog</strong></p><p><em>Interdiction de fumer dans l’immeuble et dans l’appartement.</em></p><ul class="ak-ul"><li>Rien d’inclus</li><li>Thermopompe</li><li>Espace de rangement</li><li>Entrée laveuse-sécheuse et lave-vaiselle dans le logement</li><li>1 stationnement inclus, possibilité d’en avoir 2 avec un supplément.</li><li>Tolérance pour 1 chat, les chiens ne sont pas autorisés.</li><li>Situé au demi sous-sol</li><li>Enquête de crédit obligatoire.</li></ul><p><strong>Adresse de l’appartement: 804 Degré, Magog</strong></p></div></div></div><div class="property-address-wrap property-section-wrap" id="property-address-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Addresse</h2><a class="btn btn-primary btn-slim" href="https://maps.google.com/?q=Rue%20Degré,%20Magog,%20Memphrémagog,%20Québec,%20J1X%205T4,%20Canada" target="_blank"><i class="houzez-icon icon-maps mr-1"></i> Ouvrir sur Google Maps</a></div><div class="block-content-wrap"><ul class="list-2-cols list-unstyled"><li class="detail-address"><strong>Addresse</strong> <span>Rue Degré, Magog, Memphrémagog, Québec, J1X 5T4, Canada</span></li><li class="detail-zip"><strong>Zip / Code postal</strong> <span>J1X 5T4</span></li></ul></div><div id="houzez-single-listing-map" class="block-map-wrap"></div></div></div><div class="property-detail-wrap property-section-wrap" id="property-detail-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Détails</h2>
1199 +<span class="small-text grey"><i class="houzez-icon icon-calendar-3 mr-1"></i> Mise à jour le juillet 4, 2026 à 9:18 pm</span></div><div class="block-content-wrap"><div class="detail-wrap"><ul class="list-2-cols list-unstyled"><li>
1200 +<strong># Annonce:</strong>
1201 +<span>ADLS-8438</span></li><li>
1202 +<strong>Prix:</strong>
1203 +<span> 950$/mensuel</span></li><li>
1204 +<strong>Chambres:</strong>
1205 +<span>2</span></li><li>
1206 +<strong>Pièces:</strong>
1207 +<span>4</span></li><li>
1208 +<strong>Salle de bain:</strong>
1209 +<span>1</span></li><li>
1210 +<strong>Stationnement:</strong>
1211 +<span>1</span></li><li class="prop_type">
1212 +<strong>Type:</strong>
1213 +<span>4½</span></li><li class="prop_status">
1214 +<strong>Statut:</strong>
1215 +<span>Magog</span></li></ul></div></div></div></div><div class="property-video-wrap property-section-wrap" id="property-video-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Vidéo</h2></div><div class="block-content-wrap"><div class="block-video-wrap">
1216 +<iframe data-lazyloaded="1" src="about:blank" title="804 Degré, Magog, Québec" width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/jvD0NilbNtI?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div></div><div class="property-walkscore-wrap property-section-wrap" id="property-walkscore-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Walkscore</h2></div><div class="block-content-wrap"><div id="ws-walkscore-tile"></div></div></div></div><div class="property-contact-agent-wrap property-section-wrap" id="property-contact-agent-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Coordonnées</h2><a class="btn btn-primary btn-slim" href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/" target="_blank">Voir les annonces</a></div><div class="block-content-wrap"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="80" height="80"></a></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-phone-wrap clearfix"></li></ul></div></div><div class="block-title-wrap"><h3>Renseignez-vous sur cette propriété</h3></div><div class="form_messages"></div><div class="row"><div class="col-md-6 col-sm-12"><div class="form-group">
1217 +<label>Nom</label>
1218 +<input class="form-control" name="name" placeholder="Entrez votre nom" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1219 +<label>Téléphone</label>
1220 +<input class="form-control" name="mobile" placeholder="Entrez votre numéro de téléphone" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1221 +<label>Courriel</label>
1222 +<input class="form-control" name="email" placeholder="Entrer votre courriel" type="email"></div></div><div class="col-sm-12 col-xs-12"><div class="form-group form-group-textarea">
1223 +<label>Message</label><textarea class="form-control hz-form-message" name="message" rows="5" placeholder="Entrez votre message">Bonjour, je suis intéressé par [804 Degré, Magog]</textarea></div></div><div class="col-sm-12 col-xs-12">
1224 +<input type="hidden" name="target_email" value="&#99;atherine.pe&#114;&#114;&#101;&#97;ul&#116;&#64;pre&#115;ti&#112;&#108;&#101;x.co&#109;">
1225 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1226 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/804-degre-magog/"/>
1227 +<input type="hidden" name="property_title" value="804 Degré, Magog"/>
1228 +<input type="hidden" name="property_id" value="ADLS-8438"/>
1229 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1230 +<input type="hidden" class="is_bottom" value="bottom">
1231 +<input type="hidden" name="listing_id" value="8438">
1232 +<input type="hidden" name="is_listing_form" value="yes">
1233 +<input type="hidden" name="agent_id" value="156">
1234 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><button class="houzez_agent_property_form btn btn-secondary btn-sm-full-width">
1235 +<span class="btn-loader houzez-loader-js"></span> Demande d'informations
1236 +</button></div></div></form></div></div></div></div></div></div></div></section></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1237 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1238 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1239 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1240 +<i class="houzez-icon icon-arrow-up-1"></i>
1241 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1242 +<button class="compare-property-label" style="display: none;">
1243 +<span class="compare-count compare-label"></span>
1244 +<i class="houzez-icon icon-move-left-right"></i>
1245 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1246 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1247 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1248 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1249 +<span aria-hidden="true">&times;</span>
1250 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1251 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1252 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1253 +<label class="control control--checkbox flex-grow-1">
1254 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1255 +</label>
1256 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/property/804-degre-magog/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1257 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com/property/804-degre-magog/?login=success">
1258 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1259 +<span class="btn-loader houzez-loader-js"></span> Connexion
1260 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1261 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1262 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1263 +<span aria-hidden="true">&times;</span>
1264 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1265 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1266 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/property/804-degre-magog/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1267 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><div class="mobile-property-contact visible-on-mobile"><div class="d-flex justify-content-between"><div class="agent-details flex-grow-1"><div class="d-flex align-items-center"><div class="agent-image">
1268 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" width="50" height="50" alt="Catherine Perreault"></div><ul class="agent-information list-unstyled"><li class="agent-name">
1269 +Catherine Perreault</li></ul></div></div>
1270 +<button class="btn btn-secondary" data-toggle="modal" data-target="#mobile-property-form">
1271 +<i class="houzez-icon icon-messages-bubble"></i>
1272 +</button></div></div><div class="modal fade mobile-property-form" id="mobile-property-form"><div class="modal-dialog" role="document"><div class="modal-content">
1273 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1274 +<span aria-hidden="true">&times;</span>
1275 +</button><div class="modal-body"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1276 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1277 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1278 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [804 Degré, Magog]</textarea></div>
1279 +<input type="hidden" name="target_email" value="&#99;&#97;t&#104;eri&#110;&#101;.&#112;er&#114;ea&#117;&#108;t&#64;p&#114;es&#116;&#105;p&#108;&#101;x&#46;co&#109;">
1280 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1281 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/804-degre-magog/"/>
1282 +<input type="hidden" name="property_title" value="804 Degré, Magog"/>
1283 +<input type="hidden" name="property_id" value="ADLS-8438"/>
1284 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1285 +<input type="hidden" name="listing_id" value="8438">
1286 +<input type="hidden" name="is_listing_form" value="yes">
1287 +<input type="hidden" name="agent_id" value="156">
1288 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1289 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1290 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1291 +</button></form></div></div></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div class="modal-content"><div class="modal-header"><div class="d-flex align-items-center"><div class="lightbox-logo">
1292 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white.png" alt="804 Degré, Magog" width="127" height="32" /></div><div class="lightbox-title flex-grow-1"></div><div class="lightbox-tools"><ul class="list-inline"><li class="list-inline-item btn-favorite">
1293 +<a class="add-favorite-js" data-listid="8438" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Favoris</span></a></li><li class="list-inline-item btn-share">
1294 +<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Partager</span></a><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1295 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=804+Degr%C3%A9%2C+Magog&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F">
1296 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&amp;t=804+Degr%C3%A9%2C+Magog" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1297 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1298 +</a>
1299 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=804+Degr%C3%A9%2C+Magog&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1300 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1301 +</a>
1302 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0867-768x1024.jpg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1303 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1304 +</a>
1305 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F804-degre-magog%2F&title=804+Degr%C3%A9%2C+Magog&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-6ea13a3d84ca5be3e612ee17-="">
1306 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1307 +</a>
1308 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#9ceff3f1f9f3f2f9dcf9e4fdf1ecf0f9b2fff3f1a3cfe9fef6f9ffe8a1a4aca8bcd8f9fbee5f35b0bcd1fdfbf3fbbafef3f8e5a1f4e8e8ecefb9afddb9aedab9aedafdfbf9f2fff9f8f9f0f3fffde8f5f3f2eff4f9eefeeef3f3f7f9b2fff3f1b9aedaeceef3ecf9eee8e5b9aedaa4aca8b1f8f9fbeef9b1f1fdfbf3fbb9aeda">
1309 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1310 +</a></div></li><li class="list-inline-item btn-email">
1311 +<a href="#"><i class="houzez-icon icon-envelope"></i></a></li></ul></div></div>
1312 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1313 +<span aria-hidden="true">&times;</span>
1314 +</button></div><div class="modal-body clearfix"><div class="lightbox-gallery-wrap ">
1315 +<a class="btn-expand">
1316 +<i class="houzez-icon icon-expand-3"></i>
1317 +</a><div class="lightbox-gallery"><div id="lightbox-slider-js" class="lightbox-slider"><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0867-scaled.jpg" alt="" title="IMG_0867" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0868-scaled.jpg" alt="" title="IMG_0868" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0869-scaled.jpg" alt="" title="IMG_0869" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0870-scaled.jpg" alt="" title="IMG_0870" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0871-scaled.jpg" alt="" title="IMG_0871" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0872-scaled.jpg" alt="" title="IMG_0872" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0873-scaled.jpg" alt="" title="IMG_0873" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0874-scaled.jpg" alt="" title="IMG_0874" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0875-scaled.jpg" alt="" title="IMG_0875" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTM2IiBoZWlnaHQ9IjIwNDgiIHZpZXdCb3g9IjAgMCAxNTM2IDIwNDgiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/photo.jpeg" alt="" title="photo" width="1536" height="2048" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTM2IiBoZWlnaHQ9IjIwNDgiIHZpZXdCb3g9IjAgMCAxNTM2IDIwNDgiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/photo-3.jpeg" alt="" title="photo (3)" width="1536" height="2048" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTM2IiBoZWlnaHQ9IjIwNDgiIHZpZXdCb3g9IjAgMCAxNTM2IDIwNDgiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/photo-2.jpeg" alt="" title="photo (2)" width="1536" height="2048" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTM2IiBoZWlnaHQ9IjIwNDgiIHZpZXdCb3g9IjAgMCAxNTM2IDIwNDgiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/photo-1.jpeg" alt="" title="photo (1)" width="1536" height="2048" /></div></div></div></div><div class="lightbox-form-wrap"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1318 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1319 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1320 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [804 Degré, Magog]</textarea></div>
1321 +<input type="hidden" name="target_email" value="c&#97;th&#101;&#114;ine.&#112;&#101;rre&#97;&#117;l&#116;&#64;&#112;re&#115;t&#105;&#112;l&#101;x.com">
1322 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1323 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/804-degre-magog/"/>
1324 +<input type="hidden" name="property_title" value="804 Degré, Magog"/>
1325 +<input type="hidden" name="property_id" value="ADLS-8438"/>
1326 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1327 +<input type="hidden" name="listing_id" value="8438">
1328 +<input type="hidden" name="is_listing_form" value="yes">
1329 +<input type="hidden" name="agent_id" value="156">
1330 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1331 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1332 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1333 +</button></form></div></div></div></div><div class="modal-footer"></div></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1334 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="6ea13a3d84ca5be3e612ee17-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1335 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="bootstrap-datepicker.fr-CA-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr-CA.min.js"></script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com/property/804-degre-magog/","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_nav","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"fr-CA","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="leaflet-js" type="litespeed/javascript" data-src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script> <script id="houzez-single-property-map-js-extra" type="litespeed/javascript">var houzez_single_property_map={"title":"804 Degr\u00e9, Magog","price":" 950$/mensuel","property_id":"8438","pricePin":"950$/mensuel","property_type":"4\u00bd","address":"Rue Degr\u00e9, Magog, Memphr\u00e9magog, Qu\u00e9bec, J1X 5T4, Canada","lat":"45.2738966504578","lng":"-72.15679749998782","term_id":"16","marker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","retinaMarker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","thumbnail":"https://agencedelocationsherbrooke.com/wp-content/uploads/2025/02/IMG_0867-120x90.jpg"};var houzez_map_options={"markerPricePins":"no","single_map_zoom":"12","map_type":"roadmap","map_pin_type":"marker","googlemap_stype":"","closeIcon":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/close.png","infoWindowPlac":"https://placehold.it/120x90&text=Agence+de+location+Sherbrooke"}</script> <script id="houzez-walkscore-js-before" type="litespeed/javascript">var ws_wsid=' 65c6f7843483895d5d5ef58e01b2d789';var ws_address='Rue Degré, Magog, Memphrémagog, Québec, J1X 5T4, Canada';var ws_format='wide';var ws_width='650';var ws_width='100%';var ws_height='400'</script> <script id="houzez-walkscore-js" type="litespeed/javascript" data-src="https://www.walkscore.com/tile/show-walkscore-tile.php"></script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1336 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="6ea13a3d84ca5be3e612ee17-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="6ea13a3d84ca5be3e612ee17-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="6ea13a3d84ca5be3e612ee17-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/7eb3e0d215c9a5e36449ede9b8431764.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="6ea13a3d84ca5be3e612ee17-|49" defer></script></body></html>
1337 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:31:37 -->
1338 +
1339 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:31:37 -->
1340 +<!-- Guest Mode -->
1341 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/ed93c1ba2200a9da666c9871ea0b8f1b.css -->
1342 +<!-- QUIC.cloud UCSS loaded ✅ /ucss/8409a6cfda2f115c931a191293f338ae.css -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/3b08a68a2f08f5d2337c.html +1337 −0
@@ -0,0 +1,1337 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="2d62ac96b5f912fc8e18fd42-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>826 Short - Agence de location Sherbrooke</title><meta name="description" content="5 ½ à louer – Disponible dès maintenant! Spacieux 5 ½ situé au rez-de-jardin, disponible immédiatement. Caractéristiques : 1 espace de stationnement inclus 1 ou 2 chat tolérer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l’immeuble) Aucun service inclus (électricité, chauffage, etc.) Conditions : Enquête de crédit obligatoire" /><meta name="robots" content="max-image-preview:large" /><meta name="author" content="Catherine Perreault"/><link rel="canonical" href="https://agencedelocationsherbrooke.com/property/826-short/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="article" /><meta property="og:title" content="826 Short - Agence de location Sherbrooke" /><meta property="og:description" content="5 ½ à louer – Disponible dès maintenant! Spacieux 5 ½ situé au rez-de-jardin, disponible immédiatement. Caractéristiques : 1 espace de stationnement inclus 1 ou 2 chat tolérer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l’immeuble) Aucun service inclus (électricité, chauffage, etc.) Conditions : Enquête de crédit obligatoire" /><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/826-short/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-scaled.jpeg" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-scaled.jpeg" /><meta property="og:image:width" content="1920" /><meta property="og:image:height" content="2560" /><meta property="article:published_time" content="2026-07-04T21:25:44+00:00" /><meta property="article:modified_time" content="2026-08-07T20:48:44+00:00" /><meta property="article:publisher" content="https://www.facebook.com/agencedelocationsherbrooke" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="826 Short - Agence de location Sherbrooke" /><meta name="twitter:description" content="5 ½ à louer – Disponible dès maintenant! Spacieux 5 ½ situé au rez-de-jardin, disponible immédiatement. Caractéristiques : 1 espace de stationnement inclus 1 ou 2 chat tolérer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l’immeuble) Aucun service inclus (électricité, chauffage, etc.) Conditions : Enquête de crédit obligatoire" /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/826-short\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","position":2,"name":"Properties","item":"https:\/\/agencedelocationsherbrooke.com\/property\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","name":"5\u00bd"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","position":3,"name":"5\u00bd","item":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/826-short\/#listItem","name":"826 Short"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/826-short\/#listItem","position":4,"name":"826 Short","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","name":"5\u00bd"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/826-short\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/826-short\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"Person","@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author","url":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/","name":"Catherine Perreault","image":{"@type":"ImageObject","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/826-short\/#authorImage","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/litespeed\/avatar\/fdca211e8cbd2f88b79d873de06d8fa9.jpg?ver=1785951645","width":96,"height":96,"caption":"Catherine Perreault"}},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/826-short\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/property\/826-short\/","name":"826 Short - Agence de location Sherbrooke","description":"5 \u00bd \u00e0 louer \u2013 Disponible d\u00e8s maintenant! Spacieux 5 \u00bd situ\u00e9 au rez-de-jardin, disponible imm\u00e9diatement. Caract\u00e9ristiques : 1 espace de stationnement inclus 1 ou 2 chat tol\u00e9rer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l\u2019immeuble) Aucun service inclus (\u00e9lectricit\u00e9, chauffage, etc.) Conditions : Enqu\u00eate de cr\u00e9dit obligatoire","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/826-short\/#breadcrumblist"},"author":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"creator":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172208.173-scaled.jpeg","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/826-short\/#mainImage","width":1920,"height":2560},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/826-short\/#mainImage"},"datePublished":"2026-07-04T21:25:44+00:00","dateModified":"2026-08-07T20:48:44+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//unpkg.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&#038;format=xml" /><meta property="og:title" content="826 Short"/><meta property="og:description" content="5 ½ à louer – Disponible dès maintenant!
2 +Spacieux 5 ½ situé au rez-de-jardin, disponible immédiatement.
3 +Caractéristiques :1 espace de stationnement " /><meta property="og:type" content="article"/><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/826-short/"/><meta property="og:site_name" content="Agence de location Sherbrooke"/><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-scaled.jpeg"/><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
4 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}body{font-size:15px;font-family:Roboto,sans-serif}body{background-color:#f8f8f8}body{color:#222}body{line-height:25px;font-weight:300;text-transform:none}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}body{background-color:#f7f7f7}body{color:#222}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="2d62ac96b5f912fc8e18fd42-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/ucss/044fe8ee8f61ac34449a81ba0dc1f403.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="wp-block-library-inline-css">:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
5 +
6 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */</style><style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
7 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
8 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
9 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
10 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
11 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
12 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
13 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
14 + .container {
15 + max-width: 1210px;
16 + }
17 + }
18 + .label-color-87 {
19 + background-color: #31af00;
20 + }
21 +
22 + .status-color-28 {
23 + background-color: #dd9933;
24 + }
25 +
26 + .status-color-88 {
27 + background-color: #b7ba00;
28 + }
29 +
30 + .status-color-95 {
31 + background-color: #dd3333;
32 + }
33 +
34 + .status-color-94 {
35 + background-color: #1e73be;
36 + }
37 +
38 + .status-color-89 {
39 + background-color: #31af00;
40 + }
41 +
42 + body {
43 + font-family: Poppins;
44 + font-size: 16px;
45 + font-weight: 400;
46 + line-height: 24px;
47 + text-transform: none;
48 + }
49 + .main-nav,
50 + .dropdown-menu,
51 + .login-register,
52 + .btn.btn-create-listing,
53 + .logged-in-nav,
54 + .btn-phone-number {
55 + font-family: Poppins;
56 + font-size: 14px;
57 + font-weight: 400;
58 + text-align: left;
59 + text-transform: uppercase;
60 + }
61 +
62 + .btn,
63 + .form-control,
64 + .bootstrap-select .text,
65 + .sort-by-title,
66 + .woocommerce ul.products li.product .button {
67 + font-family: Poppins;
68 + font-size: 16px;
69 + }
70 +
71 + h1, h2, h3, h4, h5, h6, .item-title {
72 + font-family: Poppins;
73 + font-weight: 400;
74 + text-transform: capitalize;
75 + }
76 +
77 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
78 + font-weight: 400;
79 + text-transform: capitalize;
80 + text-align: inherit;
81 + }
82 +
83 + .top-bar-wrap {
84 + font-family: Poppins;
85 + font-size: 15px;
86 + font-weight: 300;
87 + line-height: 25px;
88 + text-align: left;
89 + text-transform: none;
90 + }
91 + .footer-wrap {
92 + font-family: Poppins;
93 + font-size: 14px;
94 + font-weight: 300;
95 + line-height: 25px;
96 + text-align: left;
97 + text-transform: none;
98 + }
99 +
100 + .header-v1 .header-inner-wrap,
101 + .header-v1 .navbar-logged-in-wrap {
102 + line-height: 60px;
103 + height: 60px;
104 + }
105 + .header-v2 .header-top .navbar {
106 + height: 110px;
107 + }
108 +
109 + .header-v2 .header-bottom .header-inner-wrap,
110 + .header-v2 .header-bottom .navbar-logged-in-wrap {
111 + line-height: 54px;
112 + height: 54px;
113 + }
114 +
115 + .header-v3 .header-top .header-inner-wrap,
116 + .header-v3 .header-top .header-contact-wrap {
117 + height: 80px;
118 + line-height: 80px;
119 + }
120 + .header-v3 .header-bottom .header-inner-wrap,
121 + .header-v3 .header-bottom .navbar-logged-in-wrap {
122 + line-height: 54px;
123 + height: 54px;
124 + }
125 + .header-v4 .header-inner-wrap,
126 + .header-v4 .navbar-logged-in-wrap {
127 + line-height: 90px;
128 + height: 90px;
129 + }
130 + .header-v5 .header-top .header-inner-wrap,
131 + .header-v5 .header-top .navbar-logged-in-wrap {
132 + line-height: 110px;
133 + height: 110px;
134 + }
135 + .header-v5 .header-bottom .header-inner-wrap {
136 + line-height: 54px;
137 + height: 54px;
138 + }
139 + .header-v6 .header-inner-wrap,
140 + .header-v6 .navbar-logged-in-wrap {
141 + height: 60px;
142 + line-height: 60px;
143 + }
144 + @media (min-width: 1200px) {
145 + .header-v5 .header-top .container {
146 + max-width: 1170px;
147 + }
148 + }
149 +
150 + body,
151 + .main-wrap,
152 + .fw-property-documents-wrap h3 span,
153 + .fw-property-details-wrap h3 span {
154 + background-color: #f7f7f7;
155 + }
156 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
157 + background-color: #ffffff;
158 + }
159 +
160 + body,
161 + .form-control,
162 + .bootstrap-select .text,
163 + .item-title a,
164 + .listing-tabs .nav-tabs .nav-link,
165 + .item-wrap-v2 .item-amenities li span,
166 + .item-wrap-v2 .item-amenities li:before,
167 + .item-parallax-wrap .item-price-wrap,
168 + .list-view .item-body .item-price-wrap,
169 + .property-slider-item .item-price-wrap,
170 + .page-title-wrap .item-price-wrap,
171 + .agent-information .agent-phone span a,
172 + .property-overview-wrap ul li strong,
173 + .mobile-property-title .item-price-wrap .item-price,
174 + .fw-property-features-left li a,
175 + .lightbox-content-wrap .item-price-wrap,
176 + .blog-post-item-v1 .blog-post-title h3 a,
177 + .blog-post-content-widget h4 a,
178 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
179 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
180 + .agent-list-wrap .agent-list-content h2 a,
181 + .agent-list-wrap .agent-list-contact li a,
182 + .agent-contacts-wrap li a,
183 + .menu-edit-property li a,
184 + .statistic-referrals-list li a,
185 + .chart-nav .nav-pills .nav-link,
186 + .dashboard-table-properties td .property-payment-status,
187 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
188 + .payment-method-block .radio-tab .control-text,
189 + .post-title-wrap h2 a,
190 + .lead-nav-tab.nav-pills .nav-link,
191 + .deals-nav-tab.nav-pills .nav-link,
192 + .btn-light-grey-outlined:hover,
193 + button:not(.bs-placeholder) .filter-option-inner-inner,
194 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
195 + .products > .product > .item-body > a,
196 + .woocommerce ul.products li.product .price,
197 + .woocommerce div.product p.price,
198 + .woocommerce div.product span.price,
199 + .woocommerce #reviews #comments ol.commentlist li .meta,
200 + .woocommerce-MyAccount-navigation ul li a,
201 + .activitiy-item-close-button a,
202 + .property-section-wrap li a {
203 + color: #222222;
204 + }
205 +
206 +
207 +
208 + a,
209 + a:hover,
210 + a:active,
211 + a:focus,
212 + .primary-text,
213 + .btn-clear,
214 + .btn-apply,
215 + .btn-primary-outlined,
216 + .btn-primary-outlined:before,
217 + .item-title a:hover,
218 + .sort-by .bootstrap-select .bs-placeholder,
219 + .sort-by .bootstrap-select > .btn,
220 + .sort-by .bootstrap-select > .btn:active,
221 + .page-link,
222 + .page-link:hover,
223 + .accordion-title:before,
224 + .blog-post-content-widget h4 a:hover,
225 + .agent-list-wrap .agent-list-content h2 a:hover,
226 + .agent-list-wrap .agent-list-contact li a:hover,
227 + .agent-contacts-wrap li a:hover,
228 + .agent-nav-wrap .nav-pills .nav-link,
229 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
230 + .menu-edit-property li a.active,
231 + .menu-edit-property li a:hover,
232 + .dashboard-statistic-block h3 .fa,
233 + .statistic-referrals-list li a:hover,
234 + .chart-nav .nav-pills .nav-link.active,
235 + .board-message-icon-wrap.active,
236 + .post-title-wrap h2 a:hover,
237 + .listing-switch-view .switch-btn.active,
238 + .item-wrap-v6 .item-price-wrap,
239 + .listing-v6 .list-view .item-body .item-price-wrap,
240 + .woocommerce nav.woocommerce-pagination ul li a,
241 + .woocommerce nav.woocommerce-pagination ul li span,
242 + .woocommerce-MyAccount-navigation ul li a:hover,
243 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
244 + .property-schedule-tour-form-wrap .control:hover,
245 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
246 + .login-register .btn-icon-login-register + .dropdown-menu a,
247 + .activitiy-item-close-button a:hover,
248 + .property-section-wrap li a:hover,
249 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
250 + color: #3385d9;
251 + }
252 +
253 + .agent-list-position a {
254 + color: #3385d9;
255 + }
256 +
257 + .control input:checked ~ .control__indicator,
258 + .top-banner-wrap .nav-pills .nav-link,
259 + .btn-primary-outlined:hover,
260 + .page-item.active .page-link,
261 + .slick-prev:hover,
262 + .slick-prev:focus,
263 + .slick-next:hover,
264 + .slick-next:focus,
265 + .mobile-property-tools .nav-pills .nav-link.active,
266 + .login-register-form .modal-header,
267 + .agent-nav-wrap .nav-pills .nav-link.active,
268 + .board-message-icon-wrap .notification-circle,
269 + .primary-label,
270 + .fc-event, .fc-event-dot,
271 + .compare-table .table-hover > tbody > tr:hover,
272 + .post-tag,
273 + .datepicker table tr td.active.active,
274 + .datepicker table tr td.active.disabled,
275 + .datepicker table tr td.active.disabled.active,
276 + .datepicker table tr td.active.disabled.disabled,
277 + .datepicker table tr td.active.disabled:active,
278 + .datepicker table tr td.active.disabled:hover,
279 + .datepicker table tr td.active.disabled:hover.active,
280 + .datepicker table tr td.active.disabled:hover.disabled,
281 + .datepicker table tr td.active.disabled:hover:active,
282 + .datepicker table tr td.active.disabled:hover:hover,
283 + .datepicker table tr td.active.disabled:hover[disabled],
284 + .datepicker table tr td.active.disabled[disabled],
285 + .datepicker table tr td.active:active,
286 + .datepicker table tr td.active:hover,
287 + .datepicker table tr td.active:hover.active,
288 + .datepicker table tr td.active:hover.disabled,
289 + .datepicker table tr td.active:hover:active,
290 + .datepicker table tr td.active:hover:hover,
291 + .datepicker table tr td.active:hover[disabled],
292 + .datepicker table tr td.active[disabled],
293 + .ui-slider-horizontal .ui-slider-range,
294 + .btn-bubble {
295 + background-color: #3385d9;
296 + }
297 +
298 + .control input:checked ~ .control__indicator,
299 + .btn-primary-outlined,
300 + .page-item.active .page-link,
301 + .mobile-property-tools .nav-pills .nav-link.active,
302 + .agent-nav-wrap .nav-pills .nav-link,
303 + .agent-nav-wrap .nav-pills .nav-link.active,
304 + .chart-nav .nav-pills .nav-link.active,
305 + .dashaboard-snake-nav .step-block.active,
306 + .fc-event,
307 + .fc-event-dot,
308 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
309 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
310 + border-color: #3385d9;
311 + }
312 +
313 + .slick-arrow:hover {
314 + background-color: rgba(43,111,180,1);
315 + }
316 +
317 + .slick-arrow {
318 + background-color: #3385d9;
319 + }
320 +
321 + .property-banner .nav-pills .nav-link.active {
322 + background-color: rgba(43,111,180,1) !important;
323 + }
324 +
325 + .property-navigation-wrap a.active {
326 + color: #3385d9;
327 + -webkit-box-shadow: inset 0 -3px #3385d9;
328 + box-shadow: inset 0 -3px #3385d9;
329 + }
330 +
331 + .btn-primary,
332 + .fc-button-primary,
333 + .woocommerce nav.woocommerce-pagination ul li a:focus,
334 + .woocommerce nav.woocommerce-pagination ul li a:hover,
335 + .woocommerce nav.woocommerce-pagination ul li span.current {
336 + color: #fff;
337 + background-color: #3385d9;
338 + border-color: #3385d9;
339 + }
340 + .btn-primary:focus, .btn-primary:focus:active,
341 + .fc-button-primary:focus,
342 + .fc-button-primary:focus:active {
343 + color: #fff;
344 + background-color: #3385d9;
345 + border-color: #3385d9;
346 + }
347 + .btn-primary:hover,
348 + .fc-button-primary:hover {
349 + color: #fff;
350 + background-color: #2b6fb4;
351 + border-color: #2b6fb4;
352 + }
353 + .btn-primary:active,
354 + .btn-primary:not(:disabled):not(:disabled):active,
355 + .fc-button-primary:active,
356 + .fc-button-primary:not(:disabled):not(:disabled):active {
357 + color: #fff;
358 + background-color: #2b6fb4;
359 + border-color: #2b6fb4;
360 + }
361 +
362 + .btn-secondary,
363 + .woocommerce span.onsale,
364 + .woocommerce ul.products li.product .button,
365 + .woocommerce #respond input#submit.alt,
366 + .woocommerce a.button.alt,
367 + .woocommerce button.button.alt,
368 + .woocommerce input.button.alt,
369 + .woocommerce #review_form #respond .form-submit input,
370 + .woocommerce #respond input#submit,
371 + .woocommerce a.button,
372 + .woocommerce button.button,
373 + .woocommerce input.button {
374 + color: #fff;
375 + background-color: #656565;
376 + border-color: #656565;
377 + }
378 + .woocommerce ul.products li.product .button:focus,
379 + .woocommerce ul.products li.product .button:active,
380 + .woocommerce #respond input#submit.alt:focus,
381 + .woocommerce a.button.alt:focus,
382 + .woocommerce button.button.alt:focus,
383 + .woocommerce input.button.alt:focus,
384 + .woocommerce #respond input#submit.alt:active,
385 + .woocommerce a.button.alt:active,
386 + .woocommerce button.button.alt:active,
387 + .woocommerce input.button.alt:active,
388 + .woocommerce #review_form #respond .form-submit input:focus,
389 + .woocommerce #review_form #respond .form-submit input:active,
390 + .woocommerce #respond input#submit:active,
391 + .woocommerce a.button:active,
392 + .woocommerce button.button:active,
393 + .woocommerce input.button:active,
394 + .woocommerce #respond input#submit:focus,
395 + .woocommerce a.button:focus,
396 + .woocommerce button.button:focus,
397 + .woocommerce input.button:focus {
398 + color: #fff;
399 + background-color: #656565;
400 + border-color: #656565;
401 + }
402 + .btn-secondary:hover,
403 + .woocommerce ul.products li.product .button:hover,
404 + .woocommerce #respond input#submit.alt:hover,
405 + .woocommerce a.button.alt:hover,
406 + .woocommerce button.button.alt:hover,
407 + .woocommerce input.button.alt:hover,
408 + .woocommerce #review_form #respond .form-submit input:hover,
409 + .woocommerce #respond input#submit:hover,
410 + .woocommerce a.button:hover,
411 + .woocommerce button.button:hover,
412 + .woocommerce input.button:hover {
413 + color: #fff;
414 + background-color: #333333;
415 + border-color: #333333;
416 + }
417 + .btn-secondary:active,
418 + .btn-secondary:not(:disabled):not(:disabled):active {
419 + color: #fff;
420 + background-color: #333333;
421 + border-color: #333333;
422 + }
423 +
424 + .btn-primary-outlined {
425 + color: #3385d9;
426 + background-color: transparent;
427 + border-color: #3385d9;
428 + }
429 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
430 + color: #3385d9;
431 + background-color: transparent;
432 + border-color: #3385d9;
433 + }
434 + .btn-primary-outlined:hover {
435 + color: #fff;
436 + background-color: #2b6fb4;
437 + border-color: #2b6fb4;
438 + }
439 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
440 + color: #3385d9;
441 + background-color: rgba(26, 26, 26, 0);
442 + border-color: #2b6fb4;
443 + }
444 +
445 + .btn-secondary-outlined {
446 + color: #656565;
447 + background-color: transparent;
448 + border-color: #656565;
449 + }
450 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
451 + color: #656565;
452 + background-color: transparent;
453 + border-color: #656565;
454 + }
455 + .btn-secondary-outlined:hover {
456 + color: #fff;
457 + background-color: #333333;
458 + border-color: #333333;
459 + }
460 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
461 + color: #656565;
462 + background-color: rgba(26, 26, 26, 0);
463 + border-color: #333333;
464 + }
465 +
466 + .btn-call {
467 + color: #656565;
468 + background-color: transparent;
469 + border-color: #656565;
470 + }
471 + .btn-call:focus, .btn-call:focus:active {
472 + color: #656565;
473 + background-color: transparent;
474 + border-color: #656565;
475 + }
476 + .btn-call:hover {
477 + color: #656565;
478 + background-color: rgba(26, 26, 26, 0);
479 + border-color: #333333;
480 + }
481 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
482 + color: #656565;
483 + background-color: rgba(26, 26, 26, 0);
484 + border-color: #333333;
485 + }
486 + .icon-delete .btn-loader:after{
487 + border-color: #3385d9 transparent #3385d9 transparent
488 + }
489 +
490 + .header-v1 {
491 + background-color: #004274;
492 + border-bottom: 1px solid #004274;
493 + }
494 +
495 + .header-v1 a.nav-link {
496 + color: #ffffff;
497 + }
498 +
499 + .header-v1 a.nav-link:hover,
500 + .header-v1 a.nav-link:active {
501 + color: #00aeff;
502 + background-color: rgba(255,255,255,0.2);
503 + }
504 + .header-desktop .main-nav .nav-link {
505 + letter-spacing: 0.0px;
506 + }
507 +
508 + .header-v2 .header-top,
509 + .header-v5 .header-top,
510 + .header-v2 .header-contact-wrap {
511 + background-color: #ffffff;
512 + }
513 +
514 + .header-v2 .header-bottom,
515 + .header-v5 .header-bottom {
516 + background-color: #004274;
517 + }
518 +
519 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
520 + color: #004274;
521 + }
522 +
523 + .header-v2 .header-contact-left {
524 + color: #004274;
525 + }
526 +
527 + .header-v2 .header-bottom,
528 + .header-v2 .navbar-nav > li,
529 + .header-v2 .navbar-nav > li:first-of-type,
530 + .header-v5 .header-bottom,
531 + .header-v5 .navbar-nav > li,
532 + .header-v5 .navbar-nav > li:first-of-type {
533 + border-color: rgba(255,255,255,0.2);
534 + }
535 +
536 + .header-v2 a.nav-link,
537 + .header-v5 a.nav-link {
538 + color: #ffffff;
539 + }
540 +
541 + .header-v2 a.nav-link:hover,
542 + .header-v2 a.nav-link:active,
543 + .header-v5 a.nav-link:hover,
544 + .header-v5 a.nav-link:active {
545 + color: #00aeff;
546 + background-color: rgba(255,255,255,0.2);
547 + }
548 +
549 + .header-v2 .header-contact-right a:hover,
550 + .header-v2 .header-contact-right a:active,
551 + .header-v3 .header-contact-right a:hover,
552 + .header-v3 .header-contact-right a:active {
553 + background-color: transparent;
554 + }
555 +
556 + .header-v2 .header-social-icons a,
557 + .header-v5 .header-social-icons a {
558 + color: #004274;
559 + }
560 +
561 + .header-v3 .header-top {
562 + background-color: #004274;
563 + }
564 +
565 + .header-v3 .header-bottom {
566 + background-color: #004272;
567 + }
568 +
569 + .header-v3 .header-contact,
570 + .header-v3-mobile {
571 + background-color: #00aeef;
572 + color: #ffffff;
573 + }
574 +
575 + .header-v3 .header-bottom,
576 + .header-v3 .login-register,
577 + .header-v3 .navbar-nav > li,
578 + .header-v3 .navbar-nav > li:first-of-type {
579 + border-color: ;
580 + }
581 +
582 + .header-v3 a.nav-link,
583 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
584 + color: #ffffff;
585 + }
586 +
587 + .header-v3 a.nav-link:hover,
588 + .header-v3 a.nav-link:active {
589 + color: #00aeff;
590 + background-color: rgba(255,255,255,0.2);
591 + }
592 +
593 + .header-v3 .header-social-icons a {
594 + color: #FFFFFF;
595 + }
596 +
597 + .header-v4 {
598 + background-color: #ffffff;
599 + }
600 +
601 + .header-v4 a.nav-link {
602 + color: #000000;
603 + }
604 +
605 + .header-v4 a.nav-link:hover,
606 + .header-v4 a.nav-link:active {
607 + color: #3385d9;
608 + background-color: rgba(255,255,255,0.2);
609 + }
610 +
611 + .header-v6 .header-top {
612 + background-color: #00AEEF;
613 + }
614 +
615 + .header-v6 a.nav-link {
616 + color: #FFFFFF;
617 + }
618 +
619 + .header-v6 a.nav-link:hover,
620 + .header-v6 a.nav-link:active {
621 + color: #00aeff;
622 + background-color: rgba(255,255,255,0.2);
623 + }
624 +
625 + .header-v6 .header-social-icons a {
626 + color: #FFFFFF;
627 + }
628 +
629 + .header-mobile {
630 + background-color: #ffffff;
631 + }
632 + .header-mobile .toggle-button-left,
633 + .header-mobile .toggle-button-right {
634 + color: #000000;
635 + }
636 +
637 + .nav-mobile .logged-in-nav a,
638 + .nav-mobile .main-nav,
639 + .nav-mobile .navi-login-register {
640 + background-color: #ffffff;
641 + }
642 +
643 + .nav-mobile .logged-in-nav a,
644 + .nav-mobile .main-nav .nav-item .nav-item a,
645 + .nav-mobile .main-nav .nav-item a,
646 + .navi-login-register .main-nav .nav-item a {
647 + color: #000000;
648 + border-bottom: 1px solid #ffffff;
649 + background-color: #ffffff;
650 + }
651 +
652 + .nav-mobile .btn-create-listing,
653 + .navi-login-register .btn-create-listing {
654 + color: #fff;
655 + border: 1px solid #3385d9;
656 + background-color: #3385d9;
657 + }
658 +
659 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
660 + .navi-login-register .btn-create-listing:hover,
661 + .navi-login-register .btn-create-listing:active {
662 + color: #fff;
663 + border: 1px solid #3385d9;
664 + background-color: rgba(0, 174, 255, 0.65);
665 + }
666 +
667 + .header-transparent-wrap .header-v4 {
668 + background-color: transparent;
669 + border-bottom: 1px none rgba(255,255,255,0.3);
670 + }
671 +
672 + .header-transparent-wrap .header-v4 a {
673 + color: #ffffff;
674 + }
675 +
676 + .header-transparent-wrap .header-v4 a:hover,
677 + .header-transparent-wrap .header-v4 a:active {
678 + color: #3385d9;
679 + background-color: rgba(255, 255, 255, 0.1);
680 + }
681 +
682 + .main-nav .navbar-nav .nav-item .dropdown-menu,
683 + .login-register .login-register-nav li .dropdown-menu {
684 + background-color: rgba(255,255,255,0.95);
685 + }
686 +
687 + .login-register .login-register-nav li .dropdown-menu:before {
688 + border-left-color: rgba(255,255,255,0.95);
689 + border-top-color: rgba(255,255,255,0.95);
690 + }
691 +
692 + .main-nav .navbar-nav .nav-item .nav-item a,
693 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
694 + color: #3385d9;
695 + border-bottom: 1px solid #e6e6e6;
696 + }
697 +
698 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
699 + .main-nav .navbar-nav .nav-item .nav-item a:active,
700 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
701 + color: #2b6fb4;
702 + }
703 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
704 + .main-nav .navbar-nav .nav-item .nav-item a:active,
705 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
706 + background-color: rgba(0, 174, 255, 0.1);
707 + }
708 +
709 + .header-main-wrap .btn-create-listing {
710 + color: #3385d9;
711 + border: 1px solid #3385d9;
712 + background-color: #ffffff;
713 + }
714 +
715 + .header-main-wrap .btn-create-listing:hover,
716 + .header-main-wrap .btn-create-listing:active {
717 + color: rgba(255,255,255,1);
718 + border: 1px solid #2b6fb4;
719 + background-color: rgba(43,111,180,1);
720 + }
721 +
722 + .header-transparent-wrap .header-v4 .btn-create-listing {
723 + color: #ffffff;
724 + border: 1px solid #ffffff;
725 + background-color: rgba(255,255,255,0.2);
726 + }
727 +
728 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
729 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
730 + color: rgba(255,255,255,1);
731 + border: 1px solid #3385d9;
732 + background-color: rgba(51,133,217,1);
733 + }
734 +
735 + .header-transparent-wrap .logged-in-nav a,
736 + .logged-in-nav a {
737 + color: #000000;
738 + border-color: #e6e6e6;
739 + background-color: #FFFFFF;
740 + }
741 +
742 + .header-transparent-wrap .logged-in-nav a:hover,
743 + .header-transparent-wrap .logged-in-nav a:active,
744 + .logged-in-nav a:hover,
745 + .logged-in-nav a:active {
746 + color: #000000;
747 + background-color: rgba(204,204,204,0.15);
748 + border-color: #e6e6e6;
749 + }
750 +
751 + .form-control::-webkit-input-placeholder,
752 + .search-banner-wrap ::-webkit-input-placeholder,
753 + .advanced-search ::-webkit-input-placeholder,
754 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
755 + .overlay-search-advanced-module ::-webkit-input-placeholder {
756 + color: #a1a7a8;
757 + }
758 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
759 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
760 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
761 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
762 + color: #a1a7a8;
763 + }
764 + .form-control::placeholder,
765 + .search-banner-wrap ::-webkit-input-placeholder,
766 + .advanced-search ::-webkit-input-placeholder,
767 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
768 + .overlay-search-advanced-module ::-webkit-input-placeholder {
769 + color: #a1a7a8;
770 + }
771 +
772 + .search-banner-wrap ::-moz-placeholder,
773 + .advanced-search ::-moz-placeholder,
774 + .advanced-search-banner-wrap ::-moz-placeholder,
775 + .overlay-search-advanced-module ::-moz-placeholder {
776 + color: #a1a7a8;
777 + }
778 +
779 + .search-banner-wrap :-ms-input-placeholder,
780 + .advanced-search :-ms-input-placeholder,
781 + .advanced-search-banner-wrap ::-ms-input-placeholder,
782 + .overlay-search-advanced-module ::-ms-input-placeholder {
783 + color: #a1a7a8;
784 + }
785 +
786 + .search-banner-wrap :-moz-placeholder,
787 + .advanced-search :-moz-placeholder,
788 + .advanced-search-banner-wrap :-moz-placeholder,
789 + .overlay-search-advanced-module :-moz-placeholder {
790 + color: #a1a7a8;
791 + }
792 +
793 + .advanced-search .form-control,
794 + .advanced-search .bootstrap-select > .btn,
795 + .location-trigger,
796 + .vertical-search-wrap .form-control,
797 + .vertical-search-wrap .bootstrap-select > .btn,
798 + .step-search-wrap .form-control,
799 + .step-search-wrap .bootstrap-select > .btn,
800 + .advanced-search-banner-wrap .form-control,
801 + .advanced-search-banner-wrap .bootstrap-select > .btn,
802 + .search-banner-wrap .form-control,
803 + .search-banner-wrap .bootstrap-select > .btn,
804 + .overlay-search-advanced-module .form-control,
805 + .overlay-search-advanced-module .bootstrap-select > .btn,
806 + .advanced-search-v2 .advanced-search-btn,
807 + .advanced-search-v2 .advanced-search-btn:hover {
808 + border-color: #cccccc;
809 + }
810 +
811 + .advanced-search-nav,
812 + .search-expandable,
813 + .overlay-search-advanced-module {
814 + background-color: #FFFFFF;
815 + }
816 + .btn-search {
817 + color: #ffffff;
818 + background-color: #3385d9;
819 + border-color: #3385d9;
820 + }
821 + .btn-search:hover, .btn-search:active {
822 + color: #ffffff;
823 + background-color: #2b6fb4;
824 + border-color: #2b6fb4;
825 + }
826 + .advanced-search-btn {
827 + color: #666666;
828 + background-color: #ffffff;
829 + border-color: #dce0e0;
830 + }
831 + .advanced-search-btn:hover, .advanced-search-btn:active {
832 + color: #000000;
833 + background-color: #ffffff;
834 + border-color: #dce0e0;
835 + }
836 + .advanced-search-btn:focus {
837 + color: #666666;
838 + background-color: #ffffff;
839 + border-color: #dce0e0;
840 + }
841 + .search-expandable-label {
842 + color: #ffffff;
843 + background-color: #ff6e00;
844 + }
845 + .advanced-search-nav {
846 + padding-top: 10px;
847 + padding-bottom: 10px;
848 + }
849 + .features-list-wrap .control--checkbox,
850 + .features-list-wrap .control--radio,
851 + .range-text,
852 + .features-list-wrap .control--checkbox,
853 + .features-list-wrap .btn-features-list,
854 + .overlay-search-advanced-module .search-title,
855 + .overlay-search-advanced-module .overlay-search-module-close {
856 + color: #222222;
857 + }
858 + .advanced-search-half-map {
859 + background-color: #FFFFFF;
860 + }
861 + .advanced-search-half-map .range-text,
862 + .advanced-search-half-map .features-list-wrap .control--checkbox,
863 + .advanced-search-half-map .features-list-wrap .btn-features-list {
864 + color: #222222;
865 + }
866 +
867 + .save-search-btn {
868 + border-color: #28a745 ;
869 + background-color: #28a745 ;
870 + color: #ffffff ;
871 + }
872 + .save-search-btn:hover,
873 + .save-search-btn:active {
874 + border-color: #28a745;
875 + background-color: #28a745 ;
876 + color: #ffffff ;
877 + }
878 + .label-featured {
879 + background-color: #e22424;
880 + color: #ffffff;
881 + }
882 +
883 + .dashboard-side-wrap {
884 + background-color: #00365e;
885 + }
886 +
887 + .side-menu a {
888 + color: #ffffff;
889 + }
890 +
891 + .side-menu a.active,
892 + .side-menu .side-menu-parent-selected > a,
893 + .side-menu-dropdown a,
894 + .side-menu a:hover {
895 + color: #3385d9;
896 + }
897 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
898 + color: #2b6fb4
899 + }
900 +
901 + .detail-wrap {
902 + background-color: rgba(119,199,32,0.1);
903 + border-color: #3385d9;
904 + }
905 + .top-bar-wrap,
906 + .top-bar-wrap .dropdown-menu,
907 + .switcher-wrap .dropdown-menu {
908 + background-color: #000000;
909 + }
910 + .top-bar-wrap a,
911 + .top-bar-contact,
912 + .top-bar-slogan,
913 + .top-bar-wrap .btn,
914 + .top-bar-wrap .dropdown-menu,
915 + .switcher-wrap .dropdown-menu,
916 + .top-bar-wrap .navbar-toggler {
917 + color: #ffffff;
918 + }
919 + .top-bar-wrap a:hover,
920 + .top-bar-wrap a:active,
921 + .top-bar-wrap .btn:hover,
922 + .top-bar-wrap .btn:active,
923 + .top-bar-wrap .dropdown-menu li:hover,
924 + .top-bar-wrap .dropdown-menu li:active,
925 + .switcher-wrap .dropdown-menu li:hover,
926 + .switcher-wrap .dropdown-menu li:active {
927 + color: rgba(43,111,180,1);
928 + }
929 + .class-energy-indicator:nth-child(1) {
930 + background-color: #33a357;
931 + }
932 + .class-energy-indicator:nth-child(2) {
933 + background-color: #79b752;
934 + }
935 + .class-energy-indicator:nth-child(3) {
936 + background-color: #c3d545;
937 + }
938 + .class-energy-indicator:nth-child(4) {
939 + background-color: #fff12c;
940 + }
941 + .class-energy-indicator:nth-child(5) {
942 + background-color: #edb731;
943 + }
944 + .class-energy-indicator:nth-child(6) {
945 + background-color: #d66f2c;
946 + }
947 + .class-energy-indicator:nth-child(7) {
948 + background-color: #cc232a;
949 + }
950 + .class-energy-indicator:nth-child(8) {
951 + background-color: #cc232a;
952 + }
953 + .class-energy-indicator:nth-child(9) {
954 + background-color: #cc232a;
955 + }
956 + .class-energy-indicator:nth-child(10) {
957 + background-color: #cc232a;
958 + }
959 +
960 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
961 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
962 +
963 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
964 +
965 + .footer-top-wrap {
966 + background-color: #000000;
967 + }
968 +
969 + .footer-bottom-wrap {
970 + background-color: #000000;
971 + }
972 +
973 + .footer-top-wrap,
974 + .footer-top-wrap a,
975 + .footer-bottom-wrap,
976 + .footer-bottom-wrap a,
977 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
978 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
979 + .footer-top-wrap .blog-post-content-widget h4 a,
980 + .footer-top-wrap .blog-post-content-widget,
981 + .footer-top-wrap .form-tools .control,
982 + .footer-top-wrap .slick-dots li.slick-active button:before,
983 + .footer-top-wrap .slick-dots li button::before,
984 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
985 + color: #ffffff;
986 + }
987 +
988 + .footer-top-wrap a:hover,
989 + .footer-bottom-wrap a:hover,
990 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
991 + color: rgba(43,111,180,1);
992 + }
993 + .houzez-osm-cluster {
994 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
995 + text-align: center;
996 + color: #fff;
997 + width: 48px;
998 + height: 48px;
999 + line-height: 48px;
1000 + }
1001 + .text-success{color:red!important;}
1002 +
1003 +/*.mobile-property-contact{bottom:40px;}*/
1004 +
1005 +/* Button retour en haut*/
1006 +/*
1007 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1008 +.mobile-property-contact .btn{margin-right: 60px;}
1009 +*/
1010 +
1011 +.item-tool.houzez-share{display:none;}
1012 +
1013 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1014 +
1015 +.grecaptcha-badge{display:none!important;}
1016 +
1017 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1018 +
1019 +
1020 +@media only screen and (max-width: 768px) {
1021 + /* For mobile phones: */
1022 +
1023 + /* Button retour en haut*/
1024 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1025 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1026 +}
1027 +/*# sourceURL=houzez-style-inline-css */</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="2d62ac96b5f912fc8e18fd42-|49"></script><link data-asynced="1" as="style" onload="this.onload=null;this.rel='stylesheet'" rel='preload' id='leaflet-css' href='https://unpkg.com/leaflet@1.7.1/dist/leaflet.css' media='all' /><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1028 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1029 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/properties/10441" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/?p=10441' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/property/826-short/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/property/826-short/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1030 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1031 + background-image: none !important;
1032 + }
1033 + @media screen and (max-height: 1024px) {
1034 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1035 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1036 + background-image: none !important;
1037 + }
1038 + }
1039 + @media screen and (max-height: 640px) {
1040 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1041 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1042 + background-image: none !important;
1043 + }
1044 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1045 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1046 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1047 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1048 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="wp-singular property-template-default single single-property postid-10441 wp-custom-logo wp-theme-houzez translatepress-fr_CA transparent- houzez-header- elementor-default elementor-kit-6"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1049 +<a href="https://agencedelocationsherbrooke.com/">
1050 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1051 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1052 +<button class="btn toggle-button-left">
1053 +<i class="houzez-icon icon-navigation-menu"></i>
1054 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1055 +<a href="https://agencedelocationsherbrooke.com/">
1056 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1057 +</a></div></div><div class="header-mobile-right"></div></div></header><section class="content-wrap property-wrap property-detail-v6 "><div class="property-navigation-wrap"><div class="container-fluid"><ul class="property-navigation list-unstyled d-flex justify-content-between"><li class="property-navigation-item">
1058 +<a class="back-top" href="#main-wrap">
1059 +<i class="houzez-icon icon-arrow-button-circle-up"></i>
1060 +</a></li><li class="property-navigation-item">
1061 +<a class="target" href="#property-features-wrap">Inclusions</a></li><li class="property-navigation-item">
1062 +<a class="target" href="#property-description-wrap">Description</a></li><li class="property-navigation-item">
1063 +<a class="target" href="#property-address-wrap">Addresse</a></li><li class="property-navigation-item">
1064 +<a class="target" href="#property-detail-wrap">Détails</a></li><li class="property-navigation-item">
1065 +<a class="target" href="#property-video-wrap">Vidéo</a></li><li class="property-navigation-item">
1066 +<a class="target" href="#property-walkscore-wrap">Walkscore</a></li><li class="property-navigation-item">
1067 +<a class="target" href="#similar-listings-wrap">Annonces similaires</a></li></ul></div></div><div class="page-title-wrap"><div class="container"><div class="d-flex align-items-center"><div class="breadcrumb-wrap"><nav><ol class="breadcrumb"><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/"><span>Accueil</span></a></li><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/"> <span>5½</span></a></li><li class="breadcrumb-item active">826 Short</li></ol></nav></div><ul class="item-tools"><li class="item-tool houzez-favorite">
1068 +<span class="add-favorite-js item-tool-favorite" data-listid="10441">
1069 +<i class="houzez-icon icon-love-it "></i>
1070 +</span></li><li class="item-tool houzez-share">
1071 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1072 +<i class="houzez-icon icon-share"></i>
1073 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1074 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=826+Short&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F">
1075 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&amp;t=826+Short" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1076 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1077 +</a>
1078 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=826+Short&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1079 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1080 +</a>
1081 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1082 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1083 +</a>
1084 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&title=826+Short&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1085 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1086 +</a>
1087 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#2655494b4349484366435e474b564a430845494b197553444c4345521b1e141006754e495452004449425f1b4e5252565503156703146003146047414348454342434a494547524f4948554e4354445449494d430845494b031460565449564354525f0314601e14100b554e495452031460">
1088 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1089 +</a></div></li><li class="item-tool houzez-print " data-propid="10441">
1090 +<span class="item-tool-compare">
1091 +<i class="houzez-icon icon-print-text"></i>
1092 +</span></li></ul></div><div class="d-flex align-items-center property-title-price-wrap"><div class="page-title"><h1>826 Short</h1></div><ul class="item-price-wrap hide-on-list"><li class="item-price">990$/mensuel</li></ul></div><div class="property-labels-wrap">
1093 +<span class="label-featured label">Vedette</span><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1094 +Mont Bellevue
1095 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1096 +Libre maintenant
1097 +</a></div>
1098 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>826, Rue Short, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4C4, Canada</address></div></div><div class="property-top-wrap"><div class="property-banner"><div class="visible-on-mobile"><div class="tab-content" id="pills-tabContent"><div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-scaled.jpeg);"><div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 12</div><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1099 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1100 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1101 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [826 Short]</textarea></div>
1102 +<input type="hidden" name="target_email" value="cath&#101;&#114;in&#101;.&#112;e&#114;&#114;e&#97;&#117;lt&#64;&#112;&#114;&#101;&#115;t&#105;pl&#101;x&#46;&#99;om">
1103 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1104 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/826-short/"/>
1105 +<input type="hidden" name="property_title" value="826 Short"/>
1106 +<input type="hidden" name="property_id" value="ADLS-10441"/>
1107 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1108 +<input type="hidden" name="listing_id" value="10441">
1109 +<input type="hidden" name="is_listing_form" value="yes">
1110 +<input type="hidden" name="agent_id" value="156">
1111 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1112 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1113 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1114 +</button></form></div></div><a class="houzez-photoswipe-trigger property-banner-trigger" href="#"></a></div><div class="tab-pane houzez-top-area-video " id="pills-video" role="tabpanel" aria-labelledby="pills-video-tab">
1115 +<iframe data-lazyloaded="1" src="about:blank" title="826 Short, Sherbrooke, Québec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/uYsfcm0QVk0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div><div class="container hidden-on-mobile"><div class="row"><div class="col-md-8">
1116 +<a href="#" data-slider-no="1" data-image="0" class="houzez-photoswipe-trigger img-wrap-1" >
1117 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-758x564.jpeg" alt="" width="758" height="564" />
1118 +</a></div><div class="col-md-4">
1119 +<a href="#" data-slider-no="2" data-image="1" class="houzez-photoswipe-trigger swipebox img-wrap-2">
1120 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172205.304-758x564.jpeg" alt="" width="758" height="564" />
1121 +</a>
1122 +<a href="#" data-slider-no="3" data-image="2" class="houzez-photoswipe-trigger swipebox img-wrap-3"><div class="img-wrap-3-text">9 Plus</div>
1123 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172206.752-758x564.jpeg" alt="" width="758" height="564" />
1124 +</a></div>
1125 +<a href="#" class="img-wrap-1 gallery-hidden">
1126 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172201.386-758x564.jpeg" alt="" width="758" height="564" />
1127 +</a>
1128 +<a href="#" class="img-wrap-1 gallery-hidden">
1129 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172200.165-758x564.jpeg" alt="" width="758" height="564" />
1130 +</a>
1131 +<a href="#" class="img-wrap-1 gallery-hidden">
1132 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172158.943-758x564.jpeg" alt="" width="758" height="564" />
1133 +</a>
1134 +<a href="#" class="img-wrap-1 gallery-hidden">
1135 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172157.717-758x564.jpeg" alt="" width="758" height="564" />
1136 +</a>
1137 +<a href="#" class="img-wrap-1 gallery-hidden">
1138 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172156.344-758x564.jpeg" alt="" width="758" height="564" />
1139 +</a>
1140 +<a href="#" class="img-wrap-1 gallery-hidden">
1141 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172150.833-758x564.jpeg" alt="" width="758" height="564" />
1142 +</a>
1143 +<a href="#" class="img-wrap-1 gallery-hidden">
1144 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172149.596-758x564.jpeg" alt="" width="758" height="564" />
1145 +</a>
1146 +<a href="#" class="img-wrap-1 gallery-hidden">
1147 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172146.882-758x564.jpeg" alt="" width="758" height="564" />
1148 +</a>
1149 +<a href="#" class="img-wrap-1 gallery-hidden">
1150 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172145.889-758x564.jpeg" alt="" width="758" height="564" />
1151 +</a><div class="col-md-12"><div class="block-wrap"><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>5½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>5</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div></div></div><div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"><div class="pswp__bg"></div><div class="pswp__scroll-wrap"><div class="pswp__container"><div class="pswp__item"></div><div class="pswp__item"></div><div class="pswp__item"></div></div><div class="pswp__ui pswp__ui--hidden"><div class="pswp__top-bar"><div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button><button class="pswp__button pswp__button--share" title="Share"></button><button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button><button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button><div class="pswp__preloader"><div class="pswp__preloader__icn"><div class="pswp__preloader__cut"><div class="pswp__preloader__donut"></div></div></div></div></div><div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"><div class="pswp__share-tooltip"></div></div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
1152 +</button><button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
1153 +</button><div class="pswp__caption"><div class="pswp__caption__center"></div></div></div></div></div> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">initPhotoswipeDomForJson({"1":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172208.173-scaled.jpeg","w":1920,"h":2560},"2":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172205.304-scaled.jpeg","w":1920,"h":2560},"3":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172206.752-scaled.jpeg","w":1920,"h":2560},"4":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172201.386-scaled.jpeg","w":1920,"h":2560},"5":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172200.165-scaled.jpeg","w":1920,"h":2560},"6":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172158.943-scaled.jpeg","w":1920,"h":2560},"7":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172157.717-scaled.jpeg","w":1920,"h":2560},"8":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172156.344-scaled.jpeg","w":1920,"h":2560},"9":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172150.833-scaled.jpeg","w":1920,"h":2560},"10":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172149.596-scaled.jpeg","w":1920,"h":2560},"11":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172146.882-scaled.jpeg","w":1920,"h":2560},"12":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172145.889-scaled.jpeg","w":1920,"h":2560}});function initPhotoswipeDomForJson(imageData){var pswpElement=document.querySelectorAll('.pswp')[0];var items=[],item;jQuery.each(imageData,function(i,obj){item={src:obj.src,w:obj.w,h:obj.h};items.push(item)});var options={index:0};var x=document.querySelectorAll(".houzez-photoswipe-trigger");for(let i=0;i<x.length;i++){x[i].addEventListener("click",function(){openGallery(x[i].dataset.image)})}
1154 +function openGallery(j){options.index=parseInt(j);options.history=!1;gallery=new PhotoSwipe(pswpElement,PhotoSwipeUI_Default,items,options);gallery.init()}}</script> </div><div class="container"><div class="row"><div class="col-lg-12 col-md-12 bt-full-width-content-wrap"><div class="property-view"><div class="visible-on-mobile"><div class="mobile-top-wrap"><div class="mobile-property-tools clearfix"><ul class="nav nav-pills houzez-media-tabs-4" id="pills-tab" role="tablist"><li class="nav-item">
1155 +<a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1156 +<i class="houzez-icon icon-picture-sun"></i>
1157 +</a></li><li class="nav-item">
1158 +<a class="nav-link " id="pills-video-tab" data-toggle="pill" href="#pills-video" role="tab" aria-controls="pills-video" aria-selected="true">
1159 +<i class="houzez-icon icon-video-player-movie-1"></i>
1160 +</a></li></ul><ul class="item-tools"><li class="item-tool houzez-favorite">
1161 +<span class="add-favorite-js item-tool-favorite" data-listid="10441">
1162 +<i class="houzez-icon icon-love-it "></i>
1163 +</span></li><li class="item-tool houzez-share">
1164 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1165 +<i class="houzez-icon icon-share"></i>
1166 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1167 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=826+Short&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F">
1168 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&amp;t=826+Short" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1169 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1170 +</a>
1171 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=826+Short&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1172 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1173 +</a>
1174 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1175 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1176 +</a>
1177 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&title=826+Short&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1178 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1179 +</a>
1180 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#95e6faf8f0fafbf0d5f0edf4f8e5f9f0bbf6faf8aac6e0f7fff0f6e1a8ada7a3b5c6fdfae7e1b3f7faf1eca8fde1e1e5e6b0a6d4b0a7d3b0a7d3f4f2f0fbf6f0f1f0f9faf6f4e1fcfafbe6fdf0e7f7e7fafafef0bbf6faf8b0a7d3e5e7fae5f0e7e1ecb0a7d3ada7a3b8e6fdfae7e1b0a7d3">
1181 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1182 +</a></div></li><li class="item-tool houzez-print " data-propid="10441">
1183 +<span class="item-tool-compare">
1184 +<i class="houzez-icon icon-print-text"></i>
1185 +</span></li></ul></div><div class="mobile-property-title clearfix">
1186 +<span class="label-featured label">Vedette</span> <span class="labels-wrap labels-right">
1187 +<a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1188 +Mont Bellevue
1189 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1190 +Libre maintenant
1191 +</a>
1192 +</span>
1193 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>826, Rue Short, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4C4, Canada</address><ul class="item-price-wrap hide-on-list"><li class="item-price">990$/mensuel</li></ul></div></div><div class="property-overview-wrap property-section-wrap" id="property-overview-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Apperçu</h2><div><strong># Annonce:</strong> ADLS-10441</div></div><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>5½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>5</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div><div class="property-features-wrap property-section-wrap" id="property-features-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Inclusions</h2></div><div class="block-content-wrap"><ul class="list-3-cols list-unstyled"><li><i class="fas fa-cat mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/chat-permis/">Chat permis</a></li><li><i class="fas fa-snowplow mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/deneigement/">Déneigement</a></li><li><i class="houzez-icon icon-check-circle-1 mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/entre-laveuse-secheuse/">Entré laveuse/sécheuse</a></li></ul></div></div></div><div class="property-description-wrap property-section-wrap" id="property-description-wrap"><div class="block-wrap"><div class="block-title-wrap"><h2>Description</h2></div><div class="block-content-wrap"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true" data-pm-slice="1 1 []"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">5 ½ à louer – Disponible dès maintenant!</strong></p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Spacieux 5 ½ situé au <strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">rez-de-jardin</strong>, disponible immédiatement.</p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">Caractéristiques :</strong></p><ul class="ak-ul" data-prosemirror-content-type="node" data-prosemirror-node-name="bulletList" data-prosemirror-node-block="true"><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">1 espace de stationnement inclus</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">1 ou 2 chat tolérer</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Chiens interdits</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l’immeuble)</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Aucun service inclus (électricité, chauffage, etc.)</p></li></ul><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">Conditions :</strong></p><ul class="ak-ul" data-prosemirror-content-type="node" data-prosemirror-node-name="bulletList" data-prosemirror-node-block="true"><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Enquête de crédit obligatoire</p></li></ul><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Pour obtenir plus d’informations ou planifier une visite, contactez-nous en message privé.</p></div></div></div><div class="property-address-wrap property-section-wrap" id="property-address-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Addresse</h2><a class="btn btn-primary btn-slim" href="https://maps.google.com/?q=826,%20Rue%20Short,%20Mont-Bellevue,%20Les%20Nations,%20Sherbrooke,%20Estrie,%20Québec,%20J1H%204C4,%20Canada" target="_blank"><i class="houzez-icon icon-maps mr-1"></i> Ouvrir sur Google Maps</a></div><div class="block-content-wrap"><ul class="list-2-cols list-unstyled"><li class="detail-address"><strong>Addresse</strong> <span>826, Rue Short, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4C4, Canada</span></li><li class="detail-zip"><strong>Zip / Code postal</strong> <span>J1H 4C4</span></li></ul></div><div id="houzez-single-listing-map" class="block-map-wrap"></div></div></div><div class="property-detail-wrap property-section-wrap" id="property-detail-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Détails</h2>
1194 +<span class="small-text grey"><i class="houzez-icon icon-calendar-3 mr-1"></i> Mise à jour le août 7, 2026 à 8:48 pm</span></div><div class="block-content-wrap"><div class="detail-wrap"><ul class="list-2-cols list-unstyled"><li>
1195 +<strong># Annonce:</strong>
1196 +<span>ADLS-10441</span></li><li>
1197 +<strong>Prix:</strong>
1198 +<span> 990$/mensuel</span></li><li>
1199 +<strong>Chambres:</strong>
1200 +<span>3</span></li><li>
1201 +<strong>Pièces:</strong>
1202 +<span>5</span></li><li>
1203 +<strong>Salle de bain:</strong>
1204 +<span>1</span></li><li>
1205 +<strong>Stationnement:</strong>
1206 +<span>1</span></li><li class="prop_type">
1207 +<strong>Type:</strong>
1208 +<span>5½</span></li><li class="prop_status">
1209 +<strong>Statut:</strong>
1210 +<span>Mont Bellevue</span></li></ul></div></div></div></div><div class="property-video-wrap property-section-wrap" id="property-video-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Vidéo</h2></div><div class="block-content-wrap"><div class="block-video-wrap">
1211 +<iframe data-lazyloaded="1" src="about:blank" title="826 Short, Sherbrooke, Québec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/uYsfcm0QVk0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div></div><div class="property-walkscore-wrap property-section-wrap" id="property-walkscore-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Walkscore</h2></div><div class="block-content-wrap"><div id="ws-walkscore-tile"></div></div></div></div><div class="property-contact-agent-wrap property-section-wrap" id="property-contact-agent-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Coordonnées</h2><a class="btn btn-primary btn-slim" href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/" target="_blank">Voir les annonces</a></div><div class="block-content-wrap"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="80" height="80"></a></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-phone-wrap clearfix"></li></ul></div></div><div class="block-title-wrap"><h3>Renseignez-vous sur cette propriété</h3></div><div class="form_messages"></div><div class="row"><div class="col-md-6 col-sm-12"><div class="form-group">
1212 +<label>Nom</label>
1213 +<input class="form-control" name="name" placeholder="Entrez votre nom" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1214 +<label>Téléphone</label>
1215 +<input class="form-control" name="mobile" placeholder="Entrez votre numéro de téléphone" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1216 +<label>Courriel</label>
1217 +<input class="form-control" name="email" placeholder="Entrer votre courriel" type="email"></div></div><div class="col-sm-12 col-xs-12"><div class="form-group form-group-textarea">
1218 +<label>Message</label><textarea class="form-control hz-form-message" name="message" rows="5" placeholder="Entrez votre message">Bonjour, je suis intéressé par [826 Short]</textarea></div></div><div class="col-sm-12 col-xs-12">
1219 +<input type="hidden" name="target_email" value="cat&#104;e&#114;in&#101;.p&#101;r&#114;&#101;&#97;&#117;&#108;t&#64;prestip&#108;e&#120;&#46;&#99;&#111;&#109;">
1220 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1221 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/826-short/"/>
1222 +<input type="hidden" name="property_title" value="826 Short"/>
1223 +<input type="hidden" name="property_id" value="ADLS-10441"/>
1224 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1225 +<input type="hidden" class="is_bottom" value="bottom">
1226 +<input type="hidden" name="listing_id" value="10441">
1227 +<input type="hidden" name="is_listing_form" value="yes">
1228 +<input type="hidden" name="agent_id" value="156">
1229 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><button class="houzez_agent_property_form btn btn-secondary btn-sm-full-width">
1230 +<span class="btn-loader houzez-loader-js"></span> Demande d'informations
1231 +</button></div></div></form></div></div></div></div></div></div></div></section></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1232 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1233 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1234 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1235 +<i class="houzez-icon icon-arrow-up-1"></i>
1236 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1237 +<button class="compare-property-label" style="display: none;">
1238 +<span class="compare-count compare-label"></span>
1239 +<i class="houzez-icon icon-move-left-right"></i>
1240 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1241 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1242 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1243 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1244 +<span aria-hidden="true">&times;</span>
1245 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1246 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1247 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1248 +<label class="control control--checkbox flex-grow-1">
1249 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1250 +</label>
1251 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/property/826-short/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1252 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com/property/826-short/?login=success">
1253 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1254 +<span class="btn-loader houzez-loader-js"></span> Connexion
1255 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1256 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1257 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1258 +<span aria-hidden="true">&times;</span>
1259 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1260 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1261 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/property/826-short/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1262 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><div class="mobile-property-contact visible-on-mobile"><div class="d-flex justify-content-between"><div class="agent-details flex-grow-1"><div class="d-flex align-items-center"><div class="agent-image">
1263 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" width="50" height="50" alt="Catherine Perreault"></div><ul class="agent-information list-unstyled"><li class="agent-name">
1264 +Catherine Perreault</li></ul></div></div>
1265 +<button class="btn btn-secondary" data-toggle="modal" data-target="#mobile-property-form">
1266 +<i class="houzez-icon icon-messages-bubble"></i>
1267 +</button></div></div><div class="modal fade mobile-property-form" id="mobile-property-form"><div class="modal-dialog" role="document"><div class="modal-content">
1268 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1269 +<span aria-hidden="true">&times;</span>
1270 +</button><div class="modal-body"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1271 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1272 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1273 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [826 Short]</textarea></div>
1274 +<input type="hidden" name="target_email" value="cat&#104;&#101;&#114;&#105;&#110;&#101;.&#112;e&#114;r&#101;&#97;u&#108;&#116;&#64;&#112;&#114;esti&#112;&#108;&#101;&#120;.&#99;&#111;&#109;">
1275 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1276 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/826-short/"/>
1277 +<input type="hidden" name="property_title" value="826 Short"/>
1278 +<input type="hidden" name="property_id" value="ADLS-10441"/>
1279 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1280 +<input type="hidden" name="listing_id" value="10441">
1281 +<input type="hidden" name="is_listing_form" value="yes">
1282 +<input type="hidden" name="agent_id" value="156">
1283 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1284 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1285 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1286 +</button></form></div></div></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div class="modal-content"><div class="modal-header"><div class="d-flex align-items-center"><div class="lightbox-logo">
1287 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white.png" alt="826 Short" width="127" height="32" /></div><div class="lightbox-title flex-grow-1"></div><div class="lightbox-tools"><ul class="list-inline"><li class="list-inline-item btn-favorite">
1288 +<a class="add-favorite-js" data-listid="10441" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Favoris</span></a></li><li class="list-inline-item btn-share">
1289 +<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Partager</span></a><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1290 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=826+Short&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F">
1291 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&amp;t=826+Short" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1292 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1293 +</a>
1294 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=826+Short&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1295 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1296 +</a>
1297 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1298 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1299 +</a>
1300 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F826-short%2F&title=826+Short&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-2d62ac96b5f912fc8e18fd42-="">
1301 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1302 +</a>
1303 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#01726e6c646e6f64416479606c716d642f626e6c3e5274636b6462753c3933372152696e737527636e65783c69757571722432402433472433476066646f626465646d6e626075686e6f7269647363736e6e6a642f626e6c24334771736e71647375782433473933372c72696e7375243347">
1304 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1305 +</a></div></li><li class="list-inline-item btn-email">
1306 +<a href="#"><i class="houzez-icon icon-envelope"></i></a></li></ul></div></div>
1307 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1308 +<span aria-hidden="true">&times;</span>
1309 +</button></div><div class="modal-body clearfix"><div class="lightbox-gallery-wrap ">
1310 +<a class="btn-expand">
1311 +<i class="houzez-icon icon-expand-3"></i>
1312 +</a><div class="lightbox-gallery"><div id="lightbox-slider-js" class="lightbox-slider"><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-scaled.jpeg" alt="" title="image - 2026-07-04T172208.173" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172205.304-scaled.jpeg" alt="" title="image - 2026-07-04T172205.304" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172206.752-scaled.jpeg" alt="" title="image - 2026-07-04T172206.752" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172201.386-scaled.jpeg" alt="" title="image - 2026-07-04T172201.386" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172200.165-scaled.jpeg" alt="" title="image - 2026-07-04T172200.165" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172158.943-scaled.jpeg" alt="" title="image - 2026-07-04T172158.943" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172157.717-scaled.jpeg" alt="" title="image - 2026-07-04T172157.717" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172156.344-scaled.jpeg" alt="" title="image - 2026-07-04T172156.344" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172150.833-scaled.jpeg" alt="" title="image - 2026-07-04T172150.833" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172149.596-scaled.jpeg" alt="" title="image - 2026-07-04T172149.596" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172146.882-scaled.jpeg" alt="" title="image - 2026-07-04T172146.882" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172145.889-scaled.jpeg" alt="" title="image - 2026-07-04T172145.889" width="1920" height="2560" /></div></div></div></div><div class="lightbox-form-wrap"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1313 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1314 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1315 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [826 Short]</textarea></div>
1316 +<input type="hidden" name="target_email" value="&#99;a&#116;&#104;&#101;&#114;ine&#46;&#112;&#101;r&#114;ea&#117;l&#116;&#64;&#112;&#114;est&#105;&#112;&#108;&#101;x&#46;&#99;&#111;&#109;">
1317 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1318 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/826-short/"/>
1319 +<input type="hidden" name="property_title" value="826 Short"/>
1320 +<input type="hidden" name="property_id" value="ADLS-10441"/>
1321 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1322 +<input type="hidden" name="listing_id" value="10441">
1323 +<input type="hidden" name="is_listing_form" value="yes">
1324 +<input type="hidden" name="agent_id" value="156">
1325 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1326 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1327 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1328 +</button></form></div></div></div></div><div class="modal-footer"></div></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1329 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="2d62ac96b5f912fc8e18fd42-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1330 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="bootstrap-datepicker.fr-CA-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr-CA.min.js"></script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com/property/826-short/","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_nav","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"fr-CA","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="leaflet-js" type="litespeed/javascript" data-src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script> <script id="houzez-single-property-map-js-extra" type="litespeed/javascript">var houzez_single_property_map={"title":"826 Short","price":" 990$/mensuel","property_id":"10441","pricePin":"990$/mensuel","property_type":"5\u00bd","address":"826, Rue Short, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Qu\u00e9bec, J1H 4C4, Canada","lat":"45.3926895","lng":"-71.8987818","term_id":"101","marker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","retinaMarker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","thumbnail":"https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-120x90.jpeg"};var houzez_map_options={"markerPricePins":"no","single_map_zoom":"12","map_type":"roadmap","map_pin_type":"marker","googlemap_stype":"","closeIcon":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/close.png","infoWindowPlac":"https://placehold.it/120x90&text=Agence+de+location+Sherbrooke"}</script> <script id="houzez-walkscore-js-before" type="litespeed/javascript">var ws_wsid=' 65c6f7843483895d5d5ef58e01b2d789';var ws_address='826, Rue Short, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4C4, Canada';var ws_format='wide';var ws_width='650';var ws_width='100%';var ws_height='400'</script> <script id="houzez-walkscore-js" type="litespeed/javascript" data-src="https://www.walkscore.com/tile/show-walkscore-tile.php"></script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1331 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="2d62ac96b5f912fc8e18fd42-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="2d62ac96b5f912fc8e18fd42-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="2d62ac96b5f912fc8e18fd42-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/7eb3e0d215c9a5e36449ede9b8431764.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="2d62ac96b5f912fc8e18fd42-|49" defer></script></body></html>
1332 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:31:35 -->
1333 +
1334 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:31:35 -->
1335 +<!-- Guest Mode -->
1336 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/ed93c1ba2200a9da666c9871ea0b8f1b.css -->
1337 +<!-- QUIC.cloud UCSS loaded ✅ /ucss/044fe8ee8f61ac34449a81ba0dc1f403.css -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/4e6dd07b6211eb816573.html +1244 −0
@@ -0,0 +1,1244 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="a9b9f403e8decdada690aa4b-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>Appartement à louer - Agence de location Sherbrooke - Page 4</title><style>.houzez-library-modal-btn {margin-left: 5px;background: #35AAE1;vertical-align: top;font-size: 0 !important;}.houzez-library-modal-btn:before {content: '';width: 16px;height: 16px;background-image: url('https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/favicon.png');background-position: center;background-size: contain;background-repeat: no-repeat;}#houzez-library-modal .houzez-elementor-template-library-template-name {text-align: right;flex: 1 0 0%;}</style><meta name="description" content="Que vous soyez étudiants à l&#039;UdeS ou un travailleur à la recherche d&#039;un appartement à louer à Sherbrooke. Nous vous offrons une tonne d&#039;options pour tous les budgets et toutes les durées de séjour. - Page 4" /><meta name="robots" content="noindex, nofollow, max-image-preview:large" /><link rel="canonical" href="https://agencedelocationsherbrooke.com/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="website" /><meta property="og:title" content="Appartement à louer - Agence de location Sherbrooke - Page 4" /><meta property="og:description" content="Que vous soyez étudiants à l&#039;UdeS ou un travailleur à la recherche d&#039;un appartement à louer à Sherbrooke. Nous vous offrons une tonne d&#039;options pour tous les budgets et toutes les durées de séjour. - Page 4" /><meta property="og:url" content="https://agencedelocationsherbrooke.com/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta property="og:image:width" content="254" /><meta property="og:image:height" content="64" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="Appartement à louer - Agence de location Sherbrooke - Page 4" /><meta name="twitter:description" content="Que vous soyez étudiants à l&#039;UdeS ou un travailleur à la recherche d&#039;un appartement à louer à Sherbrooke. Nous vous offrons une tonne d&#039;options pour tous les budgets et toutes les durées de séjour. - Page 4" /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/page\/4#listItem","name":"Page 4"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/page\/4#listItem","position":2,"name":"Page 4","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Appartement \u00e0 louer - Agence de location Sherbrooke - Page 4","description":"Que vous soyez \u00e9tudiants \u00e0 l'UdeS ou un travailleur \u00e0 la recherche d'un appartement \u00e0 louer \u00e0 Sherbrooke. Nous vous offrons une tonne d'options pour tous les budgets et toutes les dur\u00e9es de s\u00e9jour. - Page 4","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#breadcrumblist"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/#mainImage","width":254,"height":64},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#mainImage"},"datePublished":"2016-02-15T23:00:39+00:00","dateModified":"2025-03-17T20:47:33+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2F&#038;format=xml" /><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
2 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}header,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}h5{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}ul{margin-top:0;margin-bottom:1rem}strong{font-weight:bolder}a{color:#007bff;text-decoration:none;background-color:transparent}img{vertical-align:middle;border-style:none}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button,input,select{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox]{box-sizing:border-box;padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}template{display:none}h5{margin-bottom:.5rem;font-weight:500;line-height:1.2}h5{font-size:1.25rem}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-group{margin-bottom:1rem}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-block{display:block;width:100%}.fade:not(.show){opacity:0}.dropdown{position:relative}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.tab-content>.tab-pane{display:none}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}button.close{padding:0;background-color:transparent;border:0}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem}.modal.fade .modal-dialog{-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}}.clearfix:after{display:block;clear:both;content:""}.d-flex{display:-ms-flexbox!important;display:flex!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.mr-1{margin-right:.25rem!important}.mb-2{margin-bottom:.5rem!important}select.bs-select-hidden,select.selectpicker{display:none!important}.houzez-icon{font-family:houzez-iconfont!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-add-circle:before{content:"\e901"}.icon-arrow-up-1:before{content:"\e913"}.icon-love-it:before{content:"\e928"}.icon-move-left-right:before{content:"\e92c"}.icon-navigation-menu:before{content:"\e92d"}.icon-single-neutral:before{content:"\e93a"}.control{display:block;position:relative;padding-left:30px;margin-bottom:15px;font-size:18px}.control input{position:absolute;z-index:-1;opacity:0}.control__indicator{position:absolute;top:2px;left:0;height:20px;width:20px;background:#e6e6e6}.control__indicator:after{content:'';position:absolute;display:none}.control.control--checkbox{line-height:22px}.control--checkbox .control__indicator:after{left:8px;top:4px;width:3px;height:8px;border:solid #fff;border-width:0 2px 2px 0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.grid-view .item-footer,.nav-mobile .main-nav .nav-item,.btn-full-width{width:100%}.login-form-wrap .form-group-field,.login-register-form .modal-header .close span,.nav-mobile .main-nav .nav-item a,.main-nav .nav-item,.header-mobile,.header-main-wrap,.logo img,.header-inner-wrap,.btn-loader{position:relative}.login-form-wrap .form-group-field:after,.compare-property-label .compare-label,.compare-property-label,.grid-view .labels-wrap,.item-price-wrap{position:absolute}.property-lightbox .modal,.compare-property-label .compare-label,.nav-mobile .main-nav .nav-item a{display:block}.login-form-wrap .form-group-field:after,.item-tool>span,.item-tool,label{display:inline-block}.item-author a{display:inline}.grid-view .item-body .item-author,.grid-view .item-body .labels-wrap,.grid-view .item-body .item-price-wrap,.btn-loader{display:none}.control__indicator{background-color:transparent}.item-footer,.control__indicator{background-color:#fff}.property-lightbox .modal-content{border:none}.login-register-tabs .nav-link{border-radius:0}.label{border-radius:2px}.login-form-wrap,.item-tool>span{border-radius:4px}.login-register-form .modal-header .close,.item-price-wrap,.login-register-nav{margin:0}.form-tools{margin-top:20px}.login-form-wrap .form-group,.form-tools .control{margin-bottom:0}.form-tools{margin-bottom:20px}.login-register-form .modal-header,.item-price-wrap,.login-register-nav,.navbar{padding:0}.item-author{float:left}.control__indicator{top:0}.grid-view .labels-wrap{z-index:1}.item-price-wrap,.nav-mobile .main-nav .nav-item a,.main-nav .nav-item{z-index:2}.item-price-wrap{list-style:none}.grid-view .item-footer .item-author{white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.login-register-tabs .nav-link{font-weight:500}strong,label{font-weight:600}.item-author,.item-author a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-column-gap:5px;-moz-column-gap:5px;column-gap:5px}.control{display:block;position:relative;padding-left:30px;margin-bottom:15px;font-size:18px}.control input{position:absolute;z-index:-1;opacity:0}.control__indicator{position:absolute;top:2px;left:0;height:20px;width:20px;background:#fff}.control__indicator:after{content:"";position:absolute;display:none}.control.control--checkbox{line-height:22px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.control--checkbox .control__indicator:after{left:8px;top:4px;width:3px;height:8px;border:solid #fff;border-width:0 2px 2px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.btn-loader{top:2px;width:16px;height:16px;margin-right:15px}.btn-loader:after{content:" ";display:block;width:16px;height:16px;margin:1px;border-radius:50%;border:2px solid #fff;border-color:#fff transparent;-webkit-animation:btn-loader 1.2s linear infinite;animation:btn-loader 1.2s linear infinite}@-webkit-keyframes btn-loader{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes btn-loader{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}[type=password]{direction:ltr;text-align:left}label{padding-bottom:10px;margin-bottom:0}.label{font-size:10px;line-height:11px;font-weight:500;margin:0;text-transform:uppercase;padding:3px 5px;color:#fff;background-color:rgba(0,0,0,.65)}.btn{padding:0 15px;font-weight:500;line-height:40px;white-space:nowrap}.btn-grey-outlined{border-radius:4px!important;background-color:transparent;border-color:#cdd1d4;color:#5c6872}.form-control{height:42px}.form-control{font-weight:400;border:1px solid;border-color:#dce0e0}.control{color:#a1a7a8;min-height:24px;font-size:14px;font-weight:500;line-height:24px}.control__indicator{border:1px solid #dce0e0;border-radius:2px}.control--checkbox .control__indicator:after{left:6px;top:2px;width:6px;height:10px}input[type=checkbox]{margin:6px 0 0}@media (min-width:768px){.container{max-width:750px}}@media (min-width:992px){.container{max-width:970px}}@media (min-width:1200px){.container{max-width:1170px}}@media (max-width:991.98px){.header-desktop{display:none}}.logo{margin-right:20px}.logo img{top:-3px}.login-register{white-space:nowrap}.header-main-wrap{z-index:4}.header-mobile{text-align:center;height:60px;padding:0 10px}@media (min-width:992px){.header-mobile{display:none!important}}.header-mobile .logo{margin:0 auto}.header-mobile .toggle-button-left{background-color:transparent;font-size:20px}.header-mobile-right{min-width:56px}.main-nav .navbar-nav{padding-right:15px;-webkit-padding-start:0;padding-inline-start:0}.main-nav .nav-link{padding-top:0;padding-bottom:0}@media (min-width:1200px){.main-nav .nav-link{padding-right:15px!important;padding-left:15px!important}}.on-hover-menu{background:0 0;margin:0;padding:0;min-height:20px}@media only screen and (min-width:991px){.on-hover-menu ul li{position:relative}}@media (max-width:991.98px){.slideout-menu{position:fixed;left:0;top:0;bottom:0;right:0;z-index:0;width:256px;overflow-y:scroll;-webkit-overflow-scrolling:touch;display:none;margin-bottom:71px}}@media (max-width:991.98px){.slideout-menu-left{left:0}}@media (max-width:991.98px){.slideout-menu-right{right:0;left:auto}}@media (min-width:992px){.nav-mobile{display:none}}.nav-mobile .main-nav .navbar-nav{padding-right:0}.nav-mobile .main-nav .nav-item{display:block}.nav-mobile .main-nav .nav-item a{border-bottom:1px solid;padding:15px}.item-footer{padding:15px 24px;border-top:1px solid #dce0e0}.item-price-wrap{bottom:20px;left:20px;color:#fff;font-weight:600}.item-price-wrap .item-price{font-size:18px}.item-tool>span{width:30px;height:30px;line-height:30px;font-size:14px;text-align:center}.item-tool>span{color:#fff;border:1px solid transparent;background-color:rgba(0,0,0,.35)}.item-author,.item-author a{color:#636363;font-size:12px}.item-author i{margin-right:5px}.grid-view .labels-wrap{top:17px;right:20px}.grid-view .item-footer{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.grid-view .item-footer .item-author{max-width:50%}.item-wrap-v2 .item-footer{border-top:none}.labels-right a{margin-left:3px}.compare-property-panel{background-color:#fff;position:fixed;padding-top:20px;padding-right:15px;padding-bottom:20px;padding-left:20px;border-left:1px solid #dce0e0}.compare-property-panel-vertical{width:300px;height:100%;top:0;z-index:100}.compare-property-panel-right{right:-300px}.compare-property-label{background-color:#636363;width:40px;height:40px;line-height:40px;top:50%;left:-40px;text-align:center;color:#fff;border-top-left-radius:4px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border:none}.compare-property-label .compare-label{background-color:#85c341;font-size:11px;font-weight:700;width:16px;height:16px;line-height:16px;border-radius:50%;top:-5px;left:-5px}.property-lightbox .modal{visibility:hidden}.property-lightbox .modal-dialog{max-width:100%;width:1170px;overflow:hidden}@media (max-width:1199.98px){.property-lightbox .modal-dialog{max-width:100%;width:972px}}@media (max-width:991.98px){.property-lightbox .modal-dialog{max-width:100%;width:760px}}@media (max-width:767.98px){.property-lightbox .modal-dialog{width:100%;height:100%;margin:0}}@media (max-width:767.98px){.property-lightbox .modal-content{height:100%;border-radius:0;background-color:#2d2d2d}}.back-to-top-wrap{position:fixed;left:auto;right:30px;bottom:30px;z-index:99}@media (max-width:767.98px){.back-to-top-wrap{right:15px;bottom:15px}}.back-to-top-wrap .btn-back-to-top{display:none;width:42px;height:42px;line-height:42px;padding:0}.modal .modal-title{font-size:18px}div#login-register-form{z-index:9999}.login-register-form .modal-content{border:none}.login-register-form .modal-dialog{max-width:430px}.login-register-form .modal-header{overflow:hidden;border:none;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.login-register-form .modal-header .close{padding:15px 20px;color:#fff;opacity:1;text-shadow:none;border-left:1px solid rgba(255,255,255,.2)}.login-register-form .modal-header .close span{top:-2px}.login-register-form .modal-header .login-register-tabs .nav-link,.login-register-form .modal-header .login-register-tabs .nav-tabs{border:none}.login-register-form .modal-header .login-register-tabs .nav-link{border-right:1px solid;border-color:rgba(255,255,255,.2);padding:15px 30px;color:#fff}.login-register-form .modal-body{padding:30px}.form-tools .control{color:#636363}.form-tools a{min-height:24px;font-size:14px;font-weight:500}.login-form-wrap{background-color:#fff;border:1px solid #dce0e0}.login-form-wrap .form-group-field:after{font-family:"houzez-iconfont";color:#636363;top:10px;left:18px}.login-form-wrap .form-group-field input{padding-left:42px;border:none}.login-form-wrap .form-group{border-bottom:1px solid #dce0e0}.login-form-wrap .form-group:last-of-type{border-bottom:none}.login-form-wrap .username-field:after{content:""}.login-form-wrap .password-field:after{content:""}.houzez-field-textual{line-height:1.4;font-size:15px;min-height:40px;border-radius:3px}.houzez-field-textual.elementor-size-md{font-size:16px;min-height:47px;border-radius:4px}.close{margin-left:auto}.modal{z-index:1080}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-webkit-input-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-moz-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual:-ms-input-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-ms-input-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-webkit-input-placeholder{opacity:1}.btn,body{font-size:15px;font-family:Roboto,sans-serif}a{color:#00aeff}.login-register-form .modal-header{background-color:#00aeff}.btn-primary{color:#fff;background-color:#00aeff;border-color:#00aeff}.header-v4 .header-inner-wrap{line-height:90px;height:90px}.main-wrap,body{background-color:#f8f8f8}.control--checkbox,.form-control,body{color:#222}.header-v4,.nav-mobile .main-nav,.nav-mobile .navi-login-register{background-color:#fff}.header-mobile{background-color:#004274}.header-mobile .toggle-button-left{color:#fff}.header-v4 a{color:#004274}.nav-mobile .main-nav .nav-item a{color:#004274;border-color:#dce0e0;background-color:#fff}.form-control::-webkit-input-placeholder{color:#a1a7a8}body{line-height:25px;font-weight:300;text-transform:none}.btn{font-weight:500}.form-control{font-family:Roboto,sans-serif;font-size:15px;font-weight:400}label,strong{font-weight:600}.login-register,.main-nav{font-family:Roboto,sans-serif;font-size:14px;font-weight:500;text-transform:none}h5{font-family:Roboto,sans-serif;font-weight:500;text-transform:inherit}.back-to-top-wrap .btn-back-to-top{display:none}.btn-loader:after{border:2px solid #333;border-color:#333 transparent}@media (min-width:1200px){.container{max-width:1210px}}.label-color-87{background-color:#31af00}.status-color-28{background-color:#d93}.status-color-88{background-color:#b7ba00}.status-color-95{background-color:#d33}.status-color-89{background-color:#31af00}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}.main-nav,.login-register{font-family:Poppins;font-size:14px;font-weight:400;text-align:left;text-transform:uppercase}.btn,.form-control{font-family:Poppins;font-size:16px}h5{font-family:Poppins;font-weight:400;text-transform:capitalize}.header-v4 .header-inner-wrap{line-height:90px;height:90px}body,.main-wrap{background-color:#f7f7f7}body,.form-control{color:#222}a{color:#3385d9}.login-register-form .modal-header{background-color:#3385d9}.btn-primary{color:#fff;background-color:#3385d9;border-color:#3385d9}.header-desktop .main-nav .nav-link{letter-spacing:0px}.header-v4{background-color:#fff}.header-v4 a.nav-link{color:#000}.header-mobile{background-color:#fff}.header-mobile .toggle-button-left{color:#000}.nav-mobile .main-nav,.nav-mobile .navi-login-register{background-color:#fff}.nav-mobile .main-nav .nav-item a{color:#000;border-bottom:1px solid #fff;background-color:#fff}.form-control::-webkit-input-placeholder{color:#a1a7a8}#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px}@media only screen and (max-width:768px){.back-to-top-wrap{right:10px;bottom:80px;display:none}#houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px}}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor .elementor-background-overlay{height:100%;width:100%;top:0;left:0;position:absolute}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order);align-self:var(--align-self)}.elementor-invisible{visibility:hidden}:root{--page-title-display:block}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-right:auto;margin-left:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-widget-wrap{position:relative;width:100%;flex-wrap:wrap;align-content:flex-start}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-bottom:20px}.elementor-column{position:relative;min-height:1px;display:flex}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}@media (min-width:768px){.elementor-column.elementor-col-20{width:20%}.elementor-column.elementor-col-25{width:25%}.elementor-column.elementor-col-100{width:100%}}@media (max-width:767px){.elementor-column{width:100%}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input{flex-basis:100%;max-width:100%}.elementor-field-group{flex-wrap:wrap;align-items:center}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{width:100%;max-width:100%;border:1px solid #69727d;background-color:transparent;color:#1f2124;vertical-align:middle;flex-grow:1}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;font-size:inherit;font-family:inherit;font-weight:inherit;font-style:inherit;text-transform:inherit;letter-spacing:inherit;line-height:inherit;flex-basis:100%;padding-right:20px}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;position:absolute;top:50%;transform:translateY(-50%);right:10px;text-shadow:0 0 3px rgba(0,0,0,.3)}.elementor-field-textual{line-height:1.4;font-size:15px;min-height:40px;padding:5px 14px;border-radius:3px}.elementor-field-textual.elementor-size-md{font-size:16px;min-height:47px;padding:6px 16px;border-radius:4px}.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}@media screen and (max-width:767px){.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}}.elementor-button{display:inline-block;line-height:1;background-color:#69727d;font-size:15px;padding:12px 24px;border-radius:3px;color:#fff;fill:#fff;text-align:center}.elementor-button:visited{color:#fff}.elementor-button.elementor-size-md{font-size:16px;padding:15px 30px;border-radius:4px}.elementor-element{--swiper-theme-color:#000;--swiper-navigation-size:44px;--swiper-pagination-bullet-size:6px;--swiper-pagination-bullet-horizontal-gap:6px}.elementor-kit-6{--e-global-color-primary:#6ec1e4;--e-global-color-secondary:#54595f;--e-global-color-text:#7a7a7a;--e-global-color-accent:#ce361a;--e-global-color-1aefe69:#3385d9;--e-global-color-59e125d:#2b6fb4;--e-global-typography-primary-font-family:"Raleway";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Raleway";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Raleway";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Raleway";--e-global-typography-accent-font-weight:500}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-widget:not(:last-child){margin-block-end:20px}.elementor-element{--widgets-spacing:20px 20px}@media (max-width:1024px){.elementor-section.elementor-section-boxed>.elementor-container{max-width:1024px}}@media (max-width:767px){.elementor-section.elementor-section-boxed>.elementor-container{max-width:767px}}.elementor-194 .elementor-element.elementor-element-c1d7965:not(.elementor-motion-effects-element-type-background){background-image:url("https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/houzez-header-1.jpg");background-repeat:no-repeat;background-size:cover}.elementor-194 .elementor-element.elementor-element-c1d7965>.elementor-background-overlay{background-color:#000;opacity:.35}.elementor-194 .elementor-element.elementor-element-a552e5c>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0}.elementor-194 .elementor-element.elementor-element-9cff6ff{--spacer-size:40px}.elementor-194 .elementor-element.elementor-element-9291a31{--spacer-size:50px}.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_subtitle{font-family:"Poppins",Sans-serif;font-size:25px;font-weight:400;margin-bottom:0}.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap{text-align:center;margin-bottom:0}.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap .houzez_section_subtitle{color:#fff}.elementor-194 .elementor-element.elementor-element-590db8a .houzez-spacer-inner{height:30px}.elementor-194 .elementor-element.elementor-element-d3b1356>.elementor-container{max-width:1000px}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group{padding-right:calc(10px/2);padding-left:calc(10px/2);margin-bottom:0}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-form-fields-wrapper{margin-left:calc(-10px/2);margin-right:calc(-10px/2);margin-bottom:0}body .elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-labels-above .elementor-field-group>label{padding-bottom:0}.elementor-194 .elementor-element.elementor-element-f0d3160 .houzez-ele-search-form-wrapper{background-color:#fff;padding:10px;border-radius:4px}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group:not(.elementor-field-type-upload) .elementor-field:not(.elementor-select-wrapper){background-color:#fff;border-color:#e9e9e9}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group .elementor-select-wrapper select{border-color:#e9e9e9}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group .elementor-select-wrapper:before{color:#e9e9e9}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-button{background-color:var(--e-global-color-1aefe69);color:#fff}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-tools .item-compare{display:none}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-tools .item-favorite{display:none}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-footer{display:none}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-author{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-tools .item-compare{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-tools .item-favorite{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-footer{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-author{display:none}@media (min-width:1025px){.elementor-194 .elementor-element.elementor-element-c1d7965:not(.elementor-motion-effects-element-type-background){background-attachment:fixed}}@media (max-width:1024px){.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap{margin-bottom:16px}}@media (max-width:767px){.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap{margin-bottom:16px}body .elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-labels-above .elementor-field-group>label{padding-bottom:10px}}.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="a9b9f403e8decdada690aa4b-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/css/cf0331b918bdcd2649ea3bb4aaeebfbd.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
3 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
4 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
5 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
6 + .container {
7 + max-width: 1210px;
8 + }
9 + }
10 + .label-color-87 {
11 + background-color: #31af00;
12 + }
13 +
14 + .status-color-28 {
15 + background-color: #dd9933;
16 + }
17 +
18 + .status-color-88 {
19 + background-color: #b7ba00;
20 + }
21 +
22 + .status-color-95 {
23 + background-color: #dd3333;
24 + }
25 +
26 + .status-color-94 {
27 + background-color: #1e73be;
28 + }
29 +
30 + .status-color-89 {
31 + background-color: #31af00;
32 + }
33 +
34 + body {
35 + font-family: Poppins;
36 + font-size: 16px;
37 + font-weight: 400;
38 + line-height: 24px;
39 + text-transform: none;
40 + }
41 + .main-nav,
42 + .dropdown-menu,
43 + .login-register,
44 + .btn.btn-create-listing,
45 + .logged-in-nav,
46 + .btn-phone-number {
47 + font-family: Poppins;
48 + font-size: 14px;
49 + font-weight: 400;
50 + text-align: left;
51 + text-transform: uppercase;
52 + }
53 +
54 + .btn,
55 + .form-control,
56 + .bootstrap-select .text,
57 + .sort-by-title,
58 + .woocommerce ul.products li.product .button {
59 + font-family: Poppins;
60 + font-size: 16px;
61 + }
62 +
63 + h1, h2, h3, h4, h5, h6, .item-title {
64 + font-family: Poppins;
65 + font-weight: 400;
66 + text-transform: capitalize;
67 + }
68 +
69 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
70 + font-weight: 400;
71 + text-transform: capitalize;
72 + text-align: inherit;
73 + }
74 +
75 + .top-bar-wrap {
76 + font-family: Poppins;
77 + font-size: 15px;
78 + font-weight: 300;
79 + line-height: 25px;
80 + text-align: left;
81 + text-transform: none;
82 + }
83 + .footer-wrap {
84 + font-family: Poppins;
85 + font-size: 14px;
86 + font-weight: 300;
87 + line-height: 25px;
88 + text-align: left;
89 + text-transform: none;
90 + }
91 +
92 + .header-v1 .header-inner-wrap,
93 + .header-v1 .navbar-logged-in-wrap {
94 + line-height: 60px;
95 + height: 60px;
96 + }
97 + .header-v2 .header-top .navbar {
98 + height: 110px;
99 + }
100 +
101 + .header-v2 .header-bottom .header-inner-wrap,
102 + .header-v2 .header-bottom .navbar-logged-in-wrap {
103 + line-height: 54px;
104 + height: 54px;
105 + }
106 +
107 + .header-v3 .header-top .header-inner-wrap,
108 + .header-v3 .header-top .header-contact-wrap {
109 + height: 80px;
110 + line-height: 80px;
111 + }
112 + .header-v3 .header-bottom .header-inner-wrap,
113 + .header-v3 .header-bottom .navbar-logged-in-wrap {
114 + line-height: 54px;
115 + height: 54px;
116 + }
117 + .header-v4 .header-inner-wrap,
118 + .header-v4 .navbar-logged-in-wrap {
119 + line-height: 90px;
120 + height: 90px;
121 + }
122 + .header-v5 .header-top .header-inner-wrap,
123 + .header-v5 .header-top .navbar-logged-in-wrap {
124 + line-height: 110px;
125 + height: 110px;
126 + }
127 + .header-v5 .header-bottom .header-inner-wrap {
128 + line-height: 54px;
129 + height: 54px;
130 + }
131 + .header-v6 .header-inner-wrap,
132 + .header-v6 .navbar-logged-in-wrap {
133 + height: 60px;
134 + line-height: 60px;
135 + }
136 + @media (min-width: 1200px) {
137 + .header-v5 .header-top .container {
138 + max-width: 1170px;
139 + }
140 + }
141 +
142 + body,
143 + .main-wrap,
144 + .fw-property-documents-wrap h3 span,
145 + .fw-property-details-wrap h3 span {
146 + background-color: #f7f7f7;
147 + }
148 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
149 + background-color: #ffffff;
150 + }
151 +
152 + body,
153 + .form-control,
154 + .bootstrap-select .text,
155 + .item-title a,
156 + .listing-tabs .nav-tabs .nav-link,
157 + .item-wrap-v2 .item-amenities li span,
158 + .item-wrap-v2 .item-amenities li:before,
159 + .item-parallax-wrap .item-price-wrap,
160 + .list-view .item-body .item-price-wrap,
161 + .property-slider-item .item-price-wrap,
162 + .page-title-wrap .item-price-wrap,
163 + .agent-information .agent-phone span a,
164 + .property-overview-wrap ul li strong,
165 + .mobile-property-title .item-price-wrap .item-price,
166 + .fw-property-features-left li a,
167 + .lightbox-content-wrap .item-price-wrap,
168 + .blog-post-item-v1 .blog-post-title h3 a,
169 + .blog-post-content-widget h4 a,
170 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
171 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
172 + .agent-list-wrap .agent-list-content h2 a,
173 + .agent-list-wrap .agent-list-contact li a,
174 + .agent-contacts-wrap li a,
175 + .menu-edit-property li a,
176 + .statistic-referrals-list li a,
177 + .chart-nav .nav-pills .nav-link,
178 + .dashboard-table-properties td .property-payment-status,
179 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
180 + .payment-method-block .radio-tab .control-text,
181 + .post-title-wrap h2 a,
182 + .lead-nav-tab.nav-pills .nav-link,
183 + .deals-nav-tab.nav-pills .nav-link,
184 + .btn-light-grey-outlined:hover,
185 + button:not(.bs-placeholder) .filter-option-inner-inner,
186 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
187 + .products > .product > .item-body > a,
188 + .woocommerce ul.products li.product .price,
189 + .woocommerce div.product p.price,
190 + .woocommerce div.product span.price,
191 + .woocommerce #reviews #comments ol.commentlist li .meta,
192 + .woocommerce-MyAccount-navigation ul li a,
193 + .activitiy-item-close-button a,
194 + .property-section-wrap li a {
195 + color: #222222;
196 + }
197 +
198 +
199 +
200 + a,
201 + a:hover,
202 + a:active,
203 + a:focus,
204 + .primary-text,
205 + .btn-clear,
206 + .btn-apply,
207 + .btn-primary-outlined,
208 + .btn-primary-outlined:before,
209 + .item-title a:hover,
210 + .sort-by .bootstrap-select .bs-placeholder,
211 + .sort-by .bootstrap-select > .btn,
212 + .sort-by .bootstrap-select > .btn:active,
213 + .page-link,
214 + .page-link:hover,
215 + .accordion-title:before,
216 + .blog-post-content-widget h4 a:hover,
217 + .agent-list-wrap .agent-list-content h2 a:hover,
218 + .agent-list-wrap .agent-list-contact li a:hover,
219 + .agent-contacts-wrap li a:hover,
220 + .agent-nav-wrap .nav-pills .nav-link,
221 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
222 + .menu-edit-property li a.active,
223 + .menu-edit-property li a:hover,
224 + .dashboard-statistic-block h3 .fa,
225 + .statistic-referrals-list li a:hover,
226 + .chart-nav .nav-pills .nav-link.active,
227 + .board-message-icon-wrap.active,
228 + .post-title-wrap h2 a:hover,
229 + .listing-switch-view .switch-btn.active,
230 + .item-wrap-v6 .item-price-wrap,
231 + .listing-v6 .list-view .item-body .item-price-wrap,
232 + .woocommerce nav.woocommerce-pagination ul li a,
233 + .woocommerce nav.woocommerce-pagination ul li span,
234 + .woocommerce-MyAccount-navigation ul li a:hover,
235 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
236 + .property-schedule-tour-form-wrap .control:hover,
237 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
238 + .login-register .btn-icon-login-register + .dropdown-menu a,
239 + .activitiy-item-close-button a:hover,
240 + .property-section-wrap li a:hover,
241 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
242 + color: #3385d9;
243 + }
244 +
245 + .agent-list-position a {
246 + color: #3385d9;
247 + }
248 +
249 + .control input:checked ~ .control__indicator,
250 + .top-banner-wrap .nav-pills .nav-link,
251 + .btn-primary-outlined:hover,
252 + .page-item.active .page-link,
253 + .slick-prev:hover,
254 + .slick-prev:focus,
255 + .slick-next:hover,
256 + .slick-next:focus,
257 + .mobile-property-tools .nav-pills .nav-link.active,
258 + .login-register-form .modal-header,
259 + .agent-nav-wrap .nav-pills .nav-link.active,
260 + .board-message-icon-wrap .notification-circle,
261 + .primary-label,
262 + .fc-event, .fc-event-dot,
263 + .compare-table .table-hover > tbody > tr:hover,
264 + .post-tag,
265 + .datepicker table tr td.active.active,
266 + .datepicker table tr td.active.disabled,
267 + .datepicker table tr td.active.disabled.active,
268 + .datepicker table tr td.active.disabled.disabled,
269 + .datepicker table tr td.active.disabled:active,
270 + .datepicker table tr td.active.disabled:hover,
271 + .datepicker table tr td.active.disabled:hover.active,
272 + .datepicker table tr td.active.disabled:hover.disabled,
273 + .datepicker table tr td.active.disabled:hover:active,
274 + .datepicker table tr td.active.disabled:hover:hover,
275 + .datepicker table tr td.active.disabled:hover[disabled],
276 + .datepicker table tr td.active.disabled[disabled],
277 + .datepicker table tr td.active:active,
278 + .datepicker table tr td.active:hover,
279 + .datepicker table tr td.active:hover.active,
280 + .datepicker table tr td.active:hover.disabled,
281 + .datepicker table tr td.active:hover:active,
282 + .datepicker table tr td.active:hover:hover,
283 + .datepicker table tr td.active:hover[disabled],
284 + .datepicker table tr td.active[disabled],
285 + .ui-slider-horizontal .ui-slider-range,
286 + .btn-bubble {
287 + background-color: #3385d9;
288 + }
289 +
290 + .control input:checked ~ .control__indicator,
291 + .btn-primary-outlined,
292 + .page-item.active .page-link,
293 + .mobile-property-tools .nav-pills .nav-link.active,
294 + .agent-nav-wrap .nav-pills .nav-link,
295 + .agent-nav-wrap .nav-pills .nav-link.active,
296 + .chart-nav .nav-pills .nav-link.active,
297 + .dashaboard-snake-nav .step-block.active,
298 + .fc-event,
299 + .fc-event-dot,
300 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
301 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
302 + border-color: #3385d9;
303 + }
304 +
305 + .slick-arrow:hover {
306 + background-color: rgba(43,111,180,1);
307 + }
308 +
309 + .slick-arrow {
310 + background-color: #3385d9;
311 + }
312 +
313 + .property-banner .nav-pills .nav-link.active {
314 + background-color: rgba(43,111,180,1) !important;
315 + }
316 +
317 + .property-navigation-wrap a.active {
318 + color: #3385d9;
319 + -webkit-box-shadow: inset 0 -3px #3385d9;
320 + box-shadow: inset 0 -3px #3385d9;
321 + }
322 +
323 + .btn-primary,
324 + .fc-button-primary,
325 + .woocommerce nav.woocommerce-pagination ul li a:focus,
326 + .woocommerce nav.woocommerce-pagination ul li a:hover,
327 + .woocommerce nav.woocommerce-pagination ul li span.current {
328 + color: #fff;
329 + background-color: #3385d9;
330 + border-color: #3385d9;
331 + }
332 + .btn-primary:focus, .btn-primary:focus:active,
333 + .fc-button-primary:focus,
334 + .fc-button-primary:focus:active {
335 + color: #fff;
336 + background-color: #3385d9;
337 + border-color: #3385d9;
338 + }
339 + .btn-primary:hover,
340 + .fc-button-primary:hover {
341 + color: #fff;
342 + background-color: #2b6fb4;
343 + border-color: #2b6fb4;
344 + }
345 + .btn-primary:active,
346 + .btn-primary:not(:disabled):not(:disabled):active,
347 + .fc-button-primary:active,
348 + .fc-button-primary:not(:disabled):not(:disabled):active {
349 + color: #fff;
350 + background-color: #2b6fb4;
351 + border-color: #2b6fb4;
352 + }
353 +
354 + .btn-secondary,
355 + .woocommerce span.onsale,
356 + .woocommerce ul.products li.product .button,
357 + .woocommerce #respond input#submit.alt,
358 + .woocommerce a.button.alt,
359 + .woocommerce button.button.alt,
360 + .woocommerce input.button.alt,
361 + .woocommerce #review_form #respond .form-submit input,
362 + .woocommerce #respond input#submit,
363 + .woocommerce a.button,
364 + .woocommerce button.button,
365 + .woocommerce input.button {
366 + color: #fff;
367 + background-color: #656565;
368 + border-color: #656565;
369 + }
370 + .woocommerce ul.products li.product .button:focus,
371 + .woocommerce ul.products li.product .button:active,
372 + .woocommerce #respond input#submit.alt:focus,
373 + .woocommerce a.button.alt:focus,
374 + .woocommerce button.button.alt:focus,
375 + .woocommerce input.button.alt:focus,
376 + .woocommerce #respond input#submit.alt:active,
377 + .woocommerce a.button.alt:active,
378 + .woocommerce button.button.alt:active,
379 + .woocommerce input.button.alt:active,
380 + .woocommerce #review_form #respond .form-submit input:focus,
381 + .woocommerce #review_form #respond .form-submit input:active,
382 + .woocommerce #respond input#submit:active,
383 + .woocommerce a.button:active,
384 + .woocommerce button.button:active,
385 + .woocommerce input.button:active,
386 + .woocommerce #respond input#submit:focus,
387 + .woocommerce a.button:focus,
388 + .woocommerce button.button:focus,
389 + .woocommerce input.button:focus {
390 + color: #fff;
391 + background-color: #656565;
392 + border-color: #656565;
393 + }
394 + .btn-secondary:hover,
395 + .woocommerce ul.products li.product .button:hover,
396 + .woocommerce #respond input#submit.alt:hover,
397 + .woocommerce a.button.alt:hover,
398 + .woocommerce button.button.alt:hover,
399 + .woocommerce input.button.alt:hover,
400 + .woocommerce #review_form #respond .form-submit input:hover,
401 + .woocommerce #respond input#submit:hover,
402 + .woocommerce a.button:hover,
403 + .woocommerce button.button:hover,
404 + .woocommerce input.button:hover {
405 + color: #fff;
406 + background-color: #333333;
407 + border-color: #333333;
408 + }
409 + .btn-secondary:active,
410 + .btn-secondary:not(:disabled):not(:disabled):active {
411 + color: #fff;
412 + background-color: #333333;
413 + border-color: #333333;
414 + }
415 +
416 + .btn-primary-outlined {
417 + color: #3385d9;
418 + background-color: transparent;
419 + border-color: #3385d9;
420 + }
421 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
422 + color: #3385d9;
423 + background-color: transparent;
424 + border-color: #3385d9;
425 + }
426 + .btn-primary-outlined:hover {
427 + color: #fff;
428 + background-color: #2b6fb4;
429 + border-color: #2b6fb4;
430 + }
431 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
432 + color: #3385d9;
433 + background-color: rgba(26, 26, 26, 0);
434 + border-color: #2b6fb4;
435 + }
436 +
437 + .btn-secondary-outlined {
438 + color: #656565;
439 + background-color: transparent;
440 + border-color: #656565;
441 + }
442 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
443 + color: #656565;
444 + background-color: transparent;
445 + border-color: #656565;
446 + }
447 + .btn-secondary-outlined:hover {
448 + color: #fff;
449 + background-color: #333333;
450 + border-color: #333333;
451 + }
452 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
453 + color: #656565;
454 + background-color: rgba(26, 26, 26, 0);
455 + border-color: #333333;
456 + }
457 +
458 + .btn-call {
459 + color: #656565;
460 + background-color: transparent;
461 + border-color: #656565;
462 + }
463 + .btn-call:focus, .btn-call:focus:active {
464 + color: #656565;
465 + background-color: transparent;
466 + border-color: #656565;
467 + }
468 + .btn-call:hover {
469 + color: #656565;
470 + background-color: rgba(26, 26, 26, 0);
471 + border-color: #333333;
472 + }
473 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
474 + color: #656565;
475 + background-color: rgba(26, 26, 26, 0);
476 + border-color: #333333;
477 + }
478 + .icon-delete .btn-loader:after{
479 + border-color: #3385d9 transparent #3385d9 transparent
480 + }
481 +
482 + .header-v1 {
483 + background-color: #004274;
484 + border-bottom: 1px solid #004274;
485 + }
486 +
487 + .header-v1 a.nav-link {
488 + color: #ffffff;
489 + }
490 +
491 + .header-v1 a.nav-link:hover,
492 + .header-v1 a.nav-link:active {
493 + color: #00aeff;
494 + background-color: rgba(255,255,255,0.2);
495 + }
496 + .header-desktop .main-nav .nav-link {
497 + letter-spacing: 0.0px;
498 + }
499 +
500 + .header-v2 .header-top,
501 + .header-v5 .header-top,
502 + .header-v2 .header-contact-wrap {
503 + background-color: #ffffff;
504 + }
505 +
506 + .header-v2 .header-bottom,
507 + .header-v5 .header-bottom {
508 + background-color: #004274;
509 + }
510 +
511 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
512 + color: #004274;
513 + }
514 +
515 + .header-v2 .header-contact-left {
516 + color: #004274;
517 + }
518 +
519 + .header-v2 .header-bottom,
520 + .header-v2 .navbar-nav > li,
521 + .header-v2 .navbar-nav > li:first-of-type,
522 + .header-v5 .header-bottom,
523 + .header-v5 .navbar-nav > li,
524 + .header-v5 .navbar-nav > li:first-of-type {
525 + border-color: rgba(255,255,255,0.2);
526 + }
527 +
528 + .header-v2 a.nav-link,
529 + .header-v5 a.nav-link {
530 + color: #ffffff;
531 + }
532 +
533 + .header-v2 a.nav-link:hover,
534 + .header-v2 a.nav-link:active,
535 + .header-v5 a.nav-link:hover,
536 + .header-v5 a.nav-link:active {
537 + color: #00aeff;
538 + background-color: rgba(255,255,255,0.2);
539 + }
540 +
541 + .header-v2 .header-contact-right a:hover,
542 + .header-v2 .header-contact-right a:active,
543 + .header-v3 .header-contact-right a:hover,
544 + .header-v3 .header-contact-right a:active {
545 + background-color: transparent;
546 + }
547 +
548 + .header-v2 .header-social-icons a,
549 + .header-v5 .header-social-icons a {
550 + color: #004274;
551 + }
552 +
553 + .header-v3 .header-top {
554 + background-color: #004274;
555 + }
556 +
557 + .header-v3 .header-bottom {
558 + background-color: #004272;
559 + }
560 +
561 + .header-v3 .header-contact,
562 + .header-v3-mobile {
563 + background-color: #00aeef;
564 + color: #ffffff;
565 + }
566 +
567 + .header-v3 .header-bottom,
568 + .header-v3 .login-register,
569 + .header-v3 .navbar-nav > li,
570 + .header-v3 .navbar-nav > li:first-of-type {
571 + border-color: ;
572 + }
573 +
574 + .header-v3 a.nav-link,
575 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
576 + color: #ffffff;
577 + }
578 +
579 + .header-v3 a.nav-link:hover,
580 + .header-v3 a.nav-link:active {
581 + color: #00aeff;
582 + background-color: rgba(255,255,255,0.2);
583 + }
584 +
585 + .header-v3 .header-social-icons a {
586 + color: #FFFFFF;
587 + }
588 +
589 + .header-v4 {
590 + background-color: #ffffff;
591 + }
592 +
593 + .header-v4 a.nav-link {
594 + color: #000000;
595 + }
596 +
597 + .header-v4 a.nav-link:hover,
598 + .header-v4 a.nav-link:active {
599 + color: #3385d9;
600 + background-color: rgba(255,255,255,0.2);
601 + }
602 +
603 + .header-v6 .header-top {
604 + background-color: #00AEEF;
605 + }
606 +
607 + .header-v6 a.nav-link {
608 + color: #FFFFFF;
609 + }
610 +
611 + .header-v6 a.nav-link:hover,
612 + .header-v6 a.nav-link:active {
613 + color: #00aeff;
614 + background-color: rgba(255,255,255,0.2);
615 + }
616 +
617 + .header-v6 .header-social-icons a {
618 + color: #FFFFFF;
619 + }
620 +
621 + .header-mobile {
622 + background-color: #ffffff;
623 + }
624 + .header-mobile .toggle-button-left,
625 + .header-mobile .toggle-button-right {
626 + color: #000000;
627 + }
628 +
629 + .nav-mobile .logged-in-nav a,
630 + .nav-mobile .main-nav,
631 + .nav-mobile .navi-login-register {
632 + background-color: #ffffff;
633 + }
634 +
635 + .nav-mobile .logged-in-nav a,
636 + .nav-mobile .main-nav .nav-item .nav-item a,
637 + .nav-mobile .main-nav .nav-item a,
638 + .navi-login-register .main-nav .nav-item a {
639 + color: #000000;
640 + border-bottom: 1px solid #ffffff;
641 + background-color: #ffffff;
642 + }
643 +
644 + .nav-mobile .btn-create-listing,
645 + .navi-login-register .btn-create-listing {
646 + color: #fff;
647 + border: 1px solid #3385d9;
648 + background-color: #3385d9;
649 + }
650 +
651 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
652 + .navi-login-register .btn-create-listing:hover,
653 + .navi-login-register .btn-create-listing:active {
654 + color: #fff;
655 + border: 1px solid #3385d9;
656 + background-color: rgba(0, 174, 255, 0.65);
657 + }
658 +
659 + .header-transparent-wrap .header-v4 {
660 + background-color: transparent;
661 + border-bottom: 1px none rgba(255,255,255,0.3);
662 + }
663 +
664 + .header-transparent-wrap .header-v4 a {
665 + color: #ffffff;
666 + }
667 +
668 + .header-transparent-wrap .header-v4 a:hover,
669 + .header-transparent-wrap .header-v4 a:active {
670 + color: #3385d9;
671 + background-color: rgba(255, 255, 255, 0.1);
672 + }
673 +
674 + .main-nav .navbar-nav .nav-item .dropdown-menu,
675 + .login-register .login-register-nav li .dropdown-menu {
676 + background-color: rgba(255,255,255,0.95);
677 + }
678 +
679 + .login-register .login-register-nav li .dropdown-menu:before {
680 + border-left-color: rgba(255,255,255,0.95);
681 + border-top-color: rgba(255,255,255,0.95);
682 + }
683 +
684 + .main-nav .navbar-nav .nav-item .nav-item a,
685 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
686 + color: #3385d9;
687 + border-bottom: 1px solid #e6e6e6;
688 + }
689 +
690 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
691 + .main-nav .navbar-nav .nav-item .nav-item a:active,
692 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
693 + color: #2b6fb4;
694 + }
695 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
696 + .main-nav .navbar-nav .nav-item .nav-item a:active,
697 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
698 + background-color: rgba(0, 174, 255, 0.1);
699 + }
700 +
701 + .header-main-wrap .btn-create-listing {
702 + color: #3385d9;
703 + border: 1px solid #3385d9;
704 + background-color: #ffffff;
705 + }
706 +
707 + .header-main-wrap .btn-create-listing:hover,
708 + .header-main-wrap .btn-create-listing:active {
709 + color: rgba(255,255,255,1);
710 + border: 1px solid #2b6fb4;
711 + background-color: rgba(43,111,180,1);
712 + }
713 +
714 + .header-transparent-wrap .header-v4 .btn-create-listing {
715 + color: #ffffff;
716 + border: 1px solid #ffffff;
717 + background-color: rgba(255,255,255,0.2);
718 + }
719 +
720 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
721 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
722 + color: rgba(255,255,255,1);
723 + border: 1px solid #3385d9;
724 + background-color: rgba(51,133,217,1);
725 + }
726 +
727 + .header-transparent-wrap .logged-in-nav a,
728 + .logged-in-nav a {
729 + color: #000000;
730 + border-color: #e6e6e6;
731 + background-color: #FFFFFF;
732 + }
733 +
734 + .header-transparent-wrap .logged-in-nav a:hover,
735 + .header-transparent-wrap .logged-in-nav a:active,
736 + .logged-in-nav a:hover,
737 + .logged-in-nav a:active {
738 + color: #000000;
739 + background-color: rgba(204,204,204,0.15);
740 + border-color: #e6e6e6;
741 + }
742 +
743 + .form-control::-webkit-input-placeholder,
744 + .search-banner-wrap ::-webkit-input-placeholder,
745 + .advanced-search ::-webkit-input-placeholder,
746 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
747 + .overlay-search-advanced-module ::-webkit-input-placeholder {
748 + color: #a1a7a8;
749 + }
750 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
751 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
752 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
753 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
754 + color: #a1a7a8;
755 + }
756 + .form-control::placeholder,
757 + .search-banner-wrap ::-webkit-input-placeholder,
758 + .advanced-search ::-webkit-input-placeholder,
759 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
760 + .overlay-search-advanced-module ::-webkit-input-placeholder {
761 + color: #a1a7a8;
762 + }
763 +
764 + .search-banner-wrap ::-moz-placeholder,
765 + .advanced-search ::-moz-placeholder,
766 + .advanced-search-banner-wrap ::-moz-placeholder,
767 + .overlay-search-advanced-module ::-moz-placeholder {
768 + color: #a1a7a8;
769 + }
770 +
771 + .search-banner-wrap :-ms-input-placeholder,
772 + .advanced-search :-ms-input-placeholder,
773 + .advanced-search-banner-wrap ::-ms-input-placeholder,
774 + .overlay-search-advanced-module ::-ms-input-placeholder {
775 + color: #a1a7a8;
776 + }
777 +
778 + .search-banner-wrap :-moz-placeholder,
779 + .advanced-search :-moz-placeholder,
780 + .advanced-search-banner-wrap :-moz-placeholder,
781 + .overlay-search-advanced-module :-moz-placeholder {
782 + color: #a1a7a8;
783 + }
784 +
785 + .advanced-search .form-control,
786 + .advanced-search .bootstrap-select > .btn,
787 + .location-trigger,
788 + .vertical-search-wrap .form-control,
789 + .vertical-search-wrap .bootstrap-select > .btn,
790 + .step-search-wrap .form-control,
791 + .step-search-wrap .bootstrap-select > .btn,
792 + .advanced-search-banner-wrap .form-control,
793 + .advanced-search-banner-wrap .bootstrap-select > .btn,
794 + .search-banner-wrap .form-control,
795 + .search-banner-wrap .bootstrap-select > .btn,
796 + .overlay-search-advanced-module .form-control,
797 + .overlay-search-advanced-module .bootstrap-select > .btn,
798 + .advanced-search-v2 .advanced-search-btn,
799 + .advanced-search-v2 .advanced-search-btn:hover {
800 + border-color: #cccccc;
801 + }
802 +
803 + .advanced-search-nav,
804 + .search-expandable,
805 + .overlay-search-advanced-module {
806 + background-color: #FFFFFF;
807 + }
808 + .btn-search {
809 + color: #ffffff;
810 + background-color: #3385d9;
811 + border-color: #3385d9;
812 + }
813 + .btn-search:hover, .btn-search:active {
814 + color: #ffffff;
815 + background-color: #2b6fb4;
816 + border-color: #2b6fb4;
817 + }
818 + .advanced-search-btn {
819 + color: #666666;
820 + background-color: #ffffff;
821 + border-color: #dce0e0;
822 + }
823 + .advanced-search-btn:hover, .advanced-search-btn:active {
824 + color: #000000;
825 + background-color: #ffffff;
826 + border-color: #dce0e0;
827 + }
828 + .advanced-search-btn:focus {
829 + color: #666666;
830 + background-color: #ffffff;
831 + border-color: #dce0e0;
832 + }
833 + .search-expandable-label {
834 + color: #ffffff;
835 + background-color: #ff6e00;
836 + }
837 + .advanced-search-nav {
838 + padding-top: 10px;
839 + padding-bottom: 10px;
840 + }
841 + .features-list-wrap .control--checkbox,
842 + .features-list-wrap .control--radio,
843 + .range-text,
844 + .features-list-wrap .control--checkbox,
845 + .features-list-wrap .btn-features-list,
846 + .overlay-search-advanced-module .search-title,
847 + .overlay-search-advanced-module .overlay-search-module-close {
848 + color: #222222;
849 + }
850 + .advanced-search-half-map {
851 + background-color: #FFFFFF;
852 + }
853 + .advanced-search-half-map .range-text,
854 + .advanced-search-half-map .features-list-wrap .control--checkbox,
855 + .advanced-search-half-map .features-list-wrap .btn-features-list {
856 + color: #222222;
857 + }
858 +
859 + .save-search-btn {
860 + border-color: #28a745 ;
861 + background-color: #28a745 ;
862 + color: #ffffff ;
863 + }
864 + .save-search-btn:hover,
865 + .save-search-btn:active {
866 + border-color: #28a745;
867 + background-color: #28a745 ;
868 + color: #ffffff ;
869 + }
870 + .label-featured {
871 + background-color: #e22424;
872 + color: #ffffff;
873 + }
874 +
875 + .dashboard-side-wrap {
876 + background-color: #00365e;
877 + }
878 +
879 + .side-menu a {
880 + color: #ffffff;
881 + }
882 +
883 + .side-menu a.active,
884 + .side-menu .side-menu-parent-selected > a,
885 + .side-menu-dropdown a,
886 + .side-menu a:hover {
887 + color: #3385d9;
888 + }
889 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
890 + color: #2b6fb4
891 + }
892 +
893 + .detail-wrap {
894 + background-color: rgba(119,199,32,0.1);
895 + border-color: #3385d9;
896 + }
897 + .top-bar-wrap,
898 + .top-bar-wrap .dropdown-menu,
899 + .switcher-wrap .dropdown-menu {
900 + background-color: #000000;
901 + }
902 + .top-bar-wrap a,
903 + .top-bar-contact,
904 + .top-bar-slogan,
905 + .top-bar-wrap .btn,
906 + .top-bar-wrap .dropdown-menu,
907 + .switcher-wrap .dropdown-menu,
908 + .top-bar-wrap .navbar-toggler {
909 + color: #ffffff;
910 + }
911 + .top-bar-wrap a:hover,
912 + .top-bar-wrap a:active,
913 + .top-bar-wrap .btn:hover,
914 + .top-bar-wrap .btn:active,
915 + .top-bar-wrap .dropdown-menu li:hover,
916 + .top-bar-wrap .dropdown-menu li:active,
917 + .switcher-wrap .dropdown-menu li:hover,
918 + .switcher-wrap .dropdown-menu li:active {
919 + color: rgba(43,111,180,1);
920 + }
921 + .class-energy-indicator:nth-child(1) {
922 + background-color: #33a357;
923 + }
924 + .class-energy-indicator:nth-child(2) {
925 + background-color: #79b752;
926 + }
927 + .class-energy-indicator:nth-child(3) {
928 + background-color: #c3d545;
929 + }
930 + .class-energy-indicator:nth-child(4) {
931 + background-color: #fff12c;
932 + }
933 + .class-energy-indicator:nth-child(5) {
934 + background-color: #edb731;
935 + }
936 + .class-energy-indicator:nth-child(6) {
937 + background-color: #d66f2c;
938 + }
939 + .class-energy-indicator:nth-child(7) {
940 + background-color: #cc232a;
941 + }
942 + .class-energy-indicator:nth-child(8) {
943 + background-color: #cc232a;
944 + }
945 + .class-energy-indicator:nth-child(9) {
946 + background-color: #cc232a;
947 + }
948 + .class-energy-indicator:nth-child(10) {
949 + background-color: #cc232a;
950 + }
951 +
952 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
953 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
954 +
955 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
956 +
957 + .footer-top-wrap {
958 + background-color: #000000;
959 + }
960 +
961 + .footer-bottom-wrap {
962 + background-color: #000000;
963 + }
964 +
965 + .footer-top-wrap,
966 + .footer-top-wrap a,
967 + .footer-bottom-wrap,
968 + .footer-bottom-wrap a,
969 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
970 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
971 + .footer-top-wrap .blog-post-content-widget h4 a,
972 + .footer-top-wrap .blog-post-content-widget,
973 + .footer-top-wrap .form-tools .control,
974 + .footer-top-wrap .slick-dots li.slick-active button:before,
975 + .footer-top-wrap .slick-dots li button::before,
976 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
977 + color: #ffffff;
978 + }
979 +
980 + .footer-top-wrap a:hover,
981 + .footer-bottom-wrap a:hover,
982 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
983 + color: rgba(43,111,180,1);
984 + }
985 + .houzez-osm-cluster {
986 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
987 + text-align: center;
988 + color: #fff;
989 + width: 48px;
990 + height: 48px;
991 + line-height: 48px;
992 + }
993 + .text-success{color:red!important;}
994 +
995 +/*.mobile-property-contact{bottom:40px;}*/
996 +
997 +/* Button retour en haut*/
998 +/*
999 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1000 +.mobile-property-contact .btn{margin-right: 60px;}
1001 +*/
1002 +
1003 +.item-tool.houzez-share{display:none;}
1004 +
1005 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1006 +
1007 +.grecaptcha-badge{display:none!important;}
1008 +
1009 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1010 +
1011 +
1012 +@media only screen and (max-width: 768px) {
1013 + /* For mobile phones: */
1014 +
1015 + /* Button retour en haut*/
1016 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1017 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1018 +}
1019 +/*# sourceURL=houzez-style-inline-css */</style><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1020 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1021 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/pages/194" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/page/4/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/page/4/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1022 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1023 + background-image: none !important;
1024 + }
1025 + @media screen and (max-height: 1024px) {
1026 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1027 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1028 + background-image: none !important;
1029 + }
1030 + }
1031 + @media screen and (max-height: 640px) {
1032 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1033 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1034 + background-image: none !important;
1035 + }
1036 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1037 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1038 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1039 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
1040 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
1041 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
1042 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
1043 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1044 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="home paged wp-singular page-template page-template-elementor_header_footer page page-id-194 wp-custom-logo paged-4 page-paged-4 wp-theme-houzez translatepress-fr_CA transparent-no houzez-header-elementor elementor-default elementor-template-full-width elementor-kit-6 elementor-page elementor-page-194"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-194 current_page_item "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1045 +<a href="https://agencedelocationsherbrooke.com/">
1046 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1047 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-194 current_page_item "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1048 +<button class="btn toggle-button-left">
1049 +<i class="houzez-icon icon-navigation-menu"></i>
1050 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1051 +<a href="https://agencedelocationsherbrooke.com/">
1052 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1053 +</a></div></div><div class="header-mobile-right"></div></div></header><div data-elementor-type="wp-post" data-elementor-id="194" class="elementor elementor-194"><section class="elementor-section elementor-top-section elementor-element elementor-element-c1d7965 elementor-section-height-full elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="c1d7965" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"><div class="elementor-background-overlay"></div><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a552e5c" data-id="a552e5c" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-9cff6ff elementor-widget elementor-widget-spacer" data-id="9cff6ff" data-element_type="widget" data-widget_type="spacer.default"><div class="elementor-widget-container"><div class="elementor-spacer"><div class="elementor-spacer-inner"></div></div></div></div><div class="elementor-element elementor-element-ac6cf9b animated-slow elementor-invisible elementor-widget elementor-widget-houzez_elementor_section_title" data-id="ac6cf9b" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_section_title.default"><div class="elementor-widget-container"><div class="houzez_section_title_wrap section-title-module"><p class="houzez_section_subtitle">Votre appartement idéal est plus proche que vous ne le pensez.</p></div></div></div><div class="elementor-element elementor-element-590db8a elementor-widget elementor-widget-houzez_elementor_space" data-id="590db8a" data-element_type="widget" data-widget_type="houzez_elementor_space.default"><div class="elementor-widget-container"><div class="houzez-spacer"><div class="houzez-spacer-inner"></div></div></div></div><section class="elementor-section elementor-inner-section elementor-element elementor-element-d3b1356 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d3b1356" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-196d994" data-id="196d994" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-f0d3160 animated-slow elementor-button-align-start elementor-mobile-button-align-stretch elementor-tablet-button-align-start elementor-invisible elementor-widget elementor-widget-houzez_elementor_search_builder" data-id="f0d3160" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_search_builder.default"><div class="elementor-widget-container"><form class="houzez-search-form-js houzez-search-builder-form-js" id="houzez-search-f0d3160" method="get" action="https://agencedelocationsherbrooke.com/search-results/" ><div class="houzez-ele-search-form-wrapper elementor-form-fields-wrapper elementor-labels-above"><div class="elementor-field-group elementor-column form-group elementor-field-group-4e8b111 elementor-col-25">
1054 +<label for="form-field-4e8b111" class="elementor-field-label">Taille</label><div class="elementor-field elementor-select-wrapper">
1055 +<select data-size="5" name="type[]" id="form-field-4e8b111" class="selectpicker bs-select-hidden houzez-field-textual form-control elementor-size-md " data-none-results-text="Aucun résultat {0}"><option value="">Toutes</option><option data-ref="2-demi" value="2-demi">2½</option><option data-ref="3-demi" value="3-demi">3½</option><option data-ref="4-demi" value="4-demi">4½</option><option data-ref="5-demi" value="5-demi">5½</option><option data-ref="6-demi" value="6-demi">6½</option><option data-ref="7-demi" value="7-demi">7½</option><option data-ref="chambre" value="chambre">Chambre</option><option data-ref="maison" value="maison">Maison</option><option data-ref="studio" value="studio">Studio</option> </select></div></div><div class="elementor-field-group elementor-column form-group elementor-field-group-field-cities elementor-col-25">
1056 +<label for="form-field-field-cities" class="elementor-field-label">Secteurs</label><div class="elementor-field elementor-select-wrapper">
1057 +<select data-size="5" name="status[]" id="form-field-field-cities" class="selectpicker bs-select-hidden houzez-field-textual form-control elementor-size-md status-js" data-none-results-text="Aucun résultat {0}"><option value="">Tous les secteurs</option><option data-ref="centre-ville" value="centre-ville">Centre-ville</option><option data-ref="deauville" value="deauville">Deauville</option><option data-ref="lennoxville" value="lennoxville">Lennoxville</option><option data-ref="magog" value="magog">Magog</option><option data-ref="mont-bellevue" value="mont-bellevue">Mont Bellevue</option><option data-ref="slug" value="slug">nom</option><option data-ref="secteur-carrefour" value="secteur-carrefour">Secteur Carrefour</option><option data-ref="secteur-cegep" value="secteur-cegep">Secteur Cégep</option><option data-ref="udes" value="udes">UdeS</option><option data-ref="vieux-nord" value="vieux-nord">Vieux Nord</option><option data-ref="waterville" value="waterville">Waterville</option> </select></div></div><div class="elementor-field-group elementor-column form-group elementor-field-group-ca36fd9 elementor-col-25">
1058 +<label for="form-field-ca36fd9" class="elementor-field-label">Prix maximum</label>
1059 +<input name="max-price" type="text" name="max-price" id="form-field-ca36fd9" class="elementor-field form-control elementor-size-md elementor-field-textual" placeholder="Aucun"></div><div class="elementor-field-group elementor-column elementor-field-type-submit elementor-col-20">
1060 +<button type="submit" class="btn houzez-search-button elementor-button elementor-size-md">
1061 +Rechercher </button></div></div></form></div></div></div></div></div></section></div></div></div></section><section class="elementor-section elementor-top-section elementor-element elementor-element-be1f8d7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="be1f8d7" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9c916fa" data-id="9c916fa" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-f8f317b animated-slow elementor-invisible elementor-widget elementor-widget-houzez_elementor_section_title" data-id="f8f317b" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_section_title.default"><div class="elementor-widget-container"><div class="houzez_section_title_wrap section-title-module"><h2 class="houzez_section_title">Annonces vedettes</h2></div></div></div><div class="elementor-element elementor-element-3592c58 elementor-widget elementor-widget-houzez_elementor_properties_carousel_v2n" data-id="3592c58" data-element_type="widget" data-widget_type="houzez_elementor_properties_carousel_v2n.default"><div class="elementor-widget-container"><div class="property-carousel-module houzez-carousel-arrows-vV9Eh houzez-carousel-cols-3 property-carousel-module-v2"><div class="property-carousel-buttons-wrap"></div><div class="listing-view grid-view"><div id="houzez-properties-carousel-vV9Eh" data-token="vV9Eh" class="houzez-properties-carousel-js houzez-all-slider-wrap card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10348" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212351.339-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212351.339-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212349.984-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212347.095-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212348.768-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212345.986-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212344.540-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212337.705-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212336.472-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212335.379-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212334.447-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/05\/image-2026-05-14T212355.006-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1062 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1063 +Mont Bellevue
1064 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1065 +Libre maintenant
1066 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,095$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1067 +<span class="hz-show-lightbox-js" data-listid="10348" data-toggle="tooltip" data-placement="top" title="Aperçu">
1068 +<i class="houzez-icon icon-expand-3"></i>
1069 +</span></li><li class="item-tool item-favorite">
1070 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10348">
1071 +<i class="houzez-icon icon-love-it "></i>
1072 +</span></li><li class="item-tool item-compare">
1073 +<span class="houzez_compare compare-10348 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10348" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/05/image-2026-05-14T212351.339-592x444.jpeg">
1074 +<i class="houzez-icon icon-add-circle"></i>
1075 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1076 +<a href="https://agencedelocationsherbrooke.com/property/952-mcmanamy-2/" class="listing-featured-thumb hover-effect">
1077 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" fetchpriority="high" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/05/image-2026-05-14T212351.339-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/05/image-2026-05-14T212351.339-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/05/image-2026-05-14T212351.339-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/05/image-2026-05-14T212351.339-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1078 +Mont Bellevue
1079 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1080 +Libre maintenant
1081 +</a></div><h2 class="item-title">
1082 +<a href="https://agencedelocationsherbrooke.com/property/952-mcmanamy-2/">952 Mcmanamy</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,095$/mensuel</li></ul> <address class="item-address">952, Rue McManamy, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3V3, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">2 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1083 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1084 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1085 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1086 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10441" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172208.173-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172208.173-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172205.304-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172206.752-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172201.386-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172200.165-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172158.943-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172157.717-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172156.344-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172150.833-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172149.596-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172146.882-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172145.889-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1087 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1088 +Mont Bellevue
1089 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1090 +Libre maintenant
1091 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">990$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1092 +<span class="hz-show-lightbox-js" data-listid="10441" data-toggle="tooltip" data-placement="top" title="Aperçu">
1093 +<i class="houzez-icon icon-expand-3"></i>
1094 +</span></li><li class="item-tool item-favorite">
1095 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10441">
1096 +<i class="houzez-icon icon-love-it "></i>
1097 +</span></li><li class="item-tool item-compare">
1098 +<span class="houzez_compare compare-10441 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10441" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-592x444.jpeg">
1099 +<i class="houzez-icon icon-add-circle"></i>
1100 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1101 +<a href="https://agencedelocationsherbrooke.com/property/826-short/" class="listing-featured-thumb hover-effect">
1102 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1103 +Mont Bellevue
1104 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1105 +Libre maintenant
1106 +</a></div><h2 class="item-title">
1107 +<a href="https://agencedelocationsherbrooke.com/property/826-short/">826 Short</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">990$/mensuel</li></ul> <address class="item-address">826, Rue Short, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4C4, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">3 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1108 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1109 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1110 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1111 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10451" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172902.091-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172902.091-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172900.846-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172859.886-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172858.813-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172855.820-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172852.674-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172854.696-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172853.719-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1112 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1113 +Mont Bellevue
1114 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1115 +Libre maintenant
1116 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">795$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1117 +<span class="hz-show-lightbox-js" data-listid="10451" data-toggle="tooltip" data-placement="top" title="Aperçu">
1118 +<i class="houzez-icon icon-expand-3"></i>
1119 +</span></li><li class="item-tool item-favorite">
1120 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10451">
1121 +<i class="houzez-icon icon-love-it "></i>
1122 +</span></li><li class="item-tool item-compare">
1123 +<span class="houzez_compare compare-10451 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10451" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg">
1124 +<i class="houzez-icon icon-add-circle"></i>
1125 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1126 +<a href="https://agencedelocationsherbrooke.com/property/905-courcelette/" class="listing-featured-thumb hover-effect">
1127 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1128 +Mont Bellevue
1129 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1130 +Libre maintenant
1131 +</a></div><h2 class="item-title">
1132 +<a href="https://agencedelocationsherbrooke.com/property/905-courcelette/">905 Courcelette</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">795$/mensuel</li></ul> <address class="item-address">Rue de Courcelette, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3V3, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">1 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambre</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1133 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1134 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1135 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1136 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></div></div></section><section class="elementor-section elementor-top-section elementor-element elementor-element-03673dc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="03673dc" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a57f655" data-id="a57f655" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-2292302 animated-slow elementor-invisible elementor-widget elementor-widget-houzez_elementor_section_title" data-id="2292302" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_section_title.default"><div class="elementor-widget-container"><div class="houzez_section_title_wrap section-title-module"><h2 class="houzez_section_title">Derniers ajouts</h2></div></div></div></div></div></div></section><section class="elementor-section elementor-top-section elementor-element elementor-element-ecf4ba6 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ecf4ba6" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5c676a3" data-id="5c676a3" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-1856cb4 elementor-widget elementor-widget-houzez_elementor_properties_carousel_v2n" data-id="1856cb4" data-element_type="widget" data-widget_type="houzez_elementor_properties_carousel_v2n.default"><div class="elementor-widget-container"><div class="property-carousel-module houzez-carousel-arrows-3Qrpu houzez-carousel-cols-3 property-carousel-module-v2"><div class="property-carousel-buttons-wrap"></div><div class="listing-view grid-view"><div id="houzez-properties-carousel-3Qrpu" data-token="3Qrpu" class="houzez-properties-carousel-js houzez-all-slider-wrap card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10529" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164646.541-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164646.541-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-22-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-21-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-20-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-19-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-18-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-17-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-16-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-15-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/udes/" class="label-status label status-color-89">
1137 +UdeS
1138 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1139 +Octobre
1140 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,095$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1141 +<span class="hz-show-lightbox-js" data-listid="10529" data-toggle="tooltip" data-placement="top" title="Aperçu">
1142 +<i class="houzez-icon icon-expand-3"></i>
1143 +</span></li><li class="item-tool item-favorite">
1144 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10529">
1145 +<i class="houzez-icon icon-love-it "></i>
1146 +</span></li><li class="item-tool item-compare">
1147 +<span class="houzez_compare compare-10529 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10529" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-592x444.jpeg">
1148 +<i class="houzez-icon icon-add-circle"></i>
1149 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1150 +<a href="https://agencedelocationsherbrooke.com/property/1595-lalemant-401/" class="listing-featured-thumb hover-effect">
1151 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/udes/" class="label-status label status-color-89">
1152 +UdeS
1153 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1154 +Octobre
1155 +</a></div><h2 class="item-title">
1156 +<a href="https://agencedelocationsherbrooke.com/property/1595-lalemant-401/">1595 lalemant #401</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,095$/mensuel</li></ul> <address class="item-address">1595, Rue Lalemant, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3C1, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">3 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1157 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1158 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1159 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1160 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10415" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001946.848-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001946.848-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001945.367-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001954.834-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001956.323-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001953.285-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001942.733-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001943.698-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001957.550-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1161 +Centre-ville
1162 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1163 +Octobre
1164 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,195$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1165 +<span class="hz-show-lightbox-js" data-listid="10415" data-toggle="tooltip" data-placement="top" title="Aperçu">
1166 +<i class="houzez-icon icon-expand-3"></i>
1167 +</span></li><li class="item-tool item-favorite">
1168 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10415">
1169 +<i class="houzez-icon icon-love-it "></i>
1170 +</span></li><li class="item-tool item-compare">
1171 +<span class="houzez_compare compare-10415 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10415" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-592x444.jpeg">
1172 +<i class="houzez-icon icon-add-circle"></i>
1173 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1174 +<a href="https://agencedelocationsherbrooke.com/property/368-fusiliers/" class="listing-featured-thumb hover-effect">
1175 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1176 +Centre-ville
1177 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1178 +Octobre
1179 +</a></div><h2 class="item-title">
1180 +<a href="https://agencedelocationsherbrooke.com/property/368-fusiliers/">368 Fusiliers</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,195$/mensuel</li></ul> <address class="item-address">368, Rue des Fusiliers, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4J5, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">3 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1181 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1182 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1183 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1184 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10323" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214604.302-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214604.302-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214605.767-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214602.971-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214601.360-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214607.172-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214600.168-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214558.776-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214552.707-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214551.309-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214549.891-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214548.735-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1185 +Juillet
1186 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1187 +<span class="hz-show-lightbox-js" data-listid="10323" data-toggle="tooltip" data-placement="top" title="Aperçu">
1188 +<i class="houzez-icon icon-expand-3"></i>
1189 +</span></li><li class="item-tool item-favorite">
1190 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10323">
1191 +<i class="houzez-icon icon-love-it "></i>
1192 +</span></li><li class="item-tool item-compare">
1193 +<span class="houzez_compare compare-10323 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10323" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-592x444.jpeg">
1194 +<i class="houzez-icon icon-add-circle"></i>
1195 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1196 +<a href="https://agencedelocationsherbrooke.com/property/94-garneau-3/" class="listing-featured-thumb hover-effect">
1197 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1198 +Juillet
1199 +</a></div><h2 class="item-title">
1200 +<a href="https://agencedelocationsherbrooke.com/property/94-garneau-3/">94 Garneau #3</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul> <address class="item-address">94, Rue Garneau, East Angus, Le Haut-Saint-François, Québec, J0B 1R0, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">2 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1201 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1202 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1203 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1204 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></div></div></section></div></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1205 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1206 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1207 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1208 +<i class="houzez-icon icon-arrow-up-1"></i>
1209 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1210 +<button class="compare-property-label" style="display: none;">
1211 +<span class="compare-count compare-label"></span>
1212 +<i class="houzez-icon icon-move-left-right"></i>
1213 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1214 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1215 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1216 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1217 +<span aria-hidden="true">&times;</span>
1218 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1219 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1220 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1221 +<label class="control control--checkbox flex-grow-1">
1222 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1223 +</label>
1224 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/page/4/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1225 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com?login=success">
1226 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1227 +<span class="btn-loader houzez-loader-js"></span> Connexion
1228 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1229 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1230 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1231 +<span aria-hidden="true">&times;</span>
1232 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1233 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1234 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/page/4/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1235 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1236 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="a9b9f403e8decdada690aa4b-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1237 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"","search_position":"under_banner","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="houzez_prop_caoursel-js-extra" type="litespeed/javascript">var houzez_prop_caoursel_vV9Eh={"slide_auto":"true","auto_speed":"4000","navigation":"false","slide_dots":"true","slide_infinite":"true","slides_to_show":"3","slides_to_scroll":"1"};var houzez_prop_caoursel_3Qrpu={"slide_auto":"true","auto_speed":"4000","navigation":"false","slide_dots":"true","slide_infinite":"true","slides_to_show":"3","slides_to_scroll":"1"}</script> <script id="elementor-frontend-js-before" type="litespeed/javascript">var elementorFrontendConfig={"environmentMode":{"edit":!1,"wpPreview":!1,"isScriptDebug":!1},"i18n":{"shareOnFacebook":"Partager sur Facebook","shareOnTwitter":"Partager sur Twitter","pinIt":"Pin it","download":"Download","downloadImage":"T\u00e9l\u00e9charger une image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Lire la vid\u00e9o","previous":"Pr\u00e9c\u00e9dent","next":"Suivant","close":"Fermer","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":!1,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":!0},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":!1},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":!0},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":!1},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":!1},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":!1}},"hasCustomBreakpoints":!1},"version":"3.26.3","is_static":!1,"experimentalFeatures":{"additional_custom_breakpoints":!0,"e_swiper_latest":!0,"e_nested_atomic_repeaters":!0,"e_onboarding":!0,"e_css_smooth_scroll":!0,"home_screen":!0,"landing-pages":!0,"nested-elements":!0,"editor_v2":!0,"link-in-bio":!0,"floating-buttons":!0},"urls":{"assets":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/agencedelocationsherbrooke.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"504a61ef51"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":194,"title":"Appartement%20%C3%A0%20louer%20-%20Agence%20de%20location%20Sherbrooke%20-%20Page%204","excerpt":"","featuredImage":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png"}}</script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1238 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="a9b9f403e8decdada690aa4b-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="a9b9f403e8decdada690aa4b-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="a9b9f403e8decdada690aa4b-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/a0ae847744a881ec0110ff42519e99fa.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="a9b9f403e8decdada690aa4b-|49" defer></script></body></html>
1239 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:31:05 -->
1240 +
1241 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:31:05 -->
1242 +<!-- Guest Mode -->
1243 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/658d338601fe97eb9916d12bd99818de.css -->
1244 +<!-- QUIC.cloud UCSS in queue -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/5e6748f851e801ee5f03.html +1236 −0
@@ -0,0 +1,1236 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="165a276607388830d2140c61-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>Appartement à louer - Agence de location Sherbrooke</title><style>.houzez-library-modal-btn {margin-left: 5px;background: #35AAE1;vertical-align: top;font-size: 0 !important;}.houzez-library-modal-btn:before {content: '';width: 16px;height: 16px;background-image: url('https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/favicon.png');background-position: center;background-size: contain;background-repeat: no-repeat;}#houzez-library-modal .houzez-elementor-template-library-template-name {text-align: right;flex: 1 0 0%;}</style><meta name="description" content="Que vous soyez étudiants à l&#039;UdeS ou un travailleur à la recherche d&#039;un appartement à louer à Sherbrooke. Nous vous offrons une tonne d&#039;options pour tous les budgets et toutes les durées de séjour." /><meta name="robots" content="max-image-preview:large" /><link rel="canonical" href="https://agencedelocationsherbrooke.com/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="website" /><meta property="og:title" content="Appartement à louer - Agence de location Sherbrooke" /><meta property="og:description" content="Que vous soyez étudiants à l&#039;UdeS ou un travailleur à la recherche d&#039;un appartement à louer à Sherbrooke. Nous vous offrons une tonne d&#039;options pour tous les budgets et toutes les durées de séjour." /><meta property="og:url" content="https://agencedelocationsherbrooke.com/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta property="og:image:width" content="254" /><meta property="og:image:height" content="64" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="Appartement à louer - Agence de location Sherbrooke" /><meta name="twitter:description" content="Que vous soyez étudiants à l&#039;UdeS ou un travailleur à la recherche d&#039;un appartement à louer à Sherbrooke. Nous vous offrons une tonne d&#039;options pour tous les budgets et toutes les durées de séjour." /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home"}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Appartement \u00e0 louer - Agence de location Sherbrooke","description":"Que vous soyez \u00e9tudiants \u00e0 l'UdeS ou un travailleur \u00e0 la recherche d'un appartement \u00e0 louer \u00e0 Sherbrooke. Nous vous offrons une tonne d'options pour tous les budgets et toutes les dur\u00e9es de s\u00e9jour.","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#breadcrumblist"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/#mainImage","width":254,"height":64},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#mainImage"},"datePublished":"2016-02-15T23:00:39+00:00","dateModified":"2025-03-17T20:47:33+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2F&#038;format=xml" /><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
2 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}header,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}h5{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}ul{margin-top:0;margin-bottom:1rem}strong{font-weight:bolder}a{color:#007bff;text-decoration:none;background-color:transparent}img{vertical-align:middle;border-style:none}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button,input,select{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox]{box-sizing:border-box;padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}template{display:none}h5{margin-bottom:.5rem;font-weight:500;line-height:1.2}h5{font-size:1.25rem}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-group{margin-bottom:1rem}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-block{display:block;width:100%}.fade:not(.show){opacity:0}.dropdown{position:relative}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.tab-content>.tab-pane{display:none}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}button.close{padding:0;background-color:transparent;border:0}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem}.modal.fade .modal-dialog{-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered:before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered:before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}}.clearfix:after{display:block;clear:both;content:""}.d-flex{display:-ms-flexbox!important;display:flex!important}.flex-grow-1{-ms-flex-positive:1!important;flex-grow:1!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.mr-1{margin-right:.25rem!important}.mb-2{margin-bottom:.5rem!important}select.bs-select-hidden,select.selectpicker{display:none!important}.houzez-icon{font-family:houzez-iconfont!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-add-circle:before{content:"\e901"}.icon-arrow-up-1:before{content:"\e913"}.icon-love-it:before{content:"\e928"}.icon-move-left-right:before{content:"\e92c"}.icon-navigation-menu:before{content:"\e92d"}.icon-single-neutral:before{content:"\e93a"}.control{display:block;position:relative;padding-left:30px;margin-bottom:15px;font-size:18px}.control input{position:absolute;z-index:-1;opacity:0}.control__indicator{position:absolute;top:2px;left:0;height:20px;width:20px;background:#e6e6e6}.control__indicator:after{content:'';position:absolute;display:none}.control.control--checkbox{line-height:22px}.control--checkbox .control__indicator:after{left:8px;top:4px;width:3px;height:8px;border:solid #fff;border-width:0 2px 2px 0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.grid-view .item-footer,.nav-mobile .main-nav .nav-item,.btn-full-width{width:100%}.login-form-wrap .form-group-field,.login-register-form .modal-header .close span,.nav-mobile .main-nav .nav-item a,.main-nav .nav-item,.header-mobile,.header-main-wrap,.logo img,.header-inner-wrap,.btn-loader{position:relative}.login-form-wrap .form-group-field:after,.compare-property-label .compare-label,.compare-property-label,.grid-view .labels-wrap,.item-price-wrap{position:absolute}.property-lightbox .modal,.compare-property-label .compare-label,.nav-mobile .main-nav .nav-item a{display:block}.login-form-wrap .form-group-field:after,.item-tool>span,.item-tool,label{display:inline-block}.item-author a{display:inline}.grid-view .item-body .item-author,.grid-view .item-body .labels-wrap,.grid-view .item-body .item-price-wrap,.btn-loader{display:none}.control__indicator{background-color:transparent}.item-footer,.control__indicator{background-color:#fff}.property-lightbox .modal-content{border:none}.login-register-tabs .nav-link{border-radius:0}.label{border-radius:2px}.login-form-wrap,.item-tool>span{border-radius:4px}.login-register-form .modal-header .close,.item-price-wrap,.login-register-nav{margin:0}.form-tools{margin-top:20px}.login-form-wrap .form-group,.form-tools .control{margin-bottom:0}.form-tools{margin-bottom:20px}.login-register-form .modal-header,.item-price-wrap,.login-register-nav,.navbar{padding:0}.item-author{float:left}.control__indicator{top:0}.grid-view .labels-wrap{z-index:1}.item-price-wrap,.nav-mobile .main-nav .nav-item a,.main-nav .nav-item{z-index:2}.item-price-wrap{list-style:none}.grid-view .item-footer .item-author{white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.login-register-tabs .nav-link{font-weight:500}strong,label{font-weight:600}.item-author,.item-author a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-column-gap:5px;-moz-column-gap:5px;column-gap:5px}.control{display:block;position:relative;padding-left:30px;margin-bottom:15px;font-size:18px}.control input{position:absolute;z-index:-1;opacity:0}.control__indicator{position:absolute;top:2px;left:0;height:20px;width:20px;background:#fff}.control__indicator:after{content:"";position:absolute;display:none}.control.control--checkbox{line-height:22px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.control--checkbox .control__indicator:after{left:8px;top:4px;width:3px;height:8px;border:solid #fff;border-width:0 2px 2px 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.btn-loader{top:2px;width:16px;height:16px;margin-right:15px}.btn-loader:after{content:" ";display:block;width:16px;height:16px;margin:1px;border-radius:50%;border:2px solid #fff;border-color:#fff transparent;-webkit-animation:btn-loader 1.2s linear infinite;animation:btn-loader 1.2s linear infinite}@-webkit-keyframes btn-loader{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes btn-loader{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}[type=password]{direction:ltr;text-align:left}label{padding-bottom:10px;margin-bottom:0}.label{font-size:10px;line-height:11px;font-weight:500;margin:0;text-transform:uppercase;padding:3px 5px;color:#fff;background-color:rgba(0,0,0,.65)}.btn{padding:0 15px;font-weight:500;line-height:40px;white-space:nowrap}.btn-grey-outlined{border-radius:4px!important;background-color:transparent;border-color:#cdd1d4;color:#5c6872}.form-control{height:42px}.form-control{font-weight:400;border:1px solid;border-color:#dce0e0}.control{color:#a1a7a8;min-height:24px;font-size:14px;font-weight:500;line-height:24px}.control__indicator{border:1px solid #dce0e0;border-radius:2px}.control--checkbox .control__indicator:after{left:6px;top:2px;width:6px;height:10px}input[type=checkbox]{margin:6px 0 0}@media (min-width:768px){.container{max-width:750px}}@media (min-width:992px){.container{max-width:970px}}@media (min-width:1200px){.container{max-width:1170px}}@media (max-width:991.98px){.header-desktop{display:none}}.logo{margin-right:20px}.logo img{top:-3px}.login-register{white-space:nowrap}.header-main-wrap{z-index:4}.header-mobile{text-align:center;height:60px;padding:0 10px}@media (min-width:992px){.header-mobile{display:none!important}}.header-mobile .logo{margin:0 auto}.header-mobile .toggle-button-left{background-color:transparent;font-size:20px}.header-mobile-right{min-width:56px}.main-nav .navbar-nav{padding-right:15px;-webkit-padding-start:0;padding-inline-start:0}.main-nav .nav-link{padding-top:0;padding-bottom:0}@media (min-width:1200px){.main-nav .nav-link{padding-right:15px!important;padding-left:15px!important}}.on-hover-menu{background:0 0;margin:0;padding:0;min-height:20px}@media only screen and (min-width:991px){.on-hover-menu ul li{position:relative}}@media (max-width:991.98px){.slideout-menu{position:fixed;left:0;top:0;bottom:0;right:0;z-index:0;width:256px;overflow-y:scroll;-webkit-overflow-scrolling:touch;display:none;margin-bottom:71px}}@media (max-width:991.98px){.slideout-menu-left{left:0}}@media (max-width:991.98px){.slideout-menu-right{right:0;left:auto}}@media (min-width:992px){.nav-mobile{display:none}}.nav-mobile .main-nav .navbar-nav{padding-right:0}.nav-mobile .main-nav .nav-item{display:block}.nav-mobile .main-nav .nav-item a{border-bottom:1px solid;padding:15px}.item-footer{padding:15px 24px;border-top:1px solid #dce0e0}.item-price-wrap{bottom:20px;left:20px;color:#fff;font-weight:600}.item-price-wrap .item-price{font-size:18px}.item-tool>span{width:30px;height:30px;line-height:30px;font-size:14px;text-align:center}.item-tool>span{color:#fff;border:1px solid transparent;background-color:rgba(0,0,0,.35)}.item-author,.item-author a{color:#636363;font-size:12px}.item-author i{margin-right:5px}.grid-view .labels-wrap{top:17px;right:20px}.grid-view .item-footer{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.grid-view .item-footer .item-author{max-width:50%}.item-wrap-v2 .item-footer{border-top:none}.labels-right a{margin-left:3px}.compare-property-panel{background-color:#fff;position:fixed;padding-top:20px;padding-right:15px;padding-bottom:20px;padding-left:20px;border-left:1px solid #dce0e0}.compare-property-panel-vertical{width:300px;height:100%;top:0;z-index:100}.compare-property-panel-right{right:-300px}.compare-property-label{background-color:#636363;width:40px;height:40px;line-height:40px;top:50%;left:-40px;text-align:center;color:#fff;border-top-left-radius:4px;border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border:none}.compare-property-label .compare-label{background-color:#85c341;font-size:11px;font-weight:700;width:16px;height:16px;line-height:16px;border-radius:50%;top:-5px;left:-5px}.property-lightbox .modal{visibility:hidden}.property-lightbox .modal-dialog{max-width:100%;width:1170px;overflow:hidden}@media (max-width:1199.98px){.property-lightbox .modal-dialog{max-width:100%;width:972px}}@media (max-width:991.98px){.property-lightbox .modal-dialog{max-width:100%;width:760px}}@media (max-width:767.98px){.property-lightbox .modal-dialog{width:100%;height:100%;margin:0}}@media (max-width:767.98px){.property-lightbox .modal-content{height:100%;border-radius:0;background-color:#2d2d2d}}.back-to-top-wrap{position:fixed;left:auto;right:30px;bottom:30px;z-index:99}@media (max-width:767.98px){.back-to-top-wrap{right:15px;bottom:15px}}.back-to-top-wrap .btn-back-to-top{display:none;width:42px;height:42px;line-height:42px;padding:0}.modal .modal-title{font-size:18px}div#login-register-form{z-index:9999}.login-register-form .modal-content{border:none}.login-register-form .modal-dialog{max-width:430px}.login-register-form .modal-header{overflow:hidden;border:none;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.login-register-form .modal-header .close{padding:15px 20px;color:#fff;opacity:1;text-shadow:none;border-left:1px solid rgba(255,255,255,.2)}.login-register-form .modal-header .close span{top:-2px}.login-register-form .modal-header .login-register-tabs .nav-link,.login-register-form .modal-header .login-register-tabs .nav-tabs{border:none}.login-register-form .modal-header .login-register-tabs .nav-link{border-right:1px solid;border-color:rgba(255,255,255,.2);padding:15px 30px;color:#fff}.login-register-form .modal-body{padding:30px}.form-tools .control{color:#636363}.form-tools a{min-height:24px;font-size:14px;font-weight:500}.login-form-wrap{background-color:#fff;border:1px solid #dce0e0}.login-form-wrap .form-group-field:after{font-family:"houzez-iconfont";color:#636363;top:10px;left:18px}.login-form-wrap .form-group-field input{padding-left:42px;border:none}.login-form-wrap .form-group{border-bottom:1px solid #dce0e0}.login-form-wrap .form-group:last-of-type{border-bottom:none}.login-form-wrap .username-field:after{content:""}.login-form-wrap .password-field:after{content:""}.houzez-field-textual{line-height:1.4;font-size:15px;min-height:40px;border-radius:3px}.houzez-field-textual.elementor-size-md{font-size:16px;min-height:47px;border-radius:4px}.close{margin-left:auto}.modal{z-index:1080}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-webkit-input-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-moz-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual:-ms-input-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-ms-input-placeholder{opacity:1}.elementor-form-fields-wrapper .elementor-field-group .elementor-field-textual::-webkit-input-placeholder{opacity:1}.btn,body{font-size:15px;font-family:Roboto,sans-serif}a{color:#00aeff}.login-register-form .modal-header{background-color:#00aeff}.btn-primary{color:#fff;background-color:#00aeff;border-color:#00aeff}.header-v4 .header-inner-wrap{line-height:90px;height:90px}.main-wrap,body{background-color:#f8f8f8}.control--checkbox,.form-control,body{color:#222}.header-v4,.nav-mobile .main-nav,.nav-mobile .navi-login-register{background-color:#fff}.header-mobile{background-color:#004274}.header-mobile .toggle-button-left{color:#fff}.header-v4 a{color:#004274}.nav-mobile .main-nav .nav-item a{color:#004274;border-color:#dce0e0;background-color:#fff}.form-control::-webkit-input-placeholder{color:#a1a7a8}body{line-height:25px;font-weight:300;text-transform:none}.btn{font-weight:500}.form-control{font-family:Roboto,sans-serif;font-size:15px;font-weight:400}label,strong{font-weight:600}.login-register,.main-nav{font-family:Roboto,sans-serif;font-size:14px;font-weight:500;text-transform:none}h5{font-family:Roboto,sans-serif;font-weight:500;text-transform:inherit}.back-to-top-wrap .btn-back-to-top{display:none}.btn-loader:after{border:2px solid #333;border-color:#333 transparent}@media (min-width:1200px){.container{max-width:1210px}}.label-color-87{background-color:#31af00}.status-color-28{background-color:#d93}.status-color-88{background-color:#b7ba00}.status-color-95{background-color:#d33}.status-color-89{background-color:#31af00}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}.main-nav,.login-register{font-family:Poppins;font-size:14px;font-weight:400;text-align:left;text-transform:uppercase}.btn,.form-control{font-family:Poppins;font-size:16px}h5{font-family:Poppins;font-weight:400;text-transform:capitalize}.header-v4 .header-inner-wrap{line-height:90px;height:90px}body,.main-wrap{background-color:#f7f7f7}body,.form-control{color:#222}a{color:#3385d9}.login-register-form .modal-header{background-color:#3385d9}.btn-primary{color:#fff;background-color:#3385d9;border-color:#3385d9}.header-desktop .main-nav .nav-link{letter-spacing:0px}.header-v4{background-color:#fff}.header-v4 a.nav-link{color:#000}.header-mobile{background-color:#fff}.header-mobile .toggle-button-left{color:#000}.nav-mobile .main-nav,.nav-mobile .navi-login-register{background-color:#fff}.nav-mobile .main-nav .nav-item a{color:#000;border-bottom:1px solid #fff;background-color:#fff}.form-control::-webkit-input-placeholder{color:#a1a7a8}#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px}@media only screen and (max-width:768px){.back-to-top-wrap{right:10px;bottom:80px;display:none}#houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px}}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor .elementor-background-overlay{height:100%;width:100%;top:0;left:0;position:absolute}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order);align-self:var(--align-self)}.elementor-invisible{visibility:hidden}:root{--page-title-display:block}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-right:auto;margin-left:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-widget-wrap{position:relative;width:100%;flex-wrap:wrap;align-content:flex-start}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-bottom:20px}.elementor-column{position:relative;min-height:1px;display:flex}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}@media (min-width:768px){.elementor-column.elementor-col-20{width:20%}.elementor-column.elementor-col-25{width:25%}.elementor-column.elementor-col-100{width:100%}}@media (max-width:767px){.elementor-column{width:100%}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input{flex-basis:100%;max-width:100%}.elementor-field-group{flex-wrap:wrap;align-items:center}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{width:100%;max-width:100%;border:1px solid #69727d;background-color:transparent;color:#1f2124;vertical-align:middle;flex-grow:1}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;font-size:inherit;font-family:inherit;font-weight:inherit;font-style:inherit;text-transform:inherit;letter-spacing:inherit;line-height:inherit;flex-basis:100%;padding-right:20px}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;position:absolute;top:50%;transform:translateY(-50%);right:10px;text-shadow:0 0 3px rgba(0,0,0,.3)}.elementor-field-textual{line-height:1.4;font-size:15px;min-height:40px;padding:5px 14px;border-radius:3px}.elementor-field-textual.elementor-size-md{font-size:16px;min-height:47px;padding:6px 16px;border-radius:4px}.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}@media screen and (max-width:767px){.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}}.elementor-button{display:inline-block;line-height:1;background-color:#69727d;font-size:15px;padding:12px 24px;border-radius:3px;color:#fff;fill:#fff;text-align:center}.elementor-button:visited{color:#fff}.elementor-button.elementor-size-md{font-size:16px;padding:15px 30px;border-radius:4px}.elementor-element{--swiper-theme-color:#000;--swiper-navigation-size:44px;--swiper-pagination-bullet-size:6px;--swiper-pagination-bullet-horizontal-gap:6px}.elementor-kit-6{--e-global-color-primary:#6ec1e4;--e-global-color-secondary:#54595f;--e-global-color-text:#7a7a7a;--e-global-color-accent:#ce361a;--e-global-color-1aefe69:#3385d9;--e-global-color-59e125d:#2b6fb4;--e-global-typography-primary-font-family:"Raleway";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Raleway";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Raleway";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Raleway";--e-global-typography-accent-font-weight:500}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-widget:not(:last-child){margin-block-end:20px}.elementor-element{--widgets-spacing:20px 20px}@media (max-width:1024px){.elementor-section.elementor-section-boxed>.elementor-container{max-width:1024px}}@media (max-width:767px){.elementor-section.elementor-section-boxed>.elementor-container{max-width:767px}}.elementor-194 .elementor-element.elementor-element-c1d7965:not(.elementor-motion-effects-element-type-background){background-image:url("https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/houzez-header-1.jpg");background-repeat:no-repeat;background-size:cover}.elementor-194 .elementor-element.elementor-element-c1d7965>.elementor-background-overlay{background-color:#000;opacity:.35}.elementor-194 .elementor-element.elementor-element-a552e5c>.elementor-widget-wrap>.elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0}.elementor-194 .elementor-element.elementor-element-9cff6ff{--spacer-size:40px}.elementor-194 .elementor-element.elementor-element-9291a31{--spacer-size:50px}.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_subtitle{font-family:"Poppins",Sans-serif;font-size:25px;font-weight:400;margin-bottom:0}.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap{text-align:center;margin-bottom:0}.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap .houzez_section_subtitle{color:#fff}.elementor-194 .elementor-element.elementor-element-590db8a .houzez-spacer-inner{height:30px}.elementor-194 .elementor-element.elementor-element-d3b1356>.elementor-container{max-width:1000px}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group{padding-right:calc(10px/2);padding-left:calc(10px/2);margin-bottom:0}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-form-fields-wrapper{margin-left:calc(-10px/2);margin-right:calc(-10px/2);margin-bottom:0}body .elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-labels-above .elementor-field-group>label{padding-bottom:0}.elementor-194 .elementor-element.elementor-element-f0d3160 .houzez-ele-search-form-wrapper{background-color:#fff;padding:10px;border-radius:4px}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group:not(.elementor-field-type-upload) .elementor-field:not(.elementor-select-wrapper){background-color:#fff;border-color:#e9e9e9}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group .elementor-select-wrapper select{border-color:#e9e9e9}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-field-group .elementor-select-wrapper:before{color:#e9e9e9}.elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-button{background-color:var(--e-global-color-1aefe69);color:#fff}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-tools .item-compare{display:none}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-tools .item-favorite{display:none}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-footer{display:none}.elementor-194 .elementor-element.elementor-element-3592c58 .property-carousel-module .item-author{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-tools .item-compare{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-tools .item-favorite{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-footer{display:none}.elementor-194 .elementor-element.elementor-element-1856cb4 .property-carousel-module .item-author{display:none}@media (min-width:1025px){.elementor-194 .elementor-element.elementor-element-c1d7965:not(.elementor-motion-effects-element-type-background){background-attachment:fixed}}@media (max-width:1024px){.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap{margin-bottom:16px}}@media (max-width:767px){.elementor-194 .elementor-element.elementor-element-ac6cf9b .houzez_section_title_wrap{margin-bottom:16px}body .elementor-194 .elementor-element.elementor-element-f0d3160 .elementor-labels-above .elementor-field-group>label{padding-bottom:10px}}.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="165a276607388830d2140c61-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/ucss/a6c4fdc898c928d9e5c5fbf7aca08c8d.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
3 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
4 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
5 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
6 + .container {
7 + max-width: 1210px;
8 + }
9 + }
10 + .label-color-87 {
11 + background-color: #31af00;
12 + }
13 +
14 + .status-color-28 {
15 + background-color: #dd9933;
16 + }
17 +
18 + .status-color-88 {
19 + background-color: #b7ba00;
20 + }
21 +
22 + .status-color-95 {
23 + background-color: #dd3333;
24 + }
25 +
26 + .status-color-94 {
27 + background-color: #1e73be;
28 + }
29 +
30 + .status-color-89 {
31 + background-color: #31af00;
32 + }
33 +
34 + body {
35 + font-family: Poppins;
36 + font-size: 16px;
37 + font-weight: 400;
38 + line-height: 24px;
39 + text-transform: none;
40 + }
41 + .main-nav,
42 + .dropdown-menu,
43 + .login-register,
44 + .btn.btn-create-listing,
45 + .logged-in-nav,
46 + .btn-phone-number {
47 + font-family: Poppins;
48 + font-size: 14px;
49 + font-weight: 400;
50 + text-align: left;
51 + text-transform: uppercase;
52 + }
53 +
54 + .btn,
55 + .form-control,
56 + .bootstrap-select .text,
57 + .sort-by-title,
58 + .woocommerce ul.products li.product .button {
59 + font-family: Poppins;
60 + font-size: 16px;
61 + }
62 +
63 + h1, h2, h3, h4, h5, h6, .item-title {
64 + font-family: Poppins;
65 + font-weight: 400;
66 + text-transform: capitalize;
67 + }
68 +
69 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
70 + font-weight: 400;
71 + text-transform: capitalize;
72 + text-align: inherit;
73 + }
74 +
75 + .top-bar-wrap {
76 + font-family: Poppins;
77 + font-size: 15px;
78 + font-weight: 300;
79 + line-height: 25px;
80 + text-align: left;
81 + text-transform: none;
82 + }
83 + .footer-wrap {
84 + font-family: Poppins;
85 + font-size: 14px;
86 + font-weight: 300;
87 + line-height: 25px;
88 + text-align: left;
89 + text-transform: none;
90 + }
91 +
92 + .header-v1 .header-inner-wrap,
93 + .header-v1 .navbar-logged-in-wrap {
94 + line-height: 60px;
95 + height: 60px;
96 + }
97 + .header-v2 .header-top .navbar {
98 + height: 110px;
99 + }
100 +
101 + .header-v2 .header-bottom .header-inner-wrap,
102 + .header-v2 .header-bottom .navbar-logged-in-wrap {
103 + line-height: 54px;
104 + height: 54px;
105 + }
106 +
107 + .header-v3 .header-top .header-inner-wrap,
108 + .header-v3 .header-top .header-contact-wrap {
109 + height: 80px;
110 + line-height: 80px;
111 + }
112 + .header-v3 .header-bottom .header-inner-wrap,
113 + .header-v3 .header-bottom .navbar-logged-in-wrap {
114 + line-height: 54px;
115 + height: 54px;
116 + }
117 + .header-v4 .header-inner-wrap,
118 + .header-v4 .navbar-logged-in-wrap {
119 + line-height: 90px;
120 + height: 90px;
121 + }
122 + .header-v5 .header-top .header-inner-wrap,
123 + .header-v5 .header-top .navbar-logged-in-wrap {
124 + line-height: 110px;
125 + height: 110px;
126 + }
127 + .header-v5 .header-bottom .header-inner-wrap {
128 + line-height: 54px;
129 + height: 54px;
130 + }
131 + .header-v6 .header-inner-wrap,
132 + .header-v6 .navbar-logged-in-wrap {
133 + height: 60px;
134 + line-height: 60px;
135 + }
136 + @media (min-width: 1200px) {
137 + .header-v5 .header-top .container {
138 + max-width: 1170px;
139 + }
140 + }
141 +
142 + body,
143 + .main-wrap,
144 + .fw-property-documents-wrap h3 span,
145 + .fw-property-details-wrap h3 span {
146 + background-color: #f7f7f7;
147 + }
148 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
149 + background-color: #ffffff;
150 + }
151 +
152 + body,
153 + .form-control,
154 + .bootstrap-select .text,
155 + .item-title a,
156 + .listing-tabs .nav-tabs .nav-link,
157 + .item-wrap-v2 .item-amenities li span,
158 + .item-wrap-v2 .item-amenities li:before,
159 + .item-parallax-wrap .item-price-wrap,
160 + .list-view .item-body .item-price-wrap,
161 + .property-slider-item .item-price-wrap,
162 + .page-title-wrap .item-price-wrap,
163 + .agent-information .agent-phone span a,
164 + .property-overview-wrap ul li strong,
165 + .mobile-property-title .item-price-wrap .item-price,
166 + .fw-property-features-left li a,
167 + .lightbox-content-wrap .item-price-wrap,
168 + .blog-post-item-v1 .blog-post-title h3 a,
169 + .blog-post-content-widget h4 a,
170 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
171 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
172 + .agent-list-wrap .agent-list-content h2 a,
173 + .agent-list-wrap .agent-list-contact li a,
174 + .agent-contacts-wrap li a,
175 + .menu-edit-property li a,
176 + .statistic-referrals-list li a,
177 + .chart-nav .nav-pills .nav-link,
178 + .dashboard-table-properties td .property-payment-status,
179 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
180 + .payment-method-block .radio-tab .control-text,
181 + .post-title-wrap h2 a,
182 + .lead-nav-tab.nav-pills .nav-link,
183 + .deals-nav-tab.nav-pills .nav-link,
184 + .btn-light-grey-outlined:hover,
185 + button:not(.bs-placeholder) .filter-option-inner-inner,
186 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
187 + .products > .product > .item-body > a,
188 + .woocommerce ul.products li.product .price,
189 + .woocommerce div.product p.price,
190 + .woocommerce div.product span.price,
191 + .woocommerce #reviews #comments ol.commentlist li .meta,
192 + .woocommerce-MyAccount-navigation ul li a,
193 + .activitiy-item-close-button a,
194 + .property-section-wrap li a {
195 + color: #222222;
196 + }
197 +
198 +
199 +
200 + a,
201 + a:hover,
202 + a:active,
203 + a:focus,
204 + .primary-text,
205 + .btn-clear,
206 + .btn-apply,
207 + .btn-primary-outlined,
208 + .btn-primary-outlined:before,
209 + .item-title a:hover,
210 + .sort-by .bootstrap-select .bs-placeholder,
211 + .sort-by .bootstrap-select > .btn,
212 + .sort-by .bootstrap-select > .btn:active,
213 + .page-link,
214 + .page-link:hover,
215 + .accordion-title:before,
216 + .blog-post-content-widget h4 a:hover,
217 + .agent-list-wrap .agent-list-content h2 a:hover,
218 + .agent-list-wrap .agent-list-contact li a:hover,
219 + .agent-contacts-wrap li a:hover,
220 + .agent-nav-wrap .nav-pills .nav-link,
221 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
222 + .menu-edit-property li a.active,
223 + .menu-edit-property li a:hover,
224 + .dashboard-statistic-block h3 .fa,
225 + .statistic-referrals-list li a:hover,
226 + .chart-nav .nav-pills .nav-link.active,
227 + .board-message-icon-wrap.active,
228 + .post-title-wrap h2 a:hover,
229 + .listing-switch-view .switch-btn.active,
230 + .item-wrap-v6 .item-price-wrap,
231 + .listing-v6 .list-view .item-body .item-price-wrap,
232 + .woocommerce nav.woocommerce-pagination ul li a,
233 + .woocommerce nav.woocommerce-pagination ul li span,
234 + .woocommerce-MyAccount-navigation ul li a:hover,
235 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
236 + .property-schedule-tour-form-wrap .control:hover,
237 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
238 + .login-register .btn-icon-login-register + .dropdown-menu a,
239 + .activitiy-item-close-button a:hover,
240 + .property-section-wrap li a:hover,
241 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
242 + color: #3385d9;
243 + }
244 +
245 + .agent-list-position a {
246 + color: #3385d9;
247 + }
248 +
249 + .control input:checked ~ .control__indicator,
250 + .top-banner-wrap .nav-pills .nav-link,
251 + .btn-primary-outlined:hover,
252 + .page-item.active .page-link,
253 + .slick-prev:hover,
254 + .slick-prev:focus,
255 + .slick-next:hover,
256 + .slick-next:focus,
257 + .mobile-property-tools .nav-pills .nav-link.active,
258 + .login-register-form .modal-header,
259 + .agent-nav-wrap .nav-pills .nav-link.active,
260 + .board-message-icon-wrap .notification-circle,
261 + .primary-label,
262 + .fc-event, .fc-event-dot,
263 + .compare-table .table-hover > tbody > tr:hover,
264 + .post-tag,
265 + .datepicker table tr td.active.active,
266 + .datepicker table tr td.active.disabled,
267 + .datepicker table tr td.active.disabled.active,
268 + .datepicker table tr td.active.disabled.disabled,
269 + .datepicker table tr td.active.disabled:active,
270 + .datepicker table tr td.active.disabled:hover,
271 + .datepicker table tr td.active.disabled:hover.active,
272 + .datepicker table tr td.active.disabled:hover.disabled,
273 + .datepicker table tr td.active.disabled:hover:active,
274 + .datepicker table tr td.active.disabled:hover:hover,
275 + .datepicker table tr td.active.disabled:hover[disabled],
276 + .datepicker table tr td.active.disabled[disabled],
277 + .datepicker table tr td.active:active,
278 + .datepicker table tr td.active:hover,
279 + .datepicker table tr td.active:hover.active,
280 + .datepicker table tr td.active:hover.disabled,
281 + .datepicker table tr td.active:hover:active,
282 + .datepicker table tr td.active:hover:hover,
283 + .datepicker table tr td.active:hover[disabled],
284 + .datepicker table tr td.active[disabled],
285 + .ui-slider-horizontal .ui-slider-range,
286 + .btn-bubble {
287 + background-color: #3385d9;
288 + }
289 +
290 + .control input:checked ~ .control__indicator,
291 + .btn-primary-outlined,
292 + .page-item.active .page-link,
293 + .mobile-property-tools .nav-pills .nav-link.active,
294 + .agent-nav-wrap .nav-pills .nav-link,
295 + .agent-nav-wrap .nav-pills .nav-link.active,
296 + .chart-nav .nav-pills .nav-link.active,
297 + .dashaboard-snake-nav .step-block.active,
298 + .fc-event,
299 + .fc-event-dot,
300 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
301 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
302 + border-color: #3385d9;
303 + }
304 +
305 + .slick-arrow:hover {
306 + background-color: rgba(43,111,180,1);
307 + }
308 +
309 + .slick-arrow {
310 + background-color: #3385d9;
311 + }
312 +
313 + .property-banner .nav-pills .nav-link.active {
314 + background-color: rgba(43,111,180,1) !important;
315 + }
316 +
317 + .property-navigation-wrap a.active {
318 + color: #3385d9;
319 + -webkit-box-shadow: inset 0 -3px #3385d9;
320 + box-shadow: inset 0 -3px #3385d9;
321 + }
322 +
323 + .btn-primary,
324 + .fc-button-primary,
325 + .woocommerce nav.woocommerce-pagination ul li a:focus,
326 + .woocommerce nav.woocommerce-pagination ul li a:hover,
327 + .woocommerce nav.woocommerce-pagination ul li span.current {
328 + color: #fff;
329 + background-color: #3385d9;
330 + border-color: #3385d9;
331 + }
332 + .btn-primary:focus, .btn-primary:focus:active,
333 + .fc-button-primary:focus,
334 + .fc-button-primary:focus:active {
335 + color: #fff;
336 + background-color: #3385d9;
337 + border-color: #3385d9;
338 + }
339 + .btn-primary:hover,
340 + .fc-button-primary:hover {
341 + color: #fff;
342 + background-color: #2b6fb4;
343 + border-color: #2b6fb4;
344 + }
345 + .btn-primary:active,
346 + .btn-primary:not(:disabled):not(:disabled):active,
347 + .fc-button-primary:active,
348 + .fc-button-primary:not(:disabled):not(:disabled):active {
349 + color: #fff;
350 + background-color: #2b6fb4;
351 + border-color: #2b6fb4;
352 + }
353 +
354 + .btn-secondary,
355 + .woocommerce span.onsale,
356 + .woocommerce ul.products li.product .button,
357 + .woocommerce #respond input#submit.alt,
358 + .woocommerce a.button.alt,
359 + .woocommerce button.button.alt,
360 + .woocommerce input.button.alt,
361 + .woocommerce #review_form #respond .form-submit input,
362 + .woocommerce #respond input#submit,
363 + .woocommerce a.button,
364 + .woocommerce button.button,
365 + .woocommerce input.button {
366 + color: #fff;
367 + background-color: #656565;
368 + border-color: #656565;
369 + }
370 + .woocommerce ul.products li.product .button:focus,
371 + .woocommerce ul.products li.product .button:active,
372 + .woocommerce #respond input#submit.alt:focus,
373 + .woocommerce a.button.alt:focus,
374 + .woocommerce button.button.alt:focus,
375 + .woocommerce input.button.alt:focus,
376 + .woocommerce #respond input#submit.alt:active,
377 + .woocommerce a.button.alt:active,
378 + .woocommerce button.button.alt:active,
379 + .woocommerce input.button.alt:active,
380 + .woocommerce #review_form #respond .form-submit input:focus,
381 + .woocommerce #review_form #respond .form-submit input:active,
382 + .woocommerce #respond input#submit:active,
383 + .woocommerce a.button:active,
384 + .woocommerce button.button:active,
385 + .woocommerce input.button:active,
386 + .woocommerce #respond input#submit:focus,
387 + .woocommerce a.button:focus,
388 + .woocommerce button.button:focus,
389 + .woocommerce input.button:focus {
390 + color: #fff;
391 + background-color: #656565;
392 + border-color: #656565;
393 + }
394 + .btn-secondary:hover,
395 + .woocommerce ul.products li.product .button:hover,
396 + .woocommerce #respond input#submit.alt:hover,
397 + .woocommerce a.button.alt:hover,
398 + .woocommerce button.button.alt:hover,
399 + .woocommerce input.button.alt:hover,
400 + .woocommerce #review_form #respond .form-submit input:hover,
401 + .woocommerce #respond input#submit:hover,
402 + .woocommerce a.button:hover,
403 + .woocommerce button.button:hover,
404 + .woocommerce input.button:hover {
405 + color: #fff;
406 + background-color: #333333;
407 + border-color: #333333;
408 + }
409 + .btn-secondary:active,
410 + .btn-secondary:not(:disabled):not(:disabled):active {
411 + color: #fff;
412 + background-color: #333333;
413 + border-color: #333333;
414 + }
415 +
416 + .btn-primary-outlined {
417 + color: #3385d9;
418 + background-color: transparent;
419 + border-color: #3385d9;
420 + }
421 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
422 + color: #3385d9;
423 + background-color: transparent;
424 + border-color: #3385d9;
425 + }
426 + .btn-primary-outlined:hover {
427 + color: #fff;
428 + background-color: #2b6fb4;
429 + border-color: #2b6fb4;
430 + }
431 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
432 + color: #3385d9;
433 + background-color: rgba(26, 26, 26, 0);
434 + border-color: #2b6fb4;
435 + }
436 +
437 + .btn-secondary-outlined {
438 + color: #656565;
439 + background-color: transparent;
440 + border-color: #656565;
441 + }
442 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
443 + color: #656565;
444 + background-color: transparent;
445 + border-color: #656565;
446 + }
447 + .btn-secondary-outlined:hover {
448 + color: #fff;
449 + background-color: #333333;
450 + border-color: #333333;
451 + }
452 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
453 + color: #656565;
454 + background-color: rgba(26, 26, 26, 0);
455 + border-color: #333333;
456 + }
457 +
458 + .btn-call {
459 + color: #656565;
460 + background-color: transparent;
461 + border-color: #656565;
462 + }
463 + .btn-call:focus, .btn-call:focus:active {
464 + color: #656565;
465 + background-color: transparent;
466 + border-color: #656565;
467 + }
468 + .btn-call:hover {
469 + color: #656565;
470 + background-color: rgba(26, 26, 26, 0);
471 + border-color: #333333;
472 + }
473 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
474 + color: #656565;
475 + background-color: rgba(26, 26, 26, 0);
476 + border-color: #333333;
477 + }
478 + .icon-delete .btn-loader:after{
479 + border-color: #3385d9 transparent #3385d9 transparent
480 + }
481 +
482 + .header-v1 {
483 + background-color: #004274;
484 + border-bottom: 1px solid #004274;
485 + }
486 +
487 + .header-v1 a.nav-link {
488 + color: #ffffff;
489 + }
490 +
491 + .header-v1 a.nav-link:hover,
492 + .header-v1 a.nav-link:active {
493 + color: #00aeff;
494 + background-color: rgba(255,255,255,0.2);
495 + }
496 + .header-desktop .main-nav .nav-link {
497 + letter-spacing: 0.0px;
498 + }
499 +
500 + .header-v2 .header-top,
501 + .header-v5 .header-top,
502 + .header-v2 .header-contact-wrap {
503 + background-color: #ffffff;
504 + }
505 +
506 + .header-v2 .header-bottom,
507 + .header-v5 .header-bottom {
508 + background-color: #004274;
509 + }
510 +
511 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
512 + color: #004274;
513 + }
514 +
515 + .header-v2 .header-contact-left {
516 + color: #004274;
517 + }
518 +
519 + .header-v2 .header-bottom,
520 + .header-v2 .navbar-nav > li,
521 + .header-v2 .navbar-nav > li:first-of-type,
522 + .header-v5 .header-bottom,
523 + .header-v5 .navbar-nav > li,
524 + .header-v5 .navbar-nav > li:first-of-type {
525 + border-color: rgba(255,255,255,0.2);
526 + }
527 +
528 + .header-v2 a.nav-link,
529 + .header-v5 a.nav-link {
530 + color: #ffffff;
531 + }
532 +
533 + .header-v2 a.nav-link:hover,
534 + .header-v2 a.nav-link:active,
535 + .header-v5 a.nav-link:hover,
536 + .header-v5 a.nav-link:active {
537 + color: #00aeff;
538 + background-color: rgba(255,255,255,0.2);
539 + }
540 +
541 + .header-v2 .header-contact-right a:hover,
542 + .header-v2 .header-contact-right a:active,
543 + .header-v3 .header-contact-right a:hover,
544 + .header-v3 .header-contact-right a:active {
545 + background-color: transparent;
546 + }
547 +
548 + .header-v2 .header-social-icons a,
549 + .header-v5 .header-social-icons a {
550 + color: #004274;
551 + }
552 +
553 + .header-v3 .header-top {
554 + background-color: #004274;
555 + }
556 +
557 + .header-v3 .header-bottom {
558 + background-color: #004272;
559 + }
560 +
561 + .header-v3 .header-contact,
562 + .header-v3-mobile {
563 + background-color: #00aeef;
564 + color: #ffffff;
565 + }
566 +
567 + .header-v3 .header-bottom,
568 + .header-v3 .login-register,
569 + .header-v3 .navbar-nav > li,
570 + .header-v3 .navbar-nav > li:first-of-type {
571 + border-color: ;
572 + }
573 +
574 + .header-v3 a.nav-link,
575 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
576 + color: #ffffff;
577 + }
578 +
579 + .header-v3 a.nav-link:hover,
580 + .header-v3 a.nav-link:active {
581 + color: #00aeff;
582 + background-color: rgba(255,255,255,0.2);
583 + }
584 +
585 + .header-v3 .header-social-icons a {
586 + color: #FFFFFF;
587 + }
588 +
589 + .header-v4 {
590 + background-color: #ffffff;
591 + }
592 +
593 + .header-v4 a.nav-link {
594 + color: #000000;
595 + }
596 +
597 + .header-v4 a.nav-link:hover,
598 + .header-v4 a.nav-link:active {
599 + color: #3385d9;
600 + background-color: rgba(255,255,255,0.2);
601 + }
602 +
603 + .header-v6 .header-top {
604 + background-color: #00AEEF;
605 + }
606 +
607 + .header-v6 a.nav-link {
608 + color: #FFFFFF;
609 + }
610 +
611 + .header-v6 a.nav-link:hover,
612 + .header-v6 a.nav-link:active {
613 + color: #00aeff;
614 + background-color: rgba(255,255,255,0.2);
615 + }
616 +
617 + .header-v6 .header-social-icons a {
618 + color: #FFFFFF;
619 + }
620 +
621 + .header-mobile {
622 + background-color: #ffffff;
623 + }
624 + .header-mobile .toggle-button-left,
625 + .header-mobile .toggle-button-right {
626 + color: #000000;
627 + }
628 +
629 + .nav-mobile .logged-in-nav a,
630 + .nav-mobile .main-nav,
631 + .nav-mobile .navi-login-register {
632 + background-color: #ffffff;
633 + }
634 +
635 + .nav-mobile .logged-in-nav a,
636 + .nav-mobile .main-nav .nav-item .nav-item a,
637 + .nav-mobile .main-nav .nav-item a,
638 + .navi-login-register .main-nav .nav-item a {
639 + color: #000000;
640 + border-bottom: 1px solid #ffffff;
641 + background-color: #ffffff;
642 + }
643 +
644 + .nav-mobile .btn-create-listing,
645 + .navi-login-register .btn-create-listing {
646 + color: #fff;
647 + border: 1px solid #3385d9;
648 + background-color: #3385d9;
649 + }
650 +
651 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
652 + .navi-login-register .btn-create-listing:hover,
653 + .navi-login-register .btn-create-listing:active {
654 + color: #fff;
655 + border: 1px solid #3385d9;
656 + background-color: rgba(0, 174, 255, 0.65);
657 + }
658 +
659 + .header-transparent-wrap .header-v4 {
660 + background-color: transparent;
661 + border-bottom: 1px none rgba(255,255,255,0.3);
662 + }
663 +
664 + .header-transparent-wrap .header-v4 a {
665 + color: #ffffff;
666 + }
667 +
668 + .header-transparent-wrap .header-v4 a:hover,
669 + .header-transparent-wrap .header-v4 a:active {
670 + color: #3385d9;
671 + background-color: rgba(255, 255, 255, 0.1);
672 + }
673 +
674 + .main-nav .navbar-nav .nav-item .dropdown-menu,
675 + .login-register .login-register-nav li .dropdown-menu {
676 + background-color: rgba(255,255,255,0.95);
677 + }
678 +
679 + .login-register .login-register-nav li .dropdown-menu:before {
680 + border-left-color: rgba(255,255,255,0.95);
681 + border-top-color: rgba(255,255,255,0.95);
682 + }
683 +
684 + .main-nav .navbar-nav .nav-item .nav-item a,
685 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
686 + color: #3385d9;
687 + border-bottom: 1px solid #e6e6e6;
688 + }
689 +
690 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
691 + .main-nav .navbar-nav .nav-item .nav-item a:active,
692 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
693 + color: #2b6fb4;
694 + }
695 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
696 + .main-nav .navbar-nav .nav-item .nav-item a:active,
697 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
698 + background-color: rgba(0, 174, 255, 0.1);
699 + }
700 +
701 + .header-main-wrap .btn-create-listing {
702 + color: #3385d9;
703 + border: 1px solid #3385d9;
704 + background-color: #ffffff;
705 + }
706 +
707 + .header-main-wrap .btn-create-listing:hover,
708 + .header-main-wrap .btn-create-listing:active {
709 + color: rgba(255,255,255,1);
710 + border: 1px solid #2b6fb4;
711 + background-color: rgba(43,111,180,1);
712 + }
713 +
714 + .header-transparent-wrap .header-v4 .btn-create-listing {
715 + color: #ffffff;
716 + border: 1px solid #ffffff;
717 + background-color: rgba(255,255,255,0.2);
718 + }
719 +
720 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
721 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
722 + color: rgba(255,255,255,1);
723 + border: 1px solid #3385d9;
724 + background-color: rgba(51,133,217,1);
725 + }
726 +
727 + .header-transparent-wrap .logged-in-nav a,
728 + .logged-in-nav a {
729 + color: #000000;
730 + border-color: #e6e6e6;
731 + background-color: #FFFFFF;
732 + }
733 +
734 + .header-transparent-wrap .logged-in-nav a:hover,
735 + .header-transparent-wrap .logged-in-nav a:active,
736 + .logged-in-nav a:hover,
737 + .logged-in-nav a:active {
738 + color: #000000;
739 + background-color: rgba(204,204,204,0.15);
740 + border-color: #e6e6e6;
741 + }
742 +
743 + .form-control::-webkit-input-placeholder,
744 + .search-banner-wrap ::-webkit-input-placeholder,
745 + .advanced-search ::-webkit-input-placeholder,
746 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
747 + .overlay-search-advanced-module ::-webkit-input-placeholder {
748 + color: #a1a7a8;
749 + }
750 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
751 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
752 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
753 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
754 + color: #a1a7a8;
755 + }
756 + .form-control::placeholder,
757 + .search-banner-wrap ::-webkit-input-placeholder,
758 + .advanced-search ::-webkit-input-placeholder,
759 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
760 + .overlay-search-advanced-module ::-webkit-input-placeholder {
761 + color: #a1a7a8;
762 + }
763 +
764 + .search-banner-wrap ::-moz-placeholder,
765 + .advanced-search ::-moz-placeholder,
766 + .advanced-search-banner-wrap ::-moz-placeholder,
767 + .overlay-search-advanced-module ::-moz-placeholder {
768 + color: #a1a7a8;
769 + }
770 +
771 + .search-banner-wrap :-ms-input-placeholder,
772 + .advanced-search :-ms-input-placeholder,
773 + .advanced-search-banner-wrap ::-ms-input-placeholder,
774 + .overlay-search-advanced-module ::-ms-input-placeholder {
775 + color: #a1a7a8;
776 + }
777 +
778 + .search-banner-wrap :-moz-placeholder,
779 + .advanced-search :-moz-placeholder,
780 + .advanced-search-banner-wrap :-moz-placeholder,
781 + .overlay-search-advanced-module :-moz-placeholder {
782 + color: #a1a7a8;
783 + }
784 +
785 + .advanced-search .form-control,
786 + .advanced-search .bootstrap-select > .btn,
787 + .location-trigger,
788 + .vertical-search-wrap .form-control,
789 + .vertical-search-wrap .bootstrap-select > .btn,
790 + .step-search-wrap .form-control,
791 + .step-search-wrap .bootstrap-select > .btn,
792 + .advanced-search-banner-wrap .form-control,
793 + .advanced-search-banner-wrap .bootstrap-select > .btn,
794 + .search-banner-wrap .form-control,
795 + .search-banner-wrap .bootstrap-select > .btn,
796 + .overlay-search-advanced-module .form-control,
797 + .overlay-search-advanced-module .bootstrap-select > .btn,
798 + .advanced-search-v2 .advanced-search-btn,
799 + .advanced-search-v2 .advanced-search-btn:hover {
800 + border-color: #cccccc;
801 + }
802 +
803 + .advanced-search-nav,
804 + .search-expandable,
805 + .overlay-search-advanced-module {
806 + background-color: #FFFFFF;
807 + }
808 + .btn-search {
809 + color: #ffffff;
810 + background-color: #3385d9;
811 + border-color: #3385d9;
812 + }
813 + .btn-search:hover, .btn-search:active {
814 + color: #ffffff;
815 + background-color: #2b6fb4;
816 + border-color: #2b6fb4;
817 + }
818 + .advanced-search-btn {
819 + color: #666666;
820 + background-color: #ffffff;
821 + border-color: #dce0e0;
822 + }
823 + .advanced-search-btn:hover, .advanced-search-btn:active {
824 + color: #000000;
825 + background-color: #ffffff;
826 + border-color: #dce0e0;
827 + }
828 + .advanced-search-btn:focus {
829 + color: #666666;
830 + background-color: #ffffff;
831 + border-color: #dce0e0;
832 + }
833 + .search-expandable-label {
834 + color: #ffffff;
835 + background-color: #ff6e00;
836 + }
837 + .advanced-search-nav {
838 + padding-top: 10px;
839 + padding-bottom: 10px;
840 + }
841 + .features-list-wrap .control--checkbox,
842 + .features-list-wrap .control--radio,
843 + .range-text,
844 + .features-list-wrap .control--checkbox,
845 + .features-list-wrap .btn-features-list,
846 + .overlay-search-advanced-module .search-title,
847 + .overlay-search-advanced-module .overlay-search-module-close {
848 + color: #222222;
849 + }
850 + .advanced-search-half-map {
851 + background-color: #FFFFFF;
852 + }
853 + .advanced-search-half-map .range-text,
854 + .advanced-search-half-map .features-list-wrap .control--checkbox,
855 + .advanced-search-half-map .features-list-wrap .btn-features-list {
856 + color: #222222;
857 + }
858 +
859 + .save-search-btn {
860 + border-color: #28a745 ;
861 + background-color: #28a745 ;
862 + color: #ffffff ;
863 + }
864 + .save-search-btn:hover,
865 + .save-search-btn:active {
866 + border-color: #28a745;
867 + background-color: #28a745 ;
868 + color: #ffffff ;
869 + }
870 + .label-featured {
871 + background-color: #e22424;
872 + color: #ffffff;
873 + }
874 +
875 + .dashboard-side-wrap {
876 + background-color: #00365e;
877 + }
878 +
879 + .side-menu a {
880 + color: #ffffff;
881 + }
882 +
883 + .side-menu a.active,
884 + .side-menu .side-menu-parent-selected > a,
885 + .side-menu-dropdown a,
886 + .side-menu a:hover {
887 + color: #3385d9;
888 + }
889 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
890 + color: #2b6fb4
891 + }
892 +
893 + .detail-wrap {
894 + background-color: rgba(119,199,32,0.1);
895 + border-color: #3385d9;
896 + }
897 + .top-bar-wrap,
898 + .top-bar-wrap .dropdown-menu,
899 + .switcher-wrap .dropdown-menu {
900 + background-color: #000000;
901 + }
902 + .top-bar-wrap a,
903 + .top-bar-contact,
904 + .top-bar-slogan,
905 + .top-bar-wrap .btn,
906 + .top-bar-wrap .dropdown-menu,
907 + .switcher-wrap .dropdown-menu,
908 + .top-bar-wrap .navbar-toggler {
909 + color: #ffffff;
910 + }
911 + .top-bar-wrap a:hover,
912 + .top-bar-wrap a:active,
913 + .top-bar-wrap .btn:hover,
914 + .top-bar-wrap .btn:active,
915 + .top-bar-wrap .dropdown-menu li:hover,
916 + .top-bar-wrap .dropdown-menu li:active,
917 + .switcher-wrap .dropdown-menu li:hover,
918 + .switcher-wrap .dropdown-menu li:active {
919 + color: rgba(43,111,180,1);
920 + }
921 + .class-energy-indicator:nth-child(1) {
922 + background-color: #33a357;
923 + }
924 + .class-energy-indicator:nth-child(2) {
925 + background-color: #79b752;
926 + }
927 + .class-energy-indicator:nth-child(3) {
928 + background-color: #c3d545;
929 + }
930 + .class-energy-indicator:nth-child(4) {
931 + background-color: #fff12c;
932 + }
933 + .class-energy-indicator:nth-child(5) {
934 + background-color: #edb731;
935 + }
936 + .class-energy-indicator:nth-child(6) {
937 + background-color: #d66f2c;
938 + }
939 + .class-energy-indicator:nth-child(7) {
940 + background-color: #cc232a;
941 + }
942 + .class-energy-indicator:nth-child(8) {
943 + background-color: #cc232a;
944 + }
945 + .class-energy-indicator:nth-child(9) {
946 + background-color: #cc232a;
947 + }
948 + .class-energy-indicator:nth-child(10) {
949 + background-color: #cc232a;
950 + }
951 +
952 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
953 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
954 +
955 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
956 +
957 + .footer-top-wrap {
958 + background-color: #000000;
959 + }
960 +
961 + .footer-bottom-wrap {
962 + background-color: #000000;
963 + }
964 +
965 + .footer-top-wrap,
966 + .footer-top-wrap a,
967 + .footer-bottom-wrap,
968 + .footer-bottom-wrap a,
969 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
970 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
971 + .footer-top-wrap .blog-post-content-widget h4 a,
972 + .footer-top-wrap .blog-post-content-widget,
973 + .footer-top-wrap .form-tools .control,
974 + .footer-top-wrap .slick-dots li.slick-active button:before,
975 + .footer-top-wrap .slick-dots li button::before,
976 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
977 + color: #ffffff;
978 + }
979 +
980 + .footer-top-wrap a:hover,
981 + .footer-bottom-wrap a:hover,
982 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
983 + color: rgba(43,111,180,1);
984 + }
985 + .houzez-osm-cluster {
986 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
987 + text-align: center;
988 + color: #fff;
989 + width: 48px;
990 + height: 48px;
991 + line-height: 48px;
992 + }
993 + .text-success{color:red!important;}
994 +
995 +/*.mobile-property-contact{bottom:40px;}*/
996 +
997 +/* Button retour en haut*/
998 +/*
999 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1000 +.mobile-property-contact .btn{margin-right: 60px;}
1001 +*/
1002 +
1003 +.item-tool.houzez-share{display:none;}
1004 +
1005 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1006 +
1007 +.grecaptcha-badge{display:none!important;}
1008 +
1009 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1010 +
1011 +
1012 +@media only screen and (max-width: 768px) {
1013 + /* For mobile phones: */
1014 +
1015 + /* Button retour en haut*/
1016 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1017 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1018 +}
1019 +/*# sourceURL=houzez-style-inline-css */</style><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1020 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1021 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/pages/194" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1022 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1023 + background-image: none !important;
1024 + }
1025 + @media screen and (max-height: 1024px) {
1026 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1027 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1028 + background-image: none !important;
1029 + }
1030 + }
1031 + @media screen and (max-height: 640px) {
1032 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1033 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1034 + background-image: none !important;
1035 + }
1036 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1037 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1038 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1039 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
1040 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
1041 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
1042 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
1043 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1044 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="home wp-singular page-template page-template-elementor_header_footer page page-id-194 wp-custom-logo wp-theme-houzez translatepress-fr_CA transparent-no houzez-header-elementor elementor-default elementor-template-full-width elementor-kit-6 elementor-page elementor-page-194"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-194 current_page_item "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1045 +<a href="https://agencedelocationsherbrooke.com/">
1046 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1047 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-194 current_page_item "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1048 +<button class="btn toggle-button-left">
1049 +<i class="houzez-icon icon-navigation-menu"></i>
1050 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1051 +<a href="https://agencedelocationsherbrooke.com/">
1052 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1053 +</a></div></div><div class="header-mobile-right"></div></div></header><div data-elementor-type="wp-post" data-elementor-id="194" class="elementor elementor-194"><section class="elementor-section elementor-top-section elementor-element elementor-element-c1d7965 elementor-section-height-full elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="c1d7965" data-element_type="section" data-settings="{&quot;background_background&quot;:&quot;classic&quot;}"><div class="elementor-background-overlay"></div><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a552e5c" data-id="a552e5c" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-9cff6ff elementor-widget elementor-widget-spacer" data-id="9cff6ff" data-element_type="widget" data-widget_type="spacer.default"><div class="elementor-widget-container"><div class="elementor-spacer"><div class="elementor-spacer-inner"></div></div></div></div><div class="elementor-element elementor-element-ac6cf9b animated-slow elementor-invisible elementor-widget elementor-widget-houzez_elementor_section_title" data-id="ac6cf9b" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_section_title.default"><div class="elementor-widget-container"><div class="houzez_section_title_wrap section-title-module"><p class="houzez_section_subtitle">Votre appartement idéal est plus proche que vous ne le pensez.</p></div></div></div><div class="elementor-element elementor-element-590db8a elementor-widget elementor-widget-houzez_elementor_space" data-id="590db8a" data-element_type="widget" data-widget_type="houzez_elementor_space.default"><div class="elementor-widget-container"><div class="houzez-spacer"><div class="houzez-spacer-inner"></div></div></div></div><section class="elementor-section elementor-inner-section elementor-element elementor-element-d3b1356 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d3b1356" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-196d994" data-id="196d994" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-f0d3160 animated-slow elementor-button-align-start elementor-mobile-button-align-stretch elementor-tablet-button-align-start elementor-invisible elementor-widget elementor-widget-houzez_elementor_search_builder" data-id="f0d3160" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_search_builder.default"><div class="elementor-widget-container"><form class="houzez-search-form-js houzez-search-builder-form-js" id="houzez-search-f0d3160" method="get" action="https://agencedelocationsherbrooke.com/search-results/" ><div class="houzez-ele-search-form-wrapper elementor-form-fields-wrapper elementor-labels-above"><div class="elementor-field-group elementor-column form-group elementor-field-group-4e8b111 elementor-col-25">
1054 +<label for="form-field-4e8b111" class="elementor-field-label">Taille</label><div class="elementor-field elementor-select-wrapper">
1055 +<select data-size="5" name="type[]" id="form-field-4e8b111" class="selectpicker bs-select-hidden houzez-field-textual form-control elementor-size-md " data-none-results-text="Aucun résultat {0}"><option value="">Toutes</option><option data-ref="2-demi" value="2-demi">2½</option><option data-ref="3-demi" value="3-demi">3½</option><option data-ref="4-demi" value="4-demi">4½</option><option data-ref="5-demi" value="5-demi">5½</option><option data-ref="6-demi" value="6-demi">6½</option><option data-ref="7-demi" value="7-demi">7½</option><option data-ref="chambre" value="chambre">Chambre</option><option data-ref="maison" value="maison">Maison</option><option data-ref="studio" value="studio">Studio</option> </select></div></div><div class="elementor-field-group elementor-column form-group elementor-field-group-field-cities elementor-col-25">
1056 +<label for="form-field-field-cities" class="elementor-field-label">Secteurs</label><div class="elementor-field elementor-select-wrapper">
1057 +<select data-size="5" name="status[]" id="form-field-field-cities" class="selectpicker bs-select-hidden houzez-field-textual form-control elementor-size-md status-js" data-none-results-text="Aucun résultat {0}"><option value="">Tous les secteurs</option><option data-ref="centre-ville" value="centre-ville">Centre-ville</option><option data-ref="deauville" value="deauville">Deauville</option><option data-ref="lennoxville" value="lennoxville">Lennoxville</option><option data-ref="magog" value="magog">Magog</option><option data-ref="mont-bellevue" value="mont-bellevue">Mont Bellevue</option><option data-ref="slug" value="slug">nom</option><option data-ref="secteur-carrefour" value="secteur-carrefour">Secteur Carrefour</option><option data-ref="secteur-cegep" value="secteur-cegep">Secteur Cégep</option><option data-ref="udes" value="udes">UdeS</option><option data-ref="vieux-nord" value="vieux-nord">Vieux Nord</option><option data-ref="waterville" value="waterville">Waterville</option> </select></div></div><div class="elementor-field-group elementor-column form-group elementor-field-group-ca36fd9 elementor-col-25">
1058 +<label for="form-field-ca36fd9" class="elementor-field-label">Prix maximum</label>
1059 +<input name="max-price" type="text" name="max-price" id="form-field-ca36fd9" class="elementor-field form-control elementor-size-md elementor-field-textual" placeholder="Aucun"></div><div class="elementor-field-group elementor-column elementor-field-type-submit elementor-col-20">
1060 +<button type="submit" class="btn houzez-search-button elementor-button elementor-size-md">
1061 +Rechercher </button></div></div></form></div></div></div></div></div></section></div></div></div></section><section class="elementor-section elementor-top-section elementor-element elementor-element-be1f8d7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="be1f8d7" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9c916fa" data-id="9c916fa" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-f8f317b animated-slow elementor-invisible elementor-widget elementor-widget-houzez_elementor_section_title" data-id="f8f317b" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_section_title.default"><div class="elementor-widget-container"><div class="houzez_section_title_wrap section-title-module"><h2 class="houzez_section_title">Annonces vedettes</h2></div></div></div><div class="elementor-element elementor-element-3592c58 elementor-widget elementor-widget-houzez_elementor_properties_carousel_v2n" data-id="3592c58" data-element_type="widget" data-widget_type="houzez_elementor_properties_carousel_v2n.default"><div class="elementor-widget-container"><div class="property-carousel-module houzez-carousel-arrows-pRQYr houzez-carousel-cols-3 property-carousel-module-v2"><div class="property-carousel-buttons-wrap"></div><div class="listing-view grid-view"><div id="houzez-properties-carousel-pRQYr" data-token="pRQYr" class="houzez-properties-carousel-js houzez-all-slider-wrap card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10225" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-24T183540.478-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-24T183540.478-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-24T183539.108-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-24T183544.748-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-24T183543.137-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-24T183537.369-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-24T183535.873-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-24T183534.855-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-24T183533.665-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1062 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1063 +Libre maintenant
1064 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1065 +<span class="hz-show-lightbox-js" data-listid="10225" data-toggle="tooltip" data-placement="top" title="Aperçu">
1066 +<i class="houzez-icon icon-expand-3"></i>
1067 +</span></li><li class="item-tool item-favorite">
1068 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10225">
1069 +<i class="houzez-icon icon-love-it "></i>
1070 +</span></li><li class="item-tool item-compare">
1071 +<span class="houzez_compare compare-10225 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10225" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-24T183540.478-592x444.jpeg">
1072 +<i class="houzez-icon icon-add-circle"></i>
1073 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1074 +<a href="https://agencedelocationsherbrooke.com/property/89-des-pins-4-east-angus/" class="listing-featured-thumb hover-effect">
1075 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" fetchpriority="high" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-24T183540.478-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-24T183540.478-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-24T183540.478-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-24T183540.478-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1076 +Libre maintenant
1077 +</a></div><h2 class="item-title">
1078 +<a href="https://agencedelocationsherbrooke.com/property/89-des-pins-4-east-angus/">89 des pins #4, East Angus</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul> <address class="item-address">89, Rue des Pins, East Angus, Le Haut-Saint-François, Estrie, Québec, J0B 1R0, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">2 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1079 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1080 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1081 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1082 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10527" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164102.079-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164102.079-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164100.403-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164058.897-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164057.450-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164055.241-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164053.100-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164051.688-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164050.255-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164048.589-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164023.856-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164022.508-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164021.232-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164019.659-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164018.285-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164016.789-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164015.252-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164013.909-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164012.198-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164011.386-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1083 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1084 +Libre maintenant
1085 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,295$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1086 +<span class="hz-show-lightbox-js" data-listid="10527" data-toggle="tooltip" data-placement="top" title="Aperçu">
1087 +<i class="houzez-icon icon-expand-3"></i>
1088 +</span></li><li class="item-tool item-favorite">
1089 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10527">
1090 +<i class="houzez-icon icon-love-it "></i>
1091 +</span></li><li class="item-tool item-compare">
1092 +<span class="houzez_compare compare-10527 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10527" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-592x444.jpeg">
1093 +<i class="houzez-icon icon-add-circle"></i>
1094 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1095 +<a href="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/" class="listing-featured-thumb hover-effect">
1096 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1097 +Libre maintenant
1098 +</a></div><h2 class="item-title">
1099 +<a href="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/">1206 Françoise-Gaudet-Smet</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,295$/mensuel</li></ul> <address class="item-address">1206, Rue Françoise-Gaudet-Smet, Fleurimont, Sherbrooke, Estrie, Québec, J1G 2Y4, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">3 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1100 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1101 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1102 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1103 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10451" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172902.091-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172902.091-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172900.846-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172859.886-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172858.813-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172855.820-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172852.674-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172854.696-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172853.719-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1104 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1105 +Mont Bellevue
1106 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1107 +Libre maintenant
1108 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">795$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1109 +<span class="hz-show-lightbox-js" data-listid="10451" data-toggle="tooltip" data-placement="top" title="Aperçu">
1110 +<i class="houzez-icon icon-expand-3"></i>
1111 +</span></li><li class="item-tool item-favorite">
1112 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10451">
1113 +<i class="houzez-icon icon-love-it "></i>
1114 +</span></li><li class="item-tool item-compare">
1115 +<span class="houzez_compare compare-10451 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10451" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg">
1116 +<i class="houzez-icon icon-add-circle"></i>
1117 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1118 +<a href="https://agencedelocationsherbrooke.com/property/905-courcelette/" class="listing-featured-thumb hover-effect">
1119 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1120 +Mont Bellevue
1121 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1122 +Libre maintenant
1123 +</a></div><h2 class="item-title">
1124 +<a href="https://agencedelocationsherbrooke.com/property/905-courcelette/">905 Courcelette</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">795$/mensuel</li></ul> <address class="item-address">Rue de Courcelette, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3V3, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">1 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambre</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1125 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1126 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1127 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1128 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></div></div></section><section class="elementor-section elementor-top-section elementor-element elementor-element-03673dc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="03673dc" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-a57f655" data-id="a57f655" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-2292302 animated-slow elementor-invisible elementor-widget elementor-widget-houzez_elementor_section_title" data-id="2292302" data-element_type="widget" data-settings="{&quot;_animation&quot;:&quot;fadeIn&quot;}" data-widget_type="houzez_elementor_section_title.default"><div class="elementor-widget-container"><div class="houzez_section_title_wrap section-title-module"><h2 class="houzez_section_title">Derniers ajouts</h2></div></div></div></div></div></div></section><section class="elementor-section elementor-top-section elementor-element elementor-element-ecf4ba6 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ecf4ba6" data-element_type="section"><div class="elementor-container elementor-column-gap-default"><div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-5c676a3" data-id="5c676a3" data-element_type="column"><div class="elementor-widget-wrap elementor-element-populated"><div class="elementor-element elementor-element-1856cb4 elementor-widget elementor-widget-houzez_elementor_properties_carousel_v2n" data-id="1856cb4" data-element_type="widget" data-widget_type="houzez_elementor_properties_carousel_v2n.default"><div class="elementor-widget-container"><div class="property-carousel-module houzez-carousel-arrows-nIXsQ houzez-carousel-cols-3 property-carousel-module-v2"><div class="property-carousel-buttons-wrap"></div><div class="listing-view grid-view"><div id="houzez-properties-carousel-nIXsQ" data-token="nIXsQ" class="houzez-properties-carousel-js houzez-all-slider-wrap card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10529" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164646.541-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164646.541-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-22-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-21-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-20-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-19-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-18-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-17-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-16-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/photo-15-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/udes/" class="label-status label status-color-89">
1129 +UdeS
1130 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1131 +Octobre
1132 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,095$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1133 +<span class="hz-show-lightbox-js" data-listid="10529" data-toggle="tooltip" data-placement="top" title="Aperçu">
1134 +<i class="houzez-icon icon-expand-3"></i>
1135 +</span></li><li class="item-tool item-favorite">
1136 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10529">
1137 +<i class="houzez-icon icon-love-it "></i>
1138 +</span></li><li class="item-tool item-compare">
1139 +<span class="houzez_compare compare-10529 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10529" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-592x444.jpeg">
1140 +<i class="houzez-icon icon-add-circle"></i>
1141 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1142 +<a href="https://agencedelocationsherbrooke.com/property/1595-lalemant-401/" class="listing-featured-thumb hover-effect">
1143 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/udes/" class="label-status label status-color-89">
1144 +UdeS
1145 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1146 +Octobre
1147 +</a></div><h2 class="item-title">
1148 +<a href="https://agencedelocationsherbrooke.com/property/1595-lalemant-401/">1595 lalemant #401</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,095$/mensuel</li></ul> <address class="item-address">1595, Rue Lalemant, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3C1, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">3 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1149 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1150 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1151 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1152 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10415" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001946.848-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001946.848-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001945.367-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001954.834-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001956.323-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001953.285-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001942.733-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001943.698-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/image-2026-06-19T001957.550-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1153 +Centre-ville
1154 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1155 +Octobre
1156 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,195$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1157 +<span class="hz-show-lightbox-js" data-listid="10415" data-toggle="tooltip" data-placement="top" title="Aperçu">
1158 +<i class="houzez-icon icon-expand-3"></i>
1159 +</span></li><li class="item-tool item-favorite">
1160 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10415">
1161 +<i class="houzez-icon icon-love-it "></i>
1162 +</span></li><li class="item-tool item-compare">
1163 +<span class="houzez_compare compare-10415 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10415" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-592x444.jpeg">
1164 +<i class="houzez-icon icon-add-circle"></i>
1165 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1166 +<a href="https://agencedelocationsherbrooke.com/property/368-fusiliers/" class="listing-featured-thumb hover-effect">
1167 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/06/image-2026-06-19T001946.848-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1168 +Centre-ville
1169 +</a><a href="https://agencedelocationsherbrooke.com/label/octobre/" class="hz-label label label-color-128">
1170 +Octobre
1171 +</a></div><h2 class="item-title">
1172 +<a href="https://agencedelocationsherbrooke.com/property/368-fusiliers/">368 Fusiliers</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,195$/mensuel</li></ul> <address class="item-address">368, Rue des Fusiliers, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4J5, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">3 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1173 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1174 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1175 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1176 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10323" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214604.302-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214604.302-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214605.767-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214602.971-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214601.360-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214607.172-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214600.168-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214558.776-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214552.707-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214551.309-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214549.891-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214548.735-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v2 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1177 +Juillet
1178 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1179 +<span class="hz-show-lightbox-js" data-listid="10323" data-toggle="tooltip" data-placement="top" title="Aperçu">
1180 +<i class="houzez-icon icon-expand-3"></i>
1181 +</span></li><li class="item-tool item-favorite">
1182 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10323">
1183 +<i class="houzez-icon icon-love-it "></i>
1184 +</span></li><li class="item-tool item-compare">
1185 +<span class="houzez_compare compare-10323 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10323" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-592x444.jpeg">
1186 +<i class="houzez-icon icon-add-circle"></i>
1187 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1188 +<a href="https://agencedelocationsherbrooke.com/property/94-garneau-3/" class="listing-featured-thumb hover-effect">
1189 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" loading="lazy" decoding="async" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-592x444.jpeg" class="img-fluid wp-post-image" alt="" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1190 +Juillet
1191 +</a></div><h2 class="item-title">
1192 +<a href="https://agencedelocationsherbrooke.com/property/94-garneau-3/">94 Garneau #3</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul> <address class="item-address">94, Rue Garneau, East Angus, Le Haut-Saint-François, Québec, J0B 1R0, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><span class="hz-figure">2 <i class="houzez-icon icon-hotel-double-bed-1 ml-1"></i></span> Chambres</li><li class="h-baths"><span class="hz-figure">1 <i class="houzez-icon icon-bathroom-shower-1 mr-1"></i></span>Salle de bain</li></ul><div class="item-author">
1193 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1194 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1195 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1196 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></div></div></section></div></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1197 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1198 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1199 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1200 +<i class="houzez-icon icon-arrow-up-1"></i>
1201 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1202 +<button class="compare-property-label" style="display: none;">
1203 +<span class="compare-count compare-label"></span>
1204 +<i class="houzez-icon icon-move-left-right"></i>
1205 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1206 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1207 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1208 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1209 +<span aria-hidden="true">&times;</span>
1210 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1211 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1212 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1213 +<label class="control control--checkbox flex-grow-1">
1214 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1215 +</label>
1216 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1217 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com?login=success">
1218 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1219 +<span class="btn-loader houzez-loader-js"></span> Connexion
1220 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1221 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1222 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1223 +<span aria-hidden="true">&times;</span>
1224 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1225 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1226 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1227 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1228 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="165a276607388830d2140c61-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1229 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"","search_position":"under_banner","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="houzez_prop_caoursel-js-extra" type="litespeed/javascript">var houzez_prop_caoursel_pRQYr={"slide_auto":"true","auto_speed":"4000","navigation":"false","slide_dots":"true","slide_infinite":"true","slides_to_show":"3","slides_to_scroll":"1"};var houzez_prop_caoursel_nIXsQ={"slide_auto":"true","auto_speed":"4000","navigation":"false","slide_dots":"true","slide_infinite":"true","slides_to_show":"3","slides_to_scroll":"1"}</script> <script id="elementor-frontend-js-before" type="litespeed/javascript">var elementorFrontendConfig={"environmentMode":{"edit":!1,"wpPreview":!1,"isScriptDebug":!1},"i18n":{"shareOnFacebook":"Partager sur Facebook","shareOnTwitter":"Partager sur Twitter","pinIt":"Pin it","download":"Download","downloadImage":"T\u00e9l\u00e9charger une image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Lire la vid\u00e9o","previous":"Pr\u00e9c\u00e9dent","next":"Suivant","close":"Fermer","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":!1,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":!0},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":!1},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":!0},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":!1},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":!1},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":!1}},"hasCustomBreakpoints":!1},"version":"3.26.3","is_static":!1,"experimentalFeatures":{"additional_custom_breakpoints":!0,"e_swiper_latest":!0,"e_nested_atomic_repeaters":!0,"e_onboarding":!0,"e_css_smooth_scroll":!0,"home_screen":!0,"landing-pages":!0,"nested-elements":!0,"editor_v2":!0,"link-in-bio":!0,"floating-buttons":!0},"urls":{"assets":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/agencedelocationsherbrooke.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"504a61ef51"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":194,"title":"Appartement%20%C3%A0%20louer%20-%20Agence%20de%20location%20Sherbrooke","excerpt":"","featuredImage":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png"}}</script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1230 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="165a276607388830d2140c61-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="165a276607388830d2140c61-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="165a276607388830d2140c61-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/a0ae847744a881ec0110ff42519e99fa.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="165a276607388830d2140c61-|49" defer></script></body></html>
1231 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:07:00 -->
1232 +
1233 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:07:00 -->
1234 +<!-- Guest Mode -->
1235 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/658d338601fe97eb9916d12bd99818de.css -->
1236 +<!-- QUIC.cloud UCSS loaded ✅ /ucss/a6c4fdc898c928d9e5c5fbf7aca08c8d.css -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/76d7b9989a3b2bf1f60c.html +1396 −0
@@ -0,0 +1,1396 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="881427eaf95485eb4777e609-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>1625 Grands-Monts #4 - Agence de location Sherbrooke</title><meta name="description" content="3 ½ à louer – Disponible maintenant 895$/mois – Chauffage, eau chaude, électricité et internet inclus Logement non-fumeur Four, frigidaire, laveuse, micro-onde, base de lit et matelas inclus Demi sous-sol 1 espace de stationnement inclus Un chat accepté (chiens non permis) Enquête de crédit obligatoire" /><meta name="robots" content="max-image-preview:large" /><meta name="author" content="Catherine Perreault"/><link rel="canonical" href="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="article" /><meta property="og:title" content="1625 Grands-Monts #4 - Agence de location Sherbrooke" /><meta property="og:description" content="3 ½ à louer – Disponible maintenant 895$/mois – Chauffage, eau chaude, électricité et internet inclus Logement non-fumeur Four, frigidaire, laveuse, micro-onde, base de lit et matelas inclus Demi sous-sol 1 espace de stationnement inclus Un chat accepté (chiens non permis) Enquête de crédit obligatoire" /><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-scaled.jpeg" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-scaled.jpeg" /><meta property="og:image:width" content="1920" /><meta property="og:image:height" content="2560" /><meta property="article:published_time" content="2026-07-10T02:42:34+00:00" /><meta property="article:modified_time" content="2026-07-10T02:42:34+00:00" /><meta property="article:publisher" content="https://www.facebook.com/agencedelocationsherbrooke" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="1625 Grands-Monts #4 - Agence de location Sherbrooke" /><meta name="twitter:description" content="3 ½ à louer – Disponible maintenant 895$/mois – Chauffage, eau chaude, électricité et internet inclus Logement non-fumeur Four, frigidaire, laveuse, micro-onde, base de lit et matelas inclus Demi sous-sol 1 espace de stationnement inclus Un chat accepté (chiens non permis) Enquête de crédit obligatoire" /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1625-grands-monts-4\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","position":2,"name":"Properties","item":"https:\/\/agencedelocationsherbrooke.com\/property\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/#listItem","name":"3\u00bd"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/#listItem","position":3,"name":"3\u00bd","item":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1625-grands-monts-4\/#listItem","name":"1625 Grands-Monts #4"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1625-grands-monts-4\/#listItem","position":4,"name":"1625 Grands-Monts #4","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/3-demi\/#listItem","name":"3\u00bd"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1625-grands-monts-4\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1625-grands-monts-4\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"Person","@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author","url":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/","name":"Catherine Perreault","image":{"@type":"ImageObject","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1625-grands-monts-4\/#authorImage","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/litespeed\/avatar\/fdca211e8cbd2f88b79d873de06d8fa9.jpg?ver=1785951645","width":96,"height":96,"caption":"Catherine Perreault"}},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1625-grands-monts-4\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/property\/1625-grands-monts-4\/","name":"1625 Grands-Monts #4 - Agence de location Sherbrooke","description":"3 \u00bd \u00e0 louer \u2013 Disponible maintenant 895$\/mois \u2013 Chauffage, eau chaude, \u00e9lectricit\u00e9 et internet inclus Logement non-fumeur Four, frigidaire, laveuse, micro-onde, base de lit et matelas inclus Demi sous-sol 1 espace de stationnement inclus Un chat accept\u00e9 (chiens non permis) Enqu\u00eate de cr\u00e9dit obligatoire","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1625-grands-monts-4\/#breadcrumblist"},"author":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"creator":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224027.371-scaled.jpeg","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1625-grands-monts-4\/#mainImage","width":1920,"height":2560},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1625-grands-monts-4\/#mainImage"},"datePublished":"2026-07-10T02:42:34+00:00","dateModified":"2026-07-10T02:42:34+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//unpkg.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&#038;format=xml" /><meta property="og:title" content="1625 Grands-Monts #4"/><meta property="og:description" content="3 ½ à louer – Disponible maintenant
2 +895$/mois – Chauffage, eau chaude, électricité et internet inclusLogement non-fumeurFour, frigidaire, laveuse," /><meta property="og:type" content="article"/><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/"/><meta property="og:site_name" content="Agence de location Sherbrooke"/><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-scaled.jpeg"/><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
3 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}body{font-size:15px;font-family:Roboto,sans-serif}body{background-color:#f8f8f8}body{color:#222}body{line-height:25px;font-weight:300;text-transform:none}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}body{background-color:#f7f7f7}body{color:#222}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="881427eaf95485eb4777e609-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/ucss/8a1cd21e8e73e3be9b0e43522ed62790.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="wp-block-library-inline-css">:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
4 +
5 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */</style><style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
6 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
7 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
8 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
9 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
10 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
11 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
12 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
13 + .container {
14 + max-width: 1210px;
15 + }
16 + }
17 + .label-color-87 {
18 + background-color: #31af00;
19 + }
20 +
21 + .status-color-28 {
22 + background-color: #dd9933;
23 + }
24 +
25 + .status-color-88 {
26 + background-color: #b7ba00;
27 + }
28 +
29 + .status-color-95 {
30 + background-color: #dd3333;
31 + }
32 +
33 + .status-color-94 {
34 + background-color: #1e73be;
35 + }
36 +
37 + .status-color-89 {
38 + background-color: #31af00;
39 + }
40 +
41 + body {
42 + font-family: Poppins;
43 + font-size: 16px;
44 + font-weight: 400;
45 + line-height: 24px;
46 + text-transform: none;
47 + }
48 + .main-nav,
49 + .dropdown-menu,
50 + .login-register,
51 + .btn.btn-create-listing,
52 + .logged-in-nav,
53 + .btn-phone-number {
54 + font-family: Poppins;
55 + font-size: 14px;
56 + font-weight: 400;
57 + text-align: left;
58 + text-transform: uppercase;
59 + }
60 +
61 + .btn,
62 + .form-control,
63 + .bootstrap-select .text,
64 + .sort-by-title,
65 + .woocommerce ul.products li.product .button {
66 + font-family: Poppins;
67 + font-size: 16px;
68 + }
69 +
70 + h1, h2, h3, h4, h5, h6, .item-title {
71 + font-family: Poppins;
72 + font-weight: 400;
73 + text-transform: capitalize;
74 + }
75 +
76 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
77 + font-weight: 400;
78 + text-transform: capitalize;
79 + text-align: inherit;
80 + }
81 +
82 + .top-bar-wrap {
83 + font-family: Poppins;
84 + font-size: 15px;
85 + font-weight: 300;
86 + line-height: 25px;
87 + text-align: left;
88 + text-transform: none;
89 + }
90 + .footer-wrap {
91 + font-family: Poppins;
92 + font-size: 14px;
93 + font-weight: 300;
94 + line-height: 25px;
95 + text-align: left;
96 + text-transform: none;
97 + }
98 +
99 + .header-v1 .header-inner-wrap,
100 + .header-v1 .navbar-logged-in-wrap {
101 + line-height: 60px;
102 + height: 60px;
103 + }
104 + .header-v2 .header-top .navbar {
105 + height: 110px;
106 + }
107 +
108 + .header-v2 .header-bottom .header-inner-wrap,
109 + .header-v2 .header-bottom .navbar-logged-in-wrap {
110 + line-height: 54px;
111 + height: 54px;
112 + }
113 +
114 + .header-v3 .header-top .header-inner-wrap,
115 + .header-v3 .header-top .header-contact-wrap {
116 + height: 80px;
117 + line-height: 80px;
118 + }
119 + .header-v3 .header-bottom .header-inner-wrap,
120 + .header-v3 .header-bottom .navbar-logged-in-wrap {
121 + line-height: 54px;
122 + height: 54px;
123 + }
124 + .header-v4 .header-inner-wrap,
125 + .header-v4 .navbar-logged-in-wrap {
126 + line-height: 90px;
127 + height: 90px;
128 + }
129 + .header-v5 .header-top .header-inner-wrap,
130 + .header-v5 .header-top .navbar-logged-in-wrap {
131 + line-height: 110px;
132 + height: 110px;
133 + }
134 + .header-v5 .header-bottom .header-inner-wrap {
135 + line-height: 54px;
136 + height: 54px;
137 + }
138 + .header-v6 .header-inner-wrap,
139 + .header-v6 .navbar-logged-in-wrap {
140 + height: 60px;
141 + line-height: 60px;
142 + }
143 + @media (min-width: 1200px) {
144 + .header-v5 .header-top .container {
145 + max-width: 1170px;
146 + }
147 + }
148 +
149 + body,
150 + .main-wrap,
151 + .fw-property-documents-wrap h3 span,
152 + .fw-property-details-wrap h3 span {
153 + background-color: #f7f7f7;
154 + }
155 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
156 + background-color: #ffffff;
157 + }
158 +
159 + body,
160 + .form-control,
161 + .bootstrap-select .text,
162 + .item-title a,
163 + .listing-tabs .nav-tabs .nav-link,
164 + .item-wrap-v2 .item-amenities li span,
165 + .item-wrap-v2 .item-amenities li:before,
166 + .item-parallax-wrap .item-price-wrap,
167 + .list-view .item-body .item-price-wrap,
168 + .property-slider-item .item-price-wrap,
169 + .page-title-wrap .item-price-wrap,
170 + .agent-information .agent-phone span a,
171 + .property-overview-wrap ul li strong,
172 + .mobile-property-title .item-price-wrap .item-price,
173 + .fw-property-features-left li a,
174 + .lightbox-content-wrap .item-price-wrap,
175 + .blog-post-item-v1 .blog-post-title h3 a,
176 + .blog-post-content-widget h4 a,
177 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
178 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
179 + .agent-list-wrap .agent-list-content h2 a,
180 + .agent-list-wrap .agent-list-contact li a,
181 + .agent-contacts-wrap li a,
182 + .menu-edit-property li a,
183 + .statistic-referrals-list li a,
184 + .chart-nav .nav-pills .nav-link,
185 + .dashboard-table-properties td .property-payment-status,
186 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
187 + .payment-method-block .radio-tab .control-text,
188 + .post-title-wrap h2 a,
189 + .lead-nav-tab.nav-pills .nav-link,
190 + .deals-nav-tab.nav-pills .nav-link,
191 + .btn-light-grey-outlined:hover,
192 + button:not(.bs-placeholder) .filter-option-inner-inner,
193 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
194 + .products > .product > .item-body > a,
195 + .woocommerce ul.products li.product .price,
196 + .woocommerce div.product p.price,
197 + .woocommerce div.product span.price,
198 + .woocommerce #reviews #comments ol.commentlist li .meta,
199 + .woocommerce-MyAccount-navigation ul li a,
200 + .activitiy-item-close-button a,
201 + .property-section-wrap li a {
202 + color: #222222;
203 + }
204 +
205 +
206 +
207 + a,
208 + a:hover,
209 + a:active,
210 + a:focus,
211 + .primary-text,
212 + .btn-clear,
213 + .btn-apply,
214 + .btn-primary-outlined,
215 + .btn-primary-outlined:before,
216 + .item-title a:hover,
217 + .sort-by .bootstrap-select .bs-placeholder,
218 + .sort-by .bootstrap-select > .btn,
219 + .sort-by .bootstrap-select > .btn:active,
220 + .page-link,
221 + .page-link:hover,
222 + .accordion-title:before,
223 + .blog-post-content-widget h4 a:hover,
224 + .agent-list-wrap .agent-list-content h2 a:hover,
225 + .agent-list-wrap .agent-list-contact li a:hover,
226 + .agent-contacts-wrap li a:hover,
227 + .agent-nav-wrap .nav-pills .nav-link,
228 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
229 + .menu-edit-property li a.active,
230 + .menu-edit-property li a:hover,
231 + .dashboard-statistic-block h3 .fa,
232 + .statistic-referrals-list li a:hover,
233 + .chart-nav .nav-pills .nav-link.active,
234 + .board-message-icon-wrap.active,
235 + .post-title-wrap h2 a:hover,
236 + .listing-switch-view .switch-btn.active,
237 + .item-wrap-v6 .item-price-wrap,
238 + .listing-v6 .list-view .item-body .item-price-wrap,
239 + .woocommerce nav.woocommerce-pagination ul li a,
240 + .woocommerce nav.woocommerce-pagination ul li span,
241 + .woocommerce-MyAccount-navigation ul li a:hover,
242 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
243 + .property-schedule-tour-form-wrap .control:hover,
244 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
245 + .login-register .btn-icon-login-register + .dropdown-menu a,
246 + .activitiy-item-close-button a:hover,
247 + .property-section-wrap li a:hover,
248 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
249 + color: #3385d9;
250 + }
251 +
252 + .agent-list-position a {
253 + color: #3385d9;
254 + }
255 +
256 + .control input:checked ~ .control__indicator,
257 + .top-banner-wrap .nav-pills .nav-link,
258 + .btn-primary-outlined:hover,
259 + .page-item.active .page-link,
260 + .slick-prev:hover,
261 + .slick-prev:focus,
262 + .slick-next:hover,
263 + .slick-next:focus,
264 + .mobile-property-tools .nav-pills .nav-link.active,
265 + .login-register-form .modal-header,
266 + .agent-nav-wrap .nav-pills .nav-link.active,
267 + .board-message-icon-wrap .notification-circle,
268 + .primary-label,
269 + .fc-event, .fc-event-dot,
270 + .compare-table .table-hover > tbody > tr:hover,
271 + .post-tag,
272 + .datepicker table tr td.active.active,
273 + .datepicker table tr td.active.disabled,
274 + .datepicker table tr td.active.disabled.active,
275 + .datepicker table tr td.active.disabled.disabled,
276 + .datepicker table tr td.active.disabled:active,
277 + .datepicker table tr td.active.disabled:hover,
278 + .datepicker table tr td.active.disabled:hover.active,
279 + .datepicker table tr td.active.disabled:hover.disabled,
280 + .datepicker table tr td.active.disabled:hover:active,
281 + .datepicker table tr td.active.disabled:hover:hover,
282 + .datepicker table tr td.active.disabled:hover[disabled],
283 + .datepicker table tr td.active.disabled[disabled],
284 + .datepicker table tr td.active:active,
285 + .datepicker table tr td.active:hover,
286 + .datepicker table tr td.active:hover.active,
287 + .datepicker table tr td.active:hover.disabled,
288 + .datepicker table tr td.active:hover:active,
289 + .datepicker table tr td.active:hover:hover,
290 + .datepicker table tr td.active:hover[disabled],
291 + .datepicker table tr td.active[disabled],
292 + .ui-slider-horizontal .ui-slider-range,
293 + .btn-bubble {
294 + background-color: #3385d9;
295 + }
296 +
297 + .control input:checked ~ .control__indicator,
298 + .btn-primary-outlined,
299 + .page-item.active .page-link,
300 + .mobile-property-tools .nav-pills .nav-link.active,
301 + .agent-nav-wrap .nav-pills .nav-link,
302 + .agent-nav-wrap .nav-pills .nav-link.active,
303 + .chart-nav .nav-pills .nav-link.active,
304 + .dashaboard-snake-nav .step-block.active,
305 + .fc-event,
306 + .fc-event-dot,
307 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
308 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
309 + border-color: #3385d9;
310 + }
311 +
312 + .slick-arrow:hover {
313 + background-color: rgba(43,111,180,1);
314 + }
315 +
316 + .slick-arrow {
317 + background-color: #3385d9;
318 + }
319 +
320 + .property-banner .nav-pills .nav-link.active {
321 + background-color: rgba(43,111,180,1) !important;
322 + }
323 +
324 + .property-navigation-wrap a.active {
325 + color: #3385d9;
326 + -webkit-box-shadow: inset 0 -3px #3385d9;
327 + box-shadow: inset 0 -3px #3385d9;
328 + }
329 +
330 + .btn-primary,
331 + .fc-button-primary,
332 + .woocommerce nav.woocommerce-pagination ul li a:focus,
333 + .woocommerce nav.woocommerce-pagination ul li a:hover,
334 + .woocommerce nav.woocommerce-pagination ul li span.current {
335 + color: #fff;
336 + background-color: #3385d9;
337 + border-color: #3385d9;
338 + }
339 + .btn-primary:focus, .btn-primary:focus:active,
340 + .fc-button-primary:focus,
341 + .fc-button-primary:focus:active {
342 + color: #fff;
343 + background-color: #3385d9;
344 + border-color: #3385d9;
345 + }
346 + .btn-primary:hover,
347 + .fc-button-primary:hover {
348 + color: #fff;
349 + background-color: #2b6fb4;
350 + border-color: #2b6fb4;
351 + }
352 + .btn-primary:active,
353 + .btn-primary:not(:disabled):not(:disabled):active,
354 + .fc-button-primary:active,
355 + .fc-button-primary:not(:disabled):not(:disabled):active {
356 + color: #fff;
357 + background-color: #2b6fb4;
358 + border-color: #2b6fb4;
359 + }
360 +
361 + .btn-secondary,
362 + .woocommerce span.onsale,
363 + .woocommerce ul.products li.product .button,
364 + .woocommerce #respond input#submit.alt,
365 + .woocommerce a.button.alt,
366 + .woocommerce button.button.alt,
367 + .woocommerce input.button.alt,
368 + .woocommerce #review_form #respond .form-submit input,
369 + .woocommerce #respond input#submit,
370 + .woocommerce a.button,
371 + .woocommerce button.button,
372 + .woocommerce input.button {
373 + color: #fff;
374 + background-color: #656565;
375 + border-color: #656565;
376 + }
377 + .woocommerce ul.products li.product .button:focus,
378 + .woocommerce ul.products li.product .button:active,
379 + .woocommerce #respond input#submit.alt:focus,
380 + .woocommerce a.button.alt:focus,
381 + .woocommerce button.button.alt:focus,
382 + .woocommerce input.button.alt:focus,
383 + .woocommerce #respond input#submit.alt:active,
384 + .woocommerce a.button.alt:active,
385 + .woocommerce button.button.alt:active,
386 + .woocommerce input.button.alt:active,
387 + .woocommerce #review_form #respond .form-submit input:focus,
388 + .woocommerce #review_form #respond .form-submit input:active,
389 + .woocommerce #respond input#submit:active,
390 + .woocommerce a.button:active,
391 + .woocommerce button.button:active,
392 + .woocommerce input.button:active,
393 + .woocommerce #respond input#submit:focus,
394 + .woocommerce a.button:focus,
395 + .woocommerce button.button:focus,
396 + .woocommerce input.button:focus {
397 + color: #fff;
398 + background-color: #656565;
399 + border-color: #656565;
400 + }
401 + .btn-secondary:hover,
402 + .woocommerce ul.products li.product .button:hover,
403 + .woocommerce #respond input#submit.alt:hover,
404 + .woocommerce a.button.alt:hover,
405 + .woocommerce button.button.alt:hover,
406 + .woocommerce input.button.alt:hover,
407 + .woocommerce #review_form #respond .form-submit input:hover,
408 + .woocommerce #respond input#submit:hover,
409 + .woocommerce a.button:hover,
410 + .woocommerce button.button:hover,
411 + .woocommerce input.button:hover {
412 + color: #fff;
413 + background-color: #333333;
414 + border-color: #333333;
415 + }
416 + .btn-secondary:active,
417 + .btn-secondary:not(:disabled):not(:disabled):active {
418 + color: #fff;
419 + background-color: #333333;
420 + border-color: #333333;
421 + }
422 +
423 + .btn-primary-outlined {
424 + color: #3385d9;
425 + background-color: transparent;
426 + border-color: #3385d9;
427 + }
428 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
429 + color: #3385d9;
430 + background-color: transparent;
431 + border-color: #3385d9;
432 + }
433 + .btn-primary-outlined:hover {
434 + color: #fff;
435 + background-color: #2b6fb4;
436 + border-color: #2b6fb4;
437 + }
438 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
439 + color: #3385d9;
440 + background-color: rgba(26, 26, 26, 0);
441 + border-color: #2b6fb4;
442 + }
443 +
444 + .btn-secondary-outlined {
445 + color: #656565;
446 + background-color: transparent;
447 + border-color: #656565;
448 + }
449 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
450 + color: #656565;
451 + background-color: transparent;
452 + border-color: #656565;
453 + }
454 + .btn-secondary-outlined:hover {
455 + color: #fff;
456 + background-color: #333333;
457 + border-color: #333333;
458 + }
459 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
460 + color: #656565;
461 + background-color: rgba(26, 26, 26, 0);
462 + border-color: #333333;
463 + }
464 +
465 + .btn-call {
466 + color: #656565;
467 + background-color: transparent;
468 + border-color: #656565;
469 + }
470 + .btn-call:focus, .btn-call:focus:active {
471 + color: #656565;
472 + background-color: transparent;
473 + border-color: #656565;
474 + }
475 + .btn-call:hover {
476 + color: #656565;
477 + background-color: rgba(26, 26, 26, 0);
478 + border-color: #333333;
479 + }
480 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
481 + color: #656565;
482 + background-color: rgba(26, 26, 26, 0);
483 + border-color: #333333;
484 + }
485 + .icon-delete .btn-loader:after{
486 + border-color: #3385d9 transparent #3385d9 transparent
487 + }
488 +
489 + .header-v1 {
490 + background-color: #004274;
491 + border-bottom: 1px solid #004274;
492 + }
493 +
494 + .header-v1 a.nav-link {
495 + color: #ffffff;
496 + }
497 +
498 + .header-v1 a.nav-link:hover,
499 + .header-v1 a.nav-link:active {
500 + color: #00aeff;
501 + background-color: rgba(255,255,255,0.2);
502 + }
503 + .header-desktop .main-nav .nav-link {
504 + letter-spacing: 0.0px;
505 + }
506 +
507 + .header-v2 .header-top,
508 + .header-v5 .header-top,
509 + .header-v2 .header-contact-wrap {
510 + background-color: #ffffff;
511 + }
512 +
513 + .header-v2 .header-bottom,
514 + .header-v5 .header-bottom {
515 + background-color: #004274;
516 + }
517 +
518 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
519 + color: #004274;
520 + }
521 +
522 + .header-v2 .header-contact-left {
523 + color: #004274;
524 + }
525 +
526 + .header-v2 .header-bottom,
527 + .header-v2 .navbar-nav > li,
528 + .header-v2 .navbar-nav > li:first-of-type,
529 + .header-v5 .header-bottom,
530 + .header-v5 .navbar-nav > li,
531 + .header-v5 .navbar-nav > li:first-of-type {
532 + border-color: rgba(255,255,255,0.2);
533 + }
534 +
535 + .header-v2 a.nav-link,
536 + .header-v5 a.nav-link {
537 + color: #ffffff;
538 + }
539 +
540 + .header-v2 a.nav-link:hover,
541 + .header-v2 a.nav-link:active,
542 + .header-v5 a.nav-link:hover,
543 + .header-v5 a.nav-link:active {
544 + color: #00aeff;
545 + background-color: rgba(255,255,255,0.2);
546 + }
547 +
548 + .header-v2 .header-contact-right a:hover,
549 + .header-v2 .header-contact-right a:active,
550 + .header-v3 .header-contact-right a:hover,
551 + .header-v3 .header-contact-right a:active {
552 + background-color: transparent;
553 + }
554 +
555 + .header-v2 .header-social-icons a,
556 + .header-v5 .header-social-icons a {
557 + color: #004274;
558 + }
559 +
560 + .header-v3 .header-top {
561 + background-color: #004274;
562 + }
563 +
564 + .header-v3 .header-bottom {
565 + background-color: #004272;
566 + }
567 +
568 + .header-v3 .header-contact,
569 + .header-v3-mobile {
570 + background-color: #00aeef;
571 + color: #ffffff;
572 + }
573 +
574 + .header-v3 .header-bottom,
575 + .header-v3 .login-register,
576 + .header-v3 .navbar-nav > li,
577 + .header-v3 .navbar-nav > li:first-of-type {
578 + border-color: ;
579 + }
580 +
581 + .header-v3 a.nav-link,
582 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
583 + color: #ffffff;
584 + }
585 +
586 + .header-v3 a.nav-link:hover,
587 + .header-v3 a.nav-link:active {
588 + color: #00aeff;
589 + background-color: rgba(255,255,255,0.2);
590 + }
591 +
592 + .header-v3 .header-social-icons a {
593 + color: #FFFFFF;
594 + }
595 +
596 + .header-v4 {
597 + background-color: #ffffff;
598 + }
599 +
600 + .header-v4 a.nav-link {
601 + color: #000000;
602 + }
603 +
604 + .header-v4 a.nav-link:hover,
605 + .header-v4 a.nav-link:active {
606 + color: #3385d9;
607 + background-color: rgba(255,255,255,0.2);
608 + }
609 +
610 + .header-v6 .header-top {
611 + background-color: #00AEEF;
612 + }
613 +
614 + .header-v6 a.nav-link {
615 + color: #FFFFFF;
616 + }
617 +
618 + .header-v6 a.nav-link:hover,
619 + .header-v6 a.nav-link:active {
620 + color: #00aeff;
621 + background-color: rgba(255,255,255,0.2);
622 + }
623 +
624 + .header-v6 .header-social-icons a {
625 + color: #FFFFFF;
626 + }
627 +
628 + .header-mobile {
629 + background-color: #ffffff;
630 + }
631 + .header-mobile .toggle-button-left,
632 + .header-mobile .toggle-button-right {
633 + color: #000000;
634 + }
635 +
636 + .nav-mobile .logged-in-nav a,
637 + .nav-mobile .main-nav,
638 + .nav-mobile .navi-login-register {
639 + background-color: #ffffff;
640 + }
641 +
642 + .nav-mobile .logged-in-nav a,
643 + .nav-mobile .main-nav .nav-item .nav-item a,
644 + .nav-mobile .main-nav .nav-item a,
645 + .navi-login-register .main-nav .nav-item a {
646 + color: #000000;
647 + border-bottom: 1px solid #ffffff;
648 + background-color: #ffffff;
649 + }
650 +
651 + .nav-mobile .btn-create-listing,
652 + .navi-login-register .btn-create-listing {
653 + color: #fff;
654 + border: 1px solid #3385d9;
655 + background-color: #3385d9;
656 + }
657 +
658 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
659 + .navi-login-register .btn-create-listing:hover,
660 + .navi-login-register .btn-create-listing:active {
661 + color: #fff;
662 + border: 1px solid #3385d9;
663 + background-color: rgba(0, 174, 255, 0.65);
664 + }
665 +
666 + .header-transparent-wrap .header-v4 {
667 + background-color: transparent;
668 + border-bottom: 1px none rgba(255,255,255,0.3);
669 + }
670 +
671 + .header-transparent-wrap .header-v4 a {
672 + color: #ffffff;
673 + }
674 +
675 + .header-transparent-wrap .header-v4 a:hover,
676 + .header-transparent-wrap .header-v4 a:active {
677 + color: #3385d9;
678 + background-color: rgba(255, 255, 255, 0.1);
679 + }
680 +
681 + .main-nav .navbar-nav .nav-item .dropdown-menu,
682 + .login-register .login-register-nav li .dropdown-menu {
683 + background-color: rgba(255,255,255,0.95);
684 + }
685 +
686 + .login-register .login-register-nav li .dropdown-menu:before {
687 + border-left-color: rgba(255,255,255,0.95);
688 + border-top-color: rgba(255,255,255,0.95);
689 + }
690 +
691 + .main-nav .navbar-nav .nav-item .nav-item a,
692 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
693 + color: #3385d9;
694 + border-bottom: 1px solid #e6e6e6;
695 + }
696 +
697 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
698 + .main-nav .navbar-nav .nav-item .nav-item a:active,
699 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
700 + color: #2b6fb4;
701 + }
702 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
703 + .main-nav .navbar-nav .nav-item .nav-item a:active,
704 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
705 + background-color: rgba(0, 174, 255, 0.1);
706 + }
707 +
708 + .header-main-wrap .btn-create-listing {
709 + color: #3385d9;
710 + border: 1px solid #3385d9;
711 + background-color: #ffffff;
712 + }
713 +
714 + .header-main-wrap .btn-create-listing:hover,
715 + .header-main-wrap .btn-create-listing:active {
716 + color: rgba(255,255,255,1);
717 + border: 1px solid #2b6fb4;
718 + background-color: rgba(43,111,180,1);
719 + }
720 +
721 + .header-transparent-wrap .header-v4 .btn-create-listing {
722 + color: #ffffff;
723 + border: 1px solid #ffffff;
724 + background-color: rgba(255,255,255,0.2);
725 + }
726 +
727 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
728 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
729 + color: rgba(255,255,255,1);
730 + border: 1px solid #3385d9;
731 + background-color: rgba(51,133,217,1);
732 + }
733 +
734 + .header-transparent-wrap .logged-in-nav a,
735 + .logged-in-nav a {
736 + color: #000000;
737 + border-color: #e6e6e6;
738 + background-color: #FFFFFF;
739 + }
740 +
741 + .header-transparent-wrap .logged-in-nav a:hover,
742 + .header-transparent-wrap .logged-in-nav a:active,
743 + .logged-in-nav a:hover,
744 + .logged-in-nav a:active {
745 + color: #000000;
746 + background-color: rgba(204,204,204,0.15);
747 + border-color: #e6e6e6;
748 + }
749 +
750 + .form-control::-webkit-input-placeholder,
751 + .search-banner-wrap ::-webkit-input-placeholder,
752 + .advanced-search ::-webkit-input-placeholder,
753 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
754 + .overlay-search-advanced-module ::-webkit-input-placeholder {
755 + color: #a1a7a8;
756 + }
757 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
758 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
759 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
760 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
761 + color: #a1a7a8;
762 + }
763 + .form-control::placeholder,
764 + .search-banner-wrap ::-webkit-input-placeholder,
765 + .advanced-search ::-webkit-input-placeholder,
766 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
767 + .overlay-search-advanced-module ::-webkit-input-placeholder {
768 + color: #a1a7a8;
769 + }
770 +
771 + .search-banner-wrap ::-moz-placeholder,
772 + .advanced-search ::-moz-placeholder,
773 + .advanced-search-banner-wrap ::-moz-placeholder,
774 + .overlay-search-advanced-module ::-moz-placeholder {
775 + color: #a1a7a8;
776 + }
777 +
778 + .search-banner-wrap :-ms-input-placeholder,
779 + .advanced-search :-ms-input-placeholder,
780 + .advanced-search-banner-wrap ::-ms-input-placeholder,
781 + .overlay-search-advanced-module ::-ms-input-placeholder {
782 + color: #a1a7a8;
783 + }
784 +
785 + .search-banner-wrap :-moz-placeholder,
786 + .advanced-search :-moz-placeholder,
787 + .advanced-search-banner-wrap :-moz-placeholder,
788 + .overlay-search-advanced-module :-moz-placeholder {
789 + color: #a1a7a8;
790 + }
791 +
792 + .advanced-search .form-control,
793 + .advanced-search .bootstrap-select > .btn,
794 + .location-trigger,
795 + .vertical-search-wrap .form-control,
796 + .vertical-search-wrap .bootstrap-select > .btn,
797 + .step-search-wrap .form-control,
798 + .step-search-wrap .bootstrap-select > .btn,
799 + .advanced-search-banner-wrap .form-control,
800 + .advanced-search-banner-wrap .bootstrap-select > .btn,
801 + .search-banner-wrap .form-control,
802 + .search-banner-wrap .bootstrap-select > .btn,
803 + .overlay-search-advanced-module .form-control,
804 + .overlay-search-advanced-module .bootstrap-select > .btn,
805 + .advanced-search-v2 .advanced-search-btn,
806 + .advanced-search-v2 .advanced-search-btn:hover {
807 + border-color: #cccccc;
808 + }
809 +
810 + .advanced-search-nav,
811 + .search-expandable,
812 + .overlay-search-advanced-module {
813 + background-color: #FFFFFF;
814 + }
815 + .btn-search {
816 + color: #ffffff;
817 + background-color: #3385d9;
818 + border-color: #3385d9;
819 + }
820 + .btn-search:hover, .btn-search:active {
821 + color: #ffffff;
822 + background-color: #2b6fb4;
823 + border-color: #2b6fb4;
824 + }
825 + .advanced-search-btn {
826 + color: #666666;
827 + background-color: #ffffff;
828 + border-color: #dce0e0;
829 + }
830 + .advanced-search-btn:hover, .advanced-search-btn:active {
831 + color: #000000;
832 + background-color: #ffffff;
833 + border-color: #dce0e0;
834 + }
835 + .advanced-search-btn:focus {
836 + color: #666666;
837 + background-color: #ffffff;
838 + border-color: #dce0e0;
839 + }
840 + .search-expandable-label {
841 + color: #ffffff;
842 + background-color: #ff6e00;
843 + }
844 + .advanced-search-nav {
845 + padding-top: 10px;
846 + padding-bottom: 10px;
847 + }
848 + .features-list-wrap .control--checkbox,
849 + .features-list-wrap .control--radio,
850 + .range-text,
851 + .features-list-wrap .control--checkbox,
852 + .features-list-wrap .btn-features-list,
853 + .overlay-search-advanced-module .search-title,
854 + .overlay-search-advanced-module .overlay-search-module-close {
855 + color: #222222;
856 + }
857 + .advanced-search-half-map {
858 + background-color: #FFFFFF;
859 + }
860 + .advanced-search-half-map .range-text,
861 + .advanced-search-half-map .features-list-wrap .control--checkbox,
862 + .advanced-search-half-map .features-list-wrap .btn-features-list {
863 + color: #222222;
864 + }
865 +
866 + .save-search-btn {
867 + border-color: #28a745 ;
868 + background-color: #28a745 ;
869 + color: #ffffff ;
870 + }
871 + .save-search-btn:hover,
872 + .save-search-btn:active {
873 + border-color: #28a745;
874 + background-color: #28a745 ;
875 + color: #ffffff ;
876 + }
877 + .label-featured {
878 + background-color: #e22424;
879 + color: #ffffff;
880 + }
881 +
882 + .dashboard-side-wrap {
883 + background-color: #00365e;
884 + }
885 +
886 + .side-menu a {
887 + color: #ffffff;
888 + }
889 +
890 + .side-menu a.active,
891 + .side-menu .side-menu-parent-selected > a,
892 + .side-menu-dropdown a,
893 + .side-menu a:hover {
894 + color: #3385d9;
895 + }
896 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
897 + color: #2b6fb4
898 + }
899 +
900 + .detail-wrap {
901 + background-color: rgba(119,199,32,0.1);
902 + border-color: #3385d9;
903 + }
904 + .top-bar-wrap,
905 + .top-bar-wrap .dropdown-menu,
906 + .switcher-wrap .dropdown-menu {
907 + background-color: #000000;
908 + }
909 + .top-bar-wrap a,
910 + .top-bar-contact,
911 + .top-bar-slogan,
912 + .top-bar-wrap .btn,
913 + .top-bar-wrap .dropdown-menu,
914 + .switcher-wrap .dropdown-menu,
915 + .top-bar-wrap .navbar-toggler {
916 + color: #ffffff;
917 + }
918 + .top-bar-wrap a:hover,
919 + .top-bar-wrap a:active,
920 + .top-bar-wrap .btn:hover,
921 + .top-bar-wrap .btn:active,
922 + .top-bar-wrap .dropdown-menu li:hover,
923 + .top-bar-wrap .dropdown-menu li:active,
924 + .switcher-wrap .dropdown-menu li:hover,
925 + .switcher-wrap .dropdown-menu li:active {
926 + color: rgba(43,111,180,1);
927 + }
928 + .class-energy-indicator:nth-child(1) {
929 + background-color: #33a357;
930 + }
931 + .class-energy-indicator:nth-child(2) {
932 + background-color: #79b752;
933 + }
934 + .class-energy-indicator:nth-child(3) {
935 + background-color: #c3d545;
936 + }
937 + .class-energy-indicator:nth-child(4) {
938 + background-color: #fff12c;
939 + }
940 + .class-energy-indicator:nth-child(5) {
941 + background-color: #edb731;
942 + }
943 + .class-energy-indicator:nth-child(6) {
944 + background-color: #d66f2c;
945 + }
946 + .class-energy-indicator:nth-child(7) {
947 + background-color: #cc232a;
948 + }
949 + .class-energy-indicator:nth-child(8) {
950 + background-color: #cc232a;
951 + }
952 + .class-energy-indicator:nth-child(9) {
953 + background-color: #cc232a;
954 + }
955 + .class-energy-indicator:nth-child(10) {
956 + background-color: #cc232a;
957 + }
958 +
959 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
960 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
961 +
962 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
963 +
964 + .footer-top-wrap {
965 + background-color: #000000;
966 + }
967 +
968 + .footer-bottom-wrap {
969 + background-color: #000000;
970 + }
971 +
972 + .footer-top-wrap,
973 + .footer-top-wrap a,
974 + .footer-bottom-wrap,
975 + .footer-bottom-wrap a,
976 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
977 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
978 + .footer-top-wrap .blog-post-content-widget h4 a,
979 + .footer-top-wrap .blog-post-content-widget,
980 + .footer-top-wrap .form-tools .control,
981 + .footer-top-wrap .slick-dots li.slick-active button:before,
982 + .footer-top-wrap .slick-dots li button::before,
983 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
984 + color: #ffffff;
985 + }
986 +
987 + .footer-top-wrap a:hover,
988 + .footer-bottom-wrap a:hover,
989 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
990 + color: rgba(43,111,180,1);
991 + }
992 + .houzez-osm-cluster {
993 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
994 + text-align: center;
995 + color: #fff;
996 + width: 48px;
997 + height: 48px;
998 + line-height: 48px;
999 + }
1000 + .text-success{color:red!important;}
1001 +
1002 +/*.mobile-property-contact{bottom:40px;}*/
1003 +
1004 +/* Button retour en haut*/
1005 +/*
1006 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1007 +.mobile-property-contact .btn{margin-right: 60px;}
1008 +*/
1009 +
1010 +.item-tool.houzez-share{display:none;}
1011 +
1012 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1013 +
1014 +.grecaptcha-badge{display:none!important;}
1015 +
1016 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1017 +
1018 +
1019 +@media only screen and (max-width: 768px) {
1020 + /* For mobile phones: */
1021 +
1022 + /* Button retour en haut*/
1023 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1024 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1025 +}
1026 +/*# sourceURL=houzez-style-inline-css */</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="881427eaf95485eb4777e609-|49"></script><link data-asynced="1" as="style" onload="this.onload=null;this.rel='stylesheet'" rel='preload' id='leaflet-css' href='https://unpkg.com/leaflet@1.7.1/dist/leaflet.css' media='all' /><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1027 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1028 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/properties/10466" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/?p=10466' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1029 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1030 + background-image: none !important;
1031 + }
1032 + @media screen and (max-height: 1024px) {
1033 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1034 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1035 + background-image: none !important;
1036 + }
1037 + }
1038 + @media screen and (max-height: 640px) {
1039 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1040 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1041 + background-image: none !important;
1042 + }
1043 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1044 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1045 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1046 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1047 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="wp-singular property-template-default single single-property postid-10466 wp-custom-logo wp-theme-houzez translatepress-fr_CA transparent- houzez-header- elementor-default elementor-kit-6"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1048 +<a href="https://agencedelocationsherbrooke.com/">
1049 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1050 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1051 +<button class="btn toggle-button-left">
1052 +<i class="houzez-icon icon-navigation-menu"></i>
1053 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1054 +<a href="https://agencedelocationsherbrooke.com/">
1055 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1056 +</a></div></div><div class="header-mobile-right"></div></div></header><section class="content-wrap property-wrap property-detail-v6 "><div class="property-navigation-wrap"><div class="container-fluid"><ul class="property-navigation list-unstyled d-flex justify-content-between"><li class="property-navigation-item">
1057 +<a class="back-top" href="#main-wrap">
1058 +<i class="houzez-icon icon-arrow-button-circle-up"></i>
1059 +</a></li><li class="property-navigation-item">
1060 +<a class="target" href="#property-features-wrap">Inclusions</a></li><li class="property-navigation-item">
1061 +<a class="target" href="#property-description-wrap">Description</a></li><li class="property-navigation-item">
1062 +<a class="target" href="#property-address-wrap">Addresse</a></li><li class="property-navigation-item">
1063 +<a class="target" href="#property-detail-wrap">Détails</a></li><li class="property-navigation-item">
1064 +<a class="target" href="#property-video-wrap">Vidéo</a></li><li class="property-navigation-item">
1065 +<a class="target" href="#property-walkscore-wrap">Walkscore</a></li><li class="property-navigation-item">
1066 +<a class="target" href="#similar-listings-wrap">Annonces similaires</a></li></ul></div></div><div class="page-title-wrap"><div class="container"><div class="d-flex align-items-center"><div class="breadcrumb-wrap"><nav><ol class="breadcrumb"><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/"><span>Accueil</span></a></li><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/"> <span>3½</span></a></li><li class="breadcrumb-item active">1625 Grands-Monts #4</li></ol></nav></div><ul class="item-tools"><li class="item-tool houzez-favorite">
1067 +<span class="add-favorite-js item-tool-favorite" data-listid="10466">
1068 +<i class="houzez-icon icon-love-it "></i>
1069 +</span></li><li class="item-tool houzez-share">
1070 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1071 +<i class="houzez-icon icon-share"></i>
1072 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1073 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=1625+Grands-Monts+%234&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F">
1074 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&amp;t=1625+Grands-Monts+%234" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-881427eaf95485eb4777e609-="">
1075 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1076 +</a>
1077 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=1625+Grands-Monts+%234&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-881427eaf95485eb4777e609-="">
1078 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1079 +</a>
1080 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-881427eaf95485eb4777e609-="">
1081 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1082 +</a>
1083 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&title=1625+Grands-Monts+%234&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-881427eaf95485eb4777e609-="">
1084 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1085 +</a>
1086 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#f685999b93999893b6938e979b869a93d895999bc9a583949c939582cbc7c0c4c3d6b18497989285dbbb99988285d6d5c2d09499928fcb9e82828685d3c5b7d3c4b0d3c4b097919398959392939a999597829f9998859e9384948499999d93d895999bd3c4b0868499869384828fd3c4b0c7c0c4c3db918497989285db9b99988285dbc2d3c4b0">
1087 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1088 +</a></div></li><li class="item-tool houzez-print " data-propid="10466">
1089 +<span class="item-tool-compare">
1090 +<i class="houzez-icon icon-print-text"></i>
1091 +</span></li></ul></div><div class="d-flex align-items-center property-title-price-wrap"><div class="page-title"><h1>1625 Grands-Monts #4</h1></div><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul></div><div class="property-labels-wrap">
1092 +<span class="label-featured label">Vedette</span><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1093 +Mont Bellevue
1094 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1095 +Libre maintenant
1096 +</a></div>
1097 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>1625, Rue des Grands-Monts, Ascot, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3Y9, Canada</address></div></div><div class="property-top-wrap"><div class="property-banner"><div class="visible-on-mobile"><div class="tab-content" id="pills-tabContent"><div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-scaled.jpeg);"><div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 6</div><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1098 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1099 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1100 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [1625 Grands-Monts #4]</textarea></div>
1101 +<input type="hidden" name="target_email" value="&#99;&#97;t&#104;e&#114;&#105;n&#101;.&#112;errea&#117;l&#116;&#64;&#112;&#114;es&#116;ip&#108;&#101;&#120;.co&#109;">
1102 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1103 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/"/>
1104 +<input type="hidden" name="property_title" value="1625 Grands-Monts #4"/>
1105 +<input type="hidden" name="property_id" value="ADLS-10466"/>
1106 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1107 +<input type="hidden" name="listing_id" value="10466">
1108 +<input type="hidden" name="is_listing_form" value="yes">
1109 +<input type="hidden" name="agent_id" value="156">
1110 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1111 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1112 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1113 +</button></form></div></div><a class="houzez-photoswipe-trigger property-banner-trigger" href="#"></a></div><div class="tab-pane houzez-top-area-video " id="pills-video" role="tabpanel" aria-labelledby="pills-video-tab">
1114 +<iframe data-lazyloaded="1" src="about:blank" title="1625 Grands-Monts #4, Sherbrooke, Quebec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/lJqSLGq1RTU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div><div class="container hidden-on-mobile"><div class="row"><div class="col-md-8">
1115 +<a href="#" data-slider-no="1" data-image="0" class="houzez-photoswipe-trigger img-wrap-1" >
1116 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-758x564.jpeg" alt="" width="758" height="564" />
1117 +</a></div><div class="col-md-4">
1118 +<a href="#" data-slider-no="2" data-image="1" class="houzez-photoswipe-trigger swipebox img-wrap-2">
1119 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224028.416-758x564.jpeg" alt="" width="758" height="564" />
1120 +</a>
1121 +<a href="#" data-slider-no="3" data-image="2" class="houzez-photoswipe-trigger swipebox img-wrap-3"><div class="img-wrap-3-text">3 Plus</div>
1122 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224026.249-758x564.jpeg" alt="" width="758" height="564" />
1123 +</a></div>
1124 +<a href="#" class="img-wrap-1 gallery-hidden">
1125 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224031.334-758x564.jpeg" alt="" width="758" height="564" />
1126 +</a>
1127 +<a href="#" class="img-wrap-1 gallery-hidden">
1128 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224025.351-758x564.jpeg" alt="" width="758" height="564" />
1129 +</a>
1130 +<a href="#" class="img-wrap-1 gallery-hidden">
1131 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224032.728-758x564.jpeg" alt="" width="758" height="564" />
1132 +</a><div class="col-md-12"><div class="block-wrap"><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>3½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-beds">Chambre</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div></div></div><div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"><div class="pswp__bg"></div><div class="pswp__scroll-wrap"><div class="pswp__container"><div class="pswp__item"></div><div class="pswp__item"></div><div class="pswp__item"></div></div><div class="pswp__ui pswp__ui--hidden"><div class="pswp__top-bar"><div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button><button class="pswp__button pswp__button--share" title="Share"></button><button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button><button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button><div class="pswp__preloader"><div class="pswp__preloader__icn"><div class="pswp__preloader__cut"><div class="pswp__preloader__donut"></div></div></div></div></div><div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"><div class="pswp__share-tooltip"></div></div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
1133 +</button><button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
1134 +</button><div class="pswp__caption"><div class="pswp__caption__center"></div></div></div></div></div> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">initPhotoswipeDomForJson({"1":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224027.371-scaled.jpeg","w":1920,"h":2560},"2":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224028.416-scaled.jpeg","w":1920,"h":2560},"3":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224026.249-scaled.jpeg","w":1920,"h":2560},"4":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224031.334-scaled.jpeg","w":1920,"h":2560},"5":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224025.351-scaled.jpeg","w":1920,"h":2560},"6":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T224032.728-scaled.jpeg","w":1920,"h":2560}});function initPhotoswipeDomForJson(imageData){var pswpElement=document.querySelectorAll('.pswp')[0];var items=[],item;jQuery.each(imageData,function(i,obj){item={src:obj.src,w:obj.w,h:obj.h};items.push(item)});var options={index:0};var x=document.querySelectorAll(".houzez-photoswipe-trigger");for(let i=0;i<x.length;i++){x[i].addEventListener("click",function(){openGallery(x[i].dataset.image)})}
1135 +function openGallery(j){options.index=parseInt(j);options.history=!1;gallery=new PhotoSwipe(pswpElement,PhotoSwipeUI_Default,items,options);gallery.init()}}</script> </div><div class="container"><div class="row"><div class="col-lg-12 col-md-12 bt-full-width-content-wrap"><div class="property-view"><div class="visible-on-mobile"><div class="mobile-top-wrap"><div class="mobile-property-tools clearfix"><ul class="nav nav-pills houzez-media-tabs-4" id="pills-tab" role="tablist"><li class="nav-item">
1136 +<a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1137 +<i class="houzez-icon icon-picture-sun"></i>
1138 +</a></li><li class="nav-item">
1139 +<a class="nav-link " id="pills-video-tab" data-toggle="pill" href="#pills-video" role="tab" aria-controls="pills-video" aria-selected="true">
1140 +<i class="houzez-icon icon-video-player-movie-1"></i>
1141 +</a></li></ul><ul class="item-tools"><li class="item-tool houzez-favorite">
1142 +<span class="add-favorite-js item-tool-favorite" data-listid="10466">
1143 +<i class="houzez-icon icon-love-it "></i>
1144 +</span></li><li class="item-tool houzez-share">
1145 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1146 +<i class="houzez-icon icon-share"></i>
1147 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1148 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=1625+Grands-Monts+%234&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F">
1149 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&amp;t=1625+Grands-Monts+%234" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-881427eaf95485eb4777e609-="">
1150 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1151 +</a>
1152 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=1625+Grands-Monts+%234&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-881427eaf95485eb4777e609-="">
1153 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1154 +</a>
1155 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-881427eaf95485eb4777e609-="">
1156 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1157 +</a>
1158 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&title=1625+Grands-Monts+%234&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-881427eaf95485eb4777e609-="">
1159 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1160 +</a>
1161 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#a6d5c9cbc3c9c8c3e6c3dec7cbd6cac388c5c9cb99f5d3c4ccc3c5d29b9790949386e1d4c7c8c2d58bebc9c8d2d586859280c4c9c2df9bced2d2d6d58395e78394e08394e0c7c1c3c8c5c3c2c3cac9c5c7d2cfc9c8d5cec3d4c4d4c9c9cdc388c5c9cb8394e0d6d4c9d6c3d4d2df8394e0979094938bc1d4c7c8c2d58bcbc9c8d2d58b928394e0">
1162 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1163 +</a></div></li><li class="item-tool houzez-print " data-propid="10466">
1164 +<span class="item-tool-compare">
1165 +<i class="houzez-icon icon-print-text"></i>
1166 +</span></li></ul></div><div class="mobile-property-title clearfix">
1167 +<span class="label-featured label">Vedette</span> <span class="labels-wrap labels-right">
1168 +<a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1169 +Mont Bellevue
1170 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1171 +Libre maintenant
1172 +</a>
1173 +</span>
1174 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>1625, Rue des Grands-Monts, Ascot, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3Y9, Canada</address><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul></div></div><div class="property-overview-wrap property-section-wrap" id="property-overview-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Apperçu</h2><div><strong># Annonce:</strong> ADLS-10466</div></div><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>3½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-beds">Chambre</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div><div class="property-features-wrap property-section-wrap" id="property-features-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Inclusions</h2></div><div class="block-content-wrap"><ul class="list-3-cols list-unstyled"><li><i class="fas fa-cat mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/chat-permis/">Chat permis</a></li><li><i class="fas fa-thermometer-half mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/chauffage/">Chauffage</a></li><li><i class="fas fa-snowplow mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/deneigement/">Déneigement</a></li><li><i class="fas fa-shower mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/eau-chaude/">Eau chaude</a></li><li><i class="fas fa-bolt mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/electricite/">Électricité</a></li><li><i class="houzez-icon icon-check-circle-1 mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/entre-laveuse-secheuse/">Entré laveuse/sécheuse</a></li><li><i class="houzez-icon icon-check-circle-1 mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/refregerateur-four/">Réfrégérateur/Four</a></li><li><i class="fas fa-fan mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/thermopompe/">Thermopompe</a></li><li><i class="fas fa-wifi mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/wifi/">Wi-Fi</a></li></ul></div></div></div><div class="property-description-wrap property-section-wrap" id="property-description-wrap"><div class="block-wrap"><div class="block-title-wrap"><h2>Description</h2></div><div class="block-content-wrap"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true" data-pm-slice="1 3 []"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">3 ½ à louer – Disponible maintenant</strong></p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">895$/mois – Chauffage, eau chaude, électricité et internet inclus</strong></p><ul class="ak-ul" data-prosemirror-content-type="node" data-prosemirror-node-name="bulletList" data-prosemirror-node-block="true"><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Logement non-fumeur</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Four, frigidaire, laveuse, micro-onde, base de lit et matelas inclus</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Demi sous-sol</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">1 espace de stationnement inclus</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Un chat accepté (chiens non permis)</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Enquête de crédit obligatoire</p></li></ul></div></div></div><div class="property-address-wrap property-section-wrap" id="property-address-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Addresse</h2><a class="btn btn-primary btn-slim" href="https://maps.google.com/?q=1625,%20Rue%20des%20Grands-Monts,%20Ascot,%20Mont-Bellevue,%20Les%20Nations,%20Sherbrooke,%20Estrie,%20Québec,%20J1H%203Y9,%20Canada" target="_blank"><i class="houzez-icon icon-maps mr-1"></i> Ouvrir sur Google Maps</a></div><div class="block-content-wrap"><ul class="list-2-cols list-unstyled"><li class="detail-address"><strong>Addresse</strong> <span>1625, Rue des Grands-Monts, Ascot, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3Y9, Canada</span></li><li class="detail-zip"><strong>Zip / Code postal</strong> <span>J1H 3Y9</span></li></ul></div><div id="houzez-single-listing-map" class="block-map-wrap"></div></div></div><div class="property-detail-wrap property-section-wrap" id="property-detail-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Détails</h2>
1175 +<span class="small-text grey"><i class="houzez-icon icon-calendar-3 mr-1"></i> Mise à jour le juillet 10, 2026 à 2:42 am</span></div><div class="block-content-wrap"><div class="detail-wrap"><ul class="list-2-cols list-unstyled"><li>
1176 +<strong># Annonce:</strong>
1177 +<span>ADLS-10466</span></li><li>
1178 +<strong>Prix:</strong>
1179 +<span> 895$/mensuel</span></li><li>
1180 +<strong>Chambre:</strong>
1181 +<span>1</span></li><li>
1182 +<strong>Pièces:</strong>
1183 +<span>3</span></li><li>
1184 +<strong>Salle de bain:</strong>
1185 +<span>1</span></li><li>
1186 +<strong>Stationnement:</strong>
1187 +<span>1</span></li><li class="prop_type">
1188 +<strong>Type:</strong>
1189 +<span>3½</span></li><li class="prop_status">
1190 +<strong>Statut:</strong>
1191 +<span>Mont Bellevue</span></li></ul></div></div></div></div><div class="property-video-wrap property-section-wrap" id="property-video-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Vidéo</h2></div><div class="block-content-wrap"><div class="block-video-wrap">
1192 +<iframe data-lazyloaded="1" src="about:blank" title="1625 Grands-Monts #4, Sherbrooke, Quebec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/lJqSLGq1RTU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div></div><div class="property-walkscore-wrap property-section-wrap" id="property-walkscore-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Walkscore</h2></div><div class="block-content-wrap"><div id="ws-walkscore-tile"></div></div></div></div><div class="property-contact-agent-wrap property-section-wrap" id="property-contact-agent-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Coordonnées</h2><a class="btn btn-primary btn-slim" href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/" target="_blank">Voir les annonces</a></div><div class="block-content-wrap"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="80" height="80"></a></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-phone-wrap clearfix"></li></ul></div></div><div class="block-title-wrap"><h3>Renseignez-vous sur cette propriété</h3></div><div class="form_messages"></div><div class="row"><div class="col-md-6 col-sm-12"><div class="form-group">
1193 +<label>Nom</label>
1194 +<input class="form-control" name="name" placeholder="Entrez votre nom" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1195 +<label>Téléphone</label>
1196 +<input class="form-control" name="mobile" placeholder="Entrez votre numéro de téléphone" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1197 +<label>Courriel</label>
1198 +<input class="form-control" name="email" placeholder="Entrer votre courriel" type="email"></div></div><div class="col-sm-12 col-xs-12"><div class="form-group form-group-textarea">
1199 +<label>Message</label><textarea class="form-control hz-form-message" name="message" rows="5" placeholder="Entrez votre message">Bonjour, je suis intéressé par [1625 Grands-Monts #4]</textarea></div></div><div class="col-sm-12 col-xs-12">
1200 +<input type="hidden" name="target_email" value="&#99;&#97;&#116;h&#101;r&#105;ne.p&#101;r&#114;e&#97;&#117;l&#116;&#64;p&#114;es&#116;iple&#120;&#46;&#99;om">
1201 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1202 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/"/>
1203 +<input type="hidden" name="property_title" value="1625 Grands-Monts #4"/>
1204 +<input type="hidden" name="property_id" value="ADLS-10466"/>
1205 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1206 +<input type="hidden" class="is_bottom" value="bottom">
1207 +<input type="hidden" name="listing_id" value="10466">
1208 +<input type="hidden" name="is_listing_form" value="yes">
1209 +<input type="hidden" name="agent_id" value="156">
1210 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><button class="houzez_agent_property_form btn btn-secondary btn-sm-full-width">
1211 +<span class="btn-loader houzez-loader-js"></span> Demande d'informations
1212 +</button></div></div></form></div></div></div><div id="similar-listings-wrap" class="similar-property-wrap listing-v1"><div class="block-title-wrap"><h2>Annonces similaires</h2></div><div class="listing-view list-view card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10485" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165930.293-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165930.293-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165928.922-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165926.097-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165924.591-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165923.134-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-10T165921.885-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1213 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1214 +Mont Bellevue
1215 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1216 +Libre maintenant
1217 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1218 +<span class="hz-show-lightbox-js" data-listid="10485" data-toggle="tooltip" data-placement="top" title="Aperçu">
1219 +<i class="houzez-icon icon-expand-3"></i>
1220 +</span></li><li class="item-tool item-favorite">
1221 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10485">
1222 +<i class="houzez-icon icon-love-it "></i>
1223 +</span></li><li class="item-tool item-compare">
1224 +<span class="houzez_compare compare-10485 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10485" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-592x444.jpeg">
1225 +<i class="houzez-icon icon-add-circle"></i>
1226 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1227 +<a href="https://agencedelocationsherbrooke.com/property/951-fabre/" class="listing-featured-thumb hover-effect">
1228 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-10T165930.293-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1229 +Mont Bellevue
1230 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1231 +Libre maintenant
1232 +</a></div><h2 class="item-title">
1233 +<a href="https://agencedelocationsherbrooke.com/property/951-fabre/">951 Fabre</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">895$/mensuel</li></ul> <address class="item-address">951, Rue Fabre, Les Nations, Sherbrooke, Estrie, Québec, J1H 4R6, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lit:</span> <span class="hz-figure">1</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>3½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/951-fabre/">
1234 +Détails</a><div class="item-author">
1235 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1236 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1237 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1238 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10458" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223210.052-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223210.052-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223207.657-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223206.033-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223205.083-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-09T223203.875-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1239 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1240 +Mont Bellevue
1241 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1242 +Libre maintenant
1243 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1244 +<span class="hz-show-lightbox-js" data-listid="10458" data-toggle="tooltip" data-placement="top" title="Aperçu">
1245 +<i class="houzez-icon icon-expand-3"></i>
1246 +</span></li><li class="item-tool item-favorite">
1247 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10458">
1248 +<i class="houzez-icon icon-love-it "></i>
1249 +</span></li><li class="item-tool item-compare">
1250 +<span class="houzez_compare compare-10458 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10458" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-592x444.jpeg">
1251 +<i class="houzez-icon icon-add-circle"></i>
1252 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1253 +<a href="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/" class="listing-featured-thumb hover-effect">
1254 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T223210.052-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1255 +Mont Bellevue
1256 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1257 +Libre maintenant
1258 +</a></div><h2 class="item-title">
1259 +<a href="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/">1351 Lalemant #5</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul> <address class="item-address">1351, Rue Lalemant, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 2A9, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lit:</span> <span class="hz-figure">1</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>3½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/1351-lalemant-5/">
1260 +Détails</a><div class="item-author">
1261 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1262 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1263 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1264 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10451" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172902.091-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172902.091-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172900.846-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172859.886-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172858.813-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172855.820-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172852.674-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172854.696-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172853.719-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1265 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1266 +Mont Bellevue
1267 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1268 +Libre maintenant
1269 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">795$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1270 +<span class="hz-show-lightbox-js" data-listid="10451" data-toggle="tooltip" data-placement="top" title="Aperçu">
1271 +<i class="houzez-icon icon-expand-3"></i>
1272 +</span></li><li class="item-tool item-favorite">
1273 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10451">
1274 +<i class="houzez-icon icon-love-it "></i>
1275 +</span></li><li class="item-tool item-compare">
1276 +<span class="houzez_compare compare-10451 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10451" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg">
1277 +<i class="houzez-icon icon-add-circle"></i>
1278 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1279 +<a href="https://agencedelocationsherbrooke.com/property/905-courcelette/" class="listing-featured-thumb hover-effect">
1280 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172902.091-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1281 +Mont Bellevue
1282 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1283 +Libre maintenant
1284 +</a></div><h2 class="item-title">
1285 +<a href="https://agencedelocationsherbrooke.com/property/905-courcelette/">905 Courcelette</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">795$/mensuel</li></ul> <address class="item-address">Rue de Courcelette, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3V3, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lit:</span> <span class="hz-figure">1</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>3½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/905-courcelette/">
1286 +Détails</a><div class="item-author">
1287 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1288 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1289 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1290 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></section></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1291 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1292 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1293 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1294 +<i class="houzez-icon icon-arrow-up-1"></i>
1295 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1296 +<button class="compare-property-label" style="display: none;">
1297 +<span class="compare-count compare-label"></span>
1298 +<i class="houzez-icon icon-move-left-right"></i>
1299 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1300 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1301 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1302 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1303 +<span aria-hidden="true">&times;</span>
1304 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1305 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1306 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1307 +<label class="control control--checkbox flex-grow-1">
1308 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1309 +</label>
1310 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/property/1625-grands-monts-4/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1311 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/?login=success">
1312 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1313 +<span class="btn-loader houzez-loader-js"></span> Connexion
1314 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1315 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1316 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1317 +<span aria-hidden="true">&times;</span>
1318 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1319 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1320 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/property/1625-grands-monts-4/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1321 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><div class="mobile-property-contact visible-on-mobile"><div class="d-flex justify-content-between"><div class="agent-details flex-grow-1"><div class="d-flex align-items-center"><div class="agent-image">
1322 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" width="50" height="50" alt="Catherine Perreault"></div><ul class="agent-information list-unstyled"><li class="agent-name">
1323 +Catherine Perreault</li></ul></div></div>
1324 +<button class="btn btn-secondary" data-toggle="modal" data-target="#mobile-property-form">
1325 +<i class="houzez-icon icon-messages-bubble"></i>
1326 +</button></div></div><div class="modal fade mobile-property-form" id="mobile-property-form"><div class="modal-dialog" role="document"><div class="modal-content">
1327 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1328 +<span aria-hidden="true">&times;</span>
1329 +</button><div class="modal-body"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1330 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1331 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1332 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [1625 Grands-Monts #4]</textarea></div>
1333 +<input type="hidden" name="target_email" value="c&#97;&#116;h&#101;ri&#110;e.&#112;&#101;&#114;&#114;eau&#108;t&#64;p&#114;es&#116;&#105;&#112;l&#101;&#120;&#46;&#99;&#111;&#109;">
1334 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1335 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/"/>
1336 +<input type="hidden" name="property_title" value="1625 Grands-Monts #4"/>
1337 +<input type="hidden" name="property_id" value="ADLS-10466"/>
1338 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1339 +<input type="hidden" name="listing_id" value="10466">
1340 +<input type="hidden" name="is_listing_form" value="yes">
1341 +<input type="hidden" name="agent_id" value="156">
1342 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1343 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1344 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1345 +</button></form></div></div></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div class="modal-content"><div class="modal-header"><div class="d-flex align-items-center"><div class="lightbox-logo">
1346 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white.png" alt="1625 Grands-Monts #4" width="127" height="32" /></div><div class="lightbox-title flex-grow-1"></div><div class="lightbox-tools"><ul class="list-inline"><li class="list-inline-item btn-favorite">
1347 +<a class="add-favorite-js" data-listid="10466" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Favoris</span></a></li><li class="list-inline-item btn-share">
1348 +<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Partager</span></a><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1349 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=1625+Grands-Monts+%234&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F">
1350 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&amp;t=1625+Grands-Monts+%234" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-881427eaf95485eb4777e609-="">
1351 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1352 +</a>
1353 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=1625+Grands-Monts+%234&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-881427eaf95485eb4777e609-="">
1354 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1355 +</a>
1356 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-881427eaf95485eb4777e609-="">
1357 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1358 +</a>
1359 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1625-grands-monts-4%2F&title=1625+Grands-Monts+%234&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-881427eaf95485eb4777e609-="">
1360 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1361 +</a>
1362 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#40332f2d252f2e25002538212d302c256e232f2d7f1335222a2523347d71767275600732212e24336d0d2f2e343360637466222f24397d28343430336573016572066572062127252e232524252c2f232134292f2e3328253222322f2f2b256e232f2d65720630322f3025323439657206717672756d2732212e24336d2d2f2e34336d74657206">
1363 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1364 +</a></div></li><li class="list-inline-item btn-email">
1365 +<a href="#"><i class="houzez-icon icon-envelope"></i></a></li></ul></div></div>
1366 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1367 +<span aria-hidden="true">&times;</span>
1368 +</button></div><div class="modal-body clearfix"><div class="lightbox-gallery-wrap ">
1369 +<a class="btn-expand">
1370 +<i class="houzez-icon icon-expand-3"></i>
1371 +</a><div class="lightbox-gallery"><div id="lightbox-slider-js" class="lightbox-slider"><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-scaled.jpeg" alt="" title="image - 2026-07-09T224027.371" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224028.416-scaled.jpeg" alt="" title="image - 2026-07-09T224028.416" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224026.249-scaled.jpeg" alt="" title="image - 2026-07-09T224026.249" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224031.334-scaled.jpeg" alt="" title="image - 2026-07-09T224031.334" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224025.351-scaled.jpeg" alt="" title="image - 2026-07-09T224025.351" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224032.728-scaled.jpeg" alt="" title="image - 2026-07-09T224032.728" width="1920" height="2560" /></div></div></div></div><div class="lightbox-form-wrap"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1372 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1373 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1374 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [1625 Grands-Monts #4]</textarea></div>
1375 +<input type="hidden" name="target_email" value="&#99;&#97;&#116;&#104;&#101;r&#105;n&#101;&#46;pe&#114;r&#101;&#97;u&#108;t&#64;p&#114;&#101;s&#116;&#105;pl&#101;&#120;&#46;com">
1376 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1377 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/"/>
1378 +<input type="hidden" name="property_title" value="1625 Grands-Monts #4"/>
1379 +<input type="hidden" name="property_id" value="ADLS-10466"/>
1380 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1381 +<input type="hidden" name="listing_id" value="10466">
1382 +<input type="hidden" name="is_listing_form" value="yes">
1383 +<input type="hidden" name="agent_id" value="156">
1384 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1385 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1386 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1387 +</button></form></div></div></div></div><div class="modal-footer"></div></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1388 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="881427eaf95485eb4777e609-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1389 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="bootstrap-datepicker.fr-CA-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr-CA.min.js"></script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com/property/1625-grands-monts-4/","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_nav","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"fr-CA","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="leaflet-js" type="litespeed/javascript" data-src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script> <script id="houzez-single-property-map-js-extra" type="litespeed/javascript">var houzez_single_property_map={"title":"1625 Grands-Monts #4","price":" 895$/mensuel","property_id":"10466","pricePin":"895$/mensuel","property_type":"3\u00bd","address":"1625, Rue des Grands-Monts, Ascot, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Qu\u00e9bec, J1H 3Y9, Canada","lat":"45.3820149","lng":"-71.8964360","term_id":"100","marker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","retinaMarker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","thumbnail":"https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-09T224027.371-120x90.jpeg"};var houzez_map_options={"markerPricePins":"no","single_map_zoom":"12","map_type":"roadmap","map_pin_type":"marker","googlemap_stype":"","closeIcon":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/close.png","infoWindowPlac":"https://placehold.it/120x90&text=Agence+de+location+Sherbrooke"}</script> <script id="houzez-walkscore-js-before" type="litespeed/javascript">var ws_wsid=' 65c6f7843483895d5d5ef58e01b2d789';var ws_address='1625, Rue des Grands-Monts, Ascot, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 3Y9, Canada';var ws_format='wide';var ws_width='650';var ws_width='100%';var ws_height='400'</script> <script id="houzez-walkscore-js" type="litespeed/javascript" data-src="https://www.walkscore.com/tile/show-walkscore-tile.php"></script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1390 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="881427eaf95485eb4777e609-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="881427eaf95485eb4777e609-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="881427eaf95485eb4777e609-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/7eb3e0d215c9a5e36449ede9b8431764.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="881427eaf95485eb4777e609-|49" defer></script></body></html>
1391 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:31:39 -->
1392 +
1393 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:31:39 -->
1394 +<!-- Guest Mode -->
1395 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/ed93c1ba2200a9da666c9871ea0b8f1b.css -->
1396 +<!-- QUIC.cloud UCSS loaded ✅ /ucss/8a1cd21e8e73e3be9b0e43522ed62790.css -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/81c1ee29c772da08a271.html +1424 −0
@@ -0,0 +1,1424 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="29f9d977ede5c7d640473f6d-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>1206 Françoise-Gaudet-Smet - Agence de location Sherbrooke</title><meta name="description" content="5 ½ à louer – Disponible dès maintenant! Caractéristiques : 1 espace de stationnement inclus 1 ou 2 chat tolérer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l’immeuble) Aucun service inclus (électricité, chauffage, etc.) Conditions : Enquête de crédit obligatoire Pour obtenir plus d’informations ou planifier une visite," /><meta name="robots" content="max-image-preview:large" /><meta name="author" content="Catherine Perreault"/><link rel="canonical" href="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="article" /><meta property="og:title" content="1206 Françoise-Gaudet-Smet - Agence de location Sherbrooke" /><meta property="og:description" content="5 ½ à louer – Disponible dès maintenant! Caractéristiques : 1 espace de stationnement inclus 1 ou 2 chat tolérer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l’immeuble) Aucun service inclus (électricité, chauffage, etc.) Conditions : Enquête de crédit obligatoire Pour obtenir plus d’informations ou planifier une visite," /><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-scaled.jpeg" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-scaled.jpeg" /><meta property="og:image:width" content="1920" /><meta property="og:image:height" content="2560" /><meta property="article:published_time" content="2026-07-28T20:43:45+00:00" /><meta property="article:modified_time" content="2026-07-28T20:43:45+00:00" /><meta property="article:publisher" content="https://www.facebook.com/agencedelocationsherbrooke" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="1206 Françoise-Gaudet-Smet - Agence de location Sherbrooke" /><meta name="twitter:description" content="5 ½ à louer – Disponible dès maintenant! Caractéristiques : 1 espace de stationnement inclus 1 ou 2 chat tolérer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l’immeuble) Aucun service inclus (électricité, chauffage, etc.) Conditions : Enquête de crédit obligatoire Pour obtenir plus d’informations ou planifier une visite," /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1206-francoise-gaudet-smet\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","position":2,"name":"Properties","item":"https:\/\/agencedelocationsherbrooke.com\/property\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","name":"5\u00bd"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","position":3,"name":"5\u00bd","item":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1206-francoise-gaudet-smet\/#listItem","name":"1206 Fran\u00e7oise-Gaudet-Smet"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1206-francoise-gaudet-smet\/#listItem","position":4,"name":"1206 Fran\u00e7oise-Gaudet-Smet","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","name":"5\u00bd"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1206-francoise-gaudet-smet\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1206-francoise-gaudet-smet\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"Person","@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author","url":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/","name":"Catherine Perreault","image":{"@type":"ImageObject","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1206-francoise-gaudet-smet\/#authorImage","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/litespeed\/avatar\/fdca211e8cbd2f88b79d873de06d8fa9.jpg?ver=1785951645","width":96,"height":96,"caption":"Catherine Perreault"}},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1206-francoise-gaudet-smet\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/property\/1206-francoise-gaudet-smet\/","name":"1206 Fran\u00e7oise-Gaudet-Smet - Agence de location Sherbrooke","description":"5 \u00bd \u00e0 louer \u2013 Disponible d\u00e8s maintenant! Caract\u00e9ristiques : 1 espace de stationnement inclus 1 ou 2 chat tol\u00e9rer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l\u2019immeuble) Aucun service inclus (\u00e9lectricit\u00e9, chauffage, etc.) Conditions : Enqu\u00eate de cr\u00e9dit obligatoire Pour obtenir plus d\u2019informations ou planifier une visite,","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1206-francoise-gaudet-smet\/#breadcrumblist"},"author":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"creator":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164102.079-scaled.jpeg","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1206-francoise-gaudet-smet\/#mainImage","width":1920,"height":2560},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1206-francoise-gaudet-smet\/#mainImage"},"datePublished":"2026-07-28T20:43:45+00:00","dateModified":"2026-07-28T20:43:45+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//unpkg.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&#038;format=xml" /><meta property="og:title" content="1206 Françoise-Gaudet-Smet"/><meta property="og:description" content="5 ½ à louer – Disponible dès maintenant!
2 +Caractéristiques :1 espace de stationnement inclus1 ou 2 chat tolérerChiens interditsNon-fumeur (il " /><meta property="og:type" content="article"/><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/"/><meta property="og:site_name" content="Agence de location Sherbrooke"/><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-scaled.jpeg"/><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
3 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}body{font-size:15px;font-family:Roboto,sans-serif}body{background-color:#f8f8f8}body{color:#222}body{line-height:25px;font-weight:300;text-transform:none}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}body{background-color:#f7f7f7}body{color:#222}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="29f9d977ede5c7d640473f6d-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/ucss/eea72f6b21efb72033c18290725b8620.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="wp-block-library-inline-css">:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
4 +
5 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */</style><style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
6 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
7 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
8 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
9 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
10 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
11 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
12 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
13 + .container {
14 + max-width: 1210px;
15 + }
16 + }
17 + .label-color-87 {
18 + background-color: #31af00;
19 + }
20 +
21 + .status-color-28 {
22 + background-color: #dd9933;
23 + }
24 +
25 + .status-color-88 {
26 + background-color: #b7ba00;
27 + }
28 +
29 + .status-color-95 {
30 + background-color: #dd3333;
31 + }
32 +
33 + .status-color-94 {
34 + background-color: #1e73be;
35 + }
36 +
37 + .status-color-89 {
38 + background-color: #31af00;
39 + }
40 +
41 + body {
42 + font-family: Poppins;
43 + font-size: 16px;
44 + font-weight: 400;
45 + line-height: 24px;
46 + text-transform: none;
47 + }
48 + .main-nav,
49 + .dropdown-menu,
50 + .login-register,
51 + .btn.btn-create-listing,
52 + .logged-in-nav,
53 + .btn-phone-number {
54 + font-family: Poppins;
55 + font-size: 14px;
56 + font-weight: 400;
57 + text-align: left;
58 + text-transform: uppercase;
59 + }
60 +
61 + .btn,
62 + .form-control,
63 + .bootstrap-select .text,
64 + .sort-by-title,
65 + .woocommerce ul.products li.product .button {
66 + font-family: Poppins;
67 + font-size: 16px;
68 + }
69 +
70 + h1, h2, h3, h4, h5, h6, .item-title {
71 + font-family: Poppins;
72 + font-weight: 400;
73 + text-transform: capitalize;
74 + }
75 +
76 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
77 + font-weight: 400;
78 + text-transform: capitalize;
79 + text-align: inherit;
80 + }
81 +
82 + .top-bar-wrap {
83 + font-family: Poppins;
84 + font-size: 15px;
85 + font-weight: 300;
86 + line-height: 25px;
87 + text-align: left;
88 + text-transform: none;
89 + }
90 + .footer-wrap {
91 + font-family: Poppins;
92 + font-size: 14px;
93 + font-weight: 300;
94 + line-height: 25px;
95 + text-align: left;
96 + text-transform: none;
97 + }
98 +
99 + .header-v1 .header-inner-wrap,
100 + .header-v1 .navbar-logged-in-wrap {
101 + line-height: 60px;
102 + height: 60px;
103 + }
104 + .header-v2 .header-top .navbar {
105 + height: 110px;
106 + }
107 +
108 + .header-v2 .header-bottom .header-inner-wrap,
109 + .header-v2 .header-bottom .navbar-logged-in-wrap {
110 + line-height: 54px;
111 + height: 54px;
112 + }
113 +
114 + .header-v3 .header-top .header-inner-wrap,
115 + .header-v3 .header-top .header-contact-wrap {
116 + height: 80px;
117 + line-height: 80px;
118 + }
119 + .header-v3 .header-bottom .header-inner-wrap,
120 + .header-v3 .header-bottom .navbar-logged-in-wrap {
121 + line-height: 54px;
122 + height: 54px;
123 + }
124 + .header-v4 .header-inner-wrap,
125 + .header-v4 .navbar-logged-in-wrap {
126 + line-height: 90px;
127 + height: 90px;
128 + }
129 + .header-v5 .header-top .header-inner-wrap,
130 + .header-v5 .header-top .navbar-logged-in-wrap {
131 + line-height: 110px;
132 + height: 110px;
133 + }
134 + .header-v5 .header-bottom .header-inner-wrap {
135 + line-height: 54px;
136 + height: 54px;
137 + }
138 + .header-v6 .header-inner-wrap,
139 + .header-v6 .navbar-logged-in-wrap {
140 + height: 60px;
141 + line-height: 60px;
142 + }
143 + @media (min-width: 1200px) {
144 + .header-v5 .header-top .container {
145 + max-width: 1170px;
146 + }
147 + }
148 +
149 + body,
150 + .main-wrap,
151 + .fw-property-documents-wrap h3 span,
152 + .fw-property-details-wrap h3 span {
153 + background-color: #f7f7f7;
154 + }
155 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
156 + background-color: #ffffff;
157 + }
158 +
159 + body,
160 + .form-control,
161 + .bootstrap-select .text,
162 + .item-title a,
163 + .listing-tabs .nav-tabs .nav-link,
164 + .item-wrap-v2 .item-amenities li span,
165 + .item-wrap-v2 .item-amenities li:before,
166 + .item-parallax-wrap .item-price-wrap,
167 + .list-view .item-body .item-price-wrap,
168 + .property-slider-item .item-price-wrap,
169 + .page-title-wrap .item-price-wrap,
170 + .agent-information .agent-phone span a,
171 + .property-overview-wrap ul li strong,
172 + .mobile-property-title .item-price-wrap .item-price,
173 + .fw-property-features-left li a,
174 + .lightbox-content-wrap .item-price-wrap,
175 + .blog-post-item-v1 .blog-post-title h3 a,
176 + .blog-post-content-widget h4 a,
177 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
178 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
179 + .agent-list-wrap .agent-list-content h2 a,
180 + .agent-list-wrap .agent-list-contact li a,
181 + .agent-contacts-wrap li a,
182 + .menu-edit-property li a,
183 + .statistic-referrals-list li a,
184 + .chart-nav .nav-pills .nav-link,
185 + .dashboard-table-properties td .property-payment-status,
186 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
187 + .payment-method-block .radio-tab .control-text,
188 + .post-title-wrap h2 a,
189 + .lead-nav-tab.nav-pills .nav-link,
190 + .deals-nav-tab.nav-pills .nav-link,
191 + .btn-light-grey-outlined:hover,
192 + button:not(.bs-placeholder) .filter-option-inner-inner,
193 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
194 + .products > .product > .item-body > a,
195 + .woocommerce ul.products li.product .price,
196 + .woocommerce div.product p.price,
197 + .woocommerce div.product span.price,
198 + .woocommerce #reviews #comments ol.commentlist li .meta,
199 + .woocommerce-MyAccount-navigation ul li a,
200 + .activitiy-item-close-button a,
201 + .property-section-wrap li a {
202 + color: #222222;
203 + }
204 +
205 +
206 +
207 + a,
208 + a:hover,
209 + a:active,
210 + a:focus,
211 + .primary-text,
212 + .btn-clear,
213 + .btn-apply,
214 + .btn-primary-outlined,
215 + .btn-primary-outlined:before,
216 + .item-title a:hover,
217 + .sort-by .bootstrap-select .bs-placeholder,
218 + .sort-by .bootstrap-select > .btn,
219 + .sort-by .bootstrap-select > .btn:active,
220 + .page-link,
221 + .page-link:hover,
222 + .accordion-title:before,
223 + .blog-post-content-widget h4 a:hover,
224 + .agent-list-wrap .agent-list-content h2 a:hover,
225 + .agent-list-wrap .agent-list-contact li a:hover,
226 + .agent-contacts-wrap li a:hover,
227 + .agent-nav-wrap .nav-pills .nav-link,
228 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
229 + .menu-edit-property li a.active,
230 + .menu-edit-property li a:hover,
231 + .dashboard-statistic-block h3 .fa,
232 + .statistic-referrals-list li a:hover,
233 + .chart-nav .nav-pills .nav-link.active,
234 + .board-message-icon-wrap.active,
235 + .post-title-wrap h2 a:hover,
236 + .listing-switch-view .switch-btn.active,
237 + .item-wrap-v6 .item-price-wrap,
238 + .listing-v6 .list-view .item-body .item-price-wrap,
239 + .woocommerce nav.woocommerce-pagination ul li a,
240 + .woocommerce nav.woocommerce-pagination ul li span,
241 + .woocommerce-MyAccount-navigation ul li a:hover,
242 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
243 + .property-schedule-tour-form-wrap .control:hover,
244 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
245 + .login-register .btn-icon-login-register + .dropdown-menu a,
246 + .activitiy-item-close-button a:hover,
247 + .property-section-wrap li a:hover,
248 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
249 + color: #3385d9;
250 + }
251 +
252 + .agent-list-position a {
253 + color: #3385d9;
254 + }
255 +
256 + .control input:checked ~ .control__indicator,
257 + .top-banner-wrap .nav-pills .nav-link,
258 + .btn-primary-outlined:hover,
259 + .page-item.active .page-link,
260 + .slick-prev:hover,
261 + .slick-prev:focus,
262 + .slick-next:hover,
263 + .slick-next:focus,
264 + .mobile-property-tools .nav-pills .nav-link.active,
265 + .login-register-form .modal-header,
266 + .agent-nav-wrap .nav-pills .nav-link.active,
267 + .board-message-icon-wrap .notification-circle,
268 + .primary-label,
269 + .fc-event, .fc-event-dot,
270 + .compare-table .table-hover > tbody > tr:hover,
271 + .post-tag,
272 + .datepicker table tr td.active.active,
273 + .datepicker table tr td.active.disabled,
274 + .datepicker table tr td.active.disabled.active,
275 + .datepicker table tr td.active.disabled.disabled,
276 + .datepicker table tr td.active.disabled:active,
277 + .datepicker table tr td.active.disabled:hover,
278 + .datepicker table tr td.active.disabled:hover.active,
279 + .datepicker table tr td.active.disabled:hover.disabled,
280 + .datepicker table tr td.active.disabled:hover:active,
281 + .datepicker table tr td.active.disabled:hover:hover,
282 + .datepicker table tr td.active.disabled:hover[disabled],
283 + .datepicker table tr td.active.disabled[disabled],
284 + .datepicker table tr td.active:active,
285 + .datepicker table tr td.active:hover,
286 + .datepicker table tr td.active:hover.active,
287 + .datepicker table tr td.active:hover.disabled,
288 + .datepicker table tr td.active:hover:active,
289 + .datepicker table tr td.active:hover:hover,
290 + .datepicker table tr td.active:hover[disabled],
291 + .datepicker table tr td.active[disabled],
292 + .ui-slider-horizontal .ui-slider-range,
293 + .btn-bubble {
294 + background-color: #3385d9;
295 + }
296 +
297 + .control input:checked ~ .control__indicator,
298 + .btn-primary-outlined,
299 + .page-item.active .page-link,
300 + .mobile-property-tools .nav-pills .nav-link.active,
301 + .agent-nav-wrap .nav-pills .nav-link,
302 + .agent-nav-wrap .nav-pills .nav-link.active,
303 + .chart-nav .nav-pills .nav-link.active,
304 + .dashaboard-snake-nav .step-block.active,
305 + .fc-event,
306 + .fc-event-dot,
307 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
308 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
309 + border-color: #3385d9;
310 + }
311 +
312 + .slick-arrow:hover {
313 + background-color: rgba(43,111,180,1);
314 + }
315 +
316 + .slick-arrow {
317 + background-color: #3385d9;
318 + }
319 +
320 + .property-banner .nav-pills .nav-link.active {
321 + background-color: rgba(43,111,180,1) !important;
322 + }
323 +
324 + .property-navigation-wrap a.active {
325 + color: #3385d9;
326 + -webkit-box-shadow: inset 0 -3px #3385d9;
327 + box-shadow: inset 0 -3px #3385d9;
328 + }
329 +
330 + .btn-primary,
331 + .fc-button-primary,
332 + .woocommerce nav.woocommerce-pagination ul li a:focus,
333 + .woocommerce nav.woocommerce-pagination ul li a:hover,
334 + .woocommerce nav.woocommerce-pagination ul li span.current {
335 + color: #fff;
336 + background-color: #3385d9;
337 + border-color: #3385d9;
338 + }
339 + .btn-primary:focus, .btn-primary:focus:active,
340 + .fc-button-primary:focus,
341 + .fc-button-primary:focus:active {
342 + color: #fff;
343 + background-color: #3385d9;
344 + border-color: #3385d9;
345 + }
346 + .btn-primary:hover,
347 + .fc-button-primary:hover {
348 + color: #fff;
349 + background-color: #2b6fb4;
350 + border-color: #2b6fb4;
351 + }
352 + .btn-primary:active,
353 + .btn-primary:not(:disabled):not(:disabled):active,
354 + .fc-button-primary:active,
355 + .fc-button-primary:not(:disabled):not(:disabled):active {
356 + color: #fff;
357 + background-color: #2b6fb4;
358 + border-color: #2b6fb4;
359 + }
360 +
361 + .btn-secondary,
362 + .woocommerce span.onsale,
363 + .woocommerce ul.products li.product .button,
364 + .woocommerce #respond input#submit.alt,
365 + .woocommerce a.button.alt,
366 + .woocommerce button.button.alt,
367 + .woocommerce input.button.alt,
368 + .woocommerce #review_form #respond .form-submit input,
369 + .woocommerce #respond input#submit,
370 + .woocommerce a.button,
371 + .woocommerce button.button,
372 + .woocommerce input.button {
373 + color: #fff;
374 + background-color: #656565;
375 + border-color: #656565;
376 + }
377 + .woocommerce ul.products li.product .button:focus,
378 + .woocommerce ul.products li.product .button:active,
379 + .woocommerce #respond input#submit.alt:focus,
380 + .woocommerce a.button.alt:focus,
381 + .woocommerce button.button.alt:focus,
382 + .woocommerce input.button.alt:focus,
383 + .woocommerce #respond input#submit.alt:active,
384 + .woocommerce a.button.alt:active,
385 + .woocommerce button.button.alt:active,
386 + .woocommerce input.button.alt:active,
387 + .woocommerce #review_form #respond .form-submit input:focus,
388 + .woocommerce #review_form #respond .form-submit input:active,
389 + .woocommerce #respond input#submit:active,
390 + .woocommerce a.button:active,
391 + .woocommerce button.button:active,
392 + .woocommerce input.button:active,
393 + .woocommerce #respond input#submit:focus,
394 + .woocommerce a.button:focus,
395 + .woocommerce button.button:focus,
396 + .woocommerce input.button:focus {
397 + color: #fff;
398 + background-color: #656565;
399 + border-color: #656565;
400 + }
401 + .btn-secondary:hover,
402 + .woocommerce ul.products li.product .button:hover,
403 + .woocommerce #respond input#submit.alt:hover,
404 + .woocommerce a.button.alt:hover,
405 + .woocommerce button.button.alt:hover,
406 + .woocommerce input.button.alt:hover,
407 + .woocommerce #review_form #respond .form-submit input:hover,
408 + .woocommerce #respond input#submit:hover,
409 + .woocommerce a.button:hover,
410 + .woocommerce button.button:hover,
411 + .woocommerce input.button:hover {
412 + color: #fff;
413 + background-color: #333333;
414 + border-color: #333333;
415 + }
416 + .btn-secondary:active,
417 + .btn-secondary:not(:disabled):not(:disabled):active {
418 + color: #fff;
419 + background-color: #333333;
420 + border-color: #333333;
421 + }
422 +
423 + .btn-primary-outlined {
424 + color: #3385d9;
425 + background-color: transparent;
426 + border-color: #3385d9;
427 + }
428 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
429 + color: #3385d9;
430 + background-color: transparent;
431 + border-color: #3385d9;
432 + }
433 + .btn-primary-outlined:hover {
434 + color: #fff;
435 + background-color: #2b6fb4;
436 + border-color: #2b6fb4;
437 + }
438 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
439 + color: #3385d9;
440 + background-color: rgba(26, 26, 26, 0);
441 + border-color: #2b6fb4;
442 + }
443 +
444 + .btn-secondary-outlined {
445 + color: #656565;
446 + background-color: transparent;
447 + border-color: #656565;
448 + }
449 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
450 + color: #656565;
451 + background-color: transparent;
452 + border-color: #656565;
453 + }
454 + .btn-secondary-outlined:hover {
455 + color: #fff;
456 + background-color: #333333;
457 + border-color: #333333;
458 + }
459 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
460 + color: #656565;
461 + background-color: rgba(26, 26, 26, 0);
462 + border-color: #333333;
463 + }
464 +
465 + .btn-call {
466 + color: #656565;
467 + background-color: transparent;
468 + border-color: #656565;
469 + }
470 + .btn-call:focus, .btn-call:focus:active {
471 + color: #656565;
472 + background-color: transparent;
473 + border-color: #656565;
474 + }
475 + .btn-call:hover {
476 + color: #656565;
477 + background-color: rgba(26, 26, 26, 0);
478 + border-color: #333333;
479 + }
480 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
481 + color: #656565;
482 + background-color: rgba(26, 26, 26, 0);
483 + border-color: #333333;
484 + }
485 + .icon-delete .btn-loader:after{
486 + border-color: #3385d9 transparent #3385d9 transparent
487 + }
488 +
489 + .header-v1 {
490 + background-color: #004274;
491 + border-bottom: 1px solid #004274;
492 + }
493 +
494 + .header-v1 a.nav-link {
495 + color: #ffffff;
496 + }
497 +
498 + .header-v1 a.nav-link:hover,
499 + .header-v1 a.nav-link:active {
500 + color: #00aeff;
501 + background-color: rgba(255,255,255,0.2);
502 + }
503 + .header-desktop .main-nav .nav-link {
504 + letter-spacing: 0.0px;
505 + }
506 +
507 + .header-v2 .header-top,
508 + .header-v5 .header-top,
509 + .header-v2 .header-contact-wrap {
510 + background-color: #ffffff;
511 + }
512 +
513 + .header-v2 .header-bottom,
514 + .header-v5 .header-bottom {
515 + background-color: #004274;
516 + }
517 +
518 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
519 + color: #004274;
520 + }
521 +
522 + .header-v2 .header-contact-left {
523 + color: #004274;
524 + }
525 +
526 + .header-v2 .header-bottom,
527 + .header-v2 .navbar-nav > li,
528 + .header-v2 .navbar-nav > li:first-of-type,
529 + .header-v5 .header-bottom,
530 + .header-v5 .navbar-nav > li,
531 + .header-v5 .navbar-nav > li:first-of-type {
532 + border-color: rgba(255,255,255,0.2);
533 + }
534 +
535 + .header-v2 a.nav-link,
536 + .header-v5 a.nav-link {
537 + color: #ffffff;
538 + }
539 +
540 + .header-v2 a.nav-link:hover,
541 + .header-v2 a.nav-link:active,
542 + .header-v5 a.nav-link:hover,
543 + .header-v5 a.nav-link:active {
544 + color: #00aeff;
545 + background-color: rgba(255,255,255,0.2);
546 + }
547 +
548 + .header-v2 .header-contact-right a:hover,
549 + .header-v2 .header-contact-right a:active,
550 + .header-v3 .header-contact-right a:hover,
551 + .header-v3 .header-contact-right a:active {
552 + background-color: transparent;
553 + }
554 +
555 + .header-v2 .header-social-icons a,
556 + .header-v5 .header-social-icons a {
557 + color: #004274;
558 + }
559 +
560 + .header-v3 .header-top {
561 + background-color: #004274;
562 + }
563 +
564 + .header-v3 .header-bottom {
565 + background-color: #004272;
566 + }
567 +
568 + .header-v3 .header-contact,
569 + .header-v3-mobile {
570 + background-color: #00aeef;
571 + color: #ffffff;
572 + }
573 +
574 + .header-v3 .header-bottom,
575 + .header-v3 .login-register,
576 + .header-v3 .navbar-nav > li,
577 + .header-v3 .navbar-nav > li:first-of-type {
578 + border-color: ;
579 + }
580 +
581 + .header-v3 a.nav-link,
582 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
583 + color: #ffffff;
584 + }
585 +
586 + .header-v3 a.nav-link:hover,
587 + .header-v3 a.nav-link:active {
588 + color: #00aeff;
589 + background-color: rgba(255,255,255,0.2);
590 + }
591 +
592 + .header-v3 .header-social-icons a {
593 + color: #FFFFFF;
594 + }
595 +
596 + .header-v4 {
597 + background-color: #ffffff;
598 + }
599 +
600 + .header-v4 a.nav-link {
601 + color: #000000;
602 + }
603 +
604 + .header-v4 a.nav-link:hover,
605 + .header-v4 a.nav-link:active {
606 + color: #3385d9;
607 + background-color: rgba(255,255,255,0.2);
608 + }
609 +
610 + .header-v6 .header-top {
611 + background-color: #00AEEF;
612 + }
613 +
614 + .header-v6 a.nav-link {
615 + color: #FFFFFF;
616 + }
617 +
618 + .header-v6 a.nav-link:hover,
619 + .header-v6 a.nav-link:active {
620 + color: #00aeff;
621 + background-color: rgba(255,255,255,0.2);
622 + }
623 +
624 + .header-v6 .header-social-icons a {
625 + color: #FFFFFF;
626 + }
627 +
628 + .header-mobile {
629 + background-color: #ffffff;
630 + }
631 + .header-mobile .toggle-button-left,
632 + .header-mobile .toggle-button-right {
633 + color: #000000;
634 + }
635 +
636 + .nav-mobile .logged-in-nav a,
637 + .nav-mobile .main-nav,
638 + .nav-mobile .navi-login-register {
639 + background-color: #ffffff;
640 + }
641 +
642 + .nav-mobile .logged-in-nav a,
643 + .nav-mobile .main-nav .nav-item .nav-item a,
644 + .nav-mobile .main-nav .nav-item a,
645 + .navi-login-register .main-nav .nav-item a {
646 + color: #000000;
647 + border-bottom: 1px solid #ffffff;
648 + background-color: #ffffff;
649 + }
650 +
651 + .nav-mobile .btn-create-listing,
652 + .navi-login-register .btn-create-listing {
653 + color: #fff;
654 + border: 1px solid #3385d9;
655 + background-color: #3385d9;
656 + }
657 +
658 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
659 + .navi-login-register .btn-create-listing:hover,
660 + .navi-login-register .btn-create-listing:active {
661 + color: #fff;
662 + border: 1px solid #3385d9;
663 + background-color: rgba(0, 174, 255, 0.65);
664 + }
665 +
666 + .header-transparent-wrap .header-v4 {
667 + background-color: transparent;
668 + border-bottom: 1px none rgba(255,255,255,0.3);
669 + }
670 +
671 + .header-transparent-wrap .header-v4 a {
672 + color: #ffffff;
673 + }
674 +
675 + .header-transparent-wrap .header-v4 a:hover,
676 + .header-transparent-wrap .header-v4 a:active {
677 + color: #3385d9;
678 + background-color: rgba(255, 255, 255, 0.1);
679 + }
680 +
681 + .main-nav .navbar-nav .nav-item .dropdown-menu,
682 + .login-register .login-register-nav li .dropdown-menu {
683 + background-color: rgba(255,255,255,0.95);
684 + }
685 +
686 + .login-register .login-register-nav li .dropdown-menu:before {
687 + border-left-color: rgba(255,255,255,0.95);
688 + border-top-color: rgba(255,255,255,0.95);
689 + }
690 +
691 + .main-nav .navbar-nav .nav-item .nav-item a,
692 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
693 + color: #3385d9;
694 + border-bottom: 1px solid #e6e6e6;
695 + }
696 +
697 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
698 + .main-nav .navbar-nav .nav-item .nav-item a:active,
699 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
700 + color: #2b6fb4;
701 + }
702 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
703 + .main-nav .navbar-nav .nav-item .nav-item a:active,
704 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
705 + background-color: rgba(0, 174, 255, 0.1);
706 + }
707 +
708 + .header-main-wrap .btn-create-listing {
709 + color: #3385d9;
710 + border: 1px solid #3385d9;
711 + background-color: #ffffff;
712 + }
713 +
714 + .header-main-wrap .btn-create-listing:hover,
715 + .header-main-wrap .btn-create-listing:active {
716 + color: rgba(255,255,255,1);
717 + border: 1px solid #2b6fb4;
718 + background-color: rgba(43,111,180,1);
719 + }
720 +
721 + .header-transparent-wrap .header-v4 .btn-create-listing {
722 + color: #ffffff;
723 + border: 1px solid #ffffff;
724 + background-color: rgba(255,255,255,0.2);
725 + }
726 +
727 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
728 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
729 + color: rgba(255,255,255,1);
730 + border: 1px solid #3385d9;
731 + background-color: rgba(51,133,217,1);
732 + }
733 +
734 + .header-transparent-wrap .logged-in-nav a,
735 + .logged-in-nav a {
736 + color: #000000;
737 + border-color: #e6e6e6;
738 + background-color: #FFFFFF;
739 + }
740 +
741 + .header-transparent-wrap .logged-in-nav a:hover,
742 + .header-transparent-wrap .logged-in-nav a:active,
743 + .logged-in-nav a:hover,
744 + .logged-in-nav a:active {
745 + color: #000000;
746 + background-color: rgba(204,204,204,0.15);
747 + border-color: #e6e6e6;
748 + }
749 +
750 + .form-control::-webkit-input-placeholder,
751 + .search-banner-wrap ::-webkit-input-placeholder,
752 + .advanced-search ::-webkit-input-placeholder,
753 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
754 + .overlay-search-advanced-module ::-webkit-input-placeholder {
755 + color: #a1a7a8;
756 + }
757 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
758 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
759 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
760 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
761 + color: #a1a7a8;
762 + }
763 + .form-control::placeholder,
764 + .search-banner-wrap ::-webkit-input-placeholder,
765 + .advanced-search ::-webkit-input-placeholder,
766 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
767 + .overlay-search-advanced-module ::-webkit-input-placeholder {
768 + color: #a1a7a8;
769 + }
770 +
771 + .search-banner-wrap ::-moz-placeholder,
772 + .advanced-search ::-moz-placeholder,
773 + .advanced-search-banner-wrap ::-moz-placeholder,
774 + .overlay-search-advanced-module ::-moz-placeholder {
775 + color: #a1a7a8;
776 + }
777 +
778 + .search-banner-wrap :-ms-input-placeholder,
779 + .advanced-search :-ms-input-placeholder,
780 + .advanced-search-banner-wrap ::-ms-input-placeholder,
781 + .overlay-search-advanced-module ::-ms-input-placeholder {
782 + color: #a1a7a8;
783 + }
784 +
785 + .search-banner-wrap :-moz-placeholder,
786 + .advanced-search :-moz-placeholder,
787 + .advanced-search-banner-wrap :-moz-placeholder,
788 + .overlay-search-advanced-module :-moz-placeholder {
789 + color: #a1a7a8;
790 + }
791 +
792 + .advanced-search .form-control,
793 + .advanced-search .bootstrap-select > .btn,
794 + .location-trigger,
795 + .vertical-search-wrap .form-control,
796 + .vertical-search-wrap .bootstrap-select > .btn,
797 + .step-search-wrap .form-control,
798 + .step-search-wrap .bootstrap-select > .btn,
799 + .advanced-search-banner-wrap .form-control,
800 + .advanced-search-banner-wrap .bootstrap-select > .btn,
801 + .search-banner-wrap .form-control,
802 + .search-banner-wrap .bootstrap-select > .btn,
803 + .overlay-search-advanced-module .form-control,
804 + .overlay-search-advanced-module .bootstrap-select > .btn,
805 + .advanced-search-v2 .advanced-search-btn,
806 + .advanced-search-v2 .advanced-search-btn:hover {
807 + border-color: #cccccc;
808 + }
809 +
810 + .advanced-search-nav,
811 + .search-expandable,
812 + .overlay-search-advanced-module {
813 + background-color: #FFFFFF;
814 + }
815 + .btn-search {
816 + color: #ffffff;
817 + background-color: #3385d9;
818 + border-color: #3385d9;
819 + }
820 + .btn-search:hover, .btn-search:active {
821 + color: #ffffff;
822 + background-color: #2b6fb4;
823 + border-color: #2b6fb4;
824 + }
825 + .advanced-search-btn {
826 + color: #666666;
827 + background-color: #ffffff;
828 + border-color: #dce0e0;
829 + }
830 + .advanced-search-btn:hover, .advanced-search-btn:active {
831 + color: #000000;
832 + background-color: #ffffff;
833 + border-color: #dce0e0;
834 + }
835 + .advanced-search-btn:focus {
836 + color: #666666;
837 + background-color: #ffffff;
838 + border-color: #dce0e0;
839 + }
840 + .search-expandable-label {
841 + color: #ffffff;
842 + background-color: #ff6e00;
843 + }
844 + .advanced-search-nav {
845 + padding-top: 10px;
846 + padding-bottom: 10px;
847 + }
848 + .features-list-wrap .control--checkbox,
849 + .features-list-wrap .control--radio,
850 + .range-text,
851 + .features-list-wrap .control--checkbox,
852 + .features-list-wrap .btn-features-list,
853 + .overlay-search-advanced-module .search-title,
854 + .overlay-search-advanced-module .overlay-search-module-close {
855 + color: #222222;
856 + }
857 + .advanced-search-half-map {
858 + background-color: #FFFFFF;
859 + }
860 + .advanced-search-half-map .range-text,
861 + .advanced-search-half-map .features-list-wrap .control--checkbox,
862 + .advanced-search-half-map .features-list-wrap .btn-features-list {
863 + color: #222222;
864 + }
865 +
866 + .save-search-btn {
867 + border-color: #28a745 ;
868 + background-color: #28a745 ;
869 + color: #ffffff ;
870 + }
871 + .save-search-btn:hover,
872 + .save-search-btn:active {
873 + border-color: #28a745;
874 + background-color: #28a745 ;
875 + color: #ffffff ;
876 + }
877 + .label-featured {
878 + background-color: #e22424;
879 + color: #ffffff;
880 + }
881 +
882 + .dashboard-side-wrap {
883 + background-color: #00365e;
884 + }
885 +
886 + .side-menu a {
887 + color: #ffffff;
888 + }
889 +
890 + .side-menu a.active,
891 + .side-menu .side-menu-parent-selected > a,
892 + .side-menu-dropdown a,
893 + .side-menu a:hover {
894 + color: #3385d9;
895 + }
896 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
897 + color: #2b6fb4
898 + }
899 +
900 + .detail-wrap {
901 + background-color: rgba(119,199,32,0.1);
902 + border-color: #3385d9;
903 + }
904 + .top-bar-wrap,
905 + .top-bar-wrap .dropdown-menu,
906 + .switcher-wrap .dropdown-menu {
907 + background-color: #000000;
908 + }
909 + .top-bar-wrap a,
910 + .top-bar-contact,
911 + .top-bar-slogan,
912 + .top-bar-wrap .btn,
913 + .top-bar-wrap .dropdown-menu,
914 + .switcher-wrap .dropdown-menu,
915 + .top-bar-wrap .navbar-toggler {
916 + color: #ffffff;
917 + }
918 + .top-bar-wrap a:hover,
919 + .top-bar-wrap a:active,
920 + .top-bar-wrap .btn:hover,
921 + .top-bar-wrap .btn:active,
922 + .top-bar-wrap .dropdown-menu li:hover,
923 + .top-bar-wrap .dropdown-menu li:active,
924 + .switcher-wrap .dropdown-menu li:hover,
925 + .switcher-wrap .dropdown-menu li:active {
926 + color: rgba(43,111,180,1);
927 + }
928 + .class-energy-indicator:nth-child(1) {
929 + background-color: #33a357;
930 + }
931 + .class-energy-indicator:nth-child(2) {
932 + background-color: #79b752;
933 + }
934 + .class-energy-indicator:nth-child(3) {
935 + background-color: #c3d545;
936 + }
937 + .class-energy-indicator:nth-child(4) {
938 + background-color: #fff12c;
939 + }
940 + .class-energy-indicator:nth-child(5) {
941 + background-color: #edb731;
942 + }
943 + .class-energy-indicator:nth-child(6) {
944 + background-color: #d66f2c;
945 + }
946 + .class-energy-indicator:nth-child(7) {
947 + background-color: #cc232a;
948 + }
949 + .class-energy-indicator:nth-child(8) {
950 + background-color: #cc232a;
951 + }
952 + .class-energy-indicator:nth-child(9) {
953 + background-color: #cc232a;
954 + }
955 + .class-energy-indicator:nth-child(10) {
956 + background-color: #cc232a;
957 + }
958 +
959 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
960 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
961 +
962 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
963 +
964 + .footer-top-wrap {
965 + background-color: #000000;
966 + }
967 +
968 + .footer-bottom-wrap {
969 + background-color: #000000;
970 + }
971 +
972 + .footer-top-wrap,
973 + .footer-top-wrap a,
974 + .footer-bottom-wrap,
975 + .footer-bottom-wrap a,
976 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
977 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
978 + .footer-top-wrap .blog-post-content-widget h4 a,
979 + .footer-top-wrap .blog-post-content-widget,
980 + .footer-top-wrap .form-tools .control,
981 + .footer-top-wrap .slick-dots li.slick-active button:before,
982 + .footer-top-wrap .slick-dots li button::before,
983 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
984 + color: #ffffff;
985 + }
986 +
987 + .footer-top-wrap a:hover,
988 + .footer-bottom-wrap a:hover,
989 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
990 + color: rgba(43,111,180,1);
991 + }
992 + .houzez-osm-cluster {
993 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
994 + text-align: center;
995 + color: #fff;
996 + width: 48px;
997 + height: 48px;
998 + line-height: 48px;
999 + }
1000 + .text-success{color:red!important;}
1001 +
1002 +/*.mobile-property-contact{bottom:40px;}*/
1003 +
1004 +/* Button retour en haut*/
1005 +/*
1006 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1007 +.mobile-property-contact .btn{margin-right: 60px;}
1008 +*/
1009 +
1010 +.item-tool.houzez-share{display:none;}
1011 +
1012 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1013 +
1014 +.grecaptcha-badge{display:none!important;}
1015 +
1016 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1017 +
1018 +
1019 +@media only screen and (max-width: 768px) {
1020 + /* For mobile phones: */
1021 +
1022 + /* Button retour en haut*/
1023 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1024 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1025 +}
1026 +/*# sourceURL=houzez-style-inline-css */</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="29f9d977ede5c7d640473f6d-|49"></script><link data-asynced="1" as="style" onload="this.onload=null;this.rel='stylesheet'" rel='preload' id='leaflet-css' href='https://unpkg.com/leaflet@1.7.1/dist/leaflet.css' media='all' /><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1027 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1028 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/properties/10527" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/?p=10527' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1029 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1030 + background-image: none !important;
1031 + }
1032 + @media screen and (max-height: 1024px) {
1033 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1034 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1035 + background-image: none !important;
1036 + }
1037 + }
1038 + @media screen and (max-height: 640px) {
1039 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1040 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1041 + background-image: none !important;
1042 + }
1043 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1044 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1045 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1046 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1047 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="wp-singular property-template-default single single-property postid-10527 wp-custom-logo wp-theme-houzez translatepress-fr_CA transparent- houzez-header- elementor-default elementor-kit-6"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1048 +<a href="https://agencedelocationsherbrooke.com/">
1049 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1050 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1051 +<button class="btn toggle-button-left">
1052 +<i class="houzez-icon icon-navigation-menu"></i>
1053 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1054 +<a href="https://agencedelocationsherbrooke.com/">
1055 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1056 +</a></div></div><div class="header-mobile-right"></div></div></header><section class="content-wrap property-wrap property-detail-v6 "><div class="property-navigation-wrap"><div class="container-fluid"><ul class="property-navigation list-unstyled d-flex justify-content-between"><li class="property-navigation-item">
1057 +<a class="back-top" href="#main-wrap">
1058 +<i class="houzez-icon icon-arrow-button-circle-up"></i>
1059 +</a></li><li class="property-navigation-item">
1060 +<a class="target" href="#property-features-wrap">Inclusions</a></li><li class="property-navigation-item">
1061 +<a class="target" href="#property-description-wrap">Description</a></li><li class="property-navigation-item">
1062 +<a class="target" href="#property-address-wrap">Addresse</a></li><li class="property-navigation-item">
1063 +<a class="target" href="#property-detail-wrap">Détails</a></li><li class="property-navigation-item">
1064 +<a class="target" href="#property-video-wrap">Vidéo</a></li><li class="property-navigation-item">
1065 +<a class="target" href="#property-walkscore-wrap">Walkscore</a></li><li class="property-navigation-item">
1066 +<a class="target" href="#similar-listings-wrap">Annonces similaires</a></li></ul></div></div><div class="page-title-wrap"><div class="container"><div class="d-flex align-items-center"><div class="breadcrumb-wrap"><nav><ol class="breadcrumb"><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/"><span>Accueil</span></a></li><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/"> <span>5½</span></a></li><li class="breadcrumb-item active">1206 Françoise-Gaudet-Smet</li></ol></nav></div><ul class="item-tools"><li class="item-tool houzez-favorite">
1067 +<span class="add-favorite-js item-tool-favorite" data-listid="10527">
1068 +<i class="houzez-icon icon-love-it "></i>
1069 +</span></li><li class="item-tool houzez-share">
1070 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1071 +<i class="houzez-icon icon-share"></i>
1072 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1073 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=1206+Fran%C3%A7oise-Gaudet-Smet&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F">
1074 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&amp;t=1206+Fran%C3%A7oise-Gaudet-Smet" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1075 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1076 +</a>
1077 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=1206+Fran%C3%A7oise-Gaudet-Smet&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1078 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1079 +</a>
1080 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1081 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1082 +</a>
1083 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&title=1206+Fran%C3%A7oise-Gaudet-Smet&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1084 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1085 +</a>
1086 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#05766a68606a6b6045607d64687569602b666a683a5670676f6066713834373533254377646bc6a26a6c766028426470616071285668607123676a617c386d717175762036442037432037436462606b66606160696a6664716c6a6b766d607767776a6a6e602b666a6820374375776a756077717c20374334373533286377646b666a6c7660286264706160712876686071203743">
1087 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1088 +</a></div></li><li class="item-tool houzez-print " data-propid="10527">
1089 +<span class="item-tool-compare">
1090 +<i class="houzez-icon icon-print-text"></i>
1091 +</span></li></ul></div><div class="d-flex align-items-center property-title-price-wrap"><div class="page-title"><h1>1206 Françoise-Gaudet-Smet</h1></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,295$/mensuel</li></ul></div><div class="property-labels-wrap">
1092 +<span class="label-featured label">Vedette</span><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1093 +Libre maintenant
1094 +</a></div>
1095 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>1206, Rue Françoise-Gaudet-Smet, Fleurimont, Sherbrooke, Estrie, Québec, J1G 2Y4, Canada</address></div></div><div class="property-top-wrap"><div class="property-banner"><div class="visible-on-mobile"><div class="tab-content" id="pills-tabContent"><div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-scaled.jpeg);"><div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 19</div><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1096 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1097 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1098 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [1206 Françoise-Gaudet-Smet]</textarea></div>
1099 +<input type="hidden" name="target_email" value="&#99;ath&#101;&#114;&#105;&#110;&#101;&#46;pe&#114;&#114;eau&#108;t&#64;&#112;r&#101;stipl&#101;x&#46;c&#111;m">
1100 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1101 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/"/>
1102 +<input type="hidden" name="property_title" value="1206 Françoise-Gaudet-Smet"/>
1103 +<input type="hidden" name="property_id" value="ADLS-10527"/>
1104 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1105 +<input type="hidden" name="listing_id" value="10527">
1106 +<input type="hidden" name="is_listing_form" value="yes">
1107 +<input type="hidden" name="agent_id" value="156">
1108 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1109 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1110 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1111 +</button></form></div></div><a class="houzez-photoswipe-trigger property-banner-trigger" href="#"></a></div><div class="tab-pane houzez-top-area-video " id="pills-video" role="tabpanel" aria-labelledby="pills-video-tab">
1112 +<iframe data-lazyloaded="1" src="about:blank" title="1206 rue Françoise-Gaudet-Smet, Sherbrooke, Québec" width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/3RZ6V1xN4w0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div><div class="container hidden-on-mobile"><div class="row"><div class="col-md-8">
1113 +<a href="#" data-slider-no="1" data-image="0" class="houzez-photoswipe-trigger img-wrap-1" >
1114 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-758x564.jpeg" alt="" width="758" height="564" />
1115 +</a></div><div class="col-md-4">
1116 +<a href="#" data-slider-no="2" data-image="1" class="houzez-photoswipe-trigger swipebox img-wrap-2">
1117 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164100.403-758x564.jpeg" alt="" width="758" height="564" />
1118 +</a>
1119 +<a href="#" data-slider-no="3" data-image="2" class="houzez-photoswipe-trigger swipebox img-wrap-3"><div class="img-wrap-3-text">16 Plus</div>
1120 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164058.897-758x564.jpeg" alt="" width="758" height="564" />
1121 +</a></div>
1122 +<a href="#" class="img-wrap-1 gallery-hidden">
1123 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164057.450-758x564.jpeg" alt="" width="758" height="564" />
1124 +</a>
1125 +<a href="#" class="img-wrap-1 gallery-hidden">
1126 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164055.241-758x564.jpeg" alt="" width="758" height="564" />
1127 +</a>
1128 +<a href="#" class="img-wrap-1 gallery-hidden">
1129 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164053.100-758x564.jpeg" alt="" width="758" height="564" />
1130 +</a>
1131 +<a href="#" class="img-wrap-1 gallery-hidden">
1132 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164051.688-758x564.jpeg" alt="" width="758" height="564" />
1133 +</a>
1134 +<a href="#" class="img-wrap-1 gallery-hidden">
1135 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164050.255-758x564.jpeg" alt="" width="758" height="564" />
1136 +</a>
1137 +<a href="#" class="img-wrap-1 gallery-hidden">
1138 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164048.589-758x564.jpeg" alt="" width="758" height="564" />
1139 +</a>
1140 +<a href="#" class="img-wrap-1 gallery-hidden">
1141 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164023.856-758x564.jpeg" alt="" width="758" height="564" />
1142 +</a>
1143 +<a href="#" class="img-wrap-1 gallery-hidden">
1144 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164022.508-758x564.jpeg" alt="" width="758" height="564" />
1145 +</a>
1146 +<a href="#" class="img-wrap-1 gallery-hidden">
1147 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164021.232-758x564.jpeg" alt="" width="758" height="564" />
1148 +</a>
1149 +<a href="#" class="img-wrap-1 gallery-hidden">
1150 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164019.659-758x564.jpeg" alt="" width="758" height="564" />
1151 +</a>
1152 +<a href="#" class="img-wrap-1 gallery-hidden">
1153 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164018.285-758x564.jpeg" alt="" width="758" height="564" />
1154 +</a>
1155 +<a href="#" class="img-wrap-1 gallery-hidden">
1156 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164016.789-758x564.jpeg" alt="" width="758" height="564" />
1157 +</a>
1158 +<a href="#" class="img-wrap-1 gallery-hidden">
1159 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164015.252-758x564.jpeg" alt="" width="758" height="564" />
1160 +</a>
1161 +<a href="#" class="img-wrap-1 gallery-hidden">
1162 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164013.909-758x564.jpeg" alt="" width="758" height="564" />
1163 +</a>
1164 +<a href="#" class="img-wrap-1 gallery-hidden">
1165 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164012.198-758x564.jpeg" alt="" width="758" height="564" />
1166 +</a>
1167 +<a href="#" class="img-wrap-1 gallery-hidden">
1168 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164011.386-758x564.jpeg" alt="" width="758" height="564" />
1169 +</a><div class="col-md-12"><div class="block-wrap"><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>5½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>5</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div></div></div><div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"><div class="pswp__bg"></div><div class="pswp__scroll-wrap"><div class="pswp__container"><div class="pswp__item"></div><div class="pswp__item"></div><div class="pswp__item"></div></div><div class="pswp__ui pswp__ui--hidden"><div class="pswp__top-bar"><div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button><button class="pswp__button pswp__button--share" title="Share"></button><button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button><button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button><div class="pswp__preloader"><div class="pswp__preloader__icn"><div class="pswp__preloader__cut"><div class="pswp__preloader__donut"></div></div></div></div></div><div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"><div class="pswp__share-tooltip"></div></div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
1170 +</button><button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
1171 +</button><div class="pswp__caption"><div class="pswp__caption__center"></div></div></div></div></div> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">initPhotoswipeDomForJson({"1":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164102.079-scaled.jpeg","w":1920,"h":2560},"2":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164100.403-scaled.jpeg","w":1920,"h":2560},"3":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164058.897-scaled.jpeg","w":1920,"h":2560},"4":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164057.450-scaled.jpeg","w":1920,"h":2560},"5":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164055.241-scaled.jpeg","w":1920,"h":2560},"6":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164053.100-scaled.jpeg","w":1920,"h":2560},"7":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164051.688-scaled.jpeg","w":1920,"h":2560},"8":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164050.255-scaled.jpeg","w":1920,"h":2560},"9":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164048.589-scaled.jpeg","w":1920,"h":2560},"10":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164023.856-scaled.jpeg","w":1920,"h":2560},"11":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164022.508-scaled.jpeg","w":1920,"h":2560},"12":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164021.232-scaled.jpeg","w":1920,"h":2560},"13":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164019.659-scaled.jpeg","w":1920,"h":2560},"14":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164018.285-scaled.jpeg","w":1920,"h":2560},"15":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164016.789-scaled.jpeg","w":1920,"h":2560},"16":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164015.252-scaled.jpeg","w":1920,"h":2560},"17":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164013.909-scaled.jpeg","w":1920,"h":2560},"18":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164012.198-scaled.jpeg","w":1920,"h":2560},"19":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164011.386-scaled.jpeg","w":1920,"h":2560}});function initPhotoswipeDomForJson(imageData){var pswpElement=document.querySelectorAll('.pswp')[0];var items=[],item;jQuery.each(imageData,function(i,obj){item={src:obj.src,w:obj.w,h:obj.h};items.push(item)});var options={index:0};var x=document.querySelectorAll(".houzez-photoswipe-trigger");for(let i=0;i<x.length;i++){x[i].addEventListener("click",function(){openGallery(x[i].dataset.image)})}
1172 +function openGallery(j){options.index=parseInt(j);options.history=!1;gallery=new PhotoSwipe(pswpElement,PhotoSwipeUI_Default,items,options);gallery.init()}}</script> </div><div class="container"><div class="row"><div class="col-lg-12 col-md-12 bt-full-width-content-wrap"><div class="property-view"><div class="visible-on-mobile"><div class="mobile-top-wrap"><div class="mobile-property-tools clearfix"><ul class="nav nav-pills houzez-media-tabs-4" id="pills-tab" role="tablist"><li class="nav-item">
1173 +<a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1174 +<i class="houzez-icon icon-picture-sun"></i>
1175 +</a></li><li class="nav-item">
1176 +<a class="nav-link " id="pills-video-tab" data-toggle="pill" href="#pills-video" role="tab" aria-controls="pills-video" aria-selected="true">
1177 +<i class="houzez-icon icon-video-player-movie-1"></i>
1178 +</a></li></ul><ul class="item-tools"><li class="item-tool houzez-favorite">
1179 +<span class="add-favorite-js item-tool-favorite" data-listid="10527">
1180 +<i class="houzez-icon icon-love-it "></i>
1181 +</span></li><li class="item-tool houzez-share">
1182 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1183 +<i class="houzez-icon icon-share"></i>
1184 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1185 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=1206+Fran%C3%A7oise-Gaudet-Smet&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F">
1186 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&amp;t=1206+Fran%C3%A7oise-Gaudet-Smet" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1187 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1188 +</a>
1189 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=1206+Fran%C3%A7oise-Gaudet-Smet&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1190 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1191 +</a>
1192 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1193 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1194 +</a>
1195 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&title=1206+Fran%C3%A7oise-Gaudet-Smet&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1196 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1197 +</a>
1198 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#d3a0bcbeb6bcbdb693b6abb2bea3bfb6fdb0bcbeec80a6b1b9b6b0a7eee2e1e3e5f395a1b2bd1074bcbaa0b6fe94b2a6b7b6a7fe80beb6a7f5b1bcb7aaeebba7a7a3a0f6e092f6e195f6e195b2b4b6bdb0b6b7b6bfbcb0b2a7babcbda0bbb6a1b1a1bcbcb8b6fdb0bcbef6e195a3a1bca3b6a1a7aaf6e195e2e1e3e5feb5a1b2bdb0bcbaa0b6feb4b2a6b7b6a7fea0beb6a7f6e195">
1199 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1200 +</a></div></li><li class="item-tool houzez-print " data-propid="10527">
1201 +<span class="item-tool-compare">
1202 +<i class="houzez-icon icon-print-text"></i>
1203 +</span></li></ul></div><div class="mobile-property-title clearfix">
1204 +<span class="label-featured label">Vedette</span> <span class="labels-wrap labels-right">
1205 +<a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1206 +Libre maintenant
1207 +</a>
1208 +</span>
1209 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>1206, Rue Françoise-Gaudet-Smet, Fleurimont, Sherbrooke, Estrie, Québec, J1G 2Y4, Canada</address><ul class="item-price-wrap hide-on-list"><li class="item-price">1,295$/mensuel</li></ul></div></div><div class="property-overview-wrap property-section-wrap" id="property-overview-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Apperçu</h2><div><strong># Annonce:</strong> ADLS-10527</div></div><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>5½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>3</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>5</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div><div class="property-features-wrap property-section-wrap" id="property-features-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Inclusions</h2></div><div class="block-content-wrap"><ul class="list-3-cols list-unstyled"><li><i class="fas fa-cat mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/chat-permis/">Chat permis</a></li><li><i class="fas fa-snowplow mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/deneigement/">Déneigement</a></li><li><i class="houzez-icon icon-check-circle-1 mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/entre-lave-vaisselle/">Entré lave-vaisselle</a></li></ul></div></div></div><div class="property-description-wrap property-section-wrap" id="property-description-wrap"><div class="block-wrap"><div class="block-title-wrap"><h2>Description</h2></div><div class="block-content-wrap"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true" data-pm-slice="1 1 []"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">5 ½ à louer – Disponible dès maintenant!</strong></p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">Caractéristiques :</strong></p><ul class="ak-ul" data-prosemirror-content-type="node" data-prosemirror-node-name="bulletList" data-prosemirror-node-block="true"><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">1 espace de stationnement inclus</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">1 ou 2 chat tolérer</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Chiens interdits</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l&#8217;immeuble)</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Aucun service inclus (électricité, chauffage, etc.)</p></li></ul><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">Conditions :</strong></p><ul class="ak-ul" data-prosemirror-content-type="node" data-prosemirror-node-name="bulletList" data-prosemirror-node-block="true"><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Enquête de crédit obligatoire</p></li></ul><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Pour obtenir plus d&#8217;informations ou planifier une visite, contactez-nous en message privé.</p></div></div></div><div class="property-address-wrap property-section-wrap" id="property-address-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Addresse</h2><a class="btn btn-primary btn-slim" href="https://maps.google.com/?q=1206,%20Rue%20Françoise-Gaudet-Smet,%20Fleurimont,%20Sherbrooke,%20Estrie,%20Québec,%20J1G%202Y4,%20Canada" target="_blank"><i class="houzez-icon icon-maps mr-1"></i> Ouvrir sur Google Maps</a></div><div class="block-content-wrap"><ul class="list-2-cols list-unstyled"><li class="detail-address"><strong>Addresse</strong> <span>1206, Rue Françoise-Gaudet-Smet, Fleurimont, Sherbrooke, Estrie, Québec, J1G 2Y4, Canada</span></li><li class="detail-zip"><strong>Zip / Code postal</strong> <span>J1G 2Y4</span></li></ul></div><div id="houzez-single-listing-map" class="block-map-wrap"></div></div></div><div class="property-detail-wrap property-section-wrap" id="property-detail-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Détails</h2>
1210 +<span class="small-text grey"><i class="houzez-icon icon-calendar-3 mr-1"></i> Mise à jour le juillet 28, 2026 à 8:43 pm</span></div><div class="block-content-wrap"><div class="detail-wrap"><ul class="list-2-cols list-unstyled"><li>
1211 +<strong># Annonce:</strong>
1212 +<span>ADLS-10527</span></li><li>
1213 +<strong>Prix:</strong>
1214 +<span> 1,295$/mensuel</span></li><li>
1215 +<strong>Chambres:</strong>
1216 +<span>3</span></li><li>
1217 +<strong>Pièces:</strong>
1218 +<span>5</span></li><li>
1219 +<strong>Salle de bain:</strong>
1220 +<span>1</span></li><li>
1221 +<strong>Stationnement:</strong>
1222 +<span>1</span></li><li class="prop_type">
1223 +<strong>Type:</strong>
1224 +<span>5½</span></li></ul></div></div></div></div><div class="property-video-wrap property-section-wrap" id="property-video-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Vidéo</h2></div><div class="block-content-wrap"><div class="block-video-wrap">
1225 +<iframe data-lazyloaded="1" src="about:blank" title="1206 rue Françoise-Gaudet-Smet, Sherbrooke, Québec" width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/3RZ6V1xN4w0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div></div><div class="property-walkscore-wrap property-section-wrap" id="property-walkscore-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Walkscore</h2></div><div class="block-content-wrap"><div id="ws-walkscore-tile"></div></div></div></div><div class="property-contact-agent-wrap property-section-wrap" id="property-contact-agent-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Coordonnées</h2><a class="btn btn-primary btn-slim" href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/" target="_blank">Voir les annonces</a></div><div class="block-content-wrap"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="80" height="80"></a></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-phone-wrap clearfix"></li></ul></div></div><div class="block-title-wrap"><h3>Renseignez-vous sur cette propriété</h3></div><div class="form_messages"></div><div class="row"><div class="col-md-6 col-sm-12"><div class="form-group">
1226 +<label>Nom</label>
1227 +<input class="form-control" name="name" placeholder="Entrez votre nom" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1228 +<label>Téléphone</label>
1229 +<input class="form-control" name="mobile" placeholder="Entrez votre numéro de téléphone" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1230 +<label>Courriel</label>
1231 +<input class="form-control" name="email" placeholder="Entrer votre courriel" type="email"></div></div><div class="col-sm-12 col-xs-12"><div class="form-group form-group-textarea">
1232 +<label>Message</label><textarea class="form-control hz-form-message" name="message" rows="5" placeholder="Entrez votre message">Bonjour, je suis intéressé par [1206 Françoise-Gaudet-Smet]</textarea></div></div><div class="col-sm-12 col-xs-12">
1233 +<input type="hidden" name="target_email" value="c&#97;&#116;&#104;erine&#46;per&#114;ea&#117;&#108;t&#64;p&#114;&#101;&#115;tipl&#101;&#120;.c&#111;m">
1234 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1235 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/"/>
1236 +<input type="hidden" name="property_title" value="1206 Françoise-Gaudet-Smet"/>
1237 +<input type="hidden" name="property_id" value="ADLS-10527"/>
1238 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1239 +<input type="hidden" class="is_bottom" value="bottom">
1240 +<input type="hidden" name="listing_id" value="10527">
1241 +<input type="hidden" name="is_listing_form" value="yes">
1242 +<input type="hidden" name="agent_id" value="156">
1243 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><button class="houzez_agent_property_form btn btn-secondary btn-sm-full-width">
1244 +<span class="btn-loader houzez-loader-js"></span> Demande d'informations
1245 +</button></div></div></form></div></div></div><div id="similar-listings-wrap" class="similar-property-wrap listing-v1"><div class="block-title-wrap"><h2>Annonces similaires</h2></div><div class="listing-view list-view card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10546" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9736-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9736-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9724-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9725-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9726-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9727-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9728-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9729-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9730-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9731-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9732-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9733-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9734-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9735-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9737-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9723-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9738-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1246 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1247 +Libre maintenant
1248 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,295$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1249 +<span class="hz-show-lightbox-js" data-listid="10546" data-toggle="tooltip" data-placement="top" title="Aperçu">
1250 +<i class="houzez-icon icon-expand-3"></i>
1251 +</span></li><li class="item-tool item-favorite">
1252 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10546">
1253 +<i class="houzez-icon icon-love-it "></i>
1254 +</span></li><li class="item-tool item-compare">
1255 +<span class="houzez_compare compare-10546 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10546" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/IMG_9736-592x444.jpeg">
1256 +<i class="houzez-icon icon-add-circle"></i>
1257 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1258 +<a href="https://agencedelocationsherbrooke.com/property/1204-francoise-gaudet-smet/" class="listing-featured-thumb hover-effect">
1259 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/IMG_9736-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/IMG_9736-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/IMG_9736-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/IMG_9736-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1260 +Libre maintenant
1261 +</a></div><h2 class="item-title">
1262 +<a href="https://agencedelocationsherbrooke.com/property/1204-francoise-gaudet-smet/">1204 Françoise-Gaudet-Smet</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,295$/mensuel</li></ul> <address class="item-address">1204, Rue Françoise-Gaudet-Smet, Fleurimont, Sherbrooke, Estrie, Québec, J1G 2Y4, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lits:</span> <span class="hz-figure">3</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>5½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/1204-francoise-gaudet-smet/">
1263 +Détails</a><div class="item-author">
1264 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1265 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1266 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1267 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10441" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172208.173-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172208.173-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172205.304-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172206.752-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172201.386-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172200.165-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172158.943-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172157.717-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172156.344-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172150.833-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172149.596-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172146.882-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-04T172145.889-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1268 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1269 +Mont Bellevue
1270 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1271 +Libre maintenant
1272 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">990$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1273 +<span class="hz-show-lightbox-js" data-listid="10441" data-toggle="tooltip" data-placement="top" title="Aperçu">
1274 +<i class="houzez-icon icon-expand-3"></i>
1275 +</span></li><li class="item-tool item-favorite">
1276 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10441">
1277 +<i class="houzez-icon icon-love-it "></i>
1278 +</span></li><li class="item-tool item-compare">
1279 +<span class="houzez_compare compare-10441 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10441" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-592x444.jpeg">
1280 +<i class="houzez-icon icon-add-circle"></i>
1281 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1282 +<a href="https://agencedelocationsherbrooke.com/property/826-short/" class="listing-featured-thumb hover-effect">
1283 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-04T172208.173-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/" class="label-status label status-color-88">
1284 +Mont Bellevue
1285 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1286 +Libre maintenant
1287 +</a></div><h2 class="item-title">
1288 +<a href="https://agencedelocationsherbrooke.com/property/826-short/">826 Short</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">990$/mensuel</li></ul> <address class="item-address">826, Rue Short, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4C4, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lits:</span> <span class="hz-figure">3</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>5½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/826-short/">
1289 +Détails</a><div class="item-author">
1290 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1291 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1292 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1293 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-9869" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/01\/IMG_8342-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/IMG_8327-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/IMG_8328-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/IMG_8329-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/IMG_8330-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/IMG_8331-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/IMG_8332-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/IMG_8333-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/01\/IMG_8342-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/IMG_8334-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/IMG_8335-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/IMG_8336-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/06\/IMG_8337-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1294 +Centre-ville
1295 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1296 +Libre maintenant
1297 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,200$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1298 +<span class="hz-show-lightbox-js" data-listid="9869" data-toggle="tooltip" data-placement="top" title="Aperçu">
1299 +<i class="houzez-icon icon-expand-3"></i>
1300 +</span></li><li class="item-tool item-favorite">
1301 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="9869">
1302 +<i class="houzez-icon icon-love-it "></i>
1303 +</span></li><li class="item-tool item-compare">
1304 +<span class="houzez_compare compare-9869 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="9869" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/01/IMG_8342-592x444.jpg">
1305 +<i class="houzez-icon icon-add-circle"></i>
1306 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1307 +<a href="https://agencedelocationsherbrooke.com/property/374-fusiliers/" class="listing-featured-thumb hover-effect">
1308 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/01/IMG_8342-592x444.jpg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/01/IMG_8342-592x444.jpg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/01/IMG_8342-584x438.jpg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/01/IMG_8342-120x90.jpg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1309 +Centre-ville
1310 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1311 +Libre maintenant
1312 +</a></div><h2 class="item-title">
1313 +<a href="https://agencedelocationsherbrooke.com/property/374-fusiliers/">374 Fusiliers</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,200$/mensuel</li></ul> <address class="item-address">374, Rue des Fusiliers, Les Nations, Sherbrooke, Estrie, Québec, J1H 4J5, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lits:</span> <span class="hz-figure">3</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>5½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/374-fusiliers/">
1314 +Détails</a><div class="item-author">
1315 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1316 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1317 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1318 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></section></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1319 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1320 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1321 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1322 +<i class="houzez-icon icon-arrow-up-1"></i>
1323 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1324 +<button class="compare-property-label" style="display: none;">
1325 +<span class="compare-count compare-label"></span>
1326 +<i class="houzez-icon icon-move-left-right"></i>
1327 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1328 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1329 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1330 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1331 +<span aria-hidden="true">&times;</span>
1332 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1333 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1334 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1335 +<label class="control control--checkbox flex-grow-1">
1336 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1337 +</label>
1338 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/property/1206-francoise-gaudet-smet/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1339 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/?login=success">
1340 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1341 +<span class="btn-loader houzez-loader-js"></span> Connexion
1342 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1343 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1344 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1345 +<span aria-hidden="true">&times;</span>
1346 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1347 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1348 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/property/1206-francoise-gaudet-smet/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1349 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><div class="mobile-property-contact visible-on-mobile"><div class="d-flex justify-content-between"><div class="agent-details flex-grow-1"><div class="d-flex align-items-center"><div class="agent-image">
1350 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" width="50" height="50" alt="Catherine Perreault"></div><ul class="agent-information list-unstyled"><li class="agent-name">
1351 +Catherine Perreault</li></ul></div></div>
1352 +<button class="btn btn-secondary" data-toggle="modal" data-target="#mobile-property-form">
1353 +<i class="houzez-icon icon-messages-bubble"></i>
1354 +</button></div></div><div class="modal fade mobile-property-form" id="mobile-property-form"><div class="modal-dialog" role="document"><div class="modal-content">
1355 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1356 +<span aria-hidden="true">&times;</span>
1357 +</button><div class="modal-body"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1358 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1359 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1360 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [1206 Françoise-Gaudet-Smet]</textarea></div>
1361 +<input type="hidden" name="target_email" value="&#99;a&#116;&#104;&#101;ri&#110;&#101;.&#112;er&#114;e&#97;u&#108;t&#64;prestip&#108;&#101;x.&#99;&#111;m">
1362 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1363 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/"/>
1364 +<input type="hidden" name="property_title" value="1206 Françoise-Gaudet-Smet"/>
1365 +<input type="hidden" name="property_id" value="ADLS-10527"/>
1366 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1367 +<input type="hidden" name="listing_id" value="10527">
1368 +<input type="hidden" name="is_listing_form" value="yes">
1369 +<input type="hidden" name="agent_id" value="156">
1370 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1371 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1372 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1373 +</button></form></div></div></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div class="modal-content"><div class="modal-header"><div class="d-flex align-items-center"><div class="lightbox-logo">
1374 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white.png" alt="1206 Françoise-Gaudet-Smet" width="127" height="32" /></div><div class="lightbox-title flex-grow-1"></div><div class="lightbox-tools"><ul class="list-inline"><li class="list-inline-item btn-favorite">
1375 +<a class="add-favorite-js" data-listid="10527" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Favoris</span></a></li><li class="list-inline-item btn-share">
1376 +<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Partager</span></a><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1377 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=1206+Fran%C3%A7oise-Gaudet-Smet&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F">
1378 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&amp;t=1206+Fran%C3%A7oise-Gaudet-Smet" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1379 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1380 +</a>
1381 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=1206+Fran%C3%A7oise-Gaudet-Smet&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1382 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1383 +</a>
1384 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1385 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1386 +</a>
1387 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1206-francoise-gaudet-smet%2F&title=1206+Fran%C3%A7oise-Gaudet-Smet&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-29f9d977ede5c7d640473f6d-="">
1388 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1389 +</a>
1390 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#1f6c70727a70717a5f7a677e726f737a317c7072204c6a7d757a7c6b222e2d2f293f596d7e71dcb870766c7a32587e6a7b7a6b324c727a6b397d707b6622776b6b6f6c3a2c5e3a2d593a2d597e787a717c7a7b7a73707c7e6b7670716c777a6d7d6d7070747a317c70723a2d596f6d706f7a6d6b663a2d592e2d2f2932796d7e717c70766c7a32787e6a7b7a6b326c727a6b3a2d59">
1391 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1392 +</a></div></li><li class="list-inline-item btn-email">
1393 +<a href="#"><i class="houzez-icon icon-envelope"></i></a></li></ul></div></div>
1394 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1395 +<span aria-hidden="true">&times;</span>
1396 +</button></div><div class="modal-body clearfix"><div class="lightbox-gallery-wrap ">
1397 +<a class="btn-expand">
1398 +<i class="houzez-icon icon-expand-3"></i>
1399 +</a><div class="lightbox-gallery"><div id="lightbox-slider-js" class="lightbox-slider"><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-scaled.jpeg" alt="" title="image - 2026-07-28T164102.079" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164100.403-scaled.jpeg" alt="" title="image - 2026-07-28T164100.403" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164058.897-scaled.jpeg" alt="" title="image - 2026-07-28T164058.897" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164057.450-scaled.jpeg" alt="" title="image - 2026-07-28T164057.450" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164055.241-scaled.jpeg" alt="" title="image - 2026-07-28T164055.241" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164053.100-scaled.jpeg" alt="" title="image - 2026-07-28T164053.100" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164051.688-scaled.jpeg" alt="" title="image - 2026-07-28T164051.688" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164050.255-scaled.jpeg" alt="" title="image - 2026-07-28T164050.255" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164048.589-scaled.jpeg" alt="" title="image - 2026-07-28T164048.589" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164023.856-scaled.jpeg" alt="" title="image - 2026-07-28T164023.856" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164022.508-scaled.jpeg" alt="" title="image - 2026-07-28T164022.508" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164021.232-scaled.jpeg" alt="" title="image - 2026-07-28T164021.232" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164019.659-scaled.jpeg" alt="" title="image - 2026-07-28T164019.659" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164018.285-scaled.jpeg" alt="" title="image - 2026-07-28T164018.285" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164016.789-scaled.jpeg" alt="" title="image - 2026-07-28T164016.789" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164015.252-scaled.jpeg" alt="" title="image - 2026-07-28T164015.252" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164013.909-scaled.jpeg" alt="" title="image - 2026-07-28T164013.909" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164012.198-scaled.jpeg" alt="" title="image - 2026-07-28T164012.198" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164011.386-scaled.jpeg" alt="" title="image - 2026-07-28T164011.386" width="1920" height="2560" /></div></div></div></div><div class="lightbox-form-wrap"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1400 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1401 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1402 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [1206 Françoise-Gaudet-Smet]</textarea></div>
1403 +<input type="hidden" name="target_email" value="cath&#101;r&#105;n&#101;.p&#101;&#114;&#114;e&#97;ult&#64;pr&#101;&#115;&#116;&#105;&#112;&#108;&#101;x.com">
1404 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1405 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/"/>
1406 +<input type="hidden" name="property_title" value="1206 Françoise-Gaudet-Smet"/>
1407 +<input type="hidden" name="property_id" value="ADLS-10527"/>
1408 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1409 +<input type="hidden" name="listing_id" value="10527">
1410 +<input type="hidden" name="is_listing_form" value="yes">
1411 +<input type="hidden" name="agent_id" value="156">
1412 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1413 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1414 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1415 +</button></form></div></div></div></div><div class="modal-footer"></div></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1416 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="29f9d977ede5c7d640473f6d-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1417 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="bootstrap-datepicker.fr-CA-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr-CA.min.js"></script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com/property/1206-francoise-gaudet-smet/","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_nav","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"fr-CA","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="leaflet-js" type="litespeed/javascript" data-src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script> <script id="houzez-single-property-map-js-extra" type="litespeed/javascript">var houzez_single_property_map={"title":"1206 Fran\u00e7oise-Gaudet-Smet","price":" 1,295$/mensuel","property_id":"10527","pricePin":"1,295$/mensuel","property_type":"5\u00bd","address":"1206, Rue Fran\u00e7oise-Gaudet-Smet, Fleurimont, Sherbrooke, Estrie, Qu\u00e9bec, J1G 2Y4, Canada","lat":"45.3865038","lng":"-71.8685816","term_id":"101","marker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","retinaMarker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","thumbnail":"https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164102.079-120x90.jpeg"};var houzez_map_options={"markerPricePins":"no","single_map_zoom":"12","map_type":"roadmap","map_pin_type":"marker","googlemap_stype":"","closeIcon":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/close.png","infoWindowPlac":"https://placehold.it/120x90&text=Agence+de+location+Sherbrooke"}</script> <script id="houzez-walkscore-js-before" type="litespeed/javascript">var ws_wsid=' 65c6f7843483895d5d5ef58e01b2d789';var ws_address='1206, Rue Françoise-Gaudet-Smet, Fleurimont, Sherbrooke, Estrie, Québec, J1G 2Y4, Canada';var ws_format='wide';var ws_width='650';var ws_width='100%';var ws_height='400'</script> <script id="houzez-walkscore-js" type="litespeed/javascript" data-src="https://www.walkscore.com/tile/show-walkscore-tile.php"></script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1418 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="29f9d977ede5c7d640473f6d-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="29f9d977ede5c7d640473f6d-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="29f9d977ede5c7d640473f6d-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/7eb3e0d215c9a5e36449ede9b8431764.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="29f9d977ede5c7d640473f6d-|49" defer></script></body></html>
1419 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:31:14 -->
1420 +
1421 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:31:14 -->
1422 +<!-- Guest Mode -->
1423 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/ed93c1ba2200a9da666c9871ea0b8f1b.css -->
1424 +<!-- QUIC.cloud UCSS loaded ✅ /ucss/eea72f6b21efb72033c18290725b8620.css -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/8a145c6b4feb0c2b4ccb.html +1357 −0
@@ -0,0 +1,1357 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="f07c0be01ec918d96f44d50c-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>94 Garneau #3 - Agence de location Sherbrooke</title><meta name="description" content="À louer – 4 ½ au 94 Garneau, East Angus Disponible 1er juillet – logement situé au 1er plancher Chats acceptés (aucun chien) Thermopompe Rien d’inclus Possibilité d’ajouter les électroménagers pour 125 $/mois Conditions : Enquête de crédit obligatoire Non-fumeur Pour plus d’informations ou pour planifier une visite, contactez-nous dès aujourd’hui." /><meta name="robots" content="max-image-preview:large" /><meta name="author" content="Catherine Perreault"/><link rel="canonical" href="https://agencedelocationsherbrooke.com/property/94-garneau-3/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="article" /><meta property="og:title" content="94 Garneau #3 - Agence de location Sherbrooke" /><meta property="og:description" content="À louer – 4 ½ au 94 Garneau, East Angus Disponible 1er juillet – logement situé au 1er plancher Chats acceptés (aucun chien) Thermopompe Rien d’inclus Possibilité d’ajouter les électroménagers pour 125 $/mois Conditions : Enquête de crédit obligatoire Non-fumeur Pour plus d’informations ou pour planifier une visite, contactez-nous dès aujourd’hui." /><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/94-garneau-3/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-scaled.jpeg" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-scaled.jpeg" /><meta property="og:image:width" content="1920" /><meta property="og:image:height" content="2560" /><meta property="article:published_time" content="2026-04-30T01:49:50+00:00" /><meta property="article:modified_time" content="2026-04-30T02:08:05+00:00" /><meta property="article:publisher" content="https://www.facebook.com/agencedelocationsherbrooke" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="94 Garneau #3 - Agence de location Sherbrooke" /><meta name="twitter:description" content="À louer – 4 ½ au 94 Garneau, East Angus Disponible 1er juillet – logement situé au 1er plancher Chats acceptés (aucun chien) Thermopompe Rien d’inclus Possibilité d’ajouter les électroménagers pour 125 $/mois Conditions : Enquête de crédit obligatoire Non-fumeur Pour plus d’informations ou pour planifier une visite, contactez-nous dès aujourd’hui." /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/94-garneau-3\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","position":2,"name":"Properties","item":"https:\/\/agencedelocationsherbrooke.com\/property\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/#listItem","name":"4\u00bd"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/#listItem","position":3,"name":"4\u00bd","item":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/94-garneau-3\/#listItem","name":"94 Garneau #3"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/94-garneau-3\/#listItem","position":4,"name":"94 Garneau #3","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/#listItem","name":"4\u00bd"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/94-garneau-3\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/94-garneau-3\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"Person","@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author","url":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/","name":"Catherine Perreault","image":{"@type":"ImageObject","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/94-garneau-3\/#authorImage","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/litespeed\/avatar\/fdca211e8cbd2f88b79d873de06d8fa9.jpg?ver=1785951645","width":96,"height":96,"caption":"Catherine Perreault"}},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/94-garneau-3\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/property\/94-garneau-3\/","name":"94 Garneau #3 - Agence de location Sherbrooke","description":"\u00c0 louer \u2013 4 \u00bd au 94 Garneau, East Angus Disponible 1er juillet \u2013 logement situ\u00e9 au 1er plancher Chats accept\u00e9s (aucun chien) Thermopompe Rien d\u2019inclus Possibilit\u00e9 d\u2019ajouter les \u00e9lectrom\u00e9nagers pour 125 $\/mois Conditions : Enqu\u00eate de cr\u00e9dit obligatoire Non-fumeur Pour plus d\u2019informations ou pour planifier une visite, contactez-nous d\u00e8s aujourd\u2019hui.","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/94-garneau-3\/#breadcrumblist"},"author":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"creator":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214604.302-scaled.jpeg","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/94-garneau-3\/#mainImage","width":1920,"height":2560},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/94-garneau-3\/#mainImage"},"datePublished":"2026-04-30T01:49:50+00:00","dateModified":"2026-04-30T02:08:05+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//unpkg.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&#038;format=xml" /><meta property="og:title" content="94 Garneau #3"/><meta property="og:description" content="À louer – 4 ½ au 94 Garneau, East Angus
2 +Disponible 1er juillet – logement situé au 1er plancherChats acceptés (aucun chien)ThermopompeRien d’in" /><meta property="og:type" content="article"/><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/94-garneau-3/"/><meta property="og:site_name" content="Agence de location Sherbrooke"/><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-scaled.jpeg"/><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
3 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}body{font-size:15px;font-family:Roboto,sans-serif}body{background-color:#f8f8f8}body{color:#222}body{line-height:25px;font-weight:300;text-transform:none}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}body{background-color:#f7f7f7}body{color:#222}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="f07c0be01ec918d96f44d50c-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/ucss/11e4fe7ee5e745b5c2a3b05f2b65fd54.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="wp-block-library-inline-css">:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
4 +
5 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */</style><style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
6 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
7 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
8 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
9 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
10 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
11 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
12 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
13 + .container {
14 + max-width: 1210px;
15 + }
16 + }
17 + .label-color-87 {
18 + background-color: #31af00;
19 + }
20 +
21 + .status-color-28 {
22 + background-color: #dd9933;
23 + }
24 +
25 + .status-color-88 {
26 + background-color: #b7ba00;
27 + }
28 +
29 + .status-color-95 {
30 + background-color: #dd3333;
31 + }
32 +
33 + .status-color-94 {
34 + background-color: #1e73be;
35 + }
36 +
37 + .status-color-89 {
38 + background-color: #31af00;
39 + }
40 +
41 + body {
42 + font-family: Poppins;
43 + font-size: 16px;
44 + font-weight: 400;
45 + line-height: 24px;
46 + text-transform: none;
47 + }
48 + .main-nav,
49 + .dropdown-menu,
50 + .login-register,
51 + .btn.btn-create-listing,
52 + .logged-in-nav,
53 + .btn-phone-number {
54 + font-family: Poppins;
55 + font-size: 14px;
56 + font-weight: 400;
57 + text-align: left;
58 + text-transform: uppercase;
59 + }
60 +
61 + .btn,
62 + .form-control,
63 + .bootstrap-select .text,
64 + .sort-by-title,
65 + .woocommerce ul.products li.product .button {
66 + font-family: Poppins;
67 + font-size: 16px;
68 + }
69 +
70 + h1, h2, h3, h4, h5, h6, .item-title {
71 + font-family: Poppins;
72 + font-weight: 400;
73 + text-transform: capitalize;
74 + }
75 +
76 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
77 + font-weight: 400;
78 + text-transform: capitalize;
79 + text-align: inherit;
80 + }
81 +
82 + .top-bar-wrap {
83 + font-family: Poppins;
84 + font-size: 15px;
85 + font-weight: 300;
86 + line-height: 25px;
87 + text-align: left;
88 + text-transform: none;
89 + }
90 + .footer-wrap {
91 + font-family: Poppins;
92 + font-size: 14px;
93 + font-weight: 300;
94 + line-height: 25px;
95 + text-align: left;
96 + text-transform: none;
97 + }
98 +
99 + .header-v1 .header-inner-wrap,
100 + .header-v1 .navbar-logged-in-wrap {
101 + line-height: 60px;
102 + height: 60px;
103 + }
104 + .header-v2 .header-top .navbar {
105 + height: 110px;
106 + }
107 +
108 + .header-v2 .header-bottom .header-inner-wrap,
109 + .header-v2 .header-bottom .navbar-logged-in-wrap {
110 + line-height: 54px;
111 + height: 54px;
112 + }
113 +
114 + .header-v3 .header-top .header-inner-wrap,
115 + .header-v3 .header-top .header-contact-wrap {
116 + height: 80px;
117 + line-height: 80px;
118 + }
119 + .header-v3 .header-bottom .header-inner-wrap,
120 + .header-v3 .header-bottom .navbar-logged-in-wrap {
121 + line-height: 54px;
122 + height: 54px;
123 + }
124 + .header-v4 .header-inner-wrap,
125 + .header-v4 .navbar-logged-in-wrap {
126 + line-height: 90px;
127 + height: 90px;
128 + }
129 + .header-v5 .header-top .header-inner-wrap,
130 + .header-v5 .header-top .navbar-logged-in-wrap {
131 + line-height: 110px;
132 + height: 110px;
133 + }
134 + .header-v5 .header-bottom .header-inner-wrap {
135 + line-height: 54px;
136 + height: 54px;
137 + }
138 + .header-v6 .header-inner-wrap,
139 + .header-v6 .navbar-logged-in-wrap {
140 + height: 60px;
141 + line-height: 60px;
142 + }
143 + @media (min-width: 1200px) {
144 + .header-v5 .header-top .container {
145 + max-width: 1170px;
146 + }
147 + }
148 +
149 + body,
150 + .main-wrap,
151 + .fw-property-documents-wrap h3 span,
152 + .fw-property-details-wrap h3 span {
153 + background-color: #f7f7f7;
154 + }
155 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
156 + background-color: #ffffff;
157 + }
158 +
159 + body,
160 + .form-control,
161 + .bootstrap-select .text,
162 + .item-title a,
163 + .listing-tabs .nav-tabs .nav-link,
164 + .item-wrap-v2 .item-amenities li span,
165 + .item-wrap-v2 .item-amenities li:before,
166 + .item-parallax-wrap .item-price-wrap,
167 + .list-view .item-body .item-price-wrap,
168 + .property-slider-item .item-price-wrap,
169 + .page-title-wrap .item-price-wrap,
170 + .agent-information .agent-phone span a,
171 + .property-overview-wrap ul li strong,
172 + .mobile-property-title .item-price-wrap .item-price,
173 + .fw-property-features-left li a,
174 + .lightbox-content-wrap .item-price-wrap,
175 + .blog-post-item-v1 .blog-post-title h3 a,
176 + .blog-post-content-widget h4 a,
177 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
178 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
179 + .agent-list-wrap .agent-list-content h2 a,
180 + .agent-list-wrap .agent-list-contact li a,
181 + .agent-contacts-wrap li a,
182 + .menu-edit-property li a,
183 + .statistic-referrals-list li a,
184 + .chart-nav .nav-pills .nav-link,
185 + .dashboard-table-properties td .property-payment-status,
186 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
187 + .payment-method-block .radio-tab .control-text,
188 + .post-title-wrap h2 a,
189 + .lead-nav-tab.nav-pills .nav-link,
190 + .deals-nav-tab.nav-pills .nav-link,
191 + .btn-light-grey-outlined:hover,
192 + button:not(.bs-placeholder) .filter-option-inner-inner,
193 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
194 + .products > .product > .item-body > a,
195 + .woocommerce ul.products li.product .price,
196 + .woocommerce div.product p.price,
197 + .woocommerce div.product span.price,
198 + .woocommerce #reviews #comments ol.commentlist li .meta,
199 + .woocommerce-MyAccount-navigation ul li a,
200 + .activitiy-item-close-button a,
201 + .property-section-wrap li a {
202 + color: #222222;
203 + }
204 +
205 +
206 +
207 + a,
208 + a:hover,
209 + a:active,
210 + a:focus,
211 + .primary-text,
212 + .btn-clear,
213 + .btn-apply,
214 + .btn-primary-outlined,
215 + .btn-primary-outlined:before,
216 + .item-title a:hover,
217 + .sort-by .bootstrap-select .bs-placeholder,
218 + .sort-by .bootstrap-select > .btn,
219 + .sort-by .bootstrap-select > .btn:active,
220 + .page-link,
221 + .page-link:hover,
222 + .accordion-title:before,
223 + .blog-post-content-widget h4 a:hover,
224 + .agent-list-wrap .agent-list-content h2 a:hover,
225 + .agent-list-wrap .agent-list-contact li a:hover,
226 + .agent-contacts-wrap li a:hover,
227 + .agent-nav-wrap .nav-pills .nav-link,
228 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
229 + .menu-edit-property li a.active,
230 + .menu-edit-property li a:hover,
231 + .dashboard-statistic-block h3 .fa,
232 + .statistic-referrals-list li a:hover,
233 + .chart-nav .nav-pills .nav-link.active,
234 + .board-message-icon-wrap.active,
235 + .post-title-wrap h2 a:hover,
236 + .listing-switch-view .switch-btn.active,
237 + .item-wrap-v6 .item-price-wrap,
238 + .listing-v6 .list-view .item-body .item-price-wrap,
239 + .woocommerce nav.woocommerce-pagination ul li a,
240 + .woocommerce nav.woocommerce-pagination ul li span,
241 + .woocommerce-MyAccount-navigation ul li a:hover,
242 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
243 + .property-schedule-tour-form-wrap .control:hover,
244 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
245 + .login-register .btn-icon-login-register + .dropdown-menu a,
246 + .activitiy-item-close-button a:hover,
247 + .property-section-wrap li a:hover,
248 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
249 + color: #3385d9;
250 + }
251 +
252 + .agent-list-position a {
253 + color: #3385d9;
254 + }
255 +
256 + .control input:checked ~ .control__indicator,
257 + .top-banner-wrap .nav-pills .nav-link,
258 + .btn-primary-outlined:hover,
259 + .page-item.active .page-link,
260 + .slick-prev:hover,
261 + .slick-prev:focus,
262 + .slick-next:hover,
263 + .slick-next:focus,
264 + .mobile-property-tools .nav-pills .nav-link.active,
265 + .login-register-form .modal-header,
266 + .agent-nav-wrap .nav-pills .nav-link.active,
267 + .board-message-icon-wrap .notification-circle,
268 + .primary-label,
269 + .fc-event, .fc-event-dot,
270 + .compare-table .table-hover > tbody > tr:hover,
271 + .post-tag,
272 + .datepicker table tr td.active.active,
273 + .datepicker table tr td.active.disabled,
274 + .datepicker table tr td.active.disabled.active,
275 + .datepicker table tr td.active.disabled.disabled,
276 + .datepicker table tr td.active.disabled:active,
277 + .datepicker table tr td.active.disabled:hover,
278 + .datepicker table tr td.active.disabled:hover.active,
279 + .datepicker table tr td.active.disabled:hover.disabled,
280 + .datepicker table tr td.active.disabled:hover:active,
281 + .datepicker table tr td.active.disabled:hover:hover,
282 + .datepicker table tr td.active.disabled:hover[disabled],
283 + .datepicker table tr td.active.disabled[disabled],
284 + .datepicker table tr td.active:active,
285 + .datepicker table tr td.active:hover,
286 + .datepicker table tr td.active:hover.active,
287 + .datepicker table tr td.active:hover.disabled,
288 + .datepicker table tr td.active:hover:active,
289 + .datepicker table tr td.active:hover:hover,
290 + .datepicker table tr td.active:hover[disabled],
291 + .datepicker table tr td.active[disabled],
292 + .ui-slider-horizontal .ui-slider-range,
293 + .btn-bubble {
294 + background-color: #3385d9;
295 + }
296 +
297 + .control input:checked ~ .control__indicator,
298 + .btn-primary-outlined,
299 + .page-item.active .page-link,
300 + .mobile-property-tools .nav-pills .nav-link.active,
301 + .agent-nav-wrap .nav-pills .nav-link,
302 + .agent-nav-wrap .nav-pills .nav-link.active,
303 + .chart-nav .nav-pills .nav-link.active,
304 + .dashaboard-snake-nav .step-block.active,
305 + .fc-event,
306 + .fc-event-dot,
307 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
308 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
309 + border-color: #3385d9;
310 + }
311 +
312 + .slick-arrow:hover {
313 + background-color: rgba(43,111,180,1);
314 + }
315 +
316 + .slick-arrow {
317 + background-color: #3385d9;
318 + }
319 +
320 + .property-banner .nav-pills .nav-link.active {
321 + background-color: rgba(43,111,180,1) !important;
322 + }
323 +
324 + .property-navigation-wrap a.active {
325 + color: #3385d9;
326 + -webkit-box-shadow: inset 0 -3px #3385d9;
327 + box-shadow: inset 0 -3px #3385d9;
328 + }
329 +
330 + .btn-primary,
331 + .fc-button-primary,
332 + .woocommerce nav.woocommerce-pagination ul li a:focus,
333 + .woocommerce nav.woocommerce-pagination ul li a:hover,
334 + .woocommerce nav.woocommerce-pagination ul li span.current {
335 + color: #fff;
336 + background-color: #3385d9;
337 + border-color: #3385d9;
338 + }
339 + .btn-primary:focus, .btn-primary:focus:active,
340 + .fc-button-primary:focus,
341 + .fc-button-primary:focus:active {
342 + color: #fff;
343 + background-color: #3385d9;
344 + border-color: #3385d9;
345 + }
346 + .btn-primary:hover,
347 + .fc-button-primary:hover {
348 + color: #fff;
349 + background-color: #2b6fb4;
350 + border-color: #2b6fb4;
351 + }
352 + .btn-primary:active,
353 + .btn-primary:not(:disabled):not(:disabled):active,
354 + .fc-button-primary:active,
355 + .fc-button-primary:not(:disabled):not(:disabled):active {
356 + color: #fff;
357 + background-color: #2b6fb4;
358 + border-color: #2b6fb4;
359 + }
360 +
361 + .btn-secondary,
362 + .woocommerce span.onsale,
363 + .woocommerce ul.products li.product .button,
364 + .woocommerce #respond input#submit.alt,
365 + .woocommerce a.button.alt,
366 + .woocommerce button.button.alt,
367 + .woocommerce input.button.alt,
368 + .woocommerce #review_form #respond .form-submit input,
369 + .woocommerce #respond input#submit,
370 + .woocommerce a.button,
371 + .woocommerce button.button,
372 + .woocommerce input.button {
373 + color: #fff;
374 + background-color: #656565;
375 + border-color: #656565;
376 + }
377 + .woocommerce ul.products li.product .button:focus,
378 + .woocommerce ul.products li.product .button:active,
379 + .woocommerce #respond input#submit.alt:focus,
380 + .woocommerce a.button.alt:focus,
381 + .woocommerce button.button.alt:focus,
382 + .woocommerce input.button.alt:focus,
383 + .woocommerce #respond input#submit.alt:active,
384 + .woocommerce a.button.alt:active,
385 + .woocommerce button.button.alt:active,
386 + .woocommerce input.button.alt:active,
387 + .woocommerce #review_form #respond .form-submit input:focus,
388 + .woocommerce #review_form #respond .form-submit input:active,
389 + .woocommerce #respond input#submit:active,
390 + .woocommerce a.button:active,
391 + .woocommerce button.button:active,
392 + .woocommerce input.button:active,
393 + .woocommerce #respond input#submit:focus,
394 + .woocommerce a.button:focus,
395 + .woocommerce button.button:focus,
396 + .woocommerce input.button:focus {
397 + color: #fff;
398 + background-color: #656565;
399 + border-color: #656565;
400 + }
401 + .btn-secondary:hover,
402 + .woocommerce ul.products li.product .button:hover,
403 + .woocommerce #respond input#submit.alt:hover,
404 + .woocommerce a.button.alt:hover,
405 + .woocommerce button.button.alt:hover,
406 + .woocommerce input.button.alt:hover,
407 + .woocommerce #review_form #respond .form-submit input:hover,
408 + .woocommerce #respond input#submit:hover,
409 + .woocommerce a.button:hover,
410 + .woocommerce button.button:hover,
411 + .woocommerce input.button:hover {
412 + color: #fff;
413 + background-color: #333333;
414 + border-color: #333333;
415 + }
416 + .btn-secondary:active,
417 + .btn-secondary:not(:disabled):not(:disabled):active {
418 + color: #fff;
419 + background-color: #333333;
420 + border-color: #333333;
421 + }
422 +
423 + .btn-primary-outlined {
424 + color: #3385d9;
425 + background-color: transparent;
426 + border-color: #3385d9;
427 + }
428 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
429 + color: #3385d9;
430 + background-color: transparent;
431 + border-color: #3385d9;
432 + }
433 + .btn-primary-outlined:hover {
434 + color: #fff;
435 + background-color: #2b6fb4;
436 + border-color: #2b6fb4;
437 + }
438 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
439 + color: #3385d9;
440 + background-color: rgba(26, 26, 26, 0);
441 + border-color: #2b6fb4;
442 + }
443 +
444 + .btn-secondary-outlined {
445 + color: #656565;
446 + background-color: transparent;
447 + border-color: #656565;
448 + }
449 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
450 + color: #656565;
451 + background-color: transparent;
452 + border-color: #656565;
453 + }
454 + .btn-secondary-outlined:hover {
455 + color: #fff;
456 + background-color: #333333;
457 + border-color: #333333;
458 + }
459 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
460 + color: #656565;
461 + background-color: rgba(26, 26, 26, 0);
462 + border-color: #333333;
463 + }
464 +
465 + .btn-call {
466 + color: #656565;
467 + background-color: transparent;
468 + border-color: #656565;
469 + }
470 + .btn-call:focus, .btn-call:focus:active {
471 + color: #656565;
472 + background-color: transparent;
473 + border-color: #656565;
474 + }
475 + .btn-call:hover {
476 + color: #656565;
477 + background-color: rgba(26, 26, 26, 0);
478 + border-color: #333333;
479 + }
480 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
481 + color: #656565;
482 + background-color: rgba(26, 26, 26, 0);
483 + border-color: #333333;
484 + }
485 + .icon-delete .btn-loader:after{
486 + border-color: #3385d9 transparent #3385d9 transparent
487 + }
488 +
489 + .header-v1 {
490 + background-color: #004274;
491 + border-bottom: 1px solid #004274;
492 + }
493 +
494 + .header-v1 a.nav-link {
495 + color: #ffffff;
496 + }
497 +
498 + .header-v1 a.nav-link:hover,
499 + .header-v1 a.nav-link:active {
500 + color: #00aeff;
501 + background-color: rgba(255,255,255,0.2);
502 + }
503 + .header-desktop .main-nav .nav-link {
504 + letter-spacing: 0.0px;
505 + }
506 +
507 + .header-v2 .header-top,
508 + .header-v5 .header-top,
509 + .header-v2 .header-contact-wrap {
510 + background-color: #ffffff;
511 + }
512 +
513 + .header-v2 .header-bottom,
514 + .header-v5 .header-bottom {
515 + background-color: #004274;
516 + }
517 +
518 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
519 + color: #004274;
520 + }
521 +
522 + .header-v2 .header-contact-left {
523 + color: #004274;
524 + }
525 +
526 + .header-v2 .header-bottom,
527 + .header-v2 .navbar-nav > li,
528 + .header-v2 .navbar-nav > li:first-of-type,
529 + .header-v5 .header-bottom,
530 + .header-v5 .navbar-nav > li,
531 + .header-v5 .navbar-nav > li:first-of-type {
532 + border-color: rgba(255,255,255,0.2);
533 + }
534 +
535 + .header-v2 a.nav-link,
536 + .header-v5 a.nav-link {
537 + color: #ffffff;
538 + }
539 +
540 + .header-v2 a.nav-link:hover,
541 + .header-v2 a.nav-link:active,
542 + .header-v5 a.nav-link:hover,
543 + .header-v5 a.nav-link:active {
544 + color: #00aeff;
545 + background-color: rgba(255,255,255,0.2);
546 + }
547 +
548 + .header-v2 .header-contact-right a:hover,
549 + .header-v2 .header-contact-right a:active,
550 + .header-v3 .header-contact-right a:hover,
551 + .header-v3 .header-contact-right a:active {
552 + background-color: transparent;
553 + }
554 +
555 + .header-v2 .header-social-icons a,
556 + .header-v5 .header-social-icons a {
557 + color: #004274;
558 + }
559 +
560 + .header-v3 .header-top {
561 + background-color: #004274;
562 + }
563 +
564 + .header-v3 .header-bottom {
565 + background-color: #004272;
566 + }
567 +
568 + .header-v3 .header-contact,
569 + .header-v3-mobile {
570 + background-color: #00aeef;
571 + color: #ffffff;
572 + }
573 +
574 + .header-v3 .header-bottom,
575 + .header-v3 .login-register,
576 + .header-v3 .navbar-nav > li,
577 + .header-v3 .navbar-nav > li:first-of-type {
578 + border-color: ;
579 + }
580 +
581 + .header-v3 a.nav-link,
582 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
583 + color: #ffffff;
584 + }
585 +
586 + .header-v3 a.nav-link:hover,
587 + .header-v3 a.nav-link:active {
588 + color: #00aeff;
589 + background-color: rgba(255,255,255,0.2);
590 + }
591 +
592 + .header-v3 .header-social-icons a {
593 + color: #FFFFFF;
594 + }
595 +
596 + .header-v4 {
597 + background-color: #ffffff;
598 + }
599 +
600 + .header-v4 a.nav-link {
601 + color: #000000;
602 + }
603 +
604 + .header-v4 a.nav-link:hover,
605 + .header-v4 a.nav-link:active {
606 + color: #3385d9;
607 + background-color: rgba(255,255,255,0.2);
608 + }
609 +
610 + .header-v6 .header-top {
611 + background-color: #00AEEF;
612 + }
613 +
614 + .header-v6 a.nav-link {
615 + color: #FFFFFF;
616 + }
617 +
618 + .header-v6 a.nav-link:hover,
619 + .header-v6 a.nav-link:active {
620 + color: #00aeff;
621 + background-color: rgba(255,255,255,0.2);
622 + }
623 +
624 + .header-v6 .header-social-icons a {
625 + color: #FFFFFF;
626 + }
627 +
628 + .header-mobile {
629 + background-color: #ffffff;
630 + }
631 + .header-mobile .toggle-button-left,
632 + .header-mobile .toggle-button-right {
633 + color: #000000;
634 + }
635 +
636 + .nav-mobile .logged-in-nav a,
637 + .nav-mobile .main-nav,
638 + .nav-mobile .navi-login-register {
639 + background-color: #ffffff;
640 + }
641 +
642 + .nav-mobile .logged-in-nav a,
643 + .nav-mobile .main-nav .nav-item .nav-item a,
644 + .nav-mobile .main-nav .nav-item a,
645 + .navi-login-register .main-nav .nav-item a {
646 + color: #000000;
647 + border-bottom: 1px solid #ffffff;
648 + background-color: #ffffff;
649 + }
650 +
651 + .nav-mobile .btn-create-listing,
652 + .navi-login-register .btn-create-listing {
653 + color: #fff;
654 + border: 1px solid #3385d9;
655 + background-color: #3385d9;
656 + }
657 +
658 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
659 + .navi-login-register .btn-create-listing:hover,
660 + .navi-login-register .btn-create-listing:active {
661 + color: #fff;
662 + border: 1px solid #3385d9;
663 + background-color: rgba(0, 174, 255, 0.65);
664 + }
665 +
666 + .header-transparent-wrap .header-v4 {
667 + background-color: transparent;
668 + border-bottom: 1px none rgba(255,255,255,0.3);
669 + }
670 +
671 + .header-transparent-wrap .header-v4 a {
672 + color: #ffffff;
673 + }
674 +
675 + .header-transparent-wrap .header-v4 a:hover,
676 + .header-transparent-wrap .header-v4 a:active {
677 + color: #3385d9;
678 + background-color: rgba(255, 255, 255, 0.1);
679 + }
680 +
681 + .main-nav .navbar-nav .nav-item .dropdown-menu,
682 + .login-register .login-register-nav li .dropdown-menu {
683 + background-color: rgba(255,255,255,0.95);
684 + }
685 +
686 + .login-register .login-register-nav li .dropdown-menu:before {
687 + border-left-color: rgba(255,255,255,0.95);
688 + border-top-color: rgba(255,255,255,0.95);
689 + }
690 +
691 + .main-nav .navbar-nav .nav-item .nav-item a,
692 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
693 + color: #3385d9;
694 + border-bottom: 1px solid #e6e6e6;
695 + }
696 +
697 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
698 + .main-nav .navbar-nav .nav-item .nav-item a:active,
699 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
700 + color: #2b6fb4;
701 + }
702 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
703 + .main-nav .navbar-nav .nav-item .nav-item a:active,
704 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
705 + background-color: rgba(0, 174, 255, 0.1);
706 + }
707 +
708 + .header-main-wrap .btn-create-listing {
709 + color: #3385d9;
710 + border: 1px solid #3385d9;
711 + background-color: #ffffff;
712 + }
713 +
714 + .header-main-wrap .btn-create-listing:hover,
715 + .header-main-wrap .btn-create-listing:active {
716 + color: rgba(255,255,255,1);
717 + border: 1px solid #2b6fb4;
718 + background-color: rgba(43,111,180,1);
719 + }
720 +
721 + .header-transparent-wrap .header-v4 .btn-create-listing {
722 + color: #ffffff;
723 + border: 1px solid #ffffff;
724 + background-color: rgba(255,255,255,0.2);
725 + }
726 +
727 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
728 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
729 + color: rgba(255,255,255,1);
730 + border: 1px solid #3385d9;
731 + background-color: rgba(51,133,217,1);
732 + }
733 +
734 + .header-transparent-wrap .logged-in-nav a,
735 + .logged-in-nav a {
736 + color: #000000;
737 + border-color: #e6e6e6;
738 + background-color: #FFFFFF;
739 + }
740 +
741 + .header-transparent-wrap .logged-in-nav a:hover,
742 + .header-transparent-wrap .logged-in-nav a:active,
743 + .logged-in-nav a:hover,
744 + .logged-in-nav a:active {
745 + color: #000000;
746 + background-color: rgba(204,204,204,0.15);
747 + border-color: #e6e6e6;
748 + }
749 +
750 + .form-control::-webkit-input-placeholder,
751 + .search-banner-wrap ::-webkit-input-placeholder,
752 + .advanced-search ::-webkit-input-placeholder,
753 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
754 + .overlay-search-advanced-module ::-webkit-input-placeholder {
755 + color: #a1a7a8;
756 + }
757 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
758 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
759 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
760 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
761 + color: #a1a7a8;
762 + }
763 + .form-control::placeholder,
764 + .search-banner-wrap ::-webkit-input-placeholder,
765 + .advanced-search ::-webkit-input-placeholder,
766 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
767 + .overlay-search-advanced-module ::-webkit-input-placeholder {
768 + color: #a1a7a8;
769 + }
770 +
771 + .search-banner-wrap ::-moz-placeholder,
772 + .advanced-search ::-moz-placeholder,
773 + .advanced-search-banner-wrap ::-moz-placeholder,
774 + .overlay-search-advanced-module ::-moz-placeholder {
775 + color: #a1a7a8;
776 + }
777 +
778 + .search-banner-wrap :-ms-input-placeholder,
779 + .advanced-search :-ms-input-placeholder,
780 + .advanced-search-banner-wrap ::-ms-input-placeholder,
781 + .overlay-search-advanced-module ::-ms-input-placeholder {
782 + color: #a1a7a8;
783 + }
784 +
785 + .search-banner-wrap :-moz-placeholder,
786 + .advanced-search :-moz-placeholder,
787 + .advanced-search-banner-wrap :-moz-placeholder,
788 + .overlay-search-advanced-module :-moz-placeholder {
789 + color: #a1a7a8;
790 + }
791 +
792 + .advanced-search .form-control,
793 + .advanced-search .bootstrap-select > .btn,
794 + .location-trigger,
795 + .vertical-search-wrap .form-control,
796 + .vertical-search-wrap .bootstrap-select > .btn,
797 + .step-search-wrap .form-control,
798 + .step-search-wrap .bootstrap-select > .btn,
799 + .advanced-search-banner-wrap .form-control,
800 + .advanced-search-banner-wrap .bootstrap-select > .btn,
801 + .search-banner-wrap .form-control,
802 + .search-banner-wrap .bootstrap-select > .btn,
803 + .overlay-search-advanced-module .form-control,
804 + .overlay-search-advanced-module .bootstrap-select > .btn,
805 + .advanced-search-v2 .advanced-search-btn,
806 + .advanced-search-v2 .advanced-search-btn:hover {
807 + border-color: #cccccc;
808 + }
809 +
810 + .advanced-search-nav,
811 + .search-expandable,
812 + .overlay-search-advanced-module {
813 + background-color: #FFFFFF;
814 + }
815 + .btn-search {
816 + color: #ffffff;
817 + background-color: #3385d9;
818 + border-color: #3385d9;
819 + }
820 + .btn-search:hover, .btn-search:active {
821 + color: #ffffff;
822 + background-color: #2b6fb4;
823 + border-color: #2b6fb4;
824 + }
825 + .advanced-search-btn {
826 + color: #666666;
827 + background-color: #ffffff;
828 + border-color: #dce0e0;
829 + }
830 + .advanced-search-btn:hover, .advanced-search-btn:active {
831 + color: #000000;
832 + background-color: #ffffff;
833 + border-color: #dce0e0;
834 + }
835 + .advanced-search-btn:focus {
836 + color: #666666;
837 + background-color: #ffffff;
838 + border-color: #dce0e0;
839 + }
840 + .search-expandable-label {
841 + color: #ffffff;
842 + background-color: #ff6e00;
843 + }
844 + .advanced-search-nav {
845 + padding-top: 10px;
846 + padding-bottom: 10px;
847 + }
848 + .features-list-wrap .control--checkbox,
849 + .features-list-wrap .control--radio,
850 + .range-text,
851 + .features-list-wrap .control--checkbox,
852 + .features-list-wrap .btn-features-list,
853 + .overlay-search-advanced-module .search-title,
854 + .overlay-search-advanced-module .overlay-search-module-close {
855 + color: #222222;
856 + }
857 + .advanced-search-half-map {
858 + background-color: #FFFFFF;
859 + }
860 + .advanced-search-half-map .range-text,
861 + .advanced-search-half-map .features-list-wrap .control--checkbox,
862 + .advanced-search-half-map .features-list-wrap .btn-features-list {
863 + color: #222222;
864 + }
865 +
866 + .save-search-btn {
867 + border-color: #28a745 ;
868 + background-color: #28a745 ;
869 + color: #ffffff ;
870 + }
871 + .save-search-btn:hover,
872 + .save-search-btn:active {
873 + border-color: #28a745;
874 + background-color: #28a745 ;
875 + color: #ffffff ;
876 + }
877 + .label-featured {
878 + background-color: #e22424;
879 + color: #ffffff;
880 + }
881 +
882 + .dashboard-side-wrap {
883 + background-color: #00365e;
884 + }
885 +
886 + .side-menu a {
887 + color: #ffffff;
888 + }
889 +
890 + .side-menu a.active,
891 + .side-menu .side-menu-parent-selected > a,
892 + .side-menu-dropdown a,
893 + .side-menu a:hover {
894 + color: #3385d9;
895 + }
896 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
897 + color: #2b6fb4
898 + }
899 +
900 + .detail-wrap {
901 + background-color: rgba(119,199,32,0.1);
902 + border-color: #3385d9;
903 + }
904 + .top-bar-wrap,
905 + .top-bar-wrap .dropdown-menu,
906 + .switcher-wrap .dropdown-menu {
907 + background-color: #000000;
908 + }
909 + .top-bar-wrap a,
910 + .top-bar-contact,
911 + .top-bar-slogan,
912 + .top-bar-wrap .btn,
913 + .top-bar-wrap .dropdown-menu,
914 + .switcher-wrap .dropdown-menu,
915 + .top-bar-wrap .navbar-toggler {
916 + color: #ffffff;
917 + }
918 + .top-bar-wrap a:hover,
919 + .top-bar-wrap a:active,
920 + .top-bar-wrap .btn:hover,
921 + .top-bar-wrap .btn:active,
922 + .top-bar-wrap .dropdown-menu li:hover,
923 + .top-bar-wrap .dropdown-menu li:active,
924 + .switcher-wrap .dropdown-menu li:hover,
925 + .switcher-wrap .dropdown-menu li:active {
926 + color: rgba(43,111,180,1);
927 + }
928 + .class-energy-indicator:nth-child(1) {
929 + background-color: #33a357;
930 + }
931 + .class-energy-indicator:nth-child(2) {
932 + background-color: #79b752;
933 + }
934 + .class-energy-indicator:nth-child(3) {
935 + background-color: #c3d545;
936 + }
937 + .class-energy-indicator:nth-child(4) {
938 + background-color: #fff12c;
939 + }
940 + .class-energy-indicator:nth-child(5) {
941 + background-color: #edb731;
942 + }
943 + .class-energy-indicator:nth-child(6) {
944 + background-color: #d66f2c;
945 + }
946 + .class-energy-indicator:nth-child(7) {
947 + background-color: #cc232a;
948 + }
949 + .class-energy-indicator:nth-child(8) {
950 + background-color: #cc232a;
951 + }
952 + .class-energy-indicator:nth-child(9) {
953 + background-color: #cc232a;
954 + }
955 + .class-energy-indicator:nth-child(10) {
956 + background-color: #cc232a;
957 + }
958 +
959 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
960 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
961 +
962 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
963 +
964 + .footer-top-wrap {
965 + background-color: #000000;
966 + }
967 +
968 + .footer-bottom-wrap {
969 + background-color: #000000;
970 + }
971 +
972 + .footer-top-wrap,
973 + .footer-top-wrap a,
974 + .footer-bottom-wrap,
975 + .footer-bottom-wrap a,
976 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
977 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
978 + .footer-top-wrap .blog-post-content-widget h4 a,
979 + .footer-top-wrap .blog-post-content-widget,
980 + .footer-top-wrap .form-tools .control,
981 + .footer-top-wrap .slick-dots li.slick-active button:before,
982 + .footer-top-wrap .slick-dots li button::before,
983 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
984 + color: #ffffff;
985 + }
986 +
987 + .footer-top-wrap a:hover,
988 + .footer-bottom-wrap a:hover,
989 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
990 + color: rgba(43,111,180,1);
991 + }
992 + .houzez-osm-cluster {
993 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
994 + text-align: center;
995 + color: #fff;
996 + width: 48px;
997 + height: 48px;
998 + line-height: 48px;
999 + }
1000 + .text-success{color:red!important;}
1001 +
1002 +/*.mobile-property-contact{bottom:40px;}*/
1003 +
1004 +/* Button retour en haut*/
1005 +/*
1006 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1007 +.mobile-property-contact .btn{margin-right: 60px;}
1008 +*/
1009 +
1010 +.item-tool.houzez-share{display:none;}
1011 +
1012 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1013 +
1014 +.grecaptcha-badge{display:none!important;}
1015 +
1016 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1017 +
1018 +
1019 +@media only screen and (max-width: 768px) {
1020 + /* For mobile phones: */
1021 +
1022 + /* Button retour en haut*/
1023 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1024 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1025 +}
1026 +/*# sourceURL=houzez-style-inline-css */</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="f07c0be01ec918d96f44d50c-|49"></script><link data-asynced="1" as="style" onload="this.onload=null;this.rel='stylesheet'" rel='preload' id='leaflet-css' href='https://unpkg.com/leaflet@1.7.1/dist/leaflet.css' media='all' /><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1027 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1028 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/properties/10323" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/?p=10323' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/property/94-garneau-3/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/property/94-garneau-3/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1029 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1030 + background-image: none !important;
1031 + }
1032 + @media screen and (max-height: 1024px) {
1033 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1034 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1035 + background-image: none !important;
1036 + }
1037 + }
1038 + @media screen and (max-height: 640px) {
1039 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1040 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1041 + background-image: none !important;
1042 + }
1043 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1044 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1045 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1046 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1047 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="wp-singular property-template-default single single-property postid-10323 wp-custom-logo wp-theme-houzez translatepress-fr_CA transparent- houzez-header- elementor-default elementor-kit-6"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1048 +<a href="https://agencedelocationsherbrooke.com/">
1049 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1050 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1051 +<button class="btn toggle-button-left">
1052 +<i class="houzez-icon icon-navigation-menu"></i>
1053 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1054 +<a href="https://agencedelocationsherbrooke.com/">
1055 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1056 +</a></div></div><div class="header-mobile-right"></div></div></header><section class="content-wrap property-wrap property-detail-v6 "><div class="property-navigation-wrap"><div class="container-fluid"><ul class="property-navigation list-unstyled d-flex justify-content-between"><li class="property-navigation-item">
1057 +<a class="back-top" href="#main-wrap">
1058 +<i class="houzez-icon icon-arrow-button-circle-up"></i>
1059 +</a></li><li class="property-navigation-item">
1060 +<a class="target" href="#property-features-wrap">Inclusions</a></li><li class="property-navigation-item">
1061 +<a class="target" href="#property-description-wrap">Description</a></li><li class="property-navigation-item">
1062 +<a class="target" href="#property-address-wrap">Addresse</a></li><li class="property-navigation-item">
1063 +<a class="target" href="#property-detail-wrap">Détails</a></li><li class="property-navigation-item">
1064 +<a class="target" href="#property-video-wrap">Vidéo</a></li><li class="property-navigation-item">
1065 +<a class="target" href="#property-walkscore-wrap">Walkscore</a></li><li class="property-navigation-item">
1066 +<a class="target" href="#similar-listings-wrap">Annonces similaires</a></li></ul></div></div><div class="page-title-wrap"><div class="container"><div class="d-flex align-items-center"><div class="breadcrumb-wrap"><nav><ol class="breadcrumb"><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/"><span>Accueil</span></a></li><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/"> <span>4½</span></a></li><li class="breadcrumb-item active">94 Garneau #3</li></ol></nav></div><ul class="item-tools"><li class="item-tool houzez-favorite">
1067 +<span class="add-favorite-js item-tool-favorite" data-listid="10323">
1068 +<i class="houzez-icon icon-love-it "></i>
1069 +</span></li><li class="item-tool houzez-share">
1070 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1071 +<i class="houzez-icon icon-share"></i>
1072 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1073 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=94+Garneau+%233&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F">
1074 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&amp;t=94+Garneau+%233" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1075 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1076 +</a>
1077 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=94+Garneau+%233&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1078 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1079 +</a>
1080 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1081 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1082 +</a>
1083 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&title=94+Garneau+%233&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1084 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1085 +</a>
1086 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#bccfd3d1d9d3d2d9fcd9c4ddd1ccd0d992dfd3d183efc9ded6d9dfc88185889cfbddced2d9ddc99c9f8f9aded3d8c581d4c8c8cccf998ffd998efa998efadddbd9d2dfd9d8d9d0d3dfddc8d5d3d2cfd4d9cedeced3d3d7d992dfd3d1998efaccced3ccd9cec8c5998efa858891dbddced2d9ddc9918f998efa">
1087 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1088 +</a></div></li><li class="item-tool houzez-print " data-propid="10323">
1089 +<span class="item-tool-compare">
1090 +<i class="houzez-icon icon-print-text"></i>
1091 +</span></li></ul></div><div class="d-flex align-items-center property-title-price-wrap"><div class="page-title"><h1>94 Garneau #3</h1></div><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul></div><div class="property-labels-wrap">
1092 +<a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1093 +Juillet
1094 +</a></div>
1095 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>94, Rue Garneau, East Angus, Le Haut-Saint-François, Québec, J0B 1R0, Canada</address></div></div><div class="property-top-wrap"><div class="property-banner"><div class="visible-on-mobile"><div class="tab-content" id="pills-tabContent"><div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-scaled.jpeg);"><div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 11</div><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1096 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1097 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1098 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [94 Garneau #3]</textarea></div>
1099 +<input type="hidden" name="target_email" value="&#99;&#97;&#116;he&#114;i&#110;e&#46;p&#101;rrea&#117;&#108;&#116;&#64;&#112;re&#115;t&#105;plex&#46;co&#109;">
1100 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1101 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/94-garneau-3/"/>
1102 +<input type="hidden" name="property_title" value="94 Garneau #3"/>
1103 +<input type="hidden" name="property_id" value="ADLS-10323"/>
1104 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1105 +<input type="hidden" name="listing_id" value="10323">
1106 +<input type="hidden" name="is_listing_form" value="yes">
1107 +<input type="hidden" name="agent_id" value="156">
1108 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1109 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1110 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1111 +</button></form></div></div><a class="houzez-photoswipe-trigger property-banner-trigger" href="#"></a></div><div class="tab-pane houzez-top-area-video " id="pills-video" role="tabpanel" aria-labelledby="pills-video-tab">
1112 +<iframe data-lazyloaded="1" src="about:blank" title="94 Garneau #3, East Angus, Québec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/tUvEGmYig5c?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div><div class="container hidden-on-mobile"><div class="row"><div class="col-md-8">
1113 +<a href="#" data-slider-no="1" data-image="0" class="houzez-photoswipe-trigger img-wrap-1" >
1114 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-758x564.jpeg" alt="" width="758" height="564" />
1115 +</a></div><div class="col-md-4">
1116 +<a href="#" data-slider-no="2" data-image="1" class="houzez-photoswipe-trigger swipebox img-wrap-2">
1117 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214605.767-758x564.jpeg" alt="" width="758" height="564" />
1118 +</a>
1119 +<a href="#" data-slider-no="3" data-image="2" class="houzez-photoswipe-trigger swipebox img-wrap-3"><div class="img-wrap-3-text">8 Plus</div>
1120 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214602.971-758x564.jpeg" alt="" width="758" height="564" />
1121 +</a></div>
1122 +<a href="#" class="img-wrap-1 gallery-hidden">
1123 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214601.360-758x564.jpeg" alt="" width="758" height="564" />
1124 +</a>
1125 +<a href="#" class="img-wrap-1 gallery-hidden">
1126 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214607.172-758x564.jpeg" alt="" width="758" height="564" />
1127 +</a>
1128 +<a href="#" class="img-wrap-1 gallery-hidden">
1129 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214600.168-758x564.jpeg" alt="" width="758" height="564" />
1130 +</a>
1131 +<a href="#" class="img-wrap-1 gallery-hidden">
1132 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214558.776-758x564.jpeg" alt="" width="758" height="564" />
1133 +</a>
1134 +<a href="#" class="img-wrap-1 gallery-hidden">
1135 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214552.707-758x564.jpeg" alt="" width="758" height="564" />
1136 +</a>
1137 +<a href="#" class="img-wrap-1 gallery-hidden">
1138 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214551.309-758x564.jpeg" alt="" width="758" height="564" />
1139 +</a>
1140 +<a href="#" class="img-wrap-1 gallery-hidden">
1141 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214549.891-758x564.jpeg" alt="" width="758" height="564" />
1142 +</a>
1143 +<a href="#" class="img-wrap-1 gallery-hidden">
1144 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214548.735-758x564.jpeg" alt="" width="758" height="564" />
1145 +</a><div class="col-md-12"><div class="block-wrap"><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>4½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>2</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>4</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div></div></div><div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"><div class="pswp__bg"></div><div class="pswp__scroll-wrap"><div class="pswp__container"><div class="pswp__item"></div><div class="pswp__item"></div><div class="pswp__item"></div></div><div class="pswp__ui pswp__ui--hidden"><div class="pswp__top-bar"><div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button><button class="pswp__button pswp__button--share" title="Share"></button><button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button><button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button><div class="pswp__preloader"><div class="pswp__preloader__icn"><div class="pswp__preloader__cut"><div class="pswp__preloader__donut"></div></div></div></div></div><div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"><div class="pswp__share-tooltip"></div></div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
1146 +</button><button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
1147 +</button><div class="pswp__caption"><div class="pswp__caption__center"></div></div></div></div></div> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">initPhotoswipeDomForJson({"1":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214604.302-scaled.jpeg","w":1920,"h":2560},"2":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214605.767-scaled.jpeg","w":1920,"h":2560},"3":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214602.971-scaled.jpeg","w":1920,"h":2560},"4":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214601.360-scaled.jpeg","w":1920,"h":2560},"5":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214607.172-scaled.jpeg","w":1920,"h":2560},"6":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214600.168-scaled.jpeg","w":1920,"h":2560},"7":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214558.776-scaled.jpeg","w":1920,"h":2560},"8":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214552.707-scaled.jpeg","w":1920,"h":2560},"9":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214551.309-scaled.jpeg","w":1920,"h":2560},"10":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214549.891-scaled.jpeg","w":1920,"h":2560},"11":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/04\/image-2026-04-29T214548.735-scaled.jpeg","w":1920,"h":2560}});function initPhotoswipeDomForJson(imageData){var pswpElement=document.querySelectorAll('.pswp')[0];var items=[],item;jQuery.each(imageData,function(i,obj){item={src:obj.src,w:obj.w,h:obj.h};items.push(item)});var options={index:0};var x=document.querySelectorAll(".houzez-photoswipe-trigger");for(let i=0;i<x.length;i++){x[i].addEventListener("click",function(){openGallery(x[i].dataset.image)})}
1148 +function openGallery(j){options.index=parseInt(j);options.history=!1;gallery=new PhotoSwipe(pswpElement,PhotoSwipeUI_Default,items,options);gallery.init()}}</script> </div><div class="container"><div class="row"><div class="col-lg-12 col-md-12 bt-full-width-content-wrap"><div class="property-view"><div class="visible-on-mobile"><div class="mobile-top-wrap"><div class="mobile-property-tools clearfix"><ul class="nav nav-pills houzez-media-tabs-4" id="pills-tab" role="tablist"><li class="nav-item">
1149 +<a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1150 +<i class="houzez-icon icon-picture-sun"></i>
1151 +</a></li><li class="nav-item">
1152 +<a class="nav-link " id="pills-video-tab" data-toggle="pill" href="#pills-video" role="tab" aria-controls="pills-video" aria-selected="true">
1153 +<i class="houzez-icon icon-video-player-movie-1"></i>
1154 +</a></li></ul><ul class="item-tools"><li class="item-tool houzez-favorite">
1155 +<span class="add-favorite-js item-tool-favorite" data-listid="10323">
1156 +<i class="houzez-icon icon-love-it "></i>
1157 +</span></li><li class="item-tool houzez-share">
1158 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1159 +<i class="houzez-icon icon-share"></i>
1160 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1161 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=94+Garneau+%233&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F">
1162 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&amp;t=94+Garneau+%233" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1163 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1164 +</a>
1165 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=94+Garneau+%233&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1166 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1167 +</a>
1168 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1169 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1170 +</a>
1171 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&title=94+Garneau+%233&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1172 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1173 +</a>
1174 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#8dfee2e0e8e2e3e8cde8f5ece0fde1e8a3eee2e0b2def8efe7e8eef9b0b4b9adcaecffe3e8ecf8adaebeabefe2e9f4b0e5f9f9fdfea8becca8bfcba8bfcbeceae8e3eee8e9e8e1e2eeecf9e4e2e3fee5e8ffefffe2e2e6e8a3eee2e0a8bfcbfdffe2fde8fff9f4a8bfcbb4b9a0eaecffe3e8ecf8a0bea8bfcb">
1175 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1176 +</a></div></li><li class="item-tool houzez-print " data-propid="10323">
1177 +<span class="item-tool-compare">
1178 +<i class="houzez-icon icon-print-text"></i>
1179 +</span></li></ul></div><div class="mobile-property-title clearfix">
1180 +<span class="labels-wrap labels-right">
1181 +<a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1182 +Juillet
1183 +</a>
1184 +</span>
1185 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>94, Rue Garneau, East Angus, Le Haut-Saint-François, Québec, J0B 1R0, Canada</address><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul></div></div><div class="property-overview-wrap property-section-wrap" id="property-overview-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Apperçu</h2><div><strong># Annonce:</strong> ADLS-10323</div></div><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>4½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>2</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>4</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div><div class="property-features-wrap property-section-wrap" id="property-features-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Inclusions</h2></div><div class="block-content-wrap"><ul class="list-3-cols list-unstyled"><li><i class="fas fa-cat mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/chat-permis/">Chat permis</a></li><li><i class="fas fa-snowplow mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/deneigement/">Déneigement</a></li><li><i class="houzez-icon icon-check-circle-1 mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/entre-laveuse-secheuse/">Entré laveuse/sécheuse</a></li></ul></div></div></div><div class="property-description-wrap property-section-wrap" id="property-description-wrap"><div class="block-wrap"><div class="block-title-wrap"><h2>Description</h2></div><div class="block-content-wrap"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true" data-pm-slice="1 1 []"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">À louer – 4 ½ au 94 Garneau, East Angus</strong></p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Disponible 1er juillet – logement situé au 1er plancher</p><ul class="ak-ul" data-prosemirror-content-type="node" data-prosemirror-node-name="bulletList" data-prosemirror-node-block="true"><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Chats acceptés (aucun chien)</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true">Thermopompe</li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Rien d’inclus</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Possibilité d’ajouter les électroménagers pour 125 $/mois</p></li></ul><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">Conditions</strong> :</p><ul class="ak-ul" data-prosemirror-content-type="node" data-prosemirror-node-name="bulletList" data-prosemirror-node-block="true"><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Enquête de crédit obligatoire</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Non-fumeur</p></li></ul><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Pour plus d’informations ou pour planifier une visite, contactez-nous dès aujourd’hui.</p></div></div></div><div class="property-address-wrap property-section-wrap" id="property-address-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Addresse</h2><a class="btn btn-primary btn-slim" href="https://maps.google.com/?q=94,%20Rue%20Garneau,%20East%20Angus,%20Le%20Haut-Saint-François,%20Québec,%20J0B%201R0,%20Canada" target="_blank"><i class="houzez-icon icon-maps mr-1"></i> Ouvrir sur Google Maps</a></div><div class="block-content-wrap"><ul class="list-2-cols list-unstyled"><li class="detail-address"><strong>Addresse</strong> <span>94, Rue Garneau, East Angus, Le Haut-Saint-François, Québec, J0B 1R0, Canada</span></li><li class="detail-zip"><strong>Zip / Code postal</strong> <span>J0B 1R0</span></li></ul></div><div id="houzez-single-listing-map" class="block-map-wrap"></div></div></div><div class="property-detail-wrap property-section-wrap" id="property-detail-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Détails</h2>
1186 +<span class="small-text grey"><i class="houzez-icon icon-calendar-3 mr-1"></i> Mise à jour le avril 30, 2026 à 2:08 am</span></div><div class="block-content-wrap"><div class="detail-wrap"><ul class="list-2-cols list-unstyled"><li>
1187 +<strong># Annonce:</strong>
1188 +<span>ADLS-10323</span></li><li>
1189 +<strong>Prix:</strong>
1190 +<span> 925$/mensuel</span></li><li>
1191 +<strong>Chambres:</strong>
1192 +<span>2</span></li><li>
1193 +<strong>Pièces:</strong>
1194 +<span>4</span></li><li>
1195 +<strong>Salle de bain:</strong>
1196 +<span>1</span></li><li>
1197 +<strong>Stationnement:</strong>
1198 +<span>1</span></li><li class="prop_type">
1199 +<strong>Type:</strong>
1200 +<span>4½</span></li></ul></div></div></div></div><div class="property-video-wrap property-section-wrap" id="property-video-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Vidéo</h2></div><div class="block-content-wrap"><div class="block-video-wrap">
1201 +<iframe data-lazyloaded="1" src="about:blank" title="94 Garneau #3, East Angus, Québec " width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/tUvEGmYig5c?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div></div><div class="property-walkscore-wrap property-section-wrap" id="property-walkscore-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Walkscore</h2></div><div class="block-content-wrap"><div id="ws-walkscore-tile"></div></div></div></div><div class="property-contact-agent-wrap property-section-wrap" id="property-contact-agent-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Coordonnées</h2><a class="btn btn-primary btn-slim" href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/" target="_blank">Voir les annonces</a></div><div class="block-content-wrap"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="80" height="80"></a></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-phone-wrap clearfix"></li></ul></div></div><div class="block-title-wrap"><h3>Renseignez-vous sur cette propriété</h3></div><div class="form_messages"></div><div class="row"><div class="col-md-6 col-sm-12"><div class="form-group">
1202 +<label>Nom</label>
1203 +<input class="form-control" name="name" placeholder="Entrez votre nom" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1204 +<label>Téléphone</label>
1205 +<input class="form-control" name="mobile" placeholder="Entrez votre numéro de téléphone" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1206 +<label>Courriel</label>
1207 +<input class="form-control" name="email" placeholder="Entrer votre courriel" type="email"></div></div><div class="col-sm-12 col-xs-12"><div class="form-group form-group-textarea">
1208 +<label>Message</label><textarea class="form-control hz-form-message" name="message" rows="5" placeholder="Entrez votre message">Bonjour, je suis intéressé par [94 Garneau #3]</textarea></div></div><div class="col-sm-12 col-xs-12">
1209 +<input type="hidden" name="target_email" value="&#99;&#97;&#116;&#104;&#101;&#114;ine&#46;&#112;erre&#97;ult&#64;pr&#101;stipl&#101;x.co&#109;">
1210 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1211 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/94-garneau-3/"/>
1212 +<input type="hidden" name="property_title" value="94 Garneau #3"/>
1213 +<input type="hidden" name="property_id" value="ADLS-10323"/>
1214 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1215 +<input type="hidden" class="is_bottom" value="bottom">
1216 +<input type="hidden" name="listing_id" value="10323">
1217 +<input type="hidden" name="is_listing_form" value="yes">
1218 +<input type="hidden" name="agent_id" value="156">
1219 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><button class="houzez_agent_property_form btn btn-secondary btn-sm-full-width">
1220 +<span class="btn-loader houzez-loader-js"></span> Demande d'informations
1221 +</button></div></div></form></div></div></div><div id="similar-listings-wrap" class="similar-property-wrap listing-v1"><div class="block-title-wrap"><h2>Annonces similaires</h2></div><div class="listing-view list-view card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-6534" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8231-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8229-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8231-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8222-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8223-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8224-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8225-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8226-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8227-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8228-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8230-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8232-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8234-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8235-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8236-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/07\/IMG_8238-592x444.jpg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2024\/02\/IMG_5616-592x444.png&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1222 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/udes/" class="label-status label status-color-89">
1223 +UdeS
1224 +</a><a href="https://agencedelocationsherbrooke.com/label/aout/" class="hz-label label label-color-120">
1225 +Août
1226 +</a><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1227 +Juillet
1228 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">1,295$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1229 +<span class="hz-show-lightbox-js" data-listid="6534" data-toggle="tooltip" data-placement="top" title="Aperçu">
1230 +<i class="houzez-icon icon-expand-3"></i>
1231 +</span></li><li class="item-tool item-favorite">
1232 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="6534">
1233 +<i class="houzez-icon icon-love-it "></i>
1234 +</span></li><li class="item-tool item-compare">
1235 +<span class="houzez_compare compare-6534 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="6534" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2024/07/IMG_8231-592x444.jpg">
1236 +<i class="houzez-icon icon-add-circle"></i>
1237 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1238 +<a href="https://agencedelocationsherbrooke.com/property/1139-1147-rue-louis-st-laurent/" class="listing-featured-thumb hover-effect">
1239 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2024/07/IMG_8231-592x444.jpg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2024/07/IMG_8231-592x444.jpg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2024/07/IMG_8231-584x438.jpg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2024/07/IMG_8231-120x90.jpg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/udes/" class="label-status label status-color-89">
1240 +UdeS
1241 +</a><a href="https://agencedelocationsherbrooke.com/label/aout/" class="hz-label label label-color-120">
1242 +Août
1243 +</a><a href="https://agencedelocationsherbrooke.com/label/juillet/" class="hz-label label label-color-119">
1244 +Juillet
1245 +</a></div><h2 class="item-title">
1246 +<a href="https://agencedelocationsherbrooke.com/property/1139-1147-rue-louis-st-laurent/">1143 Rue louis St-Laurent</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">1,295$/mensuel</li></ul> <address class="item-address">Rue Louis-Saint-Laurent, Le Mont-Bellevue, Sherbrooke, Estrie, Québec, J1K 1L2, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lits:</span> <span class="hz-figure">2</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>4½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/1139-1147-rue-louis-st-laurent/">
1247 +Détails</a><div class="item-author">
1248 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1249 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1250 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1251 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></section></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1252 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1253 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1254 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1255 +<i class="houzez-icon icon-arrow-up-1"></i>
1256 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1257 +<button class="compare-property-label" style="display: none;">
1258 +<span class="compare-count compare-label"></span>
1259 +<i class="houzez-icon icon-move-left-right"></i>
1260 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1261 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1262 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1263 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1264 +<span aria-hidden="true">&times;</span>
1265 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1266 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1267 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1268 +<label class="control control--checkbox flex-grow-1">
1269 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1270 +</label>
1271 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/property/94-garneau-3/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1272 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com/property/94-garneau-3/?login=success">
1273 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1274 +<span class="btn-loader houzez-loader-js"></span> Connexion
1275 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1276 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1277 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1278 +<span aria-hidden="true">&times;</span>
1279 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1280 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1281 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/property/94-garneau-3/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1282 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><div class="mobile-property-contact visible-on-mobile"><div class="d-flex justify-content-between"><div class="agent-details flex-grow-1"><div class="d-flex align-items-center"><div class="agent-image">
1283 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" width="50" height="50" alt="Catherine Perreault"></div><ul class="agent-information list-unstyled"><li class="agent-name">
1284 +Catherine Perreault</li></ul></div></div>
1285 +<button class="btn btn-secondary" data-toggle="modal" data-target="#mobile-property-form">
1286 +<i class="houzez-icon icon-messages-bubble"></i>
1287 +</button></div></div><div class="modal fade mobile-property-form" id="mobile-property-form"><div class="modal-dialog" role="document"><div class="modal-content">
1288 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1289 +<span aria-hidden="true">&times;</span>
1290 +</button><div class="modal-body"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1291 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1292 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1293 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [94 Garneau #3]</textarea></div>
1294 +<input type="hidden" name="target_email" value="ca&#116;he&#114;&#105;&#110;e&#46;per&#114;ea&#117;l&#116;&#64;pr&#101;s&#116;i&#112;lex&#46;&#99;om">
1295 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1296 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/94-garneau-3/"/>
1297 +<input type="hidden" name="property_title" value="94 Garneau #3"/>
1298 +<input type="hidden" name="property_id" value="ADLS-10323"/>
1299 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1300 +<input type="hidden" name="listing_id" value="10323">
1301 +<input type="hidden" name="is_listing_form" value="yes">
1302 +<input type="hidden" name="agent_id" value="156">
1303 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1304 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1305 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1306 +</button></form></div></div></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div class="modal-content"><div class="modal-header"><div class="d-flex align-items-center"><div class="lightbox-logo">
1307 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white.png" alt="94 Garneau #3" width="127" height="32" /></div><div class="lightbox-title flex-grow-1"></div><div class="lightbox-tools"><ul class="list-inline"><li class="list-inline-item btn-favorite">
1308 +<a class="add-favorite-js" data-listid="10323" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Favoris</span></a></li><li class="list-inline-item btn-share">
1309 +<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Partager</span></a><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1310 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=94+Garneau+%233&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F">
1311 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&amp;t=94+Garneau+%233" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1312 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1313 +</a>
1314 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=94+Garneau+%233&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1315 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1316 +</a>
1317 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-768x1024.jpeg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1318 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1319 +</a>
1320 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F94-garneau-3%2F&title=94+Garneau+%233&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-f07c0be01ec918d96f44d50c-="">
1321 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1322 +</a>
1323 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#95e6faf8f0fafbf0d5f0edf4f8e5f9f0bbf6faf8aac6e0f7fff0f6e1a8aca1b5d2f4e7fbf0f4e0b5b6a6b3f7faf1eca8fde1e1e5e6b0a6d4b0a7d3b0a7d3f4f2f0fbf6f0f1f0f9faf6f4e1fcfafbe6fdf0e7f7e7fafafef0bbf6faf8b0a7d3e5e7fae5f0e7e1ecb0a7d3aca1b8f2f4e7fbf0f4e0b8a6b0a7d3">
1324 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1325 +</a></div></li><li class="list-inline-item btn-email">
1326 +<a href="#"><i class="houzez-icon icon-envelope"></i></a></li></ul></div></div>
1327 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1328 +<span aria-hidden="true">&times;</span>
1329 +</button></div><div class="modal-body clearfix"><div class="lightbox-gallery-wrap ">
1330 +<a class="btn-expand">
1331 +<i class="houzez-icon icon-expand-3"></i>
1332 +</a><div class="lightbox-gallery"><div id="lightbox-slider-js" class="lightbox-slider"><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-scaled.jpeg" alt="" title="image - 2026-04-29T214604.302" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214605.767-scaled.jpeg" alt="" title="image - 2026-04-29T214605.767" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214602.971-scaled.jpeg" alt="" title="image - 2026-04-29T214602.971" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214601.360-scaled.jpeg" alt="" title="image - 2026-04-29T214601.360" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214607.172-scaled.jpeg" alt="" title="image - 2026-04-29T214607.172" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214600.168-scaled.jpeg" alt="" title="image - 2026-04-29T214600.168" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214558.776-scaled.jpeg" alt="" title="image - 2026-04-29T214558.776" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214552.707-scaled.jpeg" alt="" title="image - 2026-04-29T214552.707" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214551.309-scaled.jpeg" alt="" title="image - 2026-04-29T214551.309" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214549.891-scaled.jpeg" alt="" title="image - 2026-04-29T214549.891" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214548.735-scaled.jpeg" alt="" title="image - 2026-04-29T214548.735" width="1920" height="2560" /></div></div></div></div><div class="lightbox-form-wrap"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1333 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1334 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1335 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [94 Garneau #3]</textarea></div>
1336 +<input type="hidden" name="target_email" value="&#99;&#97;&#116;h&#101;&#114;&#105;&#110;&#101;.&#112;er&#114;ea&#117;&#108;t&#64;p&#114;e&#115;t&#105;pl&#101;&#120;.&#99;&#111;m">
1337 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1338 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/94-garneau-3/"/>
1339 +<input type="hidden" name="property_title" value="94 Garneau #3"/>
1340 +<input type="hidden" name="property_id" value="ADLS-10323"/>
1341 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1342 +<input type="hidden" name="listing_id" value="10323">
1343 +<input type="hidden" name="is_listing_form" value="yes">
1344 +<input type="hidden" name="agent_id" value="156">
1345 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1346 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1347 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1348 +</button></form></div></div></div></div><div class="modal-footer"></div></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1349 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="f07c0be01ec918d96f44d50c-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1350 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="bootstrap-datepicker.fr-CA-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr-CA.min.js"></script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com/property/94-garneau-3/","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_nav","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"fr-CA","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="leaflet-js" type="litespeed/javascript" data-src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script> <script id="houzez-single-property-map-js-extra" type="litespeed/javascript">var houzez_single_property_map={"title":"94 Garneau #3","price":" 925$/mensuel","property_id":"10323","pricePin":"925$/mensuel","property_type":"4\u00bd","address":"94, Rue Garneau, East Angus, Le Haut-Saint-Fran\u00e7ois, Qu\u00e9bec, J0B 1R0, Canada","lat":"45.4871995","lng":"-71.6538089","term_id":"16","marker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","retinaMarker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","thumbnail":"https://agencedelocationsherbrooke.com/wp-content/uploads/2026/04/image-2026-04-29T214604.302-120x90.jpeg"};var houzez_map_options={"markerPricePins":"no","single_map_zoom":"12","map_type":"roadmap","map_pin_type":"marker","googlemap_stype":"","closeIcon":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/close.png","infoWindowPlac":"https://placehold.it/120x90&text=Agence+de+location+Sherbrooke"}</script> <script id="houzez-walkscore-js-before" type="litespeed/javascript">var ws_wsid=' 65c6f7843483895d5d5ef58e01b2d789';var ws_address='94, Rue Garneau, East Angus, Le Haut-Saint-François, Québec, J0B 1R0, Canada';var ws_format='wide';var ws_width='650';var ws_width='100%';var ws_height='400'</script> <script id="houzez-walkscore-js" type="litespeed/javascript" data-src="https://www.walkscore.com/tile/show-walkscore-tile.php"></script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1351 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="f07c0be01ec918d96f44d50c-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="f07c0be01ec918d96f44d50c-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="f07c0be01ec918d96f44d50c-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/7eb3e0d215c9a5e36449ede9b8431764.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="f07c0be01ec918d96f44d50c-|49" defer></script></body></html>
1352 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:31:23 -->
1353 +
1354 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:31:22 -->
1355 +<!-- Guest Mode -->
1356 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/ed93c1ba2200a9da666c9871ea0b8f1b.css -->
1357 +<!-- QUIC.cloud UCSS loaded ✅ /ucss/11e4fe7ee5e745b5c2a3b05f2b65fd54.css -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/901061bec7974876dfe4.html +1411 −0
@@ -0,0 +1,1411 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="67bc19b0f3b84afcb9f38fc1-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>963 Fédéral - Agence de location Sherbrooke</title><meta name="description" content="4 ½ à louer – Disponible dès maintenant Possibilité d’avoir les 4 électroménagers sans frais supplémentaire Conditions : Immeuble et logement non-fumeurs 1 espace de stationnement inclus 1 chat accepté Chiens non permis Situé au 2e et dernier étage Enquête de crédit obligatoire" /><meta name="robots" content="max-image-preview:large" /><meta name="author" content="Catherine Perreault"/><link rel="canonical" href="https://agencedelocationsherbrooke.com/property/963-federal/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="article" /><meta property="og:title" content="963 Fédéral - Agence de location Sherbrooke" /><meta property="og:description" content="4 ½ à louer – Disponible dès maintenant Possibilité d’avoir les 4 électroménagers sans frais supplémentaire Conditions : Immeuble et logement non-fumeurs 1 espace de stationnement inclus 1 chat accepté Chiens non permis Situé au 2e et dernier étage Enquête de crédit obligatoire" /><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/963-federal/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1356-scaled.jpg" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1356-scaled.jpg" /><meta property="og:image:width" content="1920" /><meta property="og:image:height" content="2560" /><meta property="article:published_time" content="2023-07-17T23:02:14+00:00" /><meta property="article:modified_time" content="2026-08-03T19:52:04+00:00" /><meta property="article:publisher" content="https://www.facebook.com/agencedelocationsherbrooke" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="963 Fédéral - Agence de location Sherbrooke" /><meta name="twitter:description" content="4 ½ à louer – Disponible dès maintenant Possibilité d’avoir les 4 électroménagers sans frais supplémentaire Conditions : Immeuble et logement non-fumeurs 1 espace de stationnement inclus 1 chat accepté Chiens non permis Situé au 2e et dernier étage Enquête de crédit obligatoire" /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/963-federal\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","position":2,"name":"Properties","item":"https:\/\/agencedelocationsherbrooke.com\/property\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/#listItem","name":"4\u00bd"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/#listItem","position":3,"name":"4\u00bd","item":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/963-federal\/#listItem","name":"963 F\u00e9d\u00e9ral"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/963-federal\/#listItem","position":4,"name":"963 F\u00e9d\u00e9ral","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/4-demi\/#listItem","name":"4\u00bd"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/963-federal\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/963-federal\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"Person","@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author","url":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/","name":"Catherine Perreault","image":{"@type":"ImageObject","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/963-federal\/#authorImage","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/litespeed\/avatar\/fdca211e8cbd2f88b79d873de06d8fa9.jpg?ver=1785951645","width":96,"height":96,"caption":"Catherine Perreault"}},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/963-federal\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/property\/963-federal\/","name":"963 F\u00e9d\u00e9ral - Agence de location Sherbrooke","description":"4 \u00bd \u00e0 louer \u2013 Disponible d\u00e8s maintenant Possibilit\u00e9 d\u2019avoir les 4 \u00e9lectrom\u00e9nagers sans frais suppl\u00e9mentaire Conditions : Immeuble et logement non-fumeurs 1 espace de stationnement inclus 1 chat accept\u00e9 Chiens non permis Situ\u00e9 au 2e et dernier \u00e9tage Enqu\u00eate de cr\u00e9dit obligatoire","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/963-federal\/#breadcrumblist"},"author":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"creator":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1356-scaled.jpg","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/963-federal\/#mainImage","width":1920,"height":2560},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/963-federal\/#mainImage"},"datePublished":"2023-07-17T23:02:14+00:00","dateModified":"2026-08-03T19:52:04+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//unpkg.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&#038;format=xml" /><meta property="og:title" content="963 Fédéral"/><meta property="og:description" content="
2 +4 ½ à louer – Disponible dès maintenant
3 +Possibilité d’avoir les 4 électroménagers sans frais supplémentaire
4 +Conditions :Immeuble et logement non-" /><meta property="og:type" content="article"/><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/963-federal/"/><meta property="og:site_name" content="Agence de location Sherbrooke"/><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1356-scaled.jpg"/><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
5 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}body{font-size:15px;font-family:Roboto,sans-serif}body{background-color:#f8f8f8}body{color:#222}body{line-height:25px;font-weight:300;text-transform:none}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}body{background-color:#f7f7f7}body{color:#222}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="67bc19b0f3b84afcb9f38fc1-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/ucss/cf0c42c8db72e2cfb19e0823534db732.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="wp-block-library-inline-css">:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
6 +
7 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */</style><style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
8 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
9 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
10 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
11 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
12 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
13 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
14 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
15 + .container {
16 + max-width: 1210px;
17 + }
18 + }
19 + .label-color-87 {
20 + background-color: #31af00;
21 + }
22 +
23 + .status-color-28 {
24 + background-color: #dd9933;
25 + }
26 +
27 + .status-color-88 {
28 + background-color: #b7ba00;
29 + }
30 +
31 + .status-color-95 {
32 + background-color: #dd3333;
33 + }
34 +
35 + .status-color-94 {
36 + background-color: #1e73be;
37 + }
38 +
39 + .status-color-89 {
40 + background-color: #31af00;
41 + }
42 +
43 + body {
44 + font-family: Poppins;
45 + font-size: 16px;
46 + font-weight: 400;
47 + line-height: 24px;
48 + text-transform: none;
49 + }
50 + .main-nav,
51 + .dropdown-menu,
52 + .login-register,
53 + .btn.btn-create-listing,
54 + .logged-in-nav,
55 + .btn-phone-number {
56 + font-family: Poppins;
57 + font-size: 14px;
58 + font-weight: 400;
59 + text-align: left;
60 + text-transform: uppercase;
61 + }
62 +
63 + .btn,
64 + .form-control,
65 + .bootstrap-select .text,
66 + .sort-by-title,
67 + .woocommerce ul.products li.product .button {
68 + font-family: Poppins;
69 + font-size: 16px;
70 + }
71 +
72 + h1, h2, h3, h4, h5, h6, .item-title {
73 + font-family: Poppins;
74 + font-weight: 400;
75 + text-transform: capitalize;
76 + }
77 +
78 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
79 + font-weight: 400;
80 + text-transform: capitalize;
81 + text-align: inherit;
82 + }
83 +
84 + .top-bar-wrap {
85 + font-family: Poppins;
86 + font-size: 15px;
87 + font-weight: 300;
88 + line-height: 25px;
89 + text-align: left;
90 + text-transform: none;
91 + }
92 + .footer-wrap {
93 + font-family: Poppins;
94 + font-size: 14px;
95 + font-weight: 300;
96 + line-height: 25px;
97 + text-align: left;
98 + text-transform: none;
99 + }
100 +
101 + .header-v1 .header-inner-wrap,
102 + .header-v1 .navbar-logged-in-wrap {
103 + line-height: 60px;
104 + height: 60px;
105 + }
106 + .header-v2 .header-top .navbar {
107 + height: 110px;
108 + }
109 +
110 + .header-v2 .header-bottom .header-inner-wrap,
111 + .header-v2 .header-bottom .navbar-logged-in-wrap {
112 + line-height: 54px;
113 + height: 54px;
114 + }
115 +
116 + .header-v3 .header-top .header-inner-wrap,
117 + .header-v3 .header-top .header-contact-wrap {
118 + height: 80px;
119 + line-height: 80px;
120 + }
121 + .header-v3 .header-bottom .header-inner-wrap,
122 + .header-v3 .header-bottom .navbar-logged-in-wrap {
123 + line-height: 54px;
124 + height: 54px;
125 + }
126 + .header-v4 .header-inner-wrap,
127 + .header-v4 .navbar-logged-in-wrap {
128 + line-height: 90px;
129 + height: 90px;
130 + }
131 + .header-v5 .header-top .header-inner-wrap,
132 + .header-v5 .header-top .navbar-logged-in-wrap {
133 + line-height: 110px;
134 + height: 110px;
135 + }
136 + .header-v5 .header-bottom .header-inner-wrap {
137 + line-height: 54px;
138 + height: 54px;
139 + }
140 + .header-v6 .header-inner-wrap,
141 + .header-v6 .navbar-logged-in-wrap {
142 + height: 60px;
143 + line-height: 60px;
144 + }
145 + @media (min-width: 1200px) {
146 + .header-v5 .header-top .container {
147 + max-width: 1170px;
148 + }
149 + }
150 +
151 + body,
152 + .main-wrap,
153 + .fw-property-documents-wrap h3 span,
154 + .fw-property-details-wrap h3 span {
155 + background-color: #f7f7f7;
156 + }
157 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
158 + background-color: #ffffff;
159 + }
160 +
161 + body,
162 + .form-control,
163 + .bootstrap-select .text,
164 + .item-title a,
165 + .listing-tabs .nav-tabs .nav-link,
166 + .item-wrap-v2 .item-amenities li span,
167 + .item-wrap-v2 .item-amenities li:before,
168 + .item-parallax-wrap .item-price-wrap,
169 + .list-view .item-body .item-price-wrap,
170 + .property-slider-item .item-price-wrap,
171 + .page-title-wrap .item-price-wrap,
172 + .agent-information .agent-phone span a,
173 + .property-overview-wrap ul li strong,
174 + .mobile-property-title .item-price-wrap .item-price,
175 + .fw-property-features-left li a,
176 + .lightbox-content-wrap .item-price-wrap,
177 + .blog-post-item-v1 .blog-post-title h3 a,
178 + .blog-post-content-widget h4 a,
179 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
180 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
181 + .agent-list-wrap .agent-list-content h2 a,
182 + .agent-list-wrap .agent-list-contact li a,
183 + .agent-contacts-wrap li a,
184 + .menu-edit-property li a,
185 + .statistic-referrals-list li a,
186 + .chart-nav .nav-pills .nav-link,
187 + .dashboard-table-properties td .property-payment-status,
188 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
189 + .payment-method-block .radio-tab .control-text,
190 + .post-title-wrap h2 a,
191 + .lead-nav-tab.nav-pills .nav-link,
192 + .deals-nav-tab.nav-pills .nav-link,
193 + .btn-light-grey-outlined:hover,
194 + button:not(.bs-placeholder) .filter-option-inner-inner,
195 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
196 + .products > .product > .item-body > a,
197 + .woocommerce ul.products li.product .price,
198 + .woocommerce div.product p.price,
199 + .woocommerce div.product span.price,
200 + .woocommerce #reviews #comments ol.commentlist li .meta,
201 + .woocommerce-MyAccount-navigation ul li a,
202 + .activitiy-item-close-button a,
203 + .property-section-wrap li a {
204 + color: #222222;
205 + }
206 +
207 +
208 +
209 + a,
210 + a:hover,
211 + a:active,
212 + a:focus,
213 + .primary-text,
214 + .btn-clear,
215 + .btn-apply,
216 + .btn-primary-outlined,
217 + .btn-primary-outlined:before,
218 + .item-title a:hover,
219 + .sort-by .bootstrap-select .bs-placeholder,
220 + .sort-by .bootstrap-select > .btn,
221 + .sort-by .bootstrap-select > .btn:active,
222 + .page-link,
223 + .page-link:hover,
224 + .accordion-title:before,
225 + .blog-post-content-widget h4 a:hover,
226 + .agent-list-wrap .agent-list-content h2 a:hover,
227 + .agent-list-wrap .agent-list-contact li a:hover,
228 + .agent-contacts-wrap li a:hover,
229 + .agent-nav-wrap .nav-pills .nav-link,
230 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
231 + .menu-edit-property li a.active,
232 + .menu-edit-property li a:hover,
233 + .dashboard-statistic-block h3 .fa,
234 + .statistic-referrals-list li a:hover,
235 + .chart-nav .nav-pills .nav-link.active,
236 + .board-message-icon-wrap.active,
237 + .post-title-wrap h2 a:hover,
238 + .listing-switch-view .switch-btn.active,
239 + .item-wrap-v6 .item-price-wrap,
240 + .listing-v6 .list-view .item-body .item-price-wrap,
241 + .woocommerce nav.woocommerce-pagination ul li a,
242 + .woocommerce nav.woocommerce-pagination ul li span,
243 + .woocommerce-MyAccount-navigation ul li a:hover,
244 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
245 + .property-schedule-tour-form-wrap .control:hover,
246 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
247 + .login-register .btn-icon-login-register + .dropdown-menu a,
248 + .activitiy-item-close-button a:hover,
249 + .property-section-wrap li a:hover,
250 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
251 + color: #3385d9;
252 + }
253 +
254 + .agent-list-position a {
255 + color: #3385d9;
256 + }
257 +
258 + .control input:checked ~ .control__indicator,
259 + .top-banner-wrap .nav-pills .nav-link,
260 + .btn-primary-outlined:hover,
261 + .page-item.active .page-link,
262 + .slick-prev:hover,
263 + .slick-prev:focus,
264 + .slick-next:hover,
265 + .slick-next:focus,
266 + .mobile-property-tools .nav-pills .nav-link.active,
267 + .login-register-form .modal-header,
268 + .agent-nav-wrap .nav-pills .nav-link.active,
269 + .board-message-icon-wrap .notification-circle,
270 + .primary-label,
271 + .fc-event, .fc-event-dot,
272 + .compare-table .table-hover > tbody > tr:hover,
273 + .post-tag,
274 + .datepicker table tr td.active.active,
275 + .datepicker table tr td.active.disabled,
276 + .datepicker table tr td.active.disabled.active,
277 + .datepicker table tr td.active.disabled.disabled,
278 + .datepicker table tr td.active.disabled:active,
279 + .datepicker table tr td.active.disabled:hover,
280 + .datepicker table tr td.active.disabled:hover.active,
281 + .datepicker table tr td.active.disabled:hover.disabled,
282 + .datepicker table tr td.active.disabled:hover:active,
283 + .datepicker table tr td.active.disabled:hover:hover,
284 + .datepicker table tr td.active.disabled:hover[disabled],
285 + .datepicker table tr td.active.disabled[disabled],
286 + .datepicker table tr td.active:active,
287 + .datepicker table tr td.active:hover,
288 + .datepicker table tr td.active:hover.active,
289 + .datepicker table tr td.active:hover.disabled,
290 + .datepicker table tr td.active:hover:active,
291 + .datepicker table tr td.active:hover:hover,
292 + .datepicker table tr td.active:hover[disabled],
293 + .datepicker table tr td.active[disabled],
294 + .ui-slider-horizontal .ui-slider-range,
295 + .btn-bubble {
296 + background-color: #3385d9;
297 + }
298 +
299 + .control input:checked ~ .control__indicator,
300 + .btn-primary-outlined,
301 + .page-item.active .page-link,
302 + .mobile-property-tools .nav-pills .nav-link.active,
303 + .agent-nav-wrap .nav-pills .nav-link,
304 + .agent-nav-wrap .nav-pills .nav-link.active,
305 + .chart-nav .nav-pills .nav-link.active,
306 + .dashaboard-snake-nav .step-block.active,
307 + .fc-event,
308 + .fc-event-dot,
309 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
310 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
311 + border-color: #3385d9;
312 + }
313 +
314 + .slick-arrow:hover {
315 + background-color: rgba(43,111,180,1);
316 + }
317 +
318 + .slick-arrow {
319 + background-color: #3385d9;
320 + }
321 +
322 + .property-banner .nav-pills .nav-link.active {
323 + background-color: rgba(43,111,180,1) !important;
324 + }
325 +
326 + .property-navigation-wrap a.active {
327 + color: #3385d9;
328 + -webkit-box-shadow: inset 0 -3px #3385d9;
329 + box-shadow: inset 0 -3px #3385d9;
330 + }
331 +
332 + .btn-primary,
333 + .fc-button-primary,
334 + .woocommerce nav.woocommerce-pagination ul li a:focus,
335 + .woocommerce nav.woocommerce-pagination ul li a:hover,
336 + .woocommerce nav.woocommerce-pagination ul li span.current {
337 + color: #fff;
338 + background-color: #3385d9;
339 + border-color: #3385d9;
340 + }
341 + .btn-primary:focus, .btn-primary:focus:active,
342 + .fc-button-primary:focus,
343 + .fc-button-primary:focus:active {
344 + color: #fff;
345 + background-color: #3385d9;
346 + border-color: #3385d9;
347 + }
348 + .btn-primary:hover,
349 + .fc-button-primary:hover {
350 + color: #fff;
351 + background-color: #2b6fb4;
352 + border-color: #2b6fb4;
353 + }
354 + .btn-primary:active,
355 + .btn-primary:not(:disabled):not(:disabled):active,
356 + .fc-button-primary:active,
357 + .fc-button-primary:not(:disabled):not(:disabled):active {
358 + color: #fff;
359 + background-color: #2b6fb4;
360 + border-color: #2b6fb4;
361 + }
362 +
363 + .btn-secondary,
364 + .woocommerce span.onsale,
365 + .woocommerce ul.products li.product .button,
366 + .woocommerce #respond input#submit.alt,
367 + .woocommerce a.button.alt,
368 + .woocommerce button.button.alt,
369 + .woocommerce input.button.alt,
370 + .woocommerce #review_form #respond .form-submit input,
371 + .woocommerce #respond input#submit,
372 + .woocommerce a.button,
373 + .woocommerce button.button,
374 + .woocommerce input.button {
375 + color: #fff;
376 + background-color: #656565;
377 + border-color: #656565;
378 + }
379 + .woocommerce ul.products li.product .button:focus,
380 + .woocommerce ul.products li.product .button:active,
381 + .woocommerce #respond input#submit.alt:focus,
382 + .woocommerce a.button.alt:focus,
383 + .woocommerce button.button.alt:focus,
384 + .woocommerce input.button.alt:focus,
385 + .woocommerce #respond input#submit.alt:active,
386 + .woocommerce a.button.alt:active,
387 + .woocommerce button.button.alt:active,
388 + .woocommerce input.button.alt:active,
389 + .woocommerce #review_form #respond .form-submit input:focus,
390 + .woocommerce #review_form #respond .form-submit input:active,
391 + .woocommerce #respond input#submit:active,
392 + .woocommerce a.button:active,
393 + .woocommerce button.button:active,
394 + .woocommerce input.button:active,
395 + .woocommerce #respond input#submit:focus,
396 + .woocommerce a.button:focus,
397 + .woocommerce button.button:focus,
398 + .woocommerce input.button:focus {
399 + color: #fff;
400 + background-color: #656565;
401 + border-color: #656565;
402 + }
403 + .btn-secondary:hover,
404 + .woocommerce ul.products li.product .button:hover,
405 + .woocommerce #respond input#submit.alt:hover,
406 + .woocommerce a.button.alt:hover,
407 + .woocommerce button.button.alt:hover,
408 + .woocommerce input.button.alt:hover,
409 + .woocommerce #review_form #respond .form-submit input:hover,
410 + .woocommerce #respond input#submit:hover,
411 + .woocommerce a.button:hover,
412 + .woocommerce button.button:hover,
413 + .woocommerce input.button:hover {
414 + color: #fff;
415 + background-color: #333333;
416 + border-color: #333333;
417 + }
418 + .btn-secondary:active,
419 + .btn-secondary:not(:disabled):not(:disabled):active {
420 + color: #fff;
421 + background-color: #333333;
422 + border-color: #333333;
423 + }
424 +
425 + .btn-primary-outlined {
426 + color: #3385d9;
427 + background-color: transparent;
428 + border-color: #3385d9;
429 + }
430 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
431 + color: #3385d9;
432 + background-color: transparent;
433 + border-color: #3385d9;
434 + }
435 + .btn-primary-outlined:hover {
436 + color: #fff;
437 + background-color: #2b6fb4;
438 + border-color: #2b6fb4;
439 + }
440 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
441 + color: #3385d9;
442 + background-color: rgba(26, 26, 26, 0);
443 + border-color: #2b6fb4;
444 + }
445 +
446 + .btn-secondary-outlined {
447 + color: #656565;
448 + background-color: transparent;
449 + border-color: #656565;
450 + }
451 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
452 + color: #656565;
453 + background-color: transparent;
454 + border-color: #656565;
455 + }
456 + .btn-secondary-outlined:hover {
457 + color: #fff;
458 + background-color: #333333;
459 + border-color: #333333;
460 + }
461 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
462 + color: #656565;
463 + background-color: rgba(26, 26, 26, 0);
464 + border-color: #333333;
465 + }
466 +
467 + .btn-call {
468 + color: #656565;
469 + background-color: transparent;
470 + border-color: #656565;
471 + }
472 + .btn-call:focus, .btn-call:focus:active {
473 + color: #656565;
474 + background-color: transparent;
475 + border-color: #656565;
476 + }
477 + .btn-call:hover {
478 + color: #656565;
479 + background-color: rgba(26, 26, 26, 0);
480 + border-color: #333333;
481 + }
482 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
483 + color: #656565;
484 + background-color: rgba(26, 26, 26, 0);
485 + border-color: #333333;
486 + }
487 + .icon-delete .btn-loader:after{
488 + border-color: #3385d9 transparent #3385d9 transparent
489 + }
490 +
491 + .header-v1 {
492 + background-color: #004274;
493 + border-bottom: 1px solid #004274;
494 + }
495 +
496 + .header-v1 a.nav-link {
497 + color: #ffffff;
498 + }
499 +
500 + .header-v1 a.nav-link:hover,
501 + .header-v1 a.nav-link:active {
502 + color: #00aeff;
503 + background-color: rgba(255,255,255,0.2);
504 + }
505 + .header-desktop .main-nav .nav-link {
506 + letter-spacing: 0.0px;
507 + }
508 +
509 + .header-v2 .header-top,
510 + .header-v5 .header-top,
511 + .header-v2 .header-contact-wrap {
512 + background-color: #ffffff;
513 + }
514 +
515 + .header-v2 .header-bottom,
516 + .header-v5 .header-bottom {
517 + background-color: #004274;
518 + }
519 +
520 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
521 + color: #004274;
522 + }
523 +
524 + .header-v2 .header-contact-left {
525 + color: #004274;
526 + }
527 +
528 + .header-v2 .header-bottom,
529 + .header-v2 .navbar-nav > li,
530 + .header-v2 .navbar-nav > li:first-of-type,
531 + .header-v5 .header-bottom,
532 + .header-v5 .navbar-nav > li,
533 + .header-v5 .navbar-nav > li:first-of-type {
534 + border-color: rgba(255,255,255,0.2);
535 + }
536 +
537 + .header-v2 a.nav-link,
538 + .header-v5 a.nav-link {
539 + color: #ffffff;
540 + }
541 +
542 + .header-v2 a.nav-link:hover,
543 + .header-v2 a.nav-link:active,
544 + .header-v5 a.nav-link:hover,
545 + .header-v5 a.nav-link:active {
546 + color: #00aeff;
547 + background-color: rgba(255,255,255,0.2);
548 + }
549 +
550 + .header-v2 .header-contact-right a:hover,
551 + .header-v2 .header-contact-right a:active,
552 + .header-v3 .header-contact-right a:hover,
553 + .header-v3 .header-contact-right a:active {
554 + background-color: transparent;
555 + }
556 +
557 + .header-v2 .header-social-icons a,
558 + .header-v5 .header-social-icons a {
559 + color: #004274;
560 + }
561 +
562 + .header-v3 .header-top {
563 + background-color: #004274;
564 + }
565 +
566 + .header-v3 .header-bottom {
567 + background-color: #004272;
568 + }
569 +
570 + .header-v3 .header-contact,
571 + .header-v3-mobile {
572 + background-color: #00aeef;
573 + color: #ffffff;
574 + }
575 +
576 + .header-v3 .header-bottom,
577 + .header-v3 .login-register,
578 + .header-v3 .navbar-nav > li,
579 + .header-v3 .navbar-nav > li:first-of-type {
580 + border-color: ;
581 + }
582 +
583 + .header-v3 a.nav-link,
584 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
585 + color: #ffffff;
586 + }
587 +
588 + .header-v3 a.nav-link:hover,
589 + .header-v3 a.nav-link:active {
590 + color: #00aeff;
591 + background-color: rgba(255,255,255,0.2);
592 + }
593 +
594 + .header-v3 .header-social-icons a {
595 + color: #FFFFFF;
596 + }
597 +
598 + .header-v4 {
599 + background-color: #ffffff;
600 + }
601 +
602 + .header-v4 a.nav-link {
603 + color: #000000;
604 + }
605 +
606 + .header-v4 a.nav-link:hover,
607 + .header-v4 a.nav-link:active {
608 + color: #3385d9;
609 + background-color: rgba(255,255,255,0.2);
610 + }
611 +
612 + .header-v6 .header-top {
613 + background-color: #00AEEF;
614 + }
615 +
616 + .header-v6 a.nav-link {
617 + color: #FFFFFF;
618 + }
619 +
620 + .header-v6 a.nav-link:hover,
621 + .header-v6 a.nav-link:active {
622 + color: #00aeff;
623 + background-color: rgba(255,255,255,0.2);
624 + }
625 +
626 + .header-v6 .header-social-icons a {
627 + color: #FFFFFF;
628 + }
629 +
630 + .header-mobile {
631 + background-color: #ffffff;
632 + }
633 + .header-mobile .toggle-button-left,
634 + .header-mobile .toggle-button-right {
635 + color: #000000;
636 + }
637 +
638 + .nav-mobile .logged-in-nav a,
639 + .nav-mobile .main-nav,
640 + .nav-mobile .navi-login-register {
641 + background-color: #ffffff;
642 + }
643 +
644 + .nav-mobile .logged-in-nav a,
645 + .nav-mobile .main-nav .nav-item .nav-item a,
646 + .nav-mobile .main-nav .nav-item a,
647 + .navi-login-register .main-nav .nav-item a {
648 + color: #000000;
649 + border-bottom: 1px solid #ffffff;
650 + background-color: #ffffff;
651 + }
652 +
653 + .nav-mobile .btn-create-listing,
654 + .navi-login-register .btn-create-listing {
655 + color: #fff;
656 + border: 1px solid #3385d9;
657 + background-color: #3385d9;
658 + }
659 +
660 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
661 + .navi-login-register .btn-create-listing:hover,
662 + .navi-login-register .btn-create-listing:active {
663 + color: #fff;
664 + border: 1px solid #3385d9;
665 + background-color: rgba(0, 174, 255, 0.65);
666 + }
667 +
668 + .header-transparent-wrap .header-v4 {
669 + background-color: transparent;
670 + border-bottom: 1px none rgba(255,255,255,0.3);
671 + }
672 +
673 + .header-transparent-wrap .header-v4 a {
674 + color: #ffffff;
675 + }
676 +
677 + .header-transparent-wrap .header-v4 a:hover,
678 + .header-transparent-wrap .header-v4 a:active {
679 + color: #3385d9;
680 + background-color: rgba(255, 255, 255, 0.1);
681 + }
682 +
683 + .main-nav .navbar-nav .nav-item .dropdown-menu,
684 + .login-register .login-register-nav li .dropdown-menu {
685 + background-color: rgba(255,255,255,0.95);
686 + }
687 +
688 + .login-register .login-register-nav li .dropdown-menu:before {
689 + border-left-color: rgba(255,255,255,0.95);
690 + border-top-color: rgba(255,255,255,0.95);
691 + }
692 +
693 + .main-nav .navbar-nav .nav-item .nav-item a,
694 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
695 + color: #3385d9;
696 + border-bottom: 1px solid #e6e6e6;
697 + }
698 +
699 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
700 + .main-nav .navbar-nav .nav-item .nav-item a:active,
701 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
702 + color: #2b6fb4;
703 + }
704 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
705 + .main-nav .navbar-nav .nav-item .nav-item a:active,
706 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
707 + background-color: rgba(0, 174, 255, 0.1);
708 + }
709 +
710 + .header-main-wrap .btn-create-listing {
711 + color: #3385d9;
712 + border: 1px solid #3385d9;
713 + background-color: #ffffff;
714 + }
715 +
716 + .header-main-wrap .btn-create-listing:hover,
717 + .header-main-wrap .btn-create-listing:active {
718 + color: rgba(255,255,255,1);
719 + border: 1px solid #2b6fb4;
720 + background-color: rgba(43,111,180,1);
721 + }
722 +
723 + .header-transparent-wrap .header-v4 .btn-create-listing {
724 + color: #ffffff;
725 + border: 1px solid #ffffff;
726 + background-color: rgba(255,255,255,0.2);
727 + }
728 +
729 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
730 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
731 + color: rgba(255,255,255,1);
732 + border: 1px solid #3385d9;
733 + background-color: rgba(51,133,217,1);
734 + }
735 +
736 + .header-transparent-wrap .logged-in-nav a,
737 + .logged-in-nav a {
738 + color: #000000;
739 + border-color: #e6e6e6;
740 + background-color: #FFFFFF;
741 + }
742 +
743 + .header-transparent-wrap .logged-in-nav a:hover,
744 + .header-transparent-wrap .logged-in-nav a:active,
745 + .logged-in-nav a:hover,
746 + .logged-in-nav a:active {
747 + color: #000000;
748 + background-color: rgba(204,204,204,0.15);
749 + border-color: #e6e6e6;
750 + }
751 +
752 + .form-control::-webkit-input-placeholder,
753 + .search-banner-wrap ::-webkit-input-placeholder,
754 + .advanced-search ::-webkit-input-placeholder,
755 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
756 + .overlay-search-advanced-module ::-webkit-input-placeholder {
757 + color: #a1a7a8;
758 + }
759 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
760 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
761 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
762 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
763 + color: #a1a7a8;
764 + }
765 + .form-control::placeholder,
766 + .search-banner-wrap ::-webkit-input-placeholder,
767 + .advanced-search ::-webkit-input-placeholder,
768 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
769 + .overlay-search-advanced-module ::-webkit-input-placeholder {
770 + color: #a1a7a8;
771 + }
772 +
773 + .search-banner-wrap ::-moz-placeholder,
774 + .advanced-search ::-moz-placeholder,
775 + .advanced-search-banner-wrap ::-moz-placeholder,
776 + .overlay-search-advanced-module ::-moz-placeholder {
777 + color: #a1a7a8;
778 + }
779 +
780 + .search-banner-wrap :-ms-input-placeholder,
781 + .advanced-search :-ms-input-placeholder,
782 + .advanced-search-banner-wrap ::-ms-input-placeholder,
783 + .overlay-search-advanced-module ::-ms-input-placeholder {
784 + color: #a1a7a8;
785 + }
786 +
787 + .search-banner-wrap :-moz-placeholder,
788 + .advanced-search :-moz-placeholder,
789 + .advanced-search-banner-wrap :-moz-placeholder,
790 + .overlay-search-advanced-module :-moz-placeholder {
791 + color: #a1a7a8;
792 + }
793 +
794 + .advanced-search .form-control,
795 + .advanced-search .bootstrap-select > .btn,
796 + .location-trigger,
797 + .vertical-search-wrap .form-control,
798 + .vertical-search-wrap .bootstrap-select > .btn,
799 + .step-search-wrap .form-control,
800 + .step-search-wrap .bootstrap-select > .btn,
801 + .advanced-search-banner-wrap .form-control,
802 + .advanced-search-banner-wrap .bootstrap-select > .btn,
803 + .search-banner-wrap .form-control,
804 + .search-banner-wrap .bootstrap-select > .btn,
805 + .overlay-search-advanced-module .form-control,
806 + .overlay-search-advanced-module .bootstrap-select > .btn,
807 + .advanced-search-v2 .advanced-search-btn,
808 + .advanced-search-v2 .advanced-search-btn:hover {
809 + border-color: #cccccc;
810 + }
811 +
812 + .advanced-search-nav,
813 + .search-expandable,
814 + .overlay-search-advanced-module {
815 + background-color: #FFFFFF;
816 + }
817 + .btn-search {
818 + color: #ffffff;
819 + background-color: #3385d9;
820 + border-color: #3385d9;
821 + }
822 + .btn-search:hover, .btn-search:active {
823 + color: #ffffff;
824 + background-color: #2b6fb4;
825 + border-color: #2b6fb4;
826 + }
827 + .advanced-search-btn {
828 + color: #666666;
829 + background-color: #ffffff;
830 + border-color: #dce0e0;
831 + }
832 + .advanced-search-btn:hover, .advanced-search-btn:active {
833 + color: #000000;
834 + background-color: #ffffff;
835 + border-color: #dce0e0;
836 + }
837 + .advanced-search-btn:focus {
838 + color: #666666;
839 + background-color: #ffffff;
840 + border-color: #dce0e0;
841 + }
842 + .search-expandable-label {
843 + color: #ffffff;
844 + background-color: #ff6e00;
845 + }
846 + .advanced-search-nav {
847 + padding-top: 10px;
848 + padding-bottom: 10px;
849 + }
850 + .features-list-wrap .control--checkbox,
851 + .features-list-wrap .control--radio,
852 + .range-text,
853 + .features-list-wrap .control--checkbox,
854 + .features-list-wrap .btn-features-list,
855 + .overlay-search-advanced-module .search-title,
856 + .overlay-search-advanced-module .overlay-search-module-close {
857 + color: #222222;
858 + }
859 + .advanced-search-half-map {
860 + background-color: #FFFFFF;
861 + }
862 + .advanced-search-half-map .range-text,
863 + .advanced-search-half-map .features-list-wrap .control--checkbox,
864 + .advanced-search-half-map .features-list-wrap .btn-features-list {
865 + color: #222222;
866 + }
867 +
868 + .save-search-btn {
869 + border-color: #28a745 ;
870 + background-color: #28a745 ;
871 + color: #ffffff ;
872 + }
873 + .save-search-btn:hover,
874 + .save-search-btn:active {
875 + border-color: #28a745;
876 + background-color: #28a745 ;
877 + color: #ffffff ;
878 + }
879 + .label-featured {
880 + background-color: #e22424;
881 + color: #ffffff;
882 + }
883 +
884 + .dashboard-side-wrap {
885 + background-color: #00365e;
886 + }
887 +
888 + .side-menu a {
889 + color: #ffffff;
890 + }
891 +
892 + .side-menu a.active,
893 + .side-menu .side-menu-parent-selected > a,
894 + .side-menu-dropdown a,
895 + .side-menu a:hover {
896 + color: #3385d9;
897 + }
898 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
899 + color: #2b6fb4
900 + }
901 +
902 + .detail-wrap {
903 + background-color: rgba(119,199,32,0.1);
904 + border-color: #3385d9;
905 + }
906 + .top-bar-wrap,
907 + .top-bar-wrap .dropdown-menu,
908 + .switcher-wrap .dropdown-menu {
909 + background-color: #000000;
910 + }
911 + .top-bar-wrap a,
912 + .top-bar-contact,
913 + .top-bar-slogan,
914 + .top-bar-wrap .btn,
915 + .top-bar-wrap .dropdown-menu,
916 + .switcher-wrap .dropdown-menu,
917 + .top-bar-wrap .navbar-toggler {
918 + color: #ffffff;
919 + }
920 + .top-bar-wrap a:hover,
921 + .top-bar-wrap a:active,
922 + .top-bar-wrap .btn:hover,
923 + .top-bar-wrap .btn:active,
924 + .top-bar-wrap .dropdown-menu li:hover,
925 + .top-bar-wrap .dropdown-menu li:active,
926 + .switcher-wrap .dropdown-menu li:hover,
927 + .switcher-wrap .dropdown-menu li:active {
928 + color: rgba(43,111,180,1);
929 + }
930 + .class-energy-indicator:nth-child(1) {
931 + background-color: #33a357;
932 + }
933 + .class-energy-indicator:nth-child(2) {
934 + background-color: #79b752;
935 + }
936 + .class-energy-indicator:nth-child(3) {
937 + background-color: #c3d545;
938 + }
939 + .class-energy-indicator:nth-child(4) {
940 + background-color: #fff12c;
941 + }
942 + .class-energy-indicator:nth-child(5) {
943 + background-color: #edb731;
944 + }
945 + .class-energy-indicator:nth-child(6) {
946 + background-color: #d66f2c;
947 + }
948 + .class-energy-indicator:nth-child(7) {
949 + background-color: #cc232a;
950 + }
951 + .class-energy-indicator:nth-child(8) {
952 + background-color: #cc232a;
953 + }
954 + .class-energy-indicator:nth-child(9) {
955 + background-color: #cc232a;
956 + }
957 + .class-energy-indicator:nth-child(10) {
958 + background-color: #cc232a;
959 + }
960 +
961 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#0e4c7b }
962 + .agent-detail-page-v2 .agent-list-position a, .agent-detail-page-v2 .agent-profile-header h1, .agent-detail-page-v2 .rating-score-text, .agent-detail-page-v2 .agent-profile-address address, .agent-detail-page-v2 .badge-success { color:#ffffff }
963 +
964 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#00aeff }
965 +
966 + .footer-top-wrap {
967 + background-color: #000000;
968 + }
969 +
970 + .footer-bottom-wrap {
971 + background-color: #000000;
972 + }
973 +
974 + .footer-top-wrap,
975 + .footer-top-wrap a,
976 + .footer-bottom-wrap,
977 + .footer-bottom-wrap a,
978 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
979 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
980 + .footer-top-wrap .blog-post-content-widget h4 a,
981 + .footer-top-wrap .blog-post-content-widget,
982 + .footer-top-wrap .form-tools .control,
983 + .footer-top-wrap .slick-dots li.slick-active button:before,
984 + .footer-top-wrap .slick-dots li button::before,
985 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
986 + color: #ffffff;
987 + }
988 +
989 + .footer-top-wrap a:hover,
990 + .footer-bottom-wrap a:hover,
991 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
992 + color: rgba(43,111,180,1);
993 + }
994 + .houzez-osm-cluster {
995 + background-image: url(https://location.prestiplex.com/wp-content/themes/houzez/img/map/cluster-icon.png);
996 + text-align: center;
997 + color: #fff;
998 + width: 48px;
999 + height: 48px;
1000 + line-height: 48px;
1001 + }
1002 + .text-success{color:red!important;}
1003 +
1004 +/*.mobile-property-contact{bottom:40px;}*/
1005 +
1006 +/* Button retour en haut*/
1007 +/*
1008 +.back-to-top-wrap .btn-back-to-top{width: 50px;height: 50px;line-height: 50px;}
1009 +.mobile-property-contact .btn{margin-right: 60px;}
1010 +*/
1011 +
1012 +.item-tool.houzez-share{display:none;}
1013 +
1014 +#houzez-search-f0d3160 .elementor-field-label{margin-bottom:10px;}
1015 +
1016 +.grecaptcha-badge{display:none!important;}
1017 +
1018 +/*#header-section .nav-item.login-link .dropdown-menu{display:none;}*/
1019 +
1020 +
1021 +@media only screen and (max-width: 768px) {
1022 + /* For mobile phones: */
1023 +
1024 + /* Button retour en haut*/
1025 + .back-to-top-wrap{right: 10px;bottom: 80px; display:none;}
1026 + #houzez-search-f0d3160 .elementor-field-group.elementor-column.form-group{margin-bottom:20px;}
1027 +}
1028 +/*# sourceURL=houzez-style-inline-css */</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="67bc19b0f3b84afcb9f38fc1-|49"></script><link data-asynced="1" as="style" onload="this.onload=null;this.rel='stylesheet'" rel='preload' id='leaflet-css' href='https://unpkg.com/leaflet@1.7.1/dist/leaflet.css' media='all' /><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;subset=latin&#038;display=swap" /></noscript><script id="jquery-core-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-includes/js/jquery/jquery.min.js"></script>
1029 + <script id="google_gtagjs-js" type="litespeed/javascript" data-src="https://www.googletagmanager.com/gtag/js?id=G-V47ZS50H52"></script> <script id="google_gtagjs-js-after" type="litespeed/javascript">window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}
1030 +gtag("set","linker",{"domains":["agencedelocationsherbrooke.com"]});gtag("js",new Date());gtag("set","developer_id.dZTNiMT",!0);gtag("config","G-V47ZS50H52")</script> <link rel="https://api.w.org/" href="https://agencedelocationsherbrooke.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://agencedelocationsherbrooke.com/wp-json/wp/v2/properties/5883" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://agencedelocationsherbrooke.com/xmlrpc.php?rsd" /><meta name="generator" content="WordPress 7.0.3" /><link rel='shortlink' href='https://agencedelocationsherbrooke.com/?p=5883' /><meta name="generator" content="Redux 4.5.13" /><meta name="generator" content="Site Kit by Google 1.184.0" /><link rel="alternate" hreflang="fr-CA" href="https://agencedelocationsherbrooke.com/property/963-federal/"/><link rel="alternate" hreflang="fr" href="https://agencedelocationsherbrooke.com/property/963-federal/"/><link rel="shortcut icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/favicon-1.png"><link rel="apple-touch-icon-precomposed" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="114x114" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><link rel="apple-touch-icon-precomposed" sizes="72x72" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/logo-only.png"><meta name="google-adsense-platform-account" content="ca-host-pub-2644536267352236"><meta name="google-adsense-platform-domain" content="sitekit.withgoogle.com"><meta name="generator" content="Elementor 3.26.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap"><style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1031 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1032 + background-image: none !important;
1033 + }
1034 + @media screen and (max-height: 1024px) {
1035 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1036 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1037 + background-image: none !important;
1038 + }
1039 + }
1040 + @media screen and (max-height: 640px) {
1041 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1042 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1043 + background-image: none !important;
1044 + }
1045 + }</style> <script crossorigin="anonymous" type="litespeed/javascript" data-src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6607982157080915&#038;host=ca-host-pub-2644536267352236"></script> <meta name="generator" content="Powered by Slider Revolution 6.6.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254-150x64.png" sizes="32x32" /><link rel="icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" sizes="192x192" /><link rel="apple-touch-icon" href="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /><meta name="msapplication-TileImage" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" /> <script type="litespeed/javascript">function setREVStartSize(e){window.RSIW=window.RSIW===undefined?window.innerWidth:window.RSIW;window.RSIH=window.RSIH===undefined?window.innerHeight:window.RSIH;try{var pw=document.getElementById(e.c).parentNode.offsetWidth,newh;pw=pw===0||isNaN(pw)||(e.l=="fullwidth"||e.layout=="fullwidth")?window.RSIW:pw;e.tabw=e.tabw===undefined?0:parseInt(e.tabw);e.thumbw=e.thumbw===undefined?0:parseInt(e.thumbw);e.tabh=e.tabh===undefined?0:parseInt(e.tabh);e.thumbh=e.thumbh===undefined?0:parseInt(e.thumbh);e.tabhide=e.tabhide===undefined?0:parseInt(e.tabhide);e.thumbhide=e.thumbhide===undefined?0:parseInt(e.thumbhide);e.mh=e.mh===undefined||e.mh==""||e.mh==="auto"?0:parseInt(e.mh,0);if(e.layout==="fullscreen"||e.l==="fullscreen")
1046 +newh=Math.max(e.mh,window.RSIH);else{e.gw=Array.isArray(e.gw)?e.gw:[e.gw];for(var i in e.rl)if(e.gw[i]===undefined||e.gw[i]===0)e.gw[i]=e.gw[i-1];e.gh=e.el===undefined||e.el===""||(Array.isArray(e.el)&&e.el.length==0)?e.gh:e.el;e.gh=Array.isArray(e.gh)?e.gh:[e.gh];for(var i in e.rl)if(e.gh[i]===undefined||e.gh[i]===0)e.gh[i]=e.gh[i-1];var nl=new Array(e.rl.length),ix=0,sl;e.tabw=e.tabhide>=pw?0:e.tabw;e.thumbw=e.thumbhide>=pw?0:e.thumbw;e.tabh=e.tabhide>=pw?0:e.tabh;e.thumbh=e.thumbhide>=pw?0:e.thumbh;for(var i in e.rl)nl[i]=e.rl[i]<window.RSIW?0:e.rl[i];sl=nl[0];for(var i in nl)if(sl>nl[i]&&nl[i]>0){sl=nl[i];ix=i}
1047 +var m=pw>(e.gw[ix]+e.tabw+e.thumbw)?1:(pw-(e.tabw+e.thumbw))/(e.gw[ix]);newh=(e.gh[ix]*m)+(e.tabh+e.thumbh)}
1048 +var el=document.getElementById(e.c);if(el!==null&&el)el.style.height=newh+"px";el=document.getElementById(e.c+"_wrapper");if(el!==null&&el){el.style.height=newh+"px";el.style.display="block"}}catch(e){console.log("Failure at Presize of Slider:"+e)}}</script> <style id="rs-plugin-settings-inline-css">#rs-demo-id {}
1049 +/*# sourceURL=rs-plugin-settings-inline-css */</style></head><body class="wp-singular property-template-default single single-property postid-5883 wp-custom-logo wp-theme-houzez translatepress-fr_CA transparent- houzez-header- elementor-default elementor-kit-6"><div class="nav-mobile"><div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile"><ul id="mobile-main-nav" class="navbar-nav mobile-navbar-nav"><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></div><nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user"></nav></div><main id="main-wrap" class="main-wrap"><header class="header-main-wrap "><div id="header-section" class="header-desktop header-v4" data-sticky="0"><div class="container"><div class="header-inner-wrap"><div class="navbar d-flex align-items-center"><div class="logo logo-desktop">
1050 +<a href="https://agencedelocationsherbrooke.com/">
1051 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="64px" width="254px" alt="logo">
1052 +</a></div><nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1"><ul id="main-nav" class="navbar-nav justify-content-end"><li id='menu-item-1535' class="nav-item menu-item menu-item-type-post_type menu-item-object-page menu-item-home "><a class="nav-link " href="https://agencedelocationsherbrooke.com/">Recherche</a></li><li id='menu-item-6087' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/politique-de-confidentialite/">Confidentialité</a></li><li id='menu-item-5032' class="nav-item menu-item menu-item-type-custom menu-item-object-custom "><a class="nav-link " href="https://agencedelocationsherbrooke.com/blog">Blogue</a></li><li id='menu-item-1537' class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://agencedelocationsherbrooke.com/contact/">Contact</a></li></ul></nav><div class="login-register on-hover-menu"><ul class="login-register-nav dropdown d-flex align-items-center"></ul></div></div></div></div></div><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky=""><div class="header-mobile-left">
1053 +<button class="btn toggle-button-left">
1054 +<i class="houzez-icon icon-navigation-menu"></i>
1055 +</button></div><div class="header-mobile-center flex-grow-1"><div class="logo logo-mobile">
1056 +<a href="https://agencedelocationsherbrooke.com/">
1057 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png" height="32" width="127" alt="Mobile logo">
1058 +</a></div></div><div class="header-mobile-right"></div></div></header><section class="content-wrap property-wrap property-detail-v6 "><div class="property-navigation-wrap"><div class="container-fluid"><ul class="property-navigation list-unstyled d-flex justify-content-between"><li class="property-navigation-item">
1059 +<a class="back-top" href="#main-wrap">
1060 +<i class="houzez-icon icon-arrow-button-circle-up"></i>
1061 +</a></li><li class="property-navigation-item">
1062 +<a class="target" href="#property-features-wrap">Inclusions</a></li><li class="property-navigation-item">
1063 +<a class="target" href="#property-description-wrap">Description</a></li><li class="property-navigation-item">
1064 +<a class="target" href="#property-address-wrap">Addresse</a></li><li class="property-navigation-item">
1065 +<a class="target" href="#property-detail-wrap">Détails</a></li><li class="property-navigation-item">
1066 +<a class="target" href="#property-video-wrap">Vidéo</a></li><li class="property-navigation-item">
1067 +<a class="target" href="#property-walkscore-wrap">Walkscore</a></li><li class="property-navigation-item">
1068 +<a class="target" href="#similar-listings-wrap">Annonces similaires</a></li></ul></div></div><div class="page-title-wrap"><div class="container"><div class="d-flex align-items-center"><div class="breadcrumb-wrap"><nav><ol class="breadcrumb"><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/"><span>Accueil</span></a></li><li class="breadcrumb-item"><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/"> <span>4½</span></a></li><li class="breadcrumb-item active">963 Fédéral</li></ol></nav></div><ul class="item-tools"><li class="item-tool houzez-favorite">
1069 +<span class="add-favorite-js item-tool-favorite" data-listid="5883">
1070 +<i class="houzez-icon icon-love-it "></i>
1071 +</span></li><li class="item-tool houzez-share">
1072 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1073 +<i class="houzez-icon icon-share"></i>
1074 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1075 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=963+F%C3%A9d%C3%A9ral&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F">
1076 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&amp;t=963+F%C3%A9d%C3%A9ral" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1077 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1078 +</a>
1079 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=963+F%C3%A9d%C3%A9ral&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1080 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1081 +</a>
1082 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1356-768x1024.jpg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1083 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1084 +</a>
1085 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&title=963+F%C3%A9d%C3%A9ral&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1086 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1087 +</a>
1088 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#88fbe7e5ede7e6edc8edf0e9e5f8e4eda6ebe7e5b7dbfdeae2edebfcb5b1bebba8ce4b21ec4b21fae9e4aeeae7ecf1b5e0fcfcf8fbadbbc9adbaceadbacee9efede6ebedecede4e7ebe9fce1e7e6fbe0edfaeafae7e7e3eda6ebe7e5adbacef8fae7f8edfafcf1adbaceb1bebba5eeedecedfae9e4adbace">
1089 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1090 +</a></div></li><li class="item-tool houzez-print " data-propid="5883">
1091 +<span class="item-tool-compare">
1092 +<i class="houzez-icon icon-print-text"></i>
1093 +</span></li></ul></div><div class="d-flex align-items-center property-title-price-wrap"><div class="page-title"><h1>963 Fédéral</h1></div><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul></div><div class="property-labels-wrap">
1094 +<span class="label-featured label">Vedette</span><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1095 +Centre-ville
1096 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1097 +Libre maintenant
1098 +</a></div>
1099 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>963, Rue du Fédéral, Les Nations, Sherbrooke, Estrie, Québec, J1H 1X8, Canada</address></div></div><div class="property-top-wrap"><div class="property-banner"><div class="visible-on-mobile"><div class="tab-content" id="pills-tabContent"><div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1356-scaled.jpg);"><div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 11</div><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1100 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1101 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1102 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [963 Fédéral]</textarea></div>
1103 +<input type="hidden" name="target_email" value="c&#97;therine.&#112;&#101;r&#114;&#101;a&#117;l&#116;&#64;p&#114;&#101;sti&#112;&#108;ex&#46;c&#111;m">
1104 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1105 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/963-federal/"/>
1106 +<input type="hidden" name="property_title" value="963 Fédéral"/>
1107 +<input type="hidden" name="property_id" value="ADLS-5883"/>
1108 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1109 +<input type="hidden" name="listing_id" value="5883">
1110 +<input type="hidden" name="is_listing_form" value="yes">
1111 +<input type="hidden" name="agent_id" value="156">
1112 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1113 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1114 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1115 +</button></form></div></div><a class="houzez-photoswipe-trigger property-banner-trigger" href="#"></a></div><div class="tab-pane houzez-top-area-video " id="pills-video" role="tabpanel" aria-labelledby="pills-video-tab">
1116 +<iframe data-lazyloaded="1" src="about:blank" title="963 fédéral, Sherbrooke, Québec" width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/z2JiBoDCcZE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div><div class="container hidden-on-mobile"><div class="row"><div class="col-md-8">
1117 +<a href="#" data-slider-no="1" data-image="0" class="houzez-photoswipe-trigger img-wrap-1" >
1118 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1356-758x564.jpg" alt="" width="758" height="564" />
1119 +</a></div><div class="col-md-4">
1120 +<a href="#" data-slider-no="2" data-image="1" class="houzez-photoswipe-trigger swipebox img-wrap-2">
1121 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1357-758x564.jpg" alt="" width="758" height="564" />
1122 +</a>
1123 +<a href="#" data-slider-no="3" data-image="2" class="houzez-photoswipe-trigger swipebox img-wrap-3"><div class="img-wrap-3-text">8 Plus</div>
1124 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1358-758x564.jpg" alt="" width="758" height="564" />
1125 +</a></div>
1126 +<a href="#" class="img-wrap-1 gallery-hidden">
1127 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1359-758x564.jpg" alt="" width="758" height="564" />
1128 +</a>
1129 +<a href="#" class="img-wrap-1 gallery-hidden">
1130 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1360-758x564.jpg" alt="" width="758" height="564" />
1131 +</a>
1132 +<a href="#" class="img-wrap-1 gallery-hidden">
1133 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1361-758x564.jpg" alt="" width="758" height="564" />
1134 +</a>
1135 +<a href="#" class="img-wrap-1 gallery-hidden">
1136 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1362-758x564.jpg" alt="" width="758" height="564" />
1137 +</a>
1138 +<a href="#" class="img-wrap-1 gallery-hidden">
1139 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1363-758x564.jpg" alt="" width="758" height="564" />
1140 +</a>
1141 +<a href="#" class="img-wrap-1 gallery-hidden">
1142 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1364-758x564.jpg" alt="" width="758" height="564" />
1143 +</a>
1144 +<a href="#" class="img-wrap-1 gallery-hidden">
1145 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1365-758x564.jpg" alt="" width="758" height="564" />
1146 +</a>
1147 +<a href="#" class="img-wrap-1 gallery-hidden">
1148 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3NTgiIGhlaWdodD0iNTY0IiB2aWV3Qm94PSIwIDAgNzU4IDU2NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1366-758x564.jpg" alt="" width="758" height="564" />
1149 +</a><div class="col-md-12"><div class="block-wrap"><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>4½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>2</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>4</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div></div></div><div class="pswp" tabindex="-1" role="dialog" aria-hidden="true"><div class="pswp__bg"></div><div class="pswp__scroll-wrap"><div class="pswp__container"><div class="pswp__item"></div><div class="pswp__item"></div><div class="pswp__item"></div></div><div class="pswp__ui pswp__ui--hidden"><div class="pswp__top-bar"><div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button><button class="pswp__button pswp__button--share" title="Share"></button><button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button><button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button><div class="pswp__preloader"><div class="pswp__preloader__icn"><div class="pswp__preloader__cut"><div class="pswp__preloader__donut"></div></div></div></div></div><div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap"><div class="pswp__share-tooltip"></div></div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
1150 +</button><button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
1151 +</button><div class="pswp__caption"><div class="pswp__caption__center"></div></div></div></div></div> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">initPhotoswipeDomForJson({"1":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1356-scaled.jpg","w":1920,"h":2560},"2":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1357-scaled.jpg","w":1920,"h":2560},"3":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1358-scaled.jpg","w":1920,"h":2560},"4":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1359-scaled.jpg","w":1920,"h":2560},"5":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1360-scaled.jpg","w":1920,"h":2560},"6":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1361-scaled.jpg","w":1920,"h":2560},"7":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1362-scaled.jpg","w":1920,"h":2560},"8":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1363-scaled.jpg","w":1920,"h":2560},"9":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1364-scaled.jpg","w":1920,"h":2560},"10":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1365-scaled.jpg","w":1920,"h":2560},"11":{"src":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2023\/07\/IMG_1366-scaled.jpg","w":1920,"h":2560}});function initPhotoswipeDomForJson(imageData){var pswpElement=document.querySelectorAll('.pswp')[0];var items=[],item;jQuery.each(imageData,function(i,obj){item={src:obj.src,w:obj.w,h:obj.h};items.push(item)});var options={index:0};var x=document.querySelectorAll(".houzez-photoswipe-trigger");for(let i=0;i<x.length;i++){x[i].addEventListener("click",function(){openGallery(x[i].dataset.image)})}
1152 +function openGallery(j){options.index=parseInt(j);options.history=!1;gallery=new PhotoSwipe(pswpElement,PhotoSwipeUI_Default,items,options);gallery.init()}}</script> </div><div class="container"><div class="row"><div class="col-lg-12 col-md-12 bt-full-width-content-wrap"><div class="property-view"><div class="visible-on-mobile"><div class="mobile-top-wrap"><div class="mobile-property-tools clearfix"><ul class="nav nav-pills houzez-media-tabs-4" id="pills-tab" role="tablist"><li class="nav-item">
1153 +<a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1154 +<i class="houzez-icon icon-picture-sun"></i>
1155 +</a></li><li class="nav-item">
1156 +<a class="nav-link " id="pills-video-tab" data-toggle="pill" href="#pills-video" role="tab" aria-controls="pills-video" aria-selected="true">
1157 +<i class="houzez-icon icon-video-player-movie-1"></i>
1158 +</a></li></ul><ul class="item-tools"><li class="item-tool houzez-favorite">
1159 +<span class="add-favorite-js item-tool-favorite" data-listid="5883">
1160 +<i class="houzez-icon icon-love-it "></i>
1161 +</span></li><li class="item-tool houzez-share">
1162 +<span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1163 +<i class="houzez-icon icon-share"></i>
1164 +</span><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1165 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=963+F%C3%A9d%C3%A9ral&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F">
1166 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&amp;t=963+F%C3%A9d%C3%A9ral" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1167 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1168 +</a>
1169 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=963+F%C3%A9d%C3%A9ral&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1170 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1171 +</a>
1172 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1356-768x1024.jpg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1173 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1174 +</a>
1175 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&title=963+F%C3%A9d%C3%A9ral&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1176 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1177 +</a>
1178 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#b4c7dbd9d1dbdad1f4d1ccd5d9c4d8d19ad7dbd98be7c1d6ded1d7c0898d828794f2771dd0771dc6d5d892d6dbd0cd89dcc0c0c4c79187f59186f29186f2d5d3d1dad7d1d0d1d8dbd7d5c0dddbdac7dcd1c6d6c6dbdbdfd19ad7dbd99186f2c4c6dbc4d1c6c0cd9186f28d828799d2d1d0d1c6d5d89186f2">
1179 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1180 +</a></div></li><li class="item-tool houzez-print " data-propid="5883">
1181 +<span class="item-tool-compare">
1182 +<i class="houzez-icon icon-print-text"></i>
1183 +</span></li></ul></div><div class="mobile-property-title clearfix">
1184 +<span class="label-featured label">Vedette</span> <span class="labels-wrap labels-right">
1185 +<a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1186 +Centre-ville
1187 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1188 +Libre maintenant
1189 +</a>
1190 +</span>
1191 +<address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>963, Rue du Fédéral, Les Nations, Sherbrooke, Estrie, Québec, J1H 1X8, Canada</address><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul></div></div><div class="property-overview-wrap property-section-wrap" id="property-overview-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Apperçu</h2><div><strong># Annonce:</strong> ADLS-5883</div></div><div class="d-flex property-overview-data"><ul class="list-unstyled flex-fill"><li class="property-overview-item"><strong>4½</strong></li><li class="hz-meta-label property-overview-type">Type</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i> <strong>2</strong></li><li class="hz-meta-label h-beds">Chambres</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-baths">Salle de bain</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon icon-car-1 mr-1"></i> <strong>1</strong></li><li class="hz-meta-label h-garage">Stationnement</li></ul><ul class="list-unstyled flex-fill"><li class="property-overview-item"><i class="houzez-icon real-estate-dimensions-block mr-1"></i> <strong>4</strong></li><li class="hz-meta-label h-rooms">Pièces</li></ul></div></div></div></div><div class="property-features-wrap property-section-wrap" id="property-features-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Inclusions</h2></div><div class="block-content-wrap"><ul class="list-3-cols list-unstyled"><li><i class="fas fa-cat mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/chat-permis/">Chat permis</a></li><li><i class="houzez-icon icon-check-circle-1 mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/entre-laveuse-secheuse/">Entré laveuse/sécheuse</a></li><li><i class="fas fa-wifi mr-2"></i><a href="https://agencedelocationsherbrooke.com/feature/wifi/">Wi-Fi</a></li></ul></div></div></div><div class="property-description-wrap property-section-wrap" id="property-description-wrap"><div class="block-wrap"><div class="block-title-wrap"><h2>Description</h2></div><div class="block-content-wrap"><div dir="auto"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true" data-pm-slice="1 3 []"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">4 ½ à louer – Disponible dès maintenant</strong></p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Possibilité d’avoir les 4 électroménagers sans frais supplémentaire</p><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true"><strong data-prosemirror-content-type="mark" data-prosemirror-mark-name="strong">Conditions :</strong></p><ul class="ak-ul" data-prosemirror-content-type="node" data-prosemirror-node-name="bulletList" data-prosemirror-node-block="true"><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Immeuble et logement non-fumeurs</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">1 espace de stationnement inclus</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">1 chat accepté</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Chiens non permis</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Situé au 2e et dernier étage</p></li><li data-prosemirror-content-type="node" data-prosemirror-node-name="listItem" data-prosemirror-node-block="true"><p data-prosemirror-content-type="node" data-prosemirror-node-name="paragraph" data-prosemirror-node-block="true">Enquête de crédit obligatoire</p></li></ul></div></div></div></div><div class="property-address-wrap property-section-wrap" id="property-address-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Addresse</h2><a class="btn btn-primary btn-slim" href="https://maps.google.com/?q=963,%20Rue%20du%20Fédéral,%20Les%20Nations,%20Sherbrooke,%20Estrie,%20Québec,%20J1H%201X8,%20Canada" target="_blank"><i class="houzez-icon icon-maps mr-1"></i> Ouvrir sur Google Maps</a></div><div class="block-content-wrap"><ul class="list-2-cols list-unstyled"><li class="detail-address"><strong>Addresse</strong> <span>963, Rue du Fédéral, Les Nations, Sherbrooke, Estrie, Québec, J1H 1X8, Canada</span></li><li class="detail-zip"><strong>Zip / Code postal</strong> <span>J1H 1X8</span></li></ul></div><div id="houzez-single-listing-map" class="block-map-wrap"></div></div></div><div class="property-detail-wrap property-section-wrap" id="property-detail-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Détails</h2>
1192 +<span class="small-text grey"><i class="houzez-icon icon-calendar-3 mr-1"></i> Mise à jour le août 3, 2026 à 7:52 pm</span></div><div class="block-content-wrap"><div class="detail-wrap"><ul class="list-2-cols list-unstyled"><li>
1193 +<strong># Annonce:</strong>
1194 +<span>ADLS-5883</span></li><li>
1195 +<strong>Prix:</strong>
1196 +<span> 925$/mensuel</span></li><li>
1197 +<strong>Chambres:</strong>
1198 +<span>2</span></li><li>
1199 +<strong>Pièces:</strong>
1200 +<span>4</span></li><li>
1201 +<strong>Salle de bain:</strong>
1202 +<span>1</span></li><li>
1203 +<strong>Stationnement:</strong>
1204 +<span>1</span></li><li class="prop_type">
1205 +<strong>Type:</strong>
1206 +<span>4½</span></li><li class="prop_status">
1207 +<strong>Statut:</strong>
1208 +<span>Centre-ville</span></li></ul></div></div></div></div><div class="property-video-wrap property-section-wrap" id="property-video-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Vidéo</h2></div><div class="block-content-wrap"><div class="block-video-wrap">
1209 +<iframe data-lazyloaded="1" src="about:blank" title="963 fédéral, Sherbrooke, Québec" width="1170" height="658" data-litespeed-src="https://www.youtube.com/embed/z2JiBoDCcZE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div></div></div></div><div class="property-walkscore-wrap property-section-wrap" id="property-walkscore-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Walkscore</h2></div><div class="block-content-wrap"><div id="ws-walkscore-tile"></div></div></div></div><div class="property-contact-agent-wrap property-section-wrap" id="property-contact-agent-wrap"><div class="block-wrap"><div class="block-title-wrap d-flex justify-content-between align-items-center"><h2>Coordonnées</h2><a class="btn btn-primary btn-slim" href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/" target="_blank">Voir les annonces</a></div><div class="block-content-wrap"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgdmlld0JveD0iMCAwIDgwIDgwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="80" height="80"></a></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-phone-wrap clearfix"></li></ul></div></div><div class="block-title-wrap"><h3>Renseignez-vous sur cette propriété</h3></div><div class="form_messages"></div><div class="row"><div class="col-md-6 col-sm-12"><div class="form-group">
1210 +<label>Nom</label>
1211 +<input class="form-control" name="name" placeholder="Entrez votre nom" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1212 +<label>Téléphone</label>
1213 +<input class="form-control" name="mobile" placeholder="Entrez votre numéro de téléphone" type="text"></div></div><div class="col-md-6 col-sm-12"><div class="form-group">
1214 +<label>Courriel</label>
1215 +<input class="form-control" name="email" placeholder="Entrer votre courriel" type="email"></div></div><div class="col-sm-12 col-xs-12"><div class="form-group form-group-textarea">
1216 +<label>Message</label><textarea class="form-control hz-form-message" name="message" rows="5" placeholder="Entrez votre message">Bonjour, je suis intéressé par [963 Fédéral]</textarea></div></div><div class="col-sm-12 col-xs-12">
1217 +<input type="hidden" name="target_email" value="c&#97;&#116;&#104;e&#114;&#105;n&#101;&#46;&#112;&#101;&#114;&#114;eault&#64;pr&#101;&#115;&#116;&#105;plex&#46;&#99;om">
1218 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1219 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/963-federal/"/>
1220 +<input type="hidden" name="property_title" value="963 Fédéral"/>
1221 +<input type="hidden" name="property_id" value="ADLS-5883"/>
1222 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1223 +<input type="hidden" class="is_bottom" value="bottom">
1224 +<input type="hidden" name="listing_id" value="5883">
1225 +<input type="hidden" name="is_listing_form" value="yes">
1226 +<input type="hidden" name="agent_id" value="156">
1227 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><button class="houzez_agent_property_form btn btn-secondary btn-sm-full-width">
1228 +<span class="btn-loader houzez-loader-js"></span> Demande d'informations
1229 +</button></div></div></form></div></div></div><div id="similar-listings-wrap" class="similar-property-wrap listing-v1"><div class="block-title-wrap"><h2>Annonces similaires</h2></div><div class="listing-view list-view card-deck"><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10507" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T163352.427-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T163352.427-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T163404.513-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T163403.214-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T163401.957-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T163400.468-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T163359.443-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T163355.184-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T163351.257-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header">
1230 +<span class="label-featured label">Vedette</span><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1231 +Centre-ville
1232 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1233 +Libre maintenant
1234 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">995$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1235 +<span class="hz-show-lightbox-js" data-listid="10507" data-toggle="tooltip" data-placement="top" title="Aperçu">
1236 +<i class="houzez-icon icon-expand-3"></i>
1237 +</span></li><li class="item-tool item-favorite">
1238 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10507">
1239 +<i class="houzez-icon icon-love-it "></i>
1240 +</span></li><li class="item-tool item-compare">
1241 +<span class="houzez_compare compare-10507 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10507" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T163352.427-592x444.jpeg">
1242 +<i class="houzez-icon icon-add-circle"></i>
1243 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1244 +<a href="https://agencedelocationsherbrooke.com/property/410-florence-2/" class="listing-featured-thumb hover-effect">
1245 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T163352.427-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T163352.427-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T163352.427-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T163352.427-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1246 +Centre-ville
1247 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1248 +Libre maintenant
1249 +</a></div><h2 class="item-title">
1250 +<a href="https://agencedelocationsherbrooke.com/property/410-florence-2/">410 Florence #2</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">995$/mensuel</li></ul> <address class="item-address">Rue Florence, Mont-Bellevue, Les Nations, Sherbrooke, Estrie, Québec, J1H 4R6, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lits:</span> <span class="hz-figure">2</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>4½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/410-florence-2/">
1251 +Détails</a><div class="item-author">
1252 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1253 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1254 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1255 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10192" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9828-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9828-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9835-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9832-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9831-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9834-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9833-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9830-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/IMG_9829-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1256 +Centre-ville
1257 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1258 +Libre maintenant
1259 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">875$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1260 +<span class="hz-show-lightbox-js" data-listid="10192" data-toggle="tooltip" data-placement="top" title="Aperçu">
1261 +<i class="houzez-icon icon-expand-3"></i>
1262 +</span></li><li class="item-tool item-favorite">
1263 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10192">
1264 +<i class="houzez-icon icon-love-it "></i>
1265 +</span></li><li class="item-tool item-compare">
1266 +<span class="houzez_compare compare-10192 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10192" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/IMG_9828-592x444.jpeg">
1267 +<i class="houzez-icon icon-add-circle"></i>
1268 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1269 +<a href="https://agencedelocationsherbrooke.com/property/146-sanborn-2/" class="listing-featured-thumb hover-effect">
1270 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/IMG_9828-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/IMG_9828-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/IMG_9828-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/IMG_9828-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1271 +Centre-ville
1272 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1273 +Libre maintenant
1274 +</a></div><h2 class="item-title">
1275 +<a href="https://agencedelocationsherbrooke.com/property/146-sanborn-2/">146 Sanborn</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">875$/mensuel</li></ul> <address class="item-address">146, Rue Sanborn, Les Nations, Sherbrooke, Estrie, Québec, J1H 5C7, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lits:</span> <span class="hz-figure">2</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>4½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/146-sanborn-2/">
1276 +Détails</a><div class="item-author">
1277 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1278 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1279 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1280 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div><div class="item-listing-wrap hz-item-gallery-js card" data-hz-id="hz-10086" data-images="[{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/03\/image-2026-03-16T235504.925-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/03\/image-2026-03-16T235504.925-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/03\/image-2026-03-16T235458.161-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/03\/image-2026-03-16T235501.654-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/03\/image-2026-03-16T235500.623-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/03\/image-2026-03-16T235459.250-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;},{&quot;image&quot;:&quot;https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/03\/image-2026-03-16T235503.752-592x444.jpeg&quot;,&quot;alt&quot;:&quot;&quot;}]"><div class="item-wrap item-wrap-v1 item-wrap-no-frame h-100"><div class="d-flex align-items-center h-100"><div class="item-header"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1281 +Centre-ville
1282 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1283 +Libre maintenant
1284 +</a></div><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul><ul class="item-tools"><li class="item-tool item-preview">
1285 +<span class="hz-show-lightbox-js" data-listid="10086" data-toggle="tooltip" data-placement="top" title="Aperçu">
1286 +<i class="houzez-icon icon-expand-3"></i>
1287 +</span></li><li class="item-tool item-favorite">
1288 +<span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favorie" data-listid="10086">
1289 +<i class="houzez-icon icon-love-it "></i>
1290 +</span></li><li class="item-tool item-compare">
1291 +<span class="houzez_compare compare-10086 item-tool-compare show-compare-panel" data-toggle="tooltip" data-placement="top" title="Comparer" data-listing_id="10086" data-listing_image="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/03/image-2026-03-16T235504.925-592x444.jpeg">
1292 +<i class="houzez-icon icon-add-circle"></i>
1293 +</span></li></ul><div class="listing-image-wrap"><div class="listing-thumb">
1294 +<a href="https://agencedelocationsherbrooke.com/property/75-alexandre/" class="listing-featured-thumb hover-effect">
1295 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OTIiIGhlaWdodD0iNDQ0IiB2aWV3Qm94PSIwIDAgNTkyIDQ0NCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="592" height="444" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/03/image-2026-03-16T235504.925-592x444.jpeg" class="img-fluid wp-post-image" alt="" decoding="async" data-srcset="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/03/image-2026-03-16T235504.925-592x444.jpeg 592w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/03/image-2026-03-16T235504.925-584x438.jpeg 584w, https://agencedelocationsherbrooke.com/wp-content/uploads/2026/03/image-2026-03-16T235504.925-120x90.jpeg 120w" data-sizes="(max-width: 592px) 100vw, 592px" /> </a></div></div><div class="preview_loader"></div></div><div class="item-body flex-grow-1"><div class="labels-wrap labels-right"><a href="https://agencedelocationsherbrooke.com/status/centre-ville/" class="label-status label status-color-28">
1296 +Centre-ville
1297 +</a><a href="https://agencedelocationsherbrooke.com/label/libre-maintenant/" class="hz-label label label-color-87">
1298 +Libre maintenant
1299 +</a></div><h2 class="item-title">
1300 +<a href="https://agencedelocationsherbrooke.com/property/75-alexandre/">75 Alexandre</a></h2><ul class="item-price-wrap hide-on-list"><li class="item-price">925$/mensuel</li></ul> <address class="item-address">75, Rue Alexandre, Les Nations, Sherbrooke, Estrie, Québec, J1H 4W9, Canada</address><ul class="item-amenities item-amenities-with-icons"><li class="h-beds"><i class="houzez-icon icon-hotel-double-bed-1 mr-1"></i><span class="item-amenities-text">Lit:</span> <span class="hz-figure">1</span></li><li class="h-baths"><i class="houzez-icon icon-bathroom-shower-1 mr-1"></i><span class="item-amenities-text">Bain:</span> <span class="hz-figure">1</span></li><li class="h-type"><span>4½</span></li></ul> <a class="btn btn-primary btn-item " href="https://agencedelocationsherbrooke.com/property/75-alexandre/">
1301 +Détails</a><div class="item-author">
1302 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1303 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div><div class="item-footer clearfix"><div class="item-author">
1304 +<i class="houzez-icon icon-single-neutral mr-1"></i>
1305 +<a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Catherine Perreault</a></div></div></div></div></div></div></div></div></div></div></div></section></main><footer class="footer-wrap footer-wrap-v1"><div class="footer-top-wrap"><div class="container"><div class="row"><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-21" class="footer-widget widget widget-wrap widget_block"><h4>Par secteur</h4></div><div id="block-19" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/status/udes/">Université de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-carrefour/">Carrefour de l'Estrie</a></li><li><a href="https://agencedelocationsherbrooke.com/status/mont-bellevue/">Mont Bellevue</a></li><li><a href="https://agencedelocationsherbrooke.com/status/centre-ville/">Centre-ville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/secteur-cegep/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/status/secteur-cegep/">Cégep de Sherbrooke</a></li><li><a href="https://agencedelocationsherbrooke.com/status/lennoxville/">Lennoxville</a></li><li><a href="https://agencedelocationsherbrooke.com/status/vieux-nord/">Vieux-Nord</a></li><li><a href="https://agencedelocationsherbrooke.com/status/magog/">Magog</a></li><li><a href="https://agencedelocationsherbrooke.com/status/deauville/">Deauville</a></li></ul></div></div><div class="col-lg-3 col-md-6 col-sm-6"><div id="block-23" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Articles</h4></div><div id="block-24" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/22/9-questions-a-poser-lors-dune-visite/">9 questions à poser lors d'une visite</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/6-conseils-pour-optimiser-lespace-et-votre-decoration/">6 Conseils Pour Optimiser L’espace</a></li><li><a href="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/2023/03/14/comment-trouver-un-appartement-abordable-a-louer-a-sherbrooke/">Comment Trouver Un Appartement Abordable ?</a></li></ul></div><div id="block-25" class="footer-widget widget widget-wrap widget_block"><h4 class="wp-block-heading">Catégorie</h4></div><div id="block-26" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/category/decorer/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/decorer/">Décorer</a></li><li><a href="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/category/trouver-un-appartement/">Trouver un appartement</a></li></ul></div></div><div class="col-lg-6 col-md-12"><div id="block-16" class="footer-widget widget widget-wrap widget_block"><h4>Appartements à louer</h4></div><div id="block-14" class="footer-widget widget widget-wrap widget_block"><ul class="wp-block-list"><li><a href="https://agencedelocationsherbrooke.com/property-type/studio/" data-type="link" data-id="https://agencedelocationsherbrooke.com/property-type/studio/">Studio / 1 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/2-demi/" data-type="URL" data-id="https://agencedelocationsherbrooke.com/property-type/2-demi/">2 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/3-demi/">3 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/4-demi/">4 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/5-demi/">5 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/6-demi/">6 et demi</a></li><li><a href="https://agencedelocationsherbrooke.com/property-type/maison/">Maison</a></li></ul></div><div id="block-30" class="footer-widget widget widget-wrap widget_block widget_text"><p class="wp-block-paragraph"></p></div><div id="block-31" class="footer-widget widget widget-wrap widget_block"><div class="wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex"></div></div></div></div></div></div><div class="footer-bottom-wrap footer-bottom-wrap-v2"><div class="container"><div class="footer_logo logo">
1306 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTQiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCAyNTQgNjQiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white-254.png" alt="logo" width="254" height="64" /></div><div class="footer-copyright">
1307 +&copy; Agence de location Sherbrooke - Tous droits réservés</div></div></div></footer><div class="back-to-top-wrap">
1308 +<a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1309 +<i class="houzez-icon icon-arrow-up-1"></i>
1310 +</a></div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1311 +<button class="compare-property-label" style="display: none;">
1312 +<span class="compare-count compare-label"></span>
1313 +<i class="houzez-icon icon-move-left-right"></i>
1314 +</button><p><strong>Comparer les annonces</strong></p><div class="compare-wrap"></div><a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1315 +<button class="btn btn-grey-outlined btn-full-width close-compare-panel">Fermer</button></div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><div class="login-register-tabs"><ul class="nav nav-tabs"><li class="nav-item">
1316 +<a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">Connexion</a></li></ul></div>
1317 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1318 +<span aria-hidden="true">&times;</span>
1319 +</button></div><div class="modal-body"><div class="tab-content"><div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel"><div id="hz-login-messages" class="hz-social-messages"></div><form><div class="login-form-wrap"><div class="form-group"><div class="form-group-field username-field">
1320 +<input class="form-control" name="username" placeholder="Nom d&#039;utilisateur ou courriel" type="text" /></div></div><div class="form-group"><div class="form-group-field password-field">
1321 +<input class="form-control" name="password" placeholder="Mot de passe" type="password" /></div></div></div><div class="form-tools"><div class="d-flex">
1322 +<label class="control control--checkbox flex-grow-1">
1323 +<input name="remember" type="checkbox">Souvenir de vous <span class="control__indicator"></span>
1324 +</label>
1325 +<a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Perdu votre mot de passe?</a></div></div><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><input type="hidden" id="houzez_login_security" name="houzez_login_security" value="4bb43353ae" /><input type="hidden" name="_wp_http_referer" value="/property/963-federal/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1326 +<input type="hidden" name="redirect_to" value="https://agencedelocationsherbrooke.com/property/963-federal/?login=success">
1327 +<button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1328 +<span class="btn-loader houzez-loader-js"></span> Connexion
1329 +</button></form></div><div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel"><div id="hz-register-messages" class="hz-social-messages"></div>
1330 +User registration is disabled for demo purpose.</div></div></div></div></div></div><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog"><div class="modal-dialog" role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title">Réinitialiser le mot de passe</h5>
1331 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1332 +<span aria-hidden="true">&times;</span>
1333 +</button></div><div class="modal-body"><div id="reset_pass_msg"></div><p>Please enter your username or email address. You will receive a link to create a new password via email.</p><form><div class="form-group">
1334 +<input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Entrez votre nom d&#039;utilisateur ou votre courriel" class="form-control"></div>
1335 +<input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="2ddef6d1ce" /><input type="hidden" name="_wp_http_referer" value="/property/963-federal/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1336 +<span class="btn-loader houzez-loader-js"></span> Recevoir un nouveau mot de passe </button></form></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div id="hz-listing-model-content" class="modal-content"></div></div></div></div><div class="mobile-property-contact visible-on-mobile"><div class="d-flex justify-content-between"><div class="agent-details flex-grow-1"><div class="d-flex align-items-center"><div class="agent-image">
1337 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" width="50" height="50" alt="Catherine Perreault"></div><ul class="agent-information list-unstyled"><li class="agent-name">
1338 +Catherine Perreault</li></ul></div></div>
1339 +<button class="btn btn-secondary" data-toggle="modal" data-target="#mobile-property-form">
1340 +<i class="houzez-icon icon-messages-bubble"></i>
1341 +</button></div></div><div class="modal fade mobile-property-form" id="mobile-property-form"><div class="modal-dialog" role="document"><div class="modal-content">
1342 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1343 +<span aria-hidden="true">&times;</span>
1344 +</button><div class="modal-body"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1345 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1346 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1347 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [963 Fédéral]</textarea></div>
1348 +<input type="hidden" name="target_email" value="&#99;ath&#101;&#114;ine&#46;&#112;er&#114;ea&#117;&#108;&#116;&#64;&#112;&#114;est&#105;&#112;l&#101;&#120;.c&#111;&#109;">
1349 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1350 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/963-federal/"/>
1351 +<input type="hidden" name="property_title" value="963 Fédéral"/>
1352 +<input type="hidden" name="property_id" value="ADLS-5883"/>
1353 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1354 +<input type="hidden" name="listing_id" value="5883">
1355 +<input type="hidden" name="is_listing_form" value="yes">
1356 +<input type="hidden" name="agent_id" value="156">
1357 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1358 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1359 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1360 +</button></form></div></div></div></div></div></div><div class="property-lightbox"><div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog"><div class="modal-dialog modal-dialog-centered" role="document"><div class="modal-content"><div class="modal-header"><div class="d-flex align-items-center"><div class="lightbox-logo">
1361 +<img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjciIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAxMjcgMzIiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-white.png" alt="963 Fédéral" width="127" height="32" /></div><div class="lightbox-title flex-grow-1"></div><div class="lightbox-tools"><ul class="list-inline"><li class="list-inline-item btn-favorite">
1362 +<a class="add-favorite-js" data-listid="5883" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Favoris</span></a></li><li class="list-inline-item btn-share">
1363 +<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Partager</span></a><div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1364 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=963+F%C3%A9d%C3%A9ral&nbsp;https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F">
1365 +<i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a><a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&amp;t=963+F%C3%A9d%C3%A9ral" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1366 +<i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1367 +</a>
1368 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=963+F%C3%A9d%C3%A9ral&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&via=Agence+de+location+Sherbrooke" onclick="if (!window.__cfRLUnblockHandlers) return false; if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1369 +<i class="houzez-icon icon-social-media-twitter mr-1"></i> Twitter
1370 +</a>
1371 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&amp;media=https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1356-768x1024.jpg" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1372 +<i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest
1373 +</a>
1374 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F963-federal%2F&title=963+F%C3%A9d%C3%A9ral&source=https%3A%2F%2Fagencedelocationsherbrooke.com%2F" onclick="if (!window.__cfRLUnblockHandlers) return false; window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;" data-cf-modified-67bc19b0f3b84afcb9f38fc1-="">
1375 +<i class="houzez-icon icon-professional-network-linkedin mr-1"></i> Linkedin
1376 +</a>
1377 +<a class="dropdown-item" href="/cdn-cgi/l/email-protection#50233f3d353f3e35103528313d203c357e333f3d6f0325323a3533246d696663701693f93493f922313c76323f34296d38242420237563117562167562163137353e333534353c3f333124393f3e2338352232223f3f3b357e333f3d75621620223f20352224297562166966637d3635343522313c756216">
1378 +<i class="houzez-icon icon-envelope mr-1"></i>Courriel
1379 +</a></div></li><li class="list-inline-item btn-email">
1380 +<a href="#"><i class="houzez-icon icon-envelope"></i></a></li></ul></div></div>
1381 +<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1382 +<span aria-hidden="true">&times;</span>
1383 +</button></div><div class="modal-body clearfix"><div class="lightbox-gallery-wrap ">
1384 +<a class="btn-expand">
1385 +<i class="houzez-icon icon-expand-3"></i>
1386 +</a><div class="lightbox-gallery"><div id="lightbox-slider-js" class="lightbox-slider"><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1356-scaled.jpg" alt="" title="IMG_1356" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1357-scaled.jpg" alt="" title="IMG_1357" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1358-scaled.jpg" alt="" title="IMG_1358" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1359-scaled.jpg" alt="" title="IMG_1359" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1360-scaled.jpg" alt="" title="IMG_1360" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1361-scaled.jpg" alt="" title="IMG_1361" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1362-scaled.jpg" alt="" title="IMG_1362" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1363-scaled.jpg" alt="" title="IMG_1363" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1364-scaled.jpg" alt="" title="IMG_1364" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1365-scaled.jpg" alt="" title="IMG_1365" width="1920" height="2560" /></div><div><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOTIwIiBoZWlnaHQ9IjI1NjAiIHZpZXdCb3g9IjAgMCAxOTIwIDI1NjAiPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOiNjZmQ0ZGI7ZmlsbC1vcGFjaXR5OiAwLjE7Ii8+PC9zdmc+" class="img-fluid" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1366-scaled.jpg" alt="" title="IMG_1366" width="1920" height="2560" /></div></div></div></div><div class="lightbox-form-wrap"><div class="property-form-wrap"><div class="property-form clearfix"><form method="post" action="#"><div class="agent-details"><div class="d-flex align-items-center"><div class="agent-image"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3MCIgaGVpZ2h0PSI3MCIgdmlld0JveD0iMCAwIDcwIDcwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBzdHlsZT0iZmlsbDojY2ZkNGRiO2ZpbGwtb3BhY2l0eTogMC4xOyIvPjwvc3ZnPg==" class="rounded" data-src="https://agencedelocationsherbrooke.com/wp-content/uploads/2016/02/cath-e1678462814276-150x150.jpg" alt="Catherine Perreault" width="70" height="70"></div><ul class="agent-information list-unstyled"><li class="agent-name"><i class="houzez-icon icon-single-neutral mr-1"></i> Catherine Perreault</li><li class="agent-link"><a href="https://agencedelocationsherbrooke.com/agent/catherine-perreault/">Voir les annonces</a></li></ul></div></div><div class="form-group">
1387 +<input class="form-control" name="name" value="" type="text" placeholder="Nom"></div><div class="form-group">
1388 +<input class="form-control" name="mobile" value="" type="text" placeholder="Téléphone"></div><div class="form-group">
1389 +<input class="form-control" name="email" value="" type="email" placeholder="Courriel"></div><div class="form-group form-group-textarea"><textarea class="form-control hz-form-message" name="message" rows="4" placeholder="Message">Bonjour, je suis intéressé par [963 Fédéral]</textarea></div>
1390 +<input type="hidden" name="target_email" value="&#99;athe&#114;ine.pe&#114;re&#97;u&#108;&#116;&#64;&#112;&#114;&#101;&#115;t&#105;&#112;l&#101;x.c&#111;m">
1391 +<input type="hidden" name="property_agent_contact_security" value="f62a28c478"/>
1392 +<input type="hidden" name="property_permalink" value="https://agencedelocationsherbrooke.com/property/963-federal/"/>
1393 +<input type="hidden" name="property_title" value="963 Fédéral"/>
1394 +<input type="hidden" name="property_id" value="ADLS-5883"/>
1395 +<input type="hidden" name="action" value="houzez_property_agent_contact">
1396 +<input type="hidden" name="listing_id" value="5883">
1397 +<input type="hidden" name="is_listing_form" value="yes">
1398 +<input type="hidden" name="agent_id" value="156">
1399 +<input type="hidden" name="agent_type" value="agent_info"><div class="form-group captcha_wrapper houzez-grecaptcha-v3"><div class="houzez_google_reCaptcha"></div></div><div class="form_messages"></div>
1400 +<button type="button" class="houzez_agent_property_form btn btn-secondary btn-full-width">
1401 +<span class="btn-loader houzez-loader-js"></span> Envoyer
1402 +</button></form></div></div></div></div><div class="modal-footer"></div></div></div></div></div><template id="tp-language" data-tp-language="fr_CA"></template> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="litespeed/javascript">window.RS_MODULES=window.RS_MODULES||{};window.RS_MODULES.modules=window.RS_MODULES.modules||{};window.RS_MODULES.waiting=window.RS_MODULES.waiting||[];window.RS_MODULES.defered=!0;window.RS_MODULES.moduleWaiting=window.RS_MODULES.moduleWaiting||{};window.RS_MODULES.type='compiled'</script> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/houzez/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <a href="/imunify-bot-check" rel="nofollow" aria-hidden="true" tabindex="-1" style="display:none!important;position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden">imunify-bot-check</a> <script type="litespeed/javascript">var reCaptchaIDs=[];var siteKey='6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL';var reCaptchaType='v3';var houzezReCaptchaLoad=function(){jQuery('.houzez_google_reCaptcha').each(function(index,el){var tempID;if(reCaptchaType==='v3'){tempID=grecaptcha.ready(function(){grecaptcha.execute(siteKey,{action:'homepage'}).then(function(token){el.insertAdjacentHTML('beforeend','<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="'+token+'">')})})}else{tempID=grecaptcha.render(el,{'sitekey':siteKey})}
1403 +reCaptchaIDs.push(tempID)})};var houzezReCaptchaReset=function(){if(reCaptchaType==='v2'){if(typeof reCaptchaIDs!='undefined'){var arrayLength=reCaptchaIDs.length;for(var i=0;i<arrayLength;i++){grecaptcha.reset(reCaptchaIDs[i])}}}else{houzezReCaptchaLoad()}}</script> <script type="67bc19b0f3b84afcb9f38fc1-text/javascript" type="litespeed/javascript">const lazyloadRunObserver=()=>{const lazyloadBackgrounds=document.querySelectorAll(`.e-con.e-parent:not(.e-lazyloaded)`);const lazyloadBackgroundObserver=new IntersectionObserver((entries)=>{entries.forEach((entry)=>{if(entry.isIntersecting){let lazyloadBackground=entry.target;if(lazyloadBackground){lazyloadBackground.classList.add('e-lazyloaded')}
1404 +lazyloadBackgroundObserver.unobserve(entry.target)}})},{rootMargin:'200px 0px 200px 0px'});lazyloadBackgrounds.forEach((lazyloadBackground)=>{lazyloadBackgroundObserver.observe(lazyloadBackground)})};const events=['DOMContentLiteSpeedLoaded','elementor/lazyload/observe',];events.forEach((event)=>{document.addEventListener(event,lazyloadRunObserver)})</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/agencedelocationsherbrooke.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script id="wp-a11y-js-translations" type="litespeed/javascript">(function(domain,translations){var localeData=translations.locale_data[domain]||translations.locale_data.messages;localeData[""].domain=domain;wp.i18n.setLocaleData(localeData,domain)})("default",{"translation-revision-date":"2026-07-20 16:05:29+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr_CA"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}})</script> <script id="bootstrap-datepicker.fr-CA-js" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr-CA.min.js"></script> <script id="houzez-custom-js-extra" type="litespeed/javascript">var houzez_vars={"admin_url":"https://agencedelocationsherbrooke.com/wp-admin/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https://agencedelocationsherbrooke.com/property/963-federal/","property_gallery_popup_type":"photoswipe","wp_is_mobile":"","default_lat":"45.4042215","default_long":"-71.8936464","houzez_is_splash":"","prop_detail_nav":"yes","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_nav","login_loading":"Sending user info, please wait...","not_found":"We didn't find any results","houzez_map_system":"osm","for_rent":"","for_rent_price_slider":"","search_min_price_range":"400","search_max_price_range":"3000","search_min_price_range_for_rent":"0","search_max_price_range_for_rent":"3000","get_min_price":"0","get_max_price":"0","currency_position":"after","currency_symbol":"$","decimals":"0","decimal_point_separator":".","thousands_separator":",","is_halfmap":"","houzez_date_language":"fr-CA","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"1","geocomplete_country":"CA","is_edit_property":"","processing_text":"Processing, Please wait...","halfmap_layout":"","prev_text":"Prev","next_text":"Next","keyword_search_field":"","keyword_autocomplete":"0","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"0","simple_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","mobile_logo":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_mobile_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","custom_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","retina_logo_splash":"https://agencedelocationsherbrooke.com/wp-content/uploads/2022/11/als-logo-grey-254.png","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"https://agencedelocationsherbrooke.com/comparer/","favorite_url":"https://agencedelocationsherbrooke.com/favorite/","template_thankyou":"https://agencedelocationsherbrooke.com/thank-you/","compare_page_not_found":"Please create page using compare properties template","compare_limit":"Maximum item compare are 4","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Comparer","remove_compare_text":"Retirer de comparer","is_mapbox":"osm","api_mapbox":"","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""}</script> <script id="houzez-google-recaptcha-js" type="litespeed/javascript" data-src="//www.google.com/recaptcha/api.js?render=6Ld6DBAjAAAAANOpSqgsSsnbwWDN5FO_b4aWtYFL&#038;onload=houzezReCaptchaLoad"></script> <script id="leaflet-js" type="litespeed/javascript" data-src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script> <script id="houzez-single-property-map-js-extra" type="litespeed/javascript">var houzez_single_property_map={"title":"963 F\u00e9d\u00e9ral","price":" 925$/mensuel","property_id":"5883","pricePin":"925$/mensuel","property_type":"4\u00bd","address":"963, Rue du F\u00e9d\u00e9ral, Les Nations, Sherbrooke, Estrie, Qu\u00e9bec, J1H 1X8, Canada","lat":"45.39159648433662","lng":"-71.88611265471184","term_id":"16","marker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","retinaMarker":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/pin-single-family.png","thumbnail":"https://agencedelocationsherbrooke.com/wp-content/uploads/2023/07/IMG_1356-120x90.jpg"};var houzez_map_options={"markerPricePins":"no","single_map_zoom":"12","map_type":"roadmap","map_pin_type":"marker","googlemap_stype":"","closeIcon":"https://agencedelocationsherbrooke.com/wp-content/themes/houzez/img/map/close.png","infoWindowPlac":"https://placehold.it/120x90&text=Agence+de+location+Sherbrooke"}</script> <script id="houzez-walkscore-js-before" type="litespeed/javascript">var ws_wsid=' 65c6f7843483895d5d5ef58e01b2d789';var ws_address='963, Rue du Fédéral, Les Nations, Sherbrooke, Estrie, Québec, J1H 1X8, Canada';var ws_format='wide';var ws_width='650';var ws_width='100%';var ws_height='400'</script> <script id="houzez-walkscore-js" type="litespeed/javascript" data-src="https://www.walkscore.com/tile/show-walkscore-tile.php"></script> <div id="fb-root"></div><div id="fb-customer-chat" class="fb-customerchat"></div> <script type="litespeed/javascript">var chatbox=document.getElementById('fb-customer-chat');chatbox.setAttribute("page_id","111544791783243");chatbox.setAttribute("attribution","biz_inbox")</script> <script type="litespeed/javascript">console.log("Messenger plugin loaded.")
1405 +window.fbAsyncInit=function(){FB.init({xfbml:!0,version:'v16.0'})};(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(d.getElementById(id))return;js=d.createElement(s);js.id=id;js.src='https://connect.facebook.net/fr_FR/sdk/xfbml.customerchat.js';fjs.parentNode.insertBefore(js,fjs)}(document,'script','facebook-jssdk'))</script> <script data-no-optimize="1" type="67bc19b0f3b84afcb9f38fc1-text/javascript">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1" type="67bc19b0f3b84afcb9f38fc1-text/javascript">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart","pointerup","pointerdown"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);function d(){o.src.startsWith("blob:")&&URL.revokeObjectURL(o.src),e()}var o=document.createElement("script");o.addEventListener("load",d),o.addEventListener("error",d),t.getAttributeNames().forEach(e=>{"type"!=e&&o.setAttribute("data-src"==e?"src":e,t.getAttribute(e))}),o.type="text/javascript",!o.src&&t.textContent&&(o.src=litespeed_inline2src(t.textContent)),t.after(o),t.remove()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1" type="67bc19b0f3b84afcb9f38fc1-text/javascript">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/litespeed/js/7eb3e0d215c9a5e36449ede9b8431764.js?ver=1ec4f"></script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="67bc19b0f3b84afcb9f38fc1-|49" defer></script></body></html>
1406 +<!-- Page optimized by LiteSpeed Cache @2026-08-09 05:31:24 -->
1407 +
1408 +<!-- Page cached by LiteSpeed Cache 7.9 on 2026-08-09 05:31:24 -->
1409 +<!-- Guest Mode -->
1410 +<!-- QUIC.cloud CCSS loaded ✅ /ccss/ed93c1ba2200a9da666c9871ea0b8f1b.css -->
1411 +<!-- QUIC.cloud UCSS loaded ✅ /ucss/cf0c42c8db72e2cfb19e0823534db732.css -->
\ No newline at end of file
added tests/fixtures/agence_sherbrooke/99cbdb32cffba9f712e5.html +871 −0
@@ -0,0 +1,1327 @@
1 +<!doctype html><html dir="ltr" lang="fr-CA" prefix="og: https://ogp.me/ns#"><head><script data-no-optimize="1" type="b2c2b634fd8fd50a4e08e473-text/javascript">var litespeed_docref=sessionStorage.getItem("litespeed_docref");litespeed_docref&&(Object.defineProperty(document,"referrer",{get:function(){return litespeed_docref}}),sessionStorage.removeItem("litespeed_docref"));</script> <meta charset="UTF-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><link rel="profile" href="https://gmpg.org/xfn/11" /><meta name="format-detection" content="telephone=no"><title>1595 lalemant #401 - Agence de location Sherbrooke</title><meta name="description" content="5 ½ à louer – Disponible le 1er octobre Caractéristiques : 1 espace de stationnement inclus Eau chaude incluse 1 ou 2 chat tolérer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l’immeuble) Conditions : Enquête de crédit obligatoire Pour obtenir plus d’informations ou planifier une visite, contactez-nous en" /><meta name="robots" content="max-image-preview:large" /><meta name="author" content="Catherine Perreault"/><link rel="canonical" href="https://agencedelocationsherbrooke.com/property/1595-lalemant-401/" /><meta name="generator" content="All in One SEO (AIOSEO) 5.0.0.1" /><meta property="og:locale" content="fr_CA" /><meta property="og:site_name" content="Agence de location Sherbrooke - Location de logements dans Sherbrooke et les environs." /><meta property="og:type" content="article" /><meta property="og:title" content="1595 lalemant #401 - Agence de location Sherbrooke" /><meta property="og:description" content="5 ½ à louer – Disponible le 1er octobre Caractéristiques : 1 espace de stationnement inclus Eau chaude incluse 1 ou 2 chat tolérer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l’immeuble) Conditions : Enquête de crédit obligatoire Pour obtenir plus d’informations ou planifier une visite, contactez-nous en" /><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/1595-lalemant-401/" /><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-scaled.jpeg" /><meta property="og:image:secure_url" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-scaled.jpeg" /><meta property="og:image:width" content="1920" /><meta property="og:image:height" content="2560" /><meta property="article:published_time" content="2026-07-28T20:48:12+00:00" /><meta property="article:modified_time" content="2026-07-28T21:04:18+00:00" /><meta property="article:publisher" content="https://www.facebook.com/agencedelocationsherbrooke" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:title" content="1595 lalemant #401 - Agence de location Sherbrooke" /><meta name="twitter:description" content="5 ½ à louer – Disponible le 1er octobre Caractéristiques : 1 espace de stationnement inclus Eau chaude incluse 1 ou 2 chat tolérer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l’immeuble) Conditions : Enquête de crédit obligatoire Pour obtenir plus d’informations ou planifier une visite, contactez-nous en" /><meta name="twitter:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2023/03/agence-location-fb-ads.png" /> <script type="application/ld+json" class="aioseo-schema">{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1595-lalemant-401\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","position":1,"name":"Home","item":"https:\/\/agencedelocationsherbrooke.com","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","position":2,"name":"Properties","item":"https:\/\/agencedelocationsherbrooke.com\/property\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","name":"5\u00bd"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","position":3,"name":"5\u00bd","item":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/","nextItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1595-lalemant-401\/#listItem","name":"1595 lalemant #401"},"previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/#listItem","name":"Properties"}},{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1595-lalemant-401\/#listItem","position":4,"name":"1595 lalemant #401","previousItem":{"@type":"ListItem","@id":"https:\/\/agencedelocationsherbrooke.com\/property-type\/5-demi\/#listItem","name":"5\u00bd"}}]},{"@type":"Organization","@id":"https:\/\/agencedelocationsherbrooke.com\/#organization","name":"Agence de location Sherbrooke","description":"Location de logements dans Sherbrooke et les environs.","url":"https:\/\/agencedelocationsherbrooke.com\/","logo":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2022\/11\/als-logo-grey-254.png","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1595-lalemant-401\/#organizationLogo","width":254,"height":64},"image":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1595-lalemant-401\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/agencedelocationsherbrooke"]},{"@type":"Person","@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author","url":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/","name":"Catherine Perreault","image":{"@type":"ImageObject","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1595-lalemant-401\/#authorImage","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/litespeed\/avatar\/fdca211e8cbd2f88b79d873de06d8fa9.jpg?ver=1785951645","width":96,"height":96,"caption":"Catherine Perreault"}},{"@type":"WebPage","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1595-lalemant-401\/#webpage","url":"https:\/\/agencedelocationsherbrooke.com\/property\/1595-lalemant-401\/","name":"1595 lalemant #401 - Agence de location Sherbrooke","description":"5 \u00bd \u00e0 louer \u2013 Disponible le 1er octobre Caract\u00e9ristiques : 1 espace de stationnement inclus Eau chaude incluse 1 ou 2 chat tol\u00e9rer Chiens interdits Non-fumeur (il est interdit de fumer dans le logement ainsi que dans l\u2019immeuble) Conditions : Enqu\u00eate de cr\u00e9dit obligatoire Pour obtenir plus d\u2019informations ou planifier une visite, contactez-nous en","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#website"},"breadcrumb":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1595-lalemant-401\/#breadcrumblist"},"author":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"creator":{"@id":"https:\/\/agencedelocationsherbrooke.com\/author\/catherine\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/agencedelocationsherbrooke.com\/wp-content\/uploads\/2026\/07\/image-2026-07-28T164646.541-scaled.jpeg","@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1595-lalemant-401\/#mainImage","width":1920,"height":2560},"primaryImageOfPage":{"@id":"https:\/\/agencedelocationsherbrooke.com\/property\/1595-lalemant-401\/#mainImage"},"datePublished":"2026-07-28T20:48:12+00:00","dateModified":"2026-07-28T21:04:18+00:00"},{"@type":"WebSite","@id":"https:\/\/agencedelocationsherbrooke.com\/#website","url":"https:\/\/agencedelocationsherbrooke.com\/","name":"Location Prestiplex","description":"Location de logements dans Sherbrooke et les environs.","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/agencedelocationsherbrooke.com\/#organization"}}]}</script> <script id="cookieyes" type="litespeed/javascript" data-src="https://cdn-cookieyes.com/client_data/0adb712fe3dee08c709b2982/script.js"></script><link rel='dns-prefetch' href='//www.google.com' /><link rel='dns-prefetch' href='//unpkg.com' /><link rel='dns-prefetch' href='//www.googletagmanager.com' /><link rel='dns-prefetch' href='//fonts.googleapis.com' /><link rel='dns-prefetch' href='//pagead2.googlesyndication.com' /><link rel='preconnect' href='https://fonts.gstatic.com' crossorigin /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux" href="https://agencedelocationsherbrooke.com/feed/" /><link rel="alternate" type="application/rss+xml" title="Agence de location Sherbrooke &raquo; Flux des commentaires" href="https://agencedelocationsherbrooke.com/comments/feed/" /><link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1595-lalemant-401%2F" /><link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://agencedelocationsherbrooke.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fagencedelocationsherbrooke.com%2Fproperty%2F1595-lalemant-401%2F&#038;format=xml" /><meta property="og:title" content="1595 lalemant #401"/><meta property="og:description" content="5 ½ à louer – Disponible le 1er octobre
2 +Caractéristiques :1 espace de stationnement inclusEau chaude incluse1 ou 2 chat tolérerChiens interdit" /><meta property="og:type" content="article"/><meta property="og:url" content="https://agencedelocationsherbrooke.com/property/1595-lalemant-401/"/><meta property="og:site_name" content="Agence de location Sherbrooke"/><meta property="og:image" content="https://agencedelocationsherbrooke.com/wp-content/uploads/2026/07/image-2026-07-28T164646.541-scaled.jpeg"/><style id="wp-img-auto-sizes-contain-inline-css">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
3 +/*# sourceURL=wp-img-auto-sizes-contain-inline-css */</style><style id="litespeed-ccss">:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}body{--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6,147,227,1) 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255,105,0,1) 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--font-size--small:13px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:36px;--wp--preset--font-size--x-large:42px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255,255,255,1),6px 6px rgba(0,0,0,1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0,0,0,1)}body{--extendify--spacing--large:var(--wp--custom--spacing--large,clamp(2em,8vw,8em))!important;--wp--preset--font-size--ext-small:1rem!important;--wp--preset--font-size--ext-medium:1.125rem!important;--wp--preset--font-size--ext-large:clamp(1.65rem,3.5vw,2.15rem)!important;--wp--preset--font-size--ext-x-large:clamp(3rem,6vw,4.75rem)!important;--wp--preset--font-size--ext-xx-large:clamp(3.25rem,7.5vw,5.75rem)!important;--wp--preset--color--black:#000!important;--wp--preset--color--white:#fff!important}:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,:after,:before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}body{overflow-x:hidden;text-rendering:optimizeLegibility;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}body{font-size:15px;font-family:Roboto,sans-serif}body{background-color:#f8f8f8}body{color:#222}body{line-height:25px;font-weight:300;text-transform:none}body{font-family:Poppins;font-size:16px;font-weight:400;line-height:24px;text-transform:none}body{background-color:#f7f7f7}body{color:#222}</style><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="b2c2b634fd8fd50a4e08e473-|49"></script><link rel="preload" data-asynced="1" data-optimized="2" as="style" onload="this.onload=null;this.rel='stylesheet'" href="https://agencedelocationsherbrooke.com/wp-content/litespeed/ucss/eff09b3b3965e29406aa51913d53595f.css?ver=1ec4f" /><script data-optimized="1" type="litespeed/javascript" data-src="https://agencedelocationsherbrooke.com/wp-content/plugins/litespeed-cache/assets/js/css_async.min.js"></script> <style id="wp-block-library-inline-css">:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
4 +
5 +/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */</style><style id="wp-block-heading-inline-css">h1:where(.wp-block-heading).has-background,h2:where(.wp-block-heading).has-background,h3:where(.wp-block-heading).has-background,h4:where(.wp-block-heading).has-background,h5:where(.wp-block-heading).has-background,h6:where(.wp-block-heading).has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
6 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/heading/style.min.css */</style><style id="wp-block-list-inline-css">ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}
7 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/list/style.min.css */</style><style id="wp-block-paragraph-inline-css">.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
8 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/paragraph/style.min.css */</style><style id="wp-block-buttons-inline-css">.wp-block-buttons{box-sizing:border-box}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;width:100%}.wp-block-buttons[style*=text-decoration] .wp-block-button,.wp-block-buttons[style*=text-decoration] .wp-block-button__link{text-decoration:inherit}.wp-block-buttons.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons .wp-block-button__link{width:100%}.wp-block-button.aligncenter{text-align:center}
9 +/*# sourceURL=https://agencedelocationsherbrooke.com/wp-includes/blocks/buttons/style.min.css */</style><style id="classic-theme-styles-inline-css">/*! This file is auto-generated */
10 +.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
11 +/*# sourceURL=/wp-includes/css/classic-themes.min.css */</style><style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
12 +/*# sourceURL=global-styles-inline-css */</style><style id="houzez-style-inline-css">@media (min-width: 1200px) {
13 + .container {
14 + max-width: 1210px;
15 + }
16 + }
17 + .label-color-87 {
18 + background-color: #31af00;
19 + }
20 +
21 + .status-color-28 {
22 + background-color: #dd9933;
23 + }
24 +
25 + .status-color-88 {
26 + background-color: #b7ba00;
27 + }
28 +
29 + .status-color-95 {
30 + background-color: #dd3333;
31 + }
32 +
33 + .status-color-94 {
34 + background-color: #1e73be;
35 + }
36 +
37 + .status-color-89 {
38 + background-color: #31af00;
39 + }
40 +
41 + body {
42 + font-family: Poppins;
43 + font-size: 16px;
44 + font-weight: 400;
45 + line-height: 24px;
46 + text-transform: none;
47 + }
48 + .main-nav,
49 + .dropdown-menu,
50 + .login-register,
51 + .btn.btn-create-listing,
52 + .logged-in-nav,
53 + .btn-phone-number {
54 + font-family: Poppins;
55 + font-size: 14px;
56 + font-weight: 400;
57 + text-align: left;
58 + text-transform: uppercase;
59 + }
60 +
61 + .btn,
62 + .form-control,
63 + .bootstrap-select .text,
64 + .sort-by-title,
65 + .woocommerce ul.products li.product .button {
66 + font-family: Poppins;
67 + font-size: 16px;
68 + }
69 +
70 + h1, h2, h3, h4, h5, h6, .item-title {
71 + font-family: Poppins;
72 + font-weight: 400;
73 + text-transform: capitalize;
74 + }
75 +
76 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
77 + font-weight: 400;
78 + text-transform: capitalize;
79 + text-align: inherit;
80 + }
81 +
82 + .top-bar-wrap {
83 + font-family: Poppins;
84 + font-size: 15px;
85 + font-weight: 300;
86 + line-height: 25px;
87 + text-align: left;
88 + text-transform: none;
89 + }
90 + .footer-wrap {
91 + font-family: Poppins;
92 + font-size: 14px;
93 + font-weight: 300;
94 + line-height: 25px;
95 + text-align: left;
96 + text-transform: none;
97 + }
98 +
99 + .header-v1 .header-inner-wrap,
100 + .header-v1 .navbar-logged-in-wrap {
101 + line-height: 60px;
102 + height: 60px;
103 + }
104 + .header-v2 .header-top .navbar {
105 + height: 110px;
106 + }
107 +
108 + .header-v2 .header-bottom .header-inner-wrap,
109 + .header-v2 .header-bottom .navbar-logged-in-wrap {
110 + line-height: 54px;
111 + height: 54px;
112 + }
113 +
114 + .header-v3 .header-top .header-inner-wrap,
115 + .header-v3 .header-top .header-contact-wrap {
116 + height: 80px;
117 + line-height: 80px;
118 + }
119 + .header-v3 .header-bottom .header-inner-wrap,
120 + .header-v3 .header-bottom .navbar-logged-in-wrap {
121 + line-height: 54px;
122 + height: 54px;
123 + }
124 + .header-v4 .header-inner-wrap,
125 + .header-v4 .navbar-logged-in-wrap {
126 + line-height: 90px;
127 + height: 90px;
128 + }
129 + .header-v5 .header-top .header-inner-wrap,
130 + .header-v5 .header-top .navbar-logged-in-wrap {
131 + line-height: 110px;
132 + height: 110px;
133 + }
134 + .header-v5 .header-bottom .header-inner-wrap {
135 + line-height: 54px;
136 + height: 54px;
137 + }
138 + .header-v6 .header-inner-wrap,
139 + .header-v6 .navbar-logged-in-wrap {
140 + height: 60px;
141 + line-height: 60px;
142 + }
143 + @media (min-width: 1200px) {
144 + .header-v5 .header-top .container {
145 + max-width: 1170px;
146 + }
147 + }
148 +
149 + body,
150 + .main-wrap,
151 + .fw-property-documents-wrap h3 span,
152 + .fw-property-details-wrap h3 span {
153 + background-color: #f7f7f7;
154 + }
155 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
156 + background-color: #ffffff;
157 + }
158 +
159 + body,
160 + .form-control,
161 + .bootstrap-select .text,
162 + .item-title a,
163 + .listing-tabs .nav-tabs .nav-link,
164 + .item-wrap-v2 .item-amenities li span,
165 + .item-wrap-v2 .item-amenities li:before,
166 + .item-parallax-wrap .item-price-wrap,
167 + .list-view .item-body .item-price-wrap,
168 + .property-slider-item .item-price-wrap,
169 + .page-title-wrap .item-price-wrap,
170 + .agent-information .agent-phone span a,
171 + .property-overview-wrap ul li strong,
172 + .mobile-property-title .item-price-wrap .item-price,
173 + .fw-property-features-left li a,
174 + .lightbox-content-wrap .item-price-wrap,
175 + .blog-post-item-v1 .blog-post-title h3 a,
176 + .blog-post-content-widget h4 a,
177 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
178 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
179 + .agent-list-wrap .agent-list-content h2 a,
180 + .agent-list-wrap .agent-list-contact li a,
181 + .agent-contacts-wrap li a,
182 + .menu-edit-property li a,
183 + .statistic-referrals-list li a,
184 + .chart-nav .nav-pills .nav-link,
185 + .dashboard-table-properties td .property-payment-status,
186 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
187 + .payment-method-block .radio-tab .control-text,
188 + .post-title-wrap h2 a,
189 + .lead-nav-tab.nav-pills .nav-link,
190 + .deals-nav-tab.nav-pills .nav-link,
191 + .btn-light-grey-outlined:hover,
192 + button:not(.bs-placeholder) .filter-option-inner-inner,
193 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
194 + .products > .product > .item-body > a,
195 + .woocommerce ul.products li.product .price,
196 + .woocommerce div.product p.price,
197 + .woocommerce div.product span.price,
198 + .woocommerce #reviews #comments ol.commentlist li .meta,
199 + .woocommerce-MyAccount-navigation ul li a,
200 + .activitiy-item-close-button a,
201 + .property-section-wrap li a {
202 + color: #222222;
203 + }
204 +
205 +
206 +
207 + a,
208 + a:hover,
209 + a:active,
210 + a:focus,
211 + .primary-text,
212 + .btn-clear,
213 + .btn-apply,
214 + .btn-primary-outlined,
215 + .btn-primary-outlined:before,
216 + .item-title a:hover,
217 + .sort-by .bootstrap-select .bs-placeholder,
218 + .sort-by .bootstrap-select > .btn,
219 + .sort-by .bootstrap-select > .btn:active,
220 + .page-link,
221 + .page-link:hover,
222 + .accordion-title:before,
223 + .blog-post-content-widget h4 a:hover,
224 + .agent-list-wrap .agent-list-content h2 a:hover,
225 + .agent-list-wrap .agent-list-contact li a:hover,
226 + .agent-contacts-wrap li a:hover,
227 + .agent-nav-wrap .nav-pills .nav-link,
228 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
229 + .menu-edit-property li a.active,
230 + .menu-edit-property li a:hover,
231 + .dashboard-statistic-block h3 .fa,
232 + .statistic-referrals-list li a:hover,
233 + .chart-nav .nav-pills .nav-link.active,
234 + .board-message-icon-wrap.active,
235 + .post-title-wrap h2 a:hover,
236 + .listing-switch-view .switch-btn.active,
237 + .item-wrap-v6 .item-price-wrap,
238 + .listing-v6 .list-view .item-body .item-price-wrap,
239 + .woocommerce nav.woocommerce-pagination ul li a,
240 + .woocommerce nav.woocommerce-pagination ul li span,
241 + .woocommerce-MyAccount-navigation ul li a:hover,
242 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
243 + .property-schedule-tour-form-wrap .control:hover,
244 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
245 + .login-register .btn-icon-login-register + .dropdown-menu a,
246 + .activitiy-item-close-button a:hover,
247 + .property-section-wrap li a:hover,
248 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
249 + color: #3385d9;
250 + }
251 +
252 + .agent-list-position a {
253 + color: #3385d9;
254 + }
255 +
256 + .control input:checked ~ .control__indicator,
257 + .top-banner-wrap .nav-pills .nav-link,
258 + .btn-primary-outlined:hover,
259 + .page-item.active .page-link,
260 + .slick-prev:hover,
261 + .slick-prev:focus,
262 + .slick-next:hover,
263 + .slick-next:focus,
264 + .mobile-property-tools .nav-pills .nav-link.active,
265 + .login-register-form .modal-header,
266 + .agent-nav-wrap .nav-pills .nav-link.active,
267 + .board-message-icon-wrap .notification-circle,
268 + .primary-label,
269 + .fc-event, .fc-event-dot,
270 + .compare-table .table-hover > tbody > tr:hover,
271 + .post-tag,
272 + .datepicker table tr td.active.active,
273 + .datepicker table tr td.active.disabled,
274 + .datepicker table tr td.active.disabled.active,
275 + .datepicker table tr td.active.disabled.disabled,
276 + .datepicker table tr td.active.disabled:active,
277 + .datepicker table tr td.active.disabled:hover,
278 + .datepicker table tr td.active.disabled:hover.active,
279 + .datepicker table tr td.active.disabled:hover.disabled,
280 + .datepicker table tr td.active.disabled:hover:active,
281 + .datepicker table tr td.active.disabled:hover:hover,
282 + .datepicker table tr td.active.disabled:hover[disabled],
283 + .datepicker table tr td.active.disabled[disabled],
284 + .datepicker table tr td.active:active,
285 + .datepicker table tr td.active:hover,
286 + .datepicker table tr td.active:hover.active,
287 + .datepicker table tr td.active:hover.disabled,
288 + .datepicker table tr td.active:hover:active,
289 + .datepicker table tr td.active:hover:hover,
290 + .datepicker table tr td.active:hover[disabled],
291 + .datepicker table tr td.active[disabled],
292 + .ui-slider-horizontal .ui-slider-range,
293 + .btn-bubble {
294 + background-color: #3385d9;
295 + }
296 +
297 + .control input:checked ~ .control__indicator,
298 + .btn-primary-outlined,
299 + .page-item.active .page-link,
300 + .mobile-property-tools .nav-pills .nav-link.active,
301 + .agent-nav-wrap .nav-pills .nav-link,
302 + .agent-nav-wrap .nav-pills .nav-link.active,
303 + .chart-nav .nav-pills .nav-link.active,
304 + .dashaboard-snake-nav .step-block.active,
305 + .fc-event,
306 + .fc-event-dot,
307 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
308 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
309 + border-color: #3385d9;
310 + }
311 +
312 + .slick-arrow:hover {
313 + background-color: rgba(43,111,180,1);
314 + }
315 +
316 + .slick-arrow {
317 + background-color: #3385d9;
318 + }
319 +
320 + .property-banner .nav-pills .nav-link.active {
321 + background-color: rgba(43,111,180,1) !important;
322 + }
323 +
324 + .property-navigation-wrap a.active {
325 + color: #3385d9;
326 + -webkit-box-shadow: inset 0 -3px #3385d9;
327 + box-shadow: inset 0 -3px #3385d9;
328 + }
329 +
330 + .btn-primary,
331 + .fc-button-primary,
332 + .woocommerce nav.woocommerce-pagination ul li a:focus,
333 + .woocommerce nav.woocommerce-pagination ul li a:hover,
334 + .woocommerce nav.woocommerce-pagination ul li span.current {
335 + color: #fff;
336 + background-color: #3385d9;
337 + border-color: #3385d9;
338 + }
339 + .btn-primary:focus, .btn-primary:focus:active,
340 + .fc-button-primary:focus,
341 + .fc-button-primary:focus:active {
342 + color: #fff;
343 + background-color: #3385d9;
344 + border-color: #3385d9;
345 + }
346 + .btn-primary:hover,
347 + .fc-button-primary:hover {
348 + color: #fff;
349 + background-color: #2b6fb4;
350 + border-color: #2b6fb4;
351 + }
352 + .btn-primary:active,
353 + .btn-primary:not(:disabled):not(:disabled):active,
354 + .fc-button-primary:active,
355 + .fc-button-primary:not(:disabled):not(:disabled):active {
356 + color: #fff;
357 + background-color: #2b6fb4;
358 + border-color: #2b6fb4;
359 + }
360 +
361 + .btn-secondary,
362 + .woocommerce span.onsale,
363 + .woocommerce ul.products li.product .button,
364 + .woocommerce #respond input#submit.alt,
365 + .woocommerce a.button.alt,
366 + .woocommerce button.button.alt,
367 + .woocommerce input.button.alt,
368 + .woocommerce #review_form #respond .form-submit input,
369 + .woocommerce #respond input#submit,
370 + .woocommerce a.button,
371 + .woocommerce button.button,
372 + .woocommerce input.button {
373 + color: #fff;
374 + background-color: #656565;
375 + border-color: #656565;
376 + }
377 + .woocommerce ul.products li.product .button:focus,
378 + .woocommerce ul.products li.product .button:active,
379 + .woocommerce #respond input#submit.alt:focus,
380 + .woocommerce a.button.alt:focus,
381 + .woocommerce button.button.alt:focus,
382 + .woocommerce input.button.alt:focus,
383 + .woocommerce #respond input#submit.alt:active,
384 + .woocommerce a.button.alt:active,
385 + .woocommerce button.button.alt:active,
386 + .woocommerce input.button.alt:active,
387 + .woocommerce #review_form #respond .form-submit input:focus,
388 + .woocommerce #review_form #respond .form-submit input:active,
389 + .woocommerce #respond input#submit:active,
390 + .woocommerce a.button:active,
391 + .woocommerce button.button:active,
392 + .woocommerce input.button:active,
393 + .woocommerce #respond input#submit:focus,
394 + .woocommerce a.button:focus,
395 + .woocommerce button.button:focus,
396 + .woocommerce input.button:focus {
397 + color: #fff;
398 + background-color: #656565;
399 + border-color: #656565;
400 + }
401 + .btn-secondary:hover,
402 + .woocommerce ul.products li.product .button:hover,
403 + .woocommerce #respond input#submit.alt:hover,
404 + .woocommerce a.button.alt:hover,
405 + .woocommerce button.button.alt:hover,
406 + .woocommerce input.button.alt:hover,
407 + .woocommerce #review_form #respond .form-submit input:hover,
408 + .woocommerce #respond input#submit:hover,
409 + .woocommerce a.button:hover,
410 + .woocommerce button.button:hover,
411 + .woocommerce input.button:hover {
412 + color: #fff;
413 + background-color: #333333;
414 + border-color: #333333;
415 + }
416 + .btn-secondary:active,
417 + .btn-secondary:not(:disabled):not(:disabled):active {
418 + color: #fff;
419 + background-color: #333333;
420 + border-color: #333333;
421 + }
422 +
423 + .btn-primary-outlined {
424 + color: #3385d9;
425 + background-color: transparent;
426 + border-color: #3385d9;
427 + }
428 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
429 + color: #3385d9;
430 + background-color: transparent;
431 + border-color: #3385d9;
432 + }
433 + .btn-primary-outlined:hover {
434 + color: #fff;
435 + background-color: #2b6fb4;
436 + border-color: #2b6fb4;
437 + }
438 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
439 + color: #3385d9;
440 + background-color: rgba(26, 26, 26, 0);
441 + border-color: #2b6fb4;
442 + }
443 +
444 + .btn-secondary-outlined {
445 + color: #656565;
446 + background-color: transparent;
447 + border-color: #656565;
448 + }
449 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
450 + color: #656565;
451 + background-color: transparent;
452 + border-color: #656565;
453 + }
454 + .btn-secondary-outlined:hover {
455 + color: #fff;
456 + background-color: #333333;
457 + border-color: #333333;
458 + }
459 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
460 + color: #656565;
461 + background-color: rgba(26, 26, 26, 0);
462 + border-color: #333333;
463 + }
464 +
465 + .btn-call {
466 + color: #656565;
467 + background-color: transparent;
468 + border-color: #656565;
469 + }
470 + .btn-call:focus, .btn-call:focus:active {
471 + color: #656565;
472 + background-color: transparent;
473 + border-color: #656565;
474 + }
475 + .btn-call:hover {
476 + color: #656565;
477 + background-color: rgba(26, 26, 26, 0);
478 + border-color: #333333;
479 + }
480 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
481 + color: #656565;
482 + background-color: rgba(26, 26, 26, 0);
483 + border-color: #333333;
484 + }
485 + .icon-delete .btn-loader:after{
486 + border-color: #3385d9 transparent #3385d9 transparent
487 + }
488 +
489 + .header-v1 {
490 + background-color: #004274;
491 + border-bottom: 1px solid #004274;
492 + }
493 +
494 + .header-v1 a.nav-link {
495 + color: #ffffff;
496 + }
497 +
498 + .header-v1 a.nav-link:hover,
499 + .header-v1 a.nav-link:active {
500 + color: #00aeff;
501 + background-color: rgba(255,255,255,0.2);
502 + }
503 + .header-desktop .main-nav .nav-link {
504 + letter-spacing: 0.0px;
505 + }
506 +
507 + .header-v2 .header-top,
508 + .header-v5 .header-top,
509 + .header-v2 .header-contact-wrap {
510 + background-color: #ffffff;
511 + }
512 +
513 + .header-v2 .header-bottom,
514 + .header-v5 .header-bottom {
515 + background-color: #004274;
516 + }
517 +
518 + .header-v2 .header-contact-wrap .header-contact-right, .header-v2 .header-contact-wrap .header-contact-right a, .header-contact-right a:hover, header-contact-right a:active {
519 + color: #004274;
520 + }
521 +
522 + .header-v2 .header-contact-left {
523 + color: #004274;
524 + }
525 +
526 + .header-v2 .header-bottom,
527 + .header-v2 .navbar-nav > li,
528 + .header-v2 .navbar-nav > li:first-of-type,
529 + .header-v5 .header-bottom,
530 + .header-v5 .navbar-nav > li,
531 + .header-v5 .navbar-nav > li:first-of-type {
532 + border-color: rgba(255,255,255,0.2);
533 + }
534 +
535 + .header-v2 a.nav-link,
536 + .header-v5 a.nav-link {
537 + color: #ffffff;
538 + }
539 +
540 + .header-v2 a.nav-link:hover,
541 + .header-v2 a.nav-link:active,
542 + .header-v5 a.nav-link:hover,
543 + .header-v5 a.nav-link:active {
544 + color: #00aeff;
545 + background-color: rgba(255,255,255,0.2);
546 + }
547 +
548 + .header-v2 .header-contact-right a:hover,
549 + .header-v2 .header-contact-right a:active,
550 + .header-v3 .header-contact-right a:hover,
551 + .header-v3 .header-contact-right a:active {
552 + background-color: transparent;
553 + }
554 +
555 + .header-v2 .header-social-icons a,
556 + .header-v5 .header-social-icons a {
557 + color: #004274;
558 + }
559 +
560 + .header-v3 .header-top {
561 + background-color: #004274;
562 + }
563 +
564 + .header-v3 .header-bottom {
565 + background-color: #004272;
566 + }
567 +
568 + .header-v3 .header-contact,
569 + .header-v3-mobile {
570 + background-color: #00aeef;
571 + color: #ffffff;
572 + }
573 +
574 + .header-v3 .header-bottom,
575 + .header-v3 .login-register,
576 + .header-v3 .navbar-nav > li,
577 + .header-v3 .navbar-nav > li:first-of-type {
578 + border-color: ;
579 + }
580 +
581 + .header-v3 a.nav-link,
582 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
583 + color: #ffffff;
584 + }
585 +
586 + .header-v3 a.nav-link:hover,
587 + .header-v3 a.nav-link:active {
588 + color: #00aeff;
589 + background-color: rgba(255,255,255,0.2);
590 + }
591 +
592 + .header-v3 .header-social-icons a {
593 + color: #FFFFFF;
594 + }
595 +
596 + .header-v4 {
597 + background-color: #ffffff;
598 + }
599 +
600 + .header-v4 a.nav-link {
601 + color: #000000;
602 + }
603 +
604 + .header-v4 a.nav-link:hover,
605 + .header-v4 a.nav-link:active {
606 + color: #3385d9;
607 + background-color: rgba(255,255,255,0.2);
608 + }
609 +
610 + .header-v6 .header-top {
611 + background-color: #00AEEF;
612 + }
613 +
614 + .header-v6 a.nav-link {
615 + color: #FFFFFF;
616 + }
617 +
618 + .header-v6 a.nav-link:hover,
619 + .header-v6 a.nav-link:active {
620 + color: #00aeff;
621 + background-color: rgba(255,255,255,0.2);
622 + }
623 +
624 + .header-v6 .header-social-icons a {
625 + color: #FFFFFF;
626 + }
627 +
628 + .header-mobile {
629 + background-color: #ffffff;
630 + }
631 + .header-mobile .toggle-button-left,
632 + .header-mobile .toggle-button-right {
633 + color: #000000;
634 + }
635 +
636 + .nav-mobile .logged-in-nav a,
637 + .nav-mobile .main-nav,
638 + .nav-mobile .navi-login-register {
639 + background-color: #ffffff;
640 + }
641 +
642 + .nav-mobile .logged-in-nav a,
643 + .nav-mobile .main-nav .nav-item .nav-item a,
644 + .nav-mobile .main-nav .nav-item a,
645 + .navi-login-register .main-nav .nav-item a {
646 + color: #000000;
647 + border-bottom: 1px solid #ffffff;
648 + background-color: #ffffff;
649 + }
650 +
651 + .nav-mobile .btn-create-listing,
652 + .navi-login-register .btn-create-listing {
653 + color: #fff;
654 + border: 1px solid #3385d9;
655 + background-color: #3385d9;
656 + }
657 +
658 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
659 + .navi-login-register .btn-create-listing:hover,
660 + .navi-login-register .btn-create-listing:active {
661 + color: #fff;
662 + border: 1px solid #3385d9;
663 + background-color: rgba(0, 174, 255, 0.65);
664 + }
665 +
666 + .header-transparent-wrap .header-v4 {
667 + background-color: transparent;
668 + border-bottom: 1px none rgba(255,255,255,0.3);
669 + }
670 +
671 + .header-transparent-wrap .header-v4 a {
672 + color: #ffffff;
673 + }
674 +
675 + .header-transparent-wrap .header-v4 a:hover,
676 + .header-transparent-wrap .header-v4 a:active {
677 + color: #3385d9;
678 + background-color: rgba(255, 255, 255, 0.1);
679 + }
680 +
681 + .main-nav .navbar-nav .nav-item .dropdown-menu,
682 + .login-register .login-register-nav li .dropdown-menu {
683 + background-color: rgba(255,255,255,0.95);
684 + }
685 +
686 + .login-register .login-register-nav li .dropdown-menu:before {
687 + border-left-color: rgba(255,255,255,0.95);
688 + border-top-color: rgba(255,255,255,0.95);
689 + }
690 +
691 + .main-nav .navbar-nav .nav-item .nav-item a,
692 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
693 + color: #3385d9;
694 + border-bottom: 1px solid #e6e6e6;
695 + }
696 +
697 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
698 + .main-nav .navbar-nav .nav-item .nav-item a:active,
699 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
700 + color: #2b6fb4;
701 + }
702 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
703 + .main-nav .navbar-nav .nav-item .nav-item a:active,
704 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
705 + background-color: rgba(0, 174, 255, 0.1);
706 + }
707 +
708 + .header-main-wrap .btn-create-listing {
709 + color: #3385d9;
710 + border: 1px solid #3385d9;
711 + background-color: #ffffff;
712 + }
713 +
714 + .header-main-wrap .btn-create-listing:hover,
715 + .header-main-wrap .btn-create-listing:active {
716 + color: rgba(255,255,255,1);
717 + border: 1px solid #2b6fb4;
718 + background-color: rgba(43,111,180,1);
719 + }
720 +
721 + .header-transparent-wrap .header-v4 .btn-create-listing {
722 + color: #ffffff;
723 + border: 1px solid #ffffff;
724 + background-color: rgba(255,255,255,0.2);
725 + }
726 +
727 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
728 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
729 + color: rgba(255,255,255,1);
730 + border: 1px solid #3385d9;
731 + background-color: rgba(51,133,217,1);
732 + }
733 +
734 + .header-transparent-wrap .logged-in-nav a,
735 + .logged-in-nav a {
736 + color: #000000;
737 + border-color: #e6e6e6;
738 + background-color: #FFFFFF;
739 + }
740 +
741 + .header-transparent-wrap .logged-in-nav a:hover,
742 + .header-transparent-wrap .logged-in-nav a:active,
743 + .logged-in-nav a:hover,
744 + .logged-in-nav a:active {
745 + color: #000000;
746 + background-color: rgba(204,204,204,0.15);
747 + border-color: #e6e6e6;
748 + }
749 +
750 + .form-control::-webkit-input-placeholder,
751 + .search-banner-wrap ::-webkit-input-placeholder,
752 + .advanced-search ::-webkit-input-placeholder,
753 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
754 + .overlay-search-advanced-module ::-webkit-input-placeholder {
755 + color: #a1a7a8;
756 + }
757 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
758 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
759 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
760 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
761 + color: #a1a7a8;
762 + }
763 + .form-control::placeholder,
764 + .search-banner-wrap ::-webkit-input-placeholder,
765 + .advanced-search ::-webkit-input-placeholder,
766 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
767 + .overlay-search-advanced-module ::-webkit-input-placeholder {
768 + color: #a1a7a8;
769 + }
770 +
771 + .search-banner-wrap ::-moz-placeholder,
772 + .advanced-search ::-moz-placeholder,
773 + .advanced-search-banner-wrap ::-moz-placeholder,
774 + .overlay-search-advanced-module ::-moz-placeholder {
775 + color: #a1a7a8;
776 + }
777 +
778 + .search-banner-wrap :-ms-input-placeholder,
779 + .advanced-search :-ms-input-placeholder,
780 + .advanced-search-banner-wrap ::-ms-input-placeholder,
781 + .overlay-search-advanced-module ::-ms-input-placeholder {
782 + color: #a1a7a8;
783 + }
784 +
785 + .search-banner-wrap :-moz-placeholder,
786 + .advanced-search :-moz-placeholder,
787 + .advanced-search-banner-wrap :-moz-placeholder,
788 + .overlay-search-advanced-module :-moz-placeholder {
789 + color: #a1a7a8;
790 + }
791 +
792 + .advanced-search .form-control,
793 + .advanced-search .bootstrap-select > .btn,
794 + .location-trigger,
795 + .vertical-search-wrap .form-control,
796 + .vertical-search-wrap .bootstrap-select > .btn,
797 + .step-search-wrap .form-control,
798 + .step-search-wrap .bootstrap-select > .btn,
799 + .advanced-search-banner-wrap .form-control,
800 + .advanced-search-banner-wrap .bootstrap-select > .btn,
801 + .search-banner-wrap .form-control,
802 + .search-banner-wrap .bootstrap-select > .btn,
803 + .overlay-search-advanced-module .form-control,
804 + .overlay-search-advanced-module .bootstrap-select > .btn,
805 + .advanced-search-v2 .advanced-search-btn,
806 + .advanced-search-v2 .advanced-search-btn:hover {
807 + border-color: #cccccc;
808 + }
809 +
810 + .advanced-search-nav,
811 + .search-expandable,
812 + .overlay-search-advanced-module {
813 + background-color: #FFFFFF;
814 + }
815 + .btn-search {
816 + color: #ffffff;
817 + background-color: #3385d9;
818 + border-color: #3385d9;
819 + }
820 + .btn-search:hover, .btn-search:active {
821 + color: #ffffff;
822 + background-color: #2b6fb4;
823 + border-color: #2b6fb4;
824 + }
825 + .advanced-search-btn {
826 + color: #666666;
827 + background-color: #ffffff;
828 + border-color: #dce0e0;
829 + }
830 + .advanced-search-btn:hover, .advanced-search-btn:active {
831 + color: #000000;
832 + background-color: #ffffff;
833 + border-color: #dce0e0;
834 + }
835 + .advanced-search-btn:focus {
836 + color: #666666;
837 + background-color: #ffffff;
838 + border-color: #dce0e0;
839 + }
840 + .search-expandable-label {
841 + color: #ffffff;
842 + background-color: #ff6e00;
843 + }
844 + .advanced-search-nav {
845 + padding-top: 10px;
846 + padding-bottom: 10px;
847 + }
848 + .features-list-wrap .control--checkbox,
849 + .features-list-wrap .control--radio,
850 + .range-text,
851 + .features-list-wrap .control--checkbox,
852 + .features-list-wrap .btn-features-list,
853 + .overlay-search-advanced-module .search-title,
854 + .overlay-search-advanced-module .overlay-search-module-close {
855 + color: #222222;
856 + }
857 + .advanced-search-half-map {
858 + background-color: #FFFFFF;
859 + }
860 + .advanced-search-half-map .range-text,
861 + .advanced-search-half-map .features-list-wrap .control--checkbox,
862 + .advanced-search-half-map .features-list-wrap .btn-features-list {
863 + color: #222222;
864 + }
865 +
866 + .save-search-btn {
867 + border-color: #28a745 ;
868 + background-color: #28a745 ;
869 + color: #ffffff ;
870 + }
871 + .save-search-btn:hover,

Diff truncated — file too large.