SPB Git

spb/lou-ka Public

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

HTML 99.7%

Expansion P3 — Estrie (6 connecteurs +24 annonces, 17 non-connectables)

terater (12) · alexcellence (4e Houzez, sous-classe Dynamic) · oxford ·
immeubles_pm (plogg vivant) · majestic (Granby) · lequerre (OBNL).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Simon-Pierre Boucher committed yesterday (Aug 9, 2026) parent b53b6e8

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

added louka/connectors/alexcellence.py +47 −0
@@ -0,0 +1,47 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/alexcellence.py : connecteur Immeubles Alexcellence
5 +# (immeublesalexcellence.com) — apparts à Sherbrooke, secteurs Université de
6 +# Sherbrooke et Mont-Bellevue (clientèle étudiante). WordPress + thème
7 +# immobilier Houzez : 4e membre de la famille Houzez de l'Estrie — hérite de
8 +# DynamicConnector (lesgestionsdynamic.com) et n'en redéfinit que les
9 +# constantes et le crochet de disponibilité. Archive /appartements-a-louer/
10 +# paginée (cartes item-listing-wrap v6 avec data-listid, data-images,
11 +# item-price « 1,010$/par mois »). Particularité locale : les étiquettes
12 +# label-status portent à la fois le statut (« À LOUER » / « LOUÉ ») et la
13 +# date de libération (« 1er août 2026 ») — les logements LOUÉ sont écartés,
14 +# la date devient la disponibilité. Fiches détail Houzez sans bloc adresse
15 +# structuré ni GPS : description + address.item-address seulement.
16 +# -----------------------------------------------------------------------------
17 +from __future__ import annotations
18 +
19 +import re
20 +
21 +from .dynamic import DynamicConnector
22 +
23 +
24 +class AlexcellenceConnector(DynamicConnector):
25 + source_id = "alexcellence"
26 + request_delay = 0.7
27 + max_pages = 6
28 + max_details = 40
29 +
30 + BASE = "https://immeublesalexcellence.com"
31 + LIST_PATH = "/appartements-a-louer/"
32 + CITY_DEFAULT = "Sherbrooke"
33 +
34 + def _card_availability(self, card, title: str) -> str:
35 + """Étiquettes label-status de la carte : « LOUÉ » fait écarter le
36 + logement (le parent filtre toute disponibilité contenant « loué ») ;
37 + sinon l'étiquette de date (« 1er août 2026 ») est la disponibilité."""
38 + labels = [re.sub(r"\s+", " ", el.get_text(" ", strip=True)).strip()
39 + for el in card.select(".label-status")]
40 + labels = [l for l in labels if l]
41 + for label in labels:
42 + if re.search(r"\blou[ée]s?\b", label, re.I):
43 + return label # « LOUÉ » -> carte écartée
44 + for label in labels:
45 + if not re.fullmatch(r"[àa] louer", label, re.I):
46 + return label # date de libération
47 + return ""
added louka/connectors/immeubles_pm.py +198 −0
@@ -0,0 +1,198 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/immeubles_pm.py : connecteur Les Immeubles PM (lesimmeublespm.com)
5 +# Parc familial de Sherbrooke (Fleurimont, Sherbrooke Est) — 6 immeubles.
6 +# Plateforme « plogg solutions » (même famille que appartementsgranby.com /
7 +# godbout, resté non connectable faute d'unités libres) : la page d'accueil
8 +# rend côté serveur le bloc #listing-appart — une carte .box par immeuble
9 +# AVEC UNITÉS LIBRES seulement, contenant un tableau Grandeur / Loyer
10 +# (« à partir de 1475$ ») / Disponible + lien « Consulter la fiche ».
11 +# La recherche (form-manager.php) est fermée aux robots, mais les fiches
12 +# /appartement/<slug>/ restent servies : self.detail (cache BD) y lit le
13 +# tableau complet (rue, ville, quartier, superficie, étage, salles de bain,
14 +# état), la description (div.extrait) et la galerie. external_id = slug de
15 +# la fiche (stable, un par unité-type d'immeuble).
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, strip_accents
25 +from .base import BaseConnector
26 +
27 +BASE = "https://www.lesimmeublespm.com"
28 +
29 +_SIZE_SUFFIX = re.compile(r"-\d{2,4}x\d{2,4}(?=\.(?:jpg|jpeg|png|webp)$)", re.I)
30 +
31 +
32 +def _clean_unit_type(raw: str) -> str:
33 + ut = normalize_unit_type(raw or "")
34 + if re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison", ut or ""):
35 + return ut
36 + return ""
37 +
38 +
39 +class ImmeublesPMConnector(BaseConnector):
40 + source_id = "immeubles_pm"
41 + request_delay = 0.7
42 + max_details = 25 # garde-fou fiches détail (vraies requêtes)
43 +
44 + def fetch(self) -> list[Listing]:
45 + html = self.get(BASE + "/").text
46 + soup = BeautifulSoup(html, "html.parser")
47 +
48 + listings: dict[str, Listing] = {}
49 + listing_root = soup.select_one("#listing-appart") or soup
50 + for box in listing_root.select("div.box"):
51 + try:
52 + self._parse_box(box, listings)
53 + except Exception:
54 + continue
55 +
56 + # fiches détail (cache BD) : adresse, superficie, étage, description…
57 + self._fetched = 0
58 + for lst in listings.values():
59 + card_key = hashlib.sha1(
60 + f"{lst.title}|{lst.price_label}|{lst.availability}"
61 + .encode("utf-8")).hexdigest()
62 + try:
63 + payload = self.detail(lst.external_id, card_key,
64 + lambda u=lst.url: self._fetch_detail(u))
65 + except Exception:
66 + continue
67 + self._apply_detail(lst, payload)
68 + return list(listings.values())
69 +
70 + # -- carte immeuble de l'accueil (tableau des unités libres) -----------------
71 + def _parse_box(self, box, listings: dict[str, Listing]) -> None:
72 + title_el = box.select_one(".box-content-title")
73 + building = title_el.get_text(" ", strip=True) if title_el else ""
74 + quartier = ""
75 + q_el = box.select_one(".box-content-quartier")
76 + if q_el:
77 + quartier = re.sub(r"^\s*Quartier\s*:?\s*", "",
78 + q_el.get_text(" ", strip=True), flags=re.I).strip()
79 +
80 + photo = ""
81 + ph_el = box.select_one(".photo-wrapper[style]")
82 + if ph_el:
83 + m = re.search(r"url\('([^']+)'\)", ph_el.get("style") or "")
84 + if m:
85 + photo = _SIZE_SUFFIX.sub("", m.group(1))
86 +
87 + # tableau bureau (les blocs mobiles dupliquent les mêmes unités)
88 + for row in box.select(".hide-on-mobile table tbody tr"):
89 + link = row.select_one('a[href*="/appartement/"]')
90 + if not link:
91 + continue
92 + url = link["href"]
93 + m = re.search(r"/appartement/([^/?#]+)", url)
94 + if not m:
95 + continue
96 + ext_id = m.group(1)
97 + if ext_id in listings:
98 + continue
99 + cells = row.find_all("td")
100 + grandeur = cells[0].get_text(" ", strip=True) if cells else ""
101 + price_label = re.sub(r"\s+", " ", cells[1].get_text(
102 + " ", strip=True)).strip() if len(cells) > 1 else ""
103 + availability = re.sub(r"\s+", " ", cells[2].get_text(
104 + " ", strip=True)).strip() if len(cells) > 2 else ""
105 + if re.search(r"complet|lou[ée]\b", availability, re.I):
106 + continue
107 +
108 + title = f"{grandeur}{building}".strip(" —")
109 + listings[ext_id] = Listing(
110 + source=self.source_id,
111 + external_id=ext_id,
112 + url=url,
113 + title=re.sub(r"\s+", " ", title).strip(),
114 + address=building, # nom d'immeuble = adresse civique
115 + sector=quartier,
116 + city="Sherbrooke", # précisé par la fiche (champ Ville)
117 + unit_type=_clean_unit_type(grandeur),
118 + price=parse_price(price_label),
119 + price_label=price_label,
120 + availability=availability,
121 + images=[photo] if photo else [],
122 + )
123 +
124 + # -- fiche /appartement/<slug>/ -----------------------------------------------
125 + def _fetch_detail(self, url: str) -> dict:
126 + if self._fetched >= self.max_details:
127 + raise RuntimeError("budget de fiches détail atteint")
128 + self._fetched += 1
129 + html = self.get(url).text
130 + soup = BeautifulSoup(html, "html.parser")
131 + out: dict = {}
132 +
133 + # tableau infos-appart : paires <td.sub-title><b>Champ</b></td><td>valeur
134 + pairs: dict[str, str] = {}
135 + for row in soup.select(".infos-appart table tr"):
136 + cells = row.find_all("td")
137 + if len(cells) < 2:
138 + continue
139 + lab = strip_accents(cells[0].get_text(" ", strip=True).lower())
140 + val = re.sub(r"\s+", " ", cells[1].get_text(" ", strip=True)).strip()
141 + val = re.sub(r"\bpi\s*2\b", "pi²", val) # « 1510 pi<sup>2</sup> »
142 + if lab and val:
143 + pairs[lab] = val
144 + if pairs.get("rue"):
145 + out["address"] = pairs["rue"]
146 + if pairs.get("ville"):
147 + out["city"] = pairs["ville"]
148 + if pairs.get("quartier"):
149 + out["sector"] = pairs["quartier"]
150 + if pairs.get("grandeur"):
151 + out["grandeur"] = pairs["grandeur"]
152 + if pairs.get("etat"):
153 + out["etat"] = pairs["etat"]
154 + amenities = []
155 + for lab, label in [("superficie", "Superficie"),
156 + ("etage", "Étage"),
157 + ("nombre de salle de bain", "Salle(s) de bain")]:
158 + if pairs.get(lab):
159 + amenities.append(f"{label} : {pairs[lab]}")
160 + out["amenities"] = amenities
161 +
162 + # description : bloc div.extrait (texte + liste d'inclusions)
163 + ext = soup.select_one("div.extrait")
164 + if ext:
165 + txt = ext.get_text("\n", strip=True)
166 + out["description"] = re.sub(r"[ \t]+", " ", txt).strip()[:1500]
167 +
168 + # galerie : photos jpg des téléversements (icônes png exclues)
169 + images: list[str] = []
170 + for u in re.findall(
171 + r"https://www\.lesimmeublespm\.com/wp-content/uploads/"
172 + r"[^\"'()\s]+\.(?:jpg|jpeg|webp)", html, re.I):
173 + u = _SIZE_SUFFIX.sub("", u)
174 + if u not in images:
175 + images.append(u)
176 + out["images"] = images[:30]
177 + return out
178 +
179 + def _apply_detail(self, lst: Listing, d: dict) -> None:
180 + if not d:
181 + return
182 + if d.get("address"):
183 + lst.address = d["address"]
184 + if d.get("city"):
185 + lst.city = d["city"]
186 + if d.get("sector") and not lst.sector:
187 + lst.sector = d["sector"]
188 + if not lst.unit_type and d.get("grandeur"):
189 + lst.unit_type = _clean_unit_type(d["grandeur"])
190 + if not lst.availability and d.get("etat"):
191 + lst.availability = d["etat"]
192 + if d.get("amenities"):
193 + lst.amenities = list(dict.fromkeys(lst.amenities + d["amenities"]))
194 + if d.get("description"):
195 + lst.description = d["description"]
196 + if d.get("images"):
197 + merged = list(dict.fromkeys(d["images"] + lst.images))
198 + lst.images = merged[:30]
added louka/connectors/lequerre.py +122 −0
@@ -0,0 +1,122 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/lequerre.py : connecteur Habitations L'Équerre
5 +# (habitationslequerre.com) — OBNL d'habitation de Sherbrooke (34 immeubles
6 +# abordables, logement locatif privé consultable, pas du HLM). WordPress,
7 +# mais la page /immeubles/ est un gabarit maison (Tailwind) rendu serveur :
8 +# une <section class="building-section"> par immeuble vedette, dont le
9 +# data-category vaut « disponibles » quand l'immeuble a des unités à louer —
10 +# badge « DISPONIBLE MAINTENANT - 735$ / mois », h2 (type de logements),
11 +# h3 (adresse civique), paragraphe descriptif et visuel en arrière-plan.
12 +# Seules les sections « disponibles » deviennent des annonces (granularité
13 +# immeuble : le site ne publie pas d'unités individuelles datées).
14 +# external_id = version normalisée de l'adresse (stable).
15 +# -----------------------------------------------------------------------------
16 +from __future__ import annotations
17 +
18 +import re
19 +import unicodedata
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://habitationslequerre.com"
27 +LIST_URL = f"{BASE}/immeubles/"
28 +
29 +
30 +def _slugify(text: str) -> str:
31 + t = unicodedata.normalize("NFKD", text).encode("ascii", "ignore").decode()
32 + t = re.sub(r"[^a-z0-9]+", "-", t.lower()).strip("-")
33 + return t or "immeuble"
34 +
35 +
36 +def _clean_unit_type(raw: str) -> str:
37 + if re.search(r"\bstudios?\b", raw or "", re.I):
38 + return "Studio"
39 + ut = normalize_unit_type(raw or "")
40 + if re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison", ut or ""):
41 + return ut
42 + return ""
43 +
44 +
45 +class LequerreConnector(BaseConnector):
46 + source_id = "lequerre"
47 + request_delay = 0.7
48 +
49 + def fetch(self) -> list[Listing]:
50 + html = self.get(LIST_URL).text
51 + soup = BeautifulSoup(html, "html.parser")
52 +
53 + listings: dict[str, Listing] = {}
54 + for sec in soup.select("section.building-section"):
55 + cats = (sec.get("data-category") or "").lower()
56 + if "disponibles" not in cats:
57 + continue # immeuble sans unité à louer actuellement
58 + try:
59 + lst = self._parse_section(sec)
60 + except Exception:
61 + continue
62 + if lst and lst.external_id not in listings:
63 + listings[lst.external_id] = lst
64 + return list(listings.values())
65 +
66 + def _parse_section(self, sec) -> Listing | None:
67 + h2 = sec.select_one("h2")
68 + h3 = sec.select_one("h3")
69 + title = re.sub(r"\s+", " ", h2.get_text(" ", strip=True)).strip() \
70 + if h2 else ""
71 + address_full = re.sub(r"\s+", " ", h3.get_text(" ", strip=True)).strip() \
72 + if h3 else ""
73 + if not (title or address_full):
74 + return None
75 +
76 + # « 14, rue Jean-Maurice, Sherbrooke » -> adresse + ville
77 + address, city = address_full, ""
78 + m = re.match(r"^(.*),\s*(Sherbrooke)\s*$", address_full, re.I)
79 + if m:
80 + address, city = m.group(1).strip(), m.group(2)
81 +
82 + # badge « DISPONIBLE MAINTENANT - 735$ / mois »
83 + badge = ""
84 + for div in sec.find_all("div"):
85 + t = div.get_text(" ", strip=True)
86 + if re.match(r"^\s*DISPONIBLE", t or "", re.I) and len(t) < 90:
87 + badge = re.sub(r"\s+", " ", t).strip()
88 + break
89 + availability, price_label = badge, ""
90 + if "-" in badge:
91 + availability, _, price_label = (p.strip() for p in
92 + badge.partition("-"))
93 +
94 + # paragraphe descriptif
95 + description = ""
96 + p = sec.select_one("p")
97 + if p:
98 + description = re.sub(r"\s+", " ",
99 + p.get_text(" ", strip=True)).strip()[:1500]
100 +
101 + # visuel : background-image de la colonne photo
102 + images: list[str] = []
103 + bg = sec.select_one("[style*=background-image]")
104 + if bg:
105 + m_img = re.search(r"url\('([^']+)'\)", bg.get("style") or "")
106 + if m_img and m_img.group(1).startswith("http"):
107 + images = [m_img.group(1)]
108 +
109 + return Listing(
110 + source=self.source_id,
111 + external_id=_slugify(address or title),
112 + url=LIST_URL,
113 + title=title or address_full,
114 + address=address,
115 + city=city,
116 + unit_type=_clean_unit_type(title),
117 + price=parse_price(price_label),
118 + price_label=price_label,
119 + availability=availability,
120 + description=description,
121 + images=images,
122 + )
added louka/connectors/majestic.py +140 −0
@@ -0,0 +1,140 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/majestic.py : connecteur Le Majestic du Lac Boivin
5 +# (majesticlacboivin.ca) — 1 complexe de condos locatifs haut de gamme à
6 +# Granby (150 rue de la Lobélie, adresse affichée sur la page « Nous
7 +# joindre », schema.org PostalAddress). Site custom (non-WordPress) : la
8 +# page /fr/condos-locatifs.html rend côté serveur la liste des unités
9 +# libres (div.uniteItem[data-id] dans .listeResultatUnite) avec unité,
10 +# étage, chambres, salles de bain, superficie, loyer, disponibilité, plan
11 +# PDF et bouton « Info » — les unités réservées portent span.nonDispo
12 +# (« Réservé ») et sont écartées. Les inclusions/avantages de l'immeuble
13 +# (listes .services-liste) complètent les commodités. external_id =
14 +# data-id de l'unité (identifiant interne stable). Le loyer est parfois
15 +# affiché sans « $ » (« 1795 ») : la colonne étant explicitement « Loyer »,
16 +# le montant est extrait tel quel. robots.txt : /inc/, /Gestion/ et /auto/
17 +# interdits — la page des condos est permise.
18 +# -----------------------------------------------------------------------------
19 +from __future__ import annotations
20 +
21 +import re
22 +
23 +from bs4 import BeautifulSoup
24 +
25 +from ..schema import Listing
26 +from .base import BaseConnector
27 +
28 +BASE = "https://www.majesticlacboivin.ca"
29 +LIST_URL = f"{BASE}/fr/condos-locatifs.html"
30 +
31 +# adresse du complexe, telle qu'affichée sur /fr/nous-joindre.html
32 +ADDRESS = "150 rue de la Lobélie"
33 +CITY = "Granby"
34 +
35 +
36 +def _col_value(item, label: str) -> str:
37 + """Valeur d'une colonne uniteItemCol dont le titre est `label`."""
38 + for col in item.select(".uniteItemCol"):
39 + t = col.select_one(".uniteItemTitre")
40 + if t and t.get_text(" ", strip=True).lower() == label.lower():
41 + val = col.get_text(" ", strip=True)
42 + val = re.sub(re.escape(t.get_text(" ", strip=True)), "", val,
43 + count=1).strip()
44 + val = re.sub(r"\s+", " ", val)
45 + return re.sub(r"\bpi\s*2\b", "pi²", val) # « 735 pi<sup>2</sup> »
46 + return ""
47 +
48 +
49 +class MajesticConnector(BaseConnector):
50 + source_id = "majestic"
51 + request_delay = 0.7
52 +
53 + def fetch(self) -> list[Listing]:
54 + html = self.get(LIST_URL).text
55 + soup = BeautifulSoup(html, "html.parser")
56 +
57 + # inclusions et avantages de l'immeuble (commodités communes)
58 + building_amenities: list[str] = []
59 + for ul in soup.select("ul.services-liste"):
60 + for li in ul.select("li.services-liste_item"):
61 + t = re.sub(r"\s+", " ", li.get_text(" ", strip=True)).strip()
62 + if t and t not in building_amenities:
63 + building_amenities.append(t)
64 +
65 + listings: list[Listing] = []
66 + for item in soup.select(".listeResultatUnite .uniteItem[data-id]"):
67 + try:
68 + lst = self._parse_unit(item, building_amenities)
69 + except Exception:
70 + continue
71 + if lst and lst.external_id not in {l.external_id for l in listings}:
72 + listings.append(lst)
73 + return listings
74 +
75 + def _parse_unit(self, item, building_amenities: list[str]) -> Listing | None:
76 + # unités réservées : bouton remplacé par span.nonDispo « Réservé »
77 + if item.select_one(".nonDispo"):
78 + return None
79 + ext_id = str(item.get("data-id") or "").strip()
80 + if not ext_id:
81 + return None
82 +
83 + # « Unité 308 » : première colonne, sans titre
84 + unit_no = ""
85 + first = item.select_one(".uniteItemCol.c2 .uniteItemValeur")
86 + if first:
87 + unit_no = re.sub(r"\s+", " ", first.get_text(" ", strip=True)).strip()
88 +
89 + etage = _col_value(item, "Étage")
90 + chambres = _col_value(item, "Chambres")
91 + sdb = _col_value(item, "Salles de bain")
92 + superficie = _col_value(item, "Superficie") # « 735 pi 2 »
93 + loyer = _col_value(item, "Loyer") # « 1695 $ » / « 1795 »
94 + dispo = _col_value(item, "Disponibilité")
95 + dispo = re.sub(r"\b(\d+)\s+(er|re|e)\b", r"\1\2", dispo) # « 1 er » -> « 1er »
96 +
97 + # colonne « Loyer » explicite : montant extrait même sans « $ »
98 + price = None
99 + m = re.search(r"(\d[\d\s]{2,7})", loyer.replace(",", " "))
100 + if m:
101 + try:
102 + val = float(m.group(1).replace(" ", ""))
103 + if 100 <= val <= 20000:
104 + price = val
105 + except ValueError:
106 + pass
107 +
108 + amenities = []
109 + for label, val in [("Chambres", chambres), ("Salle(s) de bain", sdb),
110 + ("Superficie", superficie), ("Étage", etage)]:
111 + if val:
112 + amenities.append(f"{label} : {val}")
113 + amenities += [a for a in building_amenities if a not in amenities]
114 +
115 + area = None
116 + m_area = re.search(r"(\d{3,5})\s*pi", superficie)
117 + if m_area:
118 + area = float(m_area.group(1))
119 +
120 + plan = item.select_one("a.planPDF[href]")
121 + details = {}
122 + if plan:
123 + details["plan_pdf"] = f"{BASE}/{plan['href'].lstrip('/')}"
124 +
125 + title = f"Le Majestic du Lac Boivin — {unit_no}" if unit_no \
126 + else "Le Majestic du Lac Boivin"
127 + return Listing(
128 + source=self.source_id,
129 + external_id=ext_id,
130 + url=LIST_URL,
131 + title=title,
132 + address=ADDRESS,
133 + city=CITY,
134 + price=price,
135 + price_label=loyer,
136 + availability=dispo,
137 + area_sqft=area,
138 + amenities=amenities[:25],
139 + details=details,
140 + )
added louka/connectors/oxford.py +158 −0
@@ -0,0 +1,158 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/oxford.py : connecteur Appartements Oxford (appartoxford.com)
5 +# Complexe locatif de Lennoxville (Sherbrooke), près de l'Université
6 +# Bishop's. WordPress + Elementor : une fiche par TYPE d'unité (2½ tout
7 +# inclus, 3½, 4½, 5½), listées dans le menu « Logements » de la page
8 +# d'accueil. Chaque fiche affiche le prix (« À partir de 760$ / par mois »)
9 +# et, seulement quand des unités sont libres, un encart de disponibilité
10 +# (« 1 unité disponible 1er octobre 2026 », widget Elementor à visibilité
11 +# conditionnelle) : les fiches SANS cet encart ne sont pas des annonces
12 +# courantes et sont écartées. Caractéristiques (listes à pictos), description
13 +# et galerie extraites de la fiche. Peu de requêtes (accueil + ~4 fiches) :
14 +# pas de cache détail nécessaire — la disponibilité doit être relue à chaque
15 +# synchronisation.
16 +# -----------------------------------------------------------------------------
17 +from __future__ import annotations
18 +
19 +import re
20 +
21 +from urllib.parse import unquote
22 +
23 +from bs4 import BeautifulSoup
24 +
25 +from ..schema import Listing, normalize_unit_type
26 +from .base import BaseConnector
27 +
28 +BASE = "https://appartoxford.com"
29 +
30 +# variantes redimensionnées WordPress -> pleine taille
31 +_SIZE_SUFFIX = re.compile(r"-\d{2,4}x\d{2,4}(?=\.(?:jpg|jpeg|png|webp)$)", re.I)
32 +
33 +# « 1 unité disponible 1er octobre 2026 » / « 2 unités disponibles maintenant »
34 +_AVAIL_RE = re.compile(r"(\d+|une?)\s+unit[ée]s?\s+disponibles?\b", re.I)
35 +_NO_AVAIL_RE = re.compile(r"aucune\s+unit[ée]", re.I)
36 +
37 +# bruit d'en-tête dans les listes à pictos (coordonnées du site)
38 +_HEADER_NOISE_RE = re.compile(r"\+?1?\s?8\d{2}[-\s]\d{3}|Lennoxville,\s*Sherbrooke",
39 + re.I)
40 +
41 +_MAX_FICHES = 12 # garde-fou (le menu compte ~4 fiches)
42 +
43 +
44 +def _clean_unit_type(raw: str) -> str:
45 + ut = normalize_unit_type(raw or "")
46 + if re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison", ut or ""):
47 + return ut
48 + return ""
49 +
50 +
51 +class OxfordConnector(BaseConnector):
52 + source_id = "oxford"
53 + request_delay = 0.7
54 +
55 + def fetch(self) -> list[Listing]:
56 + home = self.get(BASE + "/").text
57 + soup = BeautifulSoup(home, "html.parser")
58 +
59 + # fiches du menu « Logements » : liens /appartement/<slug>/
60 + urls: list[str] = []
61 + for a in soup.select('a[href*="/appartement/"]'):
62 + url = (a.get("href") or "").split("#")[0]
63 + if not url.startswith("http"):
64 + url = BASE + url
65 + if url.rstrip("/") not in [u.rstrip("/") for u in urls]:
66 + urls.append(url)
67 +
68 + listings: dict[str, Listing] = {}
69 + for url in urls[:_MAX_FICHES]:
70 + try:
71 + lst = self._parse_fiche(url)
72 + except Exception:
73 + continue
74 + if lst and lst.external_id not in listings:
75 + listings[lst.external_id] = lst
76 + return list(listings.values())
77 +
78 + # -- fiche type d'unité -------------------------------------------------------
79 + def _parse_fiche(self, url: str) -> Listing | None:
80 + resp = self.get(url)
81 + url = resp.url or url # les anciens slugs redirigent (301)
82 + m = re.search(r"/appartement/([^/?#]+)", url)
83 + if not m:
84 + return None
85 + # slug décodé + minuscule : « tres-grand-4½-a-louer » (dédoublonne
86 + # les variantes d'encodage %C2%BD / %c2%bd)
87 + ext_id = unquote(m.group(1)).lower()
88 +
89 + html = resp.text
90 + soup = BeautifulSoup(html, "html.parser")
91 + text = soup.get_text(" ", strip=True)
92 +
93 + # encart de disponibilité : widget texte Elementor à visibilité
94 + # conditionnelle, présent seulement si des unités sont libres
95 + availability = ""
96 + for w in soup.select(".elementor-widget-text-editor"):
97 + t = re.sub(r"\s+", " ", w.get_text(" ", strip=True)).strip()
98 + if _AVAIL_RE.match(t) and len(t) < 90:
99 + availability = t
100 + break
101 + if not availability or _NO_AVAIL_RE.search(availability):
102 + return None # pas d'unité libre = pas d'annonce
103 +
104 + h1 = soup.select_one("h1")
105 + title = re.sub(r"\s+", " ", h1.get_text(" ", strip=True)).strip() \
106 + if h1 else ext_id
107 +
108 + # prix : « À partir de | 1000$ / par mois » (widgets bannière)
109 + price_label = ""
110 + m_price = re.search(
111 + r"À partir de\s*(\d[\d\s,]*\$\s*(?:/\s*par mois|/\s*mois)?)", text)
112 + if m_price:
113 + price_label = "À partir de " + re.sub(
114 + r"\s+", " ", m_price.group(1)).strip()
115 +
116 + # caractéristiques : listes à pictos Elementor (sans les coordonnées
117 + # affichées dans l'en-tête du site)
118 + amenities: list[str] = []
119 + for li in soup.select(".elementor-icon-list-text"):
120 + t = re.sub(r"\s+", " ", li.get_text(" ", strip=True)).strip()
121 + if (t and len(t) < 90 and t not in amenities
122 + and not _HEADER_NOISE_RE.search(t)):
123 + amenities.append(t)
124 +
125 + # description : contenu de l'article (widget theme-post-content de la
126 + # section Caractéristiques)
127 + description = ""
128 + for w in soup.select(".elementor-widget-theme-post-content, "
129 + ".elementor-widget-text-editor"):
130 + t = re.sub(r"\s+", " ", w.get_text(" ", strip=True)).strip()
131 + if len(t) > 150 and not _AVAIL_RE.match(t):
132 + description = t[:1500]
133 + break
134 +
135 + # galerie : photos des téléversements (logos/pictos exclus)
136 + images: list[str] = []
137 + for u in re.findall(
138 + r"https://appartoxford\.com/wp-content/uploads/[^\"'()\s]+"
139 + r"\.(?:jpg|jpeg|webp)", html, re.I):
140 + u = _SIZE_SUFFIX.sub("", u)
141 + if u not in images and not re.search(r"logo|icon", u, re.I):
142 + images.append(u)
143 +
144 + return Listing(
145 + source=self.source_id,
146 + external_id=ext_id,
147 + url=url,
148 + title=title,
149 + address="",
150 + sector="Lennoxville", # affiché en en-tête du site
151 + city="Sherbrooke",
152 + unit_type=_clean_unit_type(title),
153 + price_label=price_label,
154 + availability=availability,
155 + description=description,
156 + amenities=amenities[:25],
157 + images=images[:30],
158 + )
added louka/connectors/terater.py +243 −0
@@ -0,0 +1,243 @@
1 +# -----------------------------------------------------------------------------
2 +# Lou-Ka — Agrégateur de logements à louer (province de Québec)
3 +# Auteur : Simon-Pierre Boucher — contact@spboucher.ai
4 +# connectors/terater.py : connecteur Les Constructions Tèratèr (terater.ca)
5 +# Constructeur-locateur de l'Estrie : Val-Joli/Windsor, Sherbrooke (Nord,
6 +# Fleurimont, Seyval), Orford, Cookshire-Eaton. WordPress + thème enfant
7 +# Avada avec blocs maison (même famille de balisage que morin.py) : archive
8 +# /a-louer/ rendue serveur — cartes div.landing_modele_block_item complètes
9 +# (bandeau de disponibilité coloré, type « 3 ½ », adresse, secteur/ville,
10 +# chambres/salle de bain/étage/stationnement/animaux, prix « par mois »).
11 +# La fiche (via self.detail, cache BD) ajoute la superficie, la liste des
12 +# inclusions et la galerie photos. Les logements loués n'apparaissent pas
13 +# dans l'archive (bandeau « Loué » absent au moment de l'écriture) mais on
14 +# filtre par prudence.
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://terater.ca"
27 +LIST_URL = f"{BASE}/a-louer/"
28 +
29 +# variantes redimensionnées WordPress (-600x397.jpg) -> pleine taille
30 +_SIZE_SUFFIX = re.compile(r"-\d{2,4}x\d{2,4}(?=\.(?:jpg|jpeg|png|webp)$)", re.I)
31 +
32 +# villes réelles desservies (jamais devinées) + secteurs de Sherbrooke connus
33 +_KNOWN_CITIES = [
34 + "Sherbrooke", "Windsor", "Val-Joli", "Orford", "Cookshire-Eaton",
35 + "East Angus", "Magog", "Richmond", "Ascot Corner", "Saint-Denis-de-Brompton",
36 +]
37 +_SHERBROOKE_SECTORS = [
38 + "Fleurimont", "Rock Forest", "Lennoxville", "Mont-Bellevue",
39 + "Jacques-Cartier", "Brompton", "Saint-Élie", "St-Élie",
40 +]
41 +
42 +# espaces non résidentiels dans le champ « type » de la carte
43 +_NON_RESIDENTIAL_RE = re.compile(
44 + r"commercial|bureau|local|garage|entrep[oô]t|rangement", re.I)
45 +
46 +
47 +def _city_sector(raw: str) -> tuple[str, str]:
48 + """« Val-Joli » -> (Val-Joli, '') ; « Nord de Sherbrooke » ->
49 + (Sherbrooke, Nord de Sherbrooke) ; « Fleurimont » -> (Sherbrooke,
50 + Fleurimont). Ville vide si le secteur est inconnu (rien d'inventé)."""
51 + t = re.sub(r"\s+", " ", raw or "").strip()
52 + if not t:
53 + return "", ""
54 + for city in _KNOWN_CITIES:
55 + if t.lower() == city.lower():
56 + return city, ""
57 + if re.search(r"\bsherbrooke\b", t, re.I):
58 + return "Sherbrooke", t
59 + for sec in _SHERBROOKE_SECTORS:
60 + if t.lower() == sec.lower():
61 + return "Sherbrooke", t
62 + return "", t
63 +
64 +
65 +def _clean_unit_type(raw: str) -> str:
66 + """normalize_unit_type seulement si le motif est net (« 3 ½ », studio…)."""
67 + ut = normalize_unit_type(raw or "")
68 + if re.fullmatch(r"\d½\+?|\+|Studio|Loft|Chambre|Maison", ut or ""):
69 + return ut
70 + return ""
71 +
72 +
73 +class TeraterConnector(BaseConnector):
74 + source_id = "terater"
75 + request_delay = 0.7
76 + max_details = 30 # garde-fou fiches détail (vraies requêtes)
77 +
78 + def fetch(self) -> list[Listing]:
79 + html = self.get(LIST_URL).text
80 + soup = BeautifulSoup(html, "html.parser")
81 +
82 + listings: dict[str, Listing] = {}
83 + for card in soup.select("div.landing_modele_block_item"):
84 + try:
85 + self._parse_card(card, listings)
86 + except Exception:
87 + continue
88 +
89 + # fiches détail (cache BD) : superficie, inclusions, galerie
90 + self._fetched = 0
91 + for lst in listings.values():
92 + card_key = hashlib.sha1(
93 + f"{lst.title}|{lst.price_label}|{lst.availability}"
94 + .encode("utf-8")).hexdigest()
95 + try:
96 + payload = self.detail(lst.external_id, card_key,
97 + lambda u=lst.url: self._fetch_detail(u))
98 + except Exception:
99 + continue
100 + self._apply_detail(lst, payload)
101 + return list(listings.values())
102 +
103 + # -- carte de l'archive /a-louer/ ------------------------------------------
104 + def _parse_card(self, card, listings: dict[str, Listing]) -> None:
105 + link = card.select_one("a.landing_modele_block_item_link[href]")
106 + if not link:
107 + return
108 + url = link["href"]
109 + m = re.search(r"/a-louer/([^/]+)/?", url)
110 + if not m:
111 + return
112 + ext_id = m.group(1)
113 + if ext_id in listings or "formulaire" in ext_id:
114 + return
115 +
116 + # bandeau(x) de disponibilité : « Libre immédiatement », « Juillet
117 + # 2026 »… — on écarte tout logement marqué loué
118 + tags = [re.sub(r"\s+", " ", t.get_text(" ", strip=True)).strip()
119 + for t in card.select(".landing_modele_item_tag_item")]
120 + tags = [t for t in tags if t]
121 + if any(re.search(r"\blou[ée]s?\b", t, re.I) for t in tags):
122 + return
123 + availability = tags[0] if tags else ""
124 +
125 + # type d'espace (« Appartement », « Maison »…) : écarter le non
126 + # résidentiel (locaux commerciaux, garages…)
127 + category = ""
128 + cat_el = card.select_one(".landing_modele_block_item_type")
129 + if cat_el:
130 + category = cat_el.get_text(" ", strip=True)
131 + if _NON_RESIDENTIAL_RE.search(category):
132 + return
133 +
134 + piece_el = card.select_one(".landing_modele_piece")
135 + piece = piece_el.get_text(" ", strip=True) if piece_el else ""
136 +
137 + addr_el = card.select_one(".landing_modele_block_item_adresse")
138 + address = re.sub(r"\s+", " ", addr_el.get_text(" ", strip=True)).strip() \
139 + if addr_el else ""
140 +
141 + sect_el = card.select_one(".landing_modele_block_item_secteur div")
142 + city, sector = _city_sector(
143 + sect_el.get_text(" ", strip=True) if sect_el else "")
144 +
145 + # prix : « 1 075$ » + « par mois »
146 + price_el = card.select_one(".landing_modele_price")
147 + after_el = card.select_one(".landing_modele_price_after")
148 + price_label = ""
149 + if price_el:
150 + price_label = price_el.get_text(" ", strip=True)
151 + if after_el:
152 + price_label += " " + after_el.get_text(" ", strip=True)
153 +
154 + # pictos : chambres / salle de bain / étage / stationnement / animaux
155 + amenities: list[str] = []
156 + for cls, label in [("landing_modele_item_bed", "Chambres"),
157 + ("landing_modele_item_bath", "Salle(s) de bain"),
158 + ("landing_modele_etage", "Étage"),
159 + ("landing_modele_stationnement", "Stationnement")]:
160 + el = card.select_one(f".{cls} span")
161 + if el:
162 + val = re.sub(r"\s+", " ", el.get_text(" ", strip=True)).strip()
163 + if val:
164 + amenities.append(f"{label} : {val}")
165 + animals_el = card.select_one(".landing_modele_animaux .animaux_note")
166 + if animals_el:
167 + note = animals_el.get_text(" ", strip=True)
168 + if note:
169 + amenities.append(note) # « Animaux accepter » (texte du site)
170 +
171 + # visuel de la carte (background-image)
172 + images: list[str] = []
173 + img_el = card.select_one(".landing_modele_block_item_img_bg[style]")
174 + if img_el:
175 + m_img = re.search(r"url\('([^']+)'\)", img_el.get("style") or "")
176 + if m_img:
177 + images = [_SIZE_SUFFIX.sub("", m_img.group(1))]
178 +
179 + title = " ".join(p for p in (piece, category, "—", address) if p) \
180 + if address else (piece or category)
181 + details = {"category": category} if category else {}
182 +
183 + listings[ext_id] = Listing(
184 + source=self.source_id,
185 + external_id=ext_id,
186 + url=url,
187 + title=re.sub(r"\s+", " ", title).strip(),
188 + address=address,
189 + sector=sector,
190 + city=city,
191 + unit_type=_clean_unit_type(piece),
192 + price=parse_price(price_label),
193 + price_label=price_label,
194 + availability=availability,
195 + amenities=amenities,
196 + details=details,
197 + images=images,
198 + )
199 +
200 + # -- fiche détail -----------------------------------------------------------
201 + def _fetch_detail(self, url: str) -> dict:
202 + """Superficie, inclusions et galerie de la fiche single_modele_*."""
203 + if self._fetched >= self.max_details:
204 + raise RuntimeError("budget de fiches détail atteint")
205 + self._fetched += 1
206 + html = self.get(url).text
207 + soup = BeautifulSoup(html, "html.parser")
208 + out: dict = {}
209 +
210 + sup_el = soup.select_one(".single_modele_superficie")
211 + if sup_el:
212 + out["superficie"] = re.sub(
213 + r"\s+", " ", sup_el.get_text(" ", strip=True)).strip()
214 +
215 + out["inclusions"] = [
216 + re.sub(r"\s+", " ", el.get_text(" ", strip=True)).strip()
217 + for el in soup.select(".single_modele_inclus_item_name")
218 + if el.get_text(strip=True)][:30]
219 +
220 + # galerie : photos du bloc .single_modele_galerie seulement — les
221 + # blocs slider_modele_* en pied de page sont les AUTRES logements
222 + images: list[str] = []
223 + gal = soup.select_one(".single_modele_galerie")
224 + if gal:
225 + for u in re.findall(
226 + r"https://terater\.ca/wp-content/uploads/[^\"'()\s]+"
227 + r"\.(?:jpg|jpeg|webp)", str(gal), re.I):
228 + u = _SIZE_SUFFIX.sub("", u)
229 + if u not in images:
230 + images.append(u)
231 + out["images"] = images[:30]
232 + return out
233 +
234 + def _apply_detail(self, lst: Listing, d: dict) -> None:
235 + if not d:
236 + return
237 + if d.get("superficie"): # « Superficie : 1375 pi² »
238 + lst.amenities = list(dict.fromkeys(lst.amenities + [d["superficie"]]))
239 + if d.get("inclusions"):
240 + lst.amenities = list(dict.fromkeys(lst.amenities + d["inclusions"]))
241 + if d.get("images"):
242 + merged = list(dict.fromkeys(d["images"] + lst.images))
243 + lst.images = merged[:30]
added reports/connectors/alexcellence.md +32 −0
@@ -0,0 +1,32 @@
1 +# alexcellence — Immeubles Alexcellence
2 +- site: https://immeublesalexcellence.com/appartements-a-louer/ (WordPress +
3 + thème Houzez, cartes item-listing-wrap v6)
4 +- méthode: 4e membre de la famille Houzez de l'Estrie — sous-classe de
5 + DynamicConnector (dynamic.py), ne redéfinit que les constantes (BASE,
6 + LIST_PATH, CITY_DEFAULT) et le crochet _card_availability
7 +- annonces: 6 à louer (sur ~33 cartes dont 13+ marquées LOUÉ et 1 entrepôt
8 + exclu) — secteurs Université de Sherbrooke et Mont-Bellevue
9 +- couverture: prix 100% (« 1,010$/par mois »), dispo 100% + date 100%
10 + (étiquette « 1er août 2026 »), type 100%, description 100%, images 100%
11 + (data-images), adresse 50% (address.item-address absent de certaines
12 + fiches ; la rue figure alors dans le titre)
13 +- fixture: ok (8 requêtes) · test: ok (2 verts)
14 +
15 +## Découverte
16 +- robots.txt : permissif (`Disallow:` Yoast + wpforms/uploads). Vérifié.
17 + Nota : le WAF renvoie parfois 403 sur des rafales — politesse 0,7 s.
18 +- Particularité locale des étiquettes Houzez `label-status` : elles portent à
19 + la fois le statut (« À LOUER » / « LOUÉ ») et la date de libération
20 + (« 1er janvier 2027 ») — le crochet renvoie « LOUÉ » (carte écartée par le
21 + parent) ou la date, jamais « À LOUER » (qui matcherait le filtre « loué »
22 + du parent).
23 +- external_id = data-listid Houzez (les slugs /appartements/<slug>/ ne
24 + matchent pas la regex du parent — sans conséquence, le listid prime).
25 +- Fiches détail Houzez réduites : description + address.item-address +
26 + aperçu ; pas de bloc adresse structuré, pas de features, pas de GPS.
27 +
28 +## Fragilités
29 +- Étiquettes de statut en texte libre (dates « 1 er octobre 2026 » avec
30 + espace) — transmises brutes, parse_availability_date s'en charge.
31 +- Incohérences éditoriales du site (titre « 4 ½ » sur un slug « 3-½ ») —
32 + champs restitués tels quels, rien n'est réinterprété.
added reports/connectors/immeubles_pm.md +33 −0
@@ -0,0 +1,33 @@
1 +# immeubles_pm — Les Immeubles PM
2 +- site: https://www.lesimmeublespm.com (plateforme « plogg solutions », comme
3 + appartementsgranby.com/godbout) — 6 immeubles à Sherbrooke (Fleurimont,
4 + Sherbrooke Est)
5 +- méthode: la page d'accueil rend côté serveur le bloc #listing-appart — une
6 + carte .box par immeuble AYANT DES UNITÉS LIBRES, avec tableau Grandeur /
7 + Loyer (« à partir de 1475$ ») / Disponible + lien « Consulter la fiche » ;
8 + fiches /appartement/<slug>/ via self.detail (cache BD)
9 +- annonces: 2 (4½ à 1475$ au 2035 André-Breton, 4½ à 1425$ au 2059
10 + André-Breton — libres immédiatement)
11 +- couverture: prix 100%, dispo 100% + date 100%, type 100%, adresse 100%
12 + (champ « Rue » de la fiche), ville/quartier 100%, superficie 100% (1510 et
13 + 1260 pi²), étage et salles de bain (commodités), description 100%
14 + (div.extrait avec liste d'inclusions), images 100% (façade)
15 +- fixture: ok (3 requêtes) · test: ok (2 verts)
16 +
17 +## Découverte
18 +- robots.txt : bloque Yandex/Naver/Baidu/Ahrefs uniquement ; `User-agent: *`
19 + sans Disallow. Vérifié.
20 +- Même plateforme plogg que godbout (Granby, resté non connectable) : ici la
21 + recherche /rechercher-un-appartement/ affiche aussi « Complet » partout en
22 + rendu statique (form-manager fermé), MAIS l'accueil expose le vrai carrousel
23 + des unités libres — c'est lui qui fait foi. Le sitemap appartement (12
24 + fiches, lastmod 2026-01) contient aussi des unités-types non disponibles :
25 + ne pas s'en servir pour la découverte.
26 +- external_id = slug de fiche /appartement/<slug>/ (stable, une par
27 + unité-type d'immeuble).
28 +- Filtre de prudence : lignes « Complet »/« Loué » écartées.
29 +
30 +## Fragilités
31 +- Petite plateforme régionale (plogg) au HTML tabulaire — sélecteurs
32 + .box/.infos-appart maison.
33 +- `<sup>2</sup>` des superficies recollé en « pi² » avant textmine.
added reports/connectors/lequerre.md +29 −0
@@ -0,0 +1,29 @@
1 +# lequerre — Habitations L'Équerre
2 +- site: https://habitationslequerre.com/immeubles/ (WordPress, gabarit maison
3 + Tailwind rendu serveur) — OBNL d'habitation de Sherbrooke, 34 immeubles
4 + abordables (locatif privé consultable, pas du HLM)
5 +- méthode: une <section class="building-section"> par immeuble vedette ;
6 + seules les sections data-category « disponibles » (onglet « Disponibles /
7 + À louer » du site) deviennent des annonces — badge « DISPONIBLE MAINTENANT
8 + - 735$ / mois », h2 (type), h3 (adresse), paragraphe descriptif, visuel
9 +- annonces: 1 (Studios meublés et tout inclus — 14, rue Jean-Maurice,
10 + Sherbrooke, 735 $/mois, disponible maintenant ; 8 autres immeubles affichés
11 + sans unité libre)
12 +- couverture: prix 100% (badge), dispo 100% + date 100% (« DISPONIBLE
13 + MAINTENANT »), type 100% (Studio), adresse 100%, ville 100%, description
14 + 100%, image 100% ; granularité immeuble (le site ne publie pas d'unités
15 + individuelles datées)
16 +- fixture: ok (1 requête) · test: ok (2 verts)
17 +
18 +## Découverte
19 +- robots.txt : WP standard (/wp-admin/ seul). Vérifié.
20 +- La page /immeubles/ est un gabarit codé main (classes Tailwind + filtres
21 + JS par data-category) — pas un CPT WordPress : le badge de dispo est le
22 + seul marqueur d'inventaire ; « DISPONIBLE MAINTENANT - 735$ / mois » est
23 + scindé en disponibilité + étiquette de prix.
24 +- external_id = adresse civique normalisée en slug (stable).
25 +- URL = page /immeubles/ (pas de page par immeuble).
26 +
27 +## Fragilités
28 +- Gabarit maison susceptible d'être refondu (page générée en mars 2026) ;
29 + si le badge disparaît, la source retombe à zéro annonce (échec sûr).
added reports/connectors/majestic.md +35 −0
@@ -0,0 +1,35 @@
1 +# majestic — Le Majestic du Lac Boivin
2 +- site: https://www.majesticlacboivin.ca/fr/condos-locatifs.html (site custom
3 + non-WordPress) — 1 complexe de condos locatifs haut de gamme à Granby,
4 + 150 rue de la Lobélie (adresse affichée sur /fr/nous-joindre.html,
5 + schema.org PostalAddress)
6 +- méthode: la page des condos rend côté serveur la liste des unités libres
7 + (div.uniteItem[data-id] dans .listeResultatUnite) : unité, étage, chambres,
8 + salles de bain, superficie, loyer, disponibilité, plan PDF ; les unités
9 + « Réservé » (span.nonDispo) sont écartées
10 +- annonces: 1 (Unité 308 — 1 ch., 735 pi², 1695 $, 1er juillet ; deux autres
11 + unités affichées mais réservées)
12 +- couverture: prix 100% (colonne « Loyer » — montant extrait même sans « $ »,
13 + formats du site : « 1695 $ », « 1795 », « $3500 »), dispo 100% + date 100%
14 + (« 1er juillet », « Immédiate »), superficie 100% (area_sqft), étage/
15 + chambres/sdb (commodités), inclusions et avantages de l'immeuble
16 + (.services-liste) ; pas de type ½ publié (chambres seulement), pas de
17 + galerie par unité (plans PDF conservés dans details.plan_pdf)
18 +- fixture: ok (1 requête) · test: ok (2 verts)
19 +
20 +## Découverte
21 +- robots.txt : Disallow /inc/, /Gestion/, /auto/ — la page des condos est
22 + permise ; crawl-delay 15 pour bingbot seulement. Vérifié.
23 +- Le sélecteur d'étages interactif (imagemapster) et « Charger plus de
24 + résultats » sont purement client : toutes les unités libres sont déjà dans
25 + le HTML initial (nombreMax=86 = parc total, 3 unités rendues).
26 +- external_id = data-id interne de l'unité (69 -> Unité 308) ; URL = page des
27 + condos (pas de page par unité — le bouton « Info » pointe le formulaire de
28 + contact ?uniteId=…).
29 +
30 +## Fragilités
31 +- Formats de loyer irréguliers (avec/sans $) — extraction dédiée à la colonne
32 + « Loyer », bornée 100–20 000 $.
33 +- Adresse du complexe en constante (source : page Nous joindre) — immeuble
34 + unique, ne bouge pas ; à revalider seulement si le site refond sa page
35 + contact.
added reports/connectors/oxford.md +32 −0
@@ -0,0 +1,32 @@
1 +# oxford — Appartements Oxford
2 +- site: https://appartoxford.com (WordPress + Elementor, WPML) — Lennoxville
3 + (Sherbrooke), près de l'Université Bishop's
4 +- méthode: fiches par TYPE d'unité (2½ tout inclus, 3½, 4½, 5½) listées dans
5 + le menu « Logements » de l'accueil ; une fiche n'est une annonce que si son
6 + encart de disponibilité (widget Elementor à visibilité conditionnelle) est
7 + présent — « 1 unité disponible 1er octobre 2026 »
8 +- annonces: 2 (3½ dès 760$ — 15 septembre 2026 ; 4½ dès 1000$ — 1er octobre
9 + 2026 ; les fiches 2½ et 5½ n'affichent aucune unité libre et sont écartées)
10 +- couverture: prix 100% (« À partir de 760$ / par mois », price_from),
11 + dispo 100% + date 100%, type 100%, description 100%, caractéristiques 100%
12 + (listes à pictos, sans le bruit d'en-tête), images 100% ; adresse civique
13 + non publiée (secteur Lennoxville, ville Sherbrooke — affichés sur le site)
14 +- fixture: ok (11 requêtes) · test: ok (2 verts)
15 +
16 +## Découverte
17 +- robots.txt : WP standard (/wp-admin/ seul). Vérifié.
18 +- Le sitemap wp-sitemap est vide d'index utile — la découverte passe par les
19 + liens /appartement/<slug>/ de l'accueil ; les anciens slugs (« 4½-a-louer »)
20 + redirigent 301 vers les fiches canoniques : external_id = slug FINAL décodé
21 + et minuscule (dédoublonne les variantes d'encodage %C2%BD/%c2%bd).
22 +- Peu de requêtes (accueil + ~7 fiches dont doublons redirigés) : pas de
23 + cache détail — l'encart de dispo doit être relu à chaque synchronisation.
24 +- « Dernière modification : juin 2026 » affichée sur les fiches : le contenu
25 + est maintenu.
26 +
27 +## Fragilités
28 +- Annonce à la granularité type d'unité (« 1 unité disponible ») — pas de
29 + numéro d'appartement ni d'adresse civique publiés.
30 +- L'encart de dispo repose sur un widget dce-visibility : si le site le
31 + reformule (autre libellé que « N unité(s) disponible(s) »), les annonces
32 + disparaissent (échec sûr, rien d'inventé).
added reports/connectors/terater.md +39 −0
@@ -0,0 +1,39 @@
1 +# terater — Les Constructions Tèratèr
2 +- site: https://terater.ca/a-louer/ (WordPress + thème enfant Avada, blocs maison)
3 +- méthode: archive /a-louer/ rendue serveur — une carte
4 + div.landing_modele_block_item par logement ; fiches via self.detail
5 + (cache BD) pour superficie, inclusions et galerie
6 +- annonces: 12 (Val-Joli ×5, Sherbrooke Nord/Seyval ×4, Orford ×2,
7 + Cookshire-Eaton ×1 — le constructeur couvre aussi Windsor via Val-Joli)
8 +- couverture: prix 100% (« 1 075$ par mois »), dispo 100% (« Libre
9 + immédiatement », « Juillet 2026 »… bandeau coloré), date 100%, type 100%
10 + (badge « 3 ½ »), adresse 100% (carte), superficie 100% (fiche), images 100%
11 + (galerie de la fiche), description 0% (le site n'en publie pas — les
12 + inclusions détaillées tiennent lieu de caractéristiques)
13 +- fixture: ok (13 requêtes) · test: ok (2 verts)
14 +
15 +## Découverte
16 +- robots.txt : Yoast `Disallow:` (tout permis). Vérifié.
17 +- Même famille de balisage que morin.py (Avada child + classes maison), mais
18 + préfixes différents : `landing_modele_*` (archive), `single_modele_*`
19 + (fiche), `slider_modele_*` (carrousel « autres logements » — ignoré pour ne
20 + pas mélanger les galeries).
21 +- external_id = slug d'URL /a-louer/<slug>/ (stable ; les slugs « -copy » du
22 + site sont conservés tels quels).
23 +- Aucune carte « Loué » dans l'archive au moment de l'écriture (les loués en
24 + sortent) ; filtre par prudence sur le bandeau et exclusion des espaces non
25 + résidentiels via le champ type.
26 +
27 +## Champs extraits
28 +- carte : bandeau dispo, badge type, adresse (« 550, rte 143 Sud, Val-Joli
29 + #3 »), secteur/ville (mappé sur villes réelles connues : Val-Joli,
30 + Cookshire-Eaton, Orford ; « Nord de Sherbrooke » -> Sherbrooke + secteur),
31 + chambres / salle de bain / étage / stationnement / « Animaux accepter »
32 + (texte du site), prix + « par mois », visuel.
33 +- fiche : « Superficie : 1375 pi² » (commodité, area_sqft dérivé), inclusions
34 + (single_modele_inclus_item_name), galerie .single_modele_galerie (variantes
35 + redimensionnées ramenées à la pleine taille).
36 +
37 +## Fragilités
38 +- Classes maison du thème enfant Avada (landing_modele_*/single_modele_*).
39 +- HTML du site avec coquilles (`<soan>`) — parsing tolérant par classes.
added reports/sources-entries/alexcellence.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "alexcellence",
3 + "name": "Immeubles Alexcellence",
4 + "url": "https://immeublesalexcellence.com",
5 + "listing_url": "https://immeublesalexcellence.com/appartements-a-louer/",
6 + "sectors": "Sherbrooke (Université de Sherbrooke, Mont-Bellevue)",
7 + "connector": "alexcellence",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/bloc.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "bloc",
3 + "name": "Société Immobilière BLOC",
4 + "url": "https://www.immobilierbloc.ca",
5 + "listing_url": "https://www.immobilierbloc.ca/immeubles",
6 + "sectors": "Magog et environs (Ovila-Bergeron, Rexford…)",
7 + "connector": null,
8 + "status": "non connectable — site Wix : la page /logements-a-louer référencée au menu répond 404 (page retirée) et les 4 pages d'immeubles restantes sont descriptives, sans unité, prix ni disponibilité ; re-vérifier si la page des logements revient",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/devco.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "devco",
3 + "name": "Groupe Devco Immobilier",
4 + "url": "https://www.groupedevcoimmobilier.com",
5 + "listing_url": "https://www.groupedevcoimmobilier.com/realisation",
6 + "sectors": "Coaticook, Sherbrooke, Compton, Cookshire-Eaton, Magog",
7 + "connector": null,
8 + "status": "non connectable — site Wix sans module d'annonces : l'unique offre courante (« À louer - 593 Ave des Érables… 1 500$/mois ») est un paragraphe de texte riche inséré à la main dans la page vitrine /realisation, sans identifiant, structure ni page dédiée — trop fragile et non suivable de façon fiable ; re-vérifier si un vrai répéteur d'annonces apparaît",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/gci.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "gci",
3 + "name": "Les Immeubles GCI",
4 + "url": "https://lesimmeublesgci.com",
5 + "listing_url": "https://lesimmeublesgci.com/#nos-immeubles",
6 + "sectors": "Sherbrooke (Domaine Duvernay)",
7 + "connector": null,
8 + "status": "non connectable — one-page WP 5.3/WPBakery : 12 cartes d'immeubles avec badges « À louer »/« Loué » mais en fourchettes de bâtiment (« 1200 à 1400 pi², 2 à 3 chambres »), sans prix, sans date, et liens des cartes morts (href=#) ; pas d'unités réelles exploitables",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/gocar.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "gocar",
3 + "name": "Gestion GOCAR",
4 + "url": "https://gestiongocar.com",
5 + "listing_url": "https://gestiongocar.com/",
6 + "sectors": "Cowansville (boul. J.-J.-Bertrand, rue Albert…)",
7 + "connector": null,
8 + "status": "non connectable actuellement — l'accueil liste bien les immeubles mais chacun est marqué « Complet — Informez-vous pour les prochaines disponibilités » (aucun logement, prix ni date publiés ; consigne d'appeler le 450 522-4907) ; re-vérifier quand des unités se libèrent",
9 + "region": "Montérégie"
10 +}
added reports/sources-entries/godin.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "godin",
3 + "name": "Gestion A. Godin",
4 + "url": "https://gestionagodin.com",
5 + "listing_url": "https://gestionagodin.com/property-type/logement-a-louer/",
6 + "sectors": "Montérégie (annonces actuelles : Longueuil, Greenfield Park — pas de Granby)",
7 + "connector": null,
8 + "status": "non connectable — thème RealHomes avec seulement 3 fiches vitrines « logement à louer » (78 rue Briand, 90 de l'Église…), toutes hors zone Granby (Longueuil/Greenfield Park) et sans prix ni disponibilité, ni sur l'archive ni sur les fiches ; portefeuille surtout commercial",
9 + "region": "Montérégie"
10 +}
added reports/sources-entries/immeubles_pm.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "immeubles_pm",
3 + "name": "Les Immeubles PM",
4 + "url": "https://www.lesimmeublespm.com",
5 + "listing_url": "https://www.lesimmeublespm.com/",
6 + "sectors": "Sherbrooke (Fleurimont – Quatre Saisons et King Est, Sherbrooke Est – Bowen Sud)",
7 + "connector": "immeubles_pm",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/immoestrie.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "immoestrie",
3 + "name": "Gestion immobilière de l'Estrie",
4 + "url": "https://immoestrie.ca",
5 + "listing_url": "https://immoestrie.ca/nos-immeubles/",
6 + "sectors": "Sherbrooke/Estrie",
7 + "connector": null,
8 + "status": "non connectable — le site s'est réorienté en offre de services de gestion POUR propriétaires (perception des loyers, baux, Tribunal administratif du logement…) : /nos-immeubles/ est une page de services avec formulaire de soumission, aucune annonce de logement",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/innoplex.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "innoplex",
3 + "name": "Innoplex Immobilier",
4 + "url": "https://innopleximmobilier.com",
5 + "listing_url": "https://innopleximmobilier.com/fr/nos-immeubles/",
6 + "sectors": "Sherbrooke et Estrie (6+ immeubles)",
7 + "connector": null,
8 + "status": "non connectable — « Nos immeubles » (4 pages paginées) et les fiches d'immeuble sont des présentations de bâtiments : aucune unité, aucun prix, aucune disponibilité sur l'archive ni sur les fiches sondées",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/jpg.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "jpg",
3 + "name": "Construction JPG",
4 + "url": "https://www.constructionjpg.com",
5 + "listing_url": "https://www.constructionjpg.com/immeubles-liste.cfm",
6 + "sectors": "Sherbrooke (Nord, Est, Rock Forest, milieu urbain), East Angus",
7 + "connector": null,
8 + "status": "non connectable — site statique ColdFusion : pages brochurables par secteur (Boisé Émile-Zola, Boisé Urbain…) avec visites virtuelles, mais aucune unité, aucun prix, aucune disponibilité ; location au téléphone (819 578-1490)",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/landry.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "landry",
3 + "name": "Immeubles Georges Landry",
4 + "url": "https://immeublesgeorgeslandry.com",
5 + "listing_url": "https://immeublesgeorgeslandry.com/location-de-logements/",
6 + "sectors": "Granby (logements 50 ans et plus)",
7 + "connector": null,
8 + "status": "non connectable — site vitrine Divi : la page « Location de logements » est un texte de présentation (50+) avec galerie photos ; aucune unité listée, aucun prix, aucune disponibilité, pas de CPT immobilier",
9 + "region": "Montérégie"
10 +}
added reports/sources-entries/lequerre.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "lequerre",
3 + "name": "Habitations L'Équerre",
4 + "url": "https://habitationslequerre.com",
5 + "listing_url": "https://habitationslequerre.com/immeubles/",
6 + "sectors": "Sherbrooke (centre-ville et quartiers — 34 immeubles abordables, OBNL)",
7 + "connector": "lequerre",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/lpl.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "lpl",
3 + "name": "Immeubles L.P.L. (Loyer Sherbrooke)",
4 + "url": "https://loyersherbrooke.com",
5 + "listing_url": "https://loyersherbrooke.com/estrie/sherbrooke/",
6 + "sectors": "Sherbrooke (Fleurimont, Jacques-Cartier, Rock Forest…)",
7 + "connector": null,
8 + "status": "non connectable — arborescence SEO par secteur/grandeur et fiches property/ d'immeubles (Le 459, Jardins du Parc…) purement descriptives ; « Rechercher un appartement » n'est qu'un filtre par grandeur sans résultats datés : aucun prix ni disponibilité nulle part",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/majestic.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "majestic",
3 + "name": "Le Majestic du Lac Boivin",
4 + "url": "https://www.majesticlacboivin.ca",
5 + "listing_url": "https://www.majesticlacboivin.ca/fr/condos-locatifs.html",
6 + "sectors": "Granby (150 rue de la Lobélie, lac Boivin)",
7 + "connector": "majestic",
8 + "status": "actif",
9 + "region": "Montérégie"
10 +}
added reports/sources-entries/marc_breton.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "marc_breton",
3 + "name": "Gestion Marc Breton",
4 + "url": "https://gestionmarcbreton.com",
5 + "listing_url": "https://gestionmarcbreton.com/immeubles-locatifs",
6 + "sectors": "Granby, Bromont",
7 + "connector": null,
8 + "status": "non connectable — pages « Immeubles locatifs » / « Locatif Granby » / « Locatif Bromont » rédactionnelles (description des quartiers et des jumelés haut de gamme) : aucune annonce, aucun prix, aucune disponibilité datée",
9 + "region": "Montérégie"
10 +}
added reports/sources-entries/memphremagog.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "memphremagog",
3 + "name": "Groupe Immobilier Memphrémagog",
4 + "url": "https://groupeimmobiliermemphremagog.com",
5 + "listing_url": "https://groupeimmobiliermemphremagog.com/#location",
6 + "sectors": "Magog (Côteaux du Marais), Sherbrooke",
7 + "connector": null,
8 + "status": "non connectable — vitrine one-page de promoteur (prestige 55+) : blocs « VOIR LE PROJET » et texte « Pourquoi louer ? », aucune annonce, aucun prix, aucune disponibilité publiée",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/novard.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "novard",
3 + "name": "Constructions Novard",
4 + "url": "https://www.constructionsnovard.com",
5 + "listing_url": "https://www.constructionsnovard.com/locatif",
6 + "sectors": "Farnham, Bromont",
7 + "connector": null,
8 + "status": "non connectable — page « Immeubles résidentiels locatifs » (CMS Made Simple, © 2012) : un paragraphe de présentation et 3 photos ; aucune unité, aucun prix, aucune disponibilité, contact pour « planifier une visite »",
9 + "region": "Montérégie"
10 +}
added reports/sources-entries/oxford.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "oxford",
3 + "name": "Appartements Oxford",
4 + "url": "https://appartoxford.com",
5 + "listing_url": "https://appartoxford.com",
6 + "sectors": "Sherbrooke (Lennoxville, près de l'Université Bishop's)",
7 + "connector": "oxford",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/ralph.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "ralph",
3 + "name": "Ralph condos locatifs",
4 + "url": "https://ralphcondos.com",
5 + "listing_url": "https://ralphcondos.com/condos/",
6 + "sectors": "Magog (centre-ville, 1 immeuble mixte)",
7 + "connector": null,
8 + "status": "non connectable — vitrine WordPress d'un immeuble unique : pages /condos/ et /plans/ purement descriptives, aucune unité, aucun prix, aucune disponibilité (les seules mentions « disponible » du HTML sont des chaînes i18n de l'éditeur WP)",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/rivard.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "rivard",
3 + "name": "Les Habitations Rivard",
4 + "url": "https://www.habitationsrivard.com",
5 + "listing_url": "https://www.habitationsrivard.com/location",
6 + "sectors": "Granby, Bromont, Shefford, Waterloo, Ange-Gardien, Farnham",
7 + "connector": null,
8 + "status": "non connectable — site Duda dont le « catalogue » de propriétés est une boutique JS (MAIN_STORE) chargée côté client, avec prix explicitement masqués (data-product-list-price-behavior=hide) ; aucune annonce, prix ni disponibilité en SSR, la page /location n'offre qu'un formulaire de demande d'information",
9 + "region": "Montérégie"
10 +}
added reports/sources-entries/symphonie.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "symphonie",
3 + "name": "Symphonie de Cowansville",
4 + "url": "https://symphoniedecowansville.ca",
5 + "listing_url": "https://symphoniedecowansville.ca/les-unites/",
6 + "sectors": "Cowansville (1 immeuble neuf 2022)",
7 + "connector": null,
8 + "status": "non connectable — site vitrine marketing : pages « Les unités » et « Plans | Prix » purement descriptives (visite guidée, plans en images), aucun prix, aucune unité datée, aucun module de disponibilité",
9 + "region": "Montérégie"
10 +}
added reports/sources-entries/terater.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "terater",
3 + "name": "Les Constructions Tèratèr",
4 + "url": "https://terater.ca",
5 + "listing_url": "https://terater.ca/a-louer/",
6 + "sectors": "Val-Joli/Windsor, Sherbrooke (Nord, Seyval, Fleurimont), Orford, Cookshire-Eaton",
7 + "connector": "terater",
8 + "status": "actif",
9 + "region": "Estrie"
10 +}
added reports/sources-entries/verseau.json +10 −0
@@ -0,0 +1,10 @@
1 +{
2 + "id": "verseau",
3 + "name": "Gestion Immobilière du Verseau",
4 + "url": "https://gestionduverseau.com",
5 + "listing_url": "https://gestionduverseau.com/appartements/",
6 + "sectors": "Sherbrooke (6 secteurs)",
7 + "connector": null,
8 + "status": "non connectable — archive Opal Estate (WP 5.5) de 167 fiches figées : prix uniquement en fiche détail et périmés (« 3 1/2 … 550.00$/mois », « LIBRE AU 1ER JUILLET 2021 »), aucune date de disponibilité maintenue, étiquette « trop tard déjà loué » posée sur une poignée de fiches seulement — inventaire non entretenu depuis ~2021",
9 + "region": "Estrie"
10 +}
added tests/fixtures/alexcellence/01c6f74c604126fcfb82.html +2370 −0
@@ -0,0 +1,2370 @@
1 +<!doctype html>
2 +<html lang="fr-FR">
3 +<head>
4 + <meta charset="UTF-8" />
5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 + <link rel="profile" href="https://gmpg.org/xfn/11" />
7 + <meta name="format-detection" content="telephone=no">
8 + <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://immeublesalexcellence.com/wp-content/themes/houzez/img/studio-icon.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>
9 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
10 + <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
11 +
12 + <!-- This site is optimized with the Yoast SEO plugin v24.3 - https://yoast.com/wordpress/plugins/seo/ -->
13 + <title>4½ à Louer à Sherbrooke - Secteur Mont-Bellevue &amp; Université</title>
14 + <meta name="description" content="Beau 4½ spacieux avec thermopompe et grand balcon privé à Sherbrooke, secteur Mont-Bellevue. Idéal pour familles ou étudiants." />
15 + <link rel="canonical" href="https://immeublesalexcellence.com/appartements/4½-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/" />
16 + <meta property="og:locale" content="fr_FR" />
17 + <meta property="og:type" content="article" />
18 + <meta property="og:title" content="4½ à Louer à Sherbrooke - Secteur Mont-Bellevue &amp; Université" />
19 + <meta property="og:description" content="Beau 4½ spacieux avec thermopompe et grand balcon privé à Sherbrooke, secteur Mont-Bellevue. Idéal pour familles ou étudiants." />
20 + <meta property="og:url" content="https://immeublesalexcellence.com/appartements/4½-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/" />
21 + <meta property="og:site_name" content="Immeubles Alexcellence" />
22 + <meta property="article:publisher" content="https://www.facebook.com/immeublesalexcellence" />
23 + <meta property="article:modified_time" content="2026-07-17T19:45:10+00:00" />
24 + <meta property="og:image" content="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1.jpg" />
25 + <meta property="og:image:width" content="1067" />
26 + <meta property="og:image:height" content="800" />
27 + <meta property="og:image:type" content="image/jpeg" />
28 + <meta name="twitter:card" content="summary_large_image" />
29 + <meta name="twitter:label1" content="Durée de lecture estimée" />
30 + <meta name="twitter:data1" content="2 minutes" />
31 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/","url":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/","name":"4½ à Louer à Sherbrooke - Secteur Mont-Bellevue & Université","isPartOf":{"@id":"https://immeublesalexcellence.com/#website"},"primaryImageOfPage":{"@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/#primaryimage"},"image":{"@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/#primaryimage"},"thumbnailUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1.jpg","datePublished":"2025-06-11T15:57:02+00:00","dateModified":"2026-07-17T19:45:10+00:00","description":"Beau 4½ spacieux avec thermopompe et grand balcon privé à Sherbrooke, secteur Mont-Bellevue. Idéal pour familles ou étudiants.","breadcrumb":{"@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://immeublesalexcellence.com/appartements/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/#primaryimage","url":"https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1.jpg","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1.jpg","width":1067,"height":800},{"@type":"BreadcrumbList","@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https://immeublesalexcellence.com/"},{"@type":"ListItem","position":2,"name":"Propriétés","item":"https://immeublesalexcellence.com/appartements/"},{"@type":"ListItem","position":3,"name":"4½ à louer à Sherbrooke – Secteur Mont-Bellevue &amp; Université"}]},{"@type":"WebSite","@id":"https://immeublesalexcellence.com/#website","url":"https://immeublesalexcellence.com/","name":"Immeubles Alexcellence","description":"Appartement a louer Université Sherbrooke","publisher":{"@id":"https://immeublesalexcellence.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://immeublesalexcellence.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https://immeublesalexcellence.com/#organization","name":"Immeubles Alexcellence","url":"https://immeublesalexcellence.com/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/#/schema/logo/image/","url":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","width":436,"height":123,"caption":"Immeubles Alexcellence"},"image":{"@id":"https://immeublesalexcellence.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/immeublesalexcellence","https://www.instagram.com/immeublealexellence/"]}]}</script>
32 + <!-- / Yoast SEO plugin. -->
33 +
34 +
35 +<link rel='dns-prefetch' href='//www.google.com' />
36 +<link rel='dns-prefetch' href='//fonts.googleapis.com' />
37 +<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin />
38 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux" href="https://immeublesalexcellence.com/feed/" />
39 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux des commentaires" href="https://immeublesalexcellence.com/comments/feed/" />
40 +<script type="text/javascript">
41 +/* <![CDATA[ */
42 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/immeublesalexcellence.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.5"}};
43 +/*! This file is auto-generated */
44 +!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
45 +/* ]]> */
46 +</script>
47 +<style id='wp-emoji-styles-inline-css' type='text/css'>
48 +
49 + img.wp-smiley, img.emoji {
50 + display: inline !important;
51 + border: none !important;
52 + box-shadow: none !important;
53 + height: 1em !important;
54 + width: 1em !important;
55 + margin: 0 0.07em !important;
56 + vertical-align: -0.1em !important;
57 + background: none !important;
58 + padding: 0 !important;
59 + }
60 +</style>
61 +<link rel='stylesheet' id='wp-block-library-css' href='https://immeublesalexcellence.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.5' type='text/css' media='all' />
62 +<style id='classic-theme-styles-inline-css' type='text/css'>
63 +/*! This file is auto-generated */
64 +.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}
65 +</style>
66 +<style id='global-styles-inline-css' type='text/css'>
67 +: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,rgba(6,147,227,1) 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,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%,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 rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}: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;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.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;}
68 +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
69 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
70 +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
71 +</style>
72 +<link rel='stylesheet' id='elementor-frontend-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.27.1' type='text/css' media='all' />
73 +<link rel='stylesheet' id='elementor-post-6-css' href='https://immeublesalexcellence.com/wp-content/uploads/elementor/css/post-6.css?ver=1737736055' type='text/css' media='all' />
74 +<link rel='stylesheet' id='font-awesome-5-all-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.27.1' type='text/css' media='all' />
75 +<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.27.1' type='text/css' media='all' />
76 +<link rel='stylesheet' id='widget-text-editor-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.27.1' type='text/css' media='all' />
77 +<link rel='stylesheet' id='houzez-studio-css' href='https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/css/houzez-studio-public.css?ver=1.2.1' type='text/css' media='all' />
78 +<link rel='stylesheet' id='cmplz-general-css' href='https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/assets/css/cookieblocker.min.css?ver=1736710567' type='text/css' media='all' />
79 +<link rel='stylesheet' id='houzez-all-css-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/css/all-css.css?ver=3.4.4' type='text/css' media='all' />
80 +<link rel='stylesheet' id='houzez-style-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/style.css?ver=3.4.4' type='text/css' media='all' />
81 +<style id='houzez-style-inline-css' type='text/css'>
82 +
83 + @media (min-width: 1200px) {
84 + .container {
85 + max-width: 1310px;
86 + }
87 + }
88 + .status-color-21 {
89 + background-color: #45962e;
90 + }
91 +
92 + .status-color-199 {
93 + background-color: #595959;
94 + }
95 +
96 + body {
97 + font-family: Roboto;
98 + font-size: 15px;
99 + font-weight: 400;
100 + line-height: 25px;
101 + text-transform: none;
102 + }
103 + .main-nav,
104 + .dropdown-menu,
105 + .login-register,
106 + .btn.btn-create-listing,
107 + .logged-in-nav,
108 + .btn-phone-number {
109 + font-family: Roboto;
110 + font-size: 14px;
111 + font-weight: 500;
112 + text-align: left;
113 + text-transform: none;
114 + }
115 +
116 + .btn,
117 + .ele-btn,
118 + .houzez-search-button,
119 + .houzez-submit-button,
120 + .form-control,
121 + .bootstrap-select .text,
122 + .sort-by-title,
123 + .woocommerce ul.products li.product .button {
124 + font-family: Roboto;
125 + font-size: 15px;
126 + }
127 +
128 + h1, h2, h3, h4, h5, h6, .item-title {
129 + font-family: Roboto;
130 + font-weight: 500;
131 + text-transform: inherit;
132 + }
133 +
134 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
135 + font-weight: 500;
136 + text-transform: inherit;
137 + text-align: inherit;
138 + }
139 +
140 + .top-bar-wrap {
141 + font-family: Roboto;
142 + font-size: 13px;
143 + font-weight: 300;
144 + line-height: 25px;
145 + text-align: left;
146 + text-transform: none;
147 + }
148 + .footer-wrap {
149 + font-family: Roboto;
150 + font-size: 14px;
151 + font-weight: 300;
152 + line-height: 25px;
153 + text-align: left;
154 + text-transform: none;
155 + }
156 +
157 + .header-v1 .header-inner-wrap,
158 + .header-v1 .navbar-logged-in-wrap {
159 + line-height: 60px;
160 + height: 60px;
161 + }
162 + .header-v2 .header-top .navbar {
163 + height: 110px;
164 + }
165 +
166 + .header-v2 .header-bottom .header-inner-wrap,
167 + .header-v2 .header-bottom .navbar-logged-in-wrap {
168 + line-height: 54px;
169 + height: 54px;
170 + }
171 +
172 + .header-v3 .header-top .header-inner-wrap,
173 + .header-v3 .header-top .header-contact-wrap {
174 + height: 80px;
175 + line-height: 80px;
176 + }
177 + .header-v3 .header-bottom .header-inner-wrap,
178 + .header-v3 .header-bottom .navbar-logged-in-wrap {
179 + line-height: 54px;
180 + height: 54px;
181 + }
182 + .header-v4 .header-inner-wrap,
183 + .header-v4 .navbar-logged-in-wrap {
184 + line-height: 90px;
185 + height: 90px;
186 + }
187 + .header-v5 .header-top .header-inner-wrap,
188 + .header-v5 .header-top .navbar-logged-in-wrap {
189 + line-height: 110px;
190 + height: 110px;
191 + }
192 + .header-v5 .header-bottom .header-inner-wrap {
193 + line-height: 54px;
194 + height: 54px;
195 + }
196 + .header-v6 .header-inner-wrap,
197 + .header-v6 .navbar-logged-in-wrap {
198 + height: 60px;
199 + line-height: 60px;
200 + }
201 + @media (min-width: 1200px) {
202 + .header-v5 .header-top .container {
203 + max-width: 1170px;
204 + }
205 + }
206 +
207 + body,
208 + .main-wrap,
209 + .fw-property-documents-wrap h3 span,
210 + .fw-property-details-wrap h3 span {
211 + background-color: #f7f7f7;
212 + }
213 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
214 + background-color: #ffffff;
215 + }
216 +
217 + body,
218 + .form-control,
219 + .bootstrap-select .text,
220 + .item-title a,
221 + .listing-tabs .nav-tabs .nav-link,
222 + .item-wrap-v2 .item-amenities li span,
223 + .item-wrap-v2 .item-amenities li:before,
224 + .item-parallax-wrap .item-price-wrap,
225 + .list-view .item-body .item-price-wrap,
226 + .property-slider-item .item-price-wrap,
227 + .page-title-wrap .item-price-wrap,
228 + .agent-information .agent-phone span a,
229 + .property-overview-wrap ul li strong,
230 + .mobile-property-title .item-price-wrap .item-price,
231 + .fw-property-features-left li a,
232 + .lightbox-content-wrap .item-price-wrap,
233 + .blog-post-item-v1 .blog-post-title h3 a,
234 + .blog-post-content-widget h4 a,
235 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
236 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
237 + .agent-list-wrap .agent-list-content h2 a,
238 + .agent-list-wrap .agent-list-contact li a,
239 + .agent-contacts-wrap li a,
240 + .menu-edit-property li a,
241 + .statistic-referrals-list li a,
242 + .chart-nav .nav-pills .nav-link,
243 + .dashboard-table-properties td .property-payment-status,
244 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
245 + .payment-method-block .radio-tab .control-text,
246 + .post-title-wrap h2 a,
247 + .lead-nav-tab.nav-pills .nav-link,
248 + .deals-nav-tab.nav-pills .nav-link,
249 + .btn-light-grey-outlined:hover,
250 + button:not(.bs-placeholder) .filter-option-inner-inner,
251 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
252 + .products > .product > .item-body > a,
253 + .woocommerce ul.products li.product .price,
254 + .woocommerce div.product p.price,
255 + .woocommerce div.product span.price,
256 + .woocommerce #reviews #comments ol.commentlist li .meta,
257 + .woocommerce-MyAccount-navigation ul li a,
258 + .activitiy-item-close-button a,
259 + .property-section-wrap li a {
260 + color: #222222;
261 + }
262 +
263 +
264 +
265 + a,
266 + a:hover,
267 + a:active,
268 + a:focus,
269 + .primary-text,
270 + .btn-clear,
271 + .btn-apply,
272 + .btn-primary-outlined,
273 + .btn-primary-outlined:before,
274 + .item-title a:hover,
275 + .sort-by .bootstrap-select .bs-placeholder,
276 + .sort-by .bootstrap-select > .btn,
277 + .sort-by .bootstrap-select > .btn:active,
278 + .page-link,
279 + .page-link:hover,
280 + .accordion-title:before,
281 + .blog-post-content-widget h4 a:hover,
282 + .agent-list-wrap .agent-list-content h2 a:hover,
283 + .agent-list-wrap .agent-list-contact li a:hover,
284 + .agent-contacts-wrap li a:hover,
285 + .agent-nav-wrap .nav-pills .nav-link,
286 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
287 + .menu-edit-property li a.active,
288 + .menu-edit-property li a:hover,
289 + .dashboard-statistic-block h3 .fa,
290 + .statistic-referrals-list li a:hover,
291 + .chart-nav .nav-pills .nav-link.active,
292 + .board-message-icon-wrap.active,
293 + .post-title-wrap h2 a:hover,
294 + .listing-switch-view .switch-btn.active,
295 + .item-wrap-v6 .item-price-wrap,
296 + .listing-v6 .list-view .item-body .item-price-wrap,
297 + .woocommerce nav.woocommerce-pagination ul li a,
298 + .woocommerce nav.woocommerce-pagination ul li span,
299 + .woocommerce-MyAccount-navigation ul li a:hover,
300 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
301 + .property-schedule-tour-form-wrap .control:hover,
302 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
303 + .login-register .btn-icon-login-register + .dropdown-menu a,
304 + .activitiy-item-close-button a:hover,
305 + .property-section-wrap li a:hover,
306 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active,
307 + .property-lightbox-v2-sections-navigation .slick-prev,
308 + .property-lightbox-v2-sections-navigation .slick-next,
309 + .property-lightbox-v2-sections-navigation .slick-slide.current-section,
310 + .property-lightbox-v2-sections-navigation .nav-link.active,
311 + .agent-detail-page-v2 .listing-tabs .nav-link.active {
312 + color: #014582;
313 + }
314 +
315 + .agent-list-position a {
316 + color: #014582;
317 + }
318 +
319 + .control input:checked ~ .control__indicator,
320 + .top-banner-wrap .nav-pills .nav-link,
321 + .btn-primary-outlined:hover,
322 + .page-item.active .page-link,
323 + .slick-prev:hover,
324 + .slick-prev:focus,
325 + .slick-next:hover,
326 + .slick-next:focus,
327 + .mobile-property-tools .nav-pills .nav-link.active,
328 + .login-register-form .modal-header,
329 + .agent-nav-wrap .nav-pills .nav-link.active,
330 + .board-message-icon-wrap .notification-circle,
331 + .primary-label,
332 + .fc-event, .fc-event-dot,
333 + .compare-table .table-hover > tbody > tr:hover,
334 + .post-tag,
335 + .datepicker table tr td.active.active,
336 + .datepicker table tr td.active.disabled,
337 + .datepicker table tr td.active.disabled.active,
338 + .datepicker table tr td.active.disabled.disabled,
339 + .datepicker table tr td.active.disabled:active,
340 + .datepicker table tr td.active.disabled:hover,
341 + .datepicker table tr td.active.disabled:hover.active,
342 + .datepicker table tr td.active.disabled:hover.disabled,
343 + .datepicker table tr td.active.disabled:hover:active,
344 + .datepicker table tr td.active.disabled:hover:hover,
345 + .datepicker table tr td.active.disabled:hover[disabled],
346 + .datepicker table tr td.active.disabled[disabled],
347 + .datepicker table tr td.active:active,
348 + .datepicker table tr td.active:hover,
349 + .datepicker table tr td.active:hover.active,
350 + .datepicker table tr td.active:hover.disabled,
351 + .datepicker table tr td.active:hover:active,
352 + .datepicker table tr td.active:hover:hover,
353 + .datepicker table tr td.active:hover[disabled],
354 + .datepicker table tr td.active[disabled],
355 + .ui-slider-horizontal .ui-slider-range,
356 + .btn-bubble {
357 + background-color: #014582;
358 + }
359 +
360 + .control input:checked ~ .control__indicator,
361 + .btn-primary-outlined,
362 + .page-item.active .page-link,
363 + .mobile-property-tools .nav-pills .nav-link.active,
364 + .agent-nav-wrap .nav-pills .nav-link,
365 + .agent-nav-wrap .nav-pills .nav-link.active,
366 + .chart-nav .nav-pills .nav-link.active,
367 + .dashaboard-snake-nav .step-block.active,
368 + .fc-event,
369 + .fc-event-dot,
370 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
371 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
372 + border-color: #014582;
373 + }
374 +
375 + .slick-arrow:hover {
376 + background-color: rgba(36,52,140,0.52);
377 + }
378 +
379 + .slick-arrow {
380 + background-color: #014582;
381 + }
382 +
383 + .property-banner .nav-pills .nav-link.active {
384 + background-color: rgba(36,52,140,0.52) !important;
385 + }
386 +
387 + .property-navigation-wrap a.active {
388 + color: #014582;
389 + -webkit-box-shadow: inset 0 -3px #014582;
390 + box-shadow: inset 0 -3px #014582;
391 + }
392 +
393 + .btn-primary,
394 + .fc-button-primary,
395 + .woocommerce nav.woocommerce-pagination ul li a:focus,
396 + .woocommerce nav.woocommerce-pagination ul li a:hover,
397 + .woocommerce nav.woocommerce-pagination ul li span.current {
398 + color: #fff;
399 + background-color: #014582;
400 + border-color: #014582;
401 + }
402 + .btn-primary:focus, .btn-primary:focus:active,
403 + .fc-button-primary:focus,
404 + .fc-button-primary:focus:active {
405 + color: #fff;
406 + background-color: #014582;
407 + border-color: #014582;
408 + }
409 + .btn-primary:hover,
410 + .fc-button-primary:hover {
411 + color: #fff;
412 + background-color: #24348c;
413 + border-color: #24348c;
414 + }
415 + .btn-primary:active,
416 + .btn-primary:not(:disabled):not(:disabled):active,
417 + .fc-button-primary:active,
418 + .fc-button-primary:not(:disabled):not(:disabled):active {
419 + color: #fff;
420 + background-color: #24348c;
421 + border-color: #24348c;
422 + }
423 +
424 + .btn-secondary,
425 + .woocommerce span.onsale,
426 + .woocommerce ul.products li.product .button,
427 + .woocommerce #respond input#submit.alt,
428 + .woocommerce a.button.alt,
429 + .woocommerce button.button.alt,
430 + .woocommerce input.button.alt,
431 + .woocommerce #review_form #respond .form-submit input,
432 + .woocommerce #respond input#submit,
433 + .woocommerce a.button,
434 + .woocommerce button.button,
435 + .woocommerce input.button {
436 + color: #fff;
437 + background-color: #2ea7b2;
438 + border-color: #2ea7b2;
439 + }
440 + .woocommerce ul.products li.product .button:focus,
441 + .woocommerce ul.products li.product .button:active,
442 + .woocommerce #respond input#submit.alt:focus,
443 + .woocommerce a.button.alt:focus,
444 + .woocommerce button.button.alt:focus,
445 + .woocommerce input.button.alt:focus,
446 + .woocommerce #respond input#submit.alt:active,
447 + .woocommerce a.button.alt:active,
448 + .woocommerce button.button.alt:active,
449 + .woocommerce input.button.alt:active,
450 + .woocommerce #review_form #respond .form-submit input:focus,
451 + .woocommerce #review_form #respond .form-submit input:active,
452 + .woocommerce #respond input#submit:active,
453 + .woocommerce a.button:active,
454 + .woocommerce button.button:active,
455 + .woocommerce input.button:active,
456 + .woocommerce #respond input#submit:focus,
457 + .woocommerce a.button:focus,
458 + .woocommerce button.button:focus,
459 + .woocommerce input.button:focus {
460 + color: #fff;
461 + background-color: #2ea7b2;
462 + border-color: #2ea7b2;
463 + }
464 + .btn-secondary:hover,
465 + .woocommerce ul.products li.product .button:hover,
466 + .woocommerce #respond input#submit.alt:hover,
467 + .woocommerce a.button.alt:hover,
468 + .woocommerce button.button.alt:hover,
469 + .woocommerce input.button.alt:hover,
470 + .woocommerce #review_form #respond .form-submit input:hover,
471 + .woocommerce #respond input#submit:hover,
472 + .woocommerce a.button:hover,
473 + .woocommerce button.button:hover,
474 + .woocommerce input.button:hover {
475 + color: #fff;
476 + background-color: #333333;
477 + border-color: #333333;
478 + }
479 + .btn-secondary:active,
480 + .btn-secondary:not(:disabled):not(:disabled):active {
481 + color: #fff;
482 + background-color: #333333;
483 + border-color: #333333;
484 + }
485 +
486 + .btn-primary-outlined {
487 + color: #014582;
488 + background-color: transparent;
489 + border-color: #014582;
490 + }
491 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
492 + color: #014582;
493 + background-color: transparent;
494 + border-color: #014582;
495 + }
496 + .btn-primary-outlined:hover {
497 + color: #fff;
498 + background-color: #24348c;
499 + border-color: #24348c;
500 + }
501 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
502 + color: #014582;
503 + background-color: rgba(26, 26, 26, 0);
504 + border-color: #24348c;
505 + }
506 +
507 + .btn-secondary-outlined {
508 + color: #2ea7b2;
509 + background-color: transparent;
510 + border-color: #2ea7b2;
511 + }
512 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
513 + color: #2ea7b2;
514 + background-color: transparent;
515 + border-color: #2ea7b2;
516 + }
517 + .btn-secondary-outlined:hover {
518 + color: #fff;
519 + background-color: #333333;
520 + border-color: #333333;
521 + }
522 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
523 + color: #2ea7b2;
524 + background-color: rgba(26, 26, 26, 0);
525 + border-color: #333333;
526 + }
527 +
528 + .btn-call {
529 + color: #2ea7b2;
530 + background-color: transparent;
531 + border-color: #2ea7b2;
532 + }
533 + .btn-call:focus, .btn-call:focus:active {
534 + color: #2ea7b2;
535 + background-color: transparent;
536 + border-color: #2ea7b2;
537 + }
538 + .btn-call:hover {
539 + color: #2ea7b2;
540 + background-color: rgba(26, 26, 26, 0);
541 + border-color: #333333;
542 + }
543 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
544 + color: #2ea7b2;
545 + background-color: rgba(26, 26, 26, 0);
546 + border-color: #333333;
547 + }
548 + .icon-delete .btn-loader:after{
549 + border-color: #014582 transparent #014582 transparent
550 + }
551 +
552 + .header-v1 {
553 + background-color: #004274;
554 + border-bottom: 1px solid #004274;
555 + }
556 +
557 + .header-v1 a.nav-link {
558 + color: #ffffff;
559 + }
560 +
561 + .header-v1 a.nav-link:hover,
562 + .header-v1 a.nav-link:active {
563 + color: #00aeff;
564 + background-color: rgba(255,255,255,0.2);
565 + }
566 + .header-desktop .main-nav .nav-link {
567 + letter-spacing: 0.0px;
568 + }
569 +
570 + .header-v2 .header-top,
571 + .header-v5 .header-top,
572 + .header-v2 .header-contact-wrap {
573 + background-color: #ffffff;
574 + }
575 +
576 + .header-v2 .header-bottom,
577 + .header-v5 .header-bottom {
578 + background-color: #004274;
579 + }
580 +
581 + .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 {
582 + color: #004274;
583 + }
584 +
585 + .header-v2 .header-contact-left {
586 + color: #004274;
587 + }
588 +
589 + .header-v2 .header-bottom,
590 + .header-v2 .navbar-nav > li,
591 + .header-v2 .navbar-nav > li:first-of-type,
592 + .header-v5 .header-bottom,
593 + .header-v5 .navbar-nav > li,
594 + .header-v5 .navbar-nav > li:first-of-type {
595 + border-color: rgba(255,255,255,0.2);
596 + }
597 +
598 + .header-v2 a.nav-link,
599 + .header-v5 a.nav-link {
600 + color: #ffffff;
601 + }
602 +
603 + .header-v2 a.nav-link:hover,
604 + .header-v2 a.nav-link:active,
605 + .header-v5 a.nav-link:hover,
606 + .header-v5 a.nav-link:active {
607 + color: #00aeff;
608 + background-color: rgba(255,255,255,0.2);
609 + }
610 +
611 + .header-v2 .header-contact-right a:hover,
612 + .header-v2 .header-contact-right a:active,
613 + .header-v3 .header-contact-right a:hover,
614 + .header-v3 .header-contact-right a:active {
615 + background-color: transparent;
616 + }
617 +
618 + .header-v2 .header-social-icons a,
619 + .header-v5 .header-social-icons a {
620 + color: #004274;
621 + }
622 +
623 + .header-v3 .header-top {
624 + background-color: #ffffff;
625 + }
626 +
627 + .header-v3 .header-bottom {
628 + background-color: #004272;
629 + }
630 +
631 + .header-v3 .header-contact,
632 + .header-v3-mobile {
633 + background-color: #00aeef;
634 + color: #ffffff;
635 + }
636 +
637 + .header-v3 .header-bottom,
638 + .header-v3 .login-register,
639 + .header-v3 .navbar-nav > li,
640 + .header-v3 .navbar-nav > li:first-of-type {
641 + border-color: ;
642 + }
643 +
644 + .header-v3 a.nav-link,
645 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
646 + color: #003a6b;
647 + }
648 +
649 + .header-v3 a.nav-link:hover,
650 + .header-v3 a.nav-link:active {
651 + color: #00aeff;
652 + background-color: rgba(26,94,158,1);
653 + }
654 +
655 + .header-v3 .header-social-icons a {
656 + color: #FFFFFF;
657 + }
658 +
659 + .header-v4 {
660 + background-color: #000000;
661 + }
662 +
663 + .header-v4 a.nav-link {
664 + color: #ffffff;
665 + }
666 +
667 + .header-v4 a.nav-link:hover,
668 + .header-v4 a.nav-link:active {
669 + color: #00aeff;
670 + background-color: rgba(0, 174, 255, 0.1);
671 + }
672 +
673 + .header-v6 .header-top {
674 + background-color: #00AEEF;
675 + }
676 +
677 + .header-v6 a.nav-link {
678 + color: #FFFFFF;
679 + }
680 +
681 + .header-v6 a.nav-link:hover,
682 + .header-v6 a.nav-link:active {
683 + color: #00aeff;
684 + background-color: rgba(255,255,255,0.2);
685 + }
686 +
687 + .header-v6 .header-social-icons a {
688 + color: #FFFFFF;
689 + }
690 +
691 + .header-mobile {
692 + background-color: #ffffff;
693 + }
694 + .header-mobile .toggle-button-left,
695 + .header-mobile .toggle-button-right {
696 + color: #0b0049;
697 + }
698 +
699 + .nav-mobile .logged-in-nav a,
700 + .nav-mobile .main-nav,
701 + .nav-mobile .navi-login-register {
702 + background-color: #ffffff;
703 + }
704 +
705 + .nav-mobile .logged-in-nav a,
706 + .nav-mobile .main-nav .nav-item .nav-item a,
707 + .nav-mobile .main-nav .nav-item a,
708 + .navi-login-register .main-nav .nav-item a {
709 + color: #000000;
710 + border-bottom: 1px solid #000000;
711 + background-color: #ffffff;
712 + }
713 +
714 + .nav-mobile .btn-create-listing,
715 + .navi-login-register .btn-create-listing {
716 + color: #fff;
717 + border: 1px solid #014582;
718 + background-color: #014582;
719 + }
720 +
721 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
722 + .navi-login-register .btn-create-listing:hover,
723 + .navi-login-register .btn-create-listing:active {
724 + color: #fff;
725 + border: 1px solid #014582;
726 + background-color: rgba(0, 174, 255, 0.65);
727 + }
728 +
729 + .header-transparent-wrap .header-v4 {
730 + background-color: transparent;
731 + border-bottom: 1px none rgba(255,255,255,0.3);
732 + }
733 +
734 + .header-transparent-wrap .header-v4 a {
735 + color: #ffffff;
736 + }
737 +
738 + .header-transparent-wrap .header-v4 a:hover,
739 + .header-transparent-wrap .header-v4 a:active {
740 + color: #4aa7e1;
741 + background-color: rgba(255, 255, 255, 0.1);
742 + }
743 +
744 + .main-nav .navbar-nav .nav-item .dropdown-menu,
745 + .login-register .login-register-nav li .dropdown-menu {
746 + background-color: rgba(255,255,255,0.95);
747 + }
748 +
749 + .login-register .login-register-nav li .dropdown-menu:before {
750 + border-left-color: rgba(255,255,255,0.95);
751 + border-top-color: rgba(255,255,255,0.95);
752 + }
753 +
754 + .main-nav .navbar-nav .nav-item .nav-item a,
755 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
756 + color: #888888;
757 + border-bottom: 1px solid #e6e6e6;
758 + }
759 +
760 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
761 + .main-nav .navbar-nav .nav-item .nav-item a:active,
762 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
763 + color: #4aa7e1;
764 + }
765 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
766 + .main-nav .navbar-nav .nav-item .nav-item a:active,
767 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
768 + background-color: rgba(0, 174, 255, 0.1);
769 + }
770 +
771 + .header-main-wrap .btn-create-listing {
772 + color: #4aa7e1;
773 + border: 1px solid #4aa7e1;
774 + background-color: #ffffff;
775 + }
776 +
777 + .header-main-wrap .btn-create-listing:hover,
778 + .header-main-wrap .btn-create-listing:active {
779 + color: rgba(255,255,255,1);
780 + border: 1px solid #4aa7e1;
781 + background-color: rgba(74,167,225,1);
782 + }
783 +
784 + .header-transparent-wrap .header-v4 .btn-create-listing {
785 + color: #ffffff;
786 + border: 1px solid #ffffff;
787 + background-color: rgba(255,255,255,0.2);
788 + }
789 +
790 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
791 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
792 + color: rgba(255,255,255,1);
793 + border: 1px solid #4aa7e1;
794 + background-color: rgba(74,167,225,1);
795 + }
796 +
797 + .header-transparent-wrap .logged-in-nav a,
798 + .logged-in-nav a {
799 + color: #15268c;
800 + border-color: #e6e6e6;
801 + background-color: #FFFFFF;
802 + }
803 +
804 + .header-transparent-wrap .logged-in-nav a:hover,
805 + .header-transparent-wrap .logged-in-nav a:active,
806 + .logged-in-nav a:hover,
807 + .logged-in-nav a:active {
808 + color: #17298c;
809 + background-color: rgba(204,204,204,0.15);
810 + border-color: #e6e6e6;
811 + }
812 +
813 + .form-control::-webkit-input-placeholder,
814 + .search-banner-wrap ::-webkit-input-placeholder,
815 + .advanced-search ::-webkit-input-placeholder,
816 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
817 + .overlay-search-advanced-module ::-webkit-input-placeholder {
818 + color: #a1a7a8;
819 + }
820 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
821 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
822 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
823 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
824 + color: #a1a7a8;
825 + }
826 + .form-control::placeholder,
827 + .search-banner-wrap ::-webkit-input-placeholder,
828 + .advanced-search ::-webkit-input-placeholder,
829 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
830 + .overlay-search-advanced-module ::-webkit-input-placeholder {
831 + color: #a1a7a8;
832 + }
833 +
834 + .search-banner-wrap ::-moz-placeholder,
835 + .advanced-search ::-moz-placeholder,
836 + .advanced-search-banner-wrap ::-moz-placeholder,
837 + .overlay-search-advanced-module ::-moz-placeholder {
838 + color: #a1a7a8;
839 + }
840 +
841 + .search-banner-wrap :-ms-input-placeholder,
842 + .advanced-search :-ms-input-placeholder,
843 + .advanced-search-banner-wrap ::-ms-input-placeholder,
844 + .overlay-search-advanced-module ::-ms-input-placeholder {
845 + color: #a1a7a8;
846 + }
847 +
848 + .search-banner-wrap :-moz-placeholder,
849 + .advanced-search :-moz-placeholder,
850 + .advanced-search-banner-wrap :-moz-placeholder,
851 + .overlay-search-advanced-module :-moz-placeholder {
852 + color: #a1a7a8;
853 + }
854 +
855 + .advanced-search .form-control,
856 + .advanced-search .bootstrap-select > .btn,
857 + .location-trigger,
858 + .vertical-search-wrap .form-control,
859 + .vertical-search-wrap .bootstrap-select > .btn,
860 + .step-search-wrap .form-control,
861 + .step-search-wrap .bootstrap-select > .btn,
862 + .advanced-search-banner-wrap .form-control,
863 + .advanced-search-banner-wrap .bootstrap-select > .btn,
864 + .search-banner-wrap .form-control,
865 + .search-banner-wrap .bootstrap-select > .btn,
866 + .overlay-search-advanced-module .form-control,
867 + .overlay-search-advanced-module .bootstrap-select > .btn,
868 + .advanced-search-v2 .advanced-search-btn,
869 + .advanced-search-v2 .advanced-search-btn:hover {
870 + border-color: #cccccc;
871 + }
872 +
873 + .advanced-search-nav,
874 + .search-expandable,
875 + .overlay-search-advanced-module {
876 + background-color: #FFFFFF;
877 + }
878 + .btn-search {
879 + color: #ffffff;
880 + background-color: #4aa7e1;
881 + border-color: #4aa7e1;
882 + }
883 + .btn-search:hover, .btn-search:active {
884 + color: #ffffff;
885 + background-color: #24348c;
886 + border-color: #24348c;
887 + }
888 + .advanced-search-btn {
889 + color: #666666;
890 + background-color: #ffffff;
891 + border-color: #dce0e0;
892 + }
893 + .advanced-search-btn:hover, .advanced-search-btn:active {
894 + color: #000000;
895 + background-color: #ffffff;
896 + border-color: #dce0e0;
897 + }
898 + .advanced-search-btn:focus {
899 + color: #666666;
900 + background-color: #ffffff;
901 + border-color: #dce0e0;
902 + }
903 + .search-expandable-label {
904 + color: #ffffff;
905 + background-color: #4aa7e1;
906 + }
907 + .advanced-search-nav {
908 + padding-top: 10px;
909 + padding-bottom: 10px;
910 + }
911 + .features-list-wrap .control--checkbox,
912 + .features-list-wrap .control--radio,
913 + .range-text,
914 + .features-list-wrap .control--checkbox,
915 + .features-list-wrap .btn-features-list,
916 + .overlay-search-advanced-module .search-title,
917 + .overlay-search-advanced-module .overlay-search-module-close {
918 + color: #222222;
919 + }
920 + .advanced-search-half-map {
921 + background-color: #FFFFFF;
922 + }
923 + .advanced-search-half-map .range-text,
924 + .advanced-search-half-map .features-list-wrap .control--checkbox,
925 + .advanced-search-half-map .features-list-wrap .btn-features-list {
926 + color: #222222;
927 + }
928 +
929 + .save-search-btn {
930 + border-color: #4aa7e1 ;
931 + background-color: #4aa7e1 ;
932 + color: #ffffff ;
933 + }
934 + .save-search-btn:hover,
935 + .save-search-btn:active {
936 + border-color: #4aa7e1;
937 + background-color: #4aa7e1 ;
938 + color: #ffffff ;
939 + }
940 + .label-featured {
941 + background-color: transparent;
942 + color: #ffffff;
943 + }
944 +
945 + .dashboard-side-wrap {
946 + background-color: #24348c;
947 + }
948 +
949 + .side-menu a {
950 + color: #ffffff;
951 + }
952 +
953 + .side-menu a.active,
954 + .side-menu .side-menu-parent-selected > a,
955 + .side-menu-dropdown a,
956 + .side-menu a:hover {
957 + color: #4aa7e1;
958 + }
959 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
960 + color: #4aa7e1
961 + }
962 +
963 + .detail-wrap {
964 + background-color: rgba(217,217,217,0.1);
965 + border-color: #d6d6d6;
966 + }
967 + .top-bar-wrap,
968 + .top-bar-wrap .dropdown-menu,
969 + .switcher-wrap .dropdown-menu {
970 + background-color: #262626;
971 + }
972 + .top-bar-wrap a,
973 + .top-bar-contact,
974 + .top-bar-slogan,
975 + .top-bar-wrap .btn,
976 + .top-bar-wrap .dropdown-menu,
977 + .switcher-wrap .dropdown-menu,
978 + .top-bar-wrap .navbar-toggler {
979 + color: #ffffff;
980 + }
981 + .top-bar-wrap a:hover,
982 + .top-bar-wrap a:active,
983 + .top-bar-wrap .btn:hover,
984 + .top-bar-wrap .btn:active,
985 + .top-bar-wrap .dropdown-menu li:hover,
986 + .top-bar-wrap .dropdown-menu li:active,
987 + .switcher-wrap .dropdown-menu li:hover,
988 + .switcher-wrap .dropdown-menu li:active {
989 + color: rgba(74,167,225,0.59);
990 + }
991 + .class-energy-indicator:nth-child(1) {
992 + background-color: #33a357;
993 + }
994 + .class-energy-indicator:nth-child(2) {
995 + background-color: #79b752;
996 + }
997 + .class-energy-indicator:nth-child(3) {
998 + background-color: #c3d545;
999 + }
1000 + .class-energy-indicator:nth-child(4) {
1001 + background-color: #fff12c;
1002 + }
1003 + .class-energy-indicator:nth-child(5) {
1004 + background-color: #edb731;
1005 + }
1006 + .class-energy-indicator:nth-child(6) {
1007 + background-color: #d66f2c;
1008 + }
1009 + .class-energy-indicator:nth-child(7) {
1010 + background-color: #cc232a;
1011 + }
1012 + .class-energy-indicator:nth-child(8) {
1013 + background-color: #cc232a;
1014 + }
1015 + .class-energy-indicator:nth-child(9) {
1016 + background-color: #cc232a;
1017 + }
1018 + .class-energy-indicator:nth-child(10) {
1019 + background-color: #cc232a;
1020 + }
1021 +
1022 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#24348c }
1023 + .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 }
1024 +
1025 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#4aa7e1 }
1026 +
1027 + .footer-top-wrap {
1028 + background-color: #181818;
1029 + }
1030 +
1031 + .footer-bottom-wrap {
1032 + background-color: #000000;
1033 + }
1034 +
1035 + .footer-top-wrap,
1036 + .footer-top-wrap a,
1037 + .footer-bottom-wrap,
1038 + .footer-bottom-wrap a,
1039 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
1040 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
1041 + .footer-top-wrap .blog-post-content-widget h4 a,
1042 + .footer-top-wrap .blog-post-content-widget,
1043 + .footer-top-wrap .form-tools .control,
1044 + .footer-top-wrap .slick-dots li.slick-active button:before,
1045 + .footer-top-wrap .slick-dots li button::before,
1046 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
1047 + color: #ffffff;
1048 + }
1049 +
1050 + .footer-top-wrap a:hover,
1051 + .footer-bottom-wrap a:hover,
1052 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
1053 + color: rgba(36,52,140,1);
1054 + }
1055 + .houzez-osm-cluster {
1056 + background-image: url(https://immeublesalexcellence.com/wp-content/themes/houzez/img/map/cluster-icon.png);
1057 + text-align: center;
1058 + color: #fff;
1059 + width: 48px;
1060 + height: 48px;
1061 + line-height: 48px;
1062 + }
1063 + section.top-banner-wrap.slider-revolution-wrap {
1064 + height: auto;
1065 +}
1066 +.label-status {
1067 + font-size: 14px;
1068 + text-transform: uppercase; /* Optionnel : Met les étiquettes en majuscules */
1069 +}
1070 +.hz-label {
1071 + font-size: 14px; /* Ajustez la taille selon vos besoins */
1072 + font-weight: bold; /* Rend le texte en gras */
1073 + color: #ffffff; /* Couleur du texte */
1074 + background-color: #166584; /* Couleur de fond */
1075 + padding: 5px 10px; /* Espacement interne */
1076 + border-radius: 3px; /* Coins arrondis */
1077 +}
1078 +</style>
1079 +<link rel='stylesheet' id='leaflet-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/js//vendors/leaflet/leaflet.css?ver=1.9.3' type='text/css' media='all' />
1080 +<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /></noscript><link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap&#038;ver=6.7.5' type='text/css' media='all' />
1081 +<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.27.1" id="font-awesome-4-shim-js"></script>
1082 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
1083 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
1084 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/js/houzez-studio-public.js?ver=1.2.1" id="houzez-studio-js"></script>
1085 +<link rel="https://api.w.org/" href="https://immeublesalexcellence.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://immeublesalexcellence.com/wp-json/wp/v2/properties/3216" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://immeublesalexcellence.com/xmlrpc.php?rsd" />
1086 +<meta name="generator" content="WordPress 6.7.5" />
1087 +<link rel='shortlink' href='https://immeublesalexcellence.com/?p=3216' />
1088 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F" />
1089 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&#038;format=xml" />
1090 +<meta name="generator" content="Redux 4.5.6" /> <style>.cmplz-hidden {
1091 + display: none !important;
1092 + }</style><meta name="generator" content="Elementor 3.27.1; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
1093 + <style>
1094 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1095 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1096 + background-image: none !important;
1097 + }
1098 + @media screen and (max-height: 1024px) {
1099 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1100 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1101 + background-image: none !important;
1102 + }
1103 + }
1104 + @media screen and (max-height: 640px) {
1105 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1106 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1107 + background-image: none !important;
1108 + }
1109 + }
1110 + </style>
1111 + <meta name="generator" content="Powered by Slider Revolution 6.7.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
1112 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-32x32.png" sizes="32x32" />
1113 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-192x192.png" sizes="192x192" />
1114 +<link rel="apple-touch-icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-180x180.png" />
1115 +<meta name="msapplication-TileImage" content="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-270x270.png" />
1116 +<script>function setREVStartSize(e){
1117 + //window.requestAnimationFrame(function() {
1118 + window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
1119 + window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
1120 + try {
1121 + var pw = document.getElementById(e.c).parentNode.offsetWidth,
1122 + newh;
1123 + pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw;
1124 + e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
1125 + e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
1126 + e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
1127 + e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
1128 + e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
1129 + e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
1130 + e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
1131 + if(e.layout==="fullscreen" || e.l==="fullscreen")
1132 + newh = Math.max(e.mh,window.RSIH);
1133 + else{
1134 + e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
1135 + for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
1136 + e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
1137 + e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
1138 + for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
1139 +
1140 + var nl = new Array(e.rl.length),
1141 + ix = 0,
1142 + sl;
1143 + e.tabw = e.tabhide>=pw ? 0 : e.tabw;
1144 + e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
1145 + e.tabh = e.tabhide>=pw ? 0 : e.tabh;
1146 + e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
1147 + for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
1148 + sl = nl[0];
1149 + for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
1150 + var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
1151 + newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
1152 + }
1153 + var el = document.getElementById(e.c);
1154 + if (el!==null && el) el.style.height = newh+"px";
1155 + el = document.getElementById(e.c+"_wrapper");
1156 + if (el!==null && el) {
1157 + el.style.height = newh+"px";
1158 + el.style.display = "block";
1159 + }
1160 + } catch(e){
1161 + console.log("Failure at Presize of Slider:" + e)
1162 + }
1163 + //});
1164 + };</script>
1165 +</head>
1166 +
1167 +<body data-cmplz=2 class="property-template-default single single-property postid-3216 houzez-theme houzez-footer-position transparent- houzez-header- elementor-default elementor-kit-6">
1168 +
1169 +
1170 + <div class="nav-mobile nav-mobile-js">
1171 + <div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile">
1172 + <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://immeublesalexcellence.com/">Accueil</a> </li>
1173 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1174 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1175 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1176 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1177 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1178 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1179 +</ul> </div><!-- main-nav -->
1180 + <nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user">
1181 +
1182 +
1183 +
1184 + </nav><!-- .navi -->
1185 +
1186 +
1187 +
1188 +</div><!-- nav-mobile -->
1189 + <main id="main-wrap" class="main-wrap main-wrap-js">
1190 +
1191 + <header class="header-main-wrap ">
1192 + <div class="top-bar-wrap ">
1193 + <div class="container">
1194 + <div class="d-flex justify-content-between">
1195 + <div class="top-bar-left-wrap">
1196 + <div class="header-social-icons">
1197 + <ul class="list-inline">
1198 +
1199 + <li class="list-inline-item">
1200 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1201 + <i class="houzez-icon icon-social-media-facebook"></i>
1202 + </a>
1203 + </li>
1204 +
1205 +
1206 +
1207 +
1208 +
1209 +
1210 +
1211 +
1212 + <li class="list-inline-item">
1213 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1214 + <i class="houzez-icon icon-social-instagram"></i>
1215 + </a>
1216 + </li>
1217 +
1218 +
1219 +
1220 +
1221 + </ul>
1222 +</div><!-- .header-social-icons -->
1223 + </div><!-- top-bar-left-wrap -->
1224 +
1225 + <div class="top-bar-right-wrap">
1226 + <div class="top-bar-contact">
1227 +
1228 + </div><!-- top-bar-contact --> </div><!-- top-bar-right-wrap -->
1229 + </div><!-- d-flex -->
1230 + </div><!-- container -->
1231 +</div><!-- top-bar-wrap --><div class="header-desktop header-v2">
1232 + <div class="header-top">
1233 + <div class="container">
1234 + <div class="header-inner-wrap">
1235 + <div class="navbar d-flex align-items-center">
1236 +
1237 +
1238 + <div class="logo logo-desktop">
1239 + <a href="https://immeublesalexcellence.com/">
1240 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="66,5px" width="218px" alt="logo">
1241 + </a>
1242 + </div>
1243 +
1244 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1245 +
1246 +
1247 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1248 + <div class="header-contact-left">
1249 + <i class="houzez-icon icon-phone ml-1"></i>
1250 + </div><!-- header-contact-left -->
1251 + <div class="header-contact-right">
1252 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1253 + <div><a href="mailto:"></a></div>
1254 + </div><!-- .header-contact-right -->
1255 + </div><!-- .header-contact -->
1256 +
1257 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1258 + <div class="header-contact-left">
1259 + <i class="houzez-icon icon-pin ml-1"></i>
1260 + </div><!-- header-contact-left -->
1261 + <div class="header-contact-right">
1262 + <div>1025, rue des Seigneurs, #301</div>
1263 + <div>Sherbrooke (Québec) J1H 5V3</div>
1264 + </div><!-- .header-contact-right -->
1265 + </div><!-- .header-contact -->
1266 +
1267 +
1268 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1269 + <div class="header-contact-left">
1270 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1271 + </div><!-- header-contact-left -->
1272 + <div class="header-contact-right">
1273 + <div>8 h 30 à 16 h 30</div>
1274 + <div>Lundi au jeudi</div>
1275 + </div><!-- .header-contact-right -->
1276 + </div><!-- .header-contact -->
1277 +
1278 +
1279 + <div class="header-contact header-contact-4 d-flex align-items-center">
1280 + <div class="header-social-icons">
1281 + <ul class="list-inline">
1282 +
1283 + <li class="list-inline-item">
1284 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1285 + <i class="houzez-icon icon-social-media-facebook"></i>
1286 + </a>
1287 + </li>
1288 +
1289 +
1290 +
1291 +
1292 +
1293 +
1294 +
1295 +
1296 + <li class="list-inline-item">
1297 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1298 + <i class="houzez-icon icon-social-instagram"></i>
1299 + </a>
1300 + </li>
1301 +
1302 +
1303 +
1304 +
1305 + </ul>
1306 +</div><!-- .header-social-icons -->
1307 + </div><!-- .header-contact -->
1308 +</div><!-- .header-contact-wrap -->
1309 +
1310 +
1311 + </div><!-- navbar -->
1312 + </div>
1313 + </div>
1314 + </div><!-- .header-top -->
1315 + <div id="header-section" class="header-bottom" data-sticky="1">
1316 + <div class="container">
1317 + <div class="header-inner-wrap">
1318 + <div class="navbar d-flex align-items-center">
1319 +
1320 + <nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1">
1321 + <ul id="main-nav" class="navbar-nav "><li id="menu-item-1535" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home nav-item menu-item-1535 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/">Accueil</a> </li>
1322 +<li id="menu-item-1809" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1809 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1323 +<li id="menu-item-1771" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1771 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1324 +<li id="menu-item-2352" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2352 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1325 +<li id="menu-item-2432" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2432 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1326 +<li id="menu-item-2426" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2426 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1327 +<li id="menu-item-2466" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2466 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1328 +</ul> </nav><!-- main-nav -->
1329 +
1330 + <div class="login-register on-hover-menu">
1331 + <ul class="login-register-nav dropdown d-flex align-items-center">
1332 +
1333 +
1334 +
1335 +
1336 +
1337 +
1338 + </ul>
1339 +</div>
1340 + </div><!-- navbar -->
1341 + </div>
1342 + </div>
1343 + </div><!-- .header-bottom -->
1344 +</div><!-- .header-v2 -->
1345 +
1346 +<div class="header-v2 header-v2-mobile">
1347 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1348 +
1349 +
1350 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1351 + <div class="header-contact-left">
1352 + <i class="houzez-icon icon-phone ml-1"></i>
1353 + </div><!-- header-contact-left -->
1354 + <div class="header-contact-right">
1355 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1356 + <div><a href="mailto:"></a></div>
1357 + </div><!-- .header-contact-right -->
1358 + </div><!-- .header-contact -->
1359 +
1360 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1361 + <div class="header-contact-left">
1362 + <i class="houzez-icon icon-pin ml-1"></i>
1363 + </div><!-- header-contact-left -->
1364 + <div class="header-contact-right">
1365 + <div>1025, rue des Seigneurs, #301</div>
1366 + <div>Sherbrooke (Québec) J1H 5V3</div>
1367 + </div><!-- .header-contact-right -->
1368 + </div><!-- .header-contact -->
1369 +
1370 +
1371 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1372 + <div class="header-contact-left">
1373 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1374 + </div><!-- header-contact-left -->
1375 + <div class="header-contact-right">
1376 + <div>8 h 30 à 16 h 30</div>
1377 + <div>Lundi au jeudi</div>
1378 + </div><!-- .header-contact-right -->
1379 + </div><!-- .header-contact -->
1380 +
1381 +
1382 + <div class="header-contact header-contact-4 d-flex align-items-center">
1383 + <div class="header-social-icons">
1384 + <ul class="list-inline">
1385 +
1386 + <li class="list-inline-item">
1387 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1388 + <i class="houzez-icon icon-social-media-facebook"></i>
1389 + </a>
1390 + </li>
1391 +
1392 +
1393 +
1394 +
1395 +
1396 +
1397 +
1398 +
1399 + <li class="list-inline-item">
1400 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1401 + <i class="houzez-icon icon-social-instagram"></i>
1402 + </a>
1403 + </li>
1404 +
1405 +
1406 +
1407 +
1408 + </ul>
1409 +</div><!-- .header-social-icons -->
1410 + </div><!-- .header-contact -->
1411 +</div><!-- .header-contact-wrap -->
1412 +
1413 +
1414 +
1415 +</div><!-- header-v2-mobile --><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky="">
1416 + <div class="header-mobile-left">
1417 + <button class="btn toggle-button-left">
1418 + <i class="houzez-icon icon-navigation-menu"></i>
1419 + </button><!-- toggle-button-left -->
1420 + </div><!-- .header-mobile-left -->
1421 + <div class="header-mobile-center flex-grow-1">
1422 + <div class="logo logo-mobile">
1423 + <a href="https://immeublesalexcellence.com/">
1424 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="39" width="127" alt="Mobile logo">
1425 + </a>
1426 +</div> </div>
1427 +
1428 + <div class="header-mobile-right">
1429 + </div><!-- .header-mobile-right -->
1430 +
1431 +</div><!-- header-mobile --></header><!-- .header-main-wrap -->
1432 +
1433 + <section class="content-wrap property-wrap property-detail-v6 ">
1434 + <div class="property-navigation-wrap">
1435 + <div class="container-fluid">
1436 + <ul class="property-navigation list-unstyled d-flex justify-content-between">
1437 + <li class="property-navigation-item">
1438 + <a class="back-top" href="#main-wrap">
1439 + <i class="houzez-icon icon-arrow-button-circle-up"></i>
1440 + </a>
1441 + </li>
1442 + <li class="property-navigation-item">
1443 + <a class="target" href="#property-description-wrap">Description du loyer</a>
1444 + </li>
1445 + </ul>
1446 + </div><!-- container -->
1447 +</div><!-- property-navigation-wrap -->
1448 +<div class="page-title-wrap">
1449 + <div class="container">
1450 + <div class="d-flex align-items-center">
1451 +
1452 +<div class="breadcrumb-wrap">
1453 + <nav>
1454 + <ol class="breadcrumb"><li class="breadcrumb-item breadcrumb-item-home"><i class="houzez-icon icon-house"></i><a href="https://immeublesalexcellence.com/">Accueil</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/"> 1er janvier 2027</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/a-louer/"> À LOUER</a></li><li class="breadcrumb-item active">4½ à louer à Sherbrooke – Secteur Mont-Bellevue &amp; Université</li></ol> </nav>
1455 +</div><!-- breadcrumb-wrap --> <ul class="item-tools">
1456 +
1457 + <li class="item-tool houzez-favorite">
1458 + <span class="add-favorite-js item-tool-favorite" data-listid="3216">
1459 + <i class="houzez-icon icon-love-it "></i>
1460 + </span><!-- item-tool-favorite -->
1461 + </li><!-- item-tool -->
1462 +
1463 + <li class="item-tool houzez-share">
1464 + <span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1465 + <i class="houzez-icon icon-share"></i>
1466 + </span><!-- item-tool-favorite -->
1467 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1468 +
1469 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F">
1470 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1471 +
1472 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F06%2Flocation-logement-condo-4demi-Sherbrooke-1-1024x768.jpg&amp;description=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1473 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1474 +
1475 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&amp;t=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1476 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1477 +</a>
1478 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1479 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1480 +</a>
1481 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&title=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1482 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1483 +</a>
1484 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=4½ à louer à Sherbrooke – Secteur Mont-Bellevue &amp; Université&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F">
1485 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1486 +</a> </div>
1487 + </li><!-- item-tool -->
1488 +
1489 + <li class="item-tool houzez-print " data-propid="3216">
1490 + <span class="item-tool-compare">
1491 + <i class="houzez-icon icon-print-text"></i>
1492 + </span><!-- item-tool-compare -->
1493 + </li><!-- item-tool -->
1494 + </ul><!-- item-tools -->
1495 + </div><!-- d-flex -->
1496 + <div class="d-flex align-items-center property-title-price-wrap">
1497 + <div class="page-title">
1498 + <h1>4½ à louer à Sherbrooke – Secteur Mont-Bellevue &amp; Université</h1>
1499 +</div><!-- page-title --> <ul class="item-price-wrap hide-on-list">
1500 + <li class="item-price">1,100$/par mois</li></ul> </div><!-- d-flex -->
1501 + <div class="property-labels-wrap">
1502 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1503 + 1er janvier 2027
1504 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1505 + À LOUER
1506 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
1507 +
1508 + </a> </div>
1509 + <address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>1855 rue André Sherbrooke (Québec) J1H 0G7, Sherbrooke</address> </div><!-- container -->
1510 +</div><!-- page-title-wrap --><div class="property-top-wrap">
1511 + <div class="property-banner">
1512 + <div class="visible-on-mobile">
1513 + <div class="tab-content" id="pills-tabContent">
1514 +
1515 + <div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1.jpg);">
1516 + <div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 12</div>
1517 + <a class="property-banner-trigger" data-toggle="modal" data-target="#property-lightbox" href="#"></a>
1518 + </div>
1519 +
1520 +
1521 +
1522 +
1523 +
1524 +
1525 +
1526 + </div><!-- tab-content -->
1527 + </div><!-- visible-on-mobile -->
1528 +
1529 + <div class="container hidden-on-mobile">
1530 + <div class="row">
1531 + <div class="col-md-8">
1532 + <a href="#" data-slider-no="1" data-image="0" class="houzez-trigger-popup-slider-js img-wrap-1" data-toggle="modal" data-target="#property-lightbox">
1533 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-2-1067x785.jpg" alt="">
1534 + </a>
1535 + </div><!-- col-md-8 -->
1536 +
1537 + <div class="col-md-4">
1538 + <a href="#" data-slider-no="2" data-image="1" data-toggle="modal" data-target="#property-lightbox" class="houzez-trigger-popup-slider-js swipebox img-wrap-2">
1539 +
1540 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-3-1067x785.jpg" alt="">
1541 + </a>
1542 +
1543 + <a href="#" data-slider-no="3" data-image="2" data-toggle="modal" data-target="#property-lightbox" class="houzez-trigger-popup-slider-js swipebox img-wrap-3">
1544 + <div class="img-wrap-3-text"><i class="houzez-icon icon-picture-sun mr-1"></i> 9 photos, voir plus </div>
1545 +
1546 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-4-1067x785.jpg" alt="">
1547 + </a>
1548 + </div><!-- col-md-4 -->
1549 + <a href="#" class="img-wrap-1 gallery-hidden">
1550 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-5-1067x785.jpg" alt="">
1551 + </a>
1552 + <a href="#" class="img-wrap-1 gallery-hidden">
1553 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-6.jpg" alt="">
1554 + </a>
1555 + <a href="#" class="img-wrap-1 gallery-hidden">
1556 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-7-1067x785.jpg" alt="">
1557 + </a>
1558 + <a href="#" class="img-wrap-1 gallery-hidden">
1559 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-8-1067x785.jpg" alt="">
1560 + </a>
1561 + <a href="#" class="img-wrap-1 gallery-hidden">
1562 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-9-1067x785.jpg" alt="">
1563 + </a>
1564 + <a href="#" class="img-wrap-1 gallery-hidden">
1565 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-10-1067x785.jpg" alt="">
1566 + </a>
1567 + <a href="#" class="img-wrap-1 gallery-hidden">
1568 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-11.jpg" alt="">
1569 + </a>
1570 + <a href="#" class="img-wrap-1 gallery-hidden">
1571 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-12-1067x785.jpg" alt="">
1572 + </a>
1573 + <a href="#" class="img-wrap-1 gallery-hidden">
1574 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-13-1067x785.jpg" alt="">
1575 + </a>
1576 +
1577 + <div class="col-md-12">
1578 + <div class="block-wrap">
1579 + <div class="d-flex property-overview-data">
1580 + <ul class="list-unstyled flex-fill">
1581 + <li class="property-overview-item"><strong>Loyer 4½</strong></li>
1582 + <li class="hz-meta-label property-overview-type">Nombre pièce</li>
1583 +
1584 + </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 à coucher</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">Chambre de bain</li></ul> </div><!-- d-flex -->
1585 + </div><!-- block-wrap -->
1586 + </div><!-- col-md-12 -->
1587 + </div><!-- row -->
1588 + </div><!-- hidden-on-mobile -->
1589 + </div><!-- property-banner -->
1590 +
1591 +
1592 +</div><!-- property-top-wrap -->
1593 +
1594 + <div class="container">
1595 + <div class="row">
1596 + <div class="col-lg-12 col-md-12 bt-full-width-content-wrap">
1597 +
1598 + <div class="property-view">
1599 +
1600 + <div class="visible-on-mobile">
1601 + <div class="mobile-top-wrap">
1602 + <div class="mobile-property-tools houzez-media-tabs-3 clearfix">
1603 + <ul class="nav nav-pills" id="pills-tab" role="tablist">
1604 +
1605 + <li class="nav-item">
1606 + <a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1607 + <i class="houzez-icon icon-picture-sun"></i>
1608 + </a>
1609 + </li>
1610 + </ul><!-- nav --> <ul class="item-tools">
1611 +
1612 + <li class="item-tool houzez-favorite">
1613 + <span class="add-favorite-js item-tool-favorite" data-listid="3216">
1614 + <i class="houzez-icon icon-love-it "></i>
1615 + </span><!-- item-tool-favorite -->
1616 + </li><!-- item-tool -->
1617 +
1618 + <li class="item-tool houzez-share">
1619 + <span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1620 + <i class="houzez-icon icon-share"></i>
1621 + </span><!-- item-tool-favorite -->
1622 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1623 +
1624 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F">
1625 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1626 +
1627 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F06%2Flocation-logement-condo-4demi-Sherbrooke-1-1024x768.jpg&amp;description=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1628 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1629 +
1630 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&amp;t=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1631 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1632 +</a>
1633 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1634 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1635 +</a>
1636 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&title=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1637 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1638 +</a>
1639 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=4½ à louer à Sherbrooke – Secteur Mont-Bellevue &amp; Université&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F">
1640 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1641 +</a> </div>
1642 + </li><!-- item-tool -->
1643 +
1644 + <li class="item-tool houzez-print " data-propid="3216">
1645 + <span class="item-tool-compare">
1646 + <i class="houzez-icon icon-print-text"></i>
1647 + </span><!-- item-tool-compare -->
1648 + </li><!-- item-tool -->
1649 + </ul><!-- item-tools -->
1650 + </div><!-- mobile-property-tools -->
1651 + <div class="mobile-property-title clearfix">
1652 + <span class="labels-wrap labels-right">
1653 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1654 + 1er janvier 2027
1655 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1656 + À LOUER
1657 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
1658 +
1659 + </a>
1660 +</span>
1661 +
1662 + <div class="page-title">
1663 + <span class="item-title property-title-mobile">4½ à louer à Sherbrooke – Secteur Mont-Bellevue &amp; Université</span>
1664 +</div><!-- page-title -->
1665 + <address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>1855 rue André Sherbrooke (Québec) J1H 0G7, Sherbrooke</address> <ul class="item-price-wrap hide-on-list">
1666 + <li class="item-price">1,100$/par mois</li></ul>
1667 + </div><!-- mobile-property-title -->
1668 + </div><!-- mobile-top-wrap -->
1669 +</div><!-- visible-on-mobile -->
1670 + <div class="property-description-wrap property-section-wrap" id="property-description-wrap">
1671 + <div class="block-wrap">
1672 + <div class="block-title-wrap">
1673 + <h2>Description du loyer</h2>
1674 + </div>
1675 + <div class="block-content-wrap">
1676 + <h2>Appartement 4½ style condo à louer à proximité de l&rsquo;Université de Sherbrooke et du Mont-Bellevue</h2>
1677 +<p><strong>Adresse :</strong> 1856 André, Sherbrooke (Québec) J1H 0G7</p>
1678 +<h3><strong>Points Forts :</strong></h3>
1679 +<ul>
1680 +<li>Appartement spacieux et moderne avec entrée directe et grand balcon privé.</li>
1681 +<li>Logement avec thermopompe, échangeur d&rsquo;air et beaucoup de rangement.</li>
1682 +<li>Situé dans un immeuble tranquille sur une rue peu passant (cul-de-sac).</li>
1683 +<li>À proximité du Mont-Bellevue et de l&rsquo;Université de Sherbrooke.</li>
1684 +<li>Accès facile aux circuits d’autobus #7 et #11.</li>
1685 +</ul>
1686 +<hr />
1687 +<h3><strong>Détails du Logement :</strong></h3>
1688 +<ul>
1689 +<li><strong>Type :</strong> 4½ (2 chambres)</li>
1690 +<li><strong>Loyer :</strong> 1100$/mois</li>
1691 +<li><strong>Bail :</strong> 18 mois</li>
1692 +<li><strong>Inclusions :</strong> Aucun service inclus</li>
1693 +<li><strong>Planchers :</strong> Céramique et planchette de vinyle</li>
1694 +<li><strong>Équipements :</strong> Entrées laveuse-sécheuse et lave-vaisselle, échangeur d&rsquo;air, thermopompe, salle de lavage, espace de rangement, fenêtres sur plusieurs façades, balcon privé.</li>
1695 +</ul>
1696 +<h3><strong>Commodités de l&rsquo;Immeuble :</strong></h3>
1697 +<ul>
1698 +<li>Stationnement extérieur inclus</li>
1699 +<li>Remise extérieure individuelle</li>
1700 +<li>Construction en béton pour une insonorisation optimale</li>
1701 +<li>Équipe de réparation disponible 24h/24</li>
1702 +</ul>
1703 +<hr />
1704 +<h3><strong>Services à Proximité :</strong></h3>
1705 +<ul>
1706 +<li>Université de Sherbrooke</li>
1707 +<li>Dépanneurs et pharmacies</li>
1708 +<li>Épiceries et centres d&rsquo;achats</li>
1709 +<li>Parcs et pistes cyclables</li>
1710 +<li>Accès rapide à l&rsquo;autoroute</li>
1711 +<li>Arrêts d&rsquo;autobus</li>
1712 +</ul>
1713 +<h3><strong>Règlements :</strong></h3>
1714 +<ul>
1715 +<li>Animaux interdits</li>
1716 +<li>Locataires non-fumeurs, tranquilles et respectueux</li>
1717 +<li>Enquête de crédit obligatoire</li>
1718 +</ul>
1719 +<p><strong>Contactez-nous dès aujourd’hui pour planifier une visite et découvrir ce 4½ exceptionnel.</strong></p>
1720 +
1721 +
1722 +<h5 class="wp-block-heading"></h5>
1723 +
1724 +
1725 +
1726 +<p></p>
1727 +
1728 + </div>
1729 + </div>
1730 +</div>
1731 + </div><!-- property-view -->
1732 + </div><!-- bt-content-wrap -->
1733 +
1734 + </div><!-- row -->
1735 +
1736 +
1737 + </div><!-- container -->
1738 +
1739 +
1740 + </section><!-- listing-wrap -->
1741 +
1742 + <!-- end houzez_check_is_elementor -->
1743 +
1744 +</main><!-- .main-wrap start in header.php-->
1745 +
1746 +<footer class="footer-wrap footer-wrap-v1">
1747 +
1748 + <div class="footer-bottom-wrap footer-bottom-wrap-v1">
1749 + <div class="container">
1750 + <div class="d-flex justify-content-between">
1751 +
1752 + <div class="footer-copyright">
1753 + &copy; Immeubles Alexcellence - Tout droits réservés</div><!-- footer-copyright -->
1754 +
1755 +
1756 +
1757 + </div><!-- d-flex -->
1758 + </div><!-- container -->
1759 +</div><!-- footer-top-wrap --></footer><div class="back-to-top-wrap">
1760 + <a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1761 + <i class="houzez-icon icon-arrow-up-1"></i>
1762 + </a>
1763 +</div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1764 +
1765 + <button class="compare-property-label" style="display: none;">
1766 + <span class="compare-count compare-label"></span>
1767 + <i class="houzez-icon icon-move-left-right"></i>
1768 + </button>
1769 +
1770 + <p><strong>Comparer les annonces</strong></p>
1771 +
1772 + <div class="compare-wrap"></div>
1773 +
1774 +
1775 + <a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1776 + <button class="btn btn-grey-outlined btn-full-width close-compare-panel">Close</button>
1777 +</div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog">
1778 + <div class="modal-dialog" role="document">
1779 + <div class="modal-content">
1780 + <div class="modal-header">
1781 + <div class="login-register-tabs">
1782 + <ul class="nav nav-tabs">
1783 + <li class="nav-item">
1784 + <a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">S&#039;identifier</a>
1785 + </li>
1786 +
1787 + </ul>
1788 + </div><!-- login-register-tabs -->
1789 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1790 + <span aria-hidden="true">&times;</span>
1791 + </button>
1792 + </div><!-- modal-header -->
1793 + <div class="modal-body">
1794 + <div class="tab-content">
1795 + <div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel">
1796 + <div id="hz-login-messages" class="hz-social-messages"></div>
1797 +<form>
1798 + <div class="login-form-wrap">
1799 + <div class="form-group">
1800 + <div class="form-group-field username-field">
1801 + <input class="form-control" name="username" placeholder="Username or Email" type="text" />
1802 + </div><!-- input-group -->
1803 + </div><!-- form-group -->
1804 + <div class="form-group">
1805 + <div class="form-group-field password-field">
1806 + <input class="form-control" name="password" placeholder="Mot de passe" type="password" />
1807 + </div><!-- input-group -->
1808 + </div><!-- form-group -->
1809 + </div><!-- login-form-wrap -->
1810 +
1811 + <div class="form-tools">
1812 + <div class="d-flex">
1813 + <label class="control control--checkbox flex-grow-1">
1814 + <input name="remember" type="checkbox">Remember me FR <span class="control__indicator"></span>
1815 + </label>
1816 + <a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Lost your password?</a>
1817 + </div><!-- d-flex -->
1818 + </div><!-- form-tools -->
1819 +
1820 + <div class="form-group captcha_wrapper houzez-grecaptcha-v3">
1821 + <div class="houzez_google_reCaptcha"></div>
1822 +</div>
1823 +
1824 + <input type="hidden" id="houzez_login_security" name="houzez_login_security" value="90509fca4b" /><input type="hidden" name="_wp_http_referer" value="/appartements/4%C2%BD-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1825 + <input type="hidden" name="redirect_to" value="https://immeublesalexcellence.com/appartements/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/?login=success">
1826 + <button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1827 + <span class="btn-loader houzez-loader-js"></span> S&#039;identifier
1828 + </button>
1829 +</form>
1830 +
1831 +<div class="social-login-wrap">
1832 +
1833 + <button type="button" class="hz-facebook-login btn btn-facebook-login btn-full-width">
1834 + <span class="btn-loader houzez-loader-js"></span> Continue with Facebook </button>
1835 +
1836 + <button type="button" class="hz-google-login btn btn-google-plus-lined btn-full-width">
1837 + <span class="btn-loader houzez-loader-js"></span> <img class="google-icon" src="https://immeublesalexcellence.com/wp-content/themes/houzez/img/Google__G__Logo.svg"/> Sign in with google </button>
1838 +
1839 +</div>
1840 + </div><!-- login-form-tab -->
1841 + <div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel">
1842 + <div id="hz-register-messages" class="hz-social-messages"></div>
1843 +User registration is disabled for demo purpose. </div><!-- register-form-tab -->
1844 + </div><!-- tab-content -->
1845 + </div><!-- modal-body -->
1846 + </div><!-- modal-content -->
1847 + </div><!-- modal-dialog -->
1848 +</div><!-- login-register-form --><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog">
1849 + <div class="modal-dialog" role="document">
1850 + <div class="modal-content">
1851 + <div class="modal-header">
1852 + <div class="modal-title">Reset Password</div>
1853 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1854 + <span aria-hidden="true">&times;</span>
1855 + </button>
1856 + </div><!-- modal-header -->
1857 + <div class="modal-body">
1858 + <div id="reset_pass_msg"></div>
1859 + <p>Please enter your username or email address. You will receive a link to create a new password via email.</p>
1860 + <form>
1861 + <div class="form-group">
1862 + <input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Enter your username or email" class="form-control">
1863 + </div>
1864 + <input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="eec590fff1" /><input type="hidden" name="_wp_http_referer" value="/appartements/4%C2%BD-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1865 + <span class="btn-loader houzez-loader-js"></span> Get new password </button>
1866 + </form>
1867 + </div><!-- modal-body -->
1868 + </div><!-- modal-content -->
1869 + </div><!-- modal-dialog -->
1870 +</div><!-- login-register-form --><div class="property-lightbox">
1871 + <div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog">
1872 + <div class="modal-dialog modal-dialog-centered" role="document">
1873 + <div id="hz-listing-model-content" class="modal-content">
1874 +
1875 + </div><!-- modal-content -->
1876 + </div><!-- modal-dialog -->
1877 + </div><!-- modal -->
1878 +</div><!-- property-lightbox --><div class="property-lightbox">
1879 + <div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog">
1880 + <div class="modal-dialog modal-dialog-centered" role="document">
1881 + <div class="modal-content">
1882 + <div class="modal-header">
1883 + <div class="d-flex align-items-center">
1884 +
1885 + <div class="lightbox-logo">
1886 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" alt="4½ à louer à Sherbrooke – Secteur Mont-Bellevue &amp; Université">
1887 + </div><!-- lightbox-logo -->
1888 +
1889 + <div class="lightbox-title flex-grow-1">
1890 +
1891 + </div><!-- lightbox-title -->
1892 + <div class="lightbox-tools">
1893 + <ul class="list-inline">
1894 + <li class="list-inline-item btn-favorite">
1895 + <a class="add-favorite-js" data-listid="3216" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Préféré</span></a>
1896 + </li>
1897 +
1898 + <li class="list-inline-item btn-share">
1899 + <a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Share</span></a>
1900 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1901 +
1902 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F">
1903 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1904 +
1905 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F06%2Flocation-logement-condo-4demi-Sherbrooke-1-1024x768.jpg&amp;description=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1906 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1907 +
1908 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&amp;t=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1909 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1910 +</a>
1911 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1912 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1913 +</a>
1914 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F&title=4%C2%BD+%C3%A0+louer+%C3%A0+Sherbrooke+%E2%80%93+Secteur+Mont-Bellevue+%26amp%3B+Universit%C3%A9&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1915 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1916 +</a>
1917 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=4½ à louer à Sherbrooke – Secteur Mont-Bellevue &amp; Université&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite%2F">
1918 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1919 +</a> </div>
1920 + </li>
1921 + <li class="list-inline-item btn-email">
1922 + <a href="#"><i class="houzez-icon icon-envelope"></i></a>
1923 + </li>
1924 + </ul>
1925 + </div><!-- lightbox-tools -->
1926 + </div><!-- d-flex -->
1927 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1928 + <span aria-hidden="true">&times;</span>
1929 + </button>
1930 + </div><!-- modal-header -->
1931 +
1932 + <div class="modal-body clearfix">
1933 + <div class="lightbox-gallery-wrap ">
1934 +
1935 + <a class="btn-expand">
1936 + <i class="houzez-icon icon-expand-3"></i>
1937 + </a>
1938 +
1939 + <div class="lightbox-gallery">
1940 + <div id="lightbox-slider-js" class="lightbox-slider">
1941 +
1942 + <div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-2.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (2)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-3.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (3)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-4.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (4)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-5.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (5)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-6.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (6)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-7.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (7)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-8.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (8)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-9.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (9)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-10.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (10)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-11.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (11)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-12.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (12)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-13.jpg" alt="" title="location-logement-condo-4demi-Sherbrooke (13)"></div>
1943 + </div>
1944 + </div><!-- lightbox-gallery -->
1945 +
1946 + </div><!-- lightbox-gallery-wrap -->
1947 +
1948 + <div class="lightbox-form-wrap">
1949 + </div><!-- lightbox-form-wrap -->
1950 + </div><!-- modal-body -->
1951 + <div class="modal-footer">
1952 +
1953 + </div><!-- modal-footer -->
1954 + </div><!-- modal-content -->
1955 + </div><!-- modal-dialog -->
1956 + </div><!-- modal -->
1957 +</div><!-- property-lightbox -->
1958 +
1959 +
1960 + <script>
1961 + window.RS_MODULES = window.RS_MODULES || {};
1962 + window.RS_MODULES.modules = window.RS_MODULES.modules || {};
1963 + window.RS_MODULES.waiting = window.RS_MODULES.waiting || [];
1964 + window.RS_MODULES.defered = true;
1965 + window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};
1966 + window.RS_MODULES.type = 'compiled';
1967 + </script>
1968 +
1969 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
1970 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 parametres-de-confidentialite optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
1971 + <div class="cmplz-header">
1972 + <div class="cmplz-logo"><?xml version="1.0" encoding="utf-8"?>
1973 +<!-- Generator: Adobe Illustrator 27.6.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
1974 +<svg version="1.1" id="uuid-7dd7b5b8-c5e0-4d79-ad53-47e9a05e6f8e"
1975 + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1354.3 343"
1976 + style="enable-background:new 0 0 1354.3 343;" xml:space="preserve">
1977 +<style type="text/css">
1978 + .st0{fill:#009FFF;}
1979 + .st1{fill:#333333;}
1980 +</style>
1981 +<path class="st0" d="M663.5,62.7c-17.7,0-36,7.4-44.2,19v-15h-52.7V274h52.7v-75.8c8.2,11.6,26.5,19,44.2,19
1982 + c41.1,0,68.6-37.4,68.6-77.5S704.6,62.7,663.5,62.7L663.5,62.7L663.5,62.7z M649.6,174.1c-18,0-30.3-13.9-30.3-33.7
1983 + s11.9-34.7,30.3-34.7c17.4,0,29.9,14.6,29.9,34.7S666.9,174.1,649.6,174.1z M499.6,62.7c-24.5,0-39,10.8-49.3,24.1
1984 + c-8.5-14.6-21.8-24.1-44.8-24.1c-17.3,0-30.6,5.1-40.4,19.3V66.8h-52.7v146.4H365v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9
1985 + v75.4h52.7v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9v75.4h52.7v-88.2C553.2,90.2,538.9,62.7,499.6,62.7L499.6,62.7
1986 + L499.6,62.7z M221.3,62.7c-42.1,0-78.8,33.7-78.8,77.1s36,77.5,79.1,77.5s78.8-34.3,78.8-77.8S264.1,62.7,221.3,62.7L221.3,62.7
1987 + L221.3,62.7z M221.6,175.5c-18.4,0-27.9-18.7-27.9-35.6s9.5-35.3,27.5-35.3c19,0,27.9,18.7,27.9,35S240,175.5,221.6,175.5
1988 + L221.6,175.5L221.6,175.5z M79.6,175.8c-19,0-31.6-17.7-31.6-35.3c0-20.8,12.9-36,31.6-36c10.8,0,20.8,4.4,29.2,13.6l30.3-28.2
1989 + c-15.6-18.7-34.7-27.2-59.5-27.2C32.7,62.7-0.9,98-0.9,140.5s34.3,76.7,80.6,76.7c28.5,0,46.6-9.5,64.2-31.6l-35.3-24.8
1990 + C100.4,170.4,93.2,175.8,79.6,175.8L79.6,175.8L79.6,175.8z M1139,62.7c-17.4,0-32.6,6.4-42.1,19.3V66.7h-52.7v146.4h52.7v-77.1
1991 + c0-18,8.8-29.2,24.2-29.2s20.8,11.2,20.8,30.9v75.4h52.7v-88.1C1194.5,90.2,1178.5,62.7,1139,62.7L1139,62.7L1139,62.7z M958.2,62.7
1992 + c-26.5,0-50.9,4-70.3,15l16.3,31.6c15.3-7.9,31.9-12.6,52.3-12.6c15,0,21.8,3.4,21.8,13.6v5.1c-47.5,2.1-103.6,10.8-103.6,56.4
1993 + c0,27.9,24.8,45.5,53,45.5c25.5,0,34.7-4.1,50.6-15.3v11.2h52.7v-93.1C1030.9,78.3,1006.7,62.7,958.2,62.7L958.2,62.7L958.2,62.7z
1994 + M978.2,169.4c-8.5,7.4-17.4,10.5-30.6,10.5c-8.5,0-17-5.1-17-13.6c0-16.3,25.1-21.4,47.5-21.4V169.4z M744,213.2h52.7V1.7H744
1995 + V213.2L744,213.2z M1282.8,172.9l70.5-106.2h-143.7v40.8h53.7c4.8,0,8.8-0.3,8.8-0.3s-3.4,3.7-6.1,7.8l-66.2,98.2h145.1v-40.8h-52.1
1996 + C1289.8,172.4,1285.4,172.7,1282.8,172.9L1282.8,172.9L1282.8,172.9z M811.2,67.4v145.7h52.7V67.2c-8.3,2.9-17.1,4.6-26.1,4.6
1997 + S819.6,70.2,811.2,67.4L811.2,67.4L811.2,67.4z"/>
1998 +<g>
1999 + <g>
2000 + <path class="st1" d="M649.8,345v-8l10.1-1.8v-75.6l-11.2-1.8v-8h20.6l1.2,8.4c2.3-3.1,5.2-5.5,8.5-7.2c3.4-1.6,7.2-2.5,11.7-2.5
2001 + c5.8,0,10.8,1.5,14.9,4.6c4.1,3.1,7.3,7.4,9.4,12.9c2.2,5.5,3.3,12,3.3,19.4v1.3c0,6.6-1.1,12.4-3.3,17.3s-5.3,8.8-9.4,11.6
2002 + c-4.1,2.8-9,4.1-14.7,4.1c-4.3,0-8.1-0.7-11.4-2.1c-3.3-1.4-6.1-3.5-8.3-6.3v24l11.2,1.8v8L649.8,345L649.8,345z M686.8,310.6
2003 + c5.9,0,10.4-2.2,13.4-6.4c3-4.3,4.5-9.9,4.5-16.7V286c0-5.3-0.7-9.9-2-13.9c-1.4-4-3.4-7.2-6.1-9.5s-6.1-3.4-10.1-3.4
2004 + c-3.6,0-6.6,0.8-9.2,2.4c-2.6,1.6-4.6,3.8-6.2,6.6v33.6c1.6,2.9,3.7,5.1,6.2,6.7c2.6,1.6,5.7,2.4,9.5,2.4L686.8,310.6z"/>
2005 + </g>
2006 + <g>
2007 + <path class="st1" d="M758,320.5c-6.4,0-11.9-1.5-16.5-4.5s-8.2-7.1-10.7-12.4c-2.5-5.3-3.8-11.3-3.8-18.1v-1.4
2008 + c0-6.8,1.3-12.8,3.8-18.1c2.5-5.3,6.1-9.4,10.7-12.5c4.6-3,10.1-4.5,16.3-4.5s11.9,1.5,16.5,4.5s8.2,7.2,10.7,12.4
2009 + c2.5,5.3,3.8,11.3,3.8,18.1v1.4c0,6.8-1.3,12.9-3.8,18.2c-2.5,5.3-6.1,9.4-10.6,12.4C769.8,319,764.4,320.5,758,320.5L758,320.5z
2010 + M758.6,310.2c3.9,0,7.2-1.1,9.8-3.2c2.6-2.1,4.6-5.1,6-8.8s2-8,2-12.7v-1.4c0-4.8-0.7-9-2-12.7c-1.4-3.7-3.4-6.7-6-8.8
2011 + c-2.7-2.1-6-3.2-9.9-3.2c-4,0-7.2,1.1-9.9,3.2c-2.7,2.1-4.7,5.1-6,8.8c-1.3,3.7-2,8-2,12.7v1.4c0,4.8,0.7,9,2,12.7
2012 + c1.3,3.7,3.3,6.7,6,8.8S754.6,310.2,758.6,310.2L758.6,310.2z"/>
2013 + </g>
2014 + <g>
2015 + <path class="st1" d="M822.4,319.3l-18.1-59.5l-7.7-0.9v-8h28v8l-8.3,1.4l9.3,34.1l2.1,8.1h0.4l2.8-8.1l14.7-43.5h11.4l14.1,43.1
2016 + l3,9.5h0.4l3-9.5l9.5-33.8l-8.6-1.3v-8h28v8l-7.6,1.1L881,319.3h-12.1L855,278.2l-3.3-11l-0.4,0.1l-3.2,10.9l-14.9,41.1
2017 + L822.4,319.3L822.4,319.3z"/>
2018 + </g>
2019 + <g>
2020 + <path class="st1" d="M943.2,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2021 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2022 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7s3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2023 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C953.7,319.8,948.8,320.6,943.2,320.6L943.2,320.6z
2024 + M925.3,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3c-2.8,0-5.3,0.8-7.6,2.4
2025 + c-2.3,1.6-4.2,3.8-5.6,6.6c-1.5,2.8-2.5,6-2.9,9.5L925.3,277.8L925.3,277.8z"/>
2026 + </g>
2027 + <g>
2028 + <path class="st1" d="M980.5,319.3v-8l10.1-1.8v-48.8l-10.1-1.8v-8h21.1l1.1,8.7l0.1,1.2c1.9-3.5,4.2-6.2,7-8.2c2.8-2,6-3,9.6-3
2029 + c1.3,0,2.6,0.1,3.9,0.3c1.3,0.2,2.3,0.4,2.9,0.7l-1.6,11.6l-8.5-0.5c-3.2-0.2-5.9,0.5-8.1,2.2c-2.2,1.7-3.9,4-5.1,6.9v38.7
2030 + l10.1,1.8v8L980.5,319.3L980.5,319.3z"/>
2031 + </g>
2032 + <g>
2033 + <path class="st1" d="M1063.1,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2034 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2035 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7c1.4,3.4,3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2036 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C1073.6,319.8,1068.8,320.6,1063.1,320.6
2037 + L1063.1,320.6z M1045.2,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3
2038 + c-2.8,0-5.3,0.8-7.6,2.4c-2.3,1.6-4.2,3.8-5.6,6.6s-2.5,6-2.9,9.5L1045.2,277.8L1045.2,277.8z"/>
2039 + </g>
2040 + <g>
2041 + <path class="st1" d="M1127.3,320.6c-5.6,0-10.5-1.4-14.5-4.1c-4-2.8-7.1-6.6-9.2-11.6c-2.1-4.9-3.2-10.7-3.2-17.3v-1.3
2042 + c0-7.4,1.1-13.8,3.2-19.3c2.1-5.5,5.2-9.8,9.3-12.9c4.1-3.1,8.9-4.6,14.6-4.6c4.1,0,7.7,0.8,10.9,2.3c3.1,1.5,5.8,3.7,8,6.5v-27.7
2043 + l-10.1-1.8v-8h23.5v88.9l10.1,1.8v8H1148l-1-8.2c-2.3,3.1-5,5.5-8.3,7.1C1135.4,319.8,1131.7,320.6,1127.3,320.6L1127.3,320.6z
2044 + M1130.9,309.8c3.7,0,6.7-0.8,9.2-2.5c2.5-1.7,4.6-4,6.2-7.1V269c-1.6-2.8-3.6-5.1-6.2-6.7c-2.5-1.7-5.6-2.5-9.1-2.5
2045 + c-3.9,0-7.1,1.1-9.7,3.3c-2.5,2.2-4.4,5.3-5.7,9.2c-1.2,3.9-1.9,8.5-1.9,13.7v1.3c0,6.8,1.4,12.2,4.2,16.3
2046 + C1120.8,307.8,1125.1,309.8,1130.9,309.8L1130.9,309.8z"/>
2047 + </g>
2048 + <g>
2049 + <path class="st1" d="M1245.2,320.6c-4.5,0-8.3-0.9-11.6-2.6c-3.3-1.7-6-4.2-8.2-7.6l-1.1,8.8h-10.6v-88.8l-10.1-1.8v-8h22.4V259
2050 + c2.2-3,4.8-5.4,8-7c3.2-1.6,6.9-2.4,11.2-2.4c5.6,0,10.5,1.5,14.4,4.6c4,3.1,7,7.3,9.2,12.9c2.1,5.5,3.2,11.9,3.2,19.3v1.3
2051 + c0,6.6-1.1,12.3-3.2,17.3c-2.1,4.9-5.2,8.8-9.2,11.5C1255.6,319.2,1250.8,320.6,1245.2,320.6L1245.2,320.6z M1241.6,310.6
2052 + c6.1,0,10.6-2.2,13.5-6.5c2.9-4.3,4.4-10,4.4-17.1v-1c0-5.3-0.6-10-1.9-14s-3.2-7.1-5.8-9.4c-2.6-2.3-5.9-3.4-9.9-3.4
2053 + c-4,0-7.1,0.9-9.8,2.8c-2.6,1.9-4.8,4.4-6.3,7.5v30.6c1.5,3.1,3.6,5.5,6.2,7.3c2.6,1.8,5.8,2.7,9.5,2.7L1241.6,310.6z"/>
2054 + </g>
2055 + <g>
2056 + <path class="st1" d="M1293.4,346.2c-1,0-2.2-0.1-3.8-0.3c-1.6-0.2-2.8-0.5-3.6-0.7l1.3-9.8c0.7,0.1,1.7,0.2,3,0.2s2.1,0.1,2.6,0.1
2057 + c2.7,0,4.8-1,6.5-3c1.7-2,3.2-4.8,4.7-8.3l3-7.2l-24.3-58.2l-7.4-1v-8.1h29.1v8.1l-8.3,1.3l13.3,34.4l3.2,9h0.4l15.8-43.3
2058 + l-8.7-1.3v-8.1h28v8.1l-7.1,1l-27,70.1c-1.3,3.3-2.8,6.3-4.6,8.9c-1.8,2.6-4,4.6-6.6,6.1C1300.2,345.4,1297,346.2,1293.4,346.2
2059 + L1293.4,346.2z"/>
2060 + </g>
2061 +</g>
2062 +</svg>
2063 +</div>
2064 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
2065 + <div class="cmplz-close" tabindex="0" role="button" aria-label="close-dialog">
2066 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
2067 + </div>
2068 + </div>
2069 +
2070 + <div class="cmplz-divider cmplz-divider-header"></div>
2071 + <div class="cmplz-body">
2072 + <div class="cmplz-message" id="cmplz-message-1-optin"><p>Pour vous offrir les meilleures expériences, nous utilisons des technologies, telles que les cookies, pour stocker et accéder à des informations sur votre appareil. Votre consentement à ces technologies nous permet de traiter des données, telles que vos préférences de navigation ou des identifiants uniques. Vous pouvez refuser ou retirer votre consentement à tout moment, ce qui pourrait affecter certaines fonctionnalités ou caractéristiques du site. Pour en savoir plus sur l’utilisation de vos données, veuillez consulter notre [politique de confidentialité](lien vers la politique de confidentialité).</p></div>
2073 + <!-- categories start -->
2074 + <div class="cmplz-categories">
2075 + <details class="cmplz-category cmplz-functional" >
2076 + <summary>
2077 + <span class="cmplz-category-header">
2078 + <span class="cmplz-category-title">Fonctionnel</span>
2079 + <span class='cmplz-always-active'>
2080 + <span class="cmplz-banner-checkbox">
2081 + <input type="checkbox"
2082 + id="cmplz-functional-optin"
2083 + data-category="cmplz_functional"
2084 + class="cmplz-consent-checkbox cmplz-functional"
2085 + size="40"
2086 + value="1"/>
2087 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
2088 + </span>
2089 + Toujours activé </span>
2090 + <span class="cmplz-icon cmplz-open">
2091 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2092 + </span>
2093 + </span>
2094 + </summary>
2095 + <div class="cmplz-description">
2096 + <span class="cmplz-description-functional">L’accès ou le stockage technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
2097 + </div>
2098 + </details>
2099 +
2100 + <details class="cmplz-category cmplz-preferences" >
2101 + <summary>
2102 + <span class="cmplz-category-header">
2103 + <span class="cmplz-category-title">Préférences</span>
2104 + <span class="cmplz-banner-checkbox">
2105 + <input type="checkbox"
2106 + id="cmplz-preferences-optin"
2107 + data-category="cmplz_preferences"
2108 + class="cmplz-consent-checkbox cmplz-preferences"
2109 + size="40"
2110 + value="1"/>
2111 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
2112 + </span>
2113 + <span class="cmplz-icon cmplz-open">
2114 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2115 + </span>
2116 + </span>
2117 + </summary>
2118 + <div class="cmplz-description">
2119 + <span class="cmplz-description-preferences">L'accès ou le stockage technique est nécessaire dans la finalité d'intérêt légitime de stocker des préférences spécifiques des utilisateurs, telles que la langue, la région ou d'autres paramètres personnalisés, afin d'améliorer leur expérience sur le site.</span>
2120 + </div>
2121 + </details>
2122 +
2123 + <details class="cmplz-category cmplz-statistics" >
2124 + <summary>
2125 + <span class="cmplz-category-header">
2126 + <span class="cmplz-category-title">Statistiques</span>
2127 + <span class="cmplz-banner-checkbox">
2128 + <input type="checkbox"
2129 + id="cmplz-statistics-optin"
2130 + data-category="cmplz_statistics"
2131 + class="cmplz-consent-checkbox cmplz-statistics"
2132 + size="40"
2133 + value="1"/>
2134 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
2135 + </span>
2136 + <span class="cmplz-icon cmplz-open">
2137 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2138 + </span>
2139 + </span>
2140 + </summary>
2141 + <div class="cmplz-description">
2142 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
2143 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique est utilisé exclusivement à des fins statistiques anonymes. Sans assignation légale, conformité volontaire de votre fournisseur d’accès à Internet ou données supplémentaires d’une tierce partie, les informations collectées à cette fin ne peuvent pas être utilisées pour vous identifier.</span>
2144 + </div>
2145 + </details>
2146 + <details class="cmplz-category cmplz-marketing" >
2147 + <summary>
2148 + <span class="cmplz-category-header">
2149 + <span class="cmplz-category-title">Marketing</span>
2150 + <span class="cmplz-banner-checkbox">
2151 + <input type="checkbox"
2152 + id="cmplz-marketing-optin"
2153 + data-category="cmplz_marketing"
2154 + class="cmplz-consent-checkbox cmplz-marketing"
2155 + size="40"
2156 + value="1"/>
2157 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
2158 + </span>
2159 + <span class="cmplz-icon cmplz-open">
2160 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2161 + </span>
2162 + </span>
2163 + </summary>
2164 + <div class="cmplz-description">
2165 + <span class="cmplz-description-marketing">L’accès ou le stockage technique est nécessaire pour créer des profils d’utilisateurs, diffuser des publicités personnalisées, et suivre l’activité de l’utilisateur sur ce site ou sur plusieurs sites web dans le cadre de campagnes marketing similaires.</span>
2166 + </div>
2167 + </details>
2168 + </div><!-- categories end -->
2169 + </div>
2170 +
2171 + <div class="cmplz-links cmplz-information">
2172 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
2173 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
2174 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
2175 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
2176 + </div>
2177 +
2178 + <div class="cmplz-divider cmplz-footer"></div>
2179 +
2180 + <div class="cmplz-buttons">
2181 + <button class="cmplz-btn cmplz-accept">Accepter</button>
2182 + <button class="cmplz-btn cmplz-deny">Refuser</button>
2183 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
2184 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
2185 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
2186 + </div>
2187 +
2188 + <div class="cmplz-links cmplz-documents">
2189 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
2190 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
2191 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
2192 + </div>
2193 +
2194 +</div>
2195 +</div>
2196 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
2197 +
2198 +</div> <script data-service="google-recaptcha" data-category="marketing" type="text/plain">
2199 + var reCaptchaIDs = [];
2200 + var siteKey = '6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc';
2201 + var reCaptchaType = 'v3';
2202 +
2203 + var houzezReCaptchaLoad = function() {
2204 + jQuery( '.houzez_google_reCaptcha' ).each( function( index, el ) {
2205 + var tempID;
2206 +
2207 + if ( reCaptchaType === 'v3' ) {
2208 +
2209 + tempID = grecaptcha.ready(function () {
2210 + grecaptcha.execute(siteKey, {action: 'homepage'}).then(function (token) {
2211 + el.insertAdjacentHTML('beforeend', '<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="' + token + '">');
2212 + });
2213 + });
2214 +
2215 + } else {
2216 +
2217 + tempID = grecaptcha.render( el, {
2218 + 'sitekey' : siteKey
2219 + } );
2220 + }
2221 +
2222 + reCaptchaIDs.push( tempID );
2223 + } );
2224 + };
2225 +
2226 + //reCAPTCHA reset
2227 + var houzezReCaptchaReset = function() {
2228 + if ( reCaptchaType === 'v2' ) {
2229 + if( typeof reCaptchaIDs != 'undefined' ) {
2230 + var arrayLength = reCaptchaIDs.length;
2231 + for( var i = 0; i < arrayLength; i++ ) {
2232 + grecaptcha.reset( reCaptchaIDs[i] );
2233 + }
2234 + }
2235 + } else {
2236 + houzezReCaptchaLoad();
2237 + }
2238 + };
2239 + </script>
2240 + <script>
2241 + const lazyloadRunObserver = () => {
2242 + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
2243 + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
2244 + entries.forEach( ( entry ) => {
2245 + if ( entry.isIntersecting ) {
2246 + let lazyloadBackground = entry.target;
2247 + if( lazyloadBackground ) {
2248 + lazyloadBackground.classList.add( 'e-lazyloaded' );
2249 + }
2250 + lazyloadBackgroundObserver.unobserve( entry.target );
2251 + }
2252 + });
2253 + }, { rootMargin: '200px 0px 200px 0px' } );
2254 + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
2255 + lazyloadBackgroundObserver.observe( lazyloadBackground );
2256 + } );
2257 + };
2258 + const events = [
2259 + 'DOMContentLoaded',
2260 + 'elementor/lazyload/observe',
2261 + ];
2262 + events.forEach( ( event ) => {
2263 + document.addEventListener( event, lazyloadRunObserver );
2264 + } );
2265 + </script>
2266 + <link rel='stylesheet' id='rs-plugin-settings-css' href='//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/css/rs6.css?ver=6.7.20' type='text/css' media='all' />
2267 +<style id='rs-plugin-settings-inline-css' type='text/css'>
2268 +#rs-demo-id {}
2269 +</style>
2270 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.20" defer async id="tp-tools-js"></script>
2271 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.20" defer async id="revmin-js"></script>
2272 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/all-scripts.js?ver=3.4.4" id="houzez-all-in-one-js"></script>
2273 +<script type="module" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/houzez-instant-page.js?ver=3.0.0" id="houzez-instant-page-js"></script>
2274 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/lightslider.min.js?ver=1.1.3" id="lightslider-js"></script>
2275 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/Chart.min.js?ver=2.8.0" id="chart-js"></script>
2276 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script>
2277 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/menu.min.js?ver=1.13.3" id="jquery-ui-menu-js"></script>
2278 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/dom-ready.min.js?ver=f77871ff7694fffea381" id="wp-dom-ready-js"></script>
2279 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script>
2280 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script>
2281 +<script type="text/javascript" id="wp-i18n-js-after">
2282 +/* <![CDATA[ */
2283 +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
2284 +/* ]]> */
2285 +</script>
2286 +<script type="text/javascript" id="wp-a11y-js-translations">
2287 +/* <![CDATA[ */
2288 +( function( domain, translations ) {
2289 + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
2290 + localeData[""].domain = domain;
2291 + wp.i18n.setLocaleData( localeData, domain );
2292 +} )( "default", {"translation-revision-date":"2025-10-01 05:29:20+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} );
2293 +/* ]]> */
2294 +</script>
2295 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/a11y.min.js?ver=3156534cc54473497e14" id="wp-a11y-js"></script>
2296 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.13.3" id="jquery-ui-autocomplete-js"></script>
2297 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/mouse.min.js?ver=1.13.3" id="jquery-ui-mouse-js"></script>
2298 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/slider.min.js?ver=1.13.3" id="jquery-ui-slider-js"></script>
2299 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/bootstrap-datepicker.min.js?ver=1.9.0" id="bootstrap-datepicker-js"></script>
2300 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr.min.js?ver=1.0" id="bootstrap-datepicker.fr-js"></script>
2301 +<script type="text/javascript" id="houzez-custom-js-extra">
2302 +/* <![CDATA[ */
2303 +var houzez_vars = {"admin_url":"https:\/\/immeublesalexcellence.com\/wp-admin\/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https:\/\/immeublesalexcellence.com\/appartements\/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite\/","property_gallery_popup_type":"houzez","wp_is_mobile":"","default_lat":"25.686540","default_long":"-80.431345","houzez_is_splash":"","prop_detail_nav":"yes","add_to_favorite_login_required":"1","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_banner","login_loading":"Envoi d'informations utilisateur, veuillez patienter ...","not_found":"Nous n'avons trouv\u00e9 aucun r\u00e9sultat","listings_not_found":"No more listings found","houzez_map_system":"osm","for_rent":"a-louer","for_rent_price_slider":"a-louer","search_min_price_range":"0","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","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"0","geocomplete_country":"","is_edit_property":"","processing_text":"Traitement, veuillez patienter ...","halfmap_layout":"","prev_text":"Prev","next_text":"Prochain","keyword_search_field":"prop_title","keyword_autocomplete":"1","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"1","simple_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo":"","mobile_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo_mobile":"","retina_logo_mobile_splash":"","custom_logo_splash":"","retina_logo_splash":"","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"","favorite_url":"","template_thankyou":"https:\/\/immeublesalexcellence.com\/","compare_page_not_found":"Veuillez cr\u00e9er une page en utilisant le mod\u00e8le de propri\u00e9t\u00e9s de comparaison","compare_limit":"Prix \u200b\u200bmaximum pour le loyer seulement","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Ajouter au comparatif","remove_compare_text":"Retirer du comparatif","is_mapbox":"google","api_mapbox":"","listing_pagination":"_loadmore","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""};
2304 +/* ]]> */
2305 +</script>
2306 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/custom.js?ver=3.4.4" id="houzez-custom-js"></script>
2307 +<script data-service="google-recaptcha" data-category="marketing" type="text/plain" data-cmplz-src="//www.google.com/recaptcha/api.js?render=6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc&amp;onload=houzezReCaptchaLoad&amp;ver=3.4.4" id="houzez-google-recaptcha-js"></script>
2308 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js//vendors/leaflet/leaflet.js?ver=1.9.3" id="leaflet-js"></script>
2309 +<script type="text/javascript" id="houzez-single-property-map-js-extra">
2310 +/* <![CDATA[ */
2311 +var houzez_single_property_map = {"title":"4\u00bd \u00e0 louer \u00e0 Sherbrooke \u2013 Secteur Mont-Bellevue & Universit\u00e9","price":" 1,100$\/par mois","property_id":"3216","pricePin":"1,100$\/par mois","property_type":"Loyer 4\u00bd","address":"1855 rue Andr\u00e9 Sherbrooke (Qu\u00e9bec) J1H 0G7","lat":"45.379643252381","lng":"-71.924772331479","term_id":"88","marker":"https:\/\/immeublesalexcellence.com\/wp-content\/themes\/houzez\/img\/map\/pin-single-family.png","retinaMarker":"https:\/\/immeublesalexcellence.com\/wp-content\/themes\/houzez\/img\/map\/pin-single-family.png","thumbnail":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-1-120x90.jpg"};
2312 +var houzez_map_options = {"markerPricePins":"no","single_map_zoom":"14","map_type":"satellite","map_pin_type":"marker","googlemap_stype":"[{\"featureType\":\"administrative\",\"elementType\":\"labels.text.fill\",\"stylers\":[{\"color\":\"#444444\"}]},{\"featureType\":\"administrative.locality\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"landscape\",\"elementType\":\"all\",\"stylers\":[{\"color\":\"#f2f2f2\"},{\"visibility\":\"simplified\"}]},{\"featureType\":\"poi\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"poi\",\"elementType\":\"geometry\",\"stylers\":[{\"visibility\":\"simplified\"},{\"saturation\":\"-65\"},{\"lightness\":\"45\"},{\"gamma\":\"1.78\"}]},{\"featureType\":\"poi\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"poi\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road\",\"elementType\":\"all\",\"stylers\":[{\"saturation\":-100},{\"lightness\":45}]},{\"featureType\":\"road\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"road\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road.highway\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"simplified\"}]},{\"featureType\":\"road.highway\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road.arterial\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.line\",\"elementType\":\"geometry\",\"stylers\":[{\"saturation\":\"-33\"},{\"lightness\":\"22\"},{\"gamma\":\"2.08\"}]},{\"featureType\":\"transit.station.airport\",\"elementType\":\"geometry\",\"stylers\":[{\"gamma\":\"2.08\"},{\"hue\":\"#ffa200\"}]},{\"featureType\":\"transit.station.airport\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.station.rail\",\"elementType\":\"labels.text\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.station.rail\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"simplified\"},{\"saturation\":\"-55\"},{\"lightness\":\"-2\"},{\"gamma\":\"1.88\"},{\"hue\":\"#ffab00\"}]},{\"featureType\":\"water\",\"elementType\":\"all\",\"stylers\":[{\"color\":\"#bbd9e5\"},{\"visibility\":\"simplified\"}]}]","closeIcon":"https:\/\/immeublesalexcellence.com\/wp-content\/themes\/houzez\/img\/map\/close.png","infoWindowPlac":"https:\/\/placehold.it\/120x90&text=Immeubles+Alexcellence"};
2313 +/* ]]> */
2314 +</script>
2315 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/single-property-osm-map.js?ver=3.4.4" id="houzez-single-property-map-js"></script>
2316 +<script type="text/javascript" id="cmplz-cookiebanner-js-extra">
2317 +/* <![CDATA[ */
2318 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"0","banner_version":"8517","version":"7.3.2","store_consent":"1","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"1","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/immeublesalexcellence.com\/wp-json\/complianz\/v1\/","locale":"lang=fr&locale=fr_FR","set_cookies_on_root":"0","cookie_domain":"","current_policy_id":"37","cookie_path":"\/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"<div class=\"cmplz-blocked-content-notice-body\">Cliquez sur \u00ab\u00a0J\u2019accepte\u00a0\u00bb pour activer {service}\u00a0<div class=\"cmplz-links\"><a href=\"#\" class=\"cmplz-link cookie-statement\">{title}<\/a><\/div><\/div><button class=\"cmplz-accept-service\">J\u2019accepte<\/button>","css_file":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=8517","page_links":{"ca":{"cookie-statement":{"title":"Politique de cookies ","url":"https:\/\/immeublesalexcellence.com\/politique-de-cookies-ca\/"},"privacy-statement":{"title":"D\u00e9claration de confidentialit\u00e9 ","url":"https:\/\/immeublesalexcellence.com\/declaration-de-confidentialite-ca\/"},"privacy-statement-children":{"title":"","url":"https:\/\/immeublesalexcellence.com\/appartements-a-louer\/"}}},"tm_categories":"","forceEnableStats":"1","preview":"","clean_cookies":"1","aria_label":"Cliquez sur le bouton pour activer {service}"};
2319 +/* ]]> */
2320 +</script>
2321 +<script defer type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/cookiebanner/js/complianz.min.js?ver=1736710566" id="cmplz-cookiebanner-js"></script>
2322 +<script type="text/javascript" id="cmplz-cookiebanner-js-after">
2323 +/* <![CDATA[ */
2324 +
2325 + if ('undefined' != typeof window.jQuery) {
2326 + jQuery(document).ready(function ($) {
2327 + $(document).on('elementor/popup/show', () => {
2328 + let rev_cats = cmplz_categories.reverse();
2329 + for (let key in rev_cats) {
2330 + if (rev_cats.hasOwnProperty(key)) {
2331 + let category = cmplz_categories[key];
2332 + if (cmplz_has_consent(category)) {
2333 + document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => {
2334 + cmplz_remove_placeholder(obj);
2335 + });
2336 + }
2337 + }
2338 + }
2339 +
2340 + let services = cmplz_get_services_on_page();
2341 + for (let key in services) {
2342 + if (services.hasOwnProperty(key)) {
2343 + let service = services[key].service;
2344 + let category = services[key].category;
2345 + if (cmplz_has_service_consent(service, category)) {
2346 + document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => {
2347 + cmplz_remove_placeholder(obj);
2348 + });
2349 + }
2350 + }
2351 + }
2352 + });
2353 + });
2354 + }
2355 +
2356 +
2357 +/* ]]> */
2358 +</script>
2359 +<!-- Statistics script Complianz GDPR/CCPA -->
2360 + <script data-category="functional">window['gtag_enable_tcf_support'] = false;
2361 +window.dataLayer = window.dataLayer || [];
2362 +function gtag(){dataLayer.push(arguments);}
2363 +gtag('js', new Date());
2364 +gtag('config', '', {
2365 + cookie_flags:'secure;samesite=none',
2366 + 'anonymize_ip': true
2367 +});
2368 +</script>
2369 +</body>
2370 +</html>
added tests/fixtures/alexcellence/7cbd2387a6c04a56cfa8.html +3155 −0
@@ -0,0 +1,3155 @@
1 +<!doctype html>
2 +<html lang="fr-FR">
3 +<head>
4 + <meta charset="UTF-8" />
5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 + <link rel="profile" href="https://gmpg.org/xfn/11" />
7 + <meta name="format-detection" content="telephone=no">
8 + <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://immeublesalexcellence.com/wp-content/themes/houzez/img/studio-icon.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>
9 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
10 + <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
11 +
12 + <!-- This site is optimized with the Yoast SEO plugin v24.3 - https://yoast.com/wordpress/plugins/seo/ -->
13 + <title>Appartements à louer | IMMEUBLES ALEXCELLENCE</title>
14 + <meta name="description" content="Retrouvez tous nos appartements à louer dans les secteurs Université de Sherbrooke et Mont-Bellevue, idéaux pour étudiants : 3½, 4½, 5½." />
15 + <link rel="canonical" href="https://immeublesalexcellence.com/appartements-a-louer/" />
16 + <meta property="og:locale" content="fr_FR" />
17 + <meta property="og:type" content="article" />
18 + <meta property="og:title" content="Appartements à louer | IMMEUBLES ALEXCELLENCE" />
19 + <meta property="og:description" content="Retrouvez tous nos appartements à louer dans les secteurs Université de Sherbrooke et Mont-Bellevue, idéaux pour étudiants : 3½, 4½, 5½." />
20 + <meta property="og:url" content="https://immeublesalexcellence.com/appartements-a-louer/" />
21 + <meta property="og:site_name" content="Immeubles Alexcellence" />
22 + <meta property="article:publisher" content="https://www.facebook.com/immeublesalexcellence" />
23 + <meta property="article:modified_time" content="2025-04-04T13:25:14+00:00" />
24 + <meta property="og:image" content="https://immeublesalexcellence.com/wp-content/uploads/2025/01/immeubles-alexcellence.jpg" />
25 + <meta property="og:image:width" content="1200" />
26 + <meta property="og:image:height" content="675" />
27 + <meta property="og:image:type" content="image/jpeg" />
28 + <meta name="twitter:card" content="summary_large_image" />
29 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://immeublesalexcellence.com/appartements-a-louer/","url":"https://immeublesalexcellence.com/appartements-a-louer/","name":"Appartements à louer | IMMEUBLES ALEXCELLENCE","isPartOf":{"@id":"https://immeublesalexcellence.com/#website"},"datePublished":"2016-06-20T21:04:52+00:00","dateModified":"2025-04-04T13:25:14+00:00","description":"Retrouvez tous nos appartements à louer dans les secteurs Université de Sherbrooke et Mont-Bellevue, idéaux pour étudiants : 3½, 4½, 5½.","breadcrumb":{"@id":"https://immeublesalexcellence.com/appartements-a-louer/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://immeublesalexcellence.com/appartements-a-louer/"]}]},{"@type":"BreadcrumbList","@id":"https://immeublesalexcellence.com/appartements-a-louer/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https://immeublesalexcellence.com/"},{"@type":"ListItem","position":2,"name":"Annonces Loyers"}]},{"@type":"WebSite","@id":"https://immeublesalexcellence.com/#website","url":"https://immeublesalexcellence.com/","name":"Immeubles Alexcellence","description":"Appartement a louer Université Sherbrooke","publisher":{"@id":"https://immeublesalexcellence.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://immeublesalexcellence.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https://immeublesalexcellence.com/#organization","name":"Immeubles Alexcellence","url":"https://immeublesalexcellence.com/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/#/schema/logo/image/","url":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","width":436,"height":123,"caption":"Immeubles Alexcellence"},"image":{"@id":"https://immeublesalexcellence.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/immeublesalexcellence","https://www.instagram.com/immeublealexellence/"]}]}</script>
30 + <!-- / Yoast SEO plugin. -->
31 +
32 +
33 +<link rel='dns-prefetch' href='//www.google.com' />
34 +<link rel='dns-prefetch' href='//fonts.googleapis.com' />
35 +<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin />
36 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux" href="https://immeublesalexcellence.com/feed/" />
37 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux des commentaires" href="https://immeublesalexcellence.com/comments/feed/" />
38 +<script type="text/javascript">
39 +/* <![CDATA[ */
40 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/immeublesalexcellence.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.5"}};
41 +/*! This file is auto-generated */
42 +!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
43 +/* ]]> */
44 +</script>
45 +<style id='wp-emoji-styles-inline-css' type='text/css'>
46 +
47 + img.wp-smiley, img.emoji {
48 + display: inline !important;
49 + border: none !important;
50 + box-shadow: none !important;
51 + height: 1em !important;
52 + width: 1em !important;
53 + margin: 0 0.07em !important;
54 + vertical-align: -0.1em !important;
55 + background: none !important;
56 + padding: 0 !important;
57 + }
58 +</style>
59 +<style id='classic-theme-styles-inline-css' type='text/css'>
60 +/*! This file is auto-generated */
61 +.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}
62 +</style>
63 +<style id='global-styles-inline-css' type='text/css'>
64 +: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,rgba(6,147,227,1) 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,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%,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 rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}: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;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.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;}
65 +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
66 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
67 +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
68 +</style>
69 +<link rel='stylesheet' id='elementor-frontend-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.27.1' type='text/css' media='all' />
70 +<link rel='stylesheet' id='elementor-post-6-css' href='https://immeublesalexcellence.com/wp-content/uploads/elementor/css/post-6.css?ver=1737736055' type='text/css' media='all' />
71 +<link rel='stylesheet' id='font-awesome-5-all-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.27.1' type='text/css' media='all' />
72 +<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.27.1' type='text/css' media='all' />
73 +<link rel='stylesheet' id='houzez-studio-css' href='https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/css/houzez-studio-public.css?ver=1.2.1' type='text/css' media='all' />
74 +<link rel='stylesheet' id='cmplz-general-css' href='https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/assets/css/cookieblocker.min.css?ver=1736710567' type='text/css' media='all' />
75 +<link rel='stylesheet' id='houzez-all-css-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/css/all-css.css?ver=3.4.4' type='text/css' media='all' />
76 +<link rel='stylesheet' id='houzez-style-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/style.css?ver=3.4.4' type='text/css' media='all' />
77 +<style id='houzez-style-inline-css' type='text/css'>
78 +
79 + @media (min-width: 1200px) {
80 + .container {
81 + max-width: 1310px;
82 + }
83 + }
84 + .status-color-21 {
85 + background-color: #45962e;
86 + }
87 +
88 + .status-color-199 {
89 + background-color: #595959;
90 + }
91 +
92 + body {
93 + font-family: Roboto;
94 + font-size: 15px;
95 + font-weight: 400;
96 + line-height: 25px;
97 + text-transform: none;
98 + }
99 + .main-nav,
100 + .dropdown-menu,
101 + .login-register,
102 + .btn.btn-create-listing,
103 + .logged-in-nav,
104 + .btn-phone-number {
105 + font-family: Roboto;
106 + font-size: 14px;
107 + font-weight: 500;
108 + text-align: left;
109 + text-transform: none;
110 + }
111 +
112 + .btn,
113 + .ele-btn,
114 + .houzez-search-button,
115 + .houzez-submit-button,
116 + .form-control,
117 + .bootstrap-select .text,
118 + .sort-by-title,
119 + .woocommerce ul.products li.product .button {
120 + font-family: Roboto;
121 + font-size: 15px;
122 + }
123 +
124 + h1, h2, h3, h4, h5, h6, .item-title {
125 + font-family: Roboto;
126 + font-weight: 500;
127 + text-transform: inherit;
128 + }
129 +
130 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
131 + font-weight: 500;
132 + text-transform: inherit;
133 + text-align: inherit;
134 + }
135 +
136 + .top-bar-wrap {
137 + font-family: Roboto;
138 + font-size: 13px;
139 + font-weight: 300;
140 + line-height: 25px;
141 + text-align: left;
142 + text-transform: none;
143 + }
144 + .footer-wrap {
145 + font-family: Roboto;
146 + font-size: 14px;
147 + font-weight: 300;
148 + line-height: 25px;
149 + text-align: left;
150 + text-transform: none;
151 + }
152 +
153 + .header-v1 .header-inner-wrap,
154 + .header-v1 .navbar-logged-in-wrap {
155 + line-height: 60px;
156 + height: 60px;
157 + }
158 + .header-v2 .header-top .navbar {
159 + height: 110px;
160 + }
161 +
162 + .header-v2 .header-bottom .header-inner-wrap,
163 + .header-v2 .header-bottom .navbar-logged-in-wrap {
164 + line-height: 54px;
165 + height: 54px;
166 + }
167 +
168 + .header-v3 .header-top .header-inner-wrap,
169 + .header-v3 .header-top .header-contact-wrap {
170 + height: 80px;
171 + line-height: 80px;
172 + }
173 + .header-v3 .header-bottom .header-inner-wrap,
174 + .header-v3 .header-bottom .navbar-logged-in-wrap {
175 + line-height: 54px;
176 + height: 54px;
177 + }
178 + .header-v4 .header-inner-wrap,
179 + .header-v4 .navbar-logged-in-wrap {
180 + line-height: 90px;
181 + height: 90px;
182 + }
183 + .header-v5 .header-top .header-inner-wrap,
184 + .header-v5 .header-top .navbar-logged-in-wrap {
185 + line-height: 110px;
186 + height: 110px;
187 + }
188 + .header-v5 .header-bottom .header-inner-wrap {
189 + line-height: 54px;
190 + height: 54px;
191 + }
192 + .header-v6 .header-inner-wrap,
193 + .header-v6 .navbar-logged-in-wrap {
194 + height: 60px;
195 + line-height: 60px;
196 + }
197 + @media (min-width: 1200px) {
198 + .header-v5 .header-top .container {
199 + max-width: 1170px;
200 + }
201 + }
202 +
203 + body,
204 + .main-wrap,
205 + .fw-property-documents-wrap h3 span,
206 + .fw-property-details-wrap h3 span {
207 + background-color: #f7f7f7;
208 + }
209 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
210 + background-color: #ffffff;
211 + }
212 +
213 + body,
214 + .form-control,
215 + .bootstrap-select .text,
216 + .item-title a,
217 + .listing-tabs .nav-tabs .nav-link,
218 + .item-wrap-v2 .item-amenities li span,
219 + .item-wrap-v2 .item-amenities li:before,
220 + .item-parallax-wrap .item-price-wrap,
221 + .list-view .item-body .item-price-wrap,
222 + .property-slider-item .item-price-wrap,
223 + .page-title-wrap .item-price-wrap,
224 + .agent-information .agent-phone span a,
225 + .property-overview-wrap ul li strong,
226 + .mobile-property-title .item-price-wrap .item-price,
227 + .fw-property-features-left li a,
228 + .lightbox-content-wrap .item-price-wrap,
229 + .blog-post-item-v1 .blog-post-title h3 a,
230 + .blog-post-content-widget h4 a,
231 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
232 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
233 + .agent-list-wrap .agent-list-content h2 a,
234 + .agent-list-wrap .agent-list-contact li a,
235 + .agent-contacts-wrap li a,
236 + .menu-edit-property li a,
237 + .statistic-referrals-list li a,
238 + .chart-nav .nav-pills .nav-link,
239 + .dashboard-table-properties td .property-payment-status,
240 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
241 + .payment-method-block .radio-tab .control-text,
242 + .post-title-wrap h2 a,
243 + .lead-nav-tab.nav-pills .nav-link,
244 + .deals-nav-tab.nav-pills .nav-link,
245 + .btn-light-grey-outlined:hover,
246 + button:not(.bs-placeholder) .filter-option-inner-inner,
247 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
248 + .products > .product > .item-body > a,
249 + .woocommerce ul.products li.product .price,
250 + .woocommerce div.product p.price,
251 + .woocommerce div.product span.price,
252 + .woocommerce #reviews #comments ol.commentlist li .meta,
253 + .woocommerce-MyAccount-navigation ul li a,
254 + .activitiy-item-close-button a,
255 + .property-section-wrap li a {
256 + color: #222222;
257 + }
258 +
259 +
260 +
261 + a,
262 + a:hover,
263 + a:active,
264 + a:focus,
265 + .primary-text,
266 + .btn-clear,
267 + .btn-apply,
268 + .btn-primary-outlined,
269 + .btn-primary-outlined:before,
270 + .item-title a:hover,
271 + .sort-by .bootstrap-select .bs-placeholder,
272 + .sort-by .bootstrap-select > .btn,
273 + .sort-by .bootstrap-select > .btn:active,
274 + .page-link,
275 + .page-link:hover,
276 + .accordion-title:before,
277 + .blog-post-content-widget h4 a:hover,
278 + .agent-list-wrap .agent-list-content h2 a:hover,
279 + .agent-list-wrap .agent-list-contact li a:hover,
280 + .agent-contacts-wrap li a:hover,
281 + .agent-nav-wrap .nav-pills .nav-link,
282 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
283 + .menu-edit-property li a.active,
284 + .menu-edit-property li a:hover,
285 + .dashboard-statistic-block h3 .fa,
286 + .statistic-referrals-list li a:hover,
287 + .chart-nav .nav-pills .nav-link.active,
288 + .board-message-icon-wrap.active,
289 + .post-title-wrap h2 a:hover,
290 + .listing-switch-view .switch-btn.active,
291 + .item-wrap-v6 .item-price-wrap,
292 + .listing-v6 .list-view .item-body .item-price-wrap,
293 + .woocommerce nav.woocommerce-pagination ul li a,
294 + .woocommerce nav.woocommerce-pagination ul li span,
295 + .woocommerce-MyAccount-navigation ul li a:hover,
296 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
297 + .property-schedule-tour-form-wrap .control:hover,
298 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
299 + .login-register .btn-icon-login-register + .dropdown-menu a,
300 + .activitiy-item-close-button a:hover,
301 + .property-section-wrap li a:hover,
302 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active,
303 + .property-lightbox-v2-sections-navigation .slick-prev,
304 + .property-lightbox-v2-sections-navigation .slick-next,
305 + .property-lightbox-v2-sections-navigation .slick-slide.current-section,
306 + .property-lightbox-v2-sections-navigation .nav-link.active,
307 + .agent-detail-page-v2 .listing-tabs .nav-link.active {
308 + color: #014582;
309 + }
310 +
311 + .agent-list-position a {
312 + color: #014582;
313 + }
314 +
315 + .control input:checked ~ .control__indicator,
316 + .top-banner-wrap .nav-pills .nav-link,
317 + .btn-primary-outlined:hover,
318 + .page-item.active .page-link,
319 + .slick-prev:hover,
320 + .slick-prev:focus,
321 + .slick-next:hover,
322 + .slick-next:focus,
323 + .mobile-property-tools .nav-pills .nav-link.active,
324 + .login-register-form .modal-header,
325 + .agent-nav-wrap .nav-pills .nav-link.active,
326 + .board-message-icon-wrap .notification-circle,
327 + .primary-label,
328 + .fc-event, .fc-event-dot,
329 + .compare-table .table-hover > tbody > tr:hover,
330 + .post-tag,
331 + .datepicker table tr td.active.active,
332 + .datepicker table tr td.active.disabled,
333 + .datepicker table tr td.active.disabled.active,
334 + .datepicker table tr td.active.disabled.disabled,
335 + .datepicker table tr td.active.disabled:active,
336 + .datepicker table tr td.active.disabled:hover,
337 + .datepicker table tr td.active.disabled:hover.active,
338 + .datepicker table tr td.active.disabled:hover.disabled,
339 + .datepicker table tr td.active.disabled:hover:active,
340 + .datepicker table tr td.active.disabled:hover:hover,
341 + .datepicker table tr td.active.disabled:hover[disabled],
342 + .datepicker table tr td.active.disabled[disabled],
343 + .datepicker table tr td.active:active,
344 + .datepicker table tr td.active:hover,
345 + .datepicker table tr td.active:hover.active,
346 + .datepicker table tr td.active:hover.disabled,
347 + .datepicker table tr td.active:hover:active,
348 + .datepicker table tr td.active:hover:hover,
349 + .datepicker table tr td.active:hover[disabled],
350 + .datepicker table tr td.active[disabled],
351 + .ui-slider-horizontal .ui-slider-range,
352 + .btn-bubble {
353 + background-color: #014582;
354 + }
355 +
356 + .control input:checked ~ .control__indicator,
357 + .btn-primary-outlined,
358 + .page-item.active .page-link,
359 + .mobile-property-tools .nav-pills .nav-link.active,
360 + .agent-nav-wrap .nav-pills .nav-link,
361 + .agent-nav-wrap .nav-pills .nav-link.active,
362 + .chart-nav .nav-pills .nav-link.active,
363 + .dashaboard-snake-nav .step-block.active,
364 + .fc-event,
365 + .fc-event-dot,
366 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
367 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
368 + border-color: #014582;
369 + }
370 +
371 + .slick-arrow:hover {
372 + background-color: rgba(36,52,140,0.52);
373 + }
374 +
375 + .slick-arrow {
376 + background-color: #014582;
377 + }
378 +
379 + .property-banner .nav-pills .nav-link.active {
380 + background-color: rgba(36,52,140,0.52) !important;
381 + }
382 +
383 + .property-navigation-wrap a.active {
384 + color: #014582;
385 + -webkit-box-shadow: inset 0 -3px #014582;
386 + box-shadow: inset 0 -3px #014582;
387 + }
388 +
389 + .btn-primary,
390 + .fc-button-primary,
391 + .woocommerce nav.woocommerce-pagination ul li a:focus,
392 + .woocommerce nav.woocommerce-pagination ul li a:hover,
393 + .woocommerce nav.woocommerce-pagination ul li span.current {
394 + color: #fff;
395 + background-color: #014582;
396 + border-color: #014582;
397 + }
398 + .btn-primary:focus, .btn-primary:focus:active,
399 + .fc-button-primary:focus,
400 + .fc-button-primary:focus:active {
401 + color: #fff;
402 + background-color: #014582;
403 + border-color: #014582;
404 + }
405 + .btn-primary:hover,
406 + .fc-button-primary:hover {
407 + color: #fff;
408 + background-color: #24348c;
409 + border-color: #24348c;
410 + }
411 + .btn-primary:active,
412 + .btn-primary:not(:disabled):not(:disabled):active,
413 + .fc-button-primary:active,
414 + .fc-button-primary:not(:disabled):not(:disabled):active {
415 + color: #fff;
416 + background-color: #24348c;
417 + border-color: #24348c;
418 + }
419 +
420 + .btn-secondary,
421 + .woocommerce span.onsale,
422 + .woocommerce ul.products li.product .button,
423 + .woocommerce #respond input#submit.alt,
424 + .woocommerce a.button.alt,
425 + .woocommerce button.button.alt,
426 + .woocommerce input.button.alt,
427 + .woocommerce #review_form #respond .form-submit input,
428 + .woocommerce #respond input#submit,
429 + .woocommerce a.button,
430 + .woocommerce button.button,
431 + .woocommerce input.button {
432 + color: #fff;
433 + background-color: #2ea7b2;
434 + border-color: #2ea7b2;
435 + }
436 + .woocommerce ul.products li.product .button:focus,
437 + .woocommerce ul.products li.product .button:active,
438 + .woocommerce #respond input#submit.alt:focus,
439 + .woocommerce a.button.alt:focus,
440 + .woocommerce button.button.alt:focus,
441 + .woocommerce input.button.alt:focus,
442 + .woocommerce #respond input#submit.alt:active,
443 + .woocommerce a.button.alt:active,
444 + .woocommerce button.button.alt:active,
445 + .woocommerce input.button.alt:active,
446 + .woocommerce #review_form #respond .form-submit input:focus,
447 + .woocommerce #review_form #respond .form-submit input:active,
448 + .woocommerce #respond input#submit:active,
449 + .woocommerce a.button:active,
450 + .woocommerce button.button:active,
451 + .woocommerce input.button:active,
452 + .woocommerce #respond input#submit:focus,
453 + .woocommerce a.button:focus,
454 + .woocommerce button.button:focus,
455 + .woocommerce input.button:focus {
456 + color: #fff;
457 + background-color: #2ea7b2;
458 + border-color: #2ea7b2;
459 + }
460 + .btn-secondary:hover,
461 + .woocommerce ul.products li.product .button:hover,
462 + .woocommerce #respond input#submit.alt:hover,
463 + .woocommerce a.button.alt:hover,
464 + .woocommerce button.button.alt:hover,
465 + .woocommerce input.button.alt:hover,
466 + .woocommerce #review_form #respond .form-submit input:hover,
467 + .woocommerce #respond input#submit:hover,
468 + .woocommerce a.button:hover,
469 + .woocommerce button.button:hover,
470 + .woocommerce input.button:hover {
471 + color: #fff;
472 + background-color: #333333;
473 + border-color: #333333;
474 + }
475 + .btn-secondary:active,
476 + .btn-secondary:not(:disabled):not(:disabled):active {
477 + color: #fff;
478 + background-color: #333333;
479 + border-color: #333333;
480 + }
481 +
482 + .btn-primary-outlined {
483 + color: #014582;
484 + background-color: transparent;
485 + border-color: #014582;
486 + }
487 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
488 + color: #014582;
489 + background-color: transparent;
490 + border-color: #014582;
491 + }
492 + .btn-primary-outlined:hover {
493 + color: #fff;
494 + background-color: #24348c;
495 + border-color: #24348c;
496 + }
497 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
498 + color: #014582;
499 + background-color: rgba(26, 26, 26, 0);
500 + border-color: #24348c;
501 + }
502 +
503 + .btn-secondary-outlined {
504 + color: #2ea7b2;
505 + background-color: transparent;
506 + border-color: #2ea7b2;
507 + }
508 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
509 + color: #2ea7b2;
510 + background-color: transparent;
511 + border-color: #2ea7b2;
512 + }
513 + .btn-secondary-outlined:hover {
514 + color: #fff;
515 + background-color: #333333;
516 + border-color: #333333;
517 + }
518 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
519 + color: #2ea7b2;
520 + background-color: rgba(26, 26, 26, 0);
521 + border-color: #333333;
522 + }
523 +
524 + .btn-call {
525 + color: #2ea7b2;
526 + background-color: transparent;
527 + border-color: #2ea7b2;
528 + }
529 + .btn-call:focus, .btn-call:focus:active {
530 + color: #2ea7b2;
531 + background-color: transparent;
532 + border-color: #2ea7b2;
533 + }
534 + .btn-call:hover {
535 + color: #2ea7b2;
536 + background-color: rgba(26, 26, 26, 0);
537 + border-color: #333333;
538 + }
539 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
540 + color: #2ea7b2;
541 + background-color: rgba(26, 26, 26, 0);
542 + border-color: #333333;
543 + }
544 + .icon-delete .btn-loader:after{
545 + border-color: #014582 transparent #014582 transparent
546 + }
547 +
548 + .header-v1 {
549 + background-color: #004274;
550 + border-bottom: 1px solid #004274;
551 + }
552 +
553 + .header-v1 a.nav-link {
554 + color: #ffffff;
555 + }
556 +
557 + .header-v1 a.nav-link:hover,
558 + .header-v1 a.nav-link:active {
559 + color: #00aeff;
560 + background-color: rgba(255,255,255,0.2);
561 + }
562 + .header-desktop .main-nav .nav-link {
563 + letter-spacing: 0.0px;
564 + }
565 +
566 + .header-v2 .header-top,
567 + .header-v5 .header-top,
568 + .header-v2 .header-contact-wrap {
569 + background-color: #ffffff;
570 + }
571 +
572 + .header-v2 .header-bottom,
573 + .header-v5 .header-bottom {
574 + background-color: #004274;
575 + }
576 +
577 + .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 {
578 + color: #004274;
579 + }
580 +
581 + .header-v2 .header-contact-left {
582 + color: #004274;
583 + }
584 +
585 + .header-v2 .header-bottom,
586 + .header-v2 .navbar-nav > li,
587 + .header-v2 .navbar-nav > li:first-of-type,
588 + .header-v5 .header-bottom,
589 + .header-v5 .navbar-nav > li,
590 + .header-v5 .navbar-nav > li:first-of-type {
591 + border-color: rgba(255,255,255,0.2);
592 + }
593 +
594 + .header-v2 a.nav-link,
595 + .header-v5 a.nav-link {
596 + color: #ffffff;
597 + }
598 +
599 + .header-v2 a.nav-link:hover,
600 + .header-v2 a.nav-link:active,
601 + .header-v5 a.nav-link:hover,
602 + .header-v5 a.nav-link:active {
603 + color: #00aeff;
604 + background-color: rgba(255,255,255,0.2);
605 + }
606 +
607 + .header-v2 .header-contact-right a:hover,
608 + .header-v2 .header-contact-right a:active,
609 + .header-v3 .header-contact-right a:hover,
610 + .header-v3 .header-contact-right a:active {
611 + background-color: transparent;
612 + }
613 +
614 + .header-v2 .header-social-icons a,
615 + .header-v5 .header-social-icons a {
616 + color: #004274;
617 + }
618 +
619 + .header-v3 .header-top {
620 + background-color: #ffffff;
621 + }
622 +
623 + .header-v3 .header-bottom {
624 + background-color: #004272;
625 + }
626 +
627 + .header-v3 .header-contact,
628 + .header-v3-mobile {
629 + background-color: #00aeef;
630 + color: #ffffff;
631 + }
632 +
633 + .header-v3 .header-bottom,
634 + .header-v3 .login-register,
635 + .header-v3 .navbar-nav > li,
636 + .header-v3 .navbar-nav > li:first-of-type {
637 + border-color: ;
638 + }
639 +
640 + .header-v3 a.nav-link,
641 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
642 + color: #003a6b;
643 + }
644 +
645 + .header-v3 a.nav-link:hover,
646 + .header-v3 a.nav-link:active {
647 + color: #00aeff;
648 + background-color: rgba(26,94,158,1);
649 + }
650 +
651 + .header-v3 .header-social-icons a {
652 + color: #FFFFFF;
653 + }
654 +
655 + .header-v4 {
656 + background-color: #000000;
657 + }
658 +
659 + .header-v4 a.nav-link {
660 + color: #ffffff;
661 + }
662 +
663 + .header-v4 a.nav-link:hover,
664 + .header-v4 a.nav-link:active {
665 + color: #00aeff;
666 + background-color: rgba(0, 174, 255, 0.1);
667 + }
668 +
669 + .header-v6 .header-top {
670 + background-color: #00AEEF;
671 + }
672 +
673 + .header-v6 a.nav-link {
674 + color: #FFFFFF;
675 + }
676 +
677 + .header-v6 a.nav-link:hover,
678 + .header-v6 a.nav-link:active {
679 + color: #00aeff;
680 + background-color: rgba(255,255,255,0.2);
681 + }
682 +
683 + .header-v6 .header-social-icons a {
684 + color: #FFFFFF;
685 + }
686 +
687 + .header-mobile {
688 + background-color: #ffffff;
689 + }
690 + .header-mobile .toggle-button-left,
691 + .header-mobile .toggle-button-right {
692 + color: #0b0049;
693 + }
694 +
695 + .nav-mobile .logged-in-nav a,
696 + .nav-mobile .main-nav,
697 + .nav-mobile .navi-login-register {
698 + background-color: #ffffff;
699 + }
700 +
701 + .nav-mobile .logged-in-nav a,
702 + .nav-mobile .main-nav .nav-item .nav-item a,
703 + .nav-mobile .main-nav .nav-item a,
704 + .navi-login-register .main-nav .nav-item a {
705 + color: #000000;
706 + border-bottom: 1px solid #000000;
707 + background-color: #ffffff;
708 + }
709 +
710 + .nav-mobile .btn-create-listing,
711 + .navi-login-register .btn-create-listing {
712 + color: #fff;
713 + border: 1px solid #014582;
714 + background-color: #014582;
715 + }
716 +
717 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
718 + .navi-login-register .btn-create-listing:hover,
719 + .navi-login-register .btn-create-listing:active {
720 + color: #fff;
721 + border: 1px solid #014582;
722 + background-color: rgba(0, 174, 255, 0.65);
723 + }
724 +
725 + .header-transparent-wrap .header-v4 {
726 + background-color: transparent;
727 + border-bottom: 1px none rgba(255,255,255,0.3);
728 + }
729 +
730 + .header-transparent-wrap .header-v4 a {
731 + color: #ffffff;
732 + }
733 +
734 + .header-transparent-wrap .header-v4 a:hover,
735 + .header-transparent-wrap .header-v4 a:active {
736 + color: #4aa7e1;
737 + background-color: rgba(255, 255, 255, 0.1);
738 + }
739 +
740 + .main-nav .navbar-nav .nav-item .dropdown-menu,
741 + .login-register .login-register-nav li .dropdown-menu {
742 + background-color: rgba(255,255,255,0.95);
743 + }
744 +
745 + .login-register .login-register-nav li .dropdown-menu:before {
746 + border-left-color: rgba(255,255,255,0.95);
747 + border-top-color: rgba(255,255,255,0.95);
748 + }
749 +
750 + .main-nav .navbar-nav .nav-item .nav-item a,
751 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
752 + color: #888888;
753 + border-bottom: 1px solid #e6e6e6;
754 + }
755 +
756 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
757 + .main-nav .navbar-nav .nav-item .nav-item a:active,
758 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
759 + color: #4aa7e1;
760 + }
761 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
762 + .main-nav .navbar-nav .nav-item .nav-item a:active,
763 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
764 + background-color: rgba(0, 174, 255, 0.1);
765 + }
766 +
767 + .header-main-wrap .btn-create-listing {
768 + color: #4aa7e1;
769 + border: 1px solid #4aa7e1;
770 + background-color: #ffffff;
771 + }
772 +
773 + .header-main-wrap .btn-create-listing:hover,
774 + .header-main-wrap .btn-create-listing:active {
775 + color: rgba(255,255,255,1);
776 + border: 1px solid #4aa7e1;
777 + background-color: rgba(74,167,225,1);
778 + }
779 +
780 + .header-transparent-wrap .header-v4 .btn-create-listing {
781 + color: #ffffff;
782 + border: 1px solid #ffffff;
783 + background-color: rgba(255,255,255,0.2);
784 + }
785 +
786 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
787 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
788 + color: rgba(255,255,255,1);
789 + border: 1px solid #4aa7e1;
790 + background-color: rgba(74,167,225,1);
791 + }
792 +
793 + .header-transparent-wrap .logged-in-nav a,
794 + .logged-in-nav a {
795 + color: #15268c;
796 + border-color: #e6e6e6;
797 + background-color: #FFFFFF;
798 + }
799 +
800 + .header-transparent-wrap .logged-in-nav a:hover,
801 + .header-transparent-wrap .logged-in-nav a:active,
802 + .logged-in-nav a:hover,
803 + .logged-in-nav a:active {
804 + color: #17298c;
805 + background-color: rgba(204,204,204,0.15);
806 + border-color: #e6e6e6;
807 + }
808 +
809 + .form-control::-webkit-input-placeholder,
810 + .search-banner-wrap ::-webkit-input-placeholder,
811 + .advanced-search ::-webkit-input-placeholder,
812 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
813 + .overlay-search-advanced-module ::-webkit-input-placeholder {
814 + color: #a1a7a8;
815 + }
816 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
817 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
818 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
819 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
820 + color: #a1a7a8;
821 + }
822 + .form-control::placeholder,
823 + .search-banner-wrap ::-webkit-input-placeholder,
824 + .advanced-search ::-webkit-input-placeholder,
825 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
826 + .overlay-search-advanced-module ::-webkit-input-placeholder {
827 + color: #a1a7a8;
828 + }
829 +
830 + .search-banner-wrap ::-moz-placeholder,
831 + .advanced-search ::-moz-placeholder,
832 + .advanced-search-banner-wrap ::-moz-placeholder,
833 + .overlay-search-advanced-module ::-moz-placeholder {
834 + color: #a1a7a8;
835 + }
836 +
837 + .search-banner-wrap :-ms-input-placeholder,
838 + .advanced-search :-ms-input-placeholder,
839 + .advanced-search-banner-wrap ::-ms-input-placeholder,
840 + .overlay-search-advanced-module ::-ms-input-placeholder {
841 + color: #a1a7a8;
842 + }
843 +
844 + .search-banner-wrap :-moz-placeholder,
845 + .advanced-search :-moz-placeholder,
846 + .advanced-search-banner-wrap :-moz-placeholder,
847 + .overlay-search-advanced-module :-moz-placeholder {
848 + color: #a1a7a8;
849 + }
850 +
851 + .advanced-search .form-control,
852 + .advanced-search .bootstrap-select > .btn,
853 + .location-trigger,
854 + .vertical-search-wrap .form-control,
855 + .vertical-search-wrap .bootstrap-select > .btn,
856 + .step-search-wrap .form-control,
857 + .step-search-wrap .bootstrap-select > .btn,
858 + .advanced-search-banner-wrap .form-control,
859 + .advanced-search-banner-wrap .bootstrap-select > .btn,
860 + .search-banner-wrap .form-control,
861 + .search-banner-wrap .bootstrap-select > .btn,
862 + .overlay-search-advanced-module .form-control,
863 + .overlay-search-advanced-module .bootstrap-select > .btn,
864 + .advanced-search-v2 .advanced-search-btn,
865 + .advanced-search-v2 .advanced-search-btn:hover {
866 + border-color: #cccccc;
867 + }
868 +
869 + .advanced-search-nav,
870 + .search-expandable,
871 + .overlay-search-advanced-module {
872 + background-color: #FFFFFF;
873 + }
874 + .btn-search {
875 + color: #ffffff;
876 + background-color: #4aa7e1;
877 + border-color: #4aa7e1;
878 + }
879 + .btn-search:hover, .btn-search:active {
880 + color: #ffffff;
881 + background-color: #24348c;
882 + border-color: #24348c;
883 + }
884 + .advanced-search-btn {
885 + color: #666666;
886 + background-color: #ffffff;
887 + border-color: #dce0e0;
888 + }
889 + .advanced-search-btn:hover, .advanced-search-btn:active {
890 + color: #000000;
891 + background-color: #ffffff;
892 + border-color: #dce0e0;
893 + }
894 + .advanced-search-btn:focus {
895 + color: #666666;
896 + background-color: #ffffff;
897 + border-color: #dce0e0;
898 + }
899 + .search-expandable-label {
900 + color: #ffffff;
901 + background-color: #4aa7e1;
902 + }
903 + .advanced-search-nav {
904 + padding-top: 10px;
905 + padding-bottom: 10px;
906 + }
907 + .features-list-wrap .control--checkbox,
908 + .features-list-wrap .control--radio,
909 + .range-text,
910 + .features-list-wrap .control--checkbox,
911 + .features-list-wrap .btn-features-list,
912 + .overlay-search-advanced-module .search-title,
913 + .overlay-search-advanced-module .overlay-search-module-close {
914 + color: #222222;
915 + }
916 + .advanced-search-half-map {
917 + background-color: #FFFFFF;
918 + }
919 + .advanced-search-half-map .range-text,
920 + .advanced-search-half-map .features-list-wrap .control--checkbox,
921 + .advanced-search-half-map .features-list-wrap .btn-features-list {
922 + color: #222222;
923 + }
924 +
925 + .save-search-btn {
926 + border-color: #4aa7e1 ;
927 + background-color: #4aa7e1 ;
928 + color: #ffffff ;
929 + }
930 + .save-search-btn:hover,
931 + .save-search-btn:active {
932 + border-color: #4aa7e1;
933 + background-color: #4aa7e1 ;
934 + color: #ffffff ;
935 + }
936 + .label-featured {
937 + background-color: transparent;
938 + color: #ffffff;
939 + }
940 +
941 + .dashboard-side-wrap {
942 + background-color: #24348c;
943 + }
944 +
945 + .side-menu a {
946 + color: #ffffff;
947 + }
948 +
949 + .side-menu a.active,
950 + .side-menu .side-menu-parent-selected > a,
951 + .side-menu-dropdown a,
952 + .side-menu a:hover {
953 + color: #4aa7e1;
954 + }
955 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
956 + color: #4aa7e1
957 + }
958 +
959 + .detail-wrap {
960 + background-color: rgba(217,217,217,0.1);
961 + border-color: #d6d6d6;
962 + }
963 + .top-bar-wrap,
964 + .top-bar-wrap .dropdown-menu,
965 + .switcher-wrap .dropdown-menu {
966 + background-color: #262626;
967 + }
968 + .top-bar-wrap a,
969 + .top-bar-contact,
970 + .top-bar-slogan,
971 + .top-bar-wrap .btn,
972 + .top-bar-wrap .dropdown-menu,
973 + .switcher-wrap .dropdown-menu,
974 + .top-bar-wrap .navbar-toggler {
975 + color: #ffffff;
976 + }
977 + .top-bar-wrap a:hover,
978 + .top-bar-wrap a:active,
979 + .top-bar-wrap .btn:hover,
980 + .top-bar-wrap .btn:active,
981 + .top-bar-wrap .dropdown-menu li:hover,
982 + .top-bar-wrap .dropdown-menu li:active,
983 + .switcher-wrap .dropdown-menu li:hover,
984 + .switcher-wrap .dropdown-menu li:active {
985 + color: rgba(74,167,225,0.59);
986 + }
987 + .class-energy-indicator:nth-child(1) {
988 + background-color: #33a357;
989 + }
990 + .class-energy-indicator:nth-child(2) {
991 + background-color: #79b752;
992 + }
993 + .class-energy-indicator:nth-child(3) {
994 + background-color: #c3d545;
995 + }
996 + .class-energy-indicator:nth-child(4) {
997 + background-color: #fff12c;
998 + }
999 + .class-energy-indicator:nth-child(5) {
1000 + background-color: #edb731;
1001 + }
1002 + .class-energy-indicator:nth-child(6) {
1003 + background-color: #d66f2c;
1004 + }
1005 + .class-energy-indicator:nth-child(7) {
1006 + background-color: #cc232a;
1007 + }
1008 + .class-energy-indicator:nth-child(8) {
1009 + background-color: #cc232a;
1010 + }
1011 + .class-energy-indicator:nth-child(9) {
1012 + background-color: #cc232a;
1013 + }
1014 + .class-energy-indicator:nth-child(10) {
1015 + background-color: #cc232a;
1016 + }
1017 +
1018 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#24348c }
1019 + .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 }
1020 +
1021 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#4aa7e1 }
1022 +
1023 + .footer-top-wrap {
1024 + background-color: #181818;
1025 + }
1026 +
1027 + .footer-bottom-wrap {
1028 + background-color: #000000;
1029 + }
1030 +
1031 + .footer-top-wrap,
1032 + .footer-top-wrap a,
1033 + .footer-bottom-wrap,
1034 + .footer-bottom-wrap a,
1035 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
1036 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
1037 + .footer-top-wrap .blog-post-content-widget h4 a,
1038 + .footer-top-wrap .blog-post-content-widget,
1039 + .footer-top-wrap .form-tools .control,
1040 + .footer-top-wrap .slick-dots li.slick-active button:before,
1041 + .footer-top-wrap .slick-dots li button::before,
1042 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
1043 + color: #ffffff;
1044 + }
1045 +
1046 + .footer-top-wrap a:hover,
1047 + .footer-bottom-wrap a:hover,
1048 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
1049 + color: rgba(36,52,140,1);
1050 + }
1051 + .houzez-osm-cluster {
1052 + background-image: url(https://immeublesalexcellence.com/wp-content/themes/houzez/img/map/cluster-icon.png);
1053 + text-align: center;
1054 + color: #fff;
1055 + width: 48px;
1056 + height: 48px;
1057 + line-height: 48px;
1058 + }
1059 + section.top-banner-wrap.slider-revolution-wrap {
1060 + height: auto;
1061 +}
1062 +.label-status {
1063 + font-size: 14px;
1064 + text-transform: uppercase; /* Optionnel : Met les étiquettes en majuscules */
1065 +}
1066 +.hz-label {
1067 + font-size: 14px; /* Ajustez la taille selon vos besoins */
1068 + font-weight: bold; /* Rend le texte en gras */
1069 + color: #ffffff; /* Couleur du texte */
1070 + background-color: #166584; /* Couleur de fond */
1071 + padding: 5px 10px; /* Espacement interne */
1072 + border-radius: 3px; /* Coins arrondis */
1073 +}
1074 +</style>
1075 +<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /></noscript><link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap&#038;ver=6.7.5' type='text/css' media='all' />
1076 +<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.27.1" id="font-awesome-4-shim-js"></script>
1077 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
1078 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
1079 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/js/houzez-studio-public.js?ver=1.2.1" id="houzez-studio-js"></script>
1080 +<link rel="https://api.w.org/" href="https://immeublesalexcellence.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://immeublesalexcellence.com/wp-json/wp/v2/pages/1769" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://immeublesalexcellence.com/xmlrpc.php?rsd" />
1081 +<meta name="generator" content="WordPress 6.7.5" />
1082 +<link rel='shortlink' href='https://immeublesalexcellence.com/?p=1769' />
1083 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements-a-louer%2F" />
1084 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements-a-louer%2F&#038;format=xml" />
1085 +<meta name="generator" content="Redux 4.5.6" /> <style>.cmplz-hidden {
1086 + display: none !important;
1087 + }</style><meta name="generator" content="Elementor 3.27.1; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
1088 + <style>
1089 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1090 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1091 + background-image: none !important;
1092 + }
1093 + @media screen and (max-height: 1024px) {
1094 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1095 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1096 + background-image: none !important;
1097 + }
1098 + }
1099 + @media screen and (max-height: 640px) {
1100 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1101 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1102 + background-image: none !important;
1103 + }
1104 + }
1105 + </style>
1106 + <meta name="generator" content="Powered by Slider Revolution 6.7.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
1107 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-32x32.png" sizes="32x32" />
1108 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-192x192.png" sizes="192x192" />
1109 +<link rel="apple-touch-icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-180x180.png" />
1110 +<meta name="msapplication-TileImage" content="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-270x270.png" />
1111 +<script>function setREVStartSize(e){
1112 + //window.requestAnimationFrame(function() {
1113 + window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
1114 + window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
1115 + try {
1116 + var pw = document.getElementById(e.c).parentNode.offsetWidth,
1117 + newh;
1118 + pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw;
1119 + e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
1120 + e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
1121 + e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
1122 + e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
1123 + e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
1124 + e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
1125 + e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
1126 + if(e.layout==="fullscreen" || e.l==="fullscreen")
1127 + newh = Math.max(e.mh,window.RSIH);
1128 + else{
1129 + e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
1130 + for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
1131 + e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
1132 + e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
1133 + for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
1134 +
1135 + var nl = new Array(e.rl.length),
1136 + ix = 0,
1137 + sl;
1138 + e.tabw = e.tabhide>=pw ? 0 : e.tabw;
1139 + e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
1140 + e.tabh = e.tabhide>=pw ? 0 : e.tabh;
1141 + e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
1142 + for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
1143 + sl = nl[0];
1144 + for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
1145 + var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
1146 + newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
1147 + }
1148 + var el = document.getElementById(e.c);
1149 + if (el!==null && el) el.style.height = newh+"px";
1150 + el = document.getElementById(e.c+"_wrapper");
1151 + if (el!==null && el) {
1152 + el.style.height = newh+"px";
1153 + el.style.display = "block";
1154 + }
1155 + } catch(e){
1156 + console.log("Failure at Presize of Slider:" + e)
1157 + }
1158 + //});
1159 + };</script>
1160 +</head>
1161 +
1162 +<body data-cmplz=2 class="page-template page-template-template page-template-template-listing-grid-v6-fullwidth-3cols page-template-templatetemplate-listing-grid-v6-fullwidth-3cols-php page page-id-1769 houzez-theme houzez-footer-position transparent-no houzez-header-property_slider elementor-default elementor-kit-6 elementor-page elementor-page-1769">
1163 +
1164 +
1165 + <div class="nav-mobile nav-mobile-js">
1166 + <div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile">
1167 + <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://immeublesalexcellence.com/">Accueil</a> </li>
1168 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1169 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1769 current_page_item "><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1170 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1171 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1172 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1173 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1174 +</ul> </div><!-- main-nav -->
1175 + <nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user">
1176 +
1177 +
1178 +
1179 + </nav><!-- .navi -->
1180 +
1181 +
1182 +
1183 +</div><!-- nav-mobile -->
1184 + <main id="main-wrap" class="main-wrap main-wrap-js">
1185 +
1186 + <header class="header-main-wrap ">
1187 + <div class="top-bar-wrap ">
1188 + <div class="container">
1189 + <div class="d-flex justify-content-between">
1190 + <div class="top-bar-left-wrap">
1191 + <div class="header-social-icons">
1192 + <ul class="list-inline">
1193 +
1194 + <li class="list-inline-item">
1195 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1196 + <i class="houzez-icon icon-social-media-facebook"></i>
1197 + </a>
1198 + </li>
1199 +
1200 +
1201 +
1202 +
1203 +
1204 +
1205 +
1206 +
1207 + <li class="list-inline-item">
1208 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1209 + <i class="houzez-icon icon-social-instagram"></i>
1210 + </a>
1211 + </li>
1212 +
1213 +
1214 +
1215 +
1216 + </ul>
1217 +</div><!-- .header-social-icons -->
1218 + </div><!-- top-bar-left-wrap -->
1219 +
1220 + <div class="top-bar-right-wrap">
1221 + <div class="top-bar-contact">
1222 +
1223 + </div><!-- top-bar-contact --> </div><!-- top-bar-right-wrap -->
1224 + </div><!-- d-flex -->
1225 + </div><!-- container -->
1226 +</div><!-- top-bar-wrap --><div class="header-desktop header-v2">
1227 + <div class="header-top">
1228 + <div class="container">
1229 + <div class="header-inner-wrap">
1230 + <div class="navbar d-flex align-items-center">
1231 +
1232 +
1233 + <div class="logo logo-desktop">
1234 + <a href="https://immeublesalexcellence.com/">
1235 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="66,5px" width="218px" alt="logo">
1236 + </a>
1237 + </div>
1238 +
1239 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1240 +
1241 +
1242 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1243 + <div class="header-contact-left">
1244 + <i class="houzez-icon icon-phone ml-1"></i>
1245 + </div><!-- header-contact-left -->
1246 + <div class="header-contact-right">
1247 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1248 + <div><a href="mailto:"></a></div>
1249 + </div><!-- .header-contact-right -->
1250 + </div><!-- .header-contact -->
1251 +
1252 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1253 + <div class="header-contact-left">
1254 + <i class="houzez-icon icon-pin ml-1"></i>
1255 + </div><!-- header-contact-left -->
1256 + <div class="header-contact-right">
1257 + <div>1025, rue des Seigneurs, #301</div>
1258 + <div>Sherbrooke (Québec) J1H 5V3</div>
1259 + </div><!-- .header-contact-right -->
1260 + </div><!-- .header-contact -->
1261 +
1262 +
1263 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1264 + <div class="header-contact-left">
1265 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1266 + </div><!-- header-contact-left -->
1267 + <div class="header-contact-right">
1268 + <div>8 h 30 à 16 h 30</div>
1269 + <div>Lundi au jeudi</div>
1270 + </div><!-- .header-contact-right -->
1271 + </div><!-- .header-contact -->
1272 +
1273 +
1274 + <div class="header-contact header-contact-4 d-flex align-items-center">
1275 + <div class="header-social-icons">
1276 + <ul class="list-inline">
1277 +
1278 + <li class="list-inline-item">
1279 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1280 + <i class="houzez-icon icon-social-media-facebook"></i>
1281 + </a>
1282 + </li>
1283 +
1284 +
1285 +
1286 +
1287 +
1288 +
1289 +
1290 +
1291 + <li class="list-inline-item">
1292 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1293 + <i class="houzez-icon icon-social-instagram"></i>
1294 + </a>
1295 + </li>
1296 +
1297 +
1298 +
1299 +
1300 + </ul>
1301 +</div><!-- .header-social-icons -->
1302 + </div><!-- .header-contact -->
1303 +</div><!-- .header-contact-wrap -->
1304 +
1305 +
1306 + </div><!-- navbar -->
1307 + </div>
1308 + </div>
1309 + </div><!-- .header-top -->
1310 + <div id="header-section" class="header-bottom" data-sticky="1">
1311 + <div class="container">
1312 + <div class="header-inner-wrap">
1313 + <div class="navbar d-flex align-items-center">
1314 +
1315 + <nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1">
1316 + <ul id="main-nav" class="navbar-nav "><li id="menu-item-1535" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home nav-item menu-item-1535 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/">Accueil</a> </li>
1317 +<li id="menu-item-1809" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1809 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1318 +<li id="menu-item-1771" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1769 current_page_item nav-item menu-item-1771 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1319 +<li id="menu-item-2352" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2352 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1320 +<li id="menu-item-2432" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2432 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1321 +<li id="menu-item-2426" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2426 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1322 +<li id="menu-item-2466" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2466 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1323 +</ul> </nav><!-- main-nav -->
1324 +
1325 + <div class="login-register on-hover-menu">
1326 + <ul class="login-register-nav dropdown d-flex align-items-center">
1327 +
1328 +
1329 +
1330 +
1331 +
1332 +
1333 + </ul>
1334 +</div>
1335 + </div><!-- navbar -->
1336 + </div>
1337 + </div>
1338 + </div><!-- .header-bottom -->
1339 +</div><!-- .header-v2 -->
1340 +
1341 +<div class="header-v2 header-v2-mobile">
1342 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1343 +
1344 +
1345 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1346 + <div class="header-contact-left">
1347 + <i class="houzez-icon icon-phone ml-1"></i>
1348 + </div><!-- header-contact-left -->
1349 + <div class="header-contact-right">
1350 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1351 + <div><a href="mailto:"></a></div>
1352 + </div><!-- .header-contact-right -->
1353 + </div><!-- .header-contact -->
1354 +
1355 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1356 + <div class="header-contact-left">
1357 + <i class="houzez-icon icon-pin ml-1"></i>
1358 + </div><!-- header-contact-left -->
1359 + <div class="header-contact-right">
1360 + <div>1025, rue des Seigneurs, #301</div>
1361 + <div>Sherbrooke (Québec) J1H 5V3</div>
1362 + </div><!-- .header-contact-right -->
1363 + </div><!-- .header-contact -->
1364 +
1365 +
1366 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1367 + <div class="header-contact-left">
1368 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1369 + </div><!-- header-contact-left -->
1370 + <div class="header-contact-right">
1371 + <div>8 h 30 à 16 h 30</div>
1372 + <div>Lundi au jeudi</div>
1373 + </div><!-- .header-contact-right -->
1374 + </div><!-- .header-contact -->
1375 +
1376 +
1377 + <div class="header-contact header-contact-4 d-flex align-items-center">
1378 + <div class="header-social-icons">
1379 + <ul class="list-inline">
1380 +
1381 + <li class="list-inline-item">
1382 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1383 + <i class="houzez-icon icon-social-media-facebook"></i>
1384 + </a>
1385 + </li>
1386 +
1387 +
1388 +
1389 +
1390 +
1391 +
1392 +
1393 +
1394 + <li class="list-inline-item">
1395 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1396 + <i class="houzez-icon icon-social-instagram"></i>
1397 + </a>
1398 + </li>
1399 +
1400 +
1401 +
1402 +
1403 + </ul>
1404 +</div><!-- .header-social-icons -->
1405 + </div><!-- .header-contact -->
1406 +</div><!-- .header-contact-wrap -->
1407 +
1408 +
1409 +
1410 +</div><!-- header-v2-mobile --><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky="">
1411 + <div class="header-mobile-left">
1412 + <button class="btn toggle-button-left">
1413 + <i class="houzez-icon icon-navigation-menu"></i>
1414 + </button><!-- toggle-button-left -->
1415 + </div><!-- .header-mobile-left -->
1416 + <div class="header-mobile-center flex-grow-1">
1417 + <div class="logo logo-mobile">
1418 + <a href="https://immeublesalexcellence.com/">
1419 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="39" width="127" alt="Mobile logo">
1420 + </a>
1421 +</div> </div>
1422 +
1423 + <div class="header-mobile-right">
1424 + </div><!-- .header-mobile-right -->
1425 +
1426 +</div><!-- header-mobile --></header><!-- .header-main-wrap -->
1427 + <section class="top-banner-wrap property-slider-wrap">
1428 + <div class="property-slider houzez-all-slider-wrap" data-autoplay="1" data-loop="1" data-speed="5000">
1429 + </div><!-- property-slider -->
1430 +
1431 + </section><!-- property-slider-wrap --><section id="desktop-header-search" class="advanced-search advanced-search-nav " data-hidden="0" data-sticky='0'>
1432 + <div class="container">
1433 + <form class="houzez-search-form-js " method="get" autocomplete="off" action="https://immeublesalexcellence.com/resultats-recherche/">
1434 +
1435 +
1436 + <div class="advanced-search-v2 advanced-search-v2-geolocation">
1437 + <div class="d-flex">
1438 + <div class="flex-fill fields-width "><div class="form-group">
1439 + <select name="type[]" data-size="5" class="selectpicker form-control bs-select-hidden" title="Nombre de pièces" data-live-search="true" data-selected-text-format="count > 1" data-actions-box="true" multiple data-select-all-text=" Sélectionner tout" data-deselect-all-text="Désélectionner tout" data-live-search-normalize="true" data-count-selected-text="{0} Types sélectionnés" data-none-results-text="Aucun résultat correspondant {0}" data-container="body">
1440 +
1441 + <option data-ref="entrepot-1%c2%bd-2" value="entrepot-1%c2%bd-2">Entrepôt</option><option data-ref="loyer-1%c2%bd" value="loyer-1%c2%bd">Loyer 1½</option><option data-ref="loyer-2%c2%bd" value="loyer-2%c2%bd">Loyer 2½</option><option data-ref="loyer-3%c2%bd" value="loyer-3%c2%bd">Loyer 3½</option><option data-ref="loyer-4%c2%bd" value="loyer-4%c2%bd">Loyer 4½</option><option data-ref="loyer-5%c2%bd" value="loyer-5%c2%bd">Loyer 5½</option> </select><!-- selectpicker -->
1442 +</div><!-- form-group --></div><div class="flex-fill fields-width "><div class="form-group">
1443 + <select name="status[]" data-size="5" class="selectpicker status-js form-control bs-select-hidden" title="Disponibilité" data-live-search="false" data-selected-text-format="count > 1" data-live-search-normalize="true" data-actions-box="true" multiple data-select-all-text=" Sélectionner tout" data-deselect-all-text="Désélectionner tout" data-none-results-text="Aucun résultat correspondant {0}" data-count-selected-text="{0} Statuts sélectionnés" data-container="body">
1444 + <option data-ref="1-er-octobre-2026" value="1-er-octobre-2026">1 er octobre 2026</option><option data-ref="disponible-1er-janvier-2026" value="disponible-1er-janvier-2026">1er janvier 2026</option><option data-ref="1er-janvier-2027" value="1er-janvier-2027">1er janvier 2027</option><option data-ref="1er-novembre-2026" value="1er-novembre-2026">1er novembre 2026</option><option data-ref="1et-janvier-2027" value="1et-janvier-2027">1et janvier 2027</option><option data-ref="a-louer" value="a-louer">À LOUER</option><option data-ref="disponible-1er-fevrier-2026" value="disponible-1er-fevrier-2026">1er février 2026</option><option data-ref="disponible-1er-mars-2026" value="disponible-1er-mars-2026">1er mars 2026</option><option data-ref="disponible-1er-avril-2026" value="disponible-1er-avril-2026">1er avril 2026</option><option data-ref="disponible-1er-mai-2026" value="disponible-1er-mai-2026">1er mai 2026</option><option data-ref="disponible-1er-juin-2026" value="disponible-1er-juin-2026">1er juin 2026</option><option data-ref="disponible-1er-juillet-2026" value="disponible-1er-juillet-2026">1er juillet 2026</option><option data-ref="disponible-1er-aout-2026" value="disponible-1er-aout-2026">1er août 2026</option><option data-ref="disponible-1er-septembre-2026" value="disponible-1er-septembre-2026">1er septembre 2026</option><option data-ref="loue" value="loue">LOUÉ</option> </select><!-- selectpicker -->
1445 +</div><!-- form-group --></div><div class="flex-fill fields-width "><div class="form-group prices-for-all">
1446 + <select name="max-price" data-size="5" class="selectpicker form-control bs-select-hidden" title="Prix maximum" data-live-search="false">
1447 + <option value="">Prix maximum</option>
1448 + <option value="any">Tout</option><option value="900">900$</option><option value="1000">1,000$</option><option value="1100">1,100$</option><option value="1200">1,200$</option><option value="1500">1,500$</option><option value="2000">2,000$</option> </select><!-- selectpicker -->
1449 +</div><!-- form-group -->
1450 +
1451 +<div class="form-group hide prices-only-for-rent">
1452 + <select name="max-price" data-size="5" class="selectpicker form-control bs-select-hidden" title="Prix maximum" data-live-search="false">
1453 + <option value="">Prix maximum</option>
1454 + <option value="any">Tout</option><option value="900">900$</option><option value="1000">1,000$</option><option value="1250">1,250$</option><option value="1500">1,500$</option><option value="1750">1,750$</option><option value="2000">2,000$</option><option value="2500">2,500$</option><option value="3000">3,000$</option> </select><!-- selectpicker -->
1455 +</div><!-- form-group -->
1456 +</div>
1457 +
1458 + <button type="submit" class="btn btn-search btn-secondary ">Aller</button>
1459 + </div><!-- d-flex -->
1460 + </div><!-- advanced-search-v2 -->
1461 +
1462 + <div id="advanced-search-filters" class="collapse show">
1463 +
1464 +<div class="advanced-search-filters search-v1-v2">
1465 + <div class="d-flex">
1466 +
1467 + </div>
1468 +
1469 + </div>
1470 +
1471 +<div class="features-list-wrap">
1472 + <a class="btn-features-list" data-toggle="collapse" href="#features-list">
1473 + <i class="houzez-icon icon-add-square"></i> Autres caractéristiques </a><!-- btn-features-list -->
1474 + <div id="features-list" class="collapse">
1475 + <div class="features-list">
1476 + <label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="ascenseur">Ascenseur<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="aspirateur-centrale">Aspirateur centrale<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="balcon-prive">Balcon privé<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="buanderie">Buanderie ($)<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="buanderie-gratuite">Buanderie gratuite<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="camera-de-surveillance">Caméra de surveillance<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="ceramique-planchette-de-vinyle">Céramique, Planchette de vinyle<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="chauffage-inclus">Chauffage inclus<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="comptoir-ilot">Comptoir ilot<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="comptoir-lunch">Comptoir lunch<span class="control__indicator"></span></label> </div><!-- features-list -->
1477 + </div><!-- collapse -->
1478 +</div><!-- features-list-wrap --> </div><!-- advanced-search-filters -->
1479 + </form>
1480 + </div><!-- container -->
1481 +</section><!-- advanced-search --><section class="listing-wrap listing-v6">
1482 + <div class="container">
1483 +
1484 + <div class="page-title-wrap">
1485 +
1486 +
1487 +<div class="breadcrumb-wrap">
1488 + <nav>
1489 + <ol class="breadcrumb"><li class="breadcrumb-item breadcrumb-item-home"><i class="houzez-icon icon-house"></i><a href="https://immeublesalexcellence.com/">Accueil</a></li><li class="breadcrumb-item active">Annonces Loyers</li></ol> </nav>
1490 +</div><!-- breadcrumb-wrap -->
1491 +<div class="d-flex align-items-center">
1492 + <div class="page-title flex-grow-1">
1493 + <h1>Annonces Loyers</h1>
1494 +</div><!-- page-title -->
1495 +
1496 + <div class="listing-switch-view">
1497 + <ul class="list-inline">
1498 + <li class="list-inline-item">
1499 + <a class="switch-btn btn-list">
1500 + <i class="houzez-icon icon-layout-bullets"></i>
1501 + </a>
1502 + </li>
1503 + <li class="list-inline-item">
1504 + <a class="switch-btn btn-grid">
1505 + <i class="houzez-icon icon-layout-module-1"></i>
1506 + </a>
1507 + </li>
1508 + </ul>
1509 +</div><!-- listing-switch-view -->
1510 +</div><!-- d-flex -->
1511 +
1512 + </div><!-- page-title-wrap -->
1513 +
1514 + <div class="row">
1515 + <div class="col-lg-12 col-md-12">
1516 +
1517 + <article class="post-1769 page type-page status-publish hentry">
1518 + </article>
1519 +
1520 + <div class="listing-tools-wrap">
1521 + <div class="d-flex align-items-center mb-2">
1522 + <div class="listings-count flex-grow-1">
1523 + 20 Loyers</div>
1524 +
1525 + <div class="sort-by">
1526 + <div class="d-flex align-items-center">
1527 + <div class="sort-by-title">
1528 + Trier par: </div><!-- sort-by-title -->
1529 + <select id="sort_properties" class="selectpicker form-control bs-select-hidden" title="Ordre par défaut" data-live-search="false" data-dropdown-align-right="auto">
1530 + <option value="">Ordre par défaut</option>
1531 + <option value="a_price">Prix - Du plus bas au plus élevé</option>
1532 + <option value="d_price">Prix - Du plus élevé au plus bas</option>
1533 +
1534 + <option value="featured_first">Inscriptions en vedette</option>
1535 +
1536 + <option value="a_date">Date ancienne à nouvelle</option>
1537 + <option value="d_date">Date nouvelle à ancienne</option>
1538 +
1539 + <option value="a_title">Titre</option>
1540 + <option value="d_title">Title - DESC</option>
1541 + </select><!-- selectpicker -->
1542 + </div><!-- d-flex -->
1543 +</div><!-- sort-by -->
1544 + </div><!-- d-flex -->
1545 +</div><!-- listing-tools-wrap -->
1546 + <div class="listing-view grid-view card-deck grid-view-3-cols">
1547 + <div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-2332" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2024\/12\/alouer-sherbrooke-entrepot-584x438.jpg&quot;,&quot;alt&quot;:&quot;Entrepot a louer Sherbrooke rue Thibautl&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2024\/12\/alouer-sherbrooke-entrepot-584x438.jpg&quot;,&quot;alt&quot;:&quot;Entrepot a louer Sherbrooke rue Thibautl&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
1548 + <div class="item-wrap item-wrap-v6 h-100">
1549 + <div class="d-flex align-items-center h-100">
1550 + <div class="item-header">
1551 +
1552 + <div class="labels-wrap labels-right">
1553 +
1554 + <a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1555 + À LOUER
1556 + </a>
1557 +
1558 +</div>
1559 +
1560 + <div class="listing-image-wrap">
1561 + <div class="listing-thumb">
1562 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/location-entrepot-sherbrooke/">
1563 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2024/12/alouer-sherbrooke-entrepot-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="Entrepot a louer Sherbrooke rue Thibautl" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2024/12/alouer-sherbrooke-entrepot-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2024/12/alouer-sherbrooke-entrepot-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2024/12/alouer-sherbrooke-entrepot-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2024/12/alouer-sherbrooke-entrepot-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2024/12/alouer-sherbrooke-entrepot-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2024/12/alouer-sherbrooke-entrepot-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2024/12/alouer-sherbrooke-entrepot.jpg 800w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
1564 + </div>
1565 + </div>
1566 +
1567 + <ul class="item-tools">
1568 +
1569 + <li class="item-tool item-preview">
1570 + <span class="hz-show-lightbox-js" data-listid="2332" data-toggle="tooltip" data-placement="top" title="Avis">
1571 + <i class="houzez-icon icon-expand-3"></i>
1572 + </span><!-- item-tool-favorite -->
1573 + </li><!-- item-tool -->
1574 +
1575 + <li class="item-tool item-favorite">
1576 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="2332">
1577 + <i class="houzez-icon icon-love-it "></i>
1578 + </span><!-- item-tool-favorite -->
1579 + </li><!-- item-tool -->
1580 +
1581 + </ul><!-- item-tools -->
1582 + <div class="preview_loader"></div>
1583 + </div><!-- item-header -->
1584 + <div class="item-body flex-grow-1">
1585 + <h2 class="item-title">
1586 + <a target=_blank href="https://immeublesalexcellence.com/appartements/location-entrepot-sherbrooke/">Entrepôt à louer Sherbrooke, rue Thibault</a>
1587 +</h2><!-- item-title -->
1588 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
1589 + <ul class="item-price-wrap">
1590 + <li class="item-price"><span class="item-price-text"></span></li>
1591 + </ul>
1592 + <ul class="item-amenities item-amenities-with-icons">
1593 + <li class="h-rooms"><i class="houzez-icon icon-real-estate-dimensions-plan-1 mr-1"></i><span class="item-amenities-text">Pièces:</span> <span class="hz-figure">1½</span></li></ul> </div><!-- d-flex -->
1594 + </div><!-- item-body -->
1595 + </div><!-- d-flex -->
1596 + </div><!-- item-wrap -->
1597 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3190" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/1-FRONT-logement-a-louer-Sherbrooke-20221207_120438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/2-CUISINE-1-logement-a-louer-Sherbrooke-20221207_120311.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/2-CUISINE-2-logement-a-louer-Sherbrooke-20221207_120317.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/3-SAM-1-logement-a-louer-Sherbrooke-20221207_120349.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/3-SAM-2-logement-a-louer-Sherbrooke-20221207_120526.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/4-SALON-1-logement-a-louer-Sherbrooke-20221207_120652.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/4-SALON-2-logement-a-louer-Sherbrooke-20221207_120741.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/5-SDB-1-logement-a-louer-Sherbrooke-20221207_120947.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/6-CHAMBRE1-1-logement-a-louer-Sherbrooke-20221207_121109.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/6-CHAMBRE1-3-logement-a-louer-Sherbrooke-20221207_121158.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/20221207_121227.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/20221207_121315.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
1598 + <div class="item-wrap item-wrap-v6 h-100">
1599 + <div class="d-flex align-items-center h-100">
1600 + <div class="item-header">
1601 +
1602 + <div class="labels-wrap labels-right">
1603 +
1604 + <a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1605 + À LOUER
1606 + </a><a href="https://immeublesalexcellence.com/statut/disponible-1er-aout-2026/" class="label-status label status-color-209">
1607 + 1er août 2026
1608 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
1609 +
1610 + </a>
1611 +
1612 +</div>
1613 +
1614 + <div class="listing-image-wrap">
1615 + <div class="listing-thumb">
1616 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/">
1617 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/1-FRONT-logement-a-louer-Sherbrooke-20221207_120438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="" /> </a>
1618 + </div>
1619 + </div>
1620 +
1621 + <ul class="item-tools">
1622 +
1623 + <li class="item-tool item-preview">
1624 + <span class="hz-show-lightbox-js" data-listid="3190" data-toggle="tooltip" data-placement="top" title="Avis">
1625 + <i class="houzez-icon icon-expand-3"></i>
1626 + </span><!-- item-tool-favorite -->
1627 + </li><!-- item-tool -->
1628 +
1629 + <li class="item-tool item-favorite">
1630 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3190">
1631 + <i class="houzez-icon icon-love-it "></i>
1632 + </span><!-- item-tool-favorite -->
1633 + </li><!-- item-tool -->
1634 +
1635 + </ul><!-- item-tools -->
1636 + <div class="preview_loader"></div>
1637 + </div><!-- item-header -->
1638 + <div class="item-body flex-grow-1">
1639 + <h2 class="item-title">
1640 + <a target=_blank href="https://immeublesalexcellence.com/appartements/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/">4½ à proximité du Carrefour de l&rsquo;Estrie, rue Savio</a>
1641 +</h2><!-- item-title -->
1642 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
1643 + <ul class="item-price-wrap">
1644 + <li class="item-price"> 1,010$/par mois</li>
1645 + </ul>
1646 + <ul class="item-amenities item-amenities-with-icons">
1647 + <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></ul> </div><!-- d-flex -->
1648 + </div><!-- item-body -->
1649 + </div><!-- d-flex -->
1650 + </div><!-- item-wrap -->
1651 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3368" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/4demi-logement-UdeS-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/4demi-logement-UdeS-3-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/4demi-logement-UdeS-4-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/4demi-logement-UdeS-5-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/4demi-logement-UdeS-6-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/4demi-logement-UdeS-7-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/4demi-logement-UdeS-8-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/4demi-logement-UdeS-9-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/4demi-logement-UdeS-10-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/4demi-logement-UdeS-11-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
1652 + <div class="item-wrap item-wrap-v6 h-100">
1653 + <div class="d-flex align-items-center h-100">
1654 + <div class="item-header">
1655 +
1656 + <div class="labels-wrap labels-right">
1657 +
1658 + <a href="https://immeublesalexcellence.com/statut/1-er-octobre-2026/" class="label-status label status-color-214">
1659 + 1 er octobre 2026
1660 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1661 + À LOUER
1662 + </a><a href="https://immeublesalexcellence.com/tag/3%c2%bd/" class="hz-label label label-color-202">
1663 +
1664 + </a>
1665 +
1666 +</div>
1667 +
1668 + <div class="listing-image-wrap">
1669 + <div class="listing-thumb">
1670 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/logement-3-%c2%bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/">
1671 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1.jpg 1067w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
1672 + </div>
1673 + </div>
1674 +
1675 + <ul class="item-tools">
1676 +
1677 + <li class="item-tool item-preview">
1678 + <span class="hz-show-lightbox-js" data-listid="3368" data-toggle="tooltip" data-placement="top" title="Avis">
1679 + <i class="houzez-icon icon-expand-3"></i>
1680 + </span><!-- item-tool-favorite -->
1681 + </li><!-- item-tool -->
1682 +
1683 + <li class="item-tool item-favorite">
1684 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3368">
1685 + <i class="houzez-icon icon-love-it "></i>
1686 + </span><!-- item-tool-favorite -->
1687 + </li><!-- item-tool -->
1688 +
1689 + </ul><!-- item-tools -->
1690 + <div class="preview_loader"></div>
1691 + </div><!-- item-header -->
1692 + <div class="item-body flex-grow-1">
1693 + <h2 class="item-title">
1694 + <a target=_blank href="https://immeublesalexcellence.com/appartements/logement-3-%c2%bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/">Logement 4 ½ entièrement rénové &#8211; Sherbrooke Secteur Université et Mont-Bellevue</a>
1695 +</h2><!-- item-title -->
1696 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
1697 + <ul class="item-price-wrap">
1698 + <li class="item-price"> 1,030$/par mois</li>
1699 + </ul>
1700 + <ul class="item-amenities item-amenities-with-icons">
1701 + <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></ul> </div><!-- d-flex -->
1702 + </div><!-- item-body -->
1703 + </div><!-- d-flex -->
1704 + </div><!-- item-wrap -->
1705 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3252" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Studio-etudiant-universite-sherbrooke-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Studio-etudiant-universite-sherbrooke-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Studio-etudiant-universite-sherbrooke-3-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Studio-etudiant-universite-sherbrooke-4-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Studio-etudiant-universite-sherbrooke-5-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Studio-etudiant-universite-sherbrooke-6-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Studio-etudiant-universite-sherbrooke-7-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
1706 + <div class="item-wrap item-wrap-v6 h-100">
1707 + <div class="d-flex align-items-center h-100">
1708 + <div class="item-header">
1709 +
1710 + <div class="labels-wrap labels-right">
1711 +
1712 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1713 + 1er janvier 2027
1714 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1715 + À LOUER
1716 + </a><a href="https://immeublesalexcellence.com/tag/1%c2%bd/" class="hz-label label label-color-200">
1717 +
1718 + </a>
1719 +
1720 +</div>
1721 +
1722 + <div class="listing-image-wrap">
1723 + <div class="listing-thumb">
1724 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue/">
1725 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2.jpg 1067w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
1726 + </div>
1727 + </div>
1728 +
1729 + <ul class="item-tools">
1730 +
1731 + <li class="item-tool item-preview">
1732 + <span class="hz-show-lightbox-js" data-listid="3252" data-toggle="tooltip" data-placement="top" title="Avis">
1733 + <i class="houzez-icon icon-expand-3"></i>
1734 + </span><!-- item-tool-favorite -->
1735 + </li><!-- item-tool -->
1736 +
1737 + <li class="item-tool item-favorite">
1738 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3252">
1739 + <i class="houzez-icon icon-love-it "></i>
1740 + </span><!-- item-tool-favorite -->
1741 + </li><!-- item-tool -->
1742 +
1743 + </ul><!-- item-tools -->
1744 + <div class="preview_loader"></div>
1745 + </div><!-- item-header -->
1746 + <div class="item-body flex-grow-1">
1747 + <h2 class="item-title">
1748 + <a target=_blank href="https://immeublesalexcellence.com/appartements/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue/">Logement 1½ semi-meublé au pied du Mont-Bellevue</a>
1749 +</h2><!-- item-title -->
1750 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
1751 + <ul class="item-price-wrap">
1752 + <li class="item-price"> 650$/par mois</li>
1753 + </ul>
1754 + <ul class="item-amenities item-amenities-with-icons">
1755 + <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></ul> </div><!-- d-flex -->
1756 + </div><!-- item-body -->
1757 + </div><!-- d-flex -->
1758 + </div><!-- item-wrap -->
1759 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3216" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-3-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-4-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-5-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-6-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-7-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-8-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-9-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-10-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-11-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-12-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/location-logement-condo-4demi-Sherbrooke-13-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
1760 + <div class="item-wrap item-wrap-v6 h-100">
1761 + <div class="d-flex align-items-center h-100">
1762 + <div class="item-header">
1763 +
1764 + <div class="labels-wrap labels-right">
1765 +
1766 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1767 + 1er janvier 2027
1768 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1769 + À LOUER
1770 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
1771 +
1772 + </a>
1773 +
1774 +</div>
1775 +
1776 + <div class="listing-image-wrap">
1777 + <div class="listing-thumb">
1778 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/">
1779 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/location-logement-condo-4demi-Sherbrooke-1.jpg 1067w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
1780 + </div>
1781 + </div>
1782 +
1783 + <ul class="item-tools">
1784 +
1785 + <li class="item-tool item-preview">
1786 + <span class="hz-show-lightbox-js" data-listid="3216" data-toggle="tooltip" data-placement="top" title="Avis">
1787 + <i class="houzez-icon icon-expand-3"></i>
1788 + </span><!-- item-tool-favorite -->
1789 + </li><!-- item-tool -->
1790 +
1791 + <li class="item-tool item-favorite">
1792 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3216">
1793 + <i class="houzez-icon icon-love-it "></i>
1794 + </span><!-- item-tool-favorite -->
1795 + </li><!-- item-tool -->
1796 +
1797 + </ul><!-- item-tools -->
1798 + <div class="preview_loader"></div>
1799 + </div><!-- item-header -->
1800 + <div class="item-body flex-grow-1">
1801 + <h2 class="item-title">
1802 + <a target=_blank href="https://immeublesalexcellence.com/appartements/4%c2%bd-a-louer-a-sherbrooke-secteur-mont-bellevue-universite/">4½ à louer à Sherbrooke – Secteur Mont-Bellevue &amp; Université</a>
1803 +</h2><!-- item-title -->
1804 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
1805 + <ul class="item-price-wrap">
1806 + <li class="item-price"> 1,100$/par mois</li>
1807 + </ul>
1808 + <ul class="item-amenities item-amenities-with-icons">
1809 + <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></ul> </div><!-- d-flex -->
1810 + </div><!-- item-body -->
1811 + </div><!-- d-flex -->
1812 + </div><!-- item-wrap -->
1813 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3205" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/loyer-3demi-etudiant-Sherbrooke-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/loyer-3demi-etudiant-Sherbrooke-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/loyer-3demi-etudiant-Sherbrooke-3-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/loyer-3demi-etudiant-Sherbrooke-4-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/loyer-3demi-etudiant-Sherbrooke-5-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/loyer-3demi-etudiant-Sherbrooke-6-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/loyer-3demi-etudiant-Sherbrooke-7-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/loyer-3demi-etudiant-Sherbrooke-8-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/loyer-3demi-etudiant-Sherbrooke-9-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
1814 + <div class="item-wrap item-wrap-v6 h-100">
1815 + <div class="d-flex align-items-center h-100">
1816 + <div class="item-header">
1817 +
1818 + <div class="labels-wrap labels-right">
1819 +
1820 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1821 + 1er janvier 2027
1822 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1823 + À LOUER
1824 + </a><a href="https://immeublesalexcellence.com/tag/3%c2%bd/" class="hz-label label label-color-202">
1825 +
1826 + </a>
1827 +
1828 +</div>
1829 +
1830 + <div class="listing-image-wrap">
1831 + <div class="listing-thumb">
1832 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/">
1833 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1.jpg 1067w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
1834 + </div>
1835 + </div>
1836 +
1837 + <ul class="item-tools">
1838 +
1839 + <li class="item-tool item-preview">
1840 + <span class="hz-show-lightbox-js" data-listid="3205" data-toggle="tooltip" data-placement="top" title="Avis">
1841 + <i class="houzez-icon icon-expand-3"></i>
1842 + </span><!-- item-tool-favorite -->
1843 + </li><!-- item-tool -->
1844 +
1845 + <li class="item-tool item-favorite">
1846 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3205">
1847 + <i class="houzez-icon icon-love-it "></i>
1848 + </span><!-- item-tool-favorite -->
1849 + </li><!-- item-tool -->
1850 +
1851 + </ul><!-- item-tools -->
1852 + <div class="preview_loader"></div>
1853 + </div><!-- item-header -->
1854 + <div class="item-body flex-grow-1">
1855 + <h2 class="item-title">
1856 + <a target=_blank href="https://immeublesalexcellence.com/appartements/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/">3½ rénové à louer Secteur Université &amp; Mont-Bellevue, 875 rue Veilleux</a>
1857 +</h2><!-- item-title -->
1858 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
1859 + <ul class="item-price-wrap">
1860 + <li class="item-price"> 960$/par mois</li>
1861 + </ul>
1862 + <ul class="item-amenities item-amenities-with-icons">
1863 + <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></ul> </div><!-- d-flex -->
1864 + </div><!-- item-body -->
1865 + </div><!-- d-flex -->
1866 + </div><!-- item-wrap -->
1867 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3023" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-etudiant-sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;loyer \u00e9tudiant Sherbrooke Mont-Bellevue Universit\u00e9&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-etudiant-sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;loyer \u00e9tudiant Sherbrooke Mont-Bellevue Universit\u00e9&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/cuisine-loyer-etudiant-sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;Cuisine Loyer 4 \u00bd \u00e0 louer Universit\u00e9 Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/loyer-sherbrooke-location-584x438.jpg&quot;,&quot;alt&quot;:&quot;Loyer 4 \u00bd \u00e0 louer Mont-Bellevue U de S&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-etudiant-alouer-584x438.jpg&quot;,&quot;alt&quot;:&quot;Appartement a louer \u00e9tudiant U de S&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/salle-bain-loyer-universite-584x438.jpg&quot;,&quot;alt&quot;:&quot;Loyer 4 \u00bd \u00e0 louer salle de bain&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/loyer-chambre-bain-udes-584x438.jpg&quot;,&quot;alt&quot;:&quot;Chambre de bain Loyer 4 \u00bd \u00e0 louer&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/chambre-appartement-louer-584x438.jpg&quot;,&quot;alt&quot;:&quot;chambre appartement 4 \u00bd \u00e0 louer Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-etudiant-renove-584x438.jpg&quot;,&quot;alt&quot;:&quot;appartement \u00e9tudiant disponible U de S&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-a-louer-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;appartement a louer 4 \u00bd Mont-Bellevue&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Piscine-Projet-584x438.jpg&quot;,&quot;alt&quot;:&quot;Loyer 4 \u00bd \u00e0 louer Universit\u00e9 Sherbrooke piscine&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
1868 + <div class="item-wrap item-wrap-v6 h-100">
1869 + <div class="d-flex align-items-center h-100">
1870 + <div class="item-header">
1871 +
1872 + <div class="labels-wrap labels-right">
1873 +
1874 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1875 + 1er janvier 2027
1876 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1877 + À LOUER
1878 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
1879 +
1880 + </a>
1881 +
1882 +</div>
1883 +
1884 + <div class="listing-image-wrap">
1885 + <div class="listing-thumb">
1886 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/">
1887 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="loyer étudiant Sherbrooke Mont-Bellevue Université" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke.jpg 1067w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
1888 + </div>
1889 + </div>
1890 +
1891 + <ul class="item-tools">
1892 +
1893 + <li class="item-tool item-preview">
1894 + <span class="hz-show-lightbox-js" data-listid="3023" data-toggle="tooltip" data-placement="top" title="Avis">
1895 + <i class="houzez-icon icon-expand-3"></i>
1896 + </span><!-- item-tool-favorite -->
1897 + </li><!-- item-tool -->
1898 +
1899 + <li class="item-tool item-favorite">
1900 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3023">
1901 + <i class="houzez-icon icon-love-it "></i>
1902 + </span><!-- item-tool-favorite -->
1903 + </li><!-- item-tool -->
1904 +
1905 + </ul><!-- item-tools -->
1906 + <div class="preview_loader"></div>
1907 + </div><!-- item-header -->
1908 + <div class="item-body flex-grow-1">
1909 + <h2 class="item-title">
1910 + <a target=_blank href="https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/">Loyer 4 ½ à louer Secteur Université &#038; Mont-Bellevue</a>
1911 +</h2><!-- item-title -->
1912 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
1913 + <ul class="item-price-wrap">
1914 + <li class="item-price"> 1,150$/par mois</li>
1915 + </ul>
1916 + <ul class="item-amenities item-amenities-with-icons">
1917 + <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></ul> </div><!-- d-flex -->
1918 + </div><!-- item-body -->
1919 + </div><!-- d-flex -->
1920 + </div><!-- item-wrap -->
1921 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-2877" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-etudiants-colocation-universite-sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;appartement \u00e9tudiant colocation universit\u00e9 de Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/a-louer-etudiants-universite-sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;Loyer location mont bellevue et universit\u00e9&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Loyer-location-universite-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/chambre-location-udes-584x438.jpg&quot;,&quot;alt&quot;:&quot;chambre location universit\u00e9 sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-etudiants-colocation-universite-sherbrooke-5-584x438.jpg&quot;,&quot;alt&quot;:&quot;chambre udes&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/appart-laveuse-secheuse-udes-584x438.jpg&quot;,&quot;alt&quot;:&quot;appart a louer s\u00e9cheuse laveuse incluses&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/location-logement-universite-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
1922 + <div class="item-wrap item-wrap-v6 h-100">
1923 + <div class="d-flex align-items-center h-100">
1924 + <div class="item-header">
1925 +
1926 + <div class="labels-wrap labels-right">
1927 +
1928 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
1929 + LOUÉ
1930 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
1931 +
1932 + </a>
1933 +
1934 +</div>
1935 +
1936 + <div class="listing-image-wrap">
1937 + <div class="listing-thumb">
1938 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/logement-a-louer-universite-sherbrooke/">
1939 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiants-colocation-universite-sherbrooke-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="appartement étudiant colocation université de Sherbrooke" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiants-colocation-universite-sherbrooke-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiants-colocation-universite-sherbrooke-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiants-colocation-universite-sherbrooke-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiants-colocation-universite-sherbrooke-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiants-colocation-universite-sherbrooke-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiants-colocation-universite-sherbrooke.jpg 768w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
1940 + </div>
1941 + </div>
1942 +
1943 + <ul class="item-tools">
1944 +
1945 + <li class="item-tool item-preview">
1946 + <span class="hz-show-lightbox-js" data-listid="2877" data-toggle="tooltip" data-placement="top" title="Avis">
1947 + <i class="houzez-icon icon-expand-3"></i>
1948 + </span><!-- item-tool-favorite -->
1949 + </li><!-- item-tool -->
1950 +
1951 + <li class="item-tool item-favorite">
1952 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="2877">
1953 + <i class="houzez-icon icon-love-it "></i>
1954 + </span><!-- item-tool-favorite -->
1955 + </li><!-- item-tool -->
1956 +
1957 + </ul><!-- item-tools -->
1958 + <div class="preview_loader"></div>
1959 + </div><!-- item-header -->
1960 + <div class="item-body flex-grow-1">
1961 + <h2 class="item-title">
1962 + <a target=_blank href="https://immeublesalexcellence.com/appartements/logement-a-louer-universite-sherbrooke/">Beau 4½ moderne à louer &#8211; Tranquillité et confort à proximité du Mont-Bellevue</a>
1963 +</h2><!-- item-title -->
1964 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
1965 + <ul class="item-price-wrap">
1966 + <li class="item-price"><span class="item-price-text"></span></li>
1967 + </ul>
1968 + <ul class="item-amenities item-amenities-with-icons">
1969 + <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></ul> </div><!-- d-flex -->
1970 + </div><!-- item-body -->
1971 + </div><!-- d-flex -->
1972 + </div><!-- item-wrap -->
1973 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3413" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/1.1-logement-2etDemi-Sherbrooke-20230118_121229-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/1.1-logement-2etDemi-Sherbrooke-20230118_121229-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/2.1-logement-2etDemi-Sherbrooke-20230118_121033-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/2.2-logement-2etDemi-Sherbrooke-20230118_121006-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/2.3-logement-2etDemi-Sherbrooke-20230118_121404-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/3.1-logement-2etDemi-Sherbrooke-20230118_121204-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/3.2-logement-2etDemi-Sherbrooke-20230118_121514-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/4.1-logement-2etDemi-Sherbrooke-20230118_121548-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/5.1-logement-2etDemi-Sherbrooke-20230118_121838-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/5.2-logement-2etDemi-Sherbrooke-20230118_121914-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/5.3-logement-2etDemi-Sherbrooke-20230118_121941-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
1974 + <div class="item-wrap item-wrap-v6 h-100">
1975 + <div class="d-flex align-items-center h-100">
1976 + <div class="item-header">
1977 +
1978 + <div class="labels-wrap labels-right">
1979 +
1980 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
1981 + LOUÉ
1982 + </a><a href="https://immeublesalexcellence.com/tag/2%c2%bd/" class="hz-label label label-color-201">
1983 +
1984 + </a>
1985 +
1986 +</div>
1987 +
1988 + <div class="listing-image-wrap">
1989 + <div class="listing-thumb">
1990 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/logement-2%c2%bd-semi-meuble-au-pied-du-mont-bellevue/">
1991 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/09/1.1-logement-2etDemi-Sherbrooke-20230118_121229-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/09/1.1-logement-2etDemi-Sherbrooke-20230118_121229-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/1.1-logement-2etDemi-Sherbrooke-20230118_121229-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/1.1-logement-2etDemi-Sherbrooke-20230118_121229-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/1.1-logement-2etDemi-Sherbrooke-20230118_121229-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/1.1-logement-2etDemi-Sherbrooke-20230118_121229-1536x1152.jpg 1536w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/1.1-logement-2etDemi-Sherbrooke-20230118_121229-2048x1536.jpg 2048w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/1.1-logement-2etDemi-Sherbrooke-20230118_121229-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/1.1-logement-2etDemi-Sherbrooke-20230118_121229-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/1.1-logement-2etDemi-Sherbrooke-20230118_121229-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/1.1-logement-2etDemi-Sherbrooke-20230118_121229-496x372.jpg 496w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
1992 + </div>
1993 + </div>
1994 +
1995 + <ul class="item-tools">
1996 +
1997 + <li class="item-tool item-preview">
1998 + <span class="hz-show-lightbox-js" data-listid="3413" data-toggle="tooltip" data-placement="top" title="Avis">
1999 + <i class="houzez-icon icon-expand-3"></i>
2000 + </span><!-- item-tool-favorite -->
2001 + </li><!-- item-tool -->
2002 +
2003 + <li class="item-tool item-favorite">
2004 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3413">
2005 + <i class="houzez-icon icon-love-it "></i>
2006 + </span><!-- item-tool-favorite -->
2007 + </li><!-- item-tool -->
2008 +
2009 + </ul><!-- item-tools -->
2010 + <div class="preview_loader"></div>
2011 + </div><!-- item-header -->
2012 + <div class="item-body flex-grow-1">
2013 + <h2 class="item-title">
2014 + <a target=_blank href="https://immeublesalexcellence.com/appartements/logement-2%c2%bd-semi-meuble-au-pied-du-mont-bellevue/">Logement 2½ semi-meublé au pied du Mont-Bellevue</a>
2015 +</h2><!-- item-title -->
2016 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2017 + <ul class="item-price-wrap">
2018 + <li class="item-price"><span class="item-price-text"></span></li>
2019 + </ul>
2020 + <ul class="item-amenities item-amenities-with-icons">
2021 + <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></ul> </div><!-- d-flex -->
2022 + </div><!-- item-body -->
2023 + </div><!-- d-flex -->
2024 + </div><!-- item-wrap -->
2025 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-2930" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;logement \u00e9tudiant colocation universit\u00e9 de Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-3-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-4-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-5-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-6-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-7-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-8-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-9-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-10-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-13-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-14-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-11-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-appartement-4-demi-Sherbrooke-12-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
2026 + <div class="item-wrap item-wrap-v6 h-100">
2027 + <div class="d-flex align-items-center h-100">
2028 + <div class="item-header">
2029 +
2030 + <div class="labels-wrap labels-right">
2031 +
2032 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
2033 + LOUÉ
2034 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
2035 +
2036 + </a>
2037 +
2038 +</div>
2039 +
2040 + <div class="listing-image-wrap">
2041 + <div class="listing-thumb">
2042 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/grand-logement-a-louer-universite-sherbrooke/">
2043 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Location-appartement-4-demi-Sherbrooke-1-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="logement étudiant colocation université de Sherbrooke" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Location-appartement-4-demi-Sherbrooke-1-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Location-appartement-4-demi-Sherbrooke-1-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Location-appartement-4-demi-Sherbrooke-1-120x90.jpg 120w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
2044 + </div>
2045 + </div>
2046 +
2047 + <ul class="item-tools">
2048 +
2049 + <li class="item-tool item-preview">
2050 + <span class="hz-show-lightbox-js" data-listid="2930" data-toggle="tooltip" data-placement="top" title="Avis">
2051 + <i class="houzez-icon icon-expand-3"></i>
2052 + </span><!-- item-tool-favorite -->
2053 + </li><!-- item-tool -->
2054 +
2055 + <li class="item-tool item-favorite">
2056 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="2930">
2057 + <i class="houzez-icon icon-love-it "></i>
2058 + </span><!-- item-tool-favorite -->
2059 + </li><!-- item-tool -->
2060 +
2061 + </ul><!-- item-tools -->
2062 + <div class="preview_loader"></div>
2063 + </div><!-- item-header -->
2064 + <div class="item-body flex-grow-1">
2065 + <h2 class="item-title">
2066 + <a target=_blank href="https://immeublesalexcellence.com/appartements/grand-logement-a-louer-universite-sherbrooke/">Grand 4½ lumineux à louer à proximité du Mont-Bellevue</a>
2067 +</h2><!-- item-title -->
2068 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2069 + <ul class="item-price-wrap">
2070 + <li class="item-price"><span class="item-price-text"></span></li>
2071 + </ul>
2072 + <ul class="item-amenities item-amenities-with-icons">
2073 + <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></ul> </div><!-- d-flex -->
2074 + </div><!-- item-body -->
2075 + </div><!-- d-flex -->
2076 + </div><!-- item-wrap -->
2077 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3401" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/20250903_1245291-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/20250903_1245291-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/20250903_1245361-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/20250903_124626-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/20250903_124641-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/20250903_124733-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/20250903_124803-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/20250903_124826-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/20250903_124921-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/09\/20250903_125047-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
2078 + <div class="item-wrap item-wrap-v6 h-100">
2079 + <div class="d-flex align-items-center h-100">
2080 + <div class="item-header">
2081 +
2082 + <div class="labels-wrap labels-right">
2083 +
2084 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
2085 + LOUÉ
2086 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
2087 +
2088 + </a>
2089 +
2090 +</div>
2091 +
2092 + <div class="listing-image-wrap">
2093 + <div class="listing-thumb">
2094 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/4%c2%bd-lumineux-wifi-inclus-a-louer-secteur-universite-et-mont-bellevue/">
2095 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/09/20250903_1245291-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/09/20250903_1245291-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/20250903_1245291-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/20250903_1245291-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/20250903_1245291-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/20250903_1245291-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/20250903_1245291-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/20250903_1245291-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/20250903_1245291-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/09/20250903_1245291.jpg 1067w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
2096 + </div>
2097 + </div>
2098 +
2099 + <ul class="item-tools">
2100 +
2101 + <li class="item-tool item-preview">
2102 + <span class="hz-show-lightbox-js" data-listid="3401" data-toggle="tooltip" data-placement="top" title="Avis">
2103 + <i class="houzez-icon icon-expand-3"></i>
2104 + </span><!-- item-tool-favorite -->
2105 + </li><!-- item-tool -->
2106 +
2107 + <li class="item-tool item-favorite">
2108 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3401">
2109 + <i class="houzez-icon icon-love-it "></i>
2110 + </span><!-- item-tool-favorite -->
2111 + </li><!-- item-tool -->
2112 +
2113 + </ul><!-- item-tools -->
2114 + <div class="preview_loader"></div>
2115 + </div><!-- item-header -->
2116 + <div class="item-body flex-grow-1">
2117 + <h2 class="item-title">
2118 + <a target=_blank href="https://immeublesalexcellence.com/appartements/4%c2%bd-lumineux-wifi-inclus-a-louer-secteur-universite-et-mont-bellevue/">4½ lumineux à louer Secteur Université et Mont-Bellevue.</a>
2119 +</h2><!-- item-title -->
2120 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2121 + <ul class="item-price-wrap">
2122 + <li class="item-price"><span class="item-price-text"></span></li>
2123 + </ul>
2124 + <ul class="item-amenities item-amenities-with-icons">
2125 + <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></ul> </div><!-- d-flex -->
2126 + </div><!-- item-body -->
2127 + </div><!-- d-flex -->
2128 + </div><!-- item-wrap -->
2129 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3302" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-1-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-4-2-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-6-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-7-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-10-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-11-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-12-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-13-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-14-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-15-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-16-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/Appartement-4-et-Demi-a-louer-Sherbrooke-18-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/20210831_132141-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
2130 + <div class="item-wrap item-wrap-v6 h-100">
2131 + <div class="d-flex align-items-center h-100">
2132 + <div class="item-header">
2133 +
2134 + <div class="labels-wrap labels-right">
2135 +
2136 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
2137 + LOUÉ
2138 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
2139 +
2140 + </a>
2141 +
2142 +</div>
2143 +
2144 + <div class="listing-image-wrap">
2145 + <div class="listing-thumb">
2146 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/4%c2%bd-renove-a-louer-secteur-universite-et-mont-bellevue/">
2147 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Appartement-4-et-Demi-a-louer-Sherbrooke-1-2-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Appartement-4-et-Demi-a-louer-Sherbrooke-1-2-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Appartement-4-et-Demi-a-louer-Sherbrooke-1-2-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Appartement-4-et-Demi-a-louer-Sherbrooke-1-2-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Appartement-4-et-Demi-a-louer-Sherbrooke-1-2-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Appartement-4-et-Demi-a-louer-Sherbrooke-1-2-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Appartement-4-et-Demi-a-louer-Sherbrooke-1-2-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Appartement-4-et-Demi-a-louer-Sherbrooke-1-2-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Appartement-4-et-Demi-a-louer-Sherbrooke-1-2-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/Appartement-4-et-Demi-a-louer-Sherbrooke-1-2.jpg 1067w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
2148 + </div>
2149 + </div>
2150 +
2151 + <ul class="item-tools">
2152 +
2153 + <li class="item-tool item-preview">
2154 + <span class="hz-show-lightbox-js" data-listid="3302" data-toggle="tooltip" data-placement="top" title="Avis">
2155 + <i class="houzez-icon icon-expand-3"></i>
2156 + </span><!-- item-tool-favorite -->
2157 + </li><!-- item-tool -->
2158 +
2159 + <li class="item-tool item-favorite">
2160 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3302">
2161 + <i class="houzez-icon icon-love-it "></i>
2162 + </span><!-- item-tool-favorite -->
2163 + </li><!-- item-tool -->
2164 +
2165 + </ul><!-- item-tools -->
2166 + <div class="preview_loader"></div>
2167 + </div><!-- item-header -->
2168 + <div class="item-body flex-grow-1">
2169 + <h2 class="item-title">
2170 + <a target=_blank href="https://immeublesalexcellence.com/appartements/4%c2%bd-renove-a-louer-secteur-universite-et-mont-bellevue/">4½ rénové à louer Secteur Université et Mont-Bellevue.</a>
2171 +</h2><!-- item-title -->
2172 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2173 + <ul class="item-price-wrap">
2174 + <li class="item-price"><span class="item-price-text"></span></li>
2175 + </ul>
2176 + <ul class="item-amenities item-amenities-with-icons">
2177 + <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></ul> </div><!-- d-flex -->
2178 + </div><!-- item-body -->
2179 + </div><!-- d-flex -->
2180 + </div><!-- item-wrap -->
2181 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3384" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/Appartement-etudiant-neuf-montbellevue-1-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20240927_144534-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/Appartement-etudiant-neuf-montbellevue-1-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/Appartement-etudiant-neuf-montbellevue-2-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/Appartement-etudiant-neuf-montbellevue-3-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/Appartement-etudiant-neuf-montbellevue-4-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/Appartement-etudiant-neuf-montbellevue-5-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/Appartement-etudiant-neuf-montbellevue-6-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/Appartement-etudiant-neuf-montbellevue-7-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/Appartement-etudiant-neuf-montbellevue-8-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/Appartement-etudiant-neuf-montbellevue-9-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Piscine-Projet-584x438.jpg&quot;,&quot;alt&quot;:&quot;Loyer 4 \u00bd \u00e0 louer Universit\u00e9 Sherbrooke piscine&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
2182 + <div class="item-wrap item-wrap-v6 h-100">
2183 + <div class="d-flex align-items-center h-100">
2184 + <div class="item-header">
2185 +
2186 + <div class="labels-wrap labels-right">
2187 +
2188 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
2189 + LOUÉ
2190 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
2191 +
2192 + </a>
2193 +
2194 +</div>
2195 +
2196 + <div class="listing-image-wrap">
2197 + <div class="listing-thumb">
2198 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/logement-a-louer-universite-sherbrooke/appartement-4-%c2%bd-renove-a-louer-sherbrooke-secteur-universite-mont-bellevue/">
2199 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/08/Appartement-etudiant-neuf-montbellevue-1-1-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/08/Appartement-etudiant-neuf-montbellevue-1-1-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/Appartement-etudiant-neuf-montbellevue-1-1-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/Appartement-etudiant-neuf-montbellevue-1-1-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/Appartement-etudiant-neuf-montbellevue-1-1-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/Appartement-etudiant-neuf-montbellevue-1-1-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/Appartement-etudiant-neuf-montbellevue-1-1-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/Appartement-etudiant-neuf-montbellevue-1-1-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/Appartement-etudiant-neuf-montbellevue-1-1-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/Appartement-etudiant-neuf-montbellevue-1-1-rotated.jpg 1200w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
2200 + </div>
2201 + </div>
2202 +
2203 + <ul class="item-tools">
2204 +
2205 + <li class="item-tool item-preview">
2206 + <span class="hz-show-lightbox-js" data-listid="3384" data-toggle="tooltip" data-placement="top" title="Avis">
2207 + <i class="houzez-icon icon-expand-3"></i>
2208 + </span><!-- item-tool-favorite -->
2209 + </li><!-- item-tool -->
2210 +
2211 + <li class="item-tool item-favorite">
2212 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3384">
2213 + <i class="houzez-icon icon-love-it "></i>
2214 + </span><!-- item-tool-favorite -->
2215 + </li><!-- item-tool -->
2216 +
2217 + </ul><!-- item-tools -->
2218 + <div class="preview_loader"></div>
2219 + </div><!-- item-header -->
2220 + <div class="item-body flex-grow-1">
2221 + <h2 class="item-title">
2222 + <a target=_blank href="https://immeublesalexcellence.com/appartements/logement-a-louer-universite-sherbrooke/appartement-4-%c2%bd-renove-a-louer-sherbrooke-secteur-universite-mont-bellevue/">Appartement 4 ½ rénové à louer &#8211; Sherbrooke, Secteur Université &amp; Mont-Bellevue</a>
2223 +</h2><!-- item-title -->
2224 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2225 + <ul class="item-price-wrap">
2226 + <li class="item-price"><span class="item-price-text"></span></li>
2227 + </ul>
2228 + <ul class="item-amenities item-amenities-with-icons">
2229 + <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></ul> </div><!-- d-flex -->
2230 + </div><!-- item-body -->
2231 + </div><!-- d-flex -->
2232 + </div><!-- item-wrap -->
2233 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3352" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133627-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133527-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133531-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133538-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133545-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133557-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133610-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133640-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133642-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133651-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133657-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133704-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133714-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133725-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133737-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133751-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133758-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133803-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/08\/20260108_133815-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
2234 + <div class="item-wrap item-wrap-v6 h-100">
2235 + <div class="d-flex align-items-center h-100">
2236 + <div class="item-header">
2237 +
2238 + <div class="labels-wrap labels-right">
2239 +
2240 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
2241 + LOUÉ
2242 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
2243 +
2244 + </a>
2245 +
2246 +</div>
2247 +
2248 + <div class="listing-image-wrap">
2249 + <div class="listing-thumb">
2250 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/4-et-demi-a-louer-sherbrooke/">
2251 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/08/20260108_133627-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/08/20260108_133627-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/20260108_133627-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/20260108_133627-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/20260108_133627-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/20260108_133627-1536x1152.jpg 1536w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/20260108_133627-2048x1536.jpg 2048w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/20260108_133627-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/20260108_133627-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/20260108_133627-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/08/20260108_133627-496x372.jpg 496w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
2252 + </div>
2253 + </div>
2254 +
2255 + <ul class="item-tools">
2256 +
2257 + <li class="item-tool item-preview">
2258 + <span class="hz-show-lightbox-js" data-listid="3352" data-toggle="tooltip" data-placement="top" title="Avis">
2259 + <i class="houzez-icon icon-expand-3"></i>
2260 + </span><!-- item-tool-favorite -->
2261 + </li><!-- item-tool -->
2262 +
2263 + <li class="item-tool item-favorite">
2264 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3352">
2265 + <i class="houzez-icon icon-love-it "></i>
2266 + </span><!-- item-tool-favorite -->
2267 + </li><!-- item-tool -->
2268 +
2269 + </ul><!-- item-tools -->
2270 + <div class="preview_loader"></div>
2271 + </div><!-- item-header -->
2272 + <div class="item-body flex-grow-1">
2273 + <h2 class="item-title">
2274 + <a target=_blank href="https://immeublesalexcellence.com/appartements/4-et-demi-a-louer-sherbrooke/">4½ à louer à Sherbrooke près de l’Université</a>
2275 +</h2><!-- item-title -->
2276 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2277 + <ul class="item-price-wrap">
2278 + <li class="item-price"><span class="item-price-text"></span></li>
2279 + </ul>
2280 + <ul class="item-amenities item-amenities-with-icons">
2281 + <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></ul> </div><!-- d-flex -->
2282 + </div><!-- item-body -->
2283 + </div><!-- d-flex -->
2284 + </div><!-- item-wrap -->
2285 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3283" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/2-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/3-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/5-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/6-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/7-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/8-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/9-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/10-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/11-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/07\/12-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
2286 + <div class="item-wrap item-wrap-v6 h-100">
2287 + <div class="d-flex align-items-center h-100">
2288 + <div class="item-header">
2289 +
2290 + <div class="labels-wrap labels-right">
2291 +
2292 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
2293 + LOUÉ
2294 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
2295 +
2296 + </a>
2297 +
2298 +</div>
2299 +
2300 + <div class="listing-image-wrap">
2301 + <div class="listing-thumb">
2302 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/loyer-4%c2%bd-lumineux-et-renove-a-louer-universite-de-sherbrooke-2/">
2303 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/1-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/07/1-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/1-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/1-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/1-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/1-1536x1152.jpg 1536w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/1-2048x1536.jpg 2048w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/1-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/1-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/1-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/07/1-496x372.jpg 496w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
2304 + </div>
2305 + </div>
2306 +
2307 + <ul class="item-tools">
2308 +
2309 + <li class="item-tool item-preview">
2310 + <span class="hz-show-lightbox-js" data-listid="3283" data-toggle="tooltip" data-placement="top" title="Avis">
2311 + <i class="houzez-icon icon-expand-3"></i>
2312 + </span><!-- item-tool-favorite -->
2313 + </li><!-- item-tool -->
2314 +
2315 + <li class="item-tool item-favorite">
2316 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3283">
2317 + <i class="houzez-icon icon-love-it "></i>
2318 + </span><!-- item-tool-favorite -->
2319 + </li><!-- item-tool -->
2320 +
2321 + </ul><!-- item-tools -->
2322 + <div class="preview_loader"></div>
2323 + </div><!-- item-header -->
2324 + <div class="item-body flex-grow-1">
2325 + <h2 class="item-title">
2326 + <a target=_blank href="https://immeublesalexcellence.com/appartements/loyer-4%c2%bd-lumineux-et-renove-a-louer-universite-de-sherbrooke-2/">Beau loyer 4½ lumineux à louer – Université de Sherbrooke</a>
2327 +</h2><!-- item-title -->
2328 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2329 + <ul class="item-price-wrap">
2330 + <li class="item-price"><span class="item-price-text"></span></li>
2331 + </ul>
2332 + <ul class="item-amenities item-amenities-with-icons">
2333 + <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></ul> </div><!-- d-flex -->
2334 + </div><!-- item-body -->
2335 + </div><!-- d-flex -->
2336 + </div><!-- item-wrap -->
2337 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3234" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/Location-Appartement-Etudiant-Universite-Sherbrooke-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/Location-Appartement-Etudiant-Universite-Sherbrooke-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/Location-Appartement-Etudiant-Universite-Sherbrooke-3-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/Location-Appartement-Etudiant-Universite-Sherbrooke-4-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/Location-Appartement-Etudiant-Universite-Sherbrooke-5-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/Location-Appartement-Etudiant-Universite-Sherbrooke-6-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/Location-Appartement-Etudiant-Universite-Sherbrooke-7-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/Location-Appartement-Etudiant-Universite-Sherbrooke-8-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/Location-Appartement-Etudiant-Universite-Sherbrooke-9-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/06\/Location-Appartement-Etudiant-Universite-Sherbrooke-10-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
2338 + <div class="item-wrap item-wrap-v6 h-100">
2339 + <div class="d-flex align-items-center h-100">
2340 + <div class="item-header">
2341 +
2342 + <div class="labels-wrap labels-right">
2343 +
2344 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
2345 + LOUÉ
2346 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
2347 +
2348 + </a>
2349 +
2350 +</div>
2351 +
2352 + <div class="listing-image-wrap">
2353 + <div class="listing-thumb">
2354 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/beau-loyer-4%c2%bd-lumineux-et-renove-a-louer-universite-de-sherbrooke/">
2355 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/Location-Appartement-Etudiant-Universite-Sherbrooke-1-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/06/Location-Appartement-Etudiant-Universite-Sherbrooke-1-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/Location-Appartement-Etudiant-Universite-Sherbrooke-1-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/Location-Appartement-Etudiant-Universite-Sherbrooke-1-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/Location-Appartement-Etudiant-Universite-Sherbrooke-1-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/Location-Appartement-Etudiant-Universite-Sherbrooke-1-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/Location-Appartement-Etudiant-Universite-Sherbrooke-1-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/Location-Appartement-Etudiant-Universite-Sherbrooke-1-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/Location-Appartement-Etudiant-Universite-Sherbrooke-1-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/06/Location-Appartement-Etudiant-Universite-Sherbrooke-1.jpg 1067w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
2356 + </div>
2357 + </div>
2358 +
2359 + <ul class="item-tools">
2360 +
2361 + <li class="item-tool item-preview">
2362 + <span class="hz-show-lightbox-js" data-listid="3234" data-toggle="tooltip" data-placement="top" title="Avis">
2363 + <i class="houzez-icon icon-expand-3"></i>
2364 + </span><!-- item-tool-favorite -->
2365 + </li><!-- item-tool -->
2366 +
2367 + <li class="item-tool item-favorite">
2368 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3234">
2369 + <i class="houzez-icon icon-love-it "></i>
2370 + </span><!-- item-tool-favorite -->
2371 + </li><!-- item-tool -->
2372 +
2373 + </ul><!-- item-tools -->
2374 + <div class="preview_loader"></div>
2375 + </div><!-- item-header -->
2376 + <div class="item-body flex-grow-1">
2377 + <h2 class="item-title">
2378 + <a target=_blank href="https://immeublesalexcellence.com/appartements/beau-loyer-4%c2%bd-lumineux-et-renove-a-louer-universite-de-sherbrooke/">Beau loyer 4½ lumineux et rénové à louer – Université de Sherbrooke</a>
2379 +</h2><!-- item-title -->
2380 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2381 + <ul class="item-price-wrap">
2382 + <li class="item-price"><span class="item-price-text"></span></li>
2383 + </ul>
2384 + <ul class="item-amenities item-amenities-with-icons">
2385 + <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></ul> </div><!-- d-flex -->
2386 + </div><!-- item-body -->
2387 + </div><!-- d-flex -->
2388 + </div><!-- item-wrap -->
2389 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-2034" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/alouer-universite-sherbrooke1-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/alouer-universite-sherbrooke1-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/alouer-universite-sherbrooke1-3-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/alouer-universite-sherbrooke-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;Appartement a louer universit\u00e9 de Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/logement-udes-584x438.jpg&quot;,&quot;alt&quot;:&quot;logement secteur universit\u00e9 de Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/alouer-universite-sherbrooke1-4-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/alouer-universite-sherbrooke1-5-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/chambre-louer-universite-sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;chambre a louer universite sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/chambre-alouer-udes-584x438.jpg&quot;,&quot;alt&quot;:&quot;chambre a louer secteur universit\u00e9 de Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/chambre-udes-584x438.jpg&quot;,&quot;alt&quot;:&quot;chambre alouer u de s&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
2390 + <div class="item-wrap item-wrap-v6 h-100">
2391 + <div class="d-flex align-items-center h-100">
2392 + <div class="item-header">
2393 +
2394 + <div class="labels-wrap labels-right">
2395 +
2396 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
2397 + LOUÉ
2398 + </a><a href="https://immeublesalexcellence.com/tag/5%c2%bd/" class="hz-label label label-color-204">
2399 +
2400 + </a>
2401 +
2402 +</div>
2403 +
2404 + <div class="listing-image-wrap">
2405 + <div class="listing-thumb">
2406 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/logement-universite-sherbrooke/">
2407 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/alouer-universite-sherbrooke1-1-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2023/11/alouer-universite-sherbrooke1-1-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2023/11/alouer-universite-sherbrooke1-1-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2023/11/alouer-universite-sherbrooke1-1-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2023/11/alouer-universite-sherbrooke1-1-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2023/11/alouer-universite-sherbrooke1-1-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2023/11/alouer-universite-sherbrooke1-1-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2023/11/alouer-universite-sherbrooke1-1-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2023/11/alouer-universite-sherbrooke1-1-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2023/11/alouer-universite-sherbrooke1-1.jpg 1067w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
2408 + </div>
2409 + </div>
2410 +
2411 + <ul class="item-tools">
2412 +
2413 + <li class="item-tool item-preview">
2414 + <span class="hz-show-lightbox-js" data-listid="2034" data-toggle="tooltip" data-placement="top" title="Avis">
2415 + <i class="houzez-icon icon-expand-3"></i>
2416 + </span><!-- item-tool-favorite -->
2417 + </li><!-- item-tool -->
2418 +
2419 + <li class="item-tool item-favorite">
2420 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="2034">
2421 + <i class="houzez-icon icon-love-it "></i>
2422 + </span><!-- item-tool-favorite -->
2423 + </li><!-- item-tool -->
2424 +
2425 + </ul><!-- item-tools -->
2426 + <div class="preview_loader"></div>
2427 + </div><!-- item-header -->
2428 + <div class="item-body flex-grow-1">
2429 + <h2 class="item-title">
2430 + <a target=_blank href="https://immeublesalexcellence.com/appartements/logement-universite-sherbrooke/">5½ à louer secteur Université de Sherbrooke, rue André</a>
2431 +</h2><!-- item-title -->
2432 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2433 + <ul class="item-price-wrap">
2434 + <li class="item-price"><span class="item-price-text"></span></li>
2435 + </ul>
2436 + <ul class="item-amenities item-amenities-with-icons">
2437 + <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></ul> </div><!-- d-flex -->
2438 + </div><!-- item-body -->
2439 + </div><!-- d-flex -->
2440 + </div><!-- item-wrap -->
2441 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3047" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/3\u00bd-a-louer-Universite-Sherbrooke-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;loyer \u00e9tudiant Sherbrooke Mont-Bellevue Universit\u00e9&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/3\u00bd-a-louer-Universite-Sherbrooke-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;Cuisine fonctionnelle comptoir-lunch&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/3\u00bd-a-louer-Universite-Sherbrooke-3-584x438.jpg&quot;,&quot;alt&quot;:&quot;Cuisine entr\u00e9e lave-vaisselle&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/3\u00bd-a-louer-Universite-Sherbrooke-4-584x438.jpg&quot;,&quot;alt&quot;:&quot;Salon lumineux balcon priv\u00e9 intime&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/3\u00bd-a-louer-Universite-Sherbrooke-5-584x438.jpg&quot;,&quot;alt&quot;:&quot;Salle de bain entr\u00e9e laveuse s\u00e9cheuse&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/3\u00bd-a-louer-Universite-Sherbrooke-6-584x438.jpg&quot;,&quot;alt&quot;:&quot;Chambre spacieuse&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/3\u00bd-a-louer-Universite-Sherbrooke-7-584x438.jpg&quot;,&quot;alt&quot;:&quot;Chambre rangement deux garde-robes&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Piscine-Projet-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;Piscine ext\u00e9rieur&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
2442 + <div class="item-wrap item-wrap-v6 h-100">
2443 + <div class="d-flex align-items-center h-100">
2444 + <div class="item-header">
2445 +
2446 + <div class="labels-wrap labels-right">
2447 +
2448 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
2449 + LOUÉ
2450 + </a><a href="https://immeublesalexcellence.com/tag/3%c2%bd/" class="hz-label label label-color-202">
2451 +
2452 + </a>
2453 +
2454 +</div>
2455 +
2456 + <div class="listing-image-wrap">
2457 + <div class="listing-thumb">
2458 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/logement-a-louer-universite-sherbrooke-mont-bellvue/">
2459 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/3½-a-louer-Universite-Sherbrooke-1-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="loyer étudiant Sherbrooke Mont-Bellevue Université" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/01/3½-a-louer-Universite-Sherbrooke-1-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/3½-a-louer-Universite-Sherbrooke-1-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/3½-a-louer-Universite-Sherbrooke-1-1024x769.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/3½-a-louer-Universite-Sherbrooke-1-768x577.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/3½-a-louer-Universite-Sherbrooke-1-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/3½-a-louer-Universite-Sherbrooke-1-799x600.jpg 799w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/3½-a-louer-Universite-Sherbrooke-1-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/3½-a-louer-Universite-Sherbrooke-1-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/3½-a-louer-Universite-Sherbrooke-1.jpg 1300w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
2460 + </div>
2461 + </div>
2462 +
2463 + <ul class="item-tools">
2464 +
2465 + <li class="item-tool item-preview">
2466 + <span class="hz-show-lightbox-js" data-listid="3047" data-toggle="tooltip" data-placement="top" title="Avis">
2467 + <i class="houzez-icon icon-expand-3"></i>
2468 + </span><!-- item-tool-favorite -->
2469 + </li><!-- item-tool -->
2470 +
2471 + <li class="item-tool item-favorite">
2472 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3047">
2473 + <i class="houzez-icon icon-love-it "></i>
2474 + </span><!-- item-tool-favorite -->
2475 + </li><!-- item-tool -->
2476 +
2477 + </ul><!-- item-tools -->
2478 + <div class="preview_loader"></div>
2479 + </div><!-- item-header -->
2480 + <div class="item-body flex-grow-1">
2481 + <h2 class="item-title">
2482 + <a target=_blank href="https://immeublesalexcellence.com/appartements/logement-a-louer-universite-sherbrooke-mont-bellvue/">Logement 3 ½ à louer &#8211; Sherbrooke Secteur Université et Mont-Bellevue</a>
2483 +</h2><!-- item-title -->
2484 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2485 + <ul class="item-price-wrap">
2486 + <li class="item-price"><span class="item-price-text"></span></li>
2487 + </ul>
2488 + <ul class="item-amenities item-amenities-with-icons">
2489 + <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></ul> </div><!-- d-flex -->
2490 + </div><!-- item-body -->
2491 + </div><!-- d-flex -->
2492 + </div><!-- item-wrap -->
2493 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-3005" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-a-louer-584x438.jpg&quot;,&quot;alt&quot;:&quot;Appartement a louer Universit\u00e9 Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-a-louer-584x438.jpg&quot;,&quot;alt&quot;:&quot;Appartement a louer Universit\u00e9 Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/loyer-location-sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;4 \u00bd a louer \u00e9tudiant Cegep de Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-louer-universite-sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;Appartement 4 \u00bd a louer C\u00c9GEP Universit\u00e9&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-louer-sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;Appartement 4 \u00bd \u00e0 louer Cegep Universit\u00e9&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Appartement-Sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;Appart a louer Universit\u00e9 Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/chambre-bain-loyer-universite-584x438.jpg&quot;,&quot;alt&quot;:&quot;loyer 4 \u00bd \u00e0 louer Cegep Universit\u00e9&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/logement-louer-universite-sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;Logement 4 \u00bd a louer universit\u00e9 de Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/loyer-sherbrooke-udes-584x438.jpg&quot;,&quot;alt&quot;:&quot;4 \u00bd \u00e0 louer C\u00e9gep de Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
2494 + <div class="item-wrap item-wrap-v6 h-100">
2495 + <div class="d-flex align-items-center h-100">
2496 + <div class="item-header">
2497 +
2498 + <div class="labels-wrap labels-right">
2499 +
2500 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
2501 + LOUÉ
2502 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
2503 +
2504 + </a>
2505 +
2506 +</div>
2507 +
2508 + <div class="listing-image-wrap">
2509 + <div class="listing-thumb">
2510 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/loyer-a-louer-etudiant-cegep-sherbrooke/">
2511 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="Appartement a louer Université Sherbrooke" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer.jpg 1067w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
2512 + </div>
2513 + </div>
2514 +
2515 + <ul class="item-tools">
2516 +
2517 + <li class="item-tool item-preview">
2518 + <span class="hz-show-lightbox-js" data-listid="3005" data-toggle="tooltip" data-placement="top" title="Avis">
2519 + <i class="houzez-icon icon-expand-3"></i>
2520 + </span><!-- item-tool-favorite -->
2521 + </li><!-- item-tool -->
2522 +
2523 + <li class="item-tool item-favorite">
2524 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="3005">
2525 + <i class="houzez-icon icon-love-it "></i>
2526 + </span><!-- item-tool-favorite -->
2527 + </li><!-- item-tool -->
2528 +
2529 + </ul><!-- item-tools -->
2530 + <div class="preview_loader"></div>
2531 + </div><!-- item-header -->
2532 + <div class="item-body flex-grow-1">
2533 + <h2 class="item-title">
2534 + <a target=_blank href="https://immeublesalexcellence.com/appartements/loyer-a-louer-etudiant-cegep-sherbrooke/">4 ½ à louer près de l&rsquo;Université de Sherbrooke</a>
2535 +</h2><!-- item-title -->
2536 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2537 + <ul class="item-price-wrap">
2538 + <li class="item-price"><span class="item-price-text"></span></li>
2539 + </ul>
2540 + <ul class="item-amenities item-amenities-with-icons">
2541 + <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></ul> </div><!-- d-flex -->
2542 + </div><!-- item-body -->
2543 + </div><!-- d-flex -->
2544 + </div><!-- item-wrap -->
2545 +</div><!-- item-listing-wrap --><div class="item-listing-wrap hz-item-gallery-js item-listing-wrap-v6 card" data-hz-id="hz-2847" data-images="[{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/appartement-etudiant-universite-sherbrooke-1-584x438.jpg&quot;,&quot;alt&quot;:&quot;appartement a louer UdeS&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-logement-etudiant-Sherbrooke-9-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-logement-etudiant-Sherbrooke-8-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-logement-etudiant-Sherbrooke-4-584x438.jpg&quot;,&quot;alt&quot;:&quot;chambre de bain loyer pour \u00e9tudiant Universit\u00e9 Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-logement-etudiant-Sherbrooke-5-584x438.jpg&quot;,&quot;alt&quot;:&quot;chambre de bain loyer pour \u00e9tudiant U de S&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-logement-etudiant-Sherbrooke-3-584x438.jpg&quot;,&quot;alt&quot;:&quot;Loyer \u00e9tudiant a louer&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-logement-etudiant-Sherbrooke-2-584x438.jpg&quot;,&quot;alt&quot;:&quot;Location loyer pour \u00e9tudiant&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-logement-etudiant-Sherbrooke-10-584x438.jpg&quot;,&quot;alt&quot;:&quot;Logement a louer pour \u00e9tudiant Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-logement-etudiant-Sherbrooke-584x438.jpg&quot;,&quot;alt&quot;:&quot;Location logement \u00e9tudiant Sherbrooke&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-logement-etudiant-Sherbrooke-7-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438},{&quot;image&quot;:&quot;https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2025\/01\/Location-logement-etudiant-Sherbrooke-6-584x438.jpg&quot;,&quot;alt&quot;:&quot;&quot;,&quot;width&quot;:584,&quot;height&quot;:438}]">
2546 + <div class="item-wrap item-wrap-v6 h-100">
2547 + <div class="d-flex align-items-center h-100">
2548 + <div class="item-header">
2549 +
2550 + <div class="labels-wrap labels-right">
2551 +
2552 + <a href="https://immeublesalexcellence.com/statut/loue/" class="label-status label status-color-199">
2553 + LOUÉ
2554 + </a><a href="https://immeublesalexcellence.com/tag/3%c2%bd/" class="hz-label label label-color-202">
2555 +
2556 + </a>
2557 +
2558 +</div>
2559 +
2560 + <div class="listing-image-wrap">
2561 + <div class="listing-thumb">
2562 + <a class="listing-featured-thumb" target=_blank href="https://immeublesalexcellence.com/appartements/appartement-etudiant-universite-sherbrooke/">
2563 + <img width="584" height="438" src="data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20584%20438%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3C%2Fsvg%3E" data-src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/appartement-etudiant-universite-sherbrooke-1-584x438.jpg" class="houzez-lazyload img-fluid wp-post-image" alt="appartement a louer UdeS" decoding="async" srcset="" data-srcset="https://immeublesalexcellence.com/wp-content/uploads/2025/01/appartement-etudiant-universite-sherbrooke-1-584x438.jpg 584w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/appartement-etudiant-universite-sherbrooke-1-300x225.jpg 300w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/appartement-etudiant-universite-sherbrooke-1-1024x768.jpg 1024w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/appartement-etudiant-universite-sherbrooke-1-768x576.jpg 768w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/appartement-etudiant-universite-sherbrooke-1-592x444.jpg 592w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/appartement-etudiant-universite-sherbrooke-1-800x600.jpg 800w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/appartement-etudiant-universite-sherbrooke-1-120x90.jpg 120w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/appartement-etudiant-universite-sherbrooke-1-496x372.jpg 496w, https://immeublesalexcellence.com/wp-content/uploads/2025/01/appartement-etudiant-universite-sherbrooke-1.jpg 1067w" sizes="(max-width: 584px) 100vw, 584px" /> </a>
2564 + </div>
2565 + </div>
2566 +
2567 + <ul class="item-tools">
2568 +
2569 + <li class="item-tool item-preview">
2570 + <span class="hz-show-lightbox-js" data-listid="2847" data-toggle="tooltip" data-placement="top" title="Avis">
2571 + <i class="houzez-icon icon-expand-3"></i>
2572 + </span><!-- item-tool-favorite -->
2573 + </li><!-- item-tool -->
2574 +
2575 + <li class="item-tool item-favorite">
2576 + <span class="add-favorite-js item-tool-favorite" data-toggle="tooltip" data-placement="top" title="Favori" data-listid="2847">
2577 + <i class="houzez-icon icon-love-it "></i>
2578 + </span><!-- item-tool-favorite -->
2579 + </li><!-- item-tool -->
2580 +
2581 + </ul><!-- item-tools -->
2582 + <div class="preview_loader"></div>
2583 + </div><!-- item-header -->
2584 + <div class="item-body flex-grow-1">
2585 + <h2 class="item-title">
2586 + <a target=_blank href="https://immeublesalexcellence.com/appartements/appartement-etudiant-universite-sherbrooke/">3½ à louer Secteur Université &amp; Mont-Bellevue, 875 rue Veilleux</a>
2587 +</h2><!-- item-title -->
2588 + <div class="d-flex justify-content-between align-items-center amenities-price-wrap">
2589 + <ul class="item-price-wrap">
2590 + <li class="item-price"><span class="item-price-text"></span></li>
2591 + </ul>
2592 + <ul class="item-amenities item-amenities-with-icons">
2593 + <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></ul> </div><!-- d-flex -->
2594 + </div><!-- item-body -->
2595 + </div><!-- d-flex -->
2596 + </div><!-- item-wrap -->
2597 +</div><!-- item-listing-wrap -->
2598 + </div><!-- listing-view -->
2599 +
2600 + <div id="fave-pagination-loadmore" class="load-more-wrap mb-4 fave-load-more">
2601 + <a class="houzez-infinite-load btn btn-primary-outlined btn-load-more"
2602 + data-page="2"
2603 + data-total="20"
2604 + data-per-page="24"
2605 + data-pagi-type="_loadmore"
2606 + href="https://immeublesalexcellence.com/appartements-a-louer/page/2/">
2607 + <span class="btn-loader houzez-loader-js"></span> Charger plus
2608 + </a>
2609 + </div>
2610 +
2611 +
2612 + </div>
2613 + </div><!-- row -->
2614 +
2615 + </div><!-- container -->
2616 +</section><!-- listing-wrap -->
2617 +
2618 +
2619 +</main><!-- .main-wrap start in header.php-->
2620 +
2621 +<footer class="footer-wrap footer-wrap-v1">
2622 +
2623 + <div class="footer-bottom-wrap footer-bottom-wrap-v1">
2624 + <div class="container">
2625 + <div class="d-flex justify-content-between">
2626 +
2627 + <div class="footer-copyright">
2628 + &copy; Immeubles Alexcellence - Tout droits réservés</div><!-- footer-copyright -->
2629 +
2630 +
2631 +
2632 + </div><!-- d-flex -->
2633 + </div><!-- container -->
2634 +</div><!-- footer-top-wrap --></footer><div class="back-to-top-wrap">
2635 + <a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
2636 + <i class="houzez-icon icon-arrow-up-1"></i>
2637 + </a>
2638 +</div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
2639 +
2640 + <button class="compare-property-label" style="display: none;">
2641 + <span class="compare-count compare-label"></span>
2642 + <i class="houzez-icon icon-move-left-right"></i>
2643 + </button>
2644 +
2645 + <p><strong>Comparer les annonces</strong></p>
2646 +
2647 + <div class="compare-wrap"></div>
2648 +
2649 +
2650 + <a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
2651 + <button class="btn btn-grey-outlined btn-full-width close-compare-panel">Close</button>
2652 +</div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog">
2653 + <div class="modal-dialog" role="document">
2654 + <div class="modal-content">
2655 + <div class="modal-header">
2656 + <div class="login-register-tabs">
2657 + <ul class="nav nav-tabs">
2658 + <li class="nav-item">
2659 + <a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">S&#039;identifier</a>
2660 + </li>
2661 +
2662 + </ul>
2663 + </div><!-- login-register-tabs -->
2664 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
2665 + <span aria-hidden="true">&times;</span>
2666 + </button>
2667 + </div><!-- modal-header -->
2668 + <div class="modal-body">
2669 + <div class="tab-content">
2670 + <div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel">
2671 + <div id="hz-login-messages" class="hz-social-messages"></div>
2672 +<form>
2673 + <div class="login-form-wrap">
2674 + <div class="form-group">
2675 + <div class="form-group-field username-field">
2676 + <input class="form-control" name="username" placeholder="Username or Email" type="text" />
2677 + </div><!-- input-group -->
2678 + </div><!-- form-group -->
2679 + <div class="form-group">
2680 + <div class="form-group-field password-field">
2681 + <input class="form-control" name="password" placeholder="Mot de passe" type="password" />
2682 + </div><!-- input-group -->
2683 + </div><!-- form-group -->
2684 + </div><!-- login-form-wrap -->
2685 +
2686 + <div class="form-tools">
2687 + <div class="d-flex">
2688 + <label class="control control--checkbox flex-grow-1">
2689 + <input name="remember" type="checkbox">Remember me FR <span class="control__indicator"></span>
2690 + </label>
2691 + <a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Lost your password?</a>
2692 + </div><!-- d-flex -->
2693 + </div><!-- form-tools -->
2694 +
2695 + <div class="form-group captcha_wrapper houzez-grecaptcha-v3">
2696 + <div class="houzez_google_reCaptcha"></div>
2697 +</div>
2698 +
2699 + <input type="hidden" id="houzez_login_security" name="houzez_login_security" value="90509fca4b" /><input type="hidden" name="_wp_http_referer" value="/appartements-a-louer/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
2700 + <input type="hidden" name="redirect_to" value="https://immeublesalexcellence.com/appartements-a-louer/?login=success">
2701 + <button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
2702 + <span class="btn-loader houzez-loader-js"></span> S&#039;identifier
2703 + </button>
2704 +</form>
2705 +
2706 +<div class="social-login-wrap">
2707 +
2708 + <button type="button" class="hz-facebook-login btn btn-facebook-login btn-full-width">
2709 + <span class="btn-loader houzez-loader-js"></span> Continue with Facebook </button>
2710 +
2711 + <button type="button" class="hz-google-login btn btn-google-plus-lined btn-full-width">
2712 + <span class="btn-loader houzez-loader-js"></span> <img class="google-icon" src="https://immeublesalexcellence.com/wp-content/themes/houzez/img/Google__G__Logo.svg"/> Sign in with google </button>
2713 +
2714 +</div>
2715 + </div><!-- login-form-tab -->
2716 + <div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel">
2717 + <div id="hz-register-messages" class="hz-social-messages"></div>
2718 +User registration is disabled for demo purpose. </div><!-- register-form-tab -->
2719 + </div><!-- tab-content -->
2720 + </div><!-- modal-body -->
2721 + </div><!-- modal-content -->
2722 + </div><!-- modal-dialog -->
2723 +</div><!-- login-register-form --><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog">
2724 + <div class="modal-dialog" role="document">
2725 + <div class="modal-content">
2726 + <div class="modal-header">
2727 + <div class="modal-title">Reset Password</div>
2728 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
2729 + <span aria-hidden="true">&times;</span>
2730 + </button>
2731 + </div><!-- modal-header -->
2732 + <div class="modal-body">
2733 + <div id="reset_pass_msg"></div>
2734 + <p>Please enter your username or email address. You will receive a link to create a new password via email.</p>
2735 + <form>
2736 + <div class="form-group">
2737 + <input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Enter your username or email" class="form-control">
2738 + </div>
2739 + <input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="eec590fff1" /><input type="hidden" name="_wp_http_referer" value="/appartements-a-louer/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
2740 + <span class="btn-loader houzez-loader-js"></span> Get new password </button>
2741 + </form>
2742 + </div><!-- modal-body -->
2743 + </div><!-- modal-content -->
2744 + </div><!-- modal-dialog -->
2745 +</div><!-- login-register-form --><div class="property-lightbox">
2746 + <div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog">
2747 + <div class="modal-dialog modal-dialog-centered" role="document">
2748 + <div id="hz-listing-model-content" class="modal-content">
2749 +
2750 + </div><!-- modal-content -->
2751 + </div><!-- modal-dialog -->
2752 + </div><!-- modal -->
2753 +</div><!-- property-lightbox -->
2754 + <script>
2755 + window.RS_MODULES = window.RS_MODULES || {};
2756 + window.RS_MODULES.modules = window.RS_MODULES.modules || {};
2757 + window.RS_MODULES.waiting = window.RS_MODULES.waiting || [];
2758 + window.RS_MODULES.defered = true;
2759 + window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};
2760 + window.RS_MODULES.type = 'compiled';
2761 + </script>
2762 +
2763 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
2764 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 parametres-de-confidentialite optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
2765 + <div class="cmplz-header">
2766 + <div class="cmplz-logo"><?xml version="1.0" encoding="utf-8"?>
2767 +<!-- Generator: Adobe Illustrator 27.6.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
2768 +<svg version="1.1" id="uuid-7dd7b5b8-c5e0-4d79-ad53-47e9a05e6f8e"
2769 + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1354.3 343"
2770 + style="enable-background:new 0 0 1354.3 343;" xml:space="preserve">
2771 +<style type="text/css">
2772 + .st0{fill:#009FFF;}
2773 + .st1{fill:#333333;}
2774 +</style>
2775 +<path class="st0" d="M663.5,62.7c-17.7,0-36,7.4-44.2,19v-15h-52.7V274h52.7v-75.8c8.2,11.6,26.5,19,44.2,19
2776 + c41.1,0,68.6-37.4,68.6-77.5S704.6,62.7,663.5,62.7L663.5,62.7L663.5,62.7z M649.6,174.1c-18,0-30.3-13.9-30.3-33.7
2777 + s11.9-34.7,30.3-34.7c17.4,0,29.9,14.6,29.9,34.7S666.9,174.1,649.6,174.1z M499.6,62.7c-24.5,0-39,10.8-49.3,24.1
2778 + c-8.5-14.6-21.8-24.1-44.8-24.1c-17.3,0-30.6,5.1-40.4,19.3V66.8h-52.7v146.4H365v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9
2779 + v75.4h52.7v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9v75.4h52.7v-88.2C553.2,90.2,538.9,62.7,499.6,62.7L499.6,62.7
2780 + L499.6,62.7z M221.3,62.7c-42.1,0-78.8,33.7-78.8,77.1s36,77.5,79.1,77.5s78.8-34.3,78.8-77.8S264.1,62.7,221.3,62.7L221.3,62.7
2781 + L221.3,62.7z M221.6,175.5c-18.4,0-27.9-18.7-27.9-35.6s9.5-35.3,27.5-35.3c19,0,27.9,18.7,27.9,35S240,175.5,221.6,175.5
2782 + L221.6,175.5L221.6,175.5z M79.6,175.8c-19,0-31.6-17.7-31.6-35.3c0-20.8,12.9-36,31.6-36c10.8,0,20.8,4.4,29.2,13.6l30.3-28.2
2783 + c-15.6-18.7-34.7-27.2-59.5-27.2C32.7,62.7-0.9,98-0.9,140.5s34.3,76.7,80.6,76.7c28.5,0,46.6-9.5,64.2-31.6l-35.3-24.8
2784 + C100.4,170.4,93.2,175.8,79.6,175.8L79.6,175.8L79.6,175.8z M1139,62.7c-17.4,0-32.6,6.4-42.1,19.3V66.7h-52.7v146.4h52.7v-77.1
2785 + c0-18,8.8-29.2,24.2-29.2s20.8,11.2,20.8,30.9v75.4h52.7v-88.1C1194.5,90.2,1178.5,62.7,1139,62.7L1139,62.7L1139,62.7z M958.2,62.7
2786 + c-26.5,0-50.9,4-70.3,15l16.3,31.6c15.3-7.9,31.9-12.6,52.3-12.6c15,0,21.8,3.4,21.8,13.6v5.1c-47.5,2.1-103.6,10.8-103.6,56.4
2787 + c0,27.9,24.8,45.5,53,45.5c25.5,0,34.7-4.1,50.6-15.3v11.2h52.7v-93.1C1030.9,78.3,1006.7,62.7,958.2,62.7L958.2,62.7L958.2,62.7z
2788 + M978.2,169.4c-8.5,7.4-17.4,10.5-30.6,10.5c-8.5,0-17-5.1-17-13.6c0-16.3,25.1-21.4,47.5-21.4V169.4z M744,213.2h52.7V1.7H744
2789 + V213.2L744,213.2z M1282.8,172.9l70.5-106.2h-143.7v40.8h53.7c4.8,0,8.8-0.3,8.8-0.3s-3.4,3.7-6.1,7.8l-66.2,98.2h145.1v-40.8h-52.1
2790 + C1289.8,172.4,1285.4,172.7,1282.8,172.9L1282.8,172.9L1282.8,172.9z M811.2,67.4v145.7h52.7V67.2c-8.3,2.9-17.1,4.6-26.1,4.6
2791 + S819.6,70.2,811.2,67.4L811.2,67.4L811.2,67.4z"/>
2792 +<g>
2793 + <g>
2794 + <path class="st1" d="M649.8,345v-8l10.1-1.8v-75.6l-11.2-1.8v-8h20.6l1.2,8.4c2.3-3.1,5.2-5.5,8.5-7.2c3.4-1.6,7.2-2.5,11.7-2.5
2795 + c5.8,0,10.8,1.5,14.9,4.6c4.1,3.1,7.3,7.4,9.4,12.9c2.2,5.5,3.3,12,3.3,19.4v1.3c0,6.6-1.1,12.4-3.3,17.3s-5.3,8.8-9.4,11.6
2796 + c-4.1,2.8-9,4.1-14.7,4.1c-4.3,0-8.1-0.7-11.4-2.1c-3.3-1.4-6.1-3.5-8.3-6.3v24l11.2,1.8v8L649.8,345L649.8,345z M686.8,310.6
2797 + c5.9,0,10.4-2.2,13.4-6.4c3-4.3,4.5-9.9,4.5-16.7V286c0-5.3-0.7-9.9-2-13.9c-1.4-4-3.4-7.2-6.1-9.5s-6.1-3.4-10.1-3.4
2798 + c-3.6,0-6.6,0.8-9.2,2.4c-2.6,1.6-4.6,3.8-6.2,6.6v33.6c1.6,2.9,3.7,5.1,6.2,6.7c2.6,1.6,5.7,2.4,9.5,2.4L686.8,310.6z"/>
2799 + </g>
2800 + <g>
2801 + <path class="st1" d="M758,320.5c-6.4,0-11.9-1.5-16.5-4.5s-8.2-7.1-10.7-12.4c-2.5-5.3-3.8-11.3-3.8-18.1v-1.4
2802 + c0-6.8,1.3-12.8,3.8-18.1c2.5-5.3,6.1-9.4,10.7-12.5c4.6-3,10.1-4.5,16.3-4.5s11.9,1.5,16.5,4.5s8.2,7.2,10.7,12.4
2803 + c2.5,5.3,3.8,11.3,3.8,18.1v1.4c0,6.8-1.3,12.9-3.8,18.2c-2.5,5.3-6.1,9.4-10.6,12.4C769.8,319,764.4,320.5,758,320.5L758,320.5z
2804 + M758.6,310.2c3.9,0,7.2-1.1,9.8-3.2c2.6-2.1,4.6-5.1,6-8.8s2-8,2-12.7v-1.4c0-4.8-0.7-9-2-12.7c-1.4-3.7-3.4-6.7-6-8.8
2805 + c-2.7-2.1-6-3.2-9.9-3.2c-4,0-7.2,1.1-9.9,3.2c-2.7,2.1-4.7,5.1-6,8.8c-1.3,3.7-2,8-2,12.7v1.4c0,4.8,0.7,9,2,12.7
2806 + c1.3,3.7,3.3,6.7,6,8.8S754.6,310.2,758.6,310.2L758.6,310.2z"/>
2807 + </g>
2808 + <g>
2809 + <path class="st1" d="M822.4,319.3l-18.1-59.5l-7.7-0.9v-8h28v8l-8.3,1.4l9.3,34.1l2.1,8.1h0.4l2.8-8.1l14.7-43.5h11.4l14.1,43.1
2810 + l3,9.5h0.4l3-9.5l9.5-33.8l-8.6-1.3v-8h28v8l-7.6,1.1L881,319.3h-12.1L855,278.2l-3.3-11l-0.4,0.1l-3.2,10.9l-14.9,41.1
2811 + L822.4,319.3L822.4,319.3z"/>
2812 + </g>
2813 + <g>
2814 + <path class="st1" d="M943.2,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2815 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2816 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7s3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2817 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C953.7,319.8,948.8,320.6,943.2,320.6L943.2,320.6z
2818 + M925.3,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3c-2.8,0-5.3,0.8-7.6,2.4
2819 + c-2.3,1.6-4.2,3.8-5.6,6.6c-1.5,2.8-2.5,6-2.9,9.5L925.3,277.8L925.3,277.8z"/>
2820 + </g>
2821 + <g>
2822 + <path class="st1" d="M980.5,319.3v-8l10.1-1.8v-48.8l-10.1-1.8v-8h21.1l1.1,8.7l0.1,1.2c1.9-3.5,4.2-6.2,7-8.2c2.8-2,6-3,9.6-3
2823 + c1.3,0,2.6,0.1,3.9,0.3c1.3,0.2,2.3,0.4,2.9,0.7l-1.6,11.6l-8.5-0.5c-3.2-0.2-5.9,0.5-8.1,2.2c-2.2,1.7-3.9,4-5.1,6.9v38.7
2824 + l10.1,1.8v8L980.5,319.3L980.5,319.3z"/>
2825 + </g>
2826 + <g>
2827 + <path class="st1" d="M1063.1,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2828 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2829 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7c1.4,3.4,3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2830 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C1073.6,319.8,1068.8,320.6,1063.1,320.6
2831 + L1063.1,320.6z M1045.2,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3
2832 + c-2.8,0-5.3,0.8-7.6,2.4c-2.3,1.6-4.2,3.8-5.6,6.6s-2.5,6-2.9,9.5L1045.2,277.8L1045.2,277.8z"/>
2833 + </g>
2834 + <g>
2835 + <path class="st1" d="M1127.3,320.6c-5.6,0-10.5-1.4-14.5-4.1c-4-2.8-7.1-6.6-9.2-11.6c-2.1-4.9-3.2-10.7-3.2-17.3v-1.3
2836 + c0-7.4,1.1-13.8,3.2-19.3c2.1-5.5,5.2-9.8,9.3-12.9c4.1-3.1,8.9-4.6,14.6-4.6c4.1,0,7.7,0.8,10.9,2.3c3.1,1.5,5.8,3.7,8,6.5v-27.7
2837 + l-10.1-1.8v-8h23.5v88.9l10.1,1.8v8H1148l-1-8.2c-2.3,3.1-5,5.5-8.3,7.1C1135.4,319.8,1131.7,320.6,1127.3,320.6L1127.3,320.6z
2838 + M1130.9,309.8c3.7,0,6.7-0.8,9.2-2.5c2.5-1.7,4.6-4,6.2-7.1V269c-1.6-2.8-3.6-5.1-6.2-6.7c-2.5-1.7-5.6-2.5-9.1-2.5
2839 + c-3.9,0-7.1,1.1-9.7,3.3c-2.5,2.2-4.4,5.3-5.7,9.2c-1.2,3.9-1.9,8.5-1.9,13.7v1.3c0,6.8,1.4,12.2,4.2,16.3
2840 + C1120.8,307.8,1125.1,309.8,1130.9,309.8L1130.9,309.8z"/>
2841 + </g>
2842 + <g>
2843 + <path class="st1" d="M1245.2,320.6c-4.5,0-8.3-0.9-11.6-2.6c-3.3-1.7-6-4.2-8.2-7.6l-1.1,8.8h-10.6v-88.8l-10.1-1.8v-8h22.4V259
2844 + c2.2-3,4.8-5.4,8-7c3.2-1.6,6.9-2.4,11.2-2.4c5.6,0,10.5,1.5,14.4,4.6c4,3.1,7,7.3,9.2,12.9c2.1,5.5,3.2,11.9,3.2,19.3v1.3
2845 + c0,6.6-1.1,12.3-3.2,17.3c-2.1,4.9-5.2,8.8-9.2,11.5C1255.6,319.2,1250.8,320.6,1245.2,320.6L1245.2,320.6z M1241.6,310.6
2846 + c6.1,0,10.6-2.2,13.5-6.5c2.9-4.3,4.4-10,4.4-17.1v-1c0-5.3-0.6-10-1.9-14s-3.2-7.1-5.8-9.4c-2.6-2.3-5.9-3.4-9.9-3.4
2847 + c-4,0-7.1,0.9-9.8,2.8c-2.6,1.9-4.8,4.4-6.3,7.5v30.6c1.5,3.1,3.6,5.5,6.2,7.3c2.6,1.8,5.8,2.7,9.5,2.7L1241.6,310.6z"/>
2848 + </g>
2849 + <g>
2850 + <path class="st1" d="M1293.4,346.2c-1,0-2.2-0.1-3.8-0.3c-1.6-0.2-2.8-0.5-3.6-0.7l1.3-9.8c0.7,0.1,1.7,0.2,3,0.2s2.1,0.1,2.6,0.1
2851 + c2.7,0,4.8-1,6.5-3c1.7-2,3.2-4.8,4.7-8.3l3-7.2l-24.3-58.2l-7.4-1v-8.1h29.1v8.1l-8.3,1.3l13.3,34.4l3.2,9h0.4l15.8-43.3
2852 + l-8.7-1.3v-8.1h28v8.1l-7.1,1l-27,70.1c-1.3,3.3-2.8,6.3-4.6,8.9c-1.8,2.6-4,4.6-6.6,6.1C1300.2,345.4,1297,346.2,1293.4,346.2
2853 + L1293.4,346.2z"/>
2854 + </g>
2855 +</g>
2856 +</svg>
2857 +</div>
2858 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
2859 + <div class="cmplz-close" tabindex="0" role="button" aria-label="close-dialog">
2860 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
2861 + </div>
2862 + </div>
2863 +
2864 + <div class="cmplz-divider cmplz-divider-header"></div>
2865 + <div class="cmplz-body">
2866 + <div class="cmplz-message" id="cmplz-message-1-optin"><p>Pour vous offrir les meilleures expériences, nous utilisons des technologies, telles que les cookies, pour stocker et accéder à des informations sur votre appareil. Votre consentement à ces technologies nous permet de traiter des données, telles que vos préférences de navigation ou des identifiants uniques. Vous pouvez refuser ou retirer votre consentement à tout moment, ce qui pourrait affecter certaines fonctionnalités ou caractéristiques du site. Pour en savoir plus sur l’utilisation de vos données, veuillez consulter notre [politique de confidentialité](lien vers la politique de confidentialité).</p></div>
2867 + <!-- categories start -->
2868 + <div class="cmplz-categories">
2869 + <details class="cmplz-category cmplz-functional" >
2870 + <summary>
2871 + <span class="cmplz-category-header">
2872 + <span class="cmplz-category-title">Fonctionnel</span>
2873 + <span class='cmplz-always-active'>
2874 + <span class="cmplz-banner-checkbox">
2875 + <input type="checkbox"
2876 + id="cmplz-functional-optin"
2877 + data-category="cmplz_functional"
2878 + class="cmplz-consent-checkbox cmplz-functional"
2879 + size="40"
2880 + value="1"/>
2881 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
2882 + </span>
2883 + Toujours activé </span>
2884 + <span class="cmplz-icon cmplz-open">
2885 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2886 + </span>
2887 + </span>
2888 + </summary>
2889 + <div class="cmplz-description">
2890 + <span class="cmplz-description-functional">L’accès ou le stockage technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
2891 + </div>
2892 + </details>
2893 +
2894 + <details class="cmplz-category cmplz-preferences" >
2895 + <summary>
2896 + <span class="cmplz-category-header">
2897 + <span class="cmplz-category-title">Préférences</span>
2898 + <span class="cmplz-banner-checkbox">
2899 + <input type="checkbox"
2900 + id="cmplz-preferences-optin"
2901 + data-category="cmplz_preferences"
2902 + class="cmplz-consent-checkbox cmplz-preferences"
2903 + size="40"
2904 + value="1"/>
2905 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
2906 + </span>
2907 + <span class="cmplz-icon cmplz-open">
2908 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2909 + </span>
2910 + </span>
2911 + </summary>
2912 + <div class="cmplz-description">
2913 + <span class="cmplz-description-preferences">L'accès ou le stockage technique est nécessaire dans la finalité d'intérêt légitime de stocker des préférences spécifiques des utilisateurs, telles que la langue, la région ou d'autres paramètres personnalisés, afin d'améliorer leur expérience sur le site.</span>
2914 + </div>
2915 + </details>
2916 +
2917 + <details class="cmplz-category cmplz-statistics" >
2918 + <summary>
2919 + <span class="cmplz-category-header">
2920 + <span class="cmplz-category-title">Statistiques</span>
2921 + <span class="cmplz-banner-checkbox">
2922 + <input type="checkbox"
2923 + id="cmplz-statistics-optin"
2924 + data-category="cmplz_statistics"
2925 + class="cmplz-consent-checkbox cmplz-statistics"
2926 + size="40"
2927 + value="1"/>
2928 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
2929 + </span>
2930 + <span class="cmplz-icon cmplz-open">
2931 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2932 + </span>
2933 + </span>
2934 + </summary>
2935 + <div class="cmplz-description">
2936 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
2937 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique est utilisé exclusivement à des fins statistiques anonymes. Sans assignation légale, conformité volontaire de votre fournisseur d’accès à Internet ou données supplémentaires d’une tierce partie, les informations collectées à cette fin ne peuvent pas être utilisées pour vous identifier.</span>
2938 + </div>
2939 + </details>
2940 + <details class="cmplz-category cmplz-marketing" >
2941 + <summary>
2942 + <span class="cmplz-category-header">
2943 + <span class="cmplz-category-title">Marketing</span>
2944 + <span class="cmplz-banner-checkbox">
2945 + <input type="checkbox"
2946 + id="cmplz-marketing-optin"
2947 + data-category="cmplz_marketing"
2948 + class="cmplz-consent-checkbox cmplz-marketing"
2949 + size="40"
2950 + value="1"/>
2951 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
2952 + </span>
2953 + <span class="cmplz-icon cmplz-open">
2954 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2955 + </span>
2956 + </span>
2957 + </summary>
2958 + <div class="cmplz-description">
2959 + <span class="cmplz-description-marketing">L’accès ou le stockage technique est nécessaire pour créer des profils d’utilisateurs, diffuser des publicités personnalisées, et suivre l’activité de l’utilisateur sur ce site ou sur plusieurs sites web dans le cadre de campagnes marketing similaires.</span>
2960 + </div>
2961 + </details>
2962 + </div><!-- categories end -->
2963 + </div>
2964 +
2965 + <div class="cmplz-links cmplz-information">
2966 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
2967 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
2968 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
2969 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
2970 + </div>
2971 +
2972 + <div class="cmplz-divider cmplz-footer"></div>
2973 +
2974 + <div class="cmplz-buttons">
2975 + <button class="cmplz-btn cmplz-accept">Accepter</button>
2976 + <button class="cmplz-btn cmplz-deny">Refuser</button>
2977 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
2978 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
2979 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
2980 + </div>
2981 +
2982 + <div class="cmplz-links cmplz-documents">
2983 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
2984 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
2985 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
2986 + </div>
2987 +
2988 +</div>
2989 +</div>
2990 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
2991 +
2992 +</div> <script data-service="google-recaptcha" data-category="marketing" type="text/plain">
2993 + var reCaptchaIDs = [];
2994 + var siteKey = '6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc';
2995 + var reCaptchaType = 'v3';
2996 +
2997 + var houzezReCaptchaLoad = function() {
2998 + jQuery( '.houzez_google_reCaptcha' ).each( function( index, el ) {
2999 + var tempID;
3000 +
3001 + if ( reCaptchaType === 'v3' ) {
3002 +
3003 + tempID = grecaptcha.ready(function () {
3004 + grecaptcha.execute(siteKey, {action: 'homepage'}).then(function (token) {
3005 + el.insertAdjacentHTML('beforeend', '<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="' + token + '">');
3006 + });
3007 + });
3008 +
3009 + } else {
3010 +
3011 + tempID = grecaptcha.render( el, {
3012 + 'sitekey' : siteKey
3013 + } );
3014 + }
3015 +
3016 + reCaptchaIDs.push( tempID );
3017 + } );
3018 + };
3019 +
3020 + //reCAPTCHA reset
3021 + var houzezReCaptchaReset = function() {
3022 + if ( reCaptchaType === 'v2' ) {
3023 + if( typeof reCaptchaIDs != 'undefined' ) {
3024 + var arrayLength = reCaptchaIDs.length;
3025 + for( var i = 0; i < arrayLength; i++ ) {
3026 + grecaptcha.reset( reCaptchaIDs[i] );
3027 + }
3028 + }
3029 + } else {
3030 + houzezReCaptchaLoad();
3031 + }
3032 + };
3033 + </script>
3034 + <script>
3035 + const lazyloadRunObserver = () => {
3036 + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
3037 + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
3038 + entries.forEach( ( entry ) => {
3039 + if ( entry.isIntersecting ) {
3040 + let lazyloadBackground = entry.target;
3041 + if( lazyloadBackground ) {
3042 + lazyloadBackground.classList.add( 'e-lazyloaded' );
3043 + }
3044 + lazyloadBackgroundObserver.unobserve( entry.target );
3045 + }
3046 + });
3047 + }, { rootMargin: '200px 0px 200px 0px' } );
3048 + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
3049 + lazyloadBackgroundObserver.observe( lazyloadBackground );
3050 + } );
3051 + };
3052 + const events = [
3053 + 'DOMContentLoaded',
3054 + 'elementor/lazyload/observe',
3055 + ];
3056 + events.forEach( ( event ) => {
3057 + document.addEventListener( event, lazyloadRunObserver );
3058 + } );
3059 + </script>
3060 + <link rel='stylesheet' id='rs-plugin-settings-css' href='//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/css/rs6.css?ver=6.7.20' type='text/css' media='all' />
3061 +<style id='rs-plugin-settings-inline-css' type='text/css'>
3062 +#rs-demo-id {}
3063 +</style>
3064 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.20" defer async id="tp-tools-js"></script>
3065 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.20" defer async id="revmin-js"></script>
3066 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/all-scripts.js?ver=3.4.4" id="houzez-all-in-one-js"></script>
3067 +<script type="module" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/houzez-instant-page.js?ver=3.0.0" id="houzez-instant-page-js"></script>
3068 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script>
3069 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/menu.min.js?ver=1.13.3" id="jquery-ui-menu-js"></script>
3070 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/dom-ready.min.js?ver=f77871ff7694fffea381" id="wp-dom-ready-js"></script>
3071 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script>
3072 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script>
3073 +<script type="text/javascript" id="wp-i18n-js-after">
3074 +/* <![CDATA[ */
3075 +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
3076 +/* ]]> */
3077 +</script>
3078 +<script type="text/javascript" id="wp-a11y-js-translations">
3079 +/* <![CDATA[ */
3080 +( function( domain, translations ) {
3081 + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
3082 + localeData[""].domain = domain;
3083 + wp.i18n.setLocaleData( localeData, domain );
3084 +} )( "default", {"translation-revision-date":"2025-10-01 05:29:20+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} );
3085 +/* ]]> */
3086 +</script>
3087 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/a11y.min.js?ver=3156534cc54473497e14" id="wp-a11y-js"></script>
3088 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.13.3" id="jquery-ui-autocomplete-js"></script>
3089 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/mouse.min.js?ver=1.13.3" id="jquery-ui-mouse-js"></script>
3090 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/slider.min.js?ver=1.13.3" id="jquery-ui-slider-js"></script>
3091 +<script type="text/javascript" id="houzez-custom-js-extra">
3092 +/* <![CDATA[ */
3093 +var houzez_vars = {"admin_url":"https:\/\/immeublesalexcellence.com\/wp-admin\/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https:\/\/immeublesalexcellence.com\/appartements-a-louer\/","property_gallery_popup_type":"houzez","wp_is_mobile":"","default_lat":"25.686540","default_long":"-80.431345","houzez_is_splash":"","prop_detail_nav":"yes","add_to_favorite_login_required":"1","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"","search_position":"under_banner","login_loading":"Envoi d'informations utilisateur, veuillez patienter ...","not_found":"Nous n'avons trouv\u00e9 aucun r\u00e9sultat","listings_not_found":"No more listings found","houzez_map_system":"osm","for_rent":"a-louer","for_rent_price_slider":"a-louer","search_min_price_range":"0","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":"0","geocomplete_country":"","is_edit_property":"","processing_text":"Traitement, veuillez patienter ...","halfmap_layout":"","prev_text":"Prev","next_text":"Prochain","keyword_search_field":"prop_title","keyword_autocomplete":"1","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"1","simple_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo":"","mobile_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo_mobile":"","retina_logo_mobile_splash":"","custom_logo_splash":"","retina_logo_splash":"","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"","favorite_url":"","template_thankyou":"https:\/\/immeublesalexcellence.com\/","compare_page_not_found":"Veuillez cr\u00e9er une page en utilisant le mod\u00e8le de propri\u00e9t\u00e9s de comparaison","compare_limit":"Prix \u200b\u200bmaximum pour le loyer seulement","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Ajouter au comparatif","remove_compare_text":"Retirer du comparatif","is_mapbox":"google","api_mapbox":"","listing_pagination":"_loadmore","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""};
3094 +/* ]]> */
3095 +</script>
3096 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/custom.js?ver=3.4.4" id="houzez-custom-js"></script>
3097 +<script data-service="google-recaptcha" data-category="marketing" type="text/plain" data-cmplz-src="//www.google.com/recaptcha/api.js?render=6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc&amp;onload=houzezReCaptchaLoad&amp;ver=3.4.4" id="houzez-google-recaptcha-js"></script>
3098 +<script type="text/javascript" id="cmplz-cookiebanner-js-extra">
3099 +/* <![CDATA[ */
3100 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"0","banner_version":"8517","version":"7.3.2","store_consent":"1","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"1","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/immeublesalexcellence.com\/wp-json\/complianz\/v1\/","locale":"lang=fr&locale=fr_FR","set_cookies_on_root":"0","cookie_domain":"","current_policy_id":"37","cookie_path":"\/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"<div class=\"cmplz-blocked-content-notice-body\">Cliquez sur \u00ab\u00a0J\u2019accepte\u00a0\u00bb pour activer {service}\u00a0<div class=\"cmplz-links\"><a href=\"#\" class=\"cmplz-link cookie-statement\">{title}<\/a><\/div><\/div><button class=\"cmplz-accept-service\">J\u2019accepte<\/button>","css_file":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=8517","page_links":{"ca":{"cookie-statement":{"title":"Politique de cookies ","url":"https:\/\/immeublesalexcellence.com\/politique-de-cookies-ca\/"},"privacy-statement":{"title":"D\u00e9claration de confidentialit\u00e9 ","url":"https:\/\/immeublesalexcellence.com\/declaration-de-confidentialite-ca\/"},"privacy-statement-children":{"title":"","url":"https:\/\/immeublesalexcellence.com\/appartements-a-louer\/"}}},"tm_categories":"","forceEnableStats":"1","preview":"","clean_cookies":"1","aria_label":"Cliquez sur le bouton pour activer {service}"};
3101 +/* ]]> */
3102 +</script>
3103 +<script defer type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/cookiebanner/js/complianz.min.js?ver=1736710566" id="cmplz-cookiebanner-js"></script>
3104 +<script type="text/javascript" id="cmplz-cookiebanner-js-after">
3105 +/* <![CDATA[ */
3106 +
3107 + if ('undefined' != typeof window.jQuery) {
3108 + jQuery(document).ready(function ($) {
3109 + $(document).on('elementor/popup/show', () => {
3110 + let rev_cats = cmplz_categories.reverse();
3111 + for (let key in rev_cats) {
3112 + if (rev_cats.hasOwnProperty(key)) {
3113 + let category = cmplz_categories[key];
3114 + if (cmplz_has_consent(category)) {
3115 + document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => {
3116 + cmplz_remove_placeholder(obj);
3117 + });
3118 + }
3119 + }
3120 + }
3121 +
3122 + let services = cmplz_get_services_on_page();
3123 + for (let key in services) {
3124 + if (services.hasOwnProperty(key)) {
3125 + let service = services[key].service;
3126 + let category = services[key].category;
3127 + if (cmplz_has_service_consent(service, category)) {
3128 + document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => {
3129 + cmplz_remove_placeholder(obj);
3130 + });
3131 + }
3132 + }
3133 + }
3134 + });
3135 + });
3136 + }
3137 +
3138 +
3139 +/* ]]> */
3140 +</script>
3141 +<!-- Statistics script Complianz GDPR/CCPA -->
3142 + <script data-category="functional">window['gtag_enable_tcf_support'] = false;
3143 +window.dataLayer = window.dataLayer || [];
3144 +function gtag(){dataLayer.push(arguments);}
3145 +gtag('js', new Date());
3146 +gtag('config', '', {
3147 + cookie_flags:'secure;samesite=none',
3148 + 'anonymize_ip': true
3149 +});
3150 +</script>
3151 +</body>
3152 +</html>
3153 +
3154 +
3155 +
added tests/fixtures/alexcellence/85d22dc2783a3abf6220.html +2354 −0
@@ -0,0 +1,2354 @@
1 +<!doctype html>
2 +<html lang="fr-FR">
3 +<head>
4 + <meta charset="UTF-8" />
5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 + <link rel="profile" href="https://gmpg.org/xfn/11" />
7 + <meta name="format-detection" content="telephone=no">
8 + <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://immeublesalexcellence.com/wp-content/themes/houzez/img/studio-icon.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>
9 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
10 + <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
11 +
12 + <!-- This site is optimized with the Yoast SEO plugin v24.3 - https://yoast.com/wordpress/plugins/seo/ -->
13 + <title>3½ à Louer à Sherbrooke - Secteur Université &amp; Mont-Bellevue</title>
14 + <meta name="description" content="Beau 3½ lumineux rénové à Sherbrooke, situé près de l&#039;Université et Mont-Bellevue. chauffé, eau chaude inclus, stationnement, urgence 24/7" />
15 + <link rel="canonical" href="https://immeublesalexcellence.com/appartements/3½-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/" />
16 + <meta property="og:locale" content="fr_FR" />
17 + <meta property="og:type" content="article" />
18 + <meta property="og:title" content="3½ à Louer à Sherbrooke - Secteur Université &amp; Mont-Bellevue" />
19 + <meta property="og:description" content="Beau 3½ lumineux rénové à Sherbrooke, situé près de l&#039;Université et Mont-Bellevue. chauffé, eau chaude inclus, stationnement, urgence 24/7" />
20 + <meta property="og:url" content="https://immeublesalexcellence.com/appartements/3½-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/" />
21 + <meta property="og:site_name" content="Immeubles Alexcellence" />
22 + <meta property="article:publisher" content="https://www.facebook.com/immeublesalexcellence" />
23 + <meta property="article:modified_time" content="2026-07-17T19:51:23+00:00" />
24 + <meta property="og:image" content="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1.jpg" />
25 + <meta property="og:image:width" content="1067" />
26 + <meta property="og:image:height" content="800" />
27 + <meta property="og:image:type" content="image/jpeg" />
28 + <meta name="twitter:card" content="summary_large_image" />
29 + <meta name="twitter:label1" content="Durée de lecture estimée" />
30 + <meta name="twitter:data1" content="2 minutes" />
31 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://immeublesalexcellence.com/appartements/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/","url":"https://immeublesalexcellence.com/appartements/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/","name":"3½ à Louer à Sherbrooke - Secteur Université & Mont-Bellevue","isPartOf":{"@id":"https://immeublesalexcellence.com/#website"},"primaryImageOfPage":{"@id":"https://immeublesalexcellence.com/appartements/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/#primaryimage"},"image":{"@id":"https://immeublesalexcellence.com/appartements/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/#primaryimage"},"thumbnailUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1.jpg","datePublished":"2025-06-11T15:50:29+00:00","dateModified":"2026-07-17T19:51:23+00:00","description":"Beau 3½ lumineux rénové à Sherbrooke, situé près de l'Université et Mont-Bellevue. chauffé, eau chaude inclus, stationnement, urgence 24/7","breadcrumb":{"@id":"https://immeublesalexcellence.com/appartements/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://immeublesalexcellence.com/appartements/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/appartements/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/#primaryimage","url":"https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1.jpg","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1.jpg","width":1067,"height":800},{"@type":"BreadcrumbList","@id":"https://immeublesalexcellence.com/appartements/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https://immeublesalexcellence.com/"},{"@type":"ListItem","position":2,"name":"Propriétés","item":"https://immeublesalexcellence.com/appartements/"},{"@type":"ListItem","position":3,"name":"3½ rénové à louer Secteur Université &amp; Mont-Bellevue, 875 rue Veilleux"}]},{"@type":"WebSite","@id":"https://immeublesalexcellence.com/#website","url":"https://immeublesalexcellence.com/","name":"Immeubles Alexcellence","description":"Appartement a louer Université Sherbrooke","publisher":{"@id":"https://immeublesalexcellence.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://immeublesalexcellence.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https://immeublesalexcellence.com/#organization","name":"Immeubles Alexcellence","url":"https://immeublesalexcellence.com/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/#/schema/logo/image/","url":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","width":436,"height":123,"caption":"Immeubles Alexcellence"},"image":{"@id":"https://immeublesalexcellence.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/immeublesalexcellence","https://www.instagram.com/immeublealexellence/"]}]}</script>
32 + <!-- / Yoast SEO plugin. -->
33 +
34 +
35 +<link rel='dns-prefetch' href='//www.google.com' />
36 +<link rel='dns-prefetch' href='//fonts.googleapis.com' />
37 +<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin />
38 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux" href="https://immeublesalexcellence.com/feed/" />
39 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux des commentaires" href="https://immeublesalexcellence.com/comments/feed/" />
40 +<script type="text/javascript">
41 +/* <![CDATA[ */
42 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/immeublesalexcellence.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.5"}};
43 +/*! This file is auto-generated */
44 +!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
45 +/* ]]> */
46 +</script>
47 +<style id='wp-emoji-styles-inline-css' type='text/css'>
48 +
49 + img.wp-smiley, img.emoji {
50 + display: inline !important;
51 + border: none !important;
52 + box-shadow: none !important;
53 + height: 1em !important;
54 + width: 1em !important;
55 + margin: 0 0.07em !important;
56 + vertical-align: -0.1em !important;
57 + background: none !important;
58 + padding: 0 !important;
59 + }
60 +</style>
61 +<link rel='stylesheet' id='wp-block-library-css' href='https://immeublesalexcellence.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.5' type='text/css' media='all' />
62 +<style id='classic-theme-styles-inline-css' type='text/css'>
63 +/*! This file is auto-generated */
64 +.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}
65 +</style>
66 +<style id='global-styles-inline-css' type='text/css'>
67 +: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,rgba(6,147,227,1) 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,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%,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 rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}: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;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.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;}
68 +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
69 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
70 +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
71 +</style>
72 +<link rel='stylesheet' id='elementor-frontend-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.27.1' type='text/css' media='all' />
73 +<link rel='stylesheet' id='elementor-post-6-css' href='https://immeublesalexcellence.com/wp-content/uploads/elementor/css/post-6.css?ver=1737736055' type='text/css' media='all' />
74 +<link rel='stylesheet' id='font-awesome-5-all-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.27.1' type='text/css' media='all' />
75 +<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.27.1' type='text/css' media='all' />
76 +<link rel='stylesheet' id='widget-text-editor-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.27.1' type='text/css' media='all' />
77 +<link rel='stylesheet' id='houzez-studio-css' href='https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/css/houzez-studio-public.css?ver=1.2.1' type='text/css' media='all' />
78 +<link rel='stylesheet' id='cmplz-general-css' href='https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/assets/css/cookieblocker.min.css?ver=1736710567' type='text/css' media='all' />
79 +<link rel='stylesheet' id='houzez-all-css-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/css/all-css.css?ver=3.4.4' type='text/css' media='all' />
80 +<link rel='stylesheet' id='houzez-style-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/style.css?ver=3.4.4' type='text/css' media='all' />
81 +<style id='houzez-style-inline-css' type='text/css'>
82 +
83 + @media (min-width: 1200px) {
84 + .container {
85 + max-width: 1310px;
86 + }
87 + }
88 + .status-color-21 {
89 + background-color: #45962e;
90 + }
91 +
92 + .status-color-199 {
93 + background-color: #595959;
94 + }
95 +
96 + body {
97 + font-family: Roboto;
98 + font-size: 15px;
99 + font-weight: 400;
100 + line-height: 25px;
101 + text-transform: none;
102 + }
103 + .main-nav,
104 + .dropdown-menu,
105 + .login-register,
106 + .btn.btn-create-listing,
107 + .logged-in-nav,
108 + .btn-phone-number {
109 + font-family: Roboto;
110 + font-size: 14px;
111 + font-weight: 500;
112 + text-align: left;
113 + text-transform: none;
114 + }
115 +
116 + .btn,
117 + .ele-btn,
118 + .houzez-search-button,
119 + .houzez-submit-button,
120 + .form-control,
121 + .bootstrap-select .text,
122 + .sort-by-title,
123 + .woocommerce ul.products li.product .button {
124 + font-family: Roboto;
125 + font-size: 15px;
126 + }
127 +
128 + h1, h2, h3, h4, h5, h6, .item-title {
129 + font-family: Roboto;
130 + font-weight: 500;
131 + text-transform: inherit;
132 + }
133 +
134 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
135 + font-weight: 500;
136 + text-transform: inherit;
137 + text-align: inherit;
138 + }
139 +
140 + .top-bar-wrap {
141 + font-family: Roboto;
142 + font-size: 13px;
143 + font-weight: 300;
144 + line-height: 25px;
145 + text-align: left;
146 + text-transform: none;
147 + }
148 + .footer-wrap {
149 + font-family: Roboto;
150 + font-size: 14px;
151 + font-weight: 300;
152 + line-height: 25px;
153 + text-align: left;
154 + text-transform: none;
155 + }
156 +
157 + .header-v1 .header-inner-wrap,
158 + .header-v1 .navbar-logged-in-wrap {
159 + line-height: 60px;
160 + height: 60px;
161 + }
162 + .header-v2 .header-top .navbar {
163 + height: 110px;
164 + }
165 +
166 + .header-v2 .header-bottom .header-inner-wrap,
167 + .header-v2 .header-bottom .navbar-logged-in-wrap {
168 + line-height: 54px;
169 + height: 54px;
170 + }
171 +
172 + .header-v3 .header-top .header-inner-wrap,
173 + .header-v3 .header-top .header-contact-wrap {
174 + height: 80px;
175 + line-height: 80px;
176 + }
177 + .header-v3 .header-bottom .header-inner-wrap,
178 + .header-v3 .header-bottom .navbar-logged-in-wrap {
179 + line-height: 54px;
180 + height: 54px;
181 + }
182 + .header-v4 .header-inner-wrap,
183 + .header-v4 .navbar-logged-in-wrap {
184 + line-height: 90px;
185 + height: 90px;
186 + }
187 + .header-v5 .header-top .header-inner-wrap,
188 + .header-v5 .header-top .navbar-logged-in-wrap {
189 + line-height: 110px;
190 + height: 110px;
191 + }
192 + .header-v5 .header-bottom .header-inner-wrap {
193 + line-height: 54px;
194 + height: 54px;
195 + }
196 + .header-v6 .header-inner-wrap,
197 + .header-v6 .navbar-logged-in-wrap {
198 + height: 60px;
199 + line-height: 60px;
200 + }
201 + @media (min-width: 1200px) {
202 + .header-v5 .header-top .container {
203 + max-width: 1170px;
204 + }
205 + }
206 +
207 + body,
208 + .main-wrap,
209 + .fw-property-documents-wrap h3 span,
210 + .fw-property-details-wrap h3 span {
211 + background-color: #f7f7f7;
212 + }
213 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
214 + background-color: #ffffff;
215 + }
216 +
217 + body,
218 + .form-control,
219 + .bootstrap-select .text,
220 + .item-title a,
221 + .listing-tabs .nav-tabs .nav-link,
222 + .item-wrap-v2 .item-amenities li span,
223 + .item-wrap-v2 .item-amenities li:before,
224 + .item-parallax-wrap .item-price-wrap,
225 + .list-view .item-body .item-price-wrap,
226 + .property-slider-item .item-price-wrap,
227 + .page-title-wrap .item-price-wrap,
228 + .agent-information .agent-phone span a,
229 + .property-overview-wrap ul li strong,
230 + .mobile-property-title .item-price-wrap .item-price,
231 + .fw-property-features-left li a,
232 + .lightbox-content-wrap .item-price-wrap,
233 + .blog-post-item-v1 .blog-post-title h3 a,
234 + .blog-post-content-widget h4 a,
235 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
236 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
237 + .agent-list-wrap .agent-list-content h2 a,
238 + .agent-list-wrap .agent-list-contact li a,
239 + .agent-contacts-wrap li a,
240 + .menu-edit-property li a,
241 + .statistic-referrals-list li a,
242 + .chart-nav .nav-pills .nav-link,
243 + .dashboard-table-properties td .property-payment-status,
244 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
245 + .payment-method-block .radio-tab .control-text,
246 + .post-title-wrap h2 a,
247 + .lead-nav-tab.nav-pills .nav-link,
248 + .deals-nav-tab.nav-pills .nav-link,
249 + .btn-light-grey-outlined:hover,
250 + button:not(.bs-placeholder) .filter-option-inner-inner,
251 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
252 + .products > .product > .item-body > a,
253 + .woocommerce ul.products li.product .price,
254 + .woocommerce div.product p.price,
255 + .woocommerce div.product span.price,
256 + .woocommerce #reviews #comments ol.commentlist li .meta,
257 + .woocommerce-MyAccount-navigation ul li a,
258 + .activitiy-item-close-button a,
259 + .property-section-wrap li a {
260 + color: #222222;
261 + }
262 +
263 +
264 +
265 + a,
266 + a:hover,
267 + a:active,
268 + a:focus,
269 + .primary-text,
270 + .btn-clear,
271 + .btn-apply,
272 + .btn-primary-outlined,
273 + .btn-primary-outlined:before,
274 + .item-title a:hover,
275 + .sort-by .bootstrap-select .bs-placeholder,
276 + .sort-by .bootstrap-select > .btn,
277 + .sort-by .bootstrap-select > .btn:active,
278 + .page-link,
279 + .page-link:hover,
280 + .accordion-title:before,
281 + .blog-post-content-widget h4 a:hover,
282 + .agent-list-wrap .agent-list-content h2 a:hover,
283 + .agent-list-wrap .agent-list-contact li a:hover,
284 + .agent-contacts-wrap li a:hover,
285 + .agent-nav-wrap .nav-pills .nav-link,
286 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
287 + .menu-edit-property li a.active,
288 + .menu-edit-property li a:hover,
289 + .dashboard-statistic-block h3 .fa,
290 + .statistic-referrals-list li a:hover,
291 + .chart-nav .nav-pills .nav-link.active,
292 + .board-message-icon-wrap.active,
293 + .post-title-wrap h2 a:hover,
294 + .listing-switch-view .switch-btn.active,
295 + .item-wrap-v6 .item-price-wrap,
296 + .listing-v6 .list-view .item-body .item-price-wrap,
297 + .woocommerce nav.woocommerce-pagination ul li a,
298 + .woocommerce nav.woocommerce-pagination ul li span,
299 + .woocommerce-MyAccount-navigation ul li a:hover,
300 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
301 + .property-schedule-tour-form-wrap .control:hover,
302 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
303 + .login-register .btn-icon-login-register + .dropdown-menu a,
304 + .activitiy-item-close-button a:hover,
305 + .property-section-wrap li a:hover,
306 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active,
307 + .property-lightbox-v2-sections-navigation .slick-prev,
308 + .property-lightbox-v2-sections-navigation .slick-next,
309 + .property-lightbox-v2-sections-navigation .slick-slide.current-section,
310 + .property-lightbox-v2-sections-navigation .nav-link.active,
311 + .agent-detail-page-v2 .listing-tabs .nav-link.active {
312 + color: #014582;
313 + }
314 +
315 + .agent-list-position a {
316 + color: #014582;
317 + }
318 +
319 + .control input:checked ~ .control__indicator,
320 + .top-banner-wrap .nav-pills .nav-link,
321 + .btn-primary-outlined:hover,
322 + .page-item.active .page-link,
323 + .slick-prev:hover,
324 + .slick-prev:focus,
325 + .slick-next:hover,
326 + .slick-next:focus,
327 + .mobile-property-tools .nav-pills .nav-link.active,
328 + .login-register-form .modal-header,
329 + .agent-nav-wrap .nav-pills .nav-link.active,
330 + .board-message-icon-wrap .notification-circle,
331 + .primary-label,
332 + .fc-event, .fc-event-dot,
333 + .compare-table .table-hover > tbody > tr:hover,
334 + .post-tag,
335 + .datepicker table tr td.active.active,
336 + .datepicker table tr td.active.disabled,
337 + .datepicker table tr td.active.disabled.active,
338 + .datepicker table tr td.active.disabled.disabled,
339 + .datepicker table tr td.active.disabled:active,
340 + .datepicker table tr td.active.disabled:hover,
341 + .datepicker table tr td.active.disabled:hover.active,
342 + .datepicker table tr td.active.disabled:hover.disabled,
343 + .datepicker table tr td.active.disabled:hover:active,
344 + .datepicker table tr td.active.disabled:hover:hover,
345 + .datepicker table tr td.active.disabled:hover[disabled],
346 + .datepicker table tr td.active.disabled[disabled],
347 + .datepicker table tr td.active:active,
348 + .datepicker table tr td.active:hover,
349 + .datepicker table tr td.active:hover.active,
350 + .datepicker table tr td.active:hover.disabled,
351 + .datepicker table tr td.active:hover:active,
352 + .datepicker table tr td.active:hover:hover,
353 + .datepicker table tr td.active:hover[disabled],
354 + .datepicker table tr td.active[disabled],
355 + .ui-slider-horizontal .ui-slider-range,
356 + .btn-bubble {
357 + background-color: #014582;
358 + }
359 +
360 + .control input:checked ~ .control__indicator,
361 + .btn-primary-outlined,
362 + .page-item.active .page-link,
363 + .mobile-property-tools .nav-pills .nav-link.active,
364 + .agent-nav-wrap .nav-pills .nav-link,
365 + .agent-nav-wrap .nav-pills .nav-link.active,
366 + .chart-nav .nav-pills .nav-link.active,
367 + .dashaboard-snake-nav .step-block.active,
368 + .fc-event,
369 + .fc-event-dot,
370 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
371 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
372 + border-color: #014582;
373 + }
374 +
375 + .slick-arrow:hover {
376 + background-color: rgba(36,52,140,0.52);
377 + }
378 +
379 + .slick-arrow {
380 + background-color: #014582;
381 + }
382 +
383 + .property-banner .nav-pills .nav-link.active {
384 + background-color: rgba(36,52,140,0.52) !important;
385 + }
386 +
387 + .property-navigation-wrap a.active {
388 + color: #014582;
389 + -webkit-box-shadow: inset 0 -3px #014582;
390 + box-shadow: inset 0 -3px #014582;
391 + }
392 +
393 + .btn-primary,
394 + .fc-button-primary,
395 + .woocommerce nav.woocommerce-pagination ul li a:focus,
396 + .woocommerce nav.woocommerce-pagination ul li a:hover,
397 + .woocommerce nav.woocommerce-pagination ul li span.current {
398 + color: #fff;
399 + background-color: #014582;
400 + border-color: #014582;
401 + }
402 + .btn-primary:focus, .btn-primary:focus:active,
403 + .fc-button-primary:focus,
404 + .fc-button-primary:focus:active {
405 + color: #fff;
406 + background-color: #014582;
407 + border-color: #014582;
408 + }
409 + .btn-primary:hover,
410 + .fc-button-primary:hover {
411 + color: #fff;
412 + background-color: #24348c;
413 + border-color: #24348c;
414 + }
415 + .btn-primary:active,
416 + .btn-primary:not(:disabled):not(:disabled):active,
417 + .fc-button-primary:active,
418 + .fc-button-primary:not(:disabled):not(:disabled):active {
419 + color: #fff;
420 + background-color: #24348c;
421 + border-color: #24348c;
422 + }
423 +
424 + .btn-secondary,
425 + .woocommerce span.onsale,
426 + .woocommerce ul.products li.product .button,
427 + .woocommerce #respond input#submit.alt,
428 + .woocommerce a.button.alt,
429 + .woocommerce button.button.alt,
430 + .woocommerce input.button.alt,
431 + .woocommerce #review_form #respond .form-submit input,
432 + .woocommerce #respond input#submit,
433 + .woocommerce a.button,
434 + .woocommerce button.button,
435 + .woocommerce input.button {
436 + color: #fff;
437 + background-color: #2ea7b2;
438 + border-color: #2ea7b2;
439 + }
440 + .woocommerce ul.products li.product .button:focus,
441 + .woocommerce ul.products li.product .button:active,
442 + .woocommerce #respond input#submit.alt:focus,
443 + .woocommerce a.button.alt:focus,
444 + .woocommerce button.button.alt:focus,
445 + .woocommerce input.button.alt:focus,
446 + .woocommerce #respond input#submit.alt:active,
447 + .woocommerce a.button.alt:active,
448 + .woocommerce button.button.alt:active,
449 + .woocommerce input.button.alt:active,
450 + .woocommerce #review_form #respond .form-submit input:focus,
451 + .woocommerce #review_form #respond .form-submit input:active,
452 + .woocommerce #respond input#submit:active,
453 + .woocommerce a.button:active,
454 + .woocommerce button.button:active,
455 + .woocommerce input.button:active,
456 + .woocommerce #respond input#submit:focus,
457 + .woocommerce a.button:focus,
458 + .woocommerce button.button:focus,
459 + .woocommerce input.button:focus {
460 + color: #fff;
461 + background-color: #2ea7b2;
462 + border-color: #2ea7b2;
463 + }
464 + .btn-secondary:hover,
465 + .woocommerce ul.products li.product .button:hover,
466 + .woocommerce #respond input#submit.alt:hover,
467 + .woocommerce a.button.alt:hover,
468 + .woocommerce button.button.alt:hover,
469 + .woocommerce input.button.alt:hover,
470 + .woocommerce #review_form #respond .form-submit input:hover,
471 + .woocommerce #respond input#submit:hover,
472 + .woocommerce a.button:hover,
473 + .woocommerce button.button:hover,
474 + .woocommerce input.button:hover {
475 + color: #fff;
476 + background-color: #333333;
477 + border-color: #333333;
478 + }
479 + .btn-secondary:active,
480 + .btn-secondary:not(:disabled):not(:disabled):active {
481 + color: #fff;
482 + background-color: #333333;
483 + border-color: #333333;
484 + }
485 +
486 + .btn-primary-outlined {
487 + color: #014582;
488 + background-color: transparent;
489 + border-color: #014582;
490 + }
491 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
492 + color: #014582;
493 + background-color: transparent;
494 + border-color: #014582;
495 + }
496 + .btn-primary-outlined:hover {
497 + color: #fff;
498 + background-color: #24348c;
499 + border-color: #24348c;
500 + }
501 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
502 + color: #014582;
503 + background-color: rgba(26, 26, 26, 0);
504 + border-color: #24348c;
505 + }
506 +
507 + .btn-secondary-outlined {
508 + color: #2ea7b2;
509 + background-color: transparent;
510 + border-color: #2ea7b2;
511 + }
512 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
513 + color: #2ea7b2;
514 + background-color: transparent;
515 + border-color: #2ea7b2;
516 + }
517 + .btn-secondary-outlined:hover {
518 + color: #fff;
519 + background-color: #333333;
520 + border-color: #333333;
521 + }
522 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
523 + color: #2ea7b2;
524 + background-color: rgba(26, 26, 26, 0);
525 + border-color: #333333;
526 + }
527 +
528 + .btn-call {
529 + color: #2ea7b2;
530 + background-color: transparent;
531 + border-color: #2ea7b2;
532 + }
533 + .btn-call:focus, .btn-call:focus:active {
534 + color: #2ea7b2;
535 + background-color: transparent;
536 + border-color: #2ea7b2;
537 + }
538 + .btn-call:hover {
539 + color: #2ea7b2;
540 + background-color: rgba(26, 26, 26, 0);
541 + border-color: #333333;
542 + }
543 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
544 + color: #2ea7b2;
545 + background-color: rgba(26, 26, 26, 0);
546 + border-color: #333333;
547 + }
548 + .icon-delete .btn-loader:after{
549 + border-color: #014582 transparent #014582 transparent
550 + }
551 +
552 + .header-v1 {
553 + background-color: #004274;
554 + border-bottom: 1px solid #004274;
555 + }
556 +
557 + .header-v1 a.nav-link {
558 + color: #ffffff;
559 + }
560 +
561 + .header-v1 a.nav-link:hover,
562 + .header-v1 a.nav-link:active {
563 + color: #00aeff;
564 + background-color: rgba(255,255,255,0.2);
565 + }
566 + .header-desktop .main-nav .nav-link {
567 + letter-spacing: 0.0px;
568 + }
569 +
570 + .header-v2 .header-top,
571 + .header-v5 .header-top,
572 + .header-v2 .header-contact-wrap {
573 + background-color: #ffffff;
574 + }
575 +
576 + .header-v2 .header-bottom,
577 + .header-v5 .header-bottom {
578 + background-color: #004274;
579 + }
580 +
581 + .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 {
582 + color: #004274;
583 + }
584 +
585 + .header-v2 .header-contact-left {
586 + color: #004274;
587 + }
588 +
589 + .header-v2 .header-bottom,
590 + .header-v2 .navbar-nav > li,
591 + .header-v2 .navbar-nav > li:first-of-type,
592 + .header-v5 .header-bottom,
593 + .header-v5 .navbar-nav > li,
594 + .header-v5 .navbar-nav > li:first-of-type {
595 + border-color: rgba(255,255,255,0.2);
596 + }
597 +
598 + .header-v2 a.nav-link,
599 + .header-v5 a.nav-link {
600 + color: #ffffff;
601 + }
602 +
603 + .header-v2 a.nav-link:hover,
604 + .header-v2 a.nav-link:active,
605 + .header-v5 a.nav-link:hover,
606 + .header-v5 a.nav-link:active {
607 + color: #00aeff;
608 + background-color: rgba(255,255,255,0.2);
609 + }
610 +
611 + .header-v2 .header-contact-right a:hover,
612 + .header-v2 .header-contact-right a:active,
613 + .header-v3 .header-contact-right a:hover,
614 + .header-v3 .header-contact-right a:active {
615 + background-color: transparent;
616 + }
617 +
618 + .header-v2 .header-social-icons a,
619 + .header-v5 .header-social-icons a {
620 + color: #004274;
621 + }
622 +
623 + .header-v3 .header-top {
624 + background-color: #ffffff;
625 + }
626 +
627 + .header-v3 .header-bottom {
628 + background-color: #004272;
629 + }
630 +
631 + .header-v3 .header-contact,
632 + .header-v3-mobile {
633 + background-color: #00aeef;
634 + color: #ffffff;
635 + }
636 +
637 + .header-v3 .header-bottom,
638 + .header-v3 .login-register,
639 + .header-v3 .navbar-nav > li,
640 + .header-v3 .navbar-nav > li:first-of-type {
641 + border-color: ;
642 + }
643 +
644 + .header-v3 a.nav-link,
645 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
646 + color: #003a6b;
647 + }
648 +
649 + .header-v3 a.nav-link:hover,
650 + .header-v3 a.nav-link:active {
651 + color: #00aeff;
652 + background-color: rgba(26,94,158,1);
653 + }
654 +
655 + .header-v3 .header-social-icons a {
656 + color: #FFFFFF;
657 + }
658 +
659 + .header-v4 {
660 + background-color: #000000;
661 + }
662 +
663 + .header-v4 a.nav-link {
664 + color: #ffffff;
665 + }
666 +
667 + .header-v4 a.nav-link:hover,
668 + .header-v4 a.nav-link:active {
669 + color: #00aeff;
670 + background-color: rgba(0, 174, 255, 0.1);
671 + }
672 +
673 + .header-v6 .header-top {
674 + background-color: #00AEEF;
675 + }
676 +
677 + .header-v6 a.nav-link {
678 + color: #FFFFFF;
679 + }
680 +
681 + .header-v6 a.nav-link:hover,
682 + .header-v6 a.nav-link:active {
683 + color: #00aeff;
684 + background-color: rgba(255,255,255,0.2);
685 + }
686 +
687 + .header-v6 .header-social-icons a {
688 + color: #FFFFFF;
689 + }
690 +
691 + .header-mobile {
692 + background-color: #ffffff;
693 + }
694 + .header-mobile .toggle-button-left,
695 + .header-mobile .toggle-button-right {
696 + color: #0b0049;
697 + }
698 +
699 + .nav-mobile .logged-in-nav a,
700 + .nav-mobile .main-nav,
701 + .nav-mobile .navi-login-register {
702 + background-color: #ffffff;
703 + }
704 +
705 + .nav-mobile .logged-in-nav a,
706 + .nav-mobile .main-nav .nav-item .nav-item a,
707 + .nav-mobile .main-nav .nav-item a,
708 + .navi-login-register .main-nav .nav-item a {
709 + color: #000000;
710 + border-bottom: 1px solid #000000;
711 + background-color: #ffffff;
712 + }
713 +
714 + .nav-mobile .btn-create-listing,
715 + .navi-login-register .btn-create-listing {
716 + color: #fff;
717 + border: 1px solid #014582;
718 + background-color: #014582;
719 + }
720 +
721 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
722 + .navi-login-register .btn-create-listing:hover,
723 + .navi-login-register .btn-create-listing:active {
724 + color: #fff;
725 + border: 1px solid #014582;
726 + background-color: rgba(0, 174, 255, 0.65);
727 + }
728 +
729 + .header-transparent-wrap .header-v4 {
730 + background-color: transparent;
731 + border-bottom: 1px none rgba(255,255,255,0.3);
732 + }
733 +
734 + .header-transparent-wrap .header-v4 a {
735 + color: #ffffff;
736 + }
737 +
738 + .header-transparent-wrap .header-v4 a:hover,
739 + .header-transparent-wrap .header-v4 a:active {
740 + color: #4aa7e1;
741 + background-color: rgba(255, 255, 255, 0.1);
742 + }
743 +
744 + .main-nav .navbar-nav .nav-item .dropdown-menu,
745 + .login-register .login-register-nav li .dropdown-menu {
746 + background-color: rgba(255,255,255,0.95);
747 + }
748 +
749 + .login-register .login-register-nav li .dropdown-menu:before {
750 + border-left-color: rgba(255,255,255,0.95);
751 + border-top-color: rgba(255,255,255,0.95);
752 + }
753 +
754 + .main-nav .navbar-nav .nav-item .nav-item a,
755 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
756 + color: #888888;
757 + border-bottom: 1px solid #e6e6e6;
758 + }
759 +
760 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
761 + .main-nav .navbar-nav .nav-item .nav-item a:active,
762 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
763 + color: #4aa7e1;
764 + }
765 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
766 + .main-nav .navbar-nav .nav-item .nav-item a:active,
767 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
768 + background-color: rgba(0, 174, 255, 0.1);
769 + }
770 +
771 + .header-main-wrap .btn-create-listing {
772 + color: #4aa7e1;
773 + border: 1px solid #4aa7e1;
774 + background-color: #ffffff;
775 + }
776 +
777 + .header-main-wrap .btn-create-listing:hover,
778 + .header-main-wrap .btn-create-listing:active {
779 + color: rgba(255,255,255,1);
780 + border: 1px solid #4aa7e1;
781 + background-color: rgba(74,167,225,1);
782 + }
783 +
784 + .header-transparent-wrap .header-v4 .btn-create-listing {
785 + color: #ffffff;
786 + border: 1px solid #ffffff;
787 + background-color: rgba(255,255,255,0.2);
788 + }
789 +
790 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
791 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
792 + color: rgba(255,255,255,1);
793 + border: 1px solid #4aa7e1;
794 + background-color: rgba(74,167,225,1);
795 + }
796 +
797 + .header-transparent-wrap .logged-in-nav a,
798 + .logged-in-nav a {
799 + color: #15268c;
800 + border-color: #e6e6e6;
801 + background-color: #FFFFFF;
802 + }
803 +
804 + .header-transparent-wrap .logged-in-nav a:hover,
805 + .header-transparent-wrap .logged-in-nav a:active,
806 + .logged-in-nav a:hover,
807 + .logged-in-nav a:active {
808 + color: #17298c;
809 + background-color: rgba(204,204,204,0.15);
810 + border-color: #e6e6e6;
811 + }
812 +
813 + .form-control::-webkit-input-placeholder,
814 + .search-banner-wrap ::-webkit-input-placeholder,
815 + .advanced-search ::-webkit-input-placeholder,
816 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
817 + .overlay-search-advanced-module ::-webkit-input-placeholder {
818 + color: #a1a7a8;
819 + }
820 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
821 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
822 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
823 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
824 + color: #a1a7a8;
825 + }
826 + .form-control::placeholder,
827 + .search-banner-wrap ::-webkit-input-placeholder,
828 + .advanced-search ::-webkit-input-placeholder,
829 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
830 + .overlay-search-advanced-module ::-webkit-input-placeholder {
831 + color: #a1a7a8;
832 + }
833 +
834 + .search-banner-wrap ::-moz-placeholder,
835 + .advanced-search ::-moz-placeholder,
836 + .advanced-search-banner-wrap ::-moz-placeholder,
837 + .overlay-search-advanced-module ::-moz-placeholder {
838 + color: #a1a7a8;
839 + }
840 +
841 + .search-banner-wrap :-ms-input-placeholder,
842 + .advanced-search :-ms-input-placeholder,
843 + .advanced-search-banner-wrap ::-ms-input-placeholder,
844 + .overlay-search-advanced-module ::-ms-input-placeholder {
845 + color: #a1a7a8;
846 + }
847 +
848 + .search-banner-wrap :-moz-placeholder,
849 + .advanced-search :-moz-placeholder,
850 + .advanced-search-banner-wrap :-moz-placeholder,
851 + .overlay-search-advanced-module :-moz-placeholder {
852 + color: #a1a7a8;
853 + }
854 +
855 + .advanced-search .form-control,
856 + .advanced-search .bootstrap-select > .btn,
857 + .location-trigger,
858 + .vertical-search-wrap .form-control,
859 + .vertical-search-wrap .bootstrap-select > .btn,
860 + .step-search-wrap .form-control,
861 + .step-search-wrap .bootstrap-select > .btn,
862 + .advanced-search-banner-wrap .form-control,
863 + .advanced-search-banner-wrap .bootstrap-select > .btn,
864 + .search-banner-wrap .form-control,
865 + .search-banner-wrap .bootstrap-select > .btn,
866 + .overlay-search-advanced-module .form-control,
867 + .overlay-search-advanced-module .bootstrap-select > .btn,
868 + .advanced-search-v2 .advanced-search-btn,
869 + .advanced-search-v2 .advanced-search-btn:hover {
870 + border-color: #cccccc;
871 + }
872 +
873 + .advanced-search-nav,
874 + .search-expandable,
875 + .overlay-search-advanced-module {
876 + background-color: #FFFFFF;
877 + }
878 + .btn-search {
879 + color: #ffffff;
880 + background-color: #4aa7e1;
881 + border-color: #4aa7e1;
882 + }
883 + .btn-search:hover, .btn-search:active {
884 + color: #ffffff;
885 + background-color: #24348c;
886 + border-color: #24348c;
887 + }
888 + .advanced-search-btn {
889 + color: #666666;
890 + background-color: #ffffff;
891 + border-color: #dce0e0;
892 + }
893 + .advanced-search-btn:hover, .advanced-search-btn:active {
894 + color: #000000;
895 + background-color: #ffffff;
896 + border-color: #dce0e0;
897 + }
898 + .advanced-search-btn:focus {
899 + color: #666666;
900 + background-color: #ffffff;
901 + border-color: #dce0e0;
902 + }
903 + .search-expandable-label {
904 + color: #ffffff;
905 + background-color: #4aa7e1;
906 + }
907 + .advanced-search-nav {
908 + padding-top: 10px;
909 + padding-bottom: 10px;
910 + }
911 + .features-list-wrap .control--checkbox,
912 + .features-list-wrap .control--radio,
913 + .range-text,
914 + .features-list-wrap .control--checkbox,
915 + .features-list-wrap .btn-features-list,
916 + .overlay-search-advanced-module .search-title,
917 + .overlay-search-advanced-module .overlay-search-module-close {
918 + color: #222222;
919 + }
920 + .advanced-search-half-map {
921 + background-color: #FFFFFF;
922 + }
923 + .advanced-search-half-map .range-text,
924 + .advanced-search-half-map .features-list-wrap .control--checkbox,
925 + .advanced-search-half-map .features-list-wrap .btn-features-list {
926 + color: #222222;
927 + }
928 +
929 + .save-search-btn {
930 + border-color: #4aa7e1 ;
931 + background-color: #4aa7e1 ;
932 + color: #ffffff ;
933 + }
934 + .save-search-btn:hover,
935 + .save-search-btn:active {
936 + border-color: #4aa7e1;
937 + background-color: #4aa7e1 ;
938 + color: #ffffff ;
939 + }
940 + .label-featured {
941 + background-color: transparent;
942 + color: #ffffff;
943 + }
944 +
945 + .dashboard-side-wrap {
946 + background-color: #24348c;
947 + }
948 +
949 + .side-menu a {
950 + color: #ffffff;
951 + }
952 +
953 + .side-menu a.active,
954 + .side-menu .side-menu-parent-selected > a,
955 + .side-menu-dropdown a,
956 + .side-menu a:hover {
957 + color: #4aa7e1;
958 + }
959 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
960 + color: #4aa7e1
961 + }
962 +
963 + .detail-wrap {
964 + background-color: rgba(217,217,217,0.1);
965 + border-color: #d6d6d6;
966 + }
967 + .top-bar-wrap,
968 + .top-bar-wrap .dropdown-menu,
969 + .switcher-wrap .dropdown-menu {
970 + background-color: #262626;
971 + }
972 + .top-bar-wrap a,
973 + .top-bar-contact,
974 + .top-bar-slogan,
975 + .top-bar-wrap .btn,
976 + .top-bar-wrap .dropdown-menu,
977 + .switcher-wrap .dropdown-menu,
978 + .top-bar-wrap .navbar-toggler {
979 + color: #ffffff;
980 + }
981 + .top-bar-wrap a:hover,
982 + .top-bar-wrap a:active,
983 + .top-bar-wrap .btn:hover,
984 + .top-bar-wrap .btn:active,
985 + .top-bar-wrap .dropdown-menu li:hover,
986 + .top-bar-wrap .dropdown-menu li:active,
987 + .switcher-wrap .dropdown-menu li:hover,
988 + .switcher-wrap .dropdown-menu li:active {
989 + color: rgba(74,167,225,0.59);
990 + }
991 + .class-energy-indicator:nth-child(1) {
992 + background-color: #33a357;
993 + }
994 + .class-energy-indicator:nth-child(2) {
995 + background-color: #79b752;
996 + }
997 + .class-energy-indicator:nth-child(3) {
998 + background-color: #c3d545;
999 + }
1000 + .class-energy-indicator:nth-child(4) {
1001 + background-color: #fff12c;
1002 + }
1003 + .class-energy-indicator:nth-child(5) {
1004 + background-color: #edb731;
1005 + }
1006 + .class-energy-indicator:nth-child(6) {
1007 + background-color: #d66f2c;
1008 + }
1009 + .class-energy-indicator:nth-child(7) {
1010 + background-color: #cc232a;
1011 + }
1012 + .class-energy-indicator:nth-child(8) {
1013 + background-color: #cc232a;
1014 + }
1015 + .class-energy-indicator:nth-child(9) {
1016 + background-color: #cc232a;
1017 + }
1018 + .class-energy-indicator:nth-child(10) {
1019 + background-color: #cc232a;
1020 + }
1021 +
1022 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#24348c }
1023 + .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 }
1024 +
1025 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#4aa7e1 }
1026 +
1027 + .footer-top-wrap {
1028 + background-color: #181818;
1029 + }
1030 +
1031 + .footer-bottom-wrap {
1032 + background-color: #000000;
1033 + }
1034 +
1035 + .footer-top-wrap,
1036 + .footer-top-wrap a,
1037 + .footer-bottom-wrap,
1038 + .footer-bottom-wrap a,
1039 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
1040 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
1041 + .footer-top-wrap .blog-post-content-widget h4 a,
1042 + .footer-top-wrap .blog-post-content-widget,
1043 + .footer-top-wrap .form-tools .control,
1044 + .footer-top-wrap .slick-dots li.slick-active button:before,
1045 + .footer-top-wrap .slick-dots li button::before,
1046 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
1047 + color: #ffffff;
1048 + }
1049 +
1050 + .footer-top-wrap a:hover,
1051 + .footer-bottom-wrap a:hover,
1052 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
1053 + color: rgba(36,52,140,1);
1054 + }
1055 + .houzez-osm-cluster {
1056 + background-image: url(https://immeublesalexcellence.com/wp-content/themes/houzez/img/map/cluster-icon.png);
1057 + text-align: center;
1058 + color: #fff;
1059 + width: 48px;
1060 + height: 48px;
1061 + line-height: 48px;
1062 + }
1063 + section.top-banner-wrap.slider-revolution-wrap {
1064 + height: auto;
1065 +}
1066 +.label-status {
1067 + font-size: 14px;
1068 + text-transform: uppercase; /* Optionnel : Met les étiquettes en majuscules */
1069 +}
1070 +.hz-label {
1071 + font-size: 14px; /* Ajustez la taille selon vos besoins */
1072 + font-weight: bold; /* Rend le texte en gras */
1073 + color: #ffffff; /* Couleur du texte */
1074 + background-color: #166584; /* Couleur de fond */
1075 + padding: 5px 10px; /* Espacement interne */
1076 + border-radius: 3px; /* Coins arrondis */
1077 +}
1078 +</style>
1079 +<link rel='stylesheet' id='leaflet-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/js//vendors/leaflet/leaflet.css?ver=1.9.3' type='text/css' media='all' />
1080 +<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /></noscript><link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap&#038;ver=6.7.5' type='text/css' media='all' />
1081 +<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.27.1" id="font-awesome-4-shim-js"></script>
1082 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
1083 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
1084 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/js/houzez-studio-public.js?ver=1.2.1" id="houzez-studio-js"></script>
1085 +<link rel="https://api.w.org/" href="https://immeublesalexcellence.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://immeublesalexcellence.com/wp-json/wp/v2/properties/3205" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://immeublesalexcellence.com/xmlrpc.php?rsd" />
1086 +<meta name="generator" content="WordPress 6.7.5" />
1087 +<link rel='shortlink' href='https://immeublesalexcellence.com/?p=3205' />
1088 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F" />
1089 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&#038;format=xml" />
1090 +<meta name="generator" content="Redux 4.5.6" /> <style>.cmplz-hidden {
1091 + display: none !important;
1092 + }</style><meta name="generator" content="Elementor 3.27.1; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
1093 + <style>
1094 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1095 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1096 + background-image: none !important;
1097 + }
1098 + @media screen and (max-height: 1024px) {
1099 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1100 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1101 + background-image: none !important;
1102 + }
1103 + }
1104 + @media screen and (max-height: 640px) {
1105 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1106 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1107 + background-image: none !important;
1108 + }
1109 + }
1110 + </style>
1111 + <meta name="generator" content="Powered by Slider Revolution 6.7.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
1112 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-32x32.png" sizes="32x32" />
1113 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-192x192.png" sizes="192x192" />
1114 +<link rel="apple-touch-icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-180x180.png" />
1115 +<meta name="msapplication-TileImage" content="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-270x270.png" />
1116 +<script>function setREVStartSize(e){
1117 + //window.requestAnimationFrame(function() {
1118 + window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
1119 + window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
1120 + try {
1121 + var pw = document.getElementById(e.c).parentNode.offsetWidth,
1122 + newh;
1123 + pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw;
1124 + e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
1125 + e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
1126 + e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
1127 + e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
1128 + e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
1129 + e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
1130 + e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
1131 + if(e.layout==="fullscreen" || e.l==="fullscreen")
1132 + newh = Math.max(e.mh,window.RSIH);
1133 + else{
1134 + e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
1135 + for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
1136 + e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
1137 + e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
1138 + for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
1139 +
1140 + var nl = new Array(e.rl.length),
1141 + ix = 0,
1142 + sl;
1143 + e.tabw = e.tabhide>=pw ? 0 : e.tabw;
1144 + e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
1145 + e.tabh = e.tabhide>=pw ? 0 : e.tabh;
1146 + e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
1147 + for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
1148 + sl = nl[0];
1149 + for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
1150 + var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
1151 + newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
1152 + }
1153 + var el = document.getElementById(e.c);
1154 + if (el!==null && el) el.style.height = newh+"px";
1155 + el = document.getElementById(e.c+"_wrapper");
1156 + if (el!==null && el) {
1157 + el.style.height = newh+"px";
1158 + el.style.display = "block";
1159 + }
1160 + } catch(e){
1161 + console.log("Failure at Presize of Slider:" + e)
1162 + }
1163 + //});
1164 + };</script>
1165 +</head>
1166 +
1167 +<body data-cmplz=2 class="property-template-default single single-property postid-3205 houzez-theme houzez-footer-position transparent- houzez-header- elementor-default elementor-kit-6">
1168 +
1169 +
1170 + <div class="nav-mobile nav-mobile-js">
1171 + <div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile">
1172 + <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://immeublesalexcellence.com/">Accueil</a> </li>
1173 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1174 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1175 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1176 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1177 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1178 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1179 +</ul> </div><!-- main-nav -->
1180 + <nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user">
1181 +
1182 +
1183 +
1184 + </nav><!-- .navi -->
1185 +
1186 +
1187 +
1188 +</div><!-- nav-mobile -->
1189 + <main id="main-wrap" class="main-wrap main-wrap-js">
1190 +
1191 + <header class="header-main-wrap ">
1192 + <div class="top-bar-wrap ">
1193 + <div class="container">
1194 + <div class="d-flex justify-content-between">
1195 + <div class="top-bar-left-wrap">
1196 + <div class="header-social-icons">
1197 + <ul class="list-inline">
1198 +
1199 + <li class="list-inline-item">
1200 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1201 + <i class="houzez-icon icon-social-media-facebook"></i>
1202 + </a>
1203 + </li>
1204 +
1205 +
1206 +
1207 +
1208 +
1209 +
1210 +
1211 +
1212 + <li class="list-inline-item">
1213 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1214 + <i class="houzez-icon icon-social-instagram"></i>
1215 + </a>
1216 + </li>
1217 +
1218 +
1219 +
1220 +
1221 + </ul>
1222 +</div><!-- .header-social-icons -->
1223 + </div><!-- top-bar-left-wrap -->
1224 +
1225 + <div class="top-bar-right-wrap">
1226 + <div class="top-bar-contact">
1227 +
1228 + </div><!-- top-bar-contact --> </div><!-- top-bar-right-wrap -->
1229 + </div><!-- d-flex -->
1230 + </div><!-- container -->
1231 +</div><!-- top-bar-wrap --><div class="header-desktop header-v2">
1232 + <div class="header-top">
1233 + <div class="container">
1234 + <div class="header-inner-wrap">
1235 + <div class="navbar d-flex align-items-center">
1236 +
1237 +
1238 + <div class="logo logo-desktop">
1239 + <a href="https://immeublesalexcellence.com/">
1240 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="66,5px" width="218px" alt="logo">
1241 + </a>
1242 + </div>
1243 +
1244 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1245 +
1246 +
1247 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1248 + <div class="header-contact-left">
1249 + <i class="houzez-icon icon-phone ml-1"></i>
1250 + </div><!-- header-contact-left -->
1251 + <div class="header-contact-right">
1252 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1253 + <div><a href="mailto:"></a></div>
1254 + </div><!-- .header-contact-right -->
1255 + </div><!-- .header-contact -->
1256 +
1257 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1258 + <div class="header-contact-left">
1259 + <i class="houzez-icon icon-pin ml-1"></i>
1260 + </div><!-- header-contact-left -->
1261 + <div class="header-contact-right">
1262 + <div>1025, rue des Seigneurs, #301</div>
1263 + <div>Sherbrooke (Québec) J1H 5V3</div>
1264 + </div><!-- .header-contact-right -->
1265 + </div><!-- .header-contact -->
1266 +
1267 +
1268 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1269 + <div class="header-contact-left">
1270 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1271 + </div><!-- header-contact-left -->
1272 + <div class="header-contact-right">
1273 + <div>8 h 30 à 16 h 30</div>
1274 + <div>Lundi au jeudi</div>
1275 + </div><!-- .header-contact-right -->
1276 + </div><!-- .header-contact -->
1277 +
1278 +
1279 + <div class="header-contact header-contact-4 d-flex align-items-center">
1280 + <div class="header-social-icons">
1281 + <ul class="list-inline">
1282 +
1283 + <li class="list-inline-item">
1284 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1285 + <i class="houzez-icon icon-social-media-facebook"></i>
1286 + </a>
1287 + </li>
1288 +
1289 +
1290 +
1291 +
1292 +
1293 +
1294 +
1295 +
1296 + <li class="list-inline-item">
1297 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1298 + <i class="houzez-icon icon-social-instagram"></i>
1299 + </a>
1300 + </li>
1301 +
1302 +
1303 +
1304 +
1305 + </ul>
1306 +</div><!-- .header-social-icons -->
1307 + </div><!-- .header-contact -->
1308 +</div><!-- .header-contact-wrap -->
1309 +
1310 +
1311 + </div><!-- navbar -->
1312 + </div>
1313 + </div>
1314 + </div><!-- .header-top -->
1315 + <div id="header-section" class="header-bottom" data-sticky="1">
1316 + <div class="container">
1317 + <div class="header-inner-wrap">
1318 + <div class="navbar d-flex align-items-center">
1319 +
1320 + <nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1">
1321 + <ul id="main-nav" class="navbar-nav "><li id="menu-item-1535" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home nav-item menu-item-1535 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/">Accueil</a> </li>
1322 +<li id="menu-item-1809" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1809 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1323 +<li id="menu-item-1771" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1771 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1324 +<li id="menu-item-2352" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2352 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1325 +<li id="menu-item-2432" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2432 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1326 +<li id="menu-item-2426" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2426 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1327 +<li id="menu-item-2466" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2466 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1328 +</ul> </nav><!-- main-nav -->
1329 +
1330 + <div class="login-register on-hover-menu">
1331 + <ul class="login-register-nav dropdown d-flex align-items-center">
1332 +
1333 +
1334 +
1335 +
1336 +
1337 +
1338 + </ul>
1339 +</div>
1340 + </div><!-- navbar -->
1341 + </div>
1342 + </div>
1343 + </div><!-- .header-bottom -->
1344 +</div><!-- .header-v2 -->
1345 +
1346 +<div class="header-v2 header-v2-mobile">
1347 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1348 +
1349 +
1350 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1351 + <div class="header-contact-left">
1352 + <i class="houzez-icon icon-phone ml-1"></i>
1353 + </div><!-- header-contact-left -->
1354 + <div class="header-contact-right">
1355 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1356 + <div><a href="mailto:"></a></div>
1357 + </div><!-- .header-contact-right -->
1358 + </div><!-- .header-contact -->
1359 +
1360 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1361 + <div class="header-contact-left">
1362 + <i class="houzez-icon icon-pin ml-1"></i>
1363 + </div><!-- header-contact-left -->
1364 + <div class="header-contact-right">
1365 + <div>1025, rue des Seigneurs, #301</div>
1366 + <div>Sherbrooke (Québec) J1H 5V3</div>
1367 + </div><!-- .header-contact-right -->
1368 + </div><!-- .header-contact -->
1369 +
1370 +
1371 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1372 + <div class="header-contact-left">
1373 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1374 + </div><!-- header-contact-left -->
1375 + <div class="header-contact-right">
1376 + <div>8 h 30 à 16 h 30</div>
1377 + <div>Lundi au jeudi</div>
1378 + </div><!-- .header-contact-right -->
1379 + </div><!-- .header-contact -->
1380 +
1381 +
1382 + <div class="header-contact header-contact-4 d-flex align-items-center">
1383 + <div class="header-social-icons">
1384 + <ul class="list-inline">
1385 +
1386 + <li class="list-inline-item">
1387 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1388 + <i class="houzez-icon icon-social-media-facebook"></i>
1389 + </a>
1390 + </li>
1391 +
1392 +
1393 +
1394 +
1395 +
1396 +
1397 +
1398 +
1399 + <li class="list-inline-item">
1400 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1401 + <i class="houzez-icon icon-social-instagram"></i>
1402 + </a>
1403 + </li>
1404 +
1405 +
1406 +
1407 +
1408 + </ul>
1409 +</div><!-- .header-social-icons -->
1410 + </div><!-- .header-contact -->
1411 +</div><!-- .header-contact-wrap -->
1412 +
1413 +
1414 +
1415 +</div><!-- header-v2-mobile --><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky="">
1416 + <div class="header-mobile-left">
1417 + <button class="btn toggle-button-left">
1418 + <i class="houzez-icon icon-navigation-menu"></i>
1419 + </button><!-- toggle-button-left -->
1420 + </div><!-- .header-mobile-left -->
1421 + <div class="header-mobile-center flex-grow-1">
1422 + <div class="logo logo-mobile">
1423 + <a href="https://immeublesalexcellence.com/">
1424 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="39" width="127" alt="Mobile logo">
1425 + </a>
1426 +</div> </div>
1427 +
1428 + <div class="header-mobile-right">
1429 + </div><!-- .header-mobile-right -->
1430 +
1431 +</div><!-- header-mobile --></header><!-- .header-main-wrap -->
1432 +
1433 + <section class="content-wrap property-wrap property-detail-v6 ">
1434 + <div class="property-navigation-wrap">
1435 + <div class="container-fluid">
1436 + <ul class="property-navigation list-unstyled d-flex justify-content-between">
1437 + <li class="property-navigation-item">
1438 + <a class="back-top" href="#main-wrap">
1439 + <i class="houzez-icon icon-arrow-button-circle-up"></i>
1440 + </a>
1441 + </li>
1442 + <li class="property-navigation-item">
1443 + <a class="target" href="#property-description-wrap">Description du loyer</a>
1444 + </li>
1445 + </ul>
1446 + </div><!-- container -->
1447 +</div><!-- property-navigation-wrap -->
1448 +<div class="page-title-wrap">
1449 + <div class="container">
1450 + <div class="d-flex align-items-center">
1451 +
1452 +<div class="breadcrumb-wrap">
1453 + <nav>
1454 + <ol class="breadcrumb"><li class="breadcrumb-item breadcrumb-item-home"><i class="houzez-icon icon-house"></i><a href="https://immeublesalexcellence.com/">Accueil</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/"> 1er janvier 2027</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/a-louer/"> À LOUER</a></li><li class="breadcrumb-item active">3½ rénové à louer Secteur Université &amp; Mont-Bellevue, 875 rue Veilleux</li></ol> </nav>
1455 +</div><!-- breadcrumb-wrap --> <ul class="item-tools">
1456 +
1457 + <li class="item-tool houzez-favorite">
1458 + <span class="add-favorite-js item-tool-favorite" data-listid="3205">
1459 + <i class="houzez-icon icon-love-it "></i>
1460 + </span><!-- item-tool-favorite -->
1461 + </li><!-- item-tool -->
1462 +
1463 + <li class="item-tool houzez-share">
1464 + <span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1465 + <i class="houzez-icon icon-share"></i>
1466 + </span><!-- item-tool-favorite -->
1467 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1468 +
1469 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F">
1470 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1471 +
1472 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F06%2Floyer-3demi-etudiant-Sherbrooke-1-1024x768.jpg&amp;description=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1473 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1474 +
1475 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&amp;t=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1476 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1477 +</a>
1478 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1479 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1480 +</a>
1481 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&title=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1482 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1483 +</a>
1484 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=3½ rénové à louer Secteur Université &amp; Mont-Bellevue, 875 rue Veilleux&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F">
1485 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1486 +</a> </div>
1487 + </li><!-- item-tool -->
1488 +
1489 + <li class="item-tool houzez-print " data-propid="3205">
1490 + <span class="item-tool-compare">
1491 + <i class="houzez-icon icon-print-text"></i>
1492 + </span><!-- item-tool-compare -->
1493 + </li><!-- item-tool -->
1494 + </ul><!-- item-tools -->
1495 + </div><!-- d-flex -->
1496 + <div class="d-flex align-items-center property-title-price-wrap">
1497 + <div class="page-title">
1498 + <h1>3½ rénové à louer Secteur Université &amp; Mont-Bellevue, 875 rue Veilleux</h1>
1499 +</div><!-- page-title --> <ul class="item-price-wrap hide-on-list">
1500 + <li class="item-price">960$/par mois</li></ul> </div><!-- d-flex -->
1501 + <div class="property-labels-wrap">
1502 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1503 + 1er janvier 2027
1504 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1505 + À LOUER
1506 + </a><a href="https://immeublesalexcellence.com/tag/3%c2%bd/" class="hz-label label label-color-202">
1507 +
1508 + </a> </div>
1509 + <address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>Sherbrooke</address> </div><!-- container -->
1510 +</div><!-- page-title-wrap --><div class="property-top-wrap">
1511 + <div class="property-banner">
1512 + <div class="visible-on-mobile">
1513 + <div class="tab-content" id="pills-tabContent">
1514 +
1515 + <div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-1.jpg);">
1516 + <div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 8</div>
1517 + <a class="property-banner-trigger" data-toggle="modal" data-target="#property-lightbox" href="#"></a>
1518 + </div>
1519 +
1520 +
1521 +
1522 +
1523 +
1524 +
1525 +
1526 + </div><!-- tab-content -->
1527 + </div><!-- visible-on-mobile -->
1528 +
1529 + <div class="container hidden-on-mobile">
1530 + <div class="row">
1531 + <div class="col-md-8">
1532 + <a href="#" data-slider-no="1" data-image="0" class="houzez-trigger-popup-slider-js img-wrap-1" data-toggle="modal" data-target="#property-lightbox">
1533 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-2-1067x785.jpg" alt="">
1534 + </a>
1535 + </div><!-- col-md-8 -->
1536 +
1537 + <div class="col-md-4">
1538 + <a href="#" data-slider-no="2" data-image="1" data-toggle="modal" data-target="#property-lightbox" class="houzez-trigger-popup-slider-js swipebox img-wrap-2">
1539 +
1540 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-3-1067x785.jpg" alt="">
1541 + </a>
1542 +
1543 + <a href="#" data-slider-no="3" data-image="2" data-toggle="modal" data-target="#property-lightbox" class="houzez-trigger-popup-slider-js swipebox img-wrap-3">
1544 + <div class="img-wrap-3-text"><i class="houzez-icon icon-picture-sun mr-1"></i> 5 photos, voir plus </div>
1545 +
1546 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-4-1067x785.jpg" alt="">
1547 + </a>
1548 + </div><!-- col-md-4 -->
1549 + <a href="#" class="img-wrap-1 gallery-hidden">
1550 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-5-1067x785.jpg" alt="">
1551 + </a>
1552 + <a href="#" class="img-wrap-1 gallery-hidden">
1553 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-6-1067x785.jpg" alt="">
1554 + </a>
1555 + <a href="#" class="img-wrap-1 gallery-hidden">
1556 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-7-1067x785.jpg" alt="">
1557 + </a>
1558 + <a href="#" class="img-wrap-1 gallery-hidden">
1559 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-8-1067x785.jpg" alt="">
1560 + </a>
1561 + <a href="#" class="img-wrap-1 gallery-hidden">
1562 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-9-1067x785.jpg" alt="">
1563 + </a>
1564 +
1565 + <div class="col-md-12">
1566 + <div class="block-wrap">
1567 + <div class="d-flex property-overview-data">
1568 + <ul class="list-unstyled flex-fill">
1569 + <li class="property-overview-item"><strong>Loyer 3½</strong></li>
1570 + <li class="hz-meta-label property-overview-type">Nombre pièce</li>
1571 +
1572 + </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">Chambre de bain</li></ul> </div><!-- d-flex -->
1573 + </div><!-- block-wrap -->
1574 + </div><!-- col-md-12 -->
1575 + </div><!-- row -->
1576 + </div><!-- hidden-on-mobile -->
1577 + </div><!-- property-banner -->
1578 +
1579 +
1580 +</div><!-- property-top-wrap -->
1581 +
1582 + <div class="container">
1583 + <div class="row">
1584 + <div class="col-lg-12 col-md-12 bt-full-width-content-wrap">
1585 +
1586 + <div class="property-view">
1587 +
1588 + <div class="visible-on-mobile">
1589 + <div class="mobile-top-wrap">
1590 + <div class="mobile-property-tools houzez-media-tabs-3 clearfix">
1591 + <ul class="nav nav-pills" id="pills-tab" role="tablist">
1592 +
1593 + <li class="nav-item">
1594 + <a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1595 + <i class="houzez-icon icon-picture-sun"></i>
1596 + </a>
1597 + </li>
1598 + </ul><!-- nav --> <ul class="item-tools">
1599 +
1600 + <li class="item-tool houzez-favorite">
1601 + <span class="add-favorite-js item-tool-favorite" data-listid="3205">
1602 + <i class="houzez-icon icon-love-it "></i>
1603 + </span><!-- item-tool-favorite -->
1604 + </li><!-- item-tool -->
1605 +
1606 + <li class="item-tool houzez-share">
1607 + <span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1608 + <i class="houzez-icon icon-share"></i>
1609 + </span><!-- item-tool-favorite -->
1610 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1611 +
1612 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F">
1613 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1614 +
1615 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F06%2Floyer-3demi-etudiant-Sherbrooke-1-1024x768.jpg&amp;description=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1616 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1617 +
1618 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&amp;t=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1619 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1620 +</a>
1621 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1622 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1623 +</a>
1624 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&title=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1625 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1626 +</a>
1627 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=3½ rénové à louer Secteur Université &amp; Mont-Bellevue, 875 rue Veilleux&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F">
1628 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1629 +</a> </div>
1630 + </li><!-- item-tool -->
1631 +
1632 + <li class="item-tool houzez-print " data-propid="3205">
1633 + <span class="item-tool-compare">
1634 + <i class="houzez-icon icon-print-text"></i>
1635 + </span><!-- item-tool-compare -->
1636 + </li><!-- item-tool -->
1637 + </ul><!-- item-tools -->
1638 + </div><!-- mobile-property-tools -->
1639 + <div class="mobile-property-title clearfix">
1640 + <span class="labels-wrap labels-right">
1641 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1642 + 1er janvier 2027
1643 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1644 + À LOUER
1645 + </a><a href="https://immeublesalexcellence.com/tag/3%c2%bd/" class="hz-label label label-color-202">
1646 +
1647 + </a>
1648 +</span>
1649 +
1650 + <div class="page-title">
1651 + <span class="item-title property-title-mobile">3½ rénové à louer Secteur Université &amp; Mont-Bellevue, 875 rue Veilleux</span>
1652 +</div><!-- page-title -->
1653 + <address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>Sherbrooke</address> <ul class="item-price-wrap hide-on-list">
1654 + <li class="item-price">960$/par mois</li></ul>
1655 + </div><!-- mobile-property-title -->
1656 + </div><!-- mobile-top-wrap -->
1657 +</div><!-- visible-on-mobile -->
1658 + <div class="property-description-wrap property-section-wrap" id="property-description-wrap">
1659 + <div class="block-wrap">
1660 + <div class="block-title-wrap">
1661 + <h2>Description du loyer</h2>
1662 + </div>
1663 + <div class="block-content-wrap">
1664 + <h2><strong>3½ à louer à proximité de l&rsquo;Université de Sherbrooke et du Mont-Bellevue </strong></h2>
1665 +<p><strong>Adresse :</strong> 875 rue Veilleux, Sherbrooke (Québec), J1H 2X8</p>
1666 +<h3><strong style="color: revert; font-size: revert;">Points Forts :</strong></h3>
1667 +<ul>
1668 +<li>Appartement lumineux entièrement rénové, idéal pour une personne seule ou un couple.</li>
1669 +<li>Situé à proximité de l&rsquo;Université et du Mont-Bellevue.</li>
1670 +<li>Accès direct aux circuits d&rsquo;autobus #7 et #11.</li>
1671 +</ul>
1672 +<hr />
1673 +<h3><strong>Détails du Logement :</strong></h3>
1674 +<ul>
1675 +<li><strong>Type :</strong> 3½ (1 chambre)</li>
1676 +<li><strong>Loyer :</strong> 960$/mois,</li>
1677 +<li><strong>Inclusions :</strong> Chauffé, eau chaude</li>
1678 +<li><strong>Planchers :</strong> Céramique et vinyle</li>
1679 +<li><strong>Équipements :</strong> Entrée laveuse-sécheuse, espace de rangement intérieur</li>
1680 +</ul>
1681 +<h3><strong>Commodités de l&rsquo;Immeuble :</strong></h3>
1682 +<ul>
1683 +<li>Stationnement extérieur avec possibilité d&rsquo;un deuxième espace (selon disponibilité)</li>
1684 +<li>Ascenseur</li>
1685 +<li>Aspirateur central</li>
1686 +<li>Caméra de surveillance</li>
1687 +<li>Entrée sécurisée avec intercom</li>
1688 +<li>Buanderie ($)</li>
1689 +<li>Casier de rangement individuel intérieur</li>
1690 +<li>Construction en béton pour une insonorisation optimale</li>
1691 +<li>Équipe de réparation disponible 24h/24</li>
1692 +</ul>
1693 +<hr />
1694 +<h3><strong>Services à Proximité :</strong></h3>
1695 +<ul>
1696 +<li>Université de Sherbrooke et écoles secondaires</li>
1697 +<li>Pharmacies et épiceries</li>
1698 +<li>Parcs et pistes cyclables</li>
1699 +<li>Restaurants et cafés</li>
1700 +<li>Centre d&rsquo;achats</li>
1701 +<li>Accès rapide à l&rsquo;autoroute</li>
1702 +<li>Banque</li>
1703 +</ul>
1704 +<h4><strong>Règlements :</strong></h4>
1705 +<ul>
1706 +<li>Animaux interdits</li>
1707 +<li>Locataires non-fumeurs, tranquilles et respectueux</li>
1708 +<li>Enquête de crédit obligatoire</li>
1709 +</ul>
1710 +<p><strong>Contactez-nous dès aujourd’hui pour planifier votre visite et découvrir ce logement exceptionnel.</strong></p>
1711 +
1712 + </div>
1713 + </div>
1714 +</div>
1715 + </div><!-- property-view -->
1716 + </div><!-- bt-content-wrap -->
1717 +
1718 + </div><!-- row -->
1719 +
1720 +
1721 + </div><!-- container -->
1722 +
1723 +
1724 + </section><!-- listing-wrap -->
1725 +
1726 + <!-- end houzez_check_is_elementor -->
1727 +
1728 +</main><!-- .main-wrap start in header.php-->
1729 +
1730 +<footer class="footer-wrap footer-wrap-v1">
1731 +
1732 + <div class="footer-bottom-wrap footer-bottom-wrap-v1">
1733 + <div class="container">
1734 + <div class="d-flex justify-content-between">
1735 +
1736 + <div class="footer-copyright">
1737 + &copy; Immeubles Alexcellence - Tout droits réservés</div><!-- footer-copyright -->
1738 +
1739 +
1740 +
1741 + </div><!-- d-flex -->
1742 + </div><!-- container -->
1743 +</div><!-- footer-top-wrap --></footer><div class="back-to-top-wrap">
1744 + <a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1745 + <i class="houzez-icon icon-arrow-up-1"></i>
1746 + </a>
1747 +</div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1748 +
1749 + <button class="compare-property-label" style="display: none;">
1750 + <span class="compare-count compare-label"></span>
1751 + <i class="houzez-icon icon-move-left-right"></i>
1752 + </button>
1753 +
1754 + <p><strong>Comparer les annonces</strong></p>
1755 +
1756 + <div class="compare-wrap"></div>
1757 +
1758 +
1759 + <a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1760 + <button class="btn btn-grey-outlined btn-full-width close-compare-panel">Close</button>
1761 +</div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog">
1762 + <div class="modal-dialog" role="document">
1763 + <div class="modal-content">
1764 + <div class="modal-header">
1765 + <div class="login-register-tabs">
1766 + <ul class="nav nav-tabs">
1767 + <li class="nav-item">
1768 + <a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">S&#039;identifier</a>
1769 + </li>
1770 +
1771 + </ul>
1772 + </div><!-- login-register-tabs -->
1773 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1774 + <span aria-hidden="true">&times;</span>
1775 + </button>
1776 + </div><!-- modal-header -->
1777 + <div class="modal-body">
1778 + <div class="tab-content">
1779 + <div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel">
1780 + <div id="hz-login-messages" class="hz-social-messages"></div>
1781 +<form>
1782 + <div class="login-form-wrap">
1783 + <div class="form-group">
1784 + <div class="form-group-field username-field">
1785 + <input class="form-control" name="username" placeholder="Username or Email" type="text" />
1786 + </div><!-- input-group -->
1787 + </div><!-- form-group -->
1788 + <div class="form-group">
1789 + <div class="form-group-field password-field">
1790 + <input class="form-control" name="password" placeholder="Mot de passe" type="password" />
1791 + </div><!-- input-group -->
1792 + </div><!-- form-group -->
1793 + </div><!-- login-form-wrap -->
1794 +
1795 + <div class="form-tools">
1796 + <div class="d-flex">
1797 + <label class="control control--checkbox flex-grow-1">
1798 + <input name="remember" type="checkbox">Remember me FR <span class="control__indicator"></span>
1799 + </label>
1800 + <a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Lost your password?</a>
1801 + </div><!-- d-flex -->
1802 + </div><!-- form-tools -->
1803 +
1804 + <div class="form-group captcha_wrapper houzez-grecaptcha-v3">
1805 + <div class="houzez_google_reCaptcha"></div>
1806 +</div>
1807 +
1808 + <input type="hidden" id="houzez_login_security" name="houzez_login_security" value="90509fca4b" /><input type="hidden" name="_wp_http_referer" value="/appartements/3%C2%BD-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1809 + <input type="hidden" name="redirect_to" value="https://immeublesalexcellence.com/appartements/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/?login=success">
1810 + <button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1811 + <span class="btn-loader houzez-loader-js"></span> S&#039;identifier
1812 + </button>
1813 +</form>
1814 +
1815 +<div class="social-login-wrap">
1816 +
1817 + <button type="button" class="hz-facebook-login btn btn-facebook-login btn-full-width">
1818 + <span class="btn-loader houzez-loader-js"></span> Continue with Facebook </button>
1819 +
1820 + <button type="button" class="hz-google-login btn btn-google-plus-lined btn-full-width">
1821 + <span class="btn-loader houzez-loader-js"></span> <img class="google-icon" src="https://immeublesalexcellence.com/wp-content/themes/houzez/img/Google__G__Logo.svg"/> Sign in with google </button>
1822 +
1823 +</div>
1824 + </div><!-- login-form-tab -->
1825 + <div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel">
1826 + <div id="hz-register-messages" class="hz-social-messages"></div>
1827 +User registration is disabled for demo purpose. </div><!-- register-form-tab -->
1828 + </div><!-- tab-content -->
1829 + </div><!-- modal-body -->
1830 + </div><!-- modal-content -->
1831 + </div><!-- modal-dialog -->
1832 +</div><!-- login-register-form --><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog">
1833 + <div class="modal-dialog" role="document">
1834 + <div class="modal-content">
1835 + <div class="modal-header">
1836 + <div class="modal-title">Reset Password</div>
1837 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1838 + <span aria-hidden="true">&times;</span>
1839 + </button>
1840 + </div><!-- modal-header -->
1841 + <div class="modal-body">
1842 + <div id="reset_pass_msg"></div>
1843 + <p>Please enter your username or email address. You will receive a link to create a new password via email.</p>
1844 + <form>
1845 + <div class="form-group">
1846 + <input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Enter your username or email" class="form-control">
1847 + </div>
1848 + <input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="eec590fff1" /><input type="hidden" name="_wp_http_referer" value="/appartements/3%C2%BD-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1849 + <span class="btn-loader houzez-loader-js"></span> Get new password </button>
1850 + </form>
1851 + </div><!-- modal-body -->
1852 + </div><!-- modal-content -->
1853 + </div><!-- modal-dialog -->
1854 +</div><!-- login-register-form --><div class="property-lightbox">
1855 + <div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog">
1856 + <div class="modal-dialog modal-dialog-centered" role="document">
1857 + <div id="hz-listing-model-content" class="modal-content">
1858 +
1859 + </div><!-- modal-content -->
1860 + </div><!-- modal-dialog -->
1861 + </div><!-- modal -->
1862 +</div><!-- property-lightbox --><div class="property-lightbox">
1863 + <div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog">
1864 + <div class="modal-dialog modal-dialog-centered" role="document">
1865 + <div class="modal-content">
1866 + <div class="modal-header">
1867 + <div class="d-flex align-items-center">
1868 +
1869 + <div class="lightbox-logo">
1870 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" alt="3½ rénové à louer Secteur Université &amp; Mont-Bellevue, 875 rue Veilleux">
1871 + </div><!-- lightbox-logo -->
1872 +
1873 + <div class="lightbox-title flex-grow-1">
1874 +
1875 + </div><!-- lightbox-title -->
1876 + <div class="lightbox-tools">
1877 + <ul class="list-inline">
1878 + <li class="list-inline-item btn-favorite">
1879 + <a class="add-favorite-js" data-listid="3205" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Préféré</span></a>
1880 + </li>
1881 +
1882 + <li class="list-inline-item btn-share">
1883 + <a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Share</span></a>
1884 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1885 +
1886 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F">
1887 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1888 +
1889 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F06%2Floyer-3demi-etudiant-Sherbrooke-1-1024x768.jpg&amp;description=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1890 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1891 +
1892 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&amp;t=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1893 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1894 +</a>
1895 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1896 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1897 +</a>
1898 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F&title=3%C2%BD+r%C3%A9nov%C3%A9+%C3%A0+louer+Secteur+Universit%C3%A9+%26amp%3B+Mont-Bellevue%2C+875+rue+Veilleux&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1899 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1900 +</a>
1901 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=3½ rénové à louer Secteur Université &amp; Mont-Bellevue, 875 rue Veilleux&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F3%25c2%25bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux%2F">
1902 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1903 +</a> </div>
1904 + </li>
1905 + <li class="list-inline-item btn-email">
1906 + <a href="#"><i class="houzez-icon icon-envelope"></i></a>
1907 + </li>
1908 + </ul>
1909 + </div><!-- lightbox-tools -->
1910 + </div><!-- d-flex -->
1911 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1912 + <span aria-hidden="true">&times;</span>
1913 + </button>
1914 + </div><!-- modal-header -->
1915 +
1916 + <div class="modal-body clearfix">
1917 + <div class="lightbox-gallery-wrap ">
1918 +
1919 + <a class="btn-expand">
1920 + <i class="houzez-icon icon-expand-3"></i>
1921 + </a>
1922 +
1923 + <div class="lightbox-gallery">
1924 + <div id="lightbox-slider-js" class="lightbox-slider">
1925 +
1926 + <div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-2.jpg" alt="" title="loyer-3demi-etudiant-Sherbrooke (2)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-3.jpg" alt="" title="loyer-3demi-etudiant-Sherbrooke (3)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-4.jpg" alt="" title="loyer-3demi-etudiant-Sherbrooke (4)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-5.jpg" alt="" title="loyer-3demi-etudiant-Sherbrooke (5)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-6.jpg" alt="" title="loyer-3demi-etudiant-Sherbrooke (6)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-7.jpg" alt="" title="loyer-3demi-etudiant-Sherbrooke (7)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-8.jpg" alt="" title="loyer-3demi-etudiant-Sherbrooke (8)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/loyer-3demi-etudiant-Sherbrooke-9.jpg" alt="" title="loyer-3demi-etudiant-Sherbrooke (9)"></div>
1927 + </div>
1928 + </div><!-- lightbox-gallery -->
1929 +
1930 + </div><!-- lightbox-gallery-wrap -->
1931 +
1932 + <div class="lightbox-form-wrap">
1933 + </div><!-- lightbox-form-wrap -->
1934 + </div><!-- modal-body -->
1935 + <div class="modal-footer">
1936 +
1937 + </div><!-- modal-footer -->
1938 + </div><!-- modal-content -->
1939 + </div><!-- modal-dialog -->
1940 + </div><!-- modal -->
1941 +</div><!-- property-lightbox -->
1942 +
1943 +
1944 + <script>
1945 + window.RS_MODULES = window.RS_MODULES || {};
1946 + window.RS_MODULES.modules = window.RS_MODULES.modules || {};
1947 + window.RS_MODULES.waiting = window.RS_MODULES.waiting || [];
1948 + window.RS_MODULES.defered = true;
1949 + window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};
1950 + window.RS_MODULES.type = 'compiled';
1951 + </script>
1952 +
1953 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
1954 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 parametres-de-confidentialite optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
1955 + <div class="cmplz-header">
1956 + <div class="cmplz-logo"><?xml version="1.0" encoding="utf-8"?>
1957 +<!-- Generator: Adobe Illustrator 27.6.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
1958 +<svg version="1.1" id="uuid-7dd7b5b8-c5e0-4d79-ad53-47e9a05e6f8e"
1959 + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1354.3 343"
1960 + style="enable-background:new 0 0 1354.3 343;" xml:space="preserve">
1961 +<style type="text/css">
1962 + .st0{fill:#009FFF;}
1963 + .st1{fill:#333333;}
1964 +</style>
1965 +<path class="st0" d="M663.5,62.7c-17.7,0-36,7.4-44.2,19v-15h-52.7V274h52.7v-75.8c8.2,11.6,26.5,19,44.2,19
1966 + c41.1,0,68.6-37.4,68.6-77.5S704.6,62.7,663.5,62.7L663.5,62.7L663.5,62.7z M649.6,174.1c-18,0-30.3-13.9-30.3-33.7
1967 + s11.9-34.7,30.3-34.7c17.4,0,29.9,14.6,29.9,34.7S666.9,174.1,649.6,174.1z M499.6,62.7c-24.5,0-39,10.8-49.3,24.1
1968 + c-8.5-14.6-21.8-24.1-44.8-24.1c-17.3,0-30.6,5.1-40.4,19.3V66.8h-52.7v146.4H365v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9
1969 + v75.4h52.7v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9v75.4h52.7v-88.2C553.2,90.2,538.9,62.7,499.6,62.7L499.6,62.7
1970 + L499.6,62.7z M221.3,62.7c-42.1,0-78.8,33.7-78.8,77.1s36,77.5,79.1,77.5s78.8-34.3,78.8-77.8S264.1,62.7,221.3,62.7L221.3,62.7
1971 + L221.3,62.7z M221.6,175.5c-18.4,0-27.9-18.7-27.9-35.6s9.5-35.3,27.5-35.3c19,0,27.9,18.7,27.9,35S240,175.5,221.6,175.5
1972 + L221.6,175.5L221.6,175.5z M79.6,175.8c-19,0-31.6-17.7-31.6-35.3c0-20.8,12.9-36,31.6-36c10.8,0,20.8,4.4,29.2,13.6l30.3-28.2
1973 + c-15.6-18.7-34.7-27.2-59.5-27.2C32.7,62.7-0.9,98-0.9,140.5s34.3,76.7,80.6,76.7c28.5,0,46.6-9.5,64.2-31.6l-35.3-24.8
1974 + C100.4,170.4,93.2,175.8,79.6,175.8L79.6,175.8L79.6,175.8z M1139,62.7c-17.4,0-32.6,6.4-42.1,19.3V66.7h-52.7v146.4h52.7v-77.1
1975 + c0-18,8.8-29.2,24.2-29.2s20.8,11.2,20.8,30.9v75.4h52.7v-88.1C1194.5,90.2,1178.5,62.7,1139,62.7L1139,62.7L1139,62.7z M958.2,62.7
1976 + c-26.5,0-50.9,4-70.3,15l16.3,31.6c15.3-7.9,31.9-12.6,52.3-12.6c15,0,21.8,3.4,21.8,13.6v5.1c-47.5,2.1-103.6,10.8-103.6,56.4
1977 + c0,27.9,24.8,45.5,53,45.5c25.5,0,34.7-4.1,50.6-15.3v11.2h52.7v-93.1C1030.9,78.3,1006.7,62.7,958.2,62.7L958.2,62.7L958.2,62.7z
1978 + M978.2,169.4c-8.5,7.4-17.4,10.5-30.6,10.5c-8.5,0-17-5.1-17-13.6c0-16.3,25.1-21.4,47.5-21.4V169.4z M744,213.2h52.7V1.7H744
1979 + V213.2L744,213.2z M1282.8,172.9l70.5-106.2h-143.7v40.8h53.7c4.8,0,8.8-0.3,8.8-0.3s-3.4,3.7-6.1,7.8l-66.2,98.2h145.1v-40.8h-52.1
1980 + C1289.8,172.4,1285.4,172.7,1282.8,172.9L1282.8,172.9L1282.8,172.9z M811.2,67.4v145.7h52.7V67.2c-8.3,2.9-17.1,4.6-26.1,4.6
1981 + S819.6,70.2,811.2,67.4L811.2,67.4L811.2,67.4z"/>
1982 +<g>
1983 + <g>
1984 + <path class="st1" d="M649.8,345v-8l10.1-1.8v-75.6l-11.2-1.8v-8h20.6l1.2,8.4c2.3-3.1,5.2-5.5,8.5-7.2c3.4-1.6,7.2-2.5,11.7-2.5
1985 + c5.8,0,10.8,1.5,14.9,4.6c4.1,3.1,7.3,7.4,9.4,12.9c2.2,5.5,3.3,12,3.3,19.4v1.3c0,6.6-1.1,12.4-3.3,17.3s-5.3,8.8-9.4,11.6
1986 + c-4.1,2.8-9,4.1-14.7,4.1c-4.3,0-8.1-0.7-11.4-2.1c-3.3-1.4-6.1-3.5-8.3-6.3v24l11.2,1.8v8L649.8,345L649.8,345z M686.8,310.6
1987 + c5.9,0,10.4-2.2,13.4-6.4c3-4.3,4.5-9.9,4.5-16.7V286c0-5.3-0.7-9.9-2-13.9c-1.4-4-3.4-7.2-6.1-9.5s-6.1-3.4-10.1-3.4
1988 + c-3.6,0-6.6,0.8-9.2,2.4c-2.6,1.6-4.6,3.8-6.2,6.6v33.6c1.6,2.9,3.7,5.1,6.2,6.7c2.6,1.6,5.7,2.4,9.5,2.4L686.8,310.6z"/>
1989 + </g>
1990 + <g>
1991 + <path class="st1" d="M758,320.5c-6.4,0-11.9-1.5-16.5-4.5s-8.2-7.1-10.7-12.4c-2.5-5.3-3.8-11.3-3.8-18.1v-1.4
1992 + c0-6.8,1.3-12.8,3.8-18.1c2.5-5.3,6.1-9.4,10.7-12.5c4.6-3,10.1-4.5,16.3-4.5s11.9,1.5,16.5,4.5s8.2,7.2,10.7,12.4
1993 + c2.5,5.3,3.8,11.3,3.8,18.1v1.4c0,6.8-1.3,12.9-3.8,18.2c-2.5,5.3-6.1,9.4-10.6,12.4C769.8,319,764.4,320.5,758,320.5L758,320.5z
1994 + M758.6,310.2c3.9,0,7.2-1.1,9.8-3.2c2.6-2.1,4.6-5.1,6-8.8s2-8,2-12.7v-1.4c0-4.8-0.7-9-2-12.7c-1.4-3.7-3.4-6.7-6-8.8
1995 + c-2.7-2.1-6-3.2-9.9-3.2c-4,0-7.2,1.1-9.9,3.2c-2.7,2.1-4.7,5.1-6,8.8c-1.3,3.7-2,8-2,12.7v1.4c0,4.8,0.7,9,2,12.7
1996 + c1.3,3.7,3.3,6.7,6,8.8S754.6,310.2,758.6,310.2L758.6,310.2z"/>
1997 + </g>
1998 + <g>
1999 + <path class="st1" d="M822.4,319.3l-18.1-59.5l-7.7-0.9v-8h28v8l-8.3,1.4l9.3,34.1l2.1,8.1h0.4l2.8-8.1l14.7-43.5h11.4l14.1,43.1
2000 + l3,9.5h0.4l3-9.5l9.5-33.8l-8.6-1.3v-8h28v8l-7.6,1.1L881,319.3h-12.1L855,278.2l-3.3-11l-0.4,0.1l-3.2,10.9l-14.9,41.1
2001 + L822.4,319.3L822.4,319.3z"/>
2002 + </g>
2003 + <g>
2004 + <path class="st1" d="M943.2,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2005 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2006 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7s3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2007 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C953.7,319.8,948.8,320.6,943.2,320.6L943.2,320.6z
2008 + M925.3,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3c-2.8,0-5.3,0.8-7.6,2.4
2009 + c-2.3,1.6-4.2,3.8-5.6,6.6c-1.5,2.8-2.5,6-2.9,9.5L925.3,277.8L925.3,277.8z"/>
2010 + </g>
2011 + <g>
2012 + <path class="st1" d="M980.5,319.3v-8l10.1-1.8v-48.8l-10.1-1.8v-8h21.1l1.1,8.7l0.1,1.2c1.9-3.5,4.2-6.2,7-8.2c2.8-2,6-3,9.6-3
2013 + c1.3,0,2.6,0.1,3.9,0.3c1.3,0.2,2.3,0.4,2.9,0.7l-1.6,11.6l-8.5-0.5c-3.2-0.2-5.9,0.5-8.1,2.2c-2.2,1.7-3.9,4-5.1,6.9v38.7
2014 + l10.1,1.8v8L980.5,319.3L980.5,319.3z"/>
2015 + </g>
2016 + <g>
2017 + <path class="st1" d="M1063.1,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2018 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2019 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7c1.4,3.4,3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2020 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C1073.6,319.8,1068.8,320.6,1063.1,320.6
2021 + L1063.1,320.6z M1045.2,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3
2022 + c-2.8,0-5.3,0.8-7.6,2.4c-2.3,1.6-4.2,3.8-5.6,6.6s-2.5,6-2.9,9.5L1045.2,277.8L1045.2,277.8z"/>
2023 + </g>
2024 + <g>
2025 + <path class="st1" d="M1127.3,320.6c-5.6,0-10.5-1.4-14.5-4.1c-4-2.8-7.1-6.6-9.2-11.6c-2.1-4.9-3.2-10.7-3.2-17.3v-1.3
2026 + c0-7.4,1.1-13.8,3.2-19.3c2.1-5.5,5.2-9.8,9.3-12.9c4.1-3.1,8.9-4.6,14.6-4.6c4.1,0,7.7,0.8,10.9,2.3c3.1,1.5,5.8,3.7,8,6.5v-27.7
2027 + l-10.1-1.8v-8h23.5v88.9l10.1,1.8v8H1148l-1-8.2c-2.3,3.1-5,5.5-8.3,7.1C1135.4,319.8,1131.7,320.6,1127.3,320.6L1127.3,320.6z
2028 + M1130.9,309.8c3.7,0,6.7-0.8,9.2-2.5c2.5-1.7,4.6-4,6.2-7.1V269c-1.6-2.8-3.6-5.1-6.2-6.7c-2.5-1.7-5.6-2.5-9.1-2.5
2029 + c-3.9,0-7.1,1.1-9.7,3.3c-2.5,2.2-4.4,5.3-5.7,9.2c-1.2,3.9-1.9,8.5-1.9,13.7v1.3c0,6.8,1.4,12.2,4.2,16.3
2030 + C1120.8,307.8,1125.1,309.8,1130.9,309.8L1130.9,309.8z"/>
2031 + </g>
2032 + <g>
2033 + <path class="st1" d="M1245.2,320.6c-4.5,0-8.3-0.9-11.6-2.6c-3.3-1.7-6-4.2-8.2-7.6l-1.1,8.8h-10.6v-88.8l-10.1-1.8v-8h22.4V259
2034 + c2.2-3,4.8-5.4,8-7c3.2-1.6,6.9-2.4,11.2-2.4c5.6,0,10.5,1.5,14.4,4.6c4,3.1,7,7.3,9.2,12.9c2.1,5.5,3.2,11.9,3.2,19.3v1.3
2035 + c0,6.6-1.1,12.3-3.2,17.3c-2.1,4.9-5.2,8.8-9.2,11.5C1255.6,319.2,1250.8,320.6,1245.2,320.6L1245.2,320.6z M1241.6,310.6
2036 + c6.1,0,10.6-2.2,13.5-6.5c2.9-4.3,4.4-10,4.4-17.1v-1c0-5.3-0.6-10-1.9-14s-3.2-7.1-5.8-9.4c-2.6-2.3-5.9-3.4-9.9-3.4
2037 + c-4,0-7.1,0.9-9.8,2.8c-2.6,1.9-4.8,4.4-6.3,7.5v30.6c1.5,3.1,3.6,5.5,6.2,7.3c2.6,1.8,5.8,2.7,9.5,2.7L1241.6,310.6z"/>
2038 + </g>
2039 + <g>
2040 + <path class="st1" d="M1293.4,346.2c-1,0-2.2-0.1-3.8-0.3c-1.6-0.2-2.8-0.5-3.6-0.7l1.3-9.8c0.7,0.1,1.7,0.2,3,0.2s2.1,0.1,2.6,0.1
2041 + c2.7,0,4.8-1,6.5-3c1.7-2,3.2-4.8,4.7-8.3l3-7.2l-24.3-58.2l-7.4-1v-8.1h29.1v8.1l-8.3,1.3l13.3,34.4l3.2,9h0.4l15.8-43.3
2042 + l-8.7-1.3v-8.1h28v8.1l-7.1,1l-27,70.1c-1.3,3.3-2.8,6.3-4.6,8.9c-1.8,2.6-4,4.6-6.6,6.1C1300.2,345.4,1297,346.2,1293.4,346.2
2043 + L1293.4,346.2z"/>
2044 + </g>
2045 +</g>
2046 +</svg>
2047 +</div>
2048 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
2049 + <div class="cmplz-close" tabindex="0" role="button" aria-label="close-dialog">
2050 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
2051 + </div>
2052 + </div>
2053 +
2054 + <div class="cmplz-divider cmplz-divider-header"></div>
2055 + <div class="cmplz-body">
2056 + <div class="cmplz-message" id="cmplz-message-1-optin"><p>Pour vous offrir les meilleures expériences, nous utilisons des technologies, telles que les cookies, pour stocker et accéder à des informations sur votre appareil. Votre consentement à ces technologies nous permet de traiter des données, telles que vos préférences de navigation ou des identifiants uniques. Vous pouvez refuser ou retirer votre consentement à tout moment, ce qui pourrait affecter certaines fonctionnalités ou caractéristiques du site. Pour en savoir plus sur l’utilisation de vos données, veuillez consulter notre [politique de confidentialité](lien vers la politique de confidentialité).</p></div>
2057 + <!-- categories start -->
2058 + <div class="cmplz-categories">
2059 + <details class="cmplz-category cmplz-functional" >
2060 + <summary>
2061 + <span class="cmplz-category-header">
2062 + <span class="cmplz-category-title">Fonctionnel</span>
2063 + <span class='cmplz-always-active'>
2064 + <span class="cmplz-banner-checkbox">
2065 + <input type="checkbox"
2066 + id="cmplz-functional-optin"
2067 + data-category="cmplz_functional"
2068 + class="cmplz-consent-checkbox cmplz-functional"
2069 + size="40"
2070 + value="1"/>
2071 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
2072 + </span>
2073 + Toujours activé </span>
2074 + <span class="cmplz-icon cmplz-open">
2075 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2076 + </span>
2077 + </span>
2078 + </summary>
2079 + <div class="cmplz-description">
2080 + <span class="cmplz-description-functional">L’accès ou le stockage technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
2081 + </div>
2082 + </details>
2083 +
2084 + <details class="cmplz-category cmplz-preferences" >
2085 + <summary>
2086 + <span class="cmplz-category-header">
2087 + <span class="cmplz-category-title">Préférences</span>
2088 + <span class="cmplz-banner-checkbox">
2089 + <input type="checkbox"
2090 + id="cmplz-preferences-optin"
2091 + data-category="cmplz_preferences"
2092 + class="cmplz-consent-checkbox cmplz-preferences"
2093 + size="40"
2094 + value="1"/>
2095 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
2096 + </span>
2097 + <span class="cmplz-icon cmplz-open">
2098 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2099 + </span>
2100 + </span>
2101 + </summary>
2102 + <div class="cmplz-description">
2103 + <span class="cmplz-description-preferences">L'accès ou le stockage technique est nécessaire dans la finalité d'intérêt légitime de stocker des préférences spécifiques des utilisateurs, telles que la langue, la région ou d'autres paramètres personnalisés, afin d'améliorer leur expérience sur le site.</span>
2104 + </div>
2105 + </details>
2106 +
2107 + <details class="cmplz-category cmplz-statistics" >
2108 + <summary>
2109 + <span class="cmplz-category-header">
2110 + <span class="cmplz-category-title">Statistiques</span>
2111 + <span class="cmplz-banner-checkbox">
2112 + <input type="checkbox"
2113 + id="cmplz-statistics-optin"
2114 + data-category="cmplz_statistics"
2115 + class="cmplz-consent-checkbox cmplz-statistics"
2116 + size="40"
2117 + value="1"/>
2118 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
2119 + </span>
2120 + <span class="cmplz-icon cmplz-open">
2121 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2122 + </span>
2123 + </span>
2124 + </summary>
2125 + <div class="cmplz-description">
2126 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
2127 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique est utilisé exclusivement à des fins statistiques anonymes. Sans assignation légale, conformité volontaire de votre fournisseur d’accès à Internet ou données supplémentaires d’une tierce partie, les informations collectées à cette fin ne peuvent pas être utilisées pour vous identifier.</span>
2128 + </div>
2129 + </details>
2130 + <details class="cmplz-category cmplz-marketing" >
2131 + <summary>
2132 + <span class="cmplz-category-header">
2133 + <span class="cmplz-category-title">Marketing</span>
2134 + <span class="cmplz-banner-checkbox">
2135 + <input type="checkbox"
2136 + id="cmplz-marketing-optin"
2137 + data-category="cmplz_marketing"
2138 + class="cmplz-consent-checkbox cmplz-marketing"
2139 + size="40"
2140 + value="1"/>
2141 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
2142 + </span>
2143 + <span class="cmplz-icon cmplz-open">
2144 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2145 + </span>
2146 + </span>
2147 + </summary>
2148 + <div class="cmplz-description">
2149 + <span class="cmplz-description-marketing">L’accès ou le stockage technique est nécessaire pour créer des profils d’utilisateurs, diffuser des publicités personnalisées, et suivre l’activité de l’utilisateur sur ce site ou sur plusieurs sites web dans le cadre de campagnes marketing similaires.</span>
2150 + </div>
2151 + </details>
2152 + </div><!-- categories end -->
2153 + </div>
2154 +
2155 + <div class="cmplz-links cmplz-information">
2156 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
2157 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
2158 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
2159 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
2160 + </div>
2161 +
2162 + <div class="cmplz-divider cmplz-footer"></div>
2163 +
2164 + <div class="cmplz-buttons">
2165 + <button class="cmplz-btn cmplz-accept">Accepter</button>
2166 + <button class="cmplz-btn cmplz-deny">Refuser</button>
2167 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
2168 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
2169 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
2170 + </div>
2171 +
2172 + <div class="cmplz-links cmplz-documents">
2173 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
2174 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
2175 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
2176 + </div>
2177 +
2178 +</div>
2179 +</div>
2180 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
2181 +
2182 +</div> <script data-service="google-recaptcha" data-category="marketing" type="text/plain">
2183 + var reCaptchaIDs = [];
2184 + var siteKey = '6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc';
2185 + var reCaptchaType = 'v3';
2186 +
2187 + var houzezReCaptchaLoad = function() {
2188 + jQuery( '.houzez_google_reCaptcha' ).each( function( index, el ) {
2189 + var tempID;
2190 +
2191 + if ( reCaptchaType === 'v3' ) {
2192 +
2193 + tempID = grecaptcha.ready(function () {
2194 + grecaptcha.execute(siteKey, {action: 'homepage'}).then(function (token) {
2195 + el.insertAdjacentHTML('beforeend', '<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="' + token + '">');
2196 + });
2197 + });
2198 +
2199 + } else {
2200 +
2201 + tempID = grecaptcha.render( el, {
2202 + 'sitekey' : siteKey
2203 + } );
2204 + }
2205 +
2206 + reCaptchaIDs.push( tempID );
2207 + } );
2208 + };
2209 +
2210 + //reCAPTCHA reset
2211 + var houzezReCaptchaReset = function() {
2212 + if ( reCaptchaType === 'v2' ) {
2213 + if( typeof reCaptchaIDs != 'undefined' ) {
2214 + var arrayLength = reCaptchaIDs.length;
2215 + for( var i = 0; i < arrayLength; i++ ) {
2216 + grecaptcha.reset( reCaptchaIDs[i] );
2217 + }
2218 + }
2219 + } else {
2220 + houzezReCaptchaLoad();
2221 + }
2222 + };
2223 + </script>
2224 + <script>
2225 + const lazyloadRunObserver = () => {
2226 + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
2227 + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
2228 + entries.forEach( ( entry ) => {
2229 + if ( entry.isIntersecting ) {
2230 + let lazyloadBackground = entry.target;
2231 + if( lazyloadBackground ) {
2232 + lazyloadBackground.classList.add( 'e-lazyloaded' );
2233 + }
2234 + lazyloadBackgroundObserver.unobserve( entry.target );
2235 + }
2236 + });
2237 + }, { rootMargin: '200px 0px 200px 0px' } );
2238 + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
2239 + lazyloadBackgroundObserver.observe( lazyloadBackground );
2240 + } );
2241 + };
2242 + const events = [
2243 + 'DOMContentLoaded',
2244 + 'elementor/lazyload/observe',
2245 + ];
2246 + events.forEach( ( event ) => {
2247 + document.addEventListener( event, lazyloadRunObserver );
2248 + } );
2249 + </script>
2250 + <link rel='stylesheet' id='rs-plugin-settings-css' href='//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/css/rs6.css?ver=6.7.20' type='text/css' media='all' />
2251 +<style id='rs-plugin-settings-inline-css' type='text/css'>
2252 +#rs-demo-id {}
2253 +</style>
2254 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.20" defer async id="tp-tools-js"></script>
2255 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.20" defer async id="revmin-js"></script>
2256 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/all-scripts.js?ver=3.4.4" id="houzez-all-in-one-js"></script>
2257 +<script type="module" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/houzez-instant-page.js?ver=3.0.0" id="houzez-instant-page-js"></script>
2258 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/lightslider.min.js?ver=1.1.3" id="lightslider-js"></script>
2259 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/Chart.min.js?ver=2.8.0" id="chart-js"></script>
2260 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script>
2261 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/menu.min.js?ver=1.13.3" id="jquery-ui-menu-js"></script>
2262 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/dom-ready.min.js?ver=f77871ff7694fffea381" id="wp-dom-ready-js"></script>
2263 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script>
2264 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script>
2265 +<script type="text/javascript" id="wp-i18n-js-after">
2266 +/* <![CDATA[ */
2267 +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
2268 +/* ]]> */
2269 +</script>
2270 +<script type="text/javascript" id="wp-a11y-js-translations">
2271 +/* <![CDATA[ */
2272 +( function( domain, translations ) {
2273 + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
2274 + localeData[""].domain = domain;
2275 + wp.i18n.setLocaleData( localeData, domain );
2276 +} )( "default", {"translation-revision-date":"2025-10-01 05:29:20+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} );
2277 +/* ]]> */
2278 +</script>
2279 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/a11y.min.js?ver=3156534cc54473497e14" id="wp-a11y-js"></script>
2280 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.13.3" id="jquery-ui-autocomplete-js"></script>
2281 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/mouse.min.js?ver=1.13.3" id="jquery-ui-mouse-js"></script>
2282 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/slider.min.js?ver=1.13.3" id="jquery-ui-slider-js"></script>
2283 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/bootstrap-datepicker.min.js?ver=1.9.0" id="bootstrap-datepicker-js"></script>
2284 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr.min.js?ver=1.0" id="bootstrap-datepicker.fr-js"></script>
2285 +<script type="text/javascript" id="houzez-custom-js-extra">
2286 +/* <![CDATA[ */
2287 +var houzez_vars = {"admin_url":"https:\/\/immeublesalexcellence.com\/wp-admin\/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https:\/\/immeublesalexcellence.com\/appartements\/3%c2%bd-renove-a-louer-secteur-universite-mont-bellevue-875-rue-veilleux\/","property_gallery_popup_type":"houzez","wp_is_mobile":"","default_lat":"25.686540","default_long":"-80.431345","houzez_is_splash":"","prop_detail_nav":"yes","add_to_favorite_login_required":"1","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_banner","login_loading":"Envoi d'informations utilisateur, veuillez patienter ...","not_found":"Nous n'avons trouv\u00e9 aucun r\u00e9sultat","listings_not_found":"No more listings found","houzez_map_system":"osm","for_rent":"a-louer","for_rent_price_slider":"a-louer","search_min_price_range":"0","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","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"0","geocomplete_country":"","is_edit_property":"","processing_text":"Traitement, veuillez patienter ...","halfmap_layout":"","prev_text":"Prev","next_text":"Prochain","keyword_search_field":"prop_title","keyword_autocomplete":"1","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"1","simple_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo":"","mobile_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo_mobile":"","retina_logo_mobile_splash":"","custom_logo_splash":"","retina_logo_splash":"","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"","favorite_url":"","template_thankyou":"https:\/\/immeublesalexcellence.com\/","compare_page_not_found":"Veuillez cr\u00e9er une page en utilisant le mod\u00e8le de propri\u00e9t\u00e9s de comparaison","compare_limit":"Prix \u200b\u200bmaximum pour le loyer seulement","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Ajouter au comparatif","remove_compare_text":"Retirer du comparatif","is_mapbox":"google","api_mapbox":"","listing_pagination":"_loadmore","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""};
2288 +/* ]]> */
2289 +</script>
2290 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/custom.js?ver=3.4.4" id="houzez-custom-js"></script>
2291 +<script data-service="google-recaptcha" data-category="marketing" type="text/plain" data-cmplz-src="//www.google.com/recaptcha/api.js?render=6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc&amp;onload=houzezReCaptchaLoad&amp;ver=3.4.4" id="houzez-google-recaptcha-js"></script>
2292 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js//vendors/leaflet/leaflet.js?ver=1.9.3" id="leaflet-js"></script>
2293 +<script type="text/javascript" id="houzez-single-property-map-js-extra">
2294 +/* <![CDATA[ */
2295 +var houzez_single_property_map = [];
2296 +var houzez_map_options = {"markerPricePins":"no","single_map_zoom":"14","map_type":"satellite","map_pin_type":"marker","googlemap_stype":"[{\"featureType\":\"administrative\",\"elementType\":\"labels.text.fill\",\"stylers\":[{\"color\":\"#444444\"}]},{\"featureType\":\"administrative.locality\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"landscape\",\"elementType\":\"all\",\"stylers\":[{\"color\":\"#f2f2f2\"},{\"visibility\":\"simplified\"}]},{\"featureType\":\"poi\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"poi\",\"elementType\":\"geometry\",\"stylers\":[{\"visibility\":\"simplified\"},{\"saturation\":\"-65\"},{\"lightness\":\"45\"},{\"gamma\":\"1.78\"}]},{\"featureType\":\"poi\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"poi\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road\",\"elementType\":\"all\",\"stylers\":[{\"saturation\":-100},{\"lightness\":45}]},{\"featureType\":\"road\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"road\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road.highway\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"simplified\"}]},{\"featureType\":\"road.highway\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road.arterial\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.line\",\"elementType\":\"geometry\",\"stylers\":[{\"saturation\":\"-33\"},{\"lightness\":\"22\"},{\"gamma\":\"2.08\"}]},{\"featureType\":\"transit.station.airport\",\"elementType\":\"geometry\",\"stylers\":[{\"gamma\":\"2.08\"},{\"hue\":\"#ffa200\"}]},{\"featureType\":\"transit.station.airport\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.station.rail\",\"elementType\":\"labels.text\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.station.rail\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"simplified\"},{\"saturation\":\"-55\"},{\"lightness\":\"-2\"},{\"gamma\":\"1.88\"},{\"hue\":\"#ffab00\"}]},{\"featureType\":\"water\",\"elementType\":\"all\",\"stylers\":[{\"color\":\"#bbd9e5\"},{\"visibility\":\"simplified\"}]}]","closeIcon":"https:\/\/immeublesalexcellence.com\/wp-content\/themes\/houzez\/img\/map\/close.png","infoWindowPlac":"https:\/\/placehold.it\/120x90&text=Immeubles+Alexcellence"};
2297 +/* ]]> */
2298 +</script>
2299 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/single-property-osm-map.js?ver=3.4.4" id="houzez-single-property-map-js"></script>
2300 +<script type="text/javascript" id="cmplz-cookiebanner-js-extra">
2301 +/* <![CDATA[ */
2302 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"0","banner_version":"8517","version":"7.3.2","store_consent":"1","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"1","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/immeublesalexcellence.com\/wp-json\/complianz\/v1\/","locale":"lang=fr&locale=fr_FR","set_cookies_on_root":"0","cookie_domain":"","current_policy_id":"37","cookie_path":"\/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"<div class=\"cmplz-blocked-content-notice-body\">Cliquez sur \u00ab\u00a0J\u2019accepte\u00a0\u00bb pour activer {service}\u00a0<div class=\"cmplz-links\"><a href=\"#\" class=\"cmplz-link cookie-statement\">{title}<\/a><\/div><\/div><button class=\"cmplz-accept-service\">J\u2019accepte<\/button>","css_file":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=8517","page_links":{"ca":{"cookie-statement":{"title":"Politique de cookies ","url":"https:\/\/immeublesalexcellence.com\/politique-de-cookies-ca\/"},"privacy-statement":{"title":"D\u00e9claration de confidentialit\u00e9 ","url":"https:\/\/immeublesalexcellence.com\/declaration-de-confidentialite-ca\/"},"privacy-statement-children":{"title":"","url":"https:\/\/immeublesalexcellence.com\/appartements-a-louer\/"}}},"tm_categories":"","forceEnableStats":"1","preview":"","clean_cookies":"1","aria_label":"Cliquez sur le bouton pour activer {service}"};
2303 +/* ]]> */
2304 +</script>
2305 +<script defer type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/cookiebanner/js/complianz.min.js?ver=1736710566" id="cmplz-cookiebanner-js"></script>
2306 +<script type="text/javascript" id="cmplz-cookiebanner-js-after">
2307 +/* <![CDATA[ */
2308 +
2309 + if ('undefined' != typeof window.jQuery) {
2310 + jQuery(document).ready(function ($) {
2311 + $(document).on('elementor/popup/show', () => {
2312 + let rev_cats = cmplz_categories.reverse();
2313 + for (let key in rev_cats) {
2314 + if (rev_cats.hasOwnProperty(key)) {
2315 + let category = cmplz_categories[key];
2316 + if (cmplz_has_consent(category)) {
2317 + document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => {
2318 + cmplz_remove_placeholder(obj);
2319 + });
2320 + }
2321 + }
2322 + }
2323 +
2324 + let services = cmplz_get_services_on_page();
2325 + for (let key in services) {
2326 + if (services.hasOwnProperty(key)) {
2327 + let service = services[key].service;
2328 + let category = services[key].category;
2329 + if (cmplz_has_service_consent(service, category)) {
2330 + document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => {
2331 + cmplz_remove_placeholder(obj);
2332 + });
2333 + }
2334 + }
2335 + }
2336 + });
2337 + });
2338 + }
2339 +
2340 +
2341 +/* ]]> */
2342 +</script>
2343 +<!-- Statistics script Complianz GDPR/CCPA -->
2344 + <script data-category="functional">window['gtag_enable_tcf_support'] = false;
2345 +window.dataLayer = window.dataLayer || [];
2346 +function gtag(){dataLayer.push(arguments);}
2347 +gtag('js', new Date());
2348 +gtag('config', '', {
2349 + cookie_flags:'secure;samesite=none',
2350 + 'anonymize_ip': true
2351 +});
2352 +</script>
2353 +</body>
2354 +</html>
added tests/fixtures/alexcellence/a9ce416aa4dd1ba18b9d.html +2389 −0
@@ -0,0 +1,2389 @@
1 +<!doctype html>
2 +<html lang="fr-FR">
3 +<head>
4 + <meta charset="UTF-8" />
5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 + <link rel="profile" href="https://gmpg.org/xfn/11" />
7 + <meta name="format-detection" content="telephone=no">
8 + <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://immeublesalexcellence.com/wp-content/themes/houzez/img/studio-icon.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>
9 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
10 + <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
11 +
12 + <!-- This site is optimized with the Yoast SEO plugin v24.3 - https://yoast.com/wordpress/plugins/seo/ -->
13 + <title>4½ à Louer à Sherbrooke a proximité Université Sherbrooke</title>
14 + <meta name="description" content="Appartement 4½ moderne à aire ouverte près de l&#039;Université de Sherbrooke. Stationnement inclus, piscine extérieure et accès facile." />
15 + <link rel="canonical" href="https://immeublesalexcellence.com/appartements/4½-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/" />
16 + <meta property="og:locale" content="fr_FR" />
17 + <meta property="og:type" content="article" />
18 + <meta property="og:title" content="4½ à Louer à Sherbrooke a proximité Université Sherbrooke" />
19 + <meta property="og:description" content="Appartement 4½ moderne à aire ouverte près de l&#039;Université de Sherbrooke. Stationnement inclus, piscine extérieure et accès facile." />
20 + <meta property="og:url" content="https://immeublesalexcellence.com/appartements/4½-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/" />
21 + <meta property="og:site_name" content="Immeubles Alexcellence" />
22 + <meta property="article:publisher" content="https://www.facebook.com/immeublesalexcellence" />
23 + <meta property="article:modified_time" content="2026-07-17T19:48:44+00:00" />
24 + <meta property="og:image" content="https://immeublesalexcellence.com/wp-content/uploads/2025/06/1-FRONT-logement-a-louer-Sherbrooke-20221207_120438.jpg" />
25 + <meta property="og:image:width" content="1024" />
26 + <meta property="og:image:height" content="768" />
27 + <meta property="og:image:type" content="image/jpeg" />
28 + <meta name="twitter:card" content="summary_large_image" />
29 + <meta name="twitter:label1" content="Durée de lecture estimée" />
30 + <meta name="twitter:data1" content="2 minutes" />
31 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/","url":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/","name":"4½ à Louer à Sherbrooke a proximité Université Sherbrooke","isPartOf":{"@id":"https://immeublesalexcellence.com/#website"},"primaryImageOfPage":{"@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/#primaryimage"},"image":{"@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/#primaryimage"},"thumbnailUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/06/1-FRONT-logement-a-louer-Sherbrooke-20221207_120438.jpg","datePublished":"2026-07-02T16:20:14+00:00","dateModified":"2026-07-17T19:48:44+00:00","description":"Appartement 4½ moderne à aire ouverte près de l'Université de Sherbrooke. Stationnement inclus, piscine extérieure et accès facile.","breadcrumb":{"@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://immeublesalexcellence.com/appartements/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/#primaryimage","url":"https://immeublesalexcellence.com/wp-content/uploads/2025/06/1-FRONT-logement-a-louer-Sherbrooke-20221207_120438.jpg","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/06/1-FRONT-logement-a-louer-Sherbrooke-20221207_120438.jpg","width":4000,"height":3000},{"@type":"BreadcrumbList","@id":"https://immeublesalexcellence.com/appartements/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https://immeublesalexcellence.com/"},{"@type":"ListItem","position":2,"name":"Propriétés","item":"https://immeublesalexcellence.com/appartements/"},{"@type":"ListItem","position":3,"name":"4½ à proximité du Carrefour de l&rsquo;Estrie, rue Savio"}]},{"@type":"WebSite","@id":"https://immeublesalexcellence.com/#website","url":"https://immeublesalexcellence.com/","name":"Immeubles Alexcellence","description":"Appartement a louer Université Sherbrooke","publisher":{"@id":"https://immeublesalexcellence.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://immeublesalexcellence.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https://immeublesalexcellence.com/#organization","name":"Immeubles Alexcellence","url":"https://immeublesalexcellence.com/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/#/schema/logo/image/","url":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","width":436,"height":123,"caption":"Immeubles Alexcellence"},"image":{"@id":"https://immeublesalexcellence.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/immeublesalexcellence","https://www.instagram.com/immeublealexellence/"]}]}</script>
32 + <!-- / Yoast SEO plugin. -->
33 +
34 +
35 +<link rel='dns-prefetch' href='//www.google.com' />
36 +<link rel='dns-prefetch' href='//fonts.googleapis.com' />
37 +<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin />
38 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux" href="https://immeublesalexcellence.com/feed/" />
39 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux des commentaires" href="https://immeublesalexcellence.com/comments/feed/" />
40 +<script type="text/javascript">
41 +/* <![CDATA[ */
42 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/immeublesalexcellence.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.5"}};
43 +/*! This file is auto-generated */
44 +!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
45 +/* ]]> */
46 +</script>
47 +<style id='wp-emoji-styles-inline-css' type='text/css'>
48 +
49 + img.wp-smiley, img.emoji {
50 + display: inline !important;
51 + border: none !important;
52 + box-shadow: none !important;
53 + height: 1em !important;
54 + width: 1em !important;
55 + margin: 0 0.07em !important;
56 + vertical-align: -0.1em !important;
57 + background: none !important;
58 + padding: 0 !important;
59 + }
60 +</style>
61 +<link rel='stylesheet' id='wp-block-library-css' href='https://immeublesalexcellence.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.5' type='text/css' media='all' />
62 +<style id='classic-theme-styles-inline-css' type='text/css'>
63 +/*! This file is auto-generated */
64 +.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}
65 +</style>
66 +<style id='global-styles-inline-css' type='text/css'>
67 +: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,rgba(6,147,227,1) 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,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%,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 rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}: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;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.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;}
68 +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
69 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
70 +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
71 +</style>
72 +<link rel='stylesheet' id='elementor-frontend-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.27.1' type='text/css' media='all' />
73 +<link rel='stylesheet' id='elementor-post-6-css' href='https://immeublesalexcellence.com/wp-content/uploads/elementor/css/post-6.css?ver=1737736055' type='text/css' media='all' />
74 +<link rel='stylesheet' id='font-awesome-5-all-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.27.1' type='text/css' media='all' />
75 +<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.27.1' type='text/css' media='all' />
76 +<link rel='stylesheet' id='widget-text-editor-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.27.1' type='text/css' media='all' />
77 +<link rel='stylesheet' id='houzez-studio-css' href='https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/css/houzez-studio-public.css?ver=1.2.1' type='text/css' media='all' />
78 +<link rel='stylesheet' id='cmplz-general-css' href='https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/assets/css/cookieblocker.min.css?ver=1736710567' type='text/css' media='all' />
79 +<link rel='stylesheet' id='houzez-all-css-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/css/all-css.css?ver=3.4.4' type='text/css' media='all' />
80 +<link rel='stylesheet' id='houzez-style-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/style.css?ver=3.4.4' type='text/css' media='all' />
81 +<style id='houzez-style-inline-css' type='text/css'>
82 +
83 + @media (min-width: 1200px) {
84 + .container {
85 + max-width: 1310px;
86 + }
87 + }
88 + .status-color-21 {
89 + background-color: #45962e;
90 + }
91 +
92 + .status-color-199 {
93 + background-color: #595959;
94 + }
95 +
96 + body {
97 + font-family: Roboto;
98 + font-size: 15px;
99 + font-weight: 400;
100 + line-height: 25px;
101 + text-transform: none;
102 + }
103 + .main-nav,
104 + .dropdown-menu,
105 + .login-register,
106 + .btn.btn-create-listing,
107 + .logged-in-nav,
108 + .btn-phone-number {
109 + font-family: Roboto;
110 + font-size: 14px;
111 + font-weight: 500;
112 + text-align: left;
113 + text-transform: none;
114 + }
115 +
116 + .btn,
117 + .ele-btn,
118 + .houzez-search-button,
119 + .houzez-submit-button,
120 + .form-control,
121 + .bootstrap-select .text,
122 + .sort-by-title,
123 + .woocommerce ul.products li.product .button {
124 + font-family: Roboto;
125 + font-size: 15px;
126 + }
127 +
128 + h1, h2, h3, h4, h5, h6, .item-title {
129 + font-family: Roboto;
130 + font-weight: 500;
131 + text-transform: inherit;
132 + }
133 +
134 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
135 + font-weight: 500;
136 + text-transform: inherit;
137 + text-align: inherit;
138 + }
139 +
140 + .top-bar-wrap {
141 + font-family: Roboto;
142 + font-size: 13px;
143 + font-weight: 300;
144 + line-height: 25px;
145 + text-align: left;
146 + text-transform: none;
147 + }
148 + .footer-wrap {
149 + font-family: Roboto;
150 + font-size: 14px;
151 + font-weight: 300;
152 + line-height: 25px;
153 + text-align: left;
154 + text-transform: none;
155 + }
156 +
157 + .header-v1 .header-inner-wrap,
158 + .header-v1 .navbar-logged-in-wrap {
159 + line-height: 60px;
160 + height: 60px;
161 + }
162 + .header-v2 .header-top .navbar {
163 + height: 110px;
164 + }
165 +
166 + .header-v2 .header-bottom .header-inner-wrap,
167 + .header-v2 .header-bottom .navbar-logged-in-wrap {
168 + line-height: 54px;
169 + height: 54px;
170 + }
171 +
172 + .header-v3 .header-top .header-inner-wrap,
173 + .header-v3 .header-top .header-contact-wrap {
174 + height: 80px;
175 + line-height: 80px;
176 + }
177 + .header-v3 .header-bottom .header-inner-wrap,
178 + .header-v3 .header-bottom .navbar-logged-in-wrap {
179 + line-height: 54px;
180 + height: 54px;
181 + }
182 + .header-v4 .header-inner-wrap,
183 + .header-v4 .navbar-logged-in-wrap {
184 + line-height: 90px;
185 + height: 90px;
186 + }
187 + .header-v5 .header-top .header-inner-wrap,
188 + .header-v5 .header-top .navbar-logged-in-wrap {
189 + line-height: 110px;
190 + height: 110px;
191 + }
192 + .header-v5 .header-bottom .header-inner-wrap {
193 + line-height: 54px;
194 + height: 54px;
195 + }
196 + .header-v6 .header-inner-wrap,
197 + .header-v6 .navbar-logged-in-wrap {
198 + height: 60px;
199 + line-height: 60px;
200 + }
201 + @media (min-width: 1200px) {
202 + .header-v5 .header-top .container {
203 + max-width: 1170px;
204 + }
205 + }
206 +
207 + body,
208 + .main-wrap,
209 + .fw-property-documents-wrap h3 span,
210 + .fw-property-details-wrap h3 span {
211 + background-color: #f7f7f7;
212 + }
213 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
214 + background-color: #ffffff;
215 + }
216 +
217 + body,
218 + .form-control,
219 + .bootstrap-select .text,
220 + .item-title a,
221 + .listing-tabs .nav-tabs .nav-link,
222 + .item-wrap-v2 .item-amenities li span,
223 + .item-wrap-v2 .item-amenities li:before,
224 + .item-parallax-wrap .item-price-wrap,
225 + .list-view .item-body .item-price-wrap,
226 + .property-slider-item .item-price-wrap,
227 + .page-title-wrap .item-price-wrap,
228 + .agent-information .agent-phone span a,
229 + .property-overview-wrap ul li strong,
230 + .mobile-property-title .item-price-wrap .item-price,
231 + .fw-property-features-left li a,
232 + .lightbox-content-wrap .item-price-wrap,
233 + .blog-post-item-v1 .blog-post-title h3 a,
234 + .blog-post-content-widget h4 a,
235 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
236 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
237 + .agent-list-wrap .agent-list-content h2 a,
238 + .agent-list-wrap .agent-list-contact li a,
239 + .agent-contacts-wrap li a,
240 + .menu-edit-property li a,
241 + .statistic-referrals-list li a,
242 + .chart-nav .nav-pills .nav-link,
243 + .dashboard-table-properties td .property-payment-status,
244 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
245 + .payment-method-block .radio-tab .control-text,
246 + .post-title-wrap h2 a,
247 + .lead-nav-tab.nav-pills .nav-link,
248 + .deals-nav-tab.nav-pills .nav-link,
249 + .btn-light-grey-outlined:hover,
250 + button:not(.bs-placeholder) .filter-option-inner-inner,
251 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
252 + .products > .product > .item-body > a,
253 + .woocommerce ul.products li.product .price,
254 + .woocommerce div.product p.price,
255 + .woocommerce div.product span.price,
256 + .woocommerce #reviews #comments ol.commentlist li .meta,
257 + .woocommerce-MyAccount-navigation ul li a,
258 + .activitiy-item-close-button a,
259 + .property-section-wrap li a {
260 + color: #222222;
261 + }
262 +
263 +
264 +
265 + a,
266 + a:hover,
267 + a:active,
268 + a:focus,
269 + .primary-text,
270 + .btn-clear,
271 + .btn-apply,
272 + .btn-primary-outlined,
273 + .btn-primary-outlined:before,
274 + .item-title a:hover,
275 + .sort-by .bootstrap-select .bs-placeholder,
276 + .sort-by .bootstrap-select > .btn,
277 + .sort-by .bootstrap-select > .btn:active,
278 + .page-link,
279 + .page-link:hover,
280 + .accordion-title:before,
281 + .blog-post-content-widget h4 a:hover,
282 + .agent-list-wrap .agent-list-content h2 a:hover,
283 + .agent-list-wrap .agent-list-contact li a:hover,
284 + .agent-contacts-wrap li a:hover,
285 + .agent-nav-wrap .nav-pills .nav-link,
286 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
287 + .menu-edit-property li a.active,
288 + .menu-edit-property li a:hover,
289 + .dashboard-statistic-block h3 .fa,
290 + .statistic-referrals-list li a:hover,
291 + .chart-nav .nav-pills .nav-link.active,
292 + .board-message-icon-wrap.active,
293 + .post-title-wrap h2 a:hover,
294 + .listing-switch-view .switch-btn.active,
295 + .item-wrap-v6 .item-price-wrap,
296 + .listing-v6 .list-view .item-body .item-price-wrap,
297 + .woocommerce nav.woocommerce-pagination ul li a,
298 + .woocommerce nav.woocommerce-pagination ul li span,
299 + .woocommerce-MyAccount-navigation ul li a:hover,
300 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
301 + .property-schedule-tour-form-wrap .control:hover,
302 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
303 + .login-register .btn-icon-login-register + .dropdown-menu a,
304 + .activitiy-item-close-button a:hover,
305 + .property-section-wrap li a:hover,
306 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active,
307 + .property-lightbox-v2-sections-navigation .slick-prev,
308 + .property-lightbox-v2-sections-navigation .slick-next,
309 + .property-lightbox-v2-sections-navigation .slick-slide.current-section,
310 + .property-lightbox-v2-sections-navigation .nav-link.active,
311 + .agent-detail-page-v2 .listing-tabs .nav-link.active {
312 + color: #014582;
313 + }
314 +
315 + .agent-list-position a {
316 + color: #014582;
317 + }
318 +
319 + .control input:checked ~ .control__indicator,
320 + .top-banner-wrap .nav-pills .nav-link,
321 + .btn-primary-outlined:hover,
322 + .page-item.active .page-link,
323 + .slick-prev:hover,
324 + .slick-prev:focus,
325 + .slick-next:hover,
326 + .slick-next:focus,
327 + .mobile-property-tools .nav-pills .nav-link.active,
328 + .login-register-form .modal-header,
329 + .agent-nav-wrap .nav-pills .nav-link.active,
330 + .board-message-icon-wrap .notification-circle,
331 + .primary-label,
332 + .fc-event, .fc-event-dot,
333 + .compare-table .table-hover > tbody > tr:hover,
334 + .post-tag,
335 + .datepicker table tr td.active.active,
336 + .datepicker table tr td.active.disabled,
337 + .datepicker table tr td.active.disabled.active,
338 + .datepicker table tr td.active.disabled.disabled,
339 + .datepicker table tr td.active.disabled:active,
340 + .datepicker table tr td.active.disabled:hover,
341 + .datepicker table tr td.active.disabled:hover.active,
342 + .datepicker table tr td.active.disabled:hover.disabled,
343 + .datepicker table tr td.active.disabled:hover:active,
344 + .datepicker table tr td.active.disabled:hover:hover,
345 + .datepicker table tr td.active.disabled:hover[disabled],
346 + .datepicker table tr td.active.disabled[disabled],
347 + .datepicker table tr td.active:active,
348 + .datepicker table tr td.active:hover,
349 + .datepicker table tr td.active:hover.active,
350 + .datepicker table tr td.active:hover.disabled,
351 + .datepicker table tr td.active:hover:active,
352 + .datepicker table tr td.active:hover:hover,
353 + .datepicker table tr td.active:hover[disabled],
354 + .datepicker table tr td.active[disabled],
355 + .ui-slider-horizontal .ui-slider-range,
356 + .btn-bubble {
357 + background-color: #014582;
358 + }
359 +
360 + .control input:checked ~ .control__indicator,
361 + .btn-primary-outlined,
362 + .page-item.active .page-link,
363 + .mobile-property-tools .nav-pills .nav-link.active,
364 + .agent-nav-wrap .nav-pills .nav-link,
365 + .agent-nav-wrap .nav-pills .nav-link.active,
366 + .chart-nav .nav-pills .nav-link.active,
367 + .dashaboard-snake-nav .step-block.active,
368 + .fc-event,
369 + .fc-event-dot,
370 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
371 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
372 + border-color: #014582;
373 + }
374 +
375 + .slick-arrow:hover {
376 + background-color: rgba(36,52,140,0.52);
377 + }
378 +
379 + .slick-arrow {
380 + background-color: #014582;
381 + }
382 +
383 + .property-banner .nav-pills .nav-link.active {
384 + background-color: rgba(36,52,140,0.52) !important;
385 + }
386 +
387 + .property-navigation-wrap a.active {
388 + color: #014582;
389 + -webkit-box-shadow: inset 0 -3px #014582;
390 + box-shadow: inset 0 -3px #014582;
391 + }
392 +
393 + .btn-primary,
394 + .fc-button-primary,
395 + .woocommerce nav.woocommerce-pagination ul li a:focus,
396 + .woocommerce nav.woocommerce-pagination ul li a:hover,
397 + .woocommerce nav.woocommerce-pagination ul li span.current {
398 + color: #fff;
399 + background-color: #014582;
400 + border-color: #014582;
401 + }
402 + .btn-primary:focus, .btn-primary:focus:active,
403 + .fc-button-primary:focus,
404 + .fc-button-primary:focus:active {
405 + color: #fff;
406 + background-color: #014582;
407 + border-color: #014582;
408 + }
409 + .btn-primary:hover,
410 + .fc-button-primary:hover {
411 + color: #fff;
412 + background-color: #24348c;
413 + border-color: #24348c;
414 + }
415 + .btn-primary:active,
416 + .btn-primary:not(:disabled):not(:disabled):active,
417 + .fc-button-primary:active,
418 + .fc-button-primary:not(:disabled):not(:disabled):active {
419 + color: #fff;
420 + background-color: #24348c;
421 + border-color: #24348c;
422 + }
423 +
424 + .btn-secondary,
425 + .woocommerce span.onsale,
426 + .woocommerce ul.products li.product .button,
427 + .woocommerce #respond input#submit.alt,
428 + .woocommerce a.button.alt,
429 + .woocommerce button.button.alt,
430 + .woocommerce input.button.alt,
431 + .woocommerce #review_form #respond .form-submit input,
432 + .woocommerce #respond input#submit,
433 + .woocommerce a.button,
434 + .woocommerce button.button,
435 + .woocommerce input.button {
436 + color: #fff;
437 + background-color: #2ea7b2;
438 + border-color: #2ea7b2;
439 + }
440 + .woocommerce ul.products li.product .button:focus,
441 + .woocommerce ul.products li.product .button:active,
442 + .woocommerce #respond input#submit.alt:focus,
443 + .woocommerce a.button.alt:focus,
444 + .woocommerce button.button.alt:focus,
445 + .woocommerce input.button.alt:focus,
446 + .woocommerce #respond input#submit.alt:active,
447 + .woocommerce a.button.alt:active,
448 + .woocommerce button.button.alt:active,
449 + .woocommerce input.button.alt:active,
450 + .woocommerce #review_form #respond .form-submit input:focus,
451 + .woocommerce #review_form #respond .form-submit input:active,
452 + .woocommerce #respond input#submit:active,
453 + .woocommerce a.button:active,
454 + .woocommerce button.button:active,
455 + .woocommerce input.button:active,
456 + .woocommerce #respond input#submit:focus,
457 + .woocommerce a.button:focus,
458 + .woocommerce button.button:focus,
459 + .woocommerce input.button:focus {
460 + color: #fff;
461 + background-color: #2ea7b2;
462 + border-color: #2ea7b2;
463 + }
464 + .btn-secondary:hover,
465 + .woocommerce ul.products li.product .button:hover,
466 + .woocommerce #respond input#submit.alt:hover,
467 + .woocommerce a.button.alt:hover,
468 + .woocommerce button.button.alt:hover,
469 + .woocommerce input.button.alt:hover,
470 + .woocommerce #review_form #respond .form-submit input:hover,
471 + .woocommerce #respond input#submit:hover,
472 + .woocommerce a.button:hover,
473 + .woocommerce button.button:hover,
474 + .woocommerce input.button:hover {
475 + color: #fff;
476 + background-color: #333333;
477 + border-color: #333333;
478 + }
479 + .btn-secondary:active,
480 + .btn-secondary:not(:disabled):not(:disabled):active {
481 + color: #fff;
482 + background-color: #333333;
483 + border-color: #333333;
484 + }
485 +
486 + .btn-primary-outlined {
487 + color: #014582;
488 + background-color: transparent;
489 + border-color: #014582;
490 + }
491 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
492 + color: #014582;
493 + background-color: transparent;
494 + border-color: #014582;
495 + }
496 + .btn-primary-outlined:hover {
497 + color: #fff;
498 + background-color: #24348c;
499 + border-color: #24348c;
500 + }
501 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
502 + color: #014582;
503 + background-color: rgba(26, 26, 26, 0);
504 + border-color: #24348c;
505 + }
506 +
507 + .btn-secondary-outlined {
508 + color: #2ea7b2;
509 + background-color: transparent;
510 + border-color: #2ea7b2;
511 + }
512 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
513 + color: #2ea7b2;
514 + background-color: transparent;
515 + border-color: #2ea7b2;
516 + }
517 + .btn-secondary-outlined:hover {
518 + color: #fff;
519 + background-color: #333333;
520 + border-color: #333333;
521 + }
522 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
523 + color: #2ea7b2;
524 + background-color: rgba(26, 26, 26, 0);
525 + border-color: #333333;
526 + }
527 +
528 + .btn-call {
529 + color: #2ea7b2;
530 + background-color: transparent;
531 + border-color: #2ea7b2;
532 + }
533 + .btn-call:focus, .btn-call:focus:active {
534 + color: #2ea7b2;
535 + background-color: transparent;
536 + border-color: #2ea7b2;
537 + }
538 + .btn-call:hover {
539 + color: #2ea7b2;
540 + background-color: rgba(26, 26, 26, 0);
541 + border-color: #333333;
542 + }
543 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
544 + color: #2ea7b2;
545 + background-color: rgba(26, 26, 26, 0);
546 + border-color: #333333;
547 + }
548 + .icon-delete .btn-loader:after{
549 + border-color: #014582 transparent #014582 transparent
550 + }
551 +
552 + .header-v1 {
553 + background-color: #004274;
554 + border-bottom: 1px solid #004274;
555 + }
556 +
557 + .header-v1 a.nav-link {
558 + color: #ffffff;
559 + }
560 +
561 + .header-v1 a.nav-link:hover,
562 + .header-v1 a.nav-link:active {
563 + color: #00aeff;
564 + background-color: rgba(255,255,255,0.2);
565 + }
566 + .header-desktop .main-nav .nav-link {
567 + letter-spacing: 0.0px;
568 + }
569 +
570 + .header-v2 .header-top,
571 + .header-v5 .header-top,
572 + .header-v2 .header-contact-wrap {
573 + background-color: #ffffff;
574 + }
575 +
576 + .header-v2 .header-bottom,
577 + .header-v5 .header-bottom {
578 + background-color: #004274;
579 + }
580 +
581 + .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 {
582 + color: #004274;
583 + }
584 +
585 + .header-v2 .header-contact-left {
586 + color: #004274;
587 + }
588 +
589 + .header-v2 .header-bottom,
590 + .header-v2 .navbar-nav > li,
591 + .header-v2 .navbar-nav > li:first-of-type,
592 + .header-v5 .header-bottom,
593 + .header-v5 .navbar-nav > li,
594 + .header-v5 .navbar-nav > li:first-of-type {
595 + border-color: rgba(255,255,255,0.2);
596 + }
597 +
598 + .header-v2 a.nav-link,
599 + .header-v5 a.nav-link {
600 + color: #ffffff;
601 + }
602 +
603 + .header-v2 a.nav-link:hover,
604 + .header-v2 a.nav-link:active,
605 + .header-v5 a.nav-link:hover,
606 + .header-v5 a.nav-link:active {
607 + color: #00aeff;
608 + background-color: rgba(255,255,255,0.2);
609 + }
610 +
611 + .header-v2 .header-contact-right a:hover,
612 + .header-v2 .header-contact-right a:active,
613 + .header-v3 .header-contact-right a:hover,
614 + .header-v3 .header-contact-right a:active {
615 + background-color: transparent;
616 + }
617 +
618 + .header-v2 .header-social-icons a,
619 + .header-v5 .header-social-icons a {
620 + color: #004274;
621 + }
622 +
623 + .header-v3 .header-top {
624 + background-color: #ffffff;
625 + }
626 +
627 + .header-v3 .header-bottom {
628 + background-color: #004272;
629 + }
630 +
631 + .header-v3 .header-contact,
632 + .header-v3-mobile {
633 + background-color: #00aeef;
634 + color: #ffffff;
635 + }
636 +
637 + .header-v3 .header-bottom,
638 + .header-v3 .login-register,
639 + .header-v3 .navbar-nav > li,
640 + .header-v3 .navbar-nav > li:first-of-type {
641 + border-color: ;
642 + }
643 +
644 + .header-v3 a.nav-link,
645 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
646 + color: #003a6b;
647 + }
648 +
649 + .header-v3 a.nav-link:hover,
650 + .header-v3 a.nav-link:active {
651 + color: #00aeff;
652 + background-color: rgba(26,94,158,1);
653 + }
654 +
655 + .header-v3 .header-social-icons a {
656 + color: #FFFFFF;
657 + }
658 +
659 + .header-v4 {
660 + background-color: #000000;
661 + }
662 +
663 + .header-v4 a.nav-link {
664 + color: #ffffff;
665 + }
666 +
667 + .header-v4 a.nav-link:hover,
668 + .header-v4 a.nav-link:active {
669 + color: #00aeff;
670 + background-color: rgba(0, 174, 255, 0.1);
671 + }
672 +
673 + .header-v6 .header-top {
674 + background-color: #00AEEF;
675 + }
676 +
677 + .header-v6 a.nav-link {
678 + color: #FFFFFF;
679 + }
680 +
681 + .header-v6 a.nav-link:hover,
682 + .header-v6 a.nav-link:active {
683 + color: #00aeff;
684 + background-color: rgba(255,255,255,0.2);
685 + }
686 +
687 + .header-v6 .header-social-icons a {
688 + color: #FFFFFF;
689 + }
690 +
691 + .header-mobile {
692 + background-color: #ffffff;
693 + }
694 + .header-mobile .toggle-button-left,
695 + .header-mobile .toggle-button-right {
696 + color: #0b0049;
697 + }
698 +
699 + .nav-mobile .logged-in-nav a,
700 + .nav-mobile .main-nav,
701 + .nav-mobile .navi-login-register {
702 + background-color: #ffffff;
703 + }
704 +
705 + .nav-mobile .logged-in-nav a,
706 + .nav-mobile .main-nav .nav-item .nav-item a,
707 + .nav-mobile .main-nav .nav-item a,
708 + .navi-login-register .main-nav .nav-item a {
709 + color: #000000;
710 + border-bottom: 1px solid #000000;
711 + background-color: #ffffff;
712 + }
713 +
714 + .nav-mobile .btn-create-listing,
715 + .navi-login-register .btn-create-listing {
716 + color: #fff;
717 + border: 1px solid #014582;
718 + background-color: #014582;
719 + }
720 +
721 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
722 + .navi-login-register .btn-create-listing:hover,
723 + .navi-login-register .btn-create-listing:active {
724 + color: #fff;
725 + border: 1px solid #014582;
726 + background-color: rgba(0, 174, 255, 0.65);
727 + }
728 +
729 + .header-transparent-wrap .header-v4 {
730 + background-color: transparent;
731 + border-bottom: 1px none rgba(255,255,255,0.3);
732 + }
733 +
734 + .header-transparent-wrap .header-v4 a {
735 + color: #ffffff;
736 + }
737 +
738 + .header-transparent-wrap .header-v4 a:hover,
739 + .header-transparent-wrap .header-v4 a:active {
740 + color: #4aa7e1;
741 + background-color: rgba(255, 255, 255, 0.1);
742 + }
743 +
744 + .main-nav .navbar-nav .nav-item .dropdown-menu,
745 + .login-register .login-register-nav li .dropdown-menu {
746 + background-color: rgba(255,255,255,0.95);
747 + }
748 +
749 + .login-register .login-register-nav li .dropdown-menu:before {
750 + border-left-color: rgba(255,255,255,0.95);
751 + border-top-color: rgba(255,255,255,0.95);
752 + }
753 +
754 + .main-nav .navbar-nav .nav-item .nav-item a,
755 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
756 + color: #888888;
757 + border-bottom: 1px solid #e6e6e6;
758 + }
759 +
760 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
761 + .main-nav .navbar-nav .nav-item .nav-item a:active,
762 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
763 + color: #4aa7e1;
764 + }
765 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
766 + .main-nav .navbar-nav .nav-item .nav-item a:active,
767 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
768 + background-color: rgba(0, 174, 255, 0.1);
769 + }
770 +
771 + .header-main-wrap .btn-create-listing {
772 + color: #4aa7e1;
773 + border: 1px solid #4aa7e1;
774 + background-color: #ffffff;
775 + }
776 +
777 + .header-main-wrap .btn-create-listing:hover,
778 + .header-main-wrap .btn-create-listing:active {
779 + color: rgba(255,255,255,1);
780 + border: 1px solid #4aa7e1;
781 + background-color: rgba(74,167,225,1);
782 + }
783 +
784 + .header-transparent-wrap .header-v4 .btn-create-listing {
785 + color: #ffffff;
786 + border: 1px solid #ffffff;
787 + background-color: rgba(255,255,255,0.2);
788 + }
789 +
790 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
791 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
792 + color: rgba(255,255,255,1);
793 + border: 1px solid #4aa7e1;
794 + background-color: rgba(74,167,225,1);
795 + }
796 +
797 + .header-transparent-wrap .logged-in-nav a,
798 + .logged-in-nav a {
799 + color: #15268c;
800 + border-color: #e6e6e6;
801 + background-color: #FFFFFF;
802 + }
803 +
804 + .header-transparent-wrap .logged-in-nav a:hover,
805 + .header-transparent-wrap .logged-in-nav a:active,
806 + .logged-in-nav a:hover,
807 + .logged-in-nav a:active {
808 + color: #17298c;
809 + background-color: rgba(204,204,204,0.15);
810 + border-color: #e6e6e6;
811 + }
812 +
813 + .form-control::-webkit-input-placeholder,
814 + .search-banner-wrap ::-webkit-input-placeholder,
815 + .advanced-search ::-webkit-input-placeholder,
816 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
817 + .overlay-search-advanced-module ::-webkit-input-placeholder {
818 + color: #a1a7a8;
819 + }
820 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
821 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
822 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
823 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
824 + color: #a1a7a8;
825 + }
826 + .form-control::placeholder,
827 + .search-banner-wrap ::-webkit-input-placeholder,
828 + .advanced-search ::-webkit-input-placeholder,
829 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
830 + .overlay-search-advanced-module ::-webkit-input-placeholder {
831 + color: #a1a7a8;
832 + }
833 +
834 + .search-banner-wrap ::-moz-placeholder,
835 + .advanced-search ::-moz-placeholder,
836 + .advanced-search-banner-wrap ::-moz-placeholder,
837 + .overlay-search-advanced-module ::-moz-placeholder {
838 + color: #a1a7a8;
839 + }
840 +
841 + .search-banner-wrap :-ms-input-placeholder,
842 + .advanced-search :-ms-input-placeholder,
843 + .advanced-search-banner-wrap ::-ms-input-placeholder,
844 + .overlay-search-advanced-module ::-ms-input-placeholder {
845 + color: #a1a7a8;
846 + }
847 +
848 + .search-banner-wrap :-moz-placeholder,
849 + .advanced-search :-moz-placeholder,
850 + .advanced-search-banner-wrap :-moz-placeholder,
851 + .overlay-search-advanced-module :-moz-placeholder {
852 + color: #a1a7a8;
853 + }
854 +
855 + .advanced-search .form-control,
856 + .advanced-search .bootstrap-select > .btn,
857 + .location-trigger,
858 + .vertical-search-wrap .form-control,
859 + .vertical-search-wrap .bootstrap-select > .btn,
860 + .step-search-wrap .form-control,
861 + .step-search-wrap .bootstrap-select > .btn,
862 + .advanced-search-banner-wrap .form-control,
863 + .advanced-search-banner-wrap .bootstrap-select > .btn,
864 + .search-banner-wrap .form-control,
865 + .search-banner-wrap .bootstrap-select > .btn,
866 + .overlay-search-advanced-module .form-control,
867 + .overlay-search-advanced-module .bootstrap-select > .btn,
868 + .advanced-search-v2 .advanced-search-btn,
869 + .advanced-search-v2 .advanced-search-btn:hover {
870 + border-color: #cccccc;
871 + }
872 +
873 + .advanced-search-nav,
874 + .search-expandable,
875 + .overlay-search-advanced-module {
876 + background-color: #FFFFFF;
877 + }
878 + .btn-search {
879 + color: #ffffff;
880 + background-color: #4aa7e1;
881 + border-color: #4aa7e1;
882 + }
883 + .btn-search:hover, .btn-search:active {
884 + color: #ffffff;
885 + background-color: #24348c;
886 + border-color: #24348c;
887 + }
888 + .advanced-search-btn {
889 + color: #666666;
890 + background-color: #ffffff;
891 + border-color: #dce0e0;
892 + }
893 + .advanced-search-btn:hover, .advanced-search-btn:active {
894 + color: #000000;
895 + background-color: #ffffff;
896 + border-color: #dce0e0;
897 + }
898 + .advanced-search-btn:focus {
899 + color: #666666;
900 + background-color: #ffffff;
901 + border-color: #dce0e0;
902 + }
903 + .search-expandable-label {
904 + color: #ffffff;
905 + background-color: #4aa7e1;
906 + }
907 + .advanced-search-nav {
908 + padding-top: 10px;
909 + padding-bottom: 10px;
910 + }
911 + .features-list-wrap .control--checkbox,
912 + .features-list-wrap .control--radio,
913 + .range-text,
914 + .features-list-wrap .control--checkbox,
915 + .features-list-wrap .btn-features-list,
916 + .overlay-search-advanced-module .search-title,
917 + .overlay-search-advanced-module .overlay-search-module-close {
918 + color: #222222;
919 + }
920 + .advanced-search-half-map {
921 + background-color: #FFFFFF;
922 + }
923 + .advanced-search-half-map .range-text,
924 + .advanced-search-half-map .features-list-wrap .control--checkbox,
925 + .advanced-search-half-map .features-list-wrap .btn-features-list {
926 + color: #222222;
927 + }
928 +
929 + .save-search-btn {
930 + border-color: #4aa7e1 ;
931 + background-color: #4aa7e1 ;
932 + color: #ffffff ;
933 + }
934 + .save-search-btn:hover,
935 + .save-search-btn:active {
936 + border-color: #4aa7e1;
937 + background-color: #4aa7e1 ;
938 + color: #ffffff ;
939 + }
940 + .label-featured {
941 + background-color: transparent;
942 + color: #ffffff;
943 + }
944 +
945 + .dashboard-side-wrap {
946 + background-color: #24348c;
947 + }
948 +
949 + .side-menu a {
950 + color: #ffffff;
951 + }
952 +
953 + .side-menu a.active,
954 + .side-menu .side-menu-parent-selected > a,
955 + .side-menu-dropdown a,
956 + .side-menu a:hover {
957 + color: #4aa7e1;
958 + }
959 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
960 + color: #4aa7e1
961 + }
962 +
963 + .detail-wrap {
964 + background-color: rgba(217,217,217,0.1);
965 + border-color: #d6d6d6;
966 + }
967 + .top-bar-wrap,
968 + .top-bar-wrap .dropdown-menu,
969 + .switcher-wrap .dropdown-menu {
970 + background-color: #262626;
971 + }
972 + .top-bar-wrap a,
973 + .top-bar-contact,
974 + .top-bar-slogan,
975 + .top-bar-wrap .btn,
976 + .top-bar-wrap .dropdown-menu,
977 + .switcher-wrap .dropdown-menu,
978 + .top-bar-wrap .navbar-toggler {
979 + color: #ffffff;
980 + }
981 + .top-bar-wrap a:hover,
982 + .top-bar-wrap a:active,
983 + .top-bar-wrap .btn:hover,
984 + .top-bar-wrap .btn:active,
985 + .top-bar-wrap .dropdown-menu li:hover,
986 + .top-bar-wrap .dropdown-menu li:active,
987 + .switcher-wrap .dropdown-menu li:hover,
988 + .switcher-wrap .dropdown-menu li:active {
989 + color: rgba(74,167,225,0.59);
990 + }
991 + .class-energy-indicator:nth-child(1) {
992 + background-color: #33a357;
993 + }
994 + .class-energy-indicator:nth-child(2) {
995 + background-color: #79b752;
996 + }
997 + .class-energy-indicator:nth-child(3) {
998 + background-color: #c3d545;
999 + }
1000 + .class-energy-indicator:nth-child(4) {
1001 + background-color: #fff12c;
1002 + }
1003 + .class-energy-indicator:nth-child(5) {
1004 + background-color: #edb731;
1005 + }
1006 + .class-energy-indicator:nth-child(6) {
1007 + background-color: #d66f2c;
1008 + }
1009 + .class-energy-indicator:nth-child(7) {
1010 + background-color: #cc232a;
1011 + }
1012 + .class-energy-indicator:nth-child(8) {
1013 + background-color: #cc232a;
1014 + }
1015 + .class-energy-indicator:nth-child(9) {
1016 + background-color: #cc232a;
1017 + }
1018 + .class-energy-indicator:nth-child(10) {
1019 + background-color: #cc232a;
1020 + }
1021 +
1022 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#24348c }
1023 + .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 }
1024 +
1025 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#4aa7e1 }
1026 +
1027 + .footer-top-wrap {
1028 + background-color: #181818;
1029 + }
1030 +
1031 + .footer-bottom-wrap {
1032 + background-color: #000000;
1033 + }
1034 +
1035 + .footer-top-wrap,
1036 + .footer-top-wrap a,
1037 + .footer-bottom-wrap,
1038 + .footer-bottom-wrap a,
1039 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
1040 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
1041 + .footer-top-wrap .blog-post-content-widget h4 a,
1042 + .footer-top-wrap .blog-post-content-widget,
1043 + .footer-top-wrap .form-tools .control,
1044 + .footer-top-wrap .slick-dots li.slick-active button:before,
1045 + .footer-top-wrap .slick-dots li button::before,
1046 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
1047 + color: #ffffff;
1048 + }
1049 +
1050 + .footer-top-wrap a:hover,
1051 + .footer-bottom-wrap a:hover,
1052 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
1053 + color: rgba(36,52,140,1);
1054 + }
1055 + .houzez-osm-cluster {
1056 + background-image: url(https://immeublesalexcellence.com/wp-content/themes/houzez/img/map/cluster-icon.png);
1057 + text-align: center;
1058 + color: #fff;
1059 + width: 48px;
1060 + height: 48px;
1061 + line-height: 48px;
1062 + }
1063 + section.top-banner-wrap.slider-revolution-wrap {
1064 + height: auto;
1065 +}
1066 +.label-status {
1067 + font-size: 14px;
1068 + text-transform: uppercase; /* Optionnel : Met les étiquettes en majuscules */
1069 +}
1070 +.hz-label {
1071 + font-size: 14px; /* Ajustez la taille selon vos besoins */
1072 + font-weight: bold; /* Rend le texte en gras */
1073 + color: #ffffff; /* Couleur du texte */
1074 + background-color: #166584; /* Couleur de fond */
1075 + padding: 5px 10px; /* Espacement interne */
1076 + border-radius: 3px; /* Coins arrondis */
1077 +}
1078 +</style>
1079 +<link rel='stylesheet' id='leaflet-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/js//vendors/leaflet/leaflet.css?ver=1.9.3' type='text/css' media='all' />
1080 +<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /></noscript><link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap&#038;ver=6.7.5' type='text/css' media='all' />
1081 +<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.27.1" id="font-awesome-4-shim-js"></script>
1082 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
1083 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
1084 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/js/houzez-studio-public.js?ver=1.2.1" id="houzez-studio-js"></script>
1085 +<link rel="https://api.w.org/" href="https://immeublesalexcellence.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://immeublesalexcellence.com/wp-json/wp/v2/properties/3190" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://immeublesalexcellence.com/xmlrpc.php?rsd" />
1086 +<meta name="generator" content="WordPress 6.7.5" />
1087 +<link rel='shortlink' href='https://immeublesalexcellence.com/?p=3190' />
1088 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F" />
1089 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&#038;format=xml" />
1090 +<meta name="generator" content="Redux 4.5.6" /> <style>.cmplz-hidden {
1091 + display: none !important;
1092 + }</style><meta name="generator" content="Elementor 3.27.1; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
1093 + <style>
1094 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1095 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1096 + background-image: none !important;
1097 + }
1098 + @media screen and (max-height: 1024px) {
1099 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1100 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1101 + background-image: none !important;
1102 + }
1103 + }
1104 + @media screen and (max-height: 640px) {
1105 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1106 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1107 + background-image: none !important;
1108 + }
1109 + }
1110 + </style>
1111 + <meta name="generator" content="Powered by Slider Revolution 6.7.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
1112 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-32x32.png" sizes="32x32" />
1113 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-192x192.png" sizes="192x192" />
1114 +<link rel="apple-touch-icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-180x180.png" />
1115 +<meta name="msapplication-TileImage" content="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-270x270.png" />
1116 +<script>function setREVStartSize(e){
1117 + //window.requestAnimationFrame(function() {
1118 + window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
1119 + window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
1120 + try {
1121 + var pw = document.getElementById(e.c).parentNode.offsetWidth,
1122 + newh;
1123 + pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw;
1124 + e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
1125 + e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
1126 + e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
1127 + e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
1128 + e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
1129 + e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
1130 + e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
1131 + if(e.layout==="fullscreen" || e.l==="fullscreen")
1132 + newh = Math.max(e.mh,window.RSIH);
1133 + else{
1134 + e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
1135 + for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
1136 + e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
1137 + e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
1138 + for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
1139 +
1140 + var nl = new Array(e.rl.length),
1141 + ix = 0,
1142 + sl;
1143 + e.tabw = e.tabhide>=pw ? 0 : e.tabw;
1144 + e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
1145 + e.tabh = e.tabhide>=pw ? 0 : e.tabh;
1146 + e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
1147 + for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
1148 + sl = nl[0];
1149 + for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
1150 + var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
1151 + newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
1152 + }
1153 + var el = document.getElementById(e.c);
1154 + if (el!==null && el) el.style.height = newh+"px";
1155 + el = document.getElementById(e.c+"_wrapper");
1156 + if (el!==null && el) {
1157 + el.style.height = newh+"px";
1158 + el.style.display = "block";
1159 + }
1160 + } catch(e){
1161 + console.log("Failure at Presize of Slider:" + e)
1162 + }
1163 + //});
1164 + };</script>
1165 +</head>
1166 +
1167 +<body data-cmplz=2 class="property-template-default single single-property postid-3190 houzez-theme houzez-footer-position transparent- houzez-header- elementor-default elementor-kit-6">
1168 +
1169 +
1170 + <div class="nav-mobile nav-mobile-js">
1171 + <div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile">
1172 + <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://immeublesalexcellence.com/">Accueil</a> </li>
1173 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1174 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1175 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1176 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1177 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1178 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1179 +</ul> </div><!-- main-nav -->
1180 + <nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user">
1181 +
1182 +
1183 +
1184 + </nav><!-- .navi -->
1185 +
1186 +
1187 +
1188 +</div><!-- nav-mobile -->
1189 + <main id="main-wrap" class="main-wrap main-wrap-js">
1190 +
1191 + <header class="header-main-wrap ">
1192 + <div class="top-bar-wrap ">
1193 + <div class="container">
1194 + <div class="d-flex justify-content-between">
1195 + <div class="top-bar-left-wrap">
1196 + <div class="header-social-icons">
1197 + <ul class="list-inline">
1198 +
1199 + <li class="list-inline-item">
1200 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1201 + <i class="houzez-icon icon-social-media-facebook"></i>
1202 + </a>
1203 + </li>
1204 +
1205 +
1206 +
1207 +
1208 +
1209 +
1210 +
1211 +
1212 + <li class="list-inline-item">
1213 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1214 + <i class="houzez-icon icon-social-instagram"></i>
1215 + </a>
1216 + </li>
1217 +
1218 +
1219 +
1220 +
1221 + </ul>
1222 +</div><!-- .header-social-icons -->
1223 + </div><!-- top-bar-left-wrap -->
1224 +
1225 + <div class="top-bar-right-wrap">
1226 + <div class="top-bar-contact">
1227 +
1228 + </div><!-- top-bar-contact --> </div><!-- top-bar-right-wrap -->
1229 + </div><!-- d-flex -->
1230 + </div><!-- container -->
1231 +</div><!-- top-bar-wrap --><div class="header-desktop header-v2">
1232 + <div class="header-top">
1233 + <div class="container">
1234 + <div class="header-inner-wrap">
1235 + <div class="navbar d-flex align-items-center">
1236 +
1237 +
1238 + <div class="logo logo-desktop">
1239 + <a href="https://immeublesalexcellence.com/">
1240 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="66,5px" width="218px" alt="logo">
1241 + </a>
1242 + </div>
1243 +
1244 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1245 +
1246 +
1247 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1248 + <div class="header-contact-left">
1249 + <i class="houzez-icon icon-phone ml-1"></i>
1250 + </div><!-- header-contact-left -->
1251 + <div class="header-contact-right">
1252 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1253 + <div><a href="mailto:"></a></div>
1254 + </div><!-- .header-contact-right -->
1255 + </div><!-- .header-contact -->
1256 +
1257 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1258 + <div class="header-contact-left">
1259 + <i class="houzez-icon icon-pin ml-1"></i>
1260 + </div><!-- header-contact-left -->
1261 + <div class="header-contact-right">
1262 + <div>1025, rue des Seigneurs, #301</div>
1263 + <div>Sherbrooke (Québec) J1H 5V3</div>
1264 + </div><!-- .header-contact-right -->
1265 + </div><!-- .header-contact -->
1266 +
1267 +
1268 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1269 + <div class="header-contact-left">
1270 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1271 + </div><!-- header-contact-left -->
1272 + <div class="header-contact-right">
1273 + <div>8 h 30 à 16 h 30</div>
1274 + <div>Lundi au jeudi</div>
1275 + </div><!-- .header-contact-right -->
1276 + </div><!-- .header-contact -->
1277 +
1278 +
1279 + <div class="header-contact header-contact-4 d-flex align-items-center">
1280 + <div class="header-social-icons">
1281 + <ul class="list-inline">
1282 +
1283 + <li class="list-inline-item">
1284 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1285 + <i class="houzez-icon icon-social-media-facebook"></i>
1286 + </a>
1287 + </li>
1288 +
1289 +
1290 +
1291 +
1292 +
1293 +
1294 +
1295 +
1296 + <li class="list-inline-item">
1297 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1298 + <i class="houzez-icon icon-social-instagram"></i>
1299 + </a>
1300 + </li>
1301 +
1302 +
1303 +
1304 +
1305 + </ul>
1306 +</div><!-- .header-social-icons -->
1307 + </div><!-- .header-contact -->
1308 +</div><!-- .header-contact-wrap -->
1309 +
1310 +
1311 + </div><!-- navbar -->
1312 + </div>
1313 + </div>
1314 + </div><!-- .header-top -->
1315 + <div id="header-section" class="header-bottom" data-sticky="1">
1316 + <div class="container">
1317 + <div class="header-inner-wrap">
1318 + <div class="navbar d-flex align-items-center">
1319 +
1320 + <nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1">
1321 + <ul id="main-nav" class="navbar-nav "><li id="menu-item-1535" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home nav-item menu-item-1535 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/">Accueil</a> </li>
1322 +<li id="menu-item-1809" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1809 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1323 +<li id="menu-item-1771" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1771 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1324 +<li id="menu-item-2352" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2352 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1325 +<li id="menu-item-2432" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2432 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1326 +<li id="menu-item-2426" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2426 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1327 +<li id="menu-item-2466" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2466 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1328 +</ul> </nav><!-- main-nav -->
1329 +
1330 + <div class="login-register on-hover-menu">
1331 + <ul class="login-register-nav dropdown d-flex align-items-center">
1332 +
1333 +
1334 +
1335 +
1336 +
1337 +
1338 + </ul>
1339 +</div>
1340 + </div><!-- navbar -->
1341 + </div>
1342 + </div>
1343 + </div><!-- .header-bottom -->
1344 +</div><!-- .header-v2 -->
1345 +
1346 +<div class="header-v2 header-v2-mobile">
1347 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1348 +
1349 +
1350 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1351 + <div class="header-contact-left">
1352 + <i class="houzez-icon icon-phone ml-1"></i>
1353 + </div><!-- header-contact-left -->
1354 + <div class="header-contact-right">
1355 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1356 + <div><a href="mailto:"></a></div>
1357 + </div><!-- .header-contact-right -->
1358 + </div><!-- .header-contact -->
1359 +
1360 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1361 + <div class="header-contact-left">
1362 + <i class="houzez-icon icon-pin ml-1"></i>
1363 + </div><!-- header-contact-left -->
1364 + <div class="header-contact-right">
1365 + <div>1025, rue des Seigneurs, #301</div>
1366 + <div>Sherbrooke (Québec) J1H 5V3</div>
1367 + </div><!-- .header-contact-right -->
1368 + </div><!-- .header-contact -->
1369 +
1370 +
1371 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1372 + <div class="header-contact-left">
1373 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1374 + </div><!-- header-contact-left -->
1375 + <div class="header-contact-right">
1376 + <div>8 h 30 à 16 h 30</div>
1377 + <div>Lundi au jeudi</div>
1378 + </div><!-- .header-contact-right -->
1379 + </div><!-- .header-contact -->
1380 +
1381 +
1382 + <div class="header-contact header-contact-4 d-flex align-items-center">
1383 + <div class="header-social-icons">
1384 + <ul class="list-inline">
1385 +
1386 + <li class="list-inline-item">
1387 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1388 + <i class="houzez-icon icon-social-media-facebook"></i>
1389 + </a>
1390 + </li>
1391 +
1392 +
1393 +
1394 +
1395 +
1396 +
1397 +
1398 +
1399 + <li class="list-inline-item">
1400 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1401 + <i class="houzez-icon icon-social-instagram"></i>
1402 + </a>
1403 + </li>
1404 +
1405 +
1406 +
1407 +
1408 + </ul>
1409 +</div><!-- .header-social-icons -->
1410 + </div><!-- .header-contact -->
1411 +</div><!-- .header-contact-wrap -->
1412 +
1413 +
1414 +
1415 +</div><!-- header-v2-mobile --><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky="">
1416 + <div class="header-mobile-left">
1417 + <button class="btn toggle-button-left">
1418 + <i class="houzez-icon icon-navigation-menu"></i>
1419 + </button><!-- toggle-button-left -->
1420 + </div><!-- .header-mobile-left -->
1421 + <div class="header-mobile-center flex-grow-1">
1422 + <div class="logo logo-mobile">
1423 + <a href="https://immeublesalexcellence.com/">
1424 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="39" width="127" alt="Mobile logo">
1425 + </a>
1426 +</div> </div>
1427 +
1428 + <div class="header-mobile-right">
1429 + </div><!-- .header-mobile-right -->
1430 +
1431 +</div><!-- header-mobile --></header><!-- .header-main-wrap -->
1432 +
1433 + <section class="content-wrap property-wrap property-detail-v6 ">
1434 + <div class="property-navigation-wrap">
1435 + <div class="container-fluid">
1436 + <ul class="property-navigation list-unstyled d-flex justify-content-between">
1437 + <li class="property-navigation-item">
1438 + <a class="back-top" href="#main-wrap">
1439 + <i class="houzez-icon icon-arrow-button-circle-up"></i>
1440 + </a>
1441 + </li>
1442 + <li class="property-navigation-item">
1443 + <a class="target" href="#property-description-wrap">Description du loyer</a>
1444 + </li><li class="property-navigation-item">
1445 + <a class="target" href="#property-virtual-tour-wrap">visite virtuelle 360°</a>
1446 + </li>
1447 + </ul>
1448 + </div><!-- container -->
1449 +</div><!-- property-navigation-wrap -->
1450 +<div class="page-title-wrap">
1451 + <div class="container">
1452 + <div class="d-flex align-items-center">
1453 +
1454 +<div class="breadcrumb-wrap">
1455 + <nav>
1456 + <ol class="breadcrumb"><li class="breadcrumb-item breadcrumb-item-home"><i class="houzez-icon icon-house"></i><a href="https://immeublesalexcellence.com/">Accueil</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/a-louer/"> À LOUER</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/disponible-1er-aout-2026/"> 1er août 2026</a></li><li class="breadcrumb-item active">4½ à proximité du Carrefour de l&rsquo;Estrie, rue Savio</li></ol> </nav>
1457 +</div><!-- breadcrumb-wrap --> <ul class="item-tools">
1458 +
1459 + <li class="item-tool houzez-favorite">
1460 + <span class="add-favorite-js item-tool-favorite" data-listid="3190">
1461 + <i class="houzez-icon icon-love-it "></i>
1462 + </span><!-- item-tool-favorite -->
1463 + </li><!-- item-tool -->
1464 +
1465 + <li class="item-tool houzez-share">
1466 + <span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1467 + <i class="houzez-icon icon-share"></i>
1468 + </span><!-- item-tool-favorite -->
1469 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1470 +
1471 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F">
1472 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1473 +
1474 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F06%2F1-FRONT-logement-a-louer-Sherbrooke-20221207_120438.jpg&amp;description=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1475 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1476 +
1477 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&amp;t=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1478 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1479 +</a>
1480 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1481 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1482 +</a>
1483 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&title=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1484 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1485 +</a>
1486 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=4½ à proximité du Carrefour de l&rsquo;Estrie, rue Savio&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F">
1487 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1488 +</a> </div>
1489 + </li><!-- item-tool -->
1490 +
1491 + <li class="item-tool houzez-print " data-propid="3190">
1492 + <span class="item-tool-compare">
1493 + <i class="houzez-icon icon-print-text"></i>
1494 + </span><!-- item-tool-compare -->
1495 + </li><!-- item-tool -->
1496 + </ul><!-- item-tools -->
1497 + </div><!-- d-flex -->
1498 + <div class="d-flex align-items-center property-title-price-wrap">
1499 + <div class="page-title">
1500 + <h1>4½ à proximité du Carrefour de l&rsquo;Estrie, rue Savio</h1>
1501 +</div><!-- page-title --> <ul class="item-price-wrap hide-on-list">
1502 + <li class="item-price">1,010$/par mois</li></ul> </div><!-- d-flex -->
1503 + <div class="property-labels-wrap">
1504 + <a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1505 + À LOUER
1506 + </a><a href="https://immeublesalexcellence.com/statut/disponible-1er-aout-2026/" class="label-status label status-color-209">
1507 + 1er août 2026
1508 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
1509 +
1510 + </a> </div>
1511 + <address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>2050 André, Sherbrooke</address> </div><!-- container -->
1512 +</div><!-- page-title-wrap --><div class="property-top-wrap">
1513 + <div class="property-banner">
1514 + <div class="visible-on-mobile">
1515 + <div class="tab-content" id="pills-tabContent">
1516 +
1517 + <div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://immeublesalexcellence.com/wp-content/uploads/2025/06/1-FRONT-logement-a-louer-Sherbrooke-20221207_120438.jpg);">
1518 + <div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 11</div>
1519 + <a class="property-banner-trigger" data-toggle="modal" data-target="#property-lightbox" href="#"></a>
1520 + </div>
1521 +
1522 + <div class="tab-pane houzez-360-virtual-tour " id="pills-360tour" role="tabpanel" aria-labelledby="pills-360tour-tab">
1523 + <iframe width="768" height="576" src="https://embed.ricoh360.com/ee84fcfc-0923-4f2f-be71-1052fed686bc" frameborder="0" allowfullscreen loading="lazy"></iframe> </div>
1524 +
1525 +
1526 +
1527 +
1528 +
1529 +
1530 + </div><!-- tab-content -->
1531 + </div><!-- visible-on-mobile -->
1532 +
1533 + <div class="container hidden-on-mobile">
1534 + <div class="row">
1535 + <div class="col-md-8">
1536 + <a href="#" data-slider-no="1" data-image="0" class="houzez-trigger-popup-slider-js img-wrap-1" data-toggle="modal" data-target="#property-lightbox">
1537 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/2-CUISINE-1-logement-a-louer-Sherbrooke-20221207_120311.jpg" alt="">
1538 + </a>
1539 + </div><!-- col-md-8 -->
1540 +
1541 + <div class="col-md-4">
1542 + <a href="#" data-slider-no="2" data-image="1" data-toggle="modal" data-target="#property-lightbox" class="houzez-trigger-popup-slider-js swipebox img-wrap-2">
1543 +
1544 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/2-CUISINE-2-logement-a-louer-Sherbrooke-20221207_120317.jpg" alt="">
1545 + </a>
1546 +
1547 + <a href="#" data-slider-no="3" data-image="2" data-toggle="modal" data-target="#property-lightbox" class="houzez-trigger-popup-slider-js swipebox img-wrap-3">
1548 + <div class="img-wrap-3-text"><i class="houzez-icon icon-picture-sun mr-1"></i> 8 photos, voir plus </div>
1549 +
1550 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/3-SAM-1-logement-a-louer-Sherbrooke-20221207_120349.jpg" alt="">
1551 + </a>
1552 + </div><!-- col-md-4 -->
1553 + <a href="#" class="img-wrap-1 gallery-hidden">
1554 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/3-SAM-2-logement-a-louer-Sherbrooke-20221207_120526.jpg" alt="">
1555 + </a>
1556 + <a href="#" class="img-wrap-1 gallery-hidden">
1557 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/4-SALON-1-logement-a-louer-Sherbrooke-20221207_120652.jpg" alt="">
1558 + </a>
1559 + <a href="#" class="img-wrap-1 gallery-hidden">
1560 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/4-SALON-2-logement-a-louer-Sherbrooke-20221207_120741.jpg" alt="">
1561 + </a>
1562 + <a href="#" class="img-wrap-1 gallery-hidden">
1563 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/5-SDB-1-logement-a-louer-Sherbrooke-20221207_120947.jpg" alt="">
1564 + </a>
1565 + <a href="#" class="img-wrap-1 gallery-hidden">
1566 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/6-CHAMBRE1-1-logement-a-louer-Sherbrooke-20221207_121109.jpg" alt="">
1567 + </a>
1568 + <a href="#" class="img-wrap-1 gallery-hidden">
1569 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/6-CHAMBRE1-3-logement-a-louer-Sherbrooke-20221207_121158.jpg" alt="">
1570 + </a>
1571 + <a href="#" class="img-wrap-1 gallery-hidden">
1572 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/20221207_121227.jpg" alt="">
1573 + </a>
1574 + <a href="#" class="img-wrap-1 gallery-hidden">
1575 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/20221207_121315.jpg" alt="">
1576 + </a>
1577 +
1578 + <div class="col-md-12">
1579 + <div class="block-wrap">
1580 + <div class="d-flex property-overview-data">
1581 + <ul class="list-unstyled flex-fill">
1582 + <li class="property-overview-item"><strong>Loyer 4½</strong></li>
1583 + <li class="hz-meta-label property-overview-type">Nombre pièce</li>
1584 +
1585 + </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 à coucher</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">Chambre de bain</li></ul> </div><!-- d-flex -->
1586 + </div><!-- block-wrap -->
1587 + </div><!-- col-md-12 -->
1588 + </div><!-- row -->
1589 + </div><!-- hidden-on-mobile -->
1590 + </div><!-- property-banner -->
1591 +
1592 +
1593 +</div><!-- property-top-wrap -->
1594 +
1595 + <div class="container">
1596 + <div class="row">
1597 + <div class="col-lg-12 col-md-12 bt-full-width-content-wrap">
1598 +
1599 + <div class="property-view">
1600 +
1601 + <div class="visible-on-mobile">
1602 + <div class="mobile-top-wrap">
1603 + <div class="mobile-property-tools houzez-media-tabs-4 clearfix">
1604 + <ul class="nav nav-pills" id="pills-tab" role="tablist">
1605 +
1606 + <li class="nav-item">
1607 + <a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1608 + <i class="houzez-icon icon-picture-sun"></i>
1609 + </a>
1610 + </li>
1611 + <li class="nav-item">
1612 + <a class="nav-link " id="pills-360tour-tab" data-toggle="pill" href="#pills-360tour" role="tab" aria-controls="pills-360tour" aria-selected="true">
1613 + <i class="houzez-icon icon-surveillance-360-camera"></i>
1614 + </a>
1615 + </li>
1616 + </ul><!-- nav --> <ul class="item-tools">
1617 +
1618 + <li class="item-tool houzez-favorite">
1619 + <span class="add-favorite-js item-tool-favorite" data-listid="3190">
1620 + <i class="houzez-icon icon-love-it "></i>
1621 + </span><!-- item-tool-favorite -->
1622 + </li><!-- item-tool -->
1623 +
1624 + <li class="item-tool houzez-share">
1625 + <span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1626 + <i class="houzez-icon icon-share"></i>
1627 + </span><!-- item-tool-favorite -->
1628 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1629 +
1630 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F">
1631 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1632 +
1633 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F06%2F1-FRONT-logement-a-louer-Sherbrooke-20221207_120438.jpg&amp;description=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1634 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1635 +
1636 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&amp;t=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1637 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1638 +</a>
1639 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1640 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1641 +</a>
1642 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&title=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1643 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1644 +</a>
1645 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=4½ à proximité du Carrefour de l&rsquo;Estrie, rue Savio&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F">
1646 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1647 +</a> </div>
1648 + </li><!-- item-tool -->
1649 +
1650 + <li class="item-tool houzez-print " data-propid="3190">
1651 + <span class="item-tool-compare">
1652 + <i class="houzez-icon icon-print-text"></i>
1653 + </span><!-- item-tool-compare -->
1654 + </li><!-- item-tool -->
1655 + </ul><!-- item-tools -->
1656 + </div><!-- mobile-property-tools -->
1657 + <div class="mobile-property-title clearfix">
1658 + <span class="labels-wrap labels-right">
1659 + <a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1660 + À LOUER
1661 + </a><a href="https://immeublesalexcellence.com/statut/disponible-1er-aout-2026/" class="label-status label status-color-209">
1662 + 1er août 2026
1663 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
1664 +
1665 + </a>
1666 +</span>
1667 +
1668 + <div class="page-title">
1669 + <span class="item-title property-title-mobile">4½ à proximité du Carrefour de l&rsquo;Estrie, rue Savio</span>
1670 +</div><!-- page-title -->
1671 + <address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>2050 André, Sherbrooke</address> <ul class="item-price-wrap hide-on-list">
1672 + <li class="item-price">1,010$/par mois</li></ul>
1673 + </div><!-- mobile-property-title -->
1674 + </div><!-- mobile-top-wrap -->
1675 +</div><!-- visible-on-mobile -->
1676 + <div class="property-description-wrap property-section-wrap" id="property-description-wrap">
1677 + <div class="block-wrap">
1678 + <div class="block-title-wrap">
1679 + <h2>Description du loyer</h2>
1680 + </div>
1681 + <div class="block-content-wrap">
1682 + <p>Découvrez ce <strong>4½ situé près du Carrefour de l&rsquo;Estrie</strong>, parfait pour les personne retraiter et les professionnels qui recherche un logement aux caractéristiques modernes et pratiques:</p>
1683 +<p><strong>Adresse :</strong> 2960 Rue Savio, Sherbrooke, QC J1L 1Z8</p>
1684 +<h3><strong>Points Forts :</strong></h3>
1685 +<ul>
1686 +<li>Appartement moderne à aire ouverte, idéal pour étudiants.</li>
1687 +<li>Situé près de l&rsquo;Université avec accès direct aux circuits d’autobus #7 et #11.</li>
1688 +<li>Stationnement inclus.</li>
1689 +<li>Service de conciergerie 24h/24</li>
1690 +<li>Accès à une piscine extérieure et une remise pour vélo.</li>
1691 +<li>Disponible au 1er août 2025 (possibilité de devancer la prise de possession au 1er juillet 2025).</li>
1692 +</ul>
1693 +<hr />
1694 +<h3><strong>Détails du Logement :</strong></h3>
1695 +<ul>
1696 +<li><strong>Type :</strong> 4½ (2 chambres)</li>
1697 +<li><strong>Loyer :</strong> 1010$/mois</li>
1698 +<li><strong>Bail :</strong> 12 mois</li>
1699 +<li><strong>Inclusions :</strong> Aucun service inclus</li>
1700 +<li><strong>Planchers :</strong> Céramique, plancher flottant, </li>
1701 +<li><strong>Équipements :</strong> Entrées laveuse-sécheuse et lave-vaisselle, espace de rangement, balcon privé, comptoir lunch</li>
1702 +</ul>
1703 +<h3><strong>Commodités de l&rsquo;Immeuble :</strong></h3>
1704 +<ul>
1705 +<li>Stationnement extérieur inclus</li>
1706 +<li>Buanderie ($)</li>
1707 +<li>Aspirateur central</li>
1708 +<li>Remise extérieure pour vélo</li>
1709 +<li>Piscine extérieure</li>
1710 +<li>Entrée sécurisée avec intercom</li>
1711 +<li>Construction en béton pour une insonorisation optimale</li>
1712 +<li>Équipe de réparation disponible 24h/24</li>
1713 +</ul>
1714 +<hr />
1715 +<h3><strong>Services à Proximité :</strong></h3>
1716 +<ul>
1717 +<li>Carrefour de l&rsquo;Estrie</li>
1718 +<li>Dépanneurs et pharmacies</li>
1719 +<li>Épiceries</li>
1720 +<li>Parcs et pistes cyclables</li>
1721 +<li>Restaurants et cafés</li>
1722 +<li>Centre d’achats</li>
1723 +<li>Accès rapide à l&rsquo;autoroute</li>
1724 +</ul>
1725 +<h3><strong>Règlements :</strong></h3>
1726 +<ul>
1727 +<li>Animaux interdits</li>
1728 +<li>Locataires non-fumeurs, tranquilles et respectueux</li>
1729 +<li>Enquête de crédit obligatoire</li>
1730 +</ul>
1731 +<p><strong>Contactez-nous dès aujourd’hui pour planifier une visite et découvrir votre futur appartement.</strong></p>
1732 +
1733 +
1734 +<p></p>
1735 +
1736 + </div>
1737 + </div>
1738 +</div><div class="property-virtual-tour-wrap property-section-wrap" id="property-virtual-tour-wrap">
1739 + <div class="block-wrap">
1740 + <div class="block-title-wrap d-flex justify-content-between align-items-center">
1741 + <h2>visite virtuelle 360°</h2>
1742 + </div><!-- block-title-wrap -->
1743 + <div class="block-content-wrap">
1744 + <div class="block-virtual-video-wrap">
1745 + <iframe width="768" height="576" src="https://embed.ricoh360.com/ee84fcfc-0923-4f2f-be71-1052fed686bc" frameborder="0" allowfullscreen loading="lazy"></iframe> </div>
1746 + </div><!-- block-content-wrap -->
1747 + </div><!-- block-wrap -->
1748 +</div><!-- property-virtual-tour-wrap -->
1749 +
1750 + </div><!-- property-view -->
1751 + </div><!-- bt-content-wrap -->
1752 +
1753 + </div><!-- row -->
1754 +
1755 +
1756 + </div><!-- container -->
1757 +
1758 +
1759 + </section><!-- listing-wrap -->
1760 +
1761 + <!-- end houzez_check_is_elementor -->
1762 +
1763 +</main><!-- .main-wrap start in header.php-->
1764 +
1765 +<footer class="footer-wrap footer-wrap-v1">
1766 +
1767 + <div class="footer-bottom-wrap footer-bottom-wrap-v1">
1768 + <div class="container">
1769 + <div class="d-flex justify-content-between">
1770 +
1771 + <div class="footer-copyright">
1772 + &copy; Immeubles Alexcellence - Tout droits réservés</div><!-- footer-copyright -->
1773 +
1774 +
1775 +
1776 + </div><!-- d-flex -->
1777 + </div><!-- container -->
1778 +</div><!-- footer-top-wrap --></footer><div class="back-to-top-wrap">
1779 + <a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1780 + <i class="houzez-icon icon-arrow-up-1"></i>
1781 + </a>
1782 +</div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1783 +
1784 + <button class="compare-property-label" style="display: none;">
1785 + <span class="compare-count compare-label"></span>
1786 + <i class="houzez-icon icon-move-left-right"></i>
1787 + </button>
1788 +
1789 + <p><strong>Comparer les annonces</strong></p>
1790 +
1791 + <div class="compare-wrap"></div>
1792 +
1793 +
1794 + <a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1795 + <button class="btn btn-grey-outlined btn-full-width close-compare-panel">Close</button>
1796 +</div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog">
1797 + <div class="modal-dialog" role="document">
1798 + <div class="modal-content">
1799 + <div class="modal-header">
1800 + <div class="login-register-tabs">
1801 + <ul class="nav nav-tabs">
1802 + <li class="nav-item">
1803 + <a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">S&#039;identifier</a>
1804 + </li>
1805 +
1806 + </ul>
1807 + </div><!-- login-register-tabs -->
1808 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1809 + <span aria-hidden="true">&times;</span>
1810 + </button>
1811 + </div><!-- modal-header -->
1812 + <div class="modal-body">
1813 + <div class="tab-content">
1814 + <div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel">
1815 + <div id="hz-login-messages" class="hz-social-messages"></div>
1816 +<form>
1817 + <div class="login-form-wrap">
1818 + <div class="form-group">
1819 + <div class="form-group-field username-field">
1820 + <input class="form-control" name="username" placeholder="Username or Email" type="text" />
1821 + </div><!-- input-group -->
1822 + </div><!-- form-group -->
1823 + <div class="form-group">
1824 + <div class="form-group-field password-field">
1825 + <input class="form-control" name="password" placeholder="Mot de passe" type="password" />
1826 + </div><!-- input-group -->
1827 + </div><!-- form-group -->
1828 + </div><!-- login-form-wrap -->
1829 +
1830 + <div class="form-tools">
1831 + <div class="d-flex">
1832 + <label class="control control--checkbox flex-grow-1">
1833 + <input name="remember" type="checkbox">Remember me FR <span class="control__indicator"></span>
1834 + </label>
1835 + <a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Lost your password?</a>
1836 + </div><!-- d-flex -->
1837 + </div><!-- form-tools -->
1838 +
1839 + <div class="form-group captcha_wrapper houzez-grecaptcha-v3">
1840 + <div class="houzez_google_reCaptcha"></div>
1841 +</div>
1842 +
1843 + <input type="hidden" id="houzez_login_security" name="houzez_login_security" value="90509fca4b" /><input type="hidden" name="_wp_http_referer" value="/appartements/4%C2%BD-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1844 + <input type="hidden" name="redirect_to" value="https://immeublesalexcellence.com/appartements/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/?login=success">
1845 + <button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1846 + <span class="btn-loader houzez-loader-js"></span> S&#039;identifier
1847 + </button>
1848 +</form>
1849 +
1850 +<div class="social-login-wrap">
1851 +
1852 + <button type="button" class="hz-facebook-login btn btn-facebook-login btn-full-width">
1853 + <span class="btn-loader houzez-loader-js"></span> Continue with Facebook </button>
1854 +
1855 + <button type="button" class="hz-google-login btn btn-google-plus-lined btn-full-width">
1856 + <span class="btn-loader houzez-loader-js"></span> <img class="google-icon" src="https://immeublesalexcellence.com/wp-content/themes/houzez/img/Google__G__Logo.svg"/> Sign in with google </button>
1857 +
1858 +</div>
1859 + </div><!-- login-form-tab -->
1860 + <div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel">
1861 + <div id="hz-register-messages" class="hz-social-messages"></div>
1862 +User registration is disabled for demo purpose. </div><!-- register-form-tab -->
1863 + </div><!-- tab-content -->
1864 + </div><!-- modal-body -->
1865 + </div><!-- modal-content -->
1866 + </div><!-- modal-dialog -->
1867 +</div><!-- login-register-form --><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog">
1868 + <div class="modal-dialog" role="document">
1869 + <div class="modal-content">
1870 + <div class="modal-header">
1871 + <div class="modal-title">Reset Password</div>
1872 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1873 + <span aria-hidden="true">&times;</span>
1874 + </button>
1875 + </div><!-- modal-header -->
1876 + <div class="modal-body">
1877 + <div id="reset_pass_msg"></div>
1878 + <p>Please enter your username or email address. You will receive a link to create a new password via email.</p>
1879 + <form>
1880 + <div class="form-group">
1881 + <input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Enter your username or email" class="form-control">
1882 + </div>
1883 + <input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="eec590fff1" /><input type="hidden" name="_wp_http_referer" value="/appartements/4%C2%BD-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1884 + <span class="btn-loader houzez-loader-js"></span> Get new password </button>
1885 + </form>
1886 + </div><!-- modal-body -->
1887 + </div><!-- modal-content -->
1888 + </div><!-- modal-dialog -->
1889 +</div><!-- login-register-form --><div class="property-lightbox">
1890 + <div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog">
1891 + <div class="modal-dialog modal-dialog-centered" role="document">
1892 + <div id="hz-listing-model-content" class="modal-content">
1893 +
1894 + </div><!-- modal-content -->
1895 + </div><!-- modal-dialog -->
1896 + </div><!-- modal -->
1897 +</div><!-- property-lightbox --><div class="property-lightbox">
1898 + <div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog">
1899 + <div class="modal-dialog modal-dialog-centered" role="document">
1900 + <div class="modal-content">
1901 + <div class="modal-header">
1902 + <div class="d-flex align-items-center">
1903 +
1904 + <div class="lightbox-logo">
1905 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" alt="4½ à proximité du Carrefour de l&rsquo;Estrie, rue Savio">
1906 + </div><!-- lightbox-logo -->
1907 +
1908 + <div class="lightbox-title flex-grow-1">
1909 +
1910 + </div><!-- lightbox-title -->
1911 + <div class="lightbox-tools">
1912 + <ul class="list-inline">
1913 + <li class="list-inline-item btn-favorite">
1914 + <a class="add-favorite-js" data-listid="3190" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Préféré</span></a>
1915 + </li>
1916 +
1917 + <li class="list-inline-item btn-share">
1918 + <a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Share</span></a>
1919 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1920 +
1921 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F">
1922 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1923 +
1924 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F06%2F1-FRONT-logement-a-louer-Sherbrooke-20221207_120438.jpg&amp;description=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1925 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1926 +
1927 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&amp;t=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1928 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1929 +</a>
1930 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1931 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1932 +</a>
1933 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F&title=4%C2%BD+%C3%A0+proximit%C3%A9+du+Carrefour+de+l%26rsquo%3BEstrie%2C+rue+Savio&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1934 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1935 +</a>
1936 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=4½ à proximité du Carrefour de l&rsquo;Estrie, rue Savio&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2F4%25c2%25bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue%2F">
1937 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1938 +</a> </div>
1939 + </li>
1940 + <li class="list-inline-item btn-email">
1941 + <a href="#"><i class="houzez-icon icon-envelope"></i></a>
1942 + </li>
1943 + </ul>
1944 + </div><!-- lightbox-tools -->
1945 + </div><!-- d-flex -->
1946 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1947 + <span aria-hidden="true">&times;</span>
1948 + </button>
1949 + </div><!-- modal-header -->
1950 +
1951 + <div class="modal-body clearfix">
1952 + <div class="lightbox-gallery-wrap ">
1953 +
1954 + <a class="btn-expand">
1955 + <i class="houzez-icon icon-expand-3"></i>
1956 + </a>
1957 +
1958 + <div class="lightbox-gallery">
1959 + <div id="lightbox-slider-js" class="lightbox-slider">
1960 +
1961 + <div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/2-CUISINE-1-logement-a-louer-Sherbrooke-20221207_120311.jpg" alt="" title="2 CUISINE 1 logement a louer Sherbrooke 20221207_120311"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/2-CUISINE-2-logement-a-louer-Sherbrooke-20221207_120317.jpg" alt="" title="2 CUISINE 2 logement a louer Sherbrooke 20221207_120317"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/3-SAM-1-logement-a-louer-Sherbrooke-20221207_120349.jpg" alt="" title="3 SAM 1 logement a louer Sherbrooke 20221207_120349"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/3-SAM-2-logement-a-louer-Sherbrooke-20221207_120526.jpg" alt="" title="3 SAM 2 logement a louer Sherbrooke 20221207_120526"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/4-SALON-1-logement-a-louer-Sherbrooke-20221207_120652.jpg" alt="" title="4 SALON 1 logement a louer Sherbrooke 20221207_120652"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/4-SALON-2-logement-a-louer-Sherbrooke-20221207_120741.jpg" alt="" title="4 SALON 2 logement a louer Sherbrooke 20221207_120741"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/5-SDB-1-logement-a-louer-Sherbrooke-20221207_120947.jpg" alt="" title="5 SDB 1 logement a louer Sherbrooke 20221207_120947"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/6-CHAMBRE1-1-logement-a-louer-Sherbrooke-20221207_121109.jpg" alt="" title="6 CHAMBRE1 1 logement a louer Sherbrooke 20221207_121109"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/6-CHAMBRE1-3-logement-a-louer-Sherbrooke-20221207_121158.jpg" alt="" title="6 CHAMBRE1 3 logement a louer Sherbrooke 20221207_121158"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/20221207_121227.jpg" alt="" title="20221207_121227"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/06/20221207_121315.jpg" alt="" title="20221207_121315"></div>
1962 + </div>
1963 + </div><!-- lightbox-gallery -->
1964 +
1965 + </div><!-- lightbox-gallery-wrap -->
1966 +
1967 + <div class="lightbox-form-wrap">
1968 + </div><!-- lightbox-form-wrap -->
1969 + </div><!-- modal-body -->
1970 + <div class="modal-footer">
1971 +
1972 + </div><!-- modal-footer -->
1973 + </div><!-- modal-content -->
1974 + </div><!-- modal-dialog -->
1975 + </div><!-- modal -->
1976 +</div><!-- property-lightbox -->
1977 +
1978 +
1979 + <script>
1980 + window.RS_MODULES = window.RS_MODULES || {};
1981 + window.RS_MODULES.modules = window.RS_MODULES.modules || {};
1982 + window.RS_MODULES.waiting = window.RS_MODULES.waiting || [];
1983 + window.RS_MODULES.defered = true;
1984 + window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};
1985 + window.RS_MODULES.type = 'compiled';
1986 + </script>
1987 +
1988 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
1989 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 parametres-de-confidentialite optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
1990 + <div class="cmplz-header">
1991 + <div class="cmplz-logo"><?xml version="1.0" encoding="utf-8"?>
1992 +<!-- Generator: Adobe Illustrator 27.6.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
1993 +<svg version="1.1" id="uuid-7dd7b5b8-c5e0-4d79-ad53-47e9a05e6f8e"
1994 + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1354.3 343"
1995 + style="enable-background:new 0 0 1354.3 343;" xml:space="preserve">
1996 +<style type="text/css">
1997 + .st0{fill:#009FFF;}
1998 + .st1{fill:#333333;}
1999 +</style>
2000 +<path class="st0" d="M663.5,62.7c-17.7,0-36,7.4-44.2,19v-15h-52.7V274h52.7v-75.8c8.2,11.6,26.5,19,44.2,19
2001 + c41.1,0,68.6-37.4,68.6-77.5S704.6,62.7,663.5,62.7L663.5,62.7L663.5,62.7z M649.6,174.1c-18,0-30.3-13.9-30.3-33.7
2002 + s11.9-34.7,30.3-34.7c17.4,0,29.9,14.6,29.9,34.7S666.9,174.1,649.6,174.1z M499.6,62.7c-24.5,0-39,10.8-49.3,24.1
2003 + c-8.5-14.6-21.8-24.1-44.8-24.1c-17.3,0-30.6,5.1-40.4,19.3V66.8h-52.7v146.4H365v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9
2004 + v75.4h52.7v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9v75.4h52.7v-88.2C553.2,90.2,538.9,62.7,499.6,62.7L499.6,62.7
2005 + L499.6,62.7z M221.3,62.7c-42.1,0-78.8,33.7-78.8,77.1s36,77.5,79.1,77.5s78.8-34.3,78.8-77.8S264.1,62.7,221.3,62.7L221.3,62.7
2006 + L221.3,62.7z M221.6,175.5c-18.4,0-27.9-18.7-27.9-35.6s9.5-35.3,27.5-35.3c19,0,27.9,18.7,27.9,35S240,175.5,221.6,175.5
2007 + L221.6,175.5L221.6,175.5z M79.6,175.8c-19,0-31.6-17.7-31.6-35.3c0-20.8,12.9-36,31.6-36c10.8,0,20.8,4.4,29.2,13.6l30.3-28.2
2008 + c-15.6-18.7-34.7-27.2-59.5-27.2C32.7,62.7-0.9,98-0.9,140.5s34.3,76.7,80.6,76.7c28.5,0,46.6-9.5,64.2-31.6l-35.3-24.8
2009 + C100.4,170.4,93.2,175.8,79.6,175.8L79.6,175.8L79.6,175.8z M1139,62.7c-17.4,0-32.6,6.4-42.1,19.3V66.7h-52.7v146.4h52.7v-77.1
2010 + c0-18,8.8-29.2,24.2-29.2s20.8,11.2,20.8,30.9v75.4h52.7v-88.1C1194.5,90.2,1178.5,62.7,1139,62.7L1139,62.7L1139,62.7z M958.2,62.7
2011 + c-26.5,0-50.9,4-70.3,15l16.3,31.6c15.3-7.9,31.9-12.6,52.3-12.6c15,0,21.8,3.4,21.8,13.6v5.1c-47.5,2.1-103.6,10.8-103.6,56.4
2012 + c0,27.9,24.8,45.5,53,45.5c25.5,0,34.7-4.1,50.6-15.3v11.2h52.7v-93.1C1030.9,78.3,1006.7,62.7,958.2,62.7L958.2,62.7L958.2,62.7z
2013 + M978.2,169.4c-8.5,7.4-17.4,10.5-30.6,10.5c-8.5,0-17-5.1-17-13.6c0-16.3,25.1-21.4,47.5-21.4V169.4z M744,213.2h52.7V1.7H744
2014 + V213.2L744,213.2z M1282.8,172.9l70.5-106.2h-143.7v40.8h53.7c4.8,0,8.8-0.3,8.8-0.3s-3.4,3.7-6.1,7.8l-66.2,98.2h145.1v-40.8h-52.1
2015 + C1289.8,172.4,1285.4,172.7,1282.8,172.9L1282.8,172.9L1282.8,172.9z M811.2,67.4v145.7h52.7V67.2c-8.3,2.9-17.1,4.6-26.1,4.6
2016 + S819.6,70.2,811.2,67.4L811.2,67.4L811.2,67.4z"/>
2017 +<g>
2018 + <g>
2019 + <path class="st1" d="M649.8,345v-8l10.1-1.8v-75.6l-11.2-1.8v-8h20.6l1.2,8.4c2.3-3.1,5.2-5.5,8.5-7.2c3.4-1.6,7.2-2.5,11.7-2.5
2020 + c5.8,0,10.8,1.5,14.9,4.6c4.1,3.1,7.3,7.4,9.4,12.9c2.2,5.5,3.3,12,3.3,19.4v1.3c0,6.6-1.1,12.4-3.3,17.3s-5.3,8.8-9.4,11.6
2021 + c-4.1,2.8-9,4.1-14.7,4.1c-4.3,0-8.1-0.7-11.4-2.1c-3.3-1.4-6.1-3.5-8.3-6.3v24l11.2,1.8v8L649.8,345L649.8,345z M686.8,310.6
2022 + c5.9,0,10.4-2.2,13.4-6.4c3-4.3,4.5-9.9,4.5-16.7V286c0-5.3-0.7-9.9-2-13.9c-1.4-4-3.4-7.2-6.1-9.5s-6.1-3.4-10.1-3.4
2023 + c-3.6,0-6.6,0.8-9.2,2.4c-2.6,1.6-4.6,3.8-6.2,6.6v33.6c1.6,2.9,3.7,5.1,6.2,6.7c2.6,1.6,5.7,2.4,9.5,2.4L686.8,310.6z"/>
2024 + </g>
2025 + <g>
2026 + <path class="st1" d="M758,320.5c-6.4,0-11.9-1.5-16.5-4.5s-8.2-7.1-10.7-12.4c-2.5-5.3-3.8-11.3-3.8-18.1v-1.4
2027 + c0-6.8,1.3-12.8,3.8-18.1c2.5-5.3,6.1-9.4,10.7-12.5c4.6-3,10.1-4.5,16.3-4.5s11.9,1.5,16.5,4.5s8.2,7.2,10.7,12.4
2028 + c2.5,5.3,3.8,11.3,3.8,18.1v1.4c0,6.8-1.3,12.9-3.8,18.2c-2.5,5.3-6.1,9.4-10.6,12.4C769.8,319,764.4,320.5,758,320.5L758,320.5z
2029 + M758.6,310.2c3.9,0,7.2-1.1,9.8-3.2c2.6-2.1,4.6-5.1,6-8.8s2-8,2-12.7v-1.4c0-4.8-0.7-9-2-12.7c-1.4-3.7-3.4-6.7-6-8.8
2030 + c-2.7-2.1-6-3.2-9.9-3.2c-4,0-7.2,1.1-9.9,3.2c-2.7,2.1-4.7,5.1-6,8.8c-1.3,3.7-2,8-2,12.7v1.4c0,4.8,0.7,9,2,12.7
2031 + c1.3,3.7,3.3,6.7,6,8.8S754.6,310.2,758.6,310.2L758.6,310.2z"/>
2032 + </g>
2033 + <g>
2034 + <path class="st1" d="M822.4,319.3l-18.1-59.5l-7.7-0.9v-8h28v8l-8.3,1.4l9.3,34.1l2.1,8.1h0.4l2.8-8.1l14.7-43.5h11.4l14.1,43.1
2035 + l3,9.5h0.4l3-9.5l9.5-33.8l-8.6-1.3v-8h28v8l-7.6,1.1L881,319.3h-12.1L855,278.2l-3.3-11l-0.4,0.1l-3.2,10.9l-14.9,41.1
2036 + L822.4,319.3L822.4,319.3z"/>
2037 + </g>
2038 + <g>
2039 + <path class="st1" d="M943.2,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2040 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2041 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7s3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2042 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C953.7,319.8,948.8,320.6,943.2,320.6L943.2,320.6z
2043 + M925.3,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3c-2.8,0-5.3,0.8-7.6,2.4
2044 + c-2.3,1.6-4.2,3.8-5.6,6.6c-1.5,2.8-2.5,6-2.9,9.5L925.3,277.8L925.3,277.8z"/>
2045 + </g>
2046 + <g>
2047 + <path class="st1" d="M980.5,319.3v-8l10.1-1.8v-48.8l-10.1-1.8v-8h21.1l1.1,8.7l0.1,1.2c1.9-3.5,4.2-6.2,7-8.2c2.8-2,6-3,9.6-3
2048 + c1.3,0,2.6,0.1,3.9,0.3c1.3,0.2,2.3,0.4,2.9,0.7l-1.6,11.6l-8.5-0.5c-3.2-0.2-5.9,0.5-8.1,2.2c-2.2,1.7-3.9,4-5.1,6.9v38.7
2049 + l10.1,1.8v8L980.5,319.3L980.5,319.3z"/>
2050 + </g>
2051 + <g>
2052 + <path class="st1" d="M1063.1,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2053 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2054 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7c1.4,3.4,3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2055 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C1073.6,319.8,1068.8,320.6,1063.1,320.6
2056 + L1063.1,320.6z M1045.2,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3
2057 + c-2.8,0-5.3,0.8-7.6,2.4c-2.3,1.6-4.2,3.8-5.6,6.6s-2.5,6-2.9,9.5L1045.2,277.8L1045.2,277.8z"/>
2058 + </g>
2059 + <g>
2060 + <path class="st1" d="M1127.3,320.6c-5.6,0-10.5-1.4-14.5-4.1c-4-2.8-7.1-6.6-9.2-11.6c-2.1-4.9-3.2-10.7-3.2-17.3v-1.3
2061 + c0-7.4,1.1-13.8,3.2-19.3c2.1-5.5,5.2-9.8,9.3-12.9c4.1-3.1,8.9-4.6,14.6-4.6c4.1,0,7.7,0.8,10.9,2.3c3.1,1.5,5.8,3.7,8,6.5v-27.7
2062 + l-10.1-1.8v-8h23.5v88.9l10.1,1.8v8H1148l-1-8.2c-2.3,3.1-5,5.5-8.3,7.1C1135.4,319.8,1131.7,320.6,1127.3,320.6L1127.3,320.6z
2063 + M1130.9,309.8c3.7,0,6.7-0.8,9.2-2.5c2.5-1.7,4.6-4,6.2-7.1V269c-1.6-2.8-3.6-5.1-6.2-6.7c-2.5-1.7-5.6-2.5-9.1-2.5
2064 + c-3.9,0-7.1,1.1-9.7,3.3c-2.5,2.2-4.4,5.3-5.7,9.2c-1.2,3.9-1.9,8.5-1.9,13.7v1.3c0,6.8,1.4,12.2,4.2,16.3
2065 + C1120.8,307.8,1125.1,309.8,1130.9,309.8L1130.9,309.8z"/>
2066 + </g>
2067 + <g>
2068 + <path class="st1" d="M1245.2,320.6c-4.5,0-8.3-0.9-11.6-2.6c-3.3-1.7-6-4.2-8.2-7.6l-1.1,8.8h-10.6v-88.8l-10.1-1.8v-8h22.4V259
2069 + c2.2-3,4.8-5.4,8-7c3.2-1.6,6.9-2.4,11.2-2.4c5.6,0,10.5,1.5,14.4,4.6c4,3.1,7,7.3,9.2,12.9c2.1,5.5,3.2,11.9,3.2,19.3v1.3
2070 + c0,6.6-1.1,12.3-3.2,17.3c-2.1,4.9-5.2,8.8-9.2,11.5C1255.6,319.2,1250.8,320.6,1245.2,320.6L1245.2,320.6z M1241.6,310.6
2071 + c6.1,0,10.6-2.2,13.5-6.5c2.9-4.3,4.4-10,4.4-17.1v-1c0-5.3-0.6-10-1.9-14s-3.2-7.1-5.8-9.4c-2.6-2.3-5.9-3.4-9.9-3.4
2072 + c-4,0-7.1,0.9-9.8,2.8c-2.6,1.9-4.8,4.4-6.3,7.5v30.6c1.5,3.1,3.6,5.5,6.2,7.3c2.6,1.8,5.8,2.7,9.5,2.7L1241.6,310.6z"/>
2073 + </g>
2074 + <g>
2075 + <path class="st1" d="M1293.4,346.2c-1,0-2.2-0.1-3.8-0.3c-1.6-0.2-2.8-0.5-3.6-0.7l1.3-9.8c0.7,0.1,1.7,0.2,3,0.2s2.1,0.1,2.6,0.1
2076 + c2.7,0,4.8-1,6.5-3c1.7-2,3.2-4.8,4.7-8.3l3-7.2l-24.3-58.2l-7.4-1v-8.1h29.1v8.1l-8.3,1.3l13.3,34.4l3.2,9h0.4l15.8-43.3
2077 + l-8.7-1.3v-8.1h28v8.1l-7.1,1l-27,70.1c-1.3,3.3-2.8,6.3-4.6,8.9c-1.8,2.6-4,4.6-6.6,6.1C1300.2,345.4,1297,346.2,1293.4,346.2
2078 + L1293.4,346.2z"/>
2079 + </g>
2080 +</g>
2081 +</svg>
2082 +</div>
2083 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
2084 + <div class="cmplz-close" tabindex="0" role="button" aria-label="close-dialog">
2085 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
2086 + </div>
2087 + </div>
2088 +
2089 + <div class="cmplz-divider cmplz-divider-header"></div>
2090 + <div class="cmplz-body">
2091 + <div class="cmplz-message" id="cmplz-message-1-optin"><p>Pour vous offrir les meilleures expériences, nous utilisons des technologies, telles que les cookies, pour stocker et accéder à des informations sur votre appareil. Votre consentement à ces technologies nous permet de traiter des données, telles que vos préférences de navigation ou des identifiants uniques. Vous pouvez refuser ou retirer votre consentement à tout moment, ce qui pourrait affecter certaines fonctionnalités ou caractéristiques du site. Pour en savoir plus sur l’utilisation de vos données, veuillez consulter notre [politique de confidentialité](lien vers la politique de confidentialité).</p></div>
2092 + <!-- categories start -->
2093 + <div class="cmplz-categories">
2094 + <details class="cmplz-category cmplz-functional" >
2095 + <summary>
2096 + <span class="cmplz-category-header">
2097 + <span class="cmplz-category-title">Fonctionnel</span>
2098 + <span class='cmplz-always-active'>
2099 + <span class="cmplz-banner-checkbox">
2100 + <input type="checkbox"
2101 + id="cmplz-functional-optin"
2102 + data-category="cmplz_functional"
2103 + class="cmplz-consent-checkbox cmplz-functional"
2104 + size="40"
2105 + value="1"/>
2106 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
2107 + </span>
2108 + Toujours activé </span>
2109 + <span class="cmplz-icon cmplz-open">
2110 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2111 + </span>
2112 + </span>
2113 + </summary>
2114 + <div class="cmplz-description">
2115 + <span class="cmplz-description-functional">L’accès ou le stockage technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
2116 + </div>
2117 + </details>
2118 +
2119 + <details class="cmplz-category cmplz-preferences" >
2120 + <summary>
2121 + <span class="cmplz-category-header">
2122 + <span class="cmplz-category-title">Préférences</span>
2123 + <span class="cmplz-banner-checkbox">
2124 + <input type="checkbox"
2125 + id="cmplz-preferences-optin"
2126 + data-category="cmplz_preferences"
2127 + class="cmplz-consent-checkbox cmplz-preferences"
2128 + size="40"
2129 + value="1"/>
2130 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
2131 + </span>
2132 + <span class="cmplz-icon cmplz-open">
2133 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2134 + </span>
2135 + </span>
2136 + </summary>
2137 + <div class="cmplz-description">
2138 + <span class="cmplz-description-preferences">L'accès ou le stockage technique est nécessaire dans la finalité d'intérêt légitime de stocker des préférences spécifiques des utilisateurs, telles que la langue, la région ou d'autres paramètres personnalisés, afin d'améliorer leur expérience sur le site.</span>
2139 + </div>
2140 + </details>
2141 +
2142 + <details class="cmplz-category cmplz-statistics" >
2143 + <summary>
2144 + <span class="cmplz-category-header">
2145 + <span class="cmplz-category-title">Statistiques</span>
2146 + <span class="cmplz-banner-checkbox">
2147 + <input type="checkbox"
2148 + id="cmplz-statistics-optin"
2149 + data-category="cmplz_statistics"
2150 + class="cmplz-consent-checkbox cmplz-statistics"
2151 + size="40"
2152 + value="1"/>
2153 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
2154 + </span>
2155 + <span class="cmplz-icon cmplz-open">
2156 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2157 + </span>
2158 + </span>
2159 + </summary>
2160 + <div class="cmplz-description">
2161 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
2162 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique est utilisé exclusivement à des fins statistiques anonymes. Sans assignation légale, conformité volontaire de votre fournisseur d’accès à Internet ou données supplémentaires d’une tierce partie, les informations collectées à cette fin ne peuvent pas être utilisées pour vous identifier.</span>
2163 + </div>
2164 + </details>
2165 + <details class="cmplz-category cmplz-marketing" >
2166 + <summary>
2167 + <span class="cmplz-category-header">
2168 + <span class="cmplz-category-title">Marketing</span>
2169 + <span class="cmplz-banner-checkbox">
2170 + <input type="checkbox"
2171 + id="cmplz-marketing-optin"
2172 + data-category="cmplz_marketing"
2173 + class="cmplz-consent-checkbox cmplz-marketing"
2174 + size="40"
2175 + value="1"/>
2176 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
2177 + </span>
2178 + <span class="cmplz-icon cmplz-open">
2179 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2180 + </span>
2181 + </span>
2182 + </summary>
2183 + <div class="cmplz-description">
2184 + <span class="cmplz-description-marketing">L’accès ou le stockage technique est nécessaire pour créer des profils d’utilisateurs, diffuser des publicités personnalisées, et suivre l’activité de l’utilisateur sur ce site ou sur plusieurs sites web dans le cadre de campagnes marketing similaires.</span>
2185 + </div>
2186 + </details>
2187 + </div><!-- categories end -->
2188 + </div>
2189 +
2190 + <div class="cmplz-links cmplz-information">
2191 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
2192 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
2193 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
2194 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
2195 + </div>
2196 +
2197 + <div class="cmplz-divider cmplz-footer"></div>
2198 +
2199 + <div class="cmplz-buttons">
2200 + <button class="cmplz-btn cmplz-accept">Accepter</button>
2201 + <button class="cmplz-btn cmplz-deny">Refuser</button>
2202 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
2203 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
2204 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
2205 + </div>
2206 +
2207 + <div class="cmplz-links cmplz-documents">
2208 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
2209 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
2210 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
2211 + </div>
2212 +
2213 +</div>
2214 +</div>
2215 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
2216 +
2217 +</div> <script data-service="google-recaptcha" data-category="marketing" type="text/plain">
2218 + var reCaptchaIDs = [];
2219 + var siteKey = '6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc';
2220 + var reCaptchaType = 'v3';
2221 +
2222 + var houzezReCaptchaLoad = function() {
2223 + jQuery( '.houzez_google_reCaptcha' ).each( function( index, el ) {
2224 + var tempID;
2225 +
2226 + if ( reCaptchaType === 'v3' ) {
2227 +
2228 + tempID = grecaptcha.ready(function () {
2229 + grecaptcha.execute(siteKey, {action: 'homepage'}).then(function (token) {
2230 + el.insertAdjacentHTML('beforeend', '<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="' + token + '">');
2231 + });
2232 + });
2233 +
2234 + } else {
2235 +
2236 + tempID = grecaptcha.render( el, {
2237 + 'sitekey' : siteKey
2238 + } );
2239 + }
2240 +
2241 + reCaptchaIDs.push( tempID );
2242 + } );
2243 + };
2244 +
2245 + //reCAPTCHA reset
2246 + var houzezReCaptchaReset = function() {
2247 + if ( reCaptchaType === 'v2' ) {
2248 + if( typeof reCaptchaIDs != 'undefined' ) {
2249 + var arrayLength = reCaptchaIDs.length;
2250 + for( var i = 0; i < arrayLength; i++ ) {
2251 + grecaptcha.reset( reCaptchaIDs[i] );
2252 + }
2253 + }
2254 + } else {
2255 + houzezReCaptchaLoad();
2256 + }
2257 + };
2258 + </script>
2259 + <script>
2260 + const lazyloadRunObserver = () => {
2261 + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
2262 + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
2263 + entries.forEach( ( entry ) => {
2264 + if ( entry.isIntersecting ) {
2265 + let lazyloadBackground = entry.target;
2266 + if( lazyloadBackground ) {
2267 + lazyloadBackground.classList.add( 'e-lazyloaded' );
2268 + }
2269 + lazyloadBackgroundObserver.unobserve( entry.target );
2270 + }
2271 + });
2272 + }, { rootMargin: '200px 0px 200px 0px' } );
2273 + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
2274 + lazyloadBackgroundObserver.observe( lazyloadBackground );
2275 + } );
2276 + };
2277 + const events = [
2278 + 'DOMContentLoaded',
2279 + 'elementor/lazyload/observe',
2280 + ];
2281 + events.forEach( ( event ) => {
2282 + document.addEventListener( event, lazyloadRunObserver );
2283 + } );
2284 + </script>
2285 + <link rel='stylesheet' id='rs-plugin-settings-css' href='//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/css/rs6.css?ver=6.7.20' type='text/css' media='all' />
2286 +<style id='rs-plugin-settings-inline-css' type='text/css'>
2287 +#rs-demo-id {}
2288 +</style>
2289 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.20" defer async id="tp-tools-js"></script>
2290 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.20" defer async id="revmin-js"></script>
2291 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/all-scripts.js?ver=3.4.4" id="houzez-all-in-one-js"></script>
2292 +<script type="module" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/houzez-instant-page.js?ver=3.0.0" id="houzez-instant-page-js"></script>
2293 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/lightslider.min.js?ver=1.1.3" id="lightslider-js"></script>
2294 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/Chart.min.js?ver=2.8.0" id="chart-js"></script>
2295 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script>
2296 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/menu.min.js?ver=1.13.3" id="jquery-ui-menu-js"></script>
2297 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/dom-ready.min.js?ver=f77871ff7694fffea381" id="wp-dom-ready-js"></script>
2298 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script>
2299 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script>
2300 +<script type="text/javascript" id="wp-i18n-js-after">
2301 +/* <![CDATA[ */
2302 +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
2303 +/* ]]> */
2304 +</script>
2305 +<script type="text/javascript" id="wp-a11y-js-translations">
2306 +/* <![CDATA[ */
2307 +( function( domain, translations ) {
2308 + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
2309 + localeData[""].domain = domain;
2310 + wp.i18n.setLocaleData( localeData, domain );
2311 +} )( "default", {"translation-revision-date":"2025-10-01 05:29:20+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} );
2312 +/* ]]> */
2313 +</script>
2314 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/a11y.min.js?ver=3156534cc54473497e14" id="wp-a11y-js"></script>
2315 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.13.3" id="jquery-ui-autocomplete-js"></script>
2316 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/mouse.min.js?ver=1.13.3" id="jquery-ui-mouse-js"></script>
2317 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/slider.min.js?ver=1.13.3" id="jquery-ui-slider-js"></script>
2318 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/bootstrap-datepicker.min.js?ver=1.9.0" id="bootstrap-datepicker-js"></script>
2319 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr.min.js?ver=1.0" id="bootstrap-datepicker.fr-js"></script>
2320 +<script type="text/javascript" id="houzez-custom-js-extra">
2321 +/* <![CDATA[ */
2322 +var houzez_vars = {"admin_url":"https:\/\/immeublesalexcellence.com\/wp-admin\/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https:\/\/immeublesalexcellence.com\/appartements\/4%c2%bd-a-proximite-de-luniversite-de-sherbrooke-et-mont-bellevue\/","property_gallery_popup_type":"houzez","wp_is_mobile":"","default_lat":"25.686540","default_long":"-80.431345","houzez_is_splash":"","prop_detail_nav":"yes","add_to_favorite_login_required":"1","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_banner","login_loading":"Envoi d'informations utilisateur, veuillez patienter ...","not_found":"Nous n'avons trouv\u00e9 aucun r\u00e9sultat","listings_not_found":"No more listings found","houzez_map_system":"osm","for_rent":"a-louer","for_rent_price_slider":"a-louer","search_min_price_range":"0","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","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"0","geocomplete_country":"","is_edit_property":"","processing_text":"Traitement, veuillez patienter ...","halfmap_layout":"","prev_text":"Prev","next_text":"Prochain","keyword_search_field":"prop_title","keyword_autocomplete":"1","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"1","simple_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo":"","mobile_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo_mobile":"","retina_logo_mobile_splash":"","custom_logo_splash":"","retina_logo_splash":"","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"","favorite_url":"","template_thankyou":"https:\/\/immeublesalexcellence.com\/","compare_page_not_found":"Veuillez cr\u00e9er une page en utilisant le mod\u00e8le de propri\u00e9t\u00e9s de comparaison","compare_limit":"Prix \u200b\u200bmaximum pour le loyer seulement","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Ajouter au comparatif","remove_compare_text":"Retirer du comparatif","is_mapbox":"google","api_mapbox":"","listing_pagination":"_loadmore","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""};
2323 +/* ]]> */
2324 +</script>
2325 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/custom.js?ver=3.4.4" id="houzez-custom-js"></script>
2326 +<script data-service="google-recaptcha" data-category="marketing" type="text/plain" data-cmplz-src="//www.google.com/recaptcha/api.js?render=6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc&amp;onload=houzezReCaptchaLoad&amp;ver=3.4.4" id="houzez-google-recaptcha-js"></script>
2327 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js//vendors/leaflet/leaflet.js?ver=1.9.3" id="leaflet-js"></script>
2328 +<script type="text/javascript" id="houzez-single-property-map-js-extra">
2329 +/* <![CDATA[ */
2330 +var houzez_single_property_map = [];
2331 +var houzez_map_options = {"markerPricePins":"no","single_map_zoom":"14","map_type":"satellite","map_pin_type":"marker","googlemap_stype":"[{\"featureType\":\"administrative\",\"elementType\":\"labels.text.fill\",\"stylers\":[{\"color\":\"#444444\"}]},{\"featureType\":\"administrative.locality\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"landscape\",\"elementType\":\"all\",\"stylers\":[{\"color\":\"#f2f2f2\"},{\"visibility\":\"simplified\"}]},{\"featureType\":\"poi\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"poi\",\"elementType\":\"geometry\",\"stylers\":[{\"visibility\":\"simplified\"},{\"saturation\":\"-65\"},{\"lightness\":\"45\"},{\"gamma\":\"1.78\"}]},{\"featureType\":\"poi\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"poi\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road\",\"elementType\":\"all\",\"stylers\":[{\"saturation\":-100},{\"lightness\":45}]},{\"featureType\":\"road\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"road\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road.highway\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"simplified\"}]},{\"featureType\":\"road.highway\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road.arterial\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.line\",\"elementType\":\"geometry\",\"stylers\":[{\"saturation\":\"-33\"},{\"lightness\":\"22\"},{\"gamma\":\"2.08\"}]},{\"featureType\":\"transit.station.airport\",\"elementType\":\"geometry\",\"stylers\":[{\"gamma\":\"2.08\"},{\"hue\":\"#ffa200\"}]},{\"featureType\":\"transit.station.airport\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.station.rail\",\"elementType\":\"labels.text\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.station.rail\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"simplified\"},{\"saturation\":\"-55\"},{\"lightness\":\"-2\"},{\"gamma\":\"1.88\"},{\"hue\":\"#ffab00\"}]},{\"featureType\":\"water\",\"elementType\":\"all\",\"stylers\":[{\"color\":\"#bbd9e5\"},{\"visibility\":\"simplified\"}]}]","closeIcon":"https:\/\/immeublesalexcellence.com\/wp-content\/themes\/houzez\/img\/map\/close.png","infoWindowPlac":"https:\/\/placehold.it\/120x90&text=Immeubles+Alexcellence"};
2332 +/* ]]> */
2333 +</script>
2334 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/single-property-osm-map.js?ver=3.4.4" id="houzez-single-property-map-js"></script>
2335 +<script type="text/javascript" id="cmplz-cookiebanner-js-extra">
2336 +/* <![CDATA[ */
2337 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"0","banner_version":"8517","version":"7.3.2","store_consent":"1","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"1","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/immeublesalexcellence.com\/wp-json\/complianz\/v1\/","locale":"lang=fr&locale=fr_FR","set_cookies_on_root":"0","cookie_domain":"","current_policy_id":"37","cookie_path":"\/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"<div class=\"cmplz-blocked-content-notice-body\">Cliquez sur \u00ab\u00a0J\u2019accepte\u00a0\u00bb pour activer {service}\u00a0<div class=\"cmplz-links\"><a href=\"#\" class=\"cmplz-link cookie-statement\">{title}<\/a><\/div><\/div><button class=\"cmplz-accept-service\">J\u2019accepte<\/button>","css_file":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=8517","page_links":{"ca":{"cookie-statement":{"title":"Politique de cookies ","url":"https:\/\/immeublesalexcellence.com\/politique-de-cookies-ca\/"},"privacy-statement":{"title":"D\u00e9claration de confidentialit\u00e9 ","url":"https:\/\/immeublesalexcellence.com\/declaration-de-confidentialite-ca\/"},"privacy-statement-children":{"title":"","url":"https:\/\/immeublesalexcellence.com\/appartements-a-louer\/"}}},"tm_categories":"","forceEnableStats":"1","preview":"","clean_cookies":"1","aria_label":"Cliquez sur le bouton pour activer {service}"};
2338 +/* ]]> */
2339 +</script>
2340 +<script defer type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/cookiebanner/js/complianz.min.js?ver=1736710566" id="cmplz-cookiebanner-js"></script>
2341 +<script type="text/javascript" id="cmplz-cookiebanner-js-after">
2342 +/* <![CDATA[ */
2343 +
2344 + if ('undefined' != typeof window.jQuery) {
2345 + jQuery(document).ready(function ($) {
2346 + $(document).on('elementor/popup/show', () => {
2347 + let rev_cats = cmplz_categories.reverse();
2348 + for (let key in rev_cats) {
2349 + if (rev_cats.hasOwnProperty(key)) {
2350 + let category = cmplz_categories[key];
2351 + if (cmplz_has_consent(category)) {
2352 + document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => {
2353 + cmplz_remove_placeholder(obj);
2354 + });
2355 + }
2356 + }
2357 + }
2358 +
2359 + let services = cmplz_get_services_on_page();
2360 + for (let key in services) {
2361 + if (services.hasOwnProperty(key)) {
2362 + let service = services[key].service;
2363 + let category = services[key].category;
2364 + if (cmplz_has_service_consent(service, category)) {
2365 + document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => {
2366 + cmplz_remove_placeholder(obj);
2367 + });
2368 + }
2369 + }
2370 + }
2371 + });
2372 + });
2373 + }
2374 +
2375 +
2376 +/* ]]> */
2377 +</script>
2378 +<!-- Statistics script Complianz GDPR/CCPA -->
2379 + <script data-category="functional">window['gtag_enable_tcf_support'] = false;
2380 +window.dataLayer = window.dataLayer || [];
2381 +function gtag(){dataLayer.push(arguments);}
2382 +gtag('js', new Date());
2383 +gtag('config', '', {
2384 + cookie_flags:'secure;samesite=none',
2385 + 'anonymize_ip': true
2386 +});
2387 +</script>
2388 +</body>
2389 +</html>
added tests/fixtures/alexcellence/b51aa380c29b19f6bb1e.html +2108 −0
@@ -0,0 +1,2108 @@
1 +<!doctype html>
2 +<html lang="fr-FR">
3 +<head>
4 + <meta charset="UTF-8" />
5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 + <link rel="profile" href="https://gmpg.org/xfn/11" />
7 + <meta name="format-detection" content="telephone=no">
8 + <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://immeublesalexcellence.com/wp-content/themes/houzez/img/studio-icon.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>
9 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
10 + <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
11 +
12 + <!-- This site is optimized with the Yoast SEO plugin v24.3 - https://yoast.com/wordpress/plugins/seo/ -->
13 + <title>Appartements à louer | IMMEUBLES ALEXCELLENCE</title>
14 + <meta name="description" content="Retrouvez tous nos appartements à louer dans les secteurs Université de Sherbrooke et Mont-Bellevue, idéaux pour étudiants : 3½, 4½, 5½." />
15 + <link rel="canonical" href="https://immeublesalexcellence.com/appartements-a-louer/" />
16 + <meta property="og:locale" content="fr_FR" />
17 + <meta property="og:type" content="article" />
18 + <meta property="og:title" content="Appartements à louer | IMMEUBLES ALEXCELLENCE" />
19 + <meta property="og:description" content="Retrouvez tous nos appartements à louer dans les secteurs Université de Sherbrooke et Mont-Bellevue, idéaux pour étudiants : 3½, 4½, 5½." />
20 + <meta property="og:url" content="https://immeublesalexcellence.com/appartements-a-louer/" />
21 + <meta property="og:site_name" content="Immeubles Alexcellence" />
22 + <meta property="article:publisher" content="https://www.facebook.com/immeublesalexcellence" />
23 + <meta property="article:modified_time" content="2025-04-04T13:25:14+00:00" />
24 + <meta property="og:image" content="https://immeublesalexcellence.com/wp-content/uploads/2025/01/immeubles-alexcellence.jpg" />
25 + <meta property="og:image:width" content="1200" />
26 + <meta property="og:image:height" content="675" />
27 + <meta property="og:image:type" content="image/jpeg" />
28 + <meta name="twitter:card" content="summary_large_image" />
29 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://immeublesalexcellence.com/appartements-a-louer/","url":"https://immeublesalexcellence.com/appartements-a-louer/","name":"Appartements à louer | IMMEUBLES ALEXCELLENCE","isPartOf":{"@id":"https://immeublesalexcellence.com/#website"},"datePublished":"2016-06-20T21:04:52+00:00","dateModified":"2025-04-04T13:25:14+00:00","description":"Retrouvez tous nos appartements à louer dans les secteurs Université de Sherbrooke et Mont-Bellevue, idéaux pour étudiants : 3½, 4½, 5½.","inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://immeublesalexcellence.com/appartements-a-louer/"]}]},{"@type":"WebSite","@id":"https://immeublesalexcellence.com/#website","url":"https://immeublesalexcellence.com/","name":"Immeubles Alexcellence","description":"Appartement a louer Université Sherbrooke","publisher":{"@id":"https://immeublesalexcellence.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://immeublesalexcellence.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https://immeublesalexcellence.com/#organization","name":"Immeubles Alexcellence","url":"https://immeublesalexcellence.com/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/#/schema/logo/image/","url":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","width":436,"height":123,"caption":"Immeubles Alexcellence"},"image":{"@id":"https://immeublesalexcellence.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/immeublesalexcellence","https://www.instagram.com/immeublealexellence/"]}]}</script>
30 + <!-- / Yoast SEO plugin. -->
31 +
32 +
33 +<link rel='dns-prefetch' href='//www.google.com' />
34 +<link rel='dns-prefetch' href='//fonts.googleapis.com' />
35 +<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin />
36 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux" href="https://immeublesalexcellence.com/feed/" />
37 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux des commentaires" href="https://immeublesalexcellence.com/comments/feed/" />
38 +<script type="text/javascript">
39 +/* <![CDATA[ */
40 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/immeublesalexcellence.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.5"}};
41 +/*! This file is auto-generated */
42 +!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
43 +/* ]]> */
44 +</script>
45 +<style id='wp-emoji-styles-inline-css' type='text/css'>
46 +
47 + img.wp-smiley, img.emoji {
48 + display: inline !important;
49 + border: none !important;
50 + box-shadow: none !important;
51 + height: 1em !important;
52 + width: 1em !important;
53 + margin: 0 0.07em !important;
54 + vertical-align: -0.1em !important;
55 + background: none !important;
56 + padding: 0 !important;
57 + }
58 +</style>
59 +<style id='classic-theme-styles-inline-css' type='text/css'>
60 +/*! This file is auto-generated */
61 +.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}
62 +</style>
63 +<style id='global-styles-inline-css' type='text/css'>
64 +: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,rgba(6,147,227,1) 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,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%,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 rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}: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;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.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;}
65 +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
66 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
67 +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
68 +</style>
69 +<link rel='stylesheet' id='elementor-frontend-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.27.1' type='text/css' media='all' />
70 +<link rel='stylesheet' id='elementor-post-6-css' href='https://immeublesalexcellence.com/wp-content/uploads/elementor/css/post-6.css?ver=1737736055' type='text/css' media='all' />
71 +<link rel='stylesheet' id='font-awesome-5-all-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.27.1' type='text/css' media='all' />
72 +<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.27.1' type='text/css' media='all' />
73 +<link rel='stylesheet' id='houzez-studio-css' href='https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/css/houzez-studio-public.css?ver=1.2.1' type='text/css' media='all' />
74 +<link rel='stylesheet' id='cmplz-general-css' href='https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/assets/css/cookieblocker.min.css?ver=1736710567' type='text/css' media='all' />
75 +<link rel='stylesheet' id='houzez-all-css-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/css/all-css.css?ver=3.4.4' type='text/css' media='all' />
76 +<link rel='stylesheet' id='houzez-style-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/style.css?ver=3.4.4' type='text/css' media='all' />
77 +<style id='houzez-style-inline-css' type='text/css'>
78 +
79 + @media (min-width: 1200px) {
80 + .container {
81 + max-width: 1310px;
82 + }
83 + }
84 + .status-color-21 {
85 + background-color: #45962e;
86 + }
87 +
88 + .status-color-199 {
89 + background-color: #595959;
90 + }
91 +
92 + body {
93 + font-family: Roboto;
94 + font-size: 15px;
95 + font-weight: 400;
96 + line-height: 25px;
97 + text-transform: none;
98 + }
99 + .main-nav,
100 + .dropdown-menu,
101 + .login-register,
102 + .btn.btn-create-listing,
103 + .logged-in-nav,
104 + .btn-phone-number {
105 + font-family: Roboto;
106 + font-size: 14px;
107 + font-weight: 500;
108 + text-align: left;
109 + text-transform: none;
110 + }
111 +
112 + .btn,
113 + .ele-btn,
114 + .houzez-search-button,
115 + .houzez-submit-button,
116 + .form-control,
117 + .bootstrap-select .text,
118 + .sort-by-title,
119 + .woocommerce ul.products li.product .button {
120 + font-family: Roboto;
121 + font-size: 15px;
122 + }
123 +
124 + h1, h2, h3, h4, h5, h6, .item-title {
125 + font-family: Roboto;
126 + font-weight: 500;
127 + text-transform: inherit;
128 + }
129 +
130 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
131 + font-weight: 500;
132 + text-transform: inherit;
133 + text-align: inherit;
134 + }
135 +
136 + .top-bar-wrap {
137 + font-family: Roboto;
138 + font-size: 13px;
139 + font-weight: 300;
140 + line-height: 25px;
141 + text-align: left;
142 + text-transform: none;
143 + }
144 + .footer-wrap {
145 + font-family: Roboto;
146 + font-size: 14px;
147 + font-weight: 300;
148 + line-height: 25px;
149 + text-align: left;
150 + text-transform: none;
151 + }
152 +
153 + .header-v1 .header-inner-wrap,
154 + .header-v1 .navbar-logged-in-wrap {
155 + line-height: 60px;
156 + height: 60px;
157 + }
158 + .header-v2 .header-top .navbar {
159 + height: 110px;
160 + }
161 +
162 + .header-v2 .header-bottom .header-inner-wrap,
163 + .header-v2 .header-bottom .navbar-logged-in-wrap {
164 + line-height: 54px;
165 + height: 54px;
166 + }
167 +
168 + .header-v3 .header-top .header-inner-wrap,
169 + .header-v3 .header-top .header-contact-wrap {
170 + height: 80px;
171 + line-height: 80px;
172 + }
173 + .header-v3 .header-bottom .header-inner-wrap,
174 + .header-v3 .header-bottom .navbar-logged-in-wrap {
175 + line-height: 54px;
176 + height: 54px;
177 + }
178 + .header-v4 .header-inner-wrap,
179 + .header-v4 .navbar-logged-in-wrap {
180 + line-height: 90px;
181 + height: 90px;
182 + }
183 + .header-v5 .header-top .header-inner-wrap,
184 + .header-v5 .header-top .navbar-logged-in-wrap {
185 + line-height: 110px;
186 + height: 110px;
187 + }
188 + .header-v5 .header-bottom .header-inner-wrap {
189 + line-height: 54px;
190 + height: 54px;
191 + }
192 + .header-v6 .header-inner-wrap,
193 + .header-v6 .navbar-logged-in-wrap {
194 + height: 60px;
195 + line-height: 60px;
196 + }
197 + @media (min-width: 1200px) {
198 + .header-v5 .header-top .container {
199 + max-width: 1170px;
200 + }
201 + }
202 +
203 + body,
204 + .main-wrap,
205 + .fw-property-documents-wrap h3 span,
206 + .fw-property-details-wrap h3 span {
207 + background-color: #f7f7f7;
208 + }
209 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
210 + background-color: #ffffff;
211 + }
212 +
213 + body,
214 + .form-control,
215 + .bootstrap-select .text,
216 + .item-title a,
217 + .listing-tabs .nav-tabs .nav-link,
218 + .item-wrap-v2 .item-amenities li span,
219 + .item-wrap-v2 .item-amenities li:before,
220 + .item-parallax-wrap .item-price-wrap,
221 + .list-view .item-body .item-price-wrap,
222 + .property-slider-item .item-price-wrap,
223 + .page-title-wrap .item-price-wrap,
224 + .agent-information .agent-phone span a,
225 + .property-overview-wrap ul li strong,
226 + .mobile-property-title .item-price-wrap .item-price,
227 + .fw-property-features-left li a,
228 + .lightbox-content-wrap .item-price-wrap,
229 + .blog-post-item-v1 .blog-post-title h3 a,
230 + .blog-post-content-widget h4 a,
231 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
232 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
233 + .agent-list-wrap .agent-list-content h2 a,
234 + .agent-list-wrap .agent-list-contact li a,
235 + .agent-contacts-wrap li a,
236 + .menu-edit-property li a,
237 + .statistic-referrals-list li a,
238 + .chart-nav .nav-pills .nav-link,
239 + .dashboard-table-properties td .property-payment-status,
240 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
241 + .payment-method-block .radio-tab .control-text,
242 + .post-title-wrap h2 a,
243 + .lead-nav-tab.nav-pills .nav-link,
244 + .deals-nav-tab.nav-pills .nav-link,
245 + .btn-light-grey-outlined:hover,
246 + button:not(.bs-placeholder) .filter-option-inner-inner,
247 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
248 + .products > .product > .item-body > a,
249 + .woocommerce ul.products li.product .price,
250 + .woocommerce div.product p.price,
251 + .woocommerce div.product span.price,
252 + .woocommerce #reviews #comments ol.commentlist li .meta,
253 + .woocommerce-MyAccount-navigation ul li a,
254 + .activitiy-item-close-button a,
255 + .property-section-wrap li a {
256 + color: #222222;
257 + }
258 +
259 +
260 +
261 + a,
262 + a:hover,
263 + a:active,
264 + a:focus,
265 + .primary-text,
266 + .btn-clear,
267 + .btn-apply,
268 + .btn-primary-outlined,
269 + .btn-primary-outlined:before,
270 + .item-title a:hover,
271 + .sort-by .bootstrap-select .bs-placeholder,
272 + .sort-by .bootstrap-select > .btn,
273 + .sort-by .bootstrap-select > .btn:active,
274 + .page-link,
275 + .page-link:hover,
276 + .accordion-title:before,
277 + .blog-post-content-widget h4 a:hover,
278 + .agent-list-wrap .agent-list-content h2 a:hover,
279 + .agent-list-wrap .agent-list-contact li a:hover,
280 + .agent-contacts-wrap li a:hover,
281 + .agent-nav-wrap .nav-pills .nav-link,
282 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
283 + .menu-edit-property li a.active,
284 + .menu-edit-property li a:hover,
285 + .dashboard-statistic-block h3 .fa,
286 + .statistic-referrals-list li a:hover,
287 + .chart-nav .nav-pills .nav-link.active,
288 + .board-message-icon-wrap.active,
289 + .post-title-wrap h2 a:hover,
290 + .listing-switch-view .switch-btn.active,
291 + .item-wrap-v6 .item-price-wrap,
292 + .listing-v6 .list-view .item-body .item-price-wrap,
293 + .woocommerce nav.woocommerce-pagination ul li a,
294 + .woocommerce nav.woocommerce-pagination ul li span,
295 + .woocommerce-MyAccount-navigation ul li a:hover,
296 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
297 + .property-schedule-tour-form-wrap .control:hover,
298 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
299 + .login-register .btn-icon-login-register + .dropdown-menu a,
300 + .activitiy-item-close-button a:hover,
301 + .property-section-wrap li a:hover,
302 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active,
303 + .property-lightbox-v2-sections-navigation .slick-prev,
304 + .property-lightbox-v2-sections-navigation .slick-next,
305 + .property-lightbox-v2-sections-navigation .slick-slide.current-section,
306 + .property-lightbox-v2-sections-navigation .nav-link.active,
307 + .agent-detail-page-v2 .listing-tabs .nav-link.active {
308 + color: #014582;
309 + }
310 +
311 + .agent-list-position a {
312 + color: #014582;
313 + }
314 +
315 + .control input:checked ~ .control__indicator,
316 + .top-banner-wrap .nav-pills .nav-link,
317 + .btn-primary-outlined:hover,
318 + .page-item.active .page-link,
319 + .slick-prev:hover,
320 + .slick-prev:focus,
321 + .slick-next:hover,
322 + .slick-next:focus,
323 + .mobile-property-tools .nav-pills .nav-link.active,
324 + .login-register-form .modal-header,
325 + .agent-nav-wrap .nav-pills .nav-link.active,
326 + .board-message-icon-wrap .notification-circle,
327 + .primary-label,
328 + .fc-event, .fc-event-dot,
329 + .compare-table .table-hover > tbody > tr:hover,
330 + .post-tag,
331 + .datepicker table tr td.active.active,
332 + .datepicker table tr td.active.disabled,
333 + .datepicker table tr td.active.disabled.active,
334 + .datepicker table tr td.active.disabled.disabled,
335 + .datepicker table tr td.active.disabled:active,
336 + .datepicker table tr td.active.disabled:hover,
337 + .datepicker table tr td.active.disabled:hover.active,
338 + .datepicker table tr td.active.disabled:hover.disabled,
339 + .datepicker table tr td.active.disabled:hover:active,
340 + .datepicker table tr td.active.disabled:hover:hover,
341 + .datepicker table tr td.active.disabled:hover[disabled],
342 + .datepicker table tr td.active.disabled[disabled],
343 + .datepicker table tr td.active:active,
344 + .datepicker table tr td.active:hover,
345 + .datepicker table tr td.active:hover.active,
346 + .datepicker table tr td.active:hover.disabled,
347 + .datepicker table tr td.active:hover:active,
348 + .datepicker table tr td.active:hover:hover,
349 + .datepicker table tr td.active:hover[disabled],
350 + .datepicker table tr td.active[disabled],
351 + .ui-slider-horizontal .ui-slider-range,
352 + .btn-bubble {
353 + background-color: #014582;
354 + }
355 +
356 + .control input:checked ~ .control__indicator,
357 + .btn-primary-outlined,
358 + .page-item.active .page-link,
359 + .mobile-property-tools .nav-pills .nav-link.active,
360 + .agent-nav-wrap .nav-pills .nav-link,
361 + .agent-nav-wrap .nav-pills .nav-link.active,
362 + .chart-nav .nav-pills .nav-link.active,
363 + .dashaboard-snake-nav .step-block.active,
364 + .fc-event,
365 + .fc-event-dot,
366 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
367 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
368 + border-color: #014582;
369 + }
370 +
371 + .slick-arrow:hover {
372 + background-color: rgba(36,52,140,0.52);
373 + }
374 +
375 + .slick-arrow {
376 + background-color: #014582;
377 + }
378 +
379 + .property-banner .nav-pills .nav-link.active {
380 + background-color: rgba(36,52,140,0.52) !important;
381 + }
382 +
383 + .property-navigation-wrap a.active {
384 + color: #014582;
385 + -webkit-box-shadow: inset 0 -3px #014582;
386 + box-shadow: inset 0 -3px #014582;
387 + }
388 +
389 + .btn-primary,
390 + .fc-button-primary,
391 + .woocommerce nav.woocommerce-pagination ul li a:focus,
392 + .woocommerce nav.woocommerce-pagination ul li a:hover,
393 + .woocommerce nav.woocommerce-pagination ul li span.current {
394 + color: #fff;
395 + background-color: #014582;
396 + border-color: #014582;
397 + }
398 + .btn-primary:focus, .btn-primary:focus:active,
399 + .fc-button-primary:focus,
400 + .fc-button-primary:focus:active {
401 + color: #fff;
402 + background-color: #014582;
403 + border-color: #014582;
404 + }
405 + .btn-primary:hover,
406 + .fc-button-primary:hover {
407 + color: #fff;
408 + background-color: #24348c;
409 + border-color: #24348c;
410 + }
411 + .btn-primary:active,
412 + .btn-primary:not(:disabled):not(:disabled):active,
413 + .fc-button-primary:active,
414 + .fc-button-primary:not(:disabled):not(:disabled):active {
415 + color: #fff;
416 + background-color: #24348c;
417 + border-color: #24348c;
418 + }
419 +
420 + .btn-secondary,
421 + .woocommerce span.onsale,
422 + .woocommerce ul.products li.product .button,
423 + .woocommerce #respond input#submit.alt,
424 + .woocommerce a.button.alt,
425 + .woocommerce button.button.alt,
426 + .woocommerce input.button.alt,
427 + .woocommerce #review_form #respond .form-submit input,
428 + .woocommerce #respond input#submit,
429 + .woocommerce a.button,
430 + .woocommerce button.button,
431 + .woocommerce input.button {
432 + color: #fff;
433 + background-color: #2ea7b2;
434 + border-color: #2ea7b2;
435 + }
436 + .woocommerce ul.products li.product .button:focus,
437 + .woocommerce ul.products li.product .button:active,
438 + .woocommerce #respond input#submit.alt:focus,
439 + .woocommerce a.button.alt:focus,
440 + .woocommerce button.button.alt:focus,
441 + .woocommerce input.button.alt:focus,
442 + .woocommerce #respond input#submit.alt:active,
443 + .woocommerce a.button.alt:active,
444 + .woocommerce button.button.alt:active,
445 + .woocommerce input.button.alt:active,
446 + .woocommerce #review_form #respond .form-submit input:focus,
447 + .woocommerce #review_form #respond .form-submit input:active,
448 + .woocommerce #respond input#submit:active,
449 + .woocommerce a.button:active,
450 + .woocommerce button.button:active,
451 + .woocommerce input.button:active,
452 + .woocommerce #respond input#submit:focus,
453 + .woocommerce a.button:focus,
454 + .woocommerce button.button:focus,
455 + .woocommerce input.button:focus {
456 + color: #fff;
457 + background-color: #2ea7b2;
458 + border-color: #2ea7b2;
459 + }
460 + .btn-secondary:hover,
461 + .woocommerce ul.products li.product .button:hover,
462 + .woocommerce #respond input#submit.alt:hover,
463 + .woocommerce a.button.alt:hover,
464 + .woocommerce button.button.alt:hover,
465 + .woocommerce input.button.alt:hover,
466 + .woocommerce #review_form #respond .form-submit input:hover,
467 + .woocommerce #respond input#submit:hover,
468 + .woocommerce a.button:hover,
469 + .woocommerce button.button:hover,
470 + .woocommerce input.button:hover {
471 + color: #fff;
472 + background-color: #333333;
473 + border-color: #333333;
474 + }
475 + .btn-secondary:active,
476 + .btn-secondary:not(:disabled):not(:disabled):active {
477 + color: #fff;
478 + background-color: #333333;
479 + border-color: #333333;
480 + }
481 +
482 + .btn-primary-outlined {
483 + color: #014582;
484 + background-color: transparent;
485 + border-color: #014582;
486 + }
487 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
488 + color: #014582;
489 + background-color: transparent;
490 + border-color: #014582;
491 + }
492 + .btn-primary-outlined:hover {
493 + color: #fff;
494 + background-color: #24348c;
495 + border-color: #24348c;
496 + }
497 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
498 + color: #014582;
499 + background-color: rgba(26, 26, 26, 0);
500 + border-color: #24348c;
501 + }
502 +
503 + .btn-secondary-outlined {
504 + color: #2ea7b2;
505 + background-color: transparent;
506 + border-color: #2ea7b2;
507 + }
508 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
509 + color: #2ea7b2;
510 + background-color: transparent;
511 + border-color: #2ea7b2;
512 + }
513 + .btn-secondary-outlined:hover {
514 + color: #fff;
515 + background-color: #333333;
516 + border-color: #333333;
517 + }
518 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
519 + color: #2ea7b2;
520 + background-color: rgba(26, 26, 26, 0);
521 + border-color: #333333;
522 + }
523 +
524 + .btn-call {
525 + color: #2ea7b2;
526 + background-color: transparent;
527 + border-color: #2ea7b2;
528 + }
529 + .btn-call:focus, .btn-call:focus:active {
530 + color: #2ea7b2;
531 + background-color: transparent;
532 + border-color: #2ea7b2;
533 + }
534 + .btn-call:hover {
535 + color: #2ea7b2;
536 + background-color: rgba(26, 26, 26, 0);
537 + border-color: #333333;
538 + }
539 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
540 + color: #2ea7b2;
541 + background-color: rgba(26, 26, 26, 0);
542 + border-color: #333333;
543 + }
544 + .icon-delete .btn-loader:after{
545 + border-color: #014582 transparent #014582 transparent
546 + }
547 +
548 + .header-v1 {
549 + background-color: #004274;
550 + border-bottom: 1px solid #004274;
551 + }
552 +
553 + .header-v1 a.nav-link {
554 + color: #ffffff;
555 + }
556 +
557 + .header-v1 a.nav-link:hover,
558 + .header-v1 a.nav-link:active {
559 + color: #00aeff;
560 + background-color: rgba(255,255,255,0.2);
561 + }
562 + .header-desktop .main-nav .nav-link {
563 + letter-spacing: 0.0px;
564 + }
565 +
566 + .header-v2 .header-top,
567 + .header-v5 .header-top,
568 + .header-v2 .header-contact-wrap {
569 + background-color: #ffffff;
570 + }
571 +
572 + .header-v2 .header-bottom,
573 + .header-v5 .header-bottom {
574 + background-color: #004274;
575 + }
576 +
577 + .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 {
578 + color: #004274;
579 + }
580 +
581 + .header-v2 .header-contact-left {
582 + color: #004274;
583 + }
584 +
585 + .header-v2 .header-bottom,
586 + .header-v2 .navbar-nav > li,
587 + .header-v2 .navbar-nav > li:first-of-type,
588 + .header-v5 .header-bottom,
589 + .header-v5 .navbar-nav > li,
590 + .header-v5 .navbar-nav > li:first-of-type {
591 + border-color: rgba(255,255,255,0.2);
592 + }
593 +
594 + .header-v2 a.nav-link,
595 + .header-v5 a.nav-link {
596 + color: #ffffff;
597 + }
598 +
599 + .header-v2 a.nav-link:hover,
600 + .header-v2 a.nav-link:active,
601 + .header-v5 a.nav-link:hover,
602 + .header-v5 a.nav-link:active {
603 + color: #00aeff;
604 + background-color: rgba(255,255,255,0.2);
605 + }
606 +
607 + .header-v2 .header-contact-right a:hover,
608 + .header-v2 .header-contact-right a:active,
609 + .header-v3 .header-contact-right a:hover,
610 + .header-v3 .header-contact-right a:active {
611 + background-color: transparent;
612 + }
613 +
614 + .header-v2 .header-social-icons a,
615 + .header-v5 .header-social-icons a {
616 + color: #004274;
617 + }
618 +
619 + .header-v3 .header-top {
620 + background-color: #ffffff;
621 + }
622 +
623 + .header-v3 .header-bottom {
624 + background-color: #004272;
625 + }
626 +
627 + .header-v3 .header-contact,
628 + .header-v3-mobile {
629 + background-color: #00aeef;
630 + color: #ffffff;
631 + }
632 +
633 + .header-v3 .header-bottom,
634 + .header-v3 .login-register,
635 + .header-v3 .navbar-nav > li,
636 + .header-v3 .navbar-nav > li:first-of-type {
637 + border-color: ;
638 + }
639 +
640 + .header-v3 a.nav-link,
641 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
642 + color: #003a6b;
643 + }
644 +
645 + .header-v3 a.nav-link:hover,
646 + .header-v3 a.nav-link:active {
647 + color: #00aeff;
648 + background-color: rgba(26,94,158,1);
649 + }
650 +
651 + .header-v3 .header-social-icons a {
652 + color: #FFFFFF;
653 + }
654 +
655 + .header-v4 {
656 + background-color: #000000;
657 + }
658 +
659 + .header-v4 a.nav-link {
660 + color: #ffffff;
661 + }
662 +
663 + .header-v4 a.nav-link:hover,
664 + .header-v4 a.nav-link:active {
665 + color: #00aeff;
666 + background-color: rgba(0, 174, 255, 0.1);
667 + }
668 +
669 + .header-v6 .header-top {
670 + background-color: #00AEEF;
671 + }
672 +
673 + .header-v6 a.nav-link {
674 + color: #FFFFFF;
675 + }
676 +
677 + .header-v6 a.nav-link:hover,
678 + .header-v6 a.nav-link:active {
679 + color: #00aeff;
680 + background-color: rgba(255,255,255,0.2);
681 + }
682 +
683 + .header-v6 .header-social-icons a {
684 + color: #FFFFFF;
685 + }
686 +
687 + .header-mobile {
688 + background-color: #ffffff;
689 + }
690 + .header-mobile .toggle-button-left,
691 + .header-mobile .toggle-button-right {
692 + color: #0b0049;
693 + }
694 +
695 + .nav-mobile .logged-in-nav a,
696 + .nav-mobile .main-nav,
697 + .nav-mobile .navi-login-register {
698 + background-color: #ffffff;
699 + }
700 +
701 + .nav-mobile .logged-in-nav a,
702 + .nav-mobile .main-nav .nav-item .nav-item a,
703 + .nav-mobile .main-nav .nav-item a,
704 + .navi-login-register .main-nav .nav-item a {
705 + color: #000000;
706 + border-bottom: 1px solid #000000;
707 + background-color: #ffffff;
708 + }
709 +
710 + .nav-mobile .btn-create-listing,
711 + .navi-login-register .btn-create-listing {
712 + color: #fff;
713 + border: 1px solid #014582;
714 + background-color: #014582;
715 + }
716 +
717 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
718 + .navi-login-register .btn-create-listing:hover,
719 + .navi-login-register .btn-create-listing:active {
720 + color: #fff;
721 + border: 1px solid #014582;
722 + background-color: rgba(0, 174, 255, 0.65);
723 + }
724 +
725 + .header-transparent-wrap .header-v4 {
726 + background-color: transparent;
727 + border-bottom: 1px none rgba(255,255,255,0.3);
728 + }
729 +
730 + .header-transparent-wrap .header-v4 a {
731 + color: #ffffff;
732 + }
733 +
734 + .header-transparent-wrap .header-v4 a:hover,
735 + .header-transparent-wrap .header-v4 a:active {
736 + color: #4aa7e1;
737 + background-color: rgba(255, 255, 255, 0.1);
738 + }
739 +
740 + .main-nav .navbar-nav .nav-item .dropdown-menu,
741 + .login-register .login-register-nav li .dropdown-menu {
742 + background-color: rgba(255,255,255,0.95);
743 + }
744 +
745 + .login-register .login-register-nav li .dropdown-menu:before {
746 + border-left-color: rgba(255,255,255,0.95);
747 + border-top-color: rgba(255,255,255,0.95);
748 + }
749 +
750 + .main-nav .navbar-nav .nav-item .nav-item a,
751 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
752 + color: #888888;
753 + border-bottom: 1px solid #e6e6e6;
754 + }
755 +
756 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
757 + .main-nav .navbar-nav .nav-item .nav-item a:active,
758 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
759 + color: #4aa7e1;
760 + }
761 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
762 + .main-nav .navbar-nav .nav-item .nav-item a:active,
763 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
764 + background-color: rgba(0, 174, 255, 0.1);
765 + }
766 +
767 + .header-main-wrap .btn-create-listing {
768 + color: #4aa7e1;
769 + border: 1px solid #4aa7e1;
770 + background-color: #ffffff;
771 + }
772 +
773 + .header-main-wrap .btn-create-listing:hover,
774 + .header-main-wrap .btn-create-listing:active {
775 + color: rgba(255,255,255,1);
776 + border: 1px solid #4aa7e1;
777 + background-color: rgba(74,167,225,1);
778 + }
779 +
780 + .header-transparent-wrap .header-v4 .btn-create-listing {
781 + color: #ffffff;
782 + border: 1px solid #ffffff;
783 + background-color: rgba(255,255,255,0.2);
784 + }
785 +
786 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
787 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
788 + color: rgba(255,255,255,1);
789 + border: 1px solid #4aa7e1;
790 + background-color: rgba(74,167,225,1);
791 + }
792 +
793 + .header-transparent-wrap .logged-in-nav a,
794 + .logged-in-nav a {
795 + color: #15268c;
796 + border-color: #e6e6e6;
797 + background-color: #FFFFFF;
798 + }
799 +
800 + .header-transparent-wrap .logged-in-nav a:hover,
801 + .header-transparent-wrap .logged-in-nav a:active,
802 + .logged-in-nav a:hover,
803 + .logged-in-nav a:active {
804 + color: #17298c;
805 + background-color: rgba(204,204,204,0.15);
806 + border-color: #e6e6e6;
807 + }
808 +
809 + .form-control::-webkit-input-placeholder,
810 + .search-banner-wrap ::-webkit-input-placeholder,
811 + .advanced-search ::-webkit-input-placeholder,
812 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
813 + .overlay-search-advanced-module ::-webkit-input-placeholder {
814 + color: #a1a7a8;
815 + }
816 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
817 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
818 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
819 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
820 + color: #a1a7a8;
821 + }
822 + .form-control::placeholder,
823 + .search-banner-wrap ::-webkit-input-placeholder,
824 + .advanced-search ::-webkit-input-placeholder,
825 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
826 + .overlay-search-advanced-module ::-webkit-input-placeholder {
827 + color: #a1a7a8;
828 + }
829 +
830 + .search-banner-wrap ::-moz-placeholder,
831 + .advanced-search ::-moz-placeholder,
832 + .advanced-search-banner-wrap ::-moz-placeholder,
833 + .overlay-search-advanced-module ::-moz-placeholder {
834 + color: #a1a7a8;
835 + }
836 +
837 + .search-banner-wrap :-ms-input-placeholder,
838 + .advanced-search :-ms-input-placeholder,
839 + .advanced-search-banner-wrap ::-ms-input-placeholder,
840 + .overlay-search-advanced-module ::-ms-input-placeholder {
841 + color: #a1a7a8;
842 + }
843 +
844 + .search-banner-wrap :-moz-placeholder,
845 + .advanced-search :-moz-placeholder,
846 + .advanced-search-banner-wrap :-moz-placeholder,
847 + .overlay-search-advanced-module :-moz-placeholder {
848 + color: #a1a7a8;
849 + }
850 +
851 + .advanced-search .form-control,
852 + .advanced-search .bootstrap-select > .btn,
853 + .location-trigger,
854 + .vertical-search-wrap .form-control,
855 + .vertical-search-wrap .bootstrap-select > .btn,
856 + .step-search-wrap .form-control,
857 + .step-search-wrap .bootstrap-select > .btn,
858 + .advanced-search-banner-wrap .form-control,
859 + .advanced-search-banner-wrap .bootstrap-select > .btn,
860 + .search-banner-wrap .form-control,
861 + .search-banner-wrap .bootstrap-select > .btn,
862 + .overlay-search-advanced-module .form-control,
863 + .overlay-search-advanced-module .bootstrap-select > .btn,
864 + .advanced-search-v2 .advanced-search-btn,
865 + .advanced-search-v2 .advanced-search-btn:hover {
866 + border-color: #cccccc;
867 + }
868 +
869 + .advanced-search-nav,
870 + .search-expandable,
871 + .overlay-search-advanced-module {
872 + background-color: #FFFFFF;
873 + }
874 + .btn-search {
875 + color: #ffffff;
876 + background-color: #4aa7e1;
877 + border-color: #4aa7e1;
878 + }
879 + .btn-search:hover, .btn-search:active {
880 + color: #ffffff;
881 + background-color: #24348c;
882 + border-color: #24348c;
883 + }
884 + .advanced-search-btn {
885 + color: #666666;
886 + background-color: #ffffff;
887 + border-color: #dce0e0;
888 + }
889 + .advanced-search-btn:hover, .advanced-search-btn:active {
890 + color: #000000;
891 + background-color: #ffffff;
892 + border-color: #dce0e0;
893 + }
894 + .advanced-search-btn:focus {
895 + color: #666666;
896 + background-color: #ffffff;
897 + border-color: #dce0e0;
898 + }
899 + .search-expandable-label {
900 + color: #ffffff;
901 + background-color: #4aa7e1;
902 + }
903 + .advanced-search-nav {
904 + padding-top: 10px;
905 + padding-bottom: 10px;
906 + }
907 + .features-list-wrap .control--checkbox,
908 + .features-list-wrap .control--radio,
909 + .range-text,
910 + .features-list-wrap .control--checkbox,
911 + .features-list-wrap .btn-features-list,
912 + .overlay-search-advanced-module .search-title,
913 + .overlay-search-advanced-module .overlay-search-module-close {
914 + color: #222222;
915 + }
916 + .advanced-search-half-map {
917 + background-color: #FFFFFF;
918 + }
919 + .advanced-search-half-map .range-text,
920 + .advanced-search-half-map .features-list-wrap .control--checkbox,
921 + .advanced-search-half-map .features-list-wrap .btn-features-list {
922 + color: #222222;
923 + }
924 +
925 + .save-search-btn {
926 + border-color: #4aa7e1 ;
927 + background-color: #4aa7e1 ;
928 + color: #ffffff ;
929 + }
930 + .save-search-btn:hover,
931 + .save-search-btn:active {
932 + border-color: #4aa7e1;
933 + background-color: #4aa7e1 ;
934 + color: #ffffff ;
935 + }
936 + .label-featured {
937 + background-color: transparent;
938 + color: #ffffff;
939 + }
940 +
941 + .dashboard-side-wrap {
942 + background-color: #24348c;
943 + }
944 +
945 + .side-menu a {
946 + color: #ffffff;
947 + }
948 +
949 + .side-menu a.active,
950 + .side-menu .side-menu-parent-selected > a,
951 + .side-menu-dropdown a,
952 + .side-menu a:hover {
953 + color: #4aa7e1;
954 + }
955 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
956 + color: #4aa7e1
957 + }
958 +
959 + .detail-wrap {
960 + background-color: rgba(217,217,217,0.1);
961 + border-color: #d6d6d6;
962 + }
963 + .top-bar-wrap,
964 + .top-bar-wrap .dropdown-menu,
965 + .switcher-wrap .dropdown-menu {
966 + background-color: #262626;
967 + }
968 + .top-bar-wrap a,
969 + .top-bar-contact,
970 + .top-bar-slogan,
971 + .top-bar-wrap .btn,
972 + .top-bar-wrap .dropdown-menu,
973 + .switcher-wrap .dropdown-menu,
974 + .top-bar-wrap .navbar-toggler {
975 + color: #ffffff;
976 + }
977 + .top-bar-wrap a:hover,
978 + .top-bar-wrap a:active,
979 + .top-bar-wrap .btn:hover,
980 + .top-bar-wrap .btn:active,
981 + .top-bar-wrap .dropdown-menu li:hover,
982 + .top-bar-wrap .dropdown-menu li:active,
983 + .switcher-wrap .dropdown-menu li:hover,
984 + .switcher-wrap .dropdown-menu li:active {
985 + color: rgba(74,167,225,0.59);
986 + }
987 + .class-energy-indicator:nth-child(1) {
988 + background-color: #33a357;
989 + }
990 + .class-energy-indicator:nth-child(2) {
991 + background-color: #79b752;
992 + }
993 + .class-energy-indicator:nth-child(3) {
994 + background-color: #c3d545;
995 + }
996 + .class-energy-indicator:nth-child(4) {
997 + background-color: #fff12c;
998 + }
999 + .class-energy-indicator:nth-child(5) {
1000 + background-color: #edb731;
1001 + }
1002 + .class-energy-indicator:nth-child(6) {
1003 + background-color: #d66f2c;
1004 + }
1005 + .class-energy-indicator:nth-child(7) {
1006 + background-color: #cc232a;
1007 + }
1008 + .class-energy-indicator:nth-child(8) {
1009 + background-color: #cc232a;
1010 + }
1011 + .class-energy-indicator:nth-child(9) {
1012 + background-color: #cc232a;
1013 + }
1014 + .class-energy-indicator:nth-child(10) {
1015 + background-color: #cc232a;
1016 + }
1017 +
1018 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#24348c }
1019 + .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 }
1020 +
1021 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#4aa7e1 }
1022 +
1023 + .footer-top-wrap {
1024 + background-color: #181818;
1025 + }
1026 +
1027 + .footer-bottom-wrap {
1028 + background-color: #000000;
1029 + }
1030 +
1031 + .footer-top-wrap,
1032 + .footer-top-wrap a,
1033 + .footer-bottom-wrap,
1034 + .footer-bottom-wrap a,
1035 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
1036 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
1037 + .footer-top-wrap .blog-post-content-widget h4 a,
1038 + .footer-top-wrap .blog-post-content-widget,
1039 + .footer-top-wrap .form-tools .control,
1040 + .footer-top-wrap .slick-dots li.slick-active button:before,
1041 + .footer-top-wrap .slick-dots li button::before,
1042 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
1043 + color: #ffffff;
1044 + }
1045 +
1046 + .footer-top-wrap a:hover,
1047 + .footer-bottom-wrap a:hover,
1048 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
1049 + color: rgba(36,52,140,1);
1050 + }
1051 + .houzez-osm-cluster {
1052 + background-image: url(https://immeublesalexcellence.com/wp-content/themes/houzez/img/map/cluster-icon.png);
1053 + text-align: center;
1054 + color: #fff;
1055 + width: 48px;
1056 + height: 48px;
1057 + line-height: 48px;
1058 + }
1059 + section.top-banner-wrap.slider-revolution-wrap {
1060 + height: auto;
1061 +}
1062 +.label-status {
1063 + font-size: 14px;
1064 + text-transform: uppercase; /* Optionnel : Met les étiquettes en majuscules */
1065 +}
1066 +.hz-label {
1067 + font-size: 14px; /* Ajustez la taille selon vos besoins */
1068 + font-weight: bold; /* Rend le texte en gras */
1069 + color: #ffffff; /* Couleur du texte */
1070 + background-color: #166584; /* Couleur de fond */
1071 + padding: 5px 10px; /* Espacement interne */
1072 + border-radius: 3px; /* Coins arrondis */
1073 +}
1074 +</style>
1075 +<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /></noscript><link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap&#038;ver=6.7.5' type='text/css' media='all' />
1076 +<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.27.1" id="font-awesome-4-shim-js"></script>
1077 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
1078 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
1079 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/js/houzez-studio-public.js?ver=1.2.1" id="houzez-studio-js"></script>
1080 +<link rel="https://api.w.org/" href="https://immeublesalexcellence.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://immeublesalexcellence.com/wp-json/wp/v2/pages/1769" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://immeublesalexcellence.com/xmlrpc.php?rsd" />
1081 +<meta name="generator" content="WordPress 6.7.5" />
1082 +<link rel='shortlink' href='https://immeublesalexcellence.com/?p=1769' />
1083 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements-a-louer%2F" />
1084 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements-a-louer%2F&#038;format=xml" />
1085 +<meta name="generator" content="Redux 4.5.6" /> <style>.cmplz-hidden {
1086 + display: none !important;
1087 + }</style><meta name="generator" content="Elementor 3.27.1; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
1088 + <style>
1089 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1090 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1091 + background-image: none !important;
1092 + }
1093 + @media screen and (max-height: 1024px) {
1094 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1095 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1096 + background-image: none !important;
1097 + }
1098 + }
1099 + @media screen and (max-height: 640px) {
1100 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1101 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1102 + background-image: none !important;
1103 + }
1104 + }
1105 + </style>
1106 + <meta name="generator" content="Powered by Slider Revolution 6.7.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
1107 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-32x32.png" sizes="32x32" />
1108 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-192x192.png" sizes="192x192" />
1109 +<link rel="apple-touch-icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-180x180.png" />
1110 +<meta name="msapplication-TileImage" content="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-270x270.png" />
1111 +<script>function setREVStartSize(e){
1112 + //window.requestAnimationFrame(function() {
1113 + window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
1114 + window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
1115 + try {
1116 + var pw = document.getElementById(e.c).parentNode.offsetWidth,
1117 + newh;
1118 + pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw;
1119 + e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
1120 + e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
1121 + e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
1122 + e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
1123 + e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
1124 + e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
1125 + e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
1126 + if(e.layout==="fullscreen" || e.l==="fullscreen")
1127 + newh = Math.max(e.mh,window.RSIH);
1128 + else{
1129 + e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
1130 + for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
1131 + e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
1132 + e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
1133 + for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
1134 +
1135 + var nl = new Array(e.rl.length),
1136 + ix = 0,
1137 + sl;
1138 + e.tabw = e.tabhide>=pw ? 0 : e.tabw;
1139 + e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
1140 + e.tabh = e.tabhide>=pw ? 0 : e.tabh;
1141 + e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
1142 + for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
1143 + sl = nl[0];
1144 + for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
1145 + var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
1146 + newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
1147 + }
1148 + var el = document.getElementById(e.c);
1149 + if (el!==null && el) el.style.height = newh+"px";
1150 + el = document.getElementById(e.c+"_wrapper");
1151 + if (el!==null && el) {
1152 + el.style.height = newh+"px";
1153 + el.style.display = "block";
1154 + }
1155 + } catch(e){
1156 + console.log("Failure at Presize of Slider:" + e)
1157 + }
1158 + //});
1159 + };</script>
1160 +</head>
1161 +
1162 +<body data-cmplz=2 class="paged page-template page-template-template page-template-template-listing-grid-v6-fullwidth-3cols page-template-templatetemplate-listing-grid-v6-fullwidth-3cols-php page page-id-1769 paged-2 page-paged-2 houzez-theme houzez-footer-position transparent-no houzez-header-property_slider elementor-default elementor-kit-6 elementor-page elementor-page-1769">
1163 +
1164 +
1165 + <div class="nav-mobile nav-mobile-js">
1166 + <div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile">
1167 + <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://immeublesalexcellence.com/">Accueil</a> </li>
1168 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1169 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1769 current_page_item "><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1170 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1171 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1172 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1173 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1174 +</ul> </div><!-- main-nav -->
1175 + <nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user">
1176 +
1177 +
1178 +
1179 + </nav><!-- .navi -->
1180 +
1181 +
1182 +
1183 +</div><!-- nav-mobile -->
1184 + <main id="main-wrap" class="main-wrap main-wrap-js">
1185 +
1186 + <header class="header-main-wrap ">
1187 + <div class="top-bar-wrap ">
1188 + <div class="container">
1189 + <div class="d-flex justify-content-between">
1190 + <div class="top-bar-left-wrap">
1191 + <div class="header-social-icons">
1192 + <ul class="list-inline">
1193 +
1194 + <li class="list-inline-item">
1195 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1196 + <i class="houzez-icon icon-social-media-facebook"></i>
1197 + </a>
1198 + </li>
1199 +
1200 +
1201 +
1202 +
1203 +
1204 +
1205 +
1206 +
1207 + <li class="list-inline-item">
1208 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1209 + <i class="houzez-icon icon-social-instagram"></i>
1210 + </a>
1211 + </li>
1212 +
1213 +
1214 +
1215 +
1216 + </ul>
1217 +</div><!-- .header-social-icons -->
1218 + </div><!-- top-bar-left-wrap -->
1219 +
1220 + <div class="top-bar-right-wrap">
1221 + <div class="top-bar-contact">
1222 +
1223 + </div><!-- top-bar-contact --> </div><!-- top-bar-right-wrap -->
1224 + </div><!-- d-flex -->
1225 + </div><!-- container -->
1226 +</div><!-- top-bar-wrap --><div class="header-desktop header-v2">
1227 + <div class="header-top">
1228 + <div class="container">
1229 + <div class="header-inner-wrap">
1230 + <div class="navbar d-flex align-items-center">
1231 +
1232 +
1233 + <div class="logo logo-desktop">
1234 + <a href="https://immeublesalexcellence.com/">
1235 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="66,5px" width="218px" alt="logo">
1236 + </a>
1237 + </div>
1238 +
1239 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1240 +
1241 +
1242 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1243 + <div class="header-contact-left">
1244 + <i class="houzez-icon icon-phone ml-1"></i>
1245 + </div><!-- header-contact-left -->
1246 + <div class="header-contact-right">
1247 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1248 + <div><a href="mailto:"></a></div>
1249 + </div><!-- .header-contact-right -->
1250 + </div><!-- .header-contact -->
1251 +
1252 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1253 + <div class="header-contact-left">
1254 + <i class="houzez-icon icon-pin ml-1"></i>
1255 + </div><!-- header-contact-left -->
1256 + <div class="header-contact-right">
1257 + <div>1025, rue des Seigneurs, #301</div>
1258 + <div>Sherbrooke (Québec) J1H 5V3</div>
1259 + </div><!-- .header-contact-right -->
1260 + </div><!-- .header-contact -->
1261 +
1262 +
1263 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1264 + <div class="header-contact-left">
1265 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1266 + </div><!-- header-contact-left -->
1267 + <div class="header-contact-right">
1268 + <div>8 h 30 à 16 h 30</div>
1269 + <div>Lundi au jeudi</div>
1270 + </div><!-- .header-contact-right -->
1271 + </div><!-- .header-contact -->
1272 +
1273 +
1274 + <div class="header-contact header-contact-4 d-flex align-items-center">
1275 + <div class="header-social-icons">
1276 + <ul class="list-inline">
1277 +
1278 + <li class="list-inline-item">
1279 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1280 + <i class="houzez-icon icon-social-media-facebook"></i>
1281 + </a>
1282 + </li>
1283 +
1284 +
1285 +
1286 +
1287 +
1288 +
1289 +
1290 +
1291 + <li class="list-inline-item">
1292 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1293 + <i class="houzez-icon icon-social-instagram"></i>
1294 + </a>
1295 + </li>
1296 +
1297 +
1298 +
1299 +
1300 + </ul>
1301 +</div><!-- .header-social-icons -->
1302 + </div><!-- .header-contact -->
1303 +</div><!-- .header-contact-wrap -->
1304 +
1305 +
1306 + </div><!-- navbar -->
1307 + </div>
1308 + </div>
1309 + </div><!-- .header-top -->
1310 + <div id="header-section" class="header-bottom" data-sticky="1">
1311 + <div class="container">
1312 + <div class="header-inner-wrap">
1313 + <div class="navbar d-flex align-items-center">
1314 +
1315 + <nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1">
1316 + <ul id="main-nav" class="navbar-nav "><li id="menu-item-1535" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home nav-item menu-item-1535 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/">Accueil</a> </li>
1317 +<li id="menu-item-1809" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1809 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1318 +<li id="menu-item-1771" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1769 current_page_item nav-item menu-item-1771 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1319 +<li id="menu-item-2352" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2352 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1320 +<li id="menu-item-2432" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2432 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1321 +<li id="menu-item-2426" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2426 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1322 +<li id="menu-item-2466" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2466 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1323 +</ul> </nav><!-- main-nav -->
1324 +
1325 + <div class="login-register on-hover-menu">
1326 + <ul class="login-register-nav dropdown d-flex align-items-center">
1327 +
1328 +
1329 +
1330 +
1331 +
1332 +
1333 + </ul>
1334 +</div>
1335 + </div><!-- navbar -->
1336 + </div>
1337 + </div>
1338 + </div><!-- .header-bottom -->
1339 +</div><!-- .header-v2 -->
1340 +
1341 +<div class="header-v2 header-v2-mobile">
1342 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1343 +
1344 +
1345 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1346 + <div class="header-contact-left">
1347 + <i class="houzez-icon icon-phone ml-1"></i>
1348 + </div><!-- header-contact-left -->
1349 + <div class="header-contact-right">
1350 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1351 + <div><a href="mailto:"></a></div>
1352 + </div><!-- .header-contact-right -->
1353 + </div><!-- .header-contact -->
1354 +
1355 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1356 + <div class="header-contact-left">
1357 + <i class="houzez-icon icon-pin ml-1"></i>
1358 + </div><!-- header-contact-left -->
1359 + <div class="header-contact-right">
1360 + <div>1025, rue des Seigneurs, #301</div>
1361 + <div>Sherbrooke (Québec) J1H 5V3</div>
1362 + </div><!-- .header-contact-right -->
1363 + </div><!-- .header-contact -->
1364 +
1365 +
1366 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1367 + <div class="header-contact-left">
1368 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1369 + </div><!-- header-contact-left -->
1370 + <div class="header-contact-right">
1371 + <div>8 h 30 à 16 h 30</div>
1372 + <div>Lundi au jeudi</div>
1373 + </div><!-- .header-contact-right -->
1374 + </div><!-- .header-contact -->
1375 +
1376 +
1377 + <div class="header-contact header-contact-4 d-flex align-items-center">
1378 + <div class="header-social-icons">
1379 + <ul class="list-inline">
1380 +
1381 + <li class="list-inline-item">
1382 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1383 + <i class="houzez-icon icon-social-media-facebook"></i>
1384 + </a>
1385 + </li>
1386 +
1387 +
1388 +
1389 +
1390 +
1391 +
1392 +
1393 +
1394 + <li class="list-inline-item">
1395 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1396 + <i class="houzez-icon icon-social-instagram"></i>
1397 + </a>
1398 + </li>
1399 +
1400 +
1401 +
1402 +
1403 + </ul>
1404 +</div><!-- .header-social-icons -->
1405 + </div><!-- .header-contact -->
1406 +</div><!-- .header-contact-wrap -->
1407 +
1408 +
1409 +
1410 +</div><!-- header-v2-mobile --><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky="">
1411 + <div class="header-mobile-left">
1412 + <button class="btn toggle-button-left">
1413 + <i class="houzez-icon icon-navigation-menu"></i>
1414 + </button><!-- toggle-button-left -->
1415 + </div><!-- .header-mobile-left -->
1416 + <div class="header-mobile-center flex-grow-1">
1417 + <div class="logo logo-mobile">
1418 + <a href="https://immeublesalexcellence.com/">
1419 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="39" width="127" alt="Mobile logo">
1420 + </a>
1421 +</div> </div>
1422 +
1423 + <div class="header-mobile-right">
1424 + </div><!-- .header-mobile-right -->
1425 +
1426 +</div><!-- header-mobile --></header><!-- .header-main-wrap -->
1427 + <section class="top-banner-wrap property-slider-wrap">
1428 + <div class="property-slider houzez-all-slider-wrap" data-autoplay="1" data-loop="1" data-speed="5000">
1429 + </div><!-- property-slider -->
1430 +
1431 + </section><!-- property-slider-wrap --><section id="desktop-header-search" class="advanced-search advanced-search-nav " data-hidden="0" data-sticky='0'>
1432 + <div class="container">
1433 + <form class="houzez-search-form-js " method="get" autocomplete="off" action="https://immeublesalexcellence.com/resultats-recherche/">
1434 +
1435 +
1436 + <div class="advanced-search-v2 advanced-search-v2-geolocation">
1437 + <div class="d-flex">
1438 + <div class="flex-fill fields-width "><div class="form-group">
1439 + <select name="type[]" data-size="5" class="selectpicker form-control bs-select-hidden" title="Nombre de pièces" data-live-search="true" data-selected-text-format="count > 1" data-actions-box="true" multiple data-select-all-text=" Sélectionner tout" data-deselect-all-text="Désélectionner tout" data-live-search-normalize="true" data-count-selected-text="{0} Types sélectionnés" data-none-results-text="Aucun résultat correspondant {0}" data-container="body">
1440 +
1441 + <option data-ref="entrepot-1%c2%bd-2" value="entrepot-1%c2%bd-2">Entrepôt</option><option data-ref="loyer-1%c2%bd" value="loyer-1%c2%bd">Loyer 1½</option><option data-ref="loyer-2%c2%bd" value="loyer-2%c2%bd">Loyer 2½</option><option data-ref="loyer-3%c2%bd" value="loyer-3%c2%bd">Loyer 3½</option><option data-ref="loyer-4%c2%bd" value="loyer-4%c2%bd">Loyer 4½</option><option data-ref="loyer-5%c2%bd" value="loyer-5%c2%bd">Loyer 5½</option> </select><!-- selectpicker -->
1442 +</div><!-- form-group --></div><div class="flex-fill fields-width "><div class="form-group">
1443 + <select name="status[]" data-size="5" class="selectpicker status-js form-control bs-select-hidden" title="Disponibilité" data-live-search="false" data-selected-text-format="count > 1" data-live-search-normalize="true" data-actions-box="true" multiple data-select-all-text=" Sélectionner tout" data-deselect-all-text="Désélectionner tout" data-none-results-text="Aucun résultat correspondant {0}" data-count-selected-text="{0} Statuts sélectionnés" data-container="body">
1444 + <option data-ref="1-er-octobre-2026" value="1-er-octobre-2026">1 er octobre 2026</option><option data-ref="disponible-1er-janvier-2026" value="disponible-1er-janvier-2026">1er janvier 2026</option><option data-ref="1er-janvier-2027" value="1er-janvier-2027">1er janvier 2027</option><option data-ref="1er-novembre-2026" value="1er-novembre-2026">1er novembre 2026</option><option data-ref="1et-janvier-2027" value="1et-janvier-2027">1et janvier 2027</option><option data-ref="a-louer" value="a-louer">À LOUER</option><option data-ref="disponible-1er-fevrier-2026" value="disponible-1er-fevrier-2026">1er février 2026</option><option data-ref="disponible-1er-mars-2026" value="disponible-1er-mars-2026">1er mars 2026</option><option data-ref="disponible-1er-avril-2026" value="disponible-1er-avril-2026">1er avril 2026</option><option data-ref="disponible-1er-mai-2026" value="disponible-1er-mai-2026">1er mai 2026</option><option data-ref="disponible-1er-juin-2026" value="disponible-1er-juin-2026">1er juin 2026</option><option data-ref="disponible-1er-juillet-2026" value="disponible-1er-juillet-2026">1er juillet 2026</option><option data-ref="disponible-1er-aout-2026" value="disponible-1er-aout-2026">1er août 2026</option><option data-ref="disponible-1er-septembre-2026" value="disponible-1er-septembre-2026">1er septembre 2026</option><option data-ref="loue" value="loue">LOUÉ</option> </select><!-- selectpicker -->
1445 +</div><!-- form-group --></div><div class="flex-fill fields-width "><div class="form-group prices-for-all">
1446 + <select name="max-price" data-size="5" class="selectpicker form-control bs-select-hidden" title="Prix maximum" data-live-search="false">
1447 + <option value="">Prix maximum</option>
1448 + <option value="any">Tout</option><option value="900">900$</option><option value="1000">1,000$</option><option value="1100">1,100$</option><option value="1200">1,200$</option><option value="1500">1,500$</option><option value="2000">2,000$</option> </select><!-- selectpicker -->
1449 +</div><!-- form-group -->
1450 +
1451 +<div class="form-group hide prices-only-for-rent">
1452 + <select name="max-price" data-size="5" class="selectpicker form-control bs-select-hidden" title="Prix maximum" data-live-search="false">
1453 + <option value="">Prix maximum</option>
1454 + <option value="any">Tout</option><option value="900">900$</option><option value="1000">1,000$</option><option value="1250">1,250$</option><option value="1500">1,500$</option><option value="1750">1,750$</option><option value="2000">2,000$</option><option value="2500">2,500$</option><option value="3000">3,000$</option> </select><!-- selectpicker -->
1455 +</div><!-- form-group -->
1456 +</div>
1457 +
1458 + <button type="submit" class="btn btn-search btn-secondary ">Aller</button>
1459 + </div><!-- d-flex -->
1460 + </div><!-- advanced-search-v2 -->
1461 +
1462 + <div id="advanced-search-filters" class="collapse show">
1463 +
1464 +<div class="advanced-search-filters search-v1-v2">
1465 + <div class="d-flex">
1466 +
1467 + </div>
1468 +
1469 + </div>
1470 +
1471 +<div class="features-list-wrap">
1472 + <a class="btn-features-list" data-toggle="collapse" href="#features-list">
1473 + <i class="houzez-icon icon-add-square"></i> Autres caractéristiques </a><!-- btn-features-list -->
1474 + <div id="features-list" class="collapse">
1475 + <div class="features-list">
1476 + <label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="ascenseur">Ascenseur<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="aspirateur-centrale">Aspirateur centrale<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="balcon-prive">Balcon privé<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="buanderie">Buanderie ($)<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="buanderie-gratuite">Buanderie gratuite<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="camera-de-surveillance">Caméra de surveillance<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="ceramique-planchette-de-vinyle">Céramique, Planchette de vinyle<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="chauffage-inclus">Chauffage inclus<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="comptoir-ilot">Comptoir ilot<span class="control__indicator"></span></label><label class="control control--checkbox"><input class="" name="feature[]" type="checkbox" value="comptoir-lunch">Comptoir lunch<span class="control__indicator"></span></label> </div><!-- features-list -->
1477 + </div><!-- collapse -->
1478 +</div><!-- features-list-wrap --> </div><!-- advanced-search-filters -->
1479 + </form>
1480 + </div><!-- container -->
1481 +</section><!-- advanced-search --><section class="listing-wrap listing-v6">
1482 + <div class="container">
1483 +
1484 + <div class="page-title-wrap">
1485 +
1486 +
1487 +<div class="breadcrumb-wrap">
1488 + <nav>
1489 + <ol class="breadcrumb"><li class="breadcrumb-item breadcrumb-item-home"><i class="houzez-icon icon-house"></i><a href="https://immeublesalexcellence.com/">Accueil</a></li><li class="breadcrumb-item active">Annonces Loyers</li></ol> </nav>
1490 +</div><!-- breadcrumb-wrap -->
1491 +<div class="d-flex align-items-center">
1492 + <div class="page-title flex-grow-1">
1493 + <h1>Annonces Loyers</h1>
1494 +</div><!-- page-title -->
1495 +
1496 + <div class="listing-switch-view">
1497 + <ul class="list-inline">
1498 + <li class="list-inline-item">
1499 + <a class="switch-btn btn-list">
1500 + <i class="houzez-icon icon-layout-bullets"></i>
1501 + </a>
1502 + </li>
1503 + <li class="list-inline-item">
1504 + <a class="switch-btn btn-grid">
1505 + <i class="houzez-icon icon-layout-module-1"></i>
1506 + </a>
1507 + </li>
1508 + </ul>
1509 +</div><!-- listing-switch-view -->
1510 +</div><!-- d-flex -->
1511 +
1512 + </div><!-- page-title-wrap -->
1513 +
1514 + <div class="row">
1515 + <div class="col-lg-12 col-md-12">
1516 +
1517 + <article class="post-1769 page type-page status-publish hentry">
1518 + </article>
1519 +
1520 + <div class="listing-tools-wrap">
1521 + <div class="d-flex align-items-center mb-2">
1522 + <div class="listings-count flex-grow-1">
1523 + 0 Loyer</div>
1524 +
1525 + <div class="sort-by">
1526 + <div class="d-flex align-items-center">
1527 + <div class="sort-by-title">
1528 + Trier par: </div><!-- sort-by-title -->
1529 + <select id="sort_properties" class="selectpicker form-control bs-select-hidden" title="Ordre par défaut" data-live-search="false" data-dropdown-align-right="auto">
1530 + <option value="">Ordre par défaut</option>
1531 + <option value="a_price">Prix - Du plus bas au plus élevé</option>
1532 + <option value="d_price">Prix - Du plus élevé au plus bas</option>
1533 +
1534 + <option value="featured_first">Inscriptions en vedette</option>
1535 +
1536 + <option value="a_date">Date ancienne à nouvelle</option>
1537 + <option value="d_date">Date nouvelle à ancienne</option>
1538 +
1539 + <option value="a_title">Titre</option>
1540 + <option value="d_title">Title - DESC</option>
1541 + </select><!-- selectpicker -->
1542 + </div><!-- d-flex -->
1543 +</div><!-- sort-by -->
1544 + </div><!-- d-flex -->
1545 +</div><!-- listing-tools-wrap -->
1546 + <div class="listing-view grid-view card-deck grid-view-3-cols">
1547 + <div class="col-lg-12">
1548 + <p class="mt-30 text-center">
1549 + No listing found. </p>
1550 +</div>
1551 + </div><!-- listing-view -->
1552 +
1553 + <div id="fave-pagination-loadmore" class="load-more-wrap mb-4 fave-load-more">
1554 + <a class="houzez-infinite-load btn btn-primary-outlined btn-load-more"
1555 + data-page="3"
1556 + data-total="0"
1557 + data-per-page="24"
1558 + data-pagi-type="_loadmore"
1559 + href="https://immeublesalexcellence.com/appartements-a-louer/page/3/">
1560 + <span class="btn-loader houzez-loader-js"></span> Charger plus
1561 + </a>
1562 + </div>
1563 +
1564 +
1565 + </div>
1566 + </div><!-- row -->
1567 +
1568 + </div><!-- container -->
1569 +</section><!-- listing-wrap -->
1570 +
1571 +
1572 +</main><!-- .main-wrap start in header.php-->
1573 +
1574 +<footer class="footer-wrap footer-wrap-v1">
1575 +
1576 + <div class="footer-bottom-wrap footer-bottom-wrap-v1">
1577 + <div class="container">
1578 + <div class="d-flex justify-content-between">
1579 +
1580 + <div class="footer-copyright">
1581 + &copy; Immeubles Alexcellence - Tout droits réservés</div><!-- footer-copyright -->
1582 +
1583 +
1584 +
1585 + </div><!-- d-flex -->
1586 + </div><!-- container -->
1587 +</div><!-- footer-top-wrap --></footer><div class="back-to-top-wrap">
1588 + <a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1589 + <i class="houzez-icon icon-arrow-up-1"></i>
1590 + </a>
1591 +</div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1592 +
1593 + <button class="compare-property-label" style="display: none;">
1594 + <span class="compare-count compare-label"></span>
1595 + <i class="houzez-icon icon-move-left-right"></i>
1596 + </button>
1597 +
1598 + <p><strong>Comparer les annonces</strong></p>
1599 +
1600 + <div class="compare-wrap"></div>
1601 +
1602 +
1603 + <a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1604 + <button class="btn btn-grey-outlined btn-full-width close-compare-panel">Close</button>
1605 +</div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog">
1606 + <div class="modal-dialog" role="document">
1607 + <div class="modal-content">
1608 + <div class="modal-header">
1609 + <div class="login-register-tabs">
1610 + <ul class="nav nav-tabs">
1611 + <li class="nav-item">
1612 + <a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">S&#039;identifier</a>
1613 + </li>
1614 +
1615 + </ul>
1616 + </div><!-- login-register-tabs -->
1617 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1618 + <span aria-hidden="true">&times;</span>
1619 + </button>
1620 + </div><!-- modal-header -->
1621 + <div class="modal-body">
1622 + <div class="tab-content">
1623 + <div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel">
1624 + <div id="hz-login-messages" class="hz-social-messages"></div>
1625 +<form>
1626 + <div class="login-form-wrap">
1627 + <div class="form-group">
1628 + <div class="form-group-field username-field">
1629 + <input class="form-control" name="username" placeholder="Username or Email" type="text" />
1630 + </div><!-- input-group -->
1631 + </div><!-- form-group -->
1632 + <div class="form-group">
1633 + <div class="form-group-field password-field">
1634 + <input class="form-control" name="password" placeholder="Mot de passe" type="password" />
1635 + </div><!-- input-group -->
1636 + </div><!-- form-group -->
1637 + </div><!-- login-form-wrap -->
1638 +
1639 + <div class="form-tools">
1640 + <div class="d-flex">
1641 + <label class="control control--checkbox flex-grow-1">
1642 + <input name="remember" type="checkbox">Remember me FR <span class="control__indicator"></span>
1643 + </label>
1644 + <a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Lost your password?</a>
1645 + </div><!-- d-flex -->
1646 + </div><!-- form-tools -->
1647 +
1648 + <div class="form-group captcha_wrapper houzez-grecaptcha-v3">
1649 + <div class="houzez_google_reCaptcha"></div>
1650 +</div>
1651 +
1652 + <input type="hidden" id="houzez_login_security" name="houzez_login_security" value="90509fca4b" /><input type="hidden" name="_wp_http_referer" value="/appartements-a-louer/page/2/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1653 + <input type="hidden" name="redirect_to" value="https://immeublesalexcellence.com/appartements-a-louer/?login=success">
1654 + <button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1655 + <span class="btn-loader houzez-loader-js"></span> S&#039;identifier
1656 + </button>
1657 +</form>
1658 +
1659 +<div class="social-login-wrap">
1660 +
1661 + <button type="button" class="hz-facebook-login btn btn-facebook-login btn-full-width">
1662 + <span class="btn-loader houzez-loader-js"></span> Continue with Facebook </button>
1663 +
1664 + <button type="button" class="hz-google-login btn btn-google-plus-lined btn-full-width">
1665 + <span class="btn-loader houzez-loader-js"></span> <img class="google-icon" src="https://immeublesalexcellence.com/wp-content/themes/houzez/img/Google__G__Logo.svg"/> Sign in with google </button>
1666 +
1667 +</div>
1668 + </div><!-- login-form-tab -->
1669 + <div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel">
1670 + <div id="hz-register-messages" class="hz-social-messages"></div>
1671 +User registration is disabled for demo purpose. </div><!-- register-form-tab -->
1672 + </div><!-- tab-content -->
1673 + </div><!-- modal-body -->
1674 + </div><!-- modal-content -->
1675 + </div><!-- modal-dialog -->
1676 +</div><!-- login-register-form --><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog">
1677 + <div class="modal-dialog" role="document">
1678 + <div class="modal-content">
1679 + <div class="modal-header">
1680 + <div class="modal-title">Reset Password</div>
1681 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1682 + <span aria-hidden="true">&times;</span>
1683 + </button>
1684 + </div><!-- modal-header -->
1685 + <div class="modal-body">
1686 + <div id="reset_pass_msg"></div>
1687 + <p>Please enter your username or email address. You will receive a link to create a new password via email.</p>
1688 + <form>
1689 + <div class="form-group">
1690 + <input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Enter your username or email" class="form-control">
1691 + </div>
1692 + <input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="eec590fff1" /><input type="hidden" name="_wp_http_referer" value="/appartements-a-louer/page/2/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1693 + <span class="btn-loader houzez-loader-js"></span> Get new password </button>
1694 + </form>
1695 + </div><!-- modal-body -->
1696 + </div><!-- modal-content -->
1697 + </div><!-- modal-dialog -->
1698 +</div><!-- login-register-form --><div class="property-lightbox">
1699 + <div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog">
1700 + <div class="modal-dialog modal-dialog-centered" role="document">
1701 + <div id="hz-listing-model-content" class="modal-content">
1702 +
1703 + </div><!-- modal-content -->
1704 + </div><!-- modal-dialog -->
1705 + </div><!-- modal -->
1706 +</div><!-- property-lightbox -->
1707 + <script>
1708 + window.RS_MODULES = window.RS_MODULES || {};
1709 + window.RS_MODULES.modules = window.RS_MODULES.modules || {};
1710 + window.RS_MODULES.waiting = window.RS_MODULES.waiting || [];
1711 + window.RS_MODULES.defered = true;
1712 + window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};
1713 + window.RS_MODULES.type = 'compiled';
1714 + </script>
1715 +
1716 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
1717 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 parametres-de-confidentialite optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
1718 + <div class="cmplz-header">
1719 + <div class="cmplz-logo"><?xml version="1.0" encoding="utf-8"?>
1720 +<!-- Generator: Adobe Illustrator 27.6.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
1721 +<svg version="1.1" id="uuid-7dd7b5b8-c5e0-4d79-ad53-47e9a05e6f8e"
1722 + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1354.3 343"
1723 + style="enable-background:new 0 0 1354.3 343;" xml:space="preserve">
1724 +<style type="text/css">
1725 + .st0{fill:#009FFF;}
1726 + .st1{fill:#333333;}
1727 +</style>
1728 +<path class="st0" d="M663.5,62.7c-17.7,0-36,7.4-44.2,19v-15h-52.7V274h52.7v-75.8c8.2,11.6,26.5,19,44.2,19
1729 + c41.1,0,68.6-37.4,68.6-77.5S704.6,62.7,663.5,62.7L663.5,62.7L663.5,62.7z M649.6,174.1c-18,0-30.3-13.9-30.3-33.7
1730 + s11.9-34.7,30.3-34.7c17.4,0,29.9,14.6,29.9,34.7S666.9,174.1,649.6,174.1z M499.6,62.7c-24.5,0-39,10.8-49.3,24.1
1731 + c-8.5-14.6-21.8-24.1-44.8-24.1c-17.3,0-30.6,5.1-40.4,19.3V66.8h-52.7v146.4H365v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9
1732 + v75.4h52.7v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9v75.4h52.7v-88.2C553.2,90.2,538.9,62.7,499.6,62.7L499.6,62.7
1733 + L499.6,62.7z M221.3,62.7c-42.1,0-78.8,33.7-78.8,77.1s36,77.5,79.1,77.5s78.8-34.3,78.8-77.8S264.1,62.7,221.3,62.7L221.3,62.7
1734 + L221.3,62.7z M221.6,175.5c-18.4,0-27.9-18.7-27.9-35.6s9.5-35.3,27.5-35.3c19,0,27.9,18.7,27.9,35S240,175.5,221.6,175.5
1735 + L221.6,175.5L221.6,175.5z M79.6,175.8c-19,0-31.6-17.7-31.6-35.3c0-20.8,12.9-36,31.6-36c10.8,0,20.8,4.4,29.2,13.6l30.3-28.2
1736 + c-15.6-18.7-34.7-27.2-59.5-27.2C32.7,62.7-0.9,98-0.9,140.5s34.3,76.7,80.6,76.7c28.5,0,46.6-9.5,64.2-31.6l-35.3-24.8
1737 + C100.4,170.4,93.2,175.8,79.6,175.8L79.6,175.8L79.6,175.8z M1139,62.7c-17.4,0-32.6,6.4-42.1,19.3V66.7h-52.7v146.4h52.7v-77.1
1738 + c0-18,8.8-29.2,24.2-29.2s20.8,11.2,20.8,30.9v75.4h52.7v-88.1C1194.5,90.2,1178.5,62.7,1139,62.7L1139,62.7L1139,62.7z M958.2,62.7
1739 + c-26.5,0-50.9,4-70.3,15l16.3,31.6c15.3-7.9,31.9-12.6,52.3-12.6c15,0,21.8,3.4,21.8,13.6v5.1c-47.5,2.1-103.6,10.8-103.6,56.4
1740 + c0,27.9,24.8,45.5,53,45.5c25.5,0,34.7-4.1,50.6-15.3v11.2h52.7v-93.1C1030.9,78.3,1006.7,62.7,958.2,62.7L958.2,62.7L958.2,62.7z
1741 + M978.2,169.4c-8.5,7.4-17.4,10.5-30.6,10.5c-8.5,0-17-5.1-17-13.6c0-16.3,25.1-21.4,47.5-21.4V169.4z M744,213.2h52.7V1.7H744
1742 + V213.2L744,213.2z M1282.8,172.9l70.5-106.2h-143.7v40.8h53.7c4.8,0,8.8-0.3,8.8-0.3s-3.4,3.7-6.1,7.8l-66.2,98.2h145.1v-40.8h-52.1
1743 + C1289.8,172.4,1285.4,172.7,1282.8,172.9L1282.8,172.9L1282.8,172.9z M811.2,67.4v145.7h52.7V67.2c-8.3,2.9-17.1,4.6-26.1,4.6
1744 + S819.6,70.2,811.2,67.4L811.2,67.4L811.2,67.4z"/>
1745 +<g>
1746 + <g>
1747 + <path class="st1" d="M649.8,345v-8l10.1-1.8v-75.6l-11.2-1.8v-8h20.6l1.2,8.4c2.3-3.1,5.2-5.5,8.5-7.2c3.4-1.6,7.2-2.5,11.7-2.5
1748 + c5.8,0,10.8,1.5,14.9,4.6c4.1,3.1,7.3,7.4,9.4,12.9c2.2,5.5,3.3,12,3.3,19.4v1.3c0,6.6-1.1,12.4-3.3,17.3s-5.3,8.8-9.4,11.6
1749 + c-4.1,2.8-9,4.1-14.7,4.1c-4.3,0-8.1-0.7-11.4-2.1c-3.3-1.4-6.1-3.5-8.3-6.3v24l11.2,1.8v8L649.8,345L649.8,345z M686.8,310.6
1750 + c5.9,0,10.4-2.2,13.4-6.4c3-4.3,4.5-9.9,4.5-16.7V286c0-5.3-0.7-9.9-2-13.9c-1.4-4-3.4-7.2-6.1-9.5s-6.1-3.4-10.1-3.4
1751 + c-3.6,0-6.6,0.8-9.2,2.4c-2.6,1.6-4.6,3.8-6.2,6.6v33.6c1.6,2.9,3.7,5.1,6.2,6.7c2.6,1.6,5.7,2.4,9.5,2.4L686.8,310.6z"/>
1752 + </g>
1753 + <g>
1754 + <path class="st1" d="M758,320.5c-6.4,0-11.9-1.5-16.5-4.5s-8.2-7.1-10.7-12.4c-2.5-5.3-3.8-11.3-3.8-18.1v-1.4
1755 + c0-6.8,1.3-12.8,3.8-18.1c2.5-5.3,6.1-9.4,10.7-12.5c4.6-3,10.1-4.5,16.3-4.5s11.9,1.5,16.5,4.5s8.2,7.2,10.7,12.4
1756 + c2.5,5.3,3.8,11.3,3.8,18.1v1.4c0,6.8-1.3,12.9-3.8,18.2c-2.5,5.3-6.1,9.4-10.6,12.4C769.8,319,764.4,320.5,758,320.5L758,320.5z
1757 + M758.6,310.2c3.9,0,7.2-1.1,9.8-3.2c2.6-2.1,4.6-5.1,6-8.8s2-8,2-12.7v-1.4c0-4.8-0.7-9-2-12.7c-1.4-3.7-3.4-6.7-6-8.8
1758 + c-2.7-2.1-6-3.2-9.9-3.2c-4,0-7.2,1.1-9.9,3.2c-2.7,2.1-4.7,5.1-6,8.8c-1.3,3.7-2,8-2,12.7v1.4c0,4.8,0.7,9,2,12.7
1759 + c1.3,3.7,3.3,6.7,6,8.8S754.6,310.2,758.6,310.2L758.6,310.2z"/>
1760 + </g>
1761 + <g>
1762 + <path class="st1" d="M822.4,319.3l-18.1-59.5l-7.7-0.9v-8h28v8l-8.3,1.4l9.3,34.1l2.1,8.1h0.4l2.8-8.1l14.7-43.5h11.4l14.1,43.1
1763 + l3,9.5h0.4l3-9.5l9.5-33.8l-8.6-1.3v-8h28v8l-7.6,1.1L881,319.3h-12.1L855,278.2l-3.3-11l-0.4,0.1l-3.2,10.9l-14.9,41.1
1764 + L822.4,319.3L822.4,319.3z"/>
1765 + </g>
1766 + <g>
1767 + <path class="st1" d="M943.2,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
1768 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
1769 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7s3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
1770 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C953.7,319.8,948.8,320.6,943.2,320.6L943.2,320.6z
1771 + M925.3,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3c-2.8,0-5.3,0.8-7.6,2.4
1772 + c-2.3,1.6-4.2,3.8-5.6,6.6c-1.5,2.8-2.5,6-2.9,9.5L925.3,277.8L925.3,277.8z"/>
1773 + </g>
1774 + <g>
1775 + <path class="st1" d="M980.5,319.3v-8l10.1-1.8v-48.8l-10.1-1.8v-8h21.1l1.1,8.7l0.1,1.2c1.9-3.5,4.2-6.2,7-8.2c2.8-2,6-3,9.6-3
1776 + c1.3,0,2.6,0.1,3.9,0.3c1.3,0.2,2.3,0.4,2.9,0.7l-1.6,11.6l-8.5-0.5c-3.2-0.2-5.9,0.5-8.1,2.2c-2.2,1.7-3.9,4-5.1,6.9v38.7
1777 + l10.1,1.8v8L980.5,319.3L980.5,319.3z"/>
1778 + </g>
1779 + <g>
1780 + <path class="st1" d="M1063.1,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
1781 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
1782 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7c1.4,3.4,3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
1783 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C1073.6,319.8,1068.8,320.6,1063.1,320.6
1784 + L1063.1,320.6z M1045.2,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3
1785 + c-2.8,0-5.3,0.8-7.6,2.4c-2.3,1.6-4.2,3.8-5.6,6.6s-2.5,6-2.9,9.5L1045.2,277.8L1045.2,277.8z"/>
1786 + </g>
1787 + <g>
1788 + <path class="st1" d="M1127.3,320.6c-5.6,0-10.5-1.4-14.5-4.1c-4-2.8-7.1-6.6-9.2-11.6c-2.1-4.9-3.2-10.7-3.2-17.3v-1.3
1789 + c0-7.4,1.1-13.8,3.2-19.3c2.1-5.5,5.2-9.8,9.3-12.9c4.1-3.1,8.9-4.6,14.6-4.6c4.1,0,7.7,0.8,10.9,2.3c3.1,1.5,5.8,3.7,8,6.5v-27.7
1790 + l-10.1-1.8v-8h23.5v88.9l10.1,1.8v8H1148l-1-8.2c-2.3,3.1-5,5.5-8.3,7.1C1135.4,319.8,1131.7,320.6,1127.3,320.6L1127.3,320.6z
1791 + M1130.9,309.8c3.7,0,6.7-0.8,9.2-2.5c2.5-1.7,4.6-4,6.2-7.1V269c-1.6-2.8-3.6-5.1-6.2-6.7c-2.5-1.7-5.6-2.5-9.1-2.5
1792 + c-3.9,0-7.1,1.1-9.7,3.3c-2.5,2.2-4.4,5.3-5.7,9.2c-1.2,3.9-1.9,8.5-1.9,13.7v1.3c0,6.8,1.4,12.2,4.2,16.3
1793 + C1120.8,307.8,1125.1,309.8,1130.9,309.8L1130.9,309.8z"/>
1794 + </g>
1795 + <g>
1796 + <path class="st1" d="M1245.2,320.6c-4.5,0-8.3-0.9-11.6-2.6c-3.3-1.7-6-4.2-8.2-7.6l-1.1,8.8h-10.6v-88.8l-10.1-1.8v-8h22.4V259
1797 + c2.2-3,4.8-5.4,8-7c3.2-1.6,6.9-2.4,11.2-2.4c5.6,0,10.5,1.5,14.4,4.6c4,3.1,7,7.3,9.2,12.9c2.1,5.5,3.2,11.9,3.2,19.3v1.3
1798 + c0,6.6-1.1,12.3-3.2,17.3c-2.1,4.9-5.2,8.8-9.2,11.5C1255.6,319.2,1250.8,320.6,1245.2,320.6L1245.2,320.6z M1241.6,310.6
1799 + c6.1,0,10.6-2.2,13.5-6.5c2.9-4.3,4.4-10,4.4-17.1v-1c0-5.3-0.6-10-1.9-14s-3.2-7.1-5.8-9.4c-2.6-2.3-5.9-3.4-9.9-3.4
1800 + c-4,0-7.1,0.9-9.8,2.8c-2.6,1.9-4.8,4.4-6.3,7.5v30.6c1.5,3.1,3.6,5.5,6.2,7.3c2.6,1.8,5.8,2.7,9.5,2.7L1241.6,310.6z"/>
1801 + </g>
1802 + <g>
1803 + <path class="st1" d="M1293.4,346.2c-1,0-2.2-0.1-3.8-0.3c-1.6-0.2-2.8-0.5-3.6-0.7l1.3-9.8c0.7,0.1,1.7,0.2,3,0.2s2.1,0.1,2.6,0.1
1804 + c2.7,0,4.8-1,6.5-3c1.7-2,3.2-4.8,4.7-8.3l3-7.2l-24.3-58.2l-7.4-1v-8.1h29.1v8.1l-8.3,1.3l13.3,34.4l3.2,9h0.4l15.8-43.3
1805 + l-8.7-1.3v-8.1h28v8.1l-7.1,1l-27,70.1c-1.3,3.3-2.8,6.3-4.6,8.9c-1.8,2.6-4,4.6-6.6,6.1C1300.2,345.4,1297,346.2,1293.4,346.2
1806 + L1293.4,346.2z"/>
1807 + </g>
1808 +</g>
1809 +</svg>
1810 +</div>
1811 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
1812 + <div class="cmplz-close" tabindex="0" role="button" aria-label="close-dialog">
1813 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
1814 + </div>
1815 + </div>
1816 +
1817 + <div class="cmplz-divider cmplz-divider-header"></div>
1818 + <div class="cmplz-body">
1819 + <div class="cmplz-message" id="cmplz-message-1-optin"><p>Pour vous offrir les meilleures expériences, nous utilisons des technologies, telles que les cookies, pour stocker et accéder à des informations sur votre appareil. Votre consentement à ces technologies nous permet de traiter des données, telles que vos préférences de navigation ou des identifiants uniques. Vous pouvez refuser ou retirer votre consentement à tout moment, ce qui pourrait affecter certaines fonctionnalités ou caractéristiques du site. Pour en savoir plus sur l’utilisation de vos données, veuillez consulter notre [politique de confidentialité](lien vers la politique de confidentialité).</p></div>
1820 + <!-- categories start -->
1821 + <div class="cmplz-categories">
1822 + <details class="cmplz-category cmplz-functional" >
1823 + <summary>
1824 + <span class="cmplz-category-header">
1825 + <span class="cmplz-category-title">Fonctionnel</span>
1826 + <span class='cmplz-always-active'>
1827 + <span class="cmplz-banner-checkbox">
1828 + <input type="checkbox"
1829 + id="cmplz-functional-optin"
1830 + data-category="cmplz_functional"
1831 + class="cmplz-consent-checkbox cmplz-functional"
1832 + size="40"
1833 + value="1"/>
1834 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
1835 + </span>
1836 + Toujours activé </span>
1837 + <span class="cmplz-icon cmplz-open">
1838 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
1839 + </span>
1840 + </span>
1841 + </summary>
1842 + <div class="cmplz-description">
1843 + <span class="cmplz-description-functional">L’accès ou le stockage technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
1844 + </div>
1845 + </details>
1846 +
1847 + <details class="cmplz-category cmplz-preferences" >
1848 + <summary>
1849 + <span class="cmplz-category-header">
1850 + <span class="cmplz-category-title">Préférences</span>
1851 + <span class="cmplz-banner-checkbox">
1852 + <input type="checkbox"
1853 + id="cmplz-preferences-optin"
1854 + data-category="cmplz_preferences"
1855 + class="cmplz-consent-checkbox cmplz-preferences"
1856 + size="40"
1857 + value="1"/>
1858 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
1859 + </span>
1860 + <span class="cmplz-icon cmplz-open">
1861 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
1862 + </span>
1863 + </span>
1864 + </summary>
1865 + <div class="cmplz-description">
1866 + <span class="cmplz-description-preferences">L'accès ou le stockage technique est nécessaire dans la finalité d'intérêt légitime de stocker des préférences spécifiques des utilisateurs, telles que la langue, la région ou d'autres paramètres personnalisés, afin d'améliorer leur expérience sur le site.</span>
1867 + </div>
1868 + </details>
1869 +
1870 + <details class="cmplz-category cmplz-statistics" >
1871 + <summary>
1872 + <span class="cmplz-category-header">
1873 + <span class="cmplz-category-title">Statistiques</span>
1874 + <span class="cmplz-banner-checkbox">
1875 + <input type="checkbox"
1876 + id="cmplz-statistics-optin"
1877 + data-category="cmplz_statistics"
1878 + class="cmplz-consent-checkbox cmplz-statistics"
1879 + size="40"
1880 + value="1"/>
1881 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
1882 + </span>
1883 + <span class="cmplz-icon cmplz-open">
1884 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
1885 + </span>
1886 + </span>
1887 + </summary>
1888 + <div class="cmplz-description">
1889 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
1890 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique est utilisé exclusivement à des fins statistiques anonymes. Sans assignation légale, conformité volontaire de votre fournisseur d’accès à Internet ou données supplémentaires d’une tierce partie, les informations collectées à cette fin ne peuvent pas être utilisées pour vous identifier.</span>
1891 + </div>
1892 + </details>
1893 + <details class="cmplz-category cmplz-marketing" >
1894 + <summary>
1895 + <span class="cmplz-category-header">
1896 + <span class="cmplz-category-title">Marketing</span>
1897 + <span class="cmplz-banner-checkbox">
1898 + <input type="checkbox"
1899 + id="cmplz-marketing-optin"
1900 + data-category="cmplz_marketing"
1901 + class="cmplz-consent-checkbox cmplz-marketing"
1902 + size="40"
1903 + value="1"/>
1904 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
1905 + </span>
1906 + <span class="cmplz-icon cmplz-open">
1907 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
1908 + </span>
1909 + </span>
1910 + </summary>
1911 + <div class="cmplz-description">
1912 + <span class="cmplz-description-marketing">L’accès ou le stockage technique est nécessaire pour créer des profils d’utilisateurs, diffuser des publicités personnalisées, et suivre l’activité de l’utilisateur sur ce site ou sur plusieurs sites web dans le cadre de campagnes marketing similaires.</span>
1913 + </div>
1914 + </details>
1915 + </div><!-- categories end -->
1916 + </div>
1917 +
1918 + <div class="cmplz-links cmplz-information">
1919 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
1920 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
1921 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
1922 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
1923 + </div>
1924 +
1925 + <div class="cmplz-divider cmplz-footer"></div>
1926 +
1927 + <div class="cmplz-buttons">
1928 + <button class="cmplz-btn cmplz-accept">Accepter</button>
1929 + <button class="cmplz-btn cmplz-deny">Refuser</button>
1930 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
1931 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
1932 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
1933 + </div>
1934 +
1935 + <div class="cmplz-links cmplz-documents">
1936 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
1937 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
1938 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
1939 + </div>
1940 +
1941 +</div>
1942 +</div>
1943 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
1944 +
1945 +</div> <script data-service="google-recaptcha" data-category="marketing" type="text/plain">
1946 + var reCaptchaIDs = [];
1947 + var siteKey = '6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc';
1948 + var reCaptchaType = 'v3';
1949 +
1950 + var houzezReCaptchaLoad = function() {
1951 + jQuery( '.houzez_google_reCaptcha' ).each( function( index, el ) {
1952 + var tempID;
1953 +
1954 + if ( reCaptchaType === 'v3' ) {
1955 +
1956 + tempID = grecaptcha.ready(function () {
1957 + grecaptcha.execute(siteKey, {action: 'homepage'}).then(function (token) {
1958 + el.insertAdjacentHTML('beforeend', '<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="' + token + '">');
1959 + });
1960 + });
1961 +
1962 + } else {
1963 +
1964 + tempID = grecaptcha.render( el, {
1965 + 'sitekey' : siteKey
1966 + } );
1967 + }
1968 +
1969 + reCaptchaIDs.push( tempID );
1970 + } );
1971 + };
1972 +
1973 + //reCAPTCHA reset
1974 + var houzezReCaptchaReset = function() {
1975 + if ( reCaptchaType === 'v2' ) {
1976 + if( typeof reCaptchaIDs != 'undefined' ) {
1977 + var arrayLength = reCaptchaIDs.length;
1978 + for( var i = 0; i < arrayLength; i++ ) {
1979 + grecaptcha.reset( reCaptchaIDs[i] );
1980 + }
1981 + }
1982 + } else {
1983 + houzezReCaptchaLoad();
1984 + }
1985 + };
1986 + </script>
1987 + <script>
1988 + const lazyloadRunObserver = () => {
1989 + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
1990 + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
1991 + entries.forEach( ( entry ) => {
1992 + if ( entry.isIntersecting ) {
1993 + let lazyloadBackground = entry.target;
1994 + if( lazyloadBackground ) {
1995 + lazyloadBackground.classList.add( 'e-lazyloaded' );
1996 + }
1997 + lazyloadBackgroundObserver.unobserve( entry.target );
1998 + }
1999 + });
2000 + }, { rootMargin: '200px 0px 200px 0px' } );
2001 + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
2002 + lazyloadBackgroundObserver.observe( lazyloadBackground );
2003 + } );
2004 + };
2005 + const events = [
2006 + 'DOMContentLoaded',
2007 + 'elementor/lazyload/observe',
2008 + ];
2009 + events.forEach( ( event ) => {
2010 + document.addEventListener( event, lazyloadRunObserver );
2011 + } );
2012 + </script>
2013 + <link rel='stylesheet' id='rs-plugin-settings-css' href='//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/css/rs6.css?ver=6.7.20' type='text/css' media='all' />
2014 +<style id='rs-plugin-settings-inline-css' type='text/css'>
2015 +#rs-demo-id {}
2016 +</style>
2017 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.20" defer async id="tp-tools-js"></script>
2018 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.20" defer async id="revmin-js"></script>
2019 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/all-scripts.js?ver=3.4.4" id="houzez-all-in-one-js"></script>
2020 +<script type="module" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/houzez-instant-page.js?ver=3.0.0" id="houzez-instant-page-js"></script>
2021 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script>
2022 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/menu.min.js?ver=1.13.3" id="jquery-ui-menu-js"></script>
2023 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/dom-ready.min.js?ver=f77871ff7694fffea381" id="wp-dom-ready-js"></script>
2024 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script>
2025 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script>
2026 +<script type="text/javascript" id="wp-i18n-js-after">
2027 +/* <![CDATA[ */
2028 +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
2029 +/* ]]> */
2030 +</script>
2031 +<script type="text/javascript" id="wp-a11y-js-translations">
2032 +/* <![CDATA[ */
2033 +( function( domain, translations ) {
2034 + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
2035 + localeData[""].domain = domain;
2036 + wp.i18n.setLocaleData( localeData, domain );
2037 +} )( "default", {"translation-revision-date":"2025-10-01 05:29:20+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} );
2038 +/* ]]> */
2039 +</script>
2040 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/a11y.min.js?ver=3156534cc54473497e14" id="wp-a11y-js"></script>
2041 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.13.3" id="jquery-ui-autocomplete-js"></script>
2042 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/mouse.min.js?ver=1.13.3" id="jquery-ui-mouse-js"></script>
2043 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/slider.min.js?ver=1.13.3" id="jquery-ui-slider-js"></script>
2044 +<script type="text/javascript" id="houzez-custom-js-extra">
2045 +/* <![CDATA[ */
2046 +var houzez_vars = {"admin_url":"https:\/\/immeublesalexcellence.com\/wp-admin\/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https:\/\/immeublesalexcellence.com\/appartements-a-louer\/","property_gallery_popup_type":"houzez","wp_is_mobile":"","default_lat":"25.686540","default_long":"-80.431345","houzez_is_splash":"","prop_detail_nav":"yes","add_to_favorite_login_required":"1","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"","search_position":"under_banner","login_loading":"Envoi d'informations utilisateur, veuillez patienter ...","not_found":"Nous n'avons trouv\u00e9 aucun r\u00e9sultat","listings_not_found":"No more listings found","houzez_map_system":"osm","for_rent":"a-louer","for_rent_price_slider":"a-louer","search_min_price_range":"0","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":"0","geocomplete_country":"","is_edit_property":"","processing_text":"Traitement, veuillez patienter ...","halfmap_layout":"","prev_text":"Prev","next_text":"Prochain","keyword_search_field":"prop_title","keyword_autocomplete":"1","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"1","simple_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo":"","mobile_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo_mobile":"","retina_logo_mobile_splash":"","custom_logo_splash":"","retina_logo_splash":"","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"","favorite_url":"","template_thankyou":"https:\/\/immeublesalexcellence.com\/","compare_page_not_found":"Veuillez cr\u00e9er une page en utilisant le mod\u00e8le de propri\u00e9t\u00e9s de comparaison","compare_limit":"Prix \u200b\u200bmaximum pour le loyer seulement","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Ajouter au comparatif","remove_compare_text":"Retirer du comparatif","is_mapbox":"google","api_mapbox":"","listing_pagination":"_loadmore","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""};
2047 +/* ]]> */
2048 +</script>
2049 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/custom.js?ver=3.4.4" id="houzez-custom-js"></script>
2050 +<script data-service="google-recaptcha" data-category="marketing" type="text/plain" data-cmplz-src="//www.google.com/recaptcha/api.js?render=6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc&amp;onload=houzezReCaptchaLoad&amp;ver=3.4.4" id="houzez-google-recaptcha-js"></script>
2051 +<script type="text/javascript" id="cmplz-cookiebanner-js-extra">
2052 +/* <![CDATA[ */
2053 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"0","banner_version":"8517","version":"7.3.2","store_consent":"1","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"1","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/immeublesalexcellence.com\/wp-json\/complianz\/v1\/","locale":"lang=fr&locale=fr_FR","set_cookies_on_root":"0","cookie_domain":"","current_policy_id":"37","cookie_path":"\/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"<div class=\"cmplz-blocked-content-notice-body\">Cliquez sur \u00ab\u00a0J\u2019accepte\u00a0\u00bb pour activer {service}\u00a0<div class=\"cmplz-links\"><a href=\"#\" class=\"cmplz-link cookie-statement\">{title}<\/a><\/div><\/div><button class=\"cmplz-accept-service\">J\u2019accepte<\/button>","css_file":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=8517","page_links":{"ca":{"cookie-statement":{"title":"Politique de cookies ","url":"https:\/\/immeublesalexcellence.com\/politique-de-cookies-ca\/"},"privacy-statement":{"title":"D\u00e9claration de confidentialit\u00e9 ","url":"https:\/\/immeublesalexcellence.com\/declaration-de-confidentialite-ca\/"},"privacy-statement-children":{"title":"","url":"https:\/\/immeublesalexcellence.com\/appartements-a-louer\/"}}},"tm_categories":"","forceEnableStats":"1","preview":"","clean_cookies":"1","aria_label":"Cliquez sur le bouton pour activer {service}"};
2054 +/* ]]> */
2055 +</script>
2056 +<script defer type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/cookiebanner/js/complianz.min.js?ver=1736710566" id="cmplz-cookiebanner-js"></script>
2057 +<script type="text/javascript" id="cmplz-cookiebanner-js-after">
2058 +/* <![CDATA[ */
2059 +
2060 + if ('undefined' != typeof window.jQuery) {
2061 + jQuery(document).ready(function ($) {
2062 + $(document).on('elementor/popup/show', () => {
2063 + let rev_cats = cmplz_categories.reverse();
2064 + for (let key in rev_cats) {
2065 + if (rev_cats.hasOwnProperty(key)) {
2066 + let category = cmplz_categories[key];
2067 + if (cmplz_has_consent(category)) {
2068 + document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => {
2069 + cmplz_remove_placeholder(obj);
2070 + });
2071 + }
2072 + }
2073 + }
2074 +
2075 + let services = cmplz_get_services_on_page();
2076 + for (let key in services) {
2077 + if (services.hasOwnProperty(key)) {
2078 + let service = services[key].service;
2079 + let category = services[key].category;
2080 + if (cmplz_has_service_consent(service, category)) {
2081 + document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => {
2082 + cmplz_remove_placeholder(obj);
2083 + });
2084 + }
2085 + }
2086 + }
2087 + });
2088 + });
2089 + }
2090 +
2091 +
2092 +/* ]]> */
2093 +</script>
2094 +<!-- Statistics script Complianz GDPR/CCPA -->
2095 + <script data-category="functional">window['gtag_enable_tcf_support'] = false;
2096 +window.dataLayer = window.dataLayer || [];
2097 +function gtag(){dataLayer.push(arguments);}
2098 +gtag('js', new Date());
2099 +gtag('config', '', {
2100 + cookie_flags:'secure;samesite=none',
2101 + 'anonymize_ip': true
2102 +});
2103 +</script>
2104 +</body>
2105 +</html>
2106 +
2107 +
2108 +
added tests/fixtures/alexcellence/c5f68f5fa1a3bd1da1bb.html +2447 −0
@@ -0,0 +1,2447 @@
1 +<!doctype html>
2 +<html lang="fr-FR">
3 +<head>
4 + <meta charset="UTF-8" />
5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 + <link rel="profile" href="https://gmpg.org/xfn/11" />
7 + <meta name="format-detection" content="telephone=no">
8 + <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://immeublesalexcellence.com/wp-content/themes/houzez/img/studio-icon.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>
9 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
10 + <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
11 +
12 + <!-- This site is optimized with the Yoast SEO plugin v24.3 - https://yoast.com/wordpress/plugins/seo/ -->
13 + <title>4 ½ à louer près du CÉGEP et de l&#039;Université de Sherbrooke</title>
14 + <meta name="description" content="superbe 4 ½ à louer à Sherbrooke près du CÉGEP et de l&#039;Université de Sherbrooke, espace de vie moderne, sécuritaire, fonctionnel et lumineux." />
15 + <link rel="canonical" href="https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/" />
16 + <meta property="og:locale" content="fr_FR" />
17 + <meta property="og:type" content="article" />
18 + <meta property="og:title" content="4 ½ à louer près du CÉGEP et de l&#039;Université de Sherbrooke" />
19 + <meta property="og:description" content="superbe 4 ½ à louer à Sherbrooke près du CÉGEP et de l&#039;Université de Sherbrooke, espace de vie moderne, sécuritaire, fonctionnel et lumineux." />
20 + <meta property="og:url" content="https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/" />
21 + <meta property="og:site_name" content="Immeubles Alexcellence" />
22 + <meta property="article:publisher" content="https://www.facebook.com/immeublesalexcellence" />
23 + <meta property="article:modified_time" content="2026-07-17T19:48:12+00:00" />
24 + <meta property="og:image" content="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke.jpg" />
25 + <meta property="og:image:width" content="1067" />
26 + <meta property="og:image:height" content="800" />
27 + <meta property="og:image:type" content="image/jpeg" />
28 + <meta name="twitter:card" content="summary_large_image" />
29 + <meta name="twitter:label1" content="Durée de lecture estimée" />
30 + <meta name="twitter:data1" content="2 minutes" />
31 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/","url":"https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/","name":"4 ½ à louer près du CÉGEP et de l'Université de Sherbrooke","isPartOf":{"@id":"https://immeublesalexcellence.com/#website"},"primaryImageOfPage":{"@id":"https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/#primaryimage"},"image":{"@id":"https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/#primaryimage"},"thumbnailUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke.jpg","datePublished":"2025-01-13T02:02:36+00:00","dateModified":"2026-07-17T19:48:12+00:00","description":"superbe 4 ½ à louer à Sherbrooke près du CÉGEP et de l'Université de Sherbrooke, espace de vie moderne, sécuritaire, fonctionnel et lumineux.","breadcrumb":{"@id":"https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/#primaryimage","url":"https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke.jpg","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke.jpg","width":1067,"height":800,"caption":"loyer étudiant Sherbrooke Mont-Bellevue Université"},{"@type":"BreadcrumbList","@id":"https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https://immeublesalexcellence.com/"},{"@type":"ListItem","position":2,"name":"Propriétés","item":"https://immeublesalexcellence.com/appartements/"},{"@type":"ListItem","position":3,"name":"Loyer 4 ½ à louer Secteur Université &#038; Mont-Bellevue"}]},{"@type":"WebSite","@id":"https://immeublesalexcellence.com/#website","url":"https://immeublesalexcellence.com/","name":"Immeubles Alexcellence","description":"Appartement a louer Université Sherbrooke","publisher":{"@id":"https://immeublesalexcellence.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://immeublesalexcellence.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https://immeublesalexcellence.com/#organization","name":"Immeubles Alexcellence","url":"https://immeublesalexcellence.com/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/#/schema/logo/image/","url":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","width":436,"height":123,"caption":"Immeubles Alexcellence"},"image":{"@id":"https://immeublesalexcellence.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/immeublesalexcellence","https://www.instagram.com/immeublealexellence/"]}]}</script>
32 + <!-- / Yoast SEO plugin. -->
33 +
34 +
35 +<link rel='dns-prefetch' href='//www.google.com' />
36 +<link rel='dns-prefetch' href='//fonts.googleapis.com' />
37 +<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin />
38 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux" href="https://immeublesalexcellence.com/feed/" />
39 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux des commentaires" href="https://immeublesalexcellence.com/comments/feed/" />
40 +<script type="text/javascript">
41 +/* <![CDATA[ */
42 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/immeublesalexcellence.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.5"}};
43 +/*! This file is auto-generated */
44 +!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
45 +/* ]]> */
46 +</script>
47 +<style id='wp-emoji-styles-inline-css' type='text/css'>
48 +
49 + img.wp-smiley, img.emoji {
50 + display: inline !important;
51 + border: none !important;
52 + box-shadow: none !important;
53 + height: 1em !important;
54 + width: 1em !important;
55 + margin: 0 0.07em !important;
56 + vertical-align: -0.1em !important;
57 + background: none !important;
58 + padding: 0 !important;
59 + }
60 +</style>
61 +<link rel='stylesheet' id='wp-block-library-css' href='https://immeublesalexcellence.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.5' type='text/css' media='all' />
62 +<style id='classic-theme-styles-inline-css' type='text/css'>
63 +/*! This file is auto-generated */
64 +.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}
65 +</style>
66 +<style id='global-styles-inline-css' type='text/css'>
67 +: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,rgba(6,147,227,1) 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,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%,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 rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}: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;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.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;}
68 +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
69 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
70 +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
71 +</style>
72 +<link rel='stylesheet' id='elementor-frontend-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.27.1' type='text/css' media='all' />
73 +<link rel='stylesheet' id='elementor-post-6-css' href='https://immeublesalexcellence.com/wp-content/uploads/elementor/css/post-6.css?ver=1737736055' type='text/css' media='all' />
74 +<link rel='stylesheet' id='font-awesome-5-all-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.27.1' type='text/css' media='all' />
75 +<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.27.1' type='text/css' media='all' />
76 +<link rel='stylesheet' id='widget-text-editor-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.27.1' type='text/css' media='all' />
77 +<link rel='stylesheet' id='houzez-studio-css' href='https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/css/houzez-studio-public.css?ver=1.2.1' type='text/css' media='all' />
78 +<link rel='stylesheet' id='cmplz-general-css' href='https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/assets/css/cookieblocker.min.css?ver=1736710567' type='text/css' media='all' />
79 +<link rel='stylesheet' id='houzez-all-css-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/css/all-css.css?ver=3.4.4' type='text/css' media='all' />
80 +<link rel='stylesheet' id='houzez-style-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/style.css?ver=3.4.4' type='text/css' media='all' />
81 +<style id='houzez-style-inline-css' type='text/css'>
82 +
83 + @media (min-width: 1200px) {
84 + .container {
85 + max-width: 1310px;
86 + }
87 + }
88 + .status-color-21 {
89 + background-color: #45962e;
90 + }
91 +
92 + .status-color-199 {
93 + background-color: #595959;
94 + }
95 +
96 + body {
97 + font-family: Roboto;
98 + font-size: 15px;
99 + font-weight: 400;
100 + line-height: 25px;
101 + text-transform: none;
102 + }
103 + .main-nav,
104 + .dropdown-menu,
105 + .login-register,
106 + .btn.btn-create-listing,
107 + .logged-in-nav,
108 + .btn-phone-number {
109 + font-family: Roboto;
110 + font-size: 14px;
111 + font-weight: 500;
112 + text-align: left;
113 + text-transform: none;
114 + }
115 +
116 + .btn,
117 + .ele-btn,
118 + .houzez-search-button,
119 + .houzez-submit-button,
120 + .form-control,
121 + .bootstrap-select .text,
122 + .sort-by-title,
123 + .woocommerce ul.products li.product .button {
124 + font-family: Roboto;
125 + font-size: 15px;
126 + }
127 +
128 + h1, h2, h3, h4, h5, h6, .item-title {
129 + font-family: Roboto;
130 + font-weight: 500;
131 + text-transform: inherit;
132 + }
133 +
134 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
135 + font-weight: 500;
136 + text-transform: inherit;
137 + text-align: inherit;
138 + }
139 +
140 + .top-bar-wrap {
141 + font-family: Roboto;
142 + font-size: 13px;
143 + font-weight: 300;
144 + line-height: 25px;
145 + text-align: left;
146 + text-transform: none;
147 + }
148 + .footer-wrap {
149 + font-family: Roboto;
150 + font-size: 14px;
151 + font-weight: 300;
152 + line-height: 25px;
153 + text-align: left;
154 + text-transform: none;
155 + }
156 +
157 + .header-v1 .header-inner-wrap,
158 + .header-v1 .navbar-logged-in-wrap {
159 + line-height: 60px;
160 + height: 60px;
161 + }
162 + .header-v2 .header-top .navbar {
163 + height: 110px;
164 + }
165 +
166 + .header-v2 .header-bottom .header-inner-wrap,
167 + .header-v2 .header-bottom .navbar-logged-in-wrap {
168 + line-height: 54px;
169 + height: 54px;
170 + }
171 +
172 + .header-v3 .header-top .header-inner-wrap,
173 + .header-v3 .header-top .header-contact-wrap {
174 + height: 80px;
175 + line-height: 80px;
176 + }
177 + .header-v3 .header-bottom .header-inner-wrap,
178 + .header-v3 .header-bottom .navbar-logged-in-wrap {
179 + line-height: 54px;
180 + height: 54px;
181 + }
182 + .header-v4 .header-inner-wrap,
183 + .header-v4 .navbar-logged-in-wrap {
184 + line-height: 90px;
185 + height: 90px;
186 + }
187 + .header-v5 .header-top .header-inner-wrap,
188 + .header-v5 .header-top .navbar-logged-in-wrap {
189 + line-height: 110px;
190 + height: 110px;
191 + }
192 + .header-v5 .header-bottom .header-inner-wrap {
193 + line-height: 54px;
194 + height: 54px;
195 + }
196 + .header-v6 .header-inner-wrap,
197 + .header-v6 .navbar-logged-in-wrap {
198 + height: 60px;
199 + line-height: 60px;
200 + }
201 + @media (min-width: 1200px) {
202 + .header-v5 .header-top .container {
203 + max-width: 1170px;
204 + }
205 + }
206 +
207 + body,
208 + .main-wrap,
209 + .fw-property-documents-wrap h3 span,
210 + .fw-property-details-wrap h3 span {
211 + background-color: #f7f7f7;
212 + }
213 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
214 + background-color: #ffffff;
215 + }
216 +
217 + body,
218 + .form-control,
219 + .bootstrap-select .text,
220 + .item-title a,
221 + .listing-tabs .nav-tabs .nav-link,
222 + .item-wrap-v2 .item-amenities li span,
223 + .item-wrap-v2 .item-amenities li:before,
224 + .item-parallax-wrap .item-price-wrap,
225 + .list-view .item-body .item-price-wrap,
226 + .property-slider-item .item-price-wrap,
227 + .page-title-wrap .item-price-wrap,
228 + .agent-information .agent-phone span a,
229 + .property-overview-wrap ul li strong,
230 + .mobile-property-title .item-price-wrap .item-price,
231 + .fw-property-features-left li a,
232 + .lightbox-content-wrap .item-price-wrap,
233 + .blog-post-item-v1 .blog-post-title h3 a,
234 + .blog-post-content-widget h4 a,
235 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
236 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
237 + .agent-list-wrap .agent-list-content h2 a,
238 + .agent-list-wrap .agent-list-contact li a,
239 + .agent-contacts-wrap li a,
240 + .menu-edit-property li a,
241 + .statistic-referrals-list li a,
242 + .chart-nav .nav-pills .nav-link,
243 + .dashboard-table-properties td .property-payment-status,
244 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
245 + .payment-method-block .radio-tab .control-text,
246 + .post-title-wrap h2 a,
247 + .lead-nav-tab.nav-pills .nav-link,
248 + .deals-nav-tab.nav-pills .nav-link,
249 + .btn-light-grey-outlined:hover,
250 + button:not(.bs-placeholder) .filter-option-inner-inner,
251 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
252 + .products > .product > .item-body > a,
253 + .woocommerce ul.products li.product .price,
254 + .woocommerce div.product p.price,
255 + .woocommerce div.product span.price,
256 + .woocommerce #reviews #comments ol.commentlist li .meta,
257 + .woocommerce-MyAccount-navigation ul li a,
258 + .activitiy-item-close-button a,
259 + .property-section-wrap li a {
260 + color: #222222;
261 + }
262 +
263 +
264 +
265 + a,
266 + a:hover,
267 + a:active,
268 + a:focus,
269 + .primary-text,
270 + .btn-clear,
271 + .btn-apply,
272 + .btn-primary-outlined,
273 + .btn-primary-outlined:before,
274 + .item-title a:hover,
275 + .sort-by .bootstrap-select .bs-placeholder,
276 + .sort-by .bootstrap-select > .btn,
277 + .sort-by .bootstrap-select > .btn:active,
278 + .page-link,
279 + .page-link:hover,
280 + .accordion-title:before,
281 + .blog-post-content-widget h4 a:hover,
282 + .agent-list-wrap .agent-list-content h2 a:hover,
283 + .agent-list-wrap .agent-list-contact li a:hover,
284 + .agent-contacts-wrap li a:hover,
285 + .agent-nav-wrap .nav-pills .nav-link,
286 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
287 + .menu-edit-property li a.active,
288 + .menu-edit-property li a:hover,
289 + .dashboard-statistic-block h3 .fa,
290 + .statistic-referrals-list li a:hover,
291 + .chart-nav .nav-pills .nav-link.active,
292 + .board-message-icon-wrap.active,
293 + .post-title-wrap h2 a:hover,
294 + .listing-switch-view .switch-btn.active,
295 + .item-wrap-v6 .item-price-wrap,
296 + .listing-v6 .list-view .item-body .item-price-wrap,
297 + .woocommerce nav.woocommerce-pagination ul li a,
298 + .woocommerce nav.woocommerce-pagination ul li span,
299 + .woocommerce-MyAccount-navigation ul li a:hover,
300 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
301 + .property-schedule-tour-form-wrap .control:hover,
302 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
303 + .login-register .btn-icon-login-register + .dropdown-menu a,
304 + .activitiy-item-close-button a:hover,
305 + .property-section-wrap li a:hover,
306 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active,
307 + .property-lightbox-v2-sections-navigation .slick-prev,
308 + .property-lightbox-v2-sections-navigation .slick-next,
309 + .property-lightbox-v2-sections-navigation .slick-slide.current-section,
310 + .property-lightbox-v2-sections-navigation .nav-link.active,
311 + .agent-detail-page-v2 .listing-tabs .nav-link.active {
312 + color: #014582;
313 + }
314 +
315 + .agent-list-position a {
316 + color: #014582;
317 + }
318 +
319 + .control input:checked ~ .control__indicator,
320 + .top-banner-wrap .nav-pills .nav-link,
321 + .btn-primary-outlined:hover,
322 + .page-item.active .page-link,
323 + .slick-prev:hover,
324 + .slick-prev:focus,
325 + .slick-next:hover,
326 + .slick-next:focus,
327 + .mobile-property-tools .nav-pills .nav-link.active,
328 + .login-register-form .modal-header,
329 + .agent-nav-wrap .nav-pills .nav-link.active,
330 + .board-message-icon-wrap .notification-circle,
331 + .primary-label,
332 + .fc-event, .fc-event-dot,
333 + .compare-table .table-hover > tbody > tr:hover,
334 + .post-tag,
335 + .datepicker table tr td.active.active,
336 + .datepicker table tr td.active.disabled,
337 + .datepicker table tr td.active.disabled.active,
338 + .datepicker table tr td.active.disabled.disabled,
339 + .datepicker table tr td.active.disabled:active,
340 + .datepicker table tr td.active.disabled:hover,
341 + .datepicker table tr td.active.disabled:hover.active,
342 + .datepicker table tr td.active.disabled:hover.disabled,
343 + .datepicker table tr td.active.disabled:hover:active,
344 + .datepicker table tr td.active.disabled:hover:hover,
345 + .datepicker table tr td.active.disabled:hover[disabled],
346 + .datepicker table tr td.active.disabled[disabled],
347 + .datepicker table tr td.active:active,
348 + .datepicker table tr td.active:hover,
349 + .datepicker table tr td.active:hover.active,
350 + .datepicker table tr td.active:hover.disabled,
351 + .datepicker table tr td.active:hover:active,
352 + .datepicker table tr td.active:hover:hover,
353 + .datepicker table tr td.active:hover[disabled],
354 + .datepicker table tr td.active[disabled],
355 + .ui-slider-horizontal .ui-slider-range,
356 + .btn-bubble {
357 + background-color: #014582;
358 + }
359 +
360 + .control input:checked ~ .control__indicator,
361 + .btn-primary-outlined,
362 + .page-item.active .page-link,
363 + .mobile-property-tools .nav-pills .nav-link.active,
364 + .agent-nav-wrap .nav-pills .nav-link,
365 + .agent-nav-wrap .nav-pills .nav-link.active,
366 + .chart-nav .nav-pills .nav-link.active,
367 + .dashaboard-snake-nav .step-block.active,
368 + .fc-event,
369 + .fc-event-dot,
370 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
371 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
372 + border-color: #014582;
373 + }
374 +
375 + .slick-arrow:hover {
376 + background-color: rgba(36,52,140,0.52);
377 + }
378 +
379 + .slick-arrow {
380 + background-color: #014582;
381 + }
382 +
383 + .property-banner .nav-pills .nav-link.active {
384 + background-color: rgba(36,52,140,0.52) !important;
385 + }
386 +
387 + .property-navigation-wrap a.active {
388 + color: #014582;
389 + -webkit-box-shadow: inset 0 -3px #014582;
390 + box-shadow: inset 0 -3px #014582;
391 + }
392 +
393 + .btn-primary,
394 + .fc-button-primary,
395 + .woocommerce nav.woocommerce-pagination ul li a:focus,
396 + .woocommerce nav.woocommerce-pagination ul li a:hover,
397 + .woocommerce nav.woocommerce-pagination ul li span.current {
398 + color: #fff;
399 + background-color: #014582;
400 + border-color: #014582;
401 + }
402 + .btn-primary:focus, .btn-primary:focus:active,
403 + .fc-button-primary:focus,
404 + .fc-button-primary:focus:active {
405 + color: #fff;
406 + background-color: #014582;
407 + border-color: #014582;
408 + }
409 + .btn-primary:hover,
410 + .fc-button-primary:hover {
411 + color: #fff;
412 + background-color: #24348c;
413 + border-color: #24348c;
414 + }
415 + .btn-primary:active,
416 + .btn-primary:not(:disabled):not(:disabled):active,
417 + .fc-button-primary:active,
418 + .fc-button-primary:not(:disabled):not(:disabled):active {
419 + color: #fff;
420 + background-color: #24348c;
421 + border-color: #24348c;
422 + }
423 +
424 + .btn-secondary,
425 + .woocommerce span.onsale,
426 + .woocommerce ul.products li.product .button,
427 + .woocommerce #respond input#submit.alt,
428 + .woocommerce a.button.alt,
429 + .woocommerce button.button.alt,
430 + .woocommerce input.button.alt,
431 + .woocommerce #review_form #respond .form-submit input,
432 + .woocommerce #respond input#submit,
433 + .woocommerce a.button,
434 + .woocommerce button.button,
435 + .woocommerce input.button {
436 + color: #fff;
437 + background-color: #2ea7b2;
438 + border-color: #2ea7b2;
439 + }
440 + .woocommerce ul.products li.product .button:focus,
441 + .woocommerce ul.products li.product .button:active,
442 + .woocommerce #respond input#submit.alt:focus,
443 + .woocommerce a.button.alt:focus,
444 + .woocommerce button.button.alt:focus,
445 + .woocommerce input.button.alt:focus,
446 + .woocommerce #respond input#submit.alt:active,
447 + .woocommerce a.button.alt:active,
448 + .woocommerce button.button.alt:active,
449 + .woocommerce input.button.alt:active,
450 + .woocommerce #review_form #respond .form-submit input:focus,
451 + .woocommerce #review_form #respond .form-submit input:active,
452 + .woocommerce #respond input#submit:active,
453 + .woocommerce a.button:active,
454 + .woocommerce button.button:active,
455 + .woocommerce input.button:active,
456 + .woocommerce #respond input#submit:focus,
457 + .woocommerce a.button:focus,
458 + .woocommerce button.button:focus,
459 + .woocommerce input.button:focus {
460 + color: #fff;
461 + background-color: #2ea7b2;
462 + border-color: #2ea7b2;
463 + }
464 + .btn-secondary:hover,
465 + .woocommerce ul.products li.product .button:hover,
466 + .woocommerce #respond input#submit.alt:hover,
467 + .woocommerce a.button.alt:hover,
468 + .woocommerce button.button.alt:hover,
469 + .woocommerce input.button.alt:hover,
470 + .woocommerce #review_form #respond .form-submit input:hover,
471 + .woocommerce #respond input#submit:hover,
472 + .woocommerce a.button:hover,
473 + .woocommerce button.button:hover,
474 + .woocommerce input.button:hover {
475 + color: #fff;
476 + background-color: #333333;
477 + border-color: #333333;
478 + }
479 + .btn-secondary:active,
480 + .btn-secondary:not(:disabled):not(:disabled):active {
481 + color: #fff;
482 + background-color: #333333;
483 + border-color: #333333;
484 + }
485 +
486 + .btn-primary-outlined {
487 + color: #014582;
488 + background-color: transparent;
489 + border-color: #014582;
490 + }
491 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
492 + color: #014582;
493 + background-color: transparent;
494 + border-color: #014582;
495 + }
496 + .btn-primary-outlined:hover {
497 + color: #fff;
498 + background-color: #24348c;
499 + border-color: #24348c;
500 + }
501 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
502 + color: #014582;
503 + background-color: rgba(26, 26, 26, 0);
504 + border-color: #24348c;
505 + }
506 +
507 + .btn-secondary-outlined {
508 + color: #2ea7b2;
509 + background-color: transparent;
510 + border-color: #2ea7b2;
511 + }
512 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
513 + color: #2ea7b2;
514 + background-color: transparent;
515 + border-color: #2ea7b2;
516 + }
517 + .btn-secondary-outlined:hover {
518 + color: #fff;
519 + background-color: #333333;
520 + border-color: #333333;
521 + }
522 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
523 + color: #2ea7b2;
524 + background-color: rgba(26, 26, 26, 0);
525 + border-color: #333333;
526 + }
527 +
528 + .btn-call {
529 + color: #2ea7b2;
530 + background-color: transparent;
531 + border-color: #2ea7b2;
532 + }
533 + .btn-call:focus, .btn-call:focus:active {
534 + color: #2ea7b2;
535 + background-color: transparent;
536 + border-color: #2ea7b2;
537 + }
538 + .btn-call:hover {
539 + color: #2ea7b2;
540 + background-color: rgba(26, 26, 26, 0);
541 + border-color: #333333;
542 + }
543 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
544 + color: #2ea7b2;
545 + background-color: rgba(26, 26, 26, 0);
546 + border-color: #333333;
547 + }
548 + .icon-delete .btn-loader:after{
549 + border-color: #014582 transparent #014582 transparent
550 + }
551 +
552 + .header-v1 {
553 + background-color: #004274;
554 + border-bottom: 1px solid #004274;
555 + }
556 +
557 + .header-v1 a.nav-link {
558 + color: #ffffff;
559 + }
560 +
561 + .header-v1 a.nav-link:hover,
562 + .header-v1 a.nav-link:active {
563 + color: #00aeff;
564 + background-color: rgba(255,255,255,0.2);
565 + }
566 + .header-desktop .main-nav .nav-link {
567 + letter-spacing: 0.0px;
568 + }
569 +
570 + .header-v2 .header-top,
571 + .header-v5 .header-top,
572 + .header-v2 .header-contact-wrap {
573 + background-color: #ffffff;
574 + }
575 +
576 + .header-v2 .header-bottom,
577 + .header-v5 .header-bottom {
578 + background-color: #004274;
579 + }
580 +
581 + .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 {
582 + color: #004274;
583 + }
584 +
585 + .header-v2 .header-contact-left {
586 + color: #004274;
587 + }
588 +
589 + .header-v2 .header-bottom,
590 + .header-v2 .navbar-nav > li,
591 + .header-v2 .navbar-nav > li:first-of-type,
592 + .header-v5 .header-bottom,
593 + .header-v5 .navbar-nav > li,
594 + .header-v5 .navbar-nav > li:first-of-type {
595 + border-color: rgba(255,255,255,0.2);
596 + }
597 +
598 + .header-v2 a.nav-link,
599 + .header-v5 a.nav-link {
600 + color: #ffffff;
601 + }
602 +
603 + .header-v2 a.nav-link:hover,
604 + .header-v2 a.nav-link:active,
605 + .header-v5 a.nav-link:hover,
606 + .header-v5 a.nav-link:active {
607 + color: #00aeff;
608 + background-color: rgba(255,255,255,0.2);
609 + }
610 +
611 + .header-v2 .header-contact-right a:hover,
612 + .header-v2 .header-contact-right a:active,
613 + .header-v3 .header-contact-right a:hover,
614 + .header-v3 .header-contact-right a:active {
615 + background-color: transparent;
616 + }
617 +
618 + .header-v2 .header-social-icons a,
619 + .header-v5 .header-social-icons a {
620 + color: #004274;
621 + }
622 +
623 + .header-v3 .header-top {
624 + background-color: #ffffff;
625 + }
626 +
627 + .header-v3 .header-bottom {
628 + background-color: #004272;
629 + }
630 +
631 + .header-v3 .header-contact,
632 + .header-v3-mobile {
633 + background-color: #00aeef;
634 + color: #ffffff;
635 + }
636 +
637 + .header-v3 .header-bottom,
638 + .header-v3 .login-register,
639 + .header-v3 .navbar-nav > li,
640 + .header-v3 .navbar-nav > li:first-of-type {
641 + border-color: ;
642 + }
643 +
644 + .header-v3 a.nav-link,
645 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
646 + color: #003a6b;
647 + }
648 +
649 + .header-v3 a.nav-link:hover,
650 + .header-v3 a.nav-link:active {
651 + color: #00aeff;
652 + background-color: rgba(26,94,158,1);
653 + }
654 +
655 + .header-v3 .header-social-icons a {
656 + color: #FFFFFF;
657 + }
658 +
659 + .header-v4 {
660 + background-color: #000000;
661 + }
662 +
663 + .header-v4 a.nav-link {
664 + color: #ffffff;
665 + }
666 +
667 + .header-v4 a.nav-link:hover,
668 + .header-v4 a.nav-link:active {
669 + color: #00aeff;
670 + background-color: rgba(0, 174, 255, 0.1);
671 + }
672 +
673 + .header-v6 .header-top {
674 + background-color: #00AEEF;
675 + }
676 +
677 + .header-v6 a.nav-link {
678 + color: #FFFFFF;
679 + }
680 +
681 + .header-v6 a.nav-link:hover,
682 + .header-v6 a.nav-link:active {
683 + color: #00aeff;
684 + background-color: rgba(255,255,255,0.2);
685 + }
686 +
687 + .header-v6 .header-social-icons a {
688 + color: #FFFFFF;
689 + }
690 +
691 + .header-mobile {
692 + background-color: #ffffff;
693 + }
694 + .header-mobile .toggle-button-left,
695 + .header-mobile .toggle-button-right {
696 + color: #0b0049;
697 + }
698 +
699 + .nav-mobile .logged-in-nav a,
700 + .nav-mobile .main-nav,
701 + .nav-mobile .navi-login-register {
702 + background-color: #ffffff;
703 + }
704 +
705 + .nav-mobile .logged-in-nav a,
706 + .nav-mobile .main-nav .nav-item .nav-item a,
707 + .nav-mobile .main-nav .nav-item a,
708 + .navi-login-register .main-nav .nav-item a {
709 + color: #000000;
710 + border-bottom: 1px solid #000000;
711 + background-color: #ffffff;
712 + }
713 +
714 + .nav-mobile .btn-create-listing,
715 + .navi-login-register .btn-create-listing {
716 + color: #fff;
717 + border: 1px solid #014582;
718 + background-color: #014582;
719 + }
720 +
721 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
722 + .navi-login-register .btn-create-listing:hover,
723 + .navi-login-register .btn-create-listing:active {
724 + color: #fff;
725 + border: 1px solid #014582;
726 + background-color: rgba(0, 174, 255, 0.65);
727 + }
728 +
729 + .header-transparent-wrap .header-v4 {
730 + background-color: transparent;
731 + border-bottom: 1px none rgba(255,255,255,0.3);
732 + }
733 +
734 + .header-transparent-wrap .header-v4 a {
735 + color: #ffffff;
736 + }
737 +
738 + .header-transparent-wrap .header-v4 a:hover,
739 + .header-transparent-wrap .header-v4 a:active {
740 + color: #4aa7e1;
741 + background-color: rgba(255, 255, 255, 0.1);
742 + }
743 +
744 + .main-nav .navbar-nav .nav-item .dropdown-menu,
745 + .login-register .login-register-nav li .dropdown-menu {
746 + background-color: rgba(255,255,255,0.95);
747 + }
748 +
749 + .login-register .login-register-nav li .dropdown-menu:before {
750 + border-left-color: rgba(255,255,255,0.95);
751 + border-top-color: rgba(255,255,255,0.95);
752 + }
753 +
754 + .main-nav .navbar-nav .nav-item .nav-item a,
755 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
756 + color: #888888;
757 + border-bottom: 1px solid #e6e6e6;
758 + }
759 +
760 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
761 + .main-nav .navbar-nav .nav-item .nav-item a:active,
762 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
763 + color: #4aa7e1;
764 + }
765 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
766 + .main-nav .navbar-nav .nav-item .nav-item a:active,
767 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
768 + background-color: rgba(0, 174, 255, 0.1);
769 + }
770 +
771 + .header-main-wrap .btn-create-listing {
772 + color: #4aa7e1;
773 + border: 1px solid #4aa7e1;
774 + background-color: #ffffff;
775 + }
776 +
777 + .header-main-wrap .btn-create-listing:hover,
778 + .header-main-wrap .btn-create-listing:active {
779 + color: rgba(255,255,255,1);
780 + border: 1px solid #4aa7e1;
781 + background-color: rgba(74,167,225,1);
782 + }
783 +
784 + .header-transparent-wrap .header-v4 .btn-create-listing {
785 + color: #ffffff;
786 + border: 1px solid #ffffff;
787 + background-color: rgba(255,255,255,0.2);
788 + }
789 +
790 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
791 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
792 + color: rgba(255,255,255,1);
793 + border: 1px solid #4aa7e1;
794 + background-color: rgba(74,167,225,1);
795 + }
796 +
797 + .header-transparent-wrap .logged-in-nav a,
798 + .logged-in-nav a {
799 + color: #15268c;
800 + border-color: #e6e6e6;
801 + background-color: #FFFFFF;
802 + }
803 +
804 + .header-transparent-wrap .logged-in-nav a:hover,
805 + .header-transparent-wrap .logged-in-nav a:active,
806 + .logged-in-nav a:hover,
807 + .logged-in-nav a:active {
808 + color: #17298c;
809 + background-color: rgba(204,204,204,0.15);
810 + border-color: #e6e6e6;
811 + }
812 +
813 + .form-control::-webkit-input-placeholder,
814 + .search-banner-wrap ::-webkit-input-placeholder,
815 + .advanced-search ::-webkit-input-placeholder,
816 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
817 + .overlay-search-advanced-module ::-webkit-input-placeholder {
818 + color: #a1a7a8;
819 + }
820 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
821 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
822 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
823 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
824 + color: #a1a7a8;
825 + }
826 + .form-control::placeholder,
827 + .search-banner-wrap ::-webkit-input-placeholder,
828 + .advanced-search ::-webkit-input-placeholder,
829 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
830 + .overlay-search-advanced-module ::-webkit-input-placeholder {
831 + color: #a1a7a8;
832 + }
833 +
834 + .search-banner-wrap ::-moz-placeholder,
835 + .advanced-search ::-moz-placeholder,
836 + .advanced-search-banner-wrap ::-moz-placeholder,
837 + .overlay-search-advanced-module ::-moz-placeholder {
838 + color: #a1a7a8;
839 + }
840 +
841 + .search-banner-wrap :-ms-input-placeholder,
842 + .advanced-search :-ms-input-placeholder,
843 + .advanced-search-banner-wrap ::-ms-input-placeholder,
844 + .overlay-search-advanced-module ::-ms-input-placeholder {
845 + color: #a1a7a8;
846 + }
847 +
848 + .search-banner-wrap :-moz-placeholder,
849 + .advanced-search :-moz-placeholder,
850 + .advanced-search-banner-wrap :-moz-placeholder,
851 + .overlay-search-advanced-module :-moz-placeholder {
852 + color: #a1a7a8;
853 + }
854 +
855 + .advanced-search .form-control,
856 + .advanced-search .bootstrap-select > .btn,
857 + .location-trigger,
858 + .vertical-search-wrap .form-control,
859 + .vertical-search-wrap .bootstrap-select > .btn,
860 + .step-search-wrap .form-control,
861 + .step-search-wrap .bootstrap-select > .btn,
862 + .advanced-search-banner-wrap .form-control,
863 + .advanced-search-banner-wrap .bootstrap-select > .btn,
864 + .search-banner-wrap .form-control,
865 + .search-banner-wrap .bootstrap-select > .btn,
866 + .overlay-search-advanced-module .form-control,
867 + .overlay-search-advanced-module .bootstrap-select > .btn,
868 + .advanced-search-v2 .advanced-search-btn,
869 + .advanced-search-v2 .advanced-search-btn:hover {
870 + border-color: #cccccc;
871 + }
872 +
873 + .advanced-search-nav,
874 + .search-expandable,
875 + .overlay-search-advanced-module {
876 + background-color: #FFFFFF;
877 + }
878 + .btn-search {
879 + color: #ffffff;
880 + background-color: #4aa7e1;
881 + border-color: #4aa7e1;
882 + }
883 + .btn-search:hover, .btn-search:active {
884 + color: #ffffff;
885 + background-color: #24348c;
886 + border-color: #24348c;
887 + }
888 + .advanced-search-btn {
889 + color: #666666;
890 + background-color: #ffffff;
891 + border-color: #dce0e0;
892 + }
893 + .advanced-search-btn:hover, .advanced-search-btn:active {
894 + color: #000000;
895 + background-color: #ffffff;
896 + border-color: #dce0e0;
897 + }
898 + .advanced-search-btn:focus {
899 + color: #666666;
900 + background-color: #ffffff;
901 + border-color: #dce0e0;
902 + }
903 + .search-expandable-label {
904 + color: #ffffff;
905 + background-color: #4aa7e1;
906 + }
907 + .advanced-search-nav {
908 + padding-top: 10px;
909 + padding-bottom: 10px;
910 + }
911 + .features-list-wrap .control--checkbox,
912 + .features-list-wrap .control--radio,
913 + .range-text,
914 + .features-list-wrap .control--checkbox,
915 + .features-list-wrap .btn-features-list,
916 + .overlay-search-advanced-module .search-title,
917 + .overlay-search-advanced-module .overlay-search-module-close {
918 + color: #222222;
919 + }
920 + .advanced-search-half-map {
921 + background-color: #FFFFFF;
922 + }
923 + .advanced-search-half-map .range-text,
924 + .advanced-search-half-map .features-list-wrap .control--checkbox,
925 + .advanced-search-half-map .features-list-wrap .btn-features-list {
926 + color: #222222;
927 + }
928 +
929 + .save-search-btn {
930 + border-color: #4aa7e1 ;
931 + background-color: #4aa7e1 ;
932 + color: #ffffff ;
933 + }
934 + .save-search-btn:hover,
935 + .save-search-btn:active {
936 + border-color: #4aa7e1;
937 + background-color: #4aa7e1 ;
938 + color: #ffffff ;
939 + }
940 + .label-featured {
941 + background-color: transparent;
942 + color: #ffffff;
943 + }
944 +
945 + .dashboard-side-wrap {
946 + background-color: #24348c;
947 + }
948 +
949 + .side-menu a {
950 + color: #ffffff;
951 + }
952 +
953 + .side-menu a.active,
954 + .side-menu .side-menu-parent-selected > a,
955 + .side-menu-dropdown a,
956 + .side-menu a:hover {
957 + color: #4aa7e1;
958 + }
959 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
960 + color: #4aa7e1
961 + }
962 +
963 + .detail-wrap {
964 + background-color: rgba(217,217,217,0.1);
965 + border-color: #d6d6d6;
966 + }
967 + .top-bar-wrap,
968 + .top-bar-wrap .dropdown-menu,
969 + .switcher-wrap .dropdown-menu {
970 + background-color: #262626;
971 + }
972 + .top-bar-wrap a,
973 + .top-bar-contact,
974 + .top-bar-slogan,
975 + .top-bar-wrap .btn,
976 + .top-bar-wrap .dropdown-menu,
977 + .switcher-wrap .dropdown-menu,
978 + .top-bar-wrap .navbar-toggler {
979 + color: #ffffff;
980 + }
981 + .top-bar-wrap a:hover,
982 + .top-bar-wrap a:active,
983 + .top-bar-wrap .btn:hover,
984 + .top-bar-wrap .btn:active,
985 + .top-bar-wrap .dropdown-menu li:hover,
986 + .top-bar-wrap .dropdown-menu li:active,
987 + .switcher-wrap .dropdown-menu li:hover,
988 + .switcher-wrap .dropdown-menu li:active {
989 + color: rgba(74,167,225,0.59);
990 + }
991 + .class-energy-indicator:nth-child(1) {
992 + background-color: #33a357;
993 + }
994 + .class-energy-indicator:nth-child(2) {
995 + background-color: #79b752;
996 + }
997 + .class-energy-indicator:nth-child(3) {
998 + background-color: #c3d545;
999 + }
1000 + .class-energy-indicator:nth-child(4) {
1001 + background-color: #fff12c;
1002 + }
1003 + .class-energy-indicator:nth-child(5) {
1004 + background-color: #edb731;
1005 + }
1006 + .class-energy-indicator:nth-child(6) {
1007 + background-color: #d66f2c;
1008 + }
1009 + .class-energy-indicator:nth-child(7) {
1010 + background-color: #cc232a;
1011 + }
1012 + .class-energy-indicator:nth-child(8) {
1013 + background-color: #cc232a;
1014 + }
1015 + .class-energy-indicator:nth-child(9) {
1016 + background-color: #cc232a;
1017 + }
1018 + .class-energy-indicator:nth-child(10) {
1019 + background-color: #cc232a;
1020 + }
1021 +
1022 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#24348c }
1023 + .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 }
1024 +
1025 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#4aa7e1 }
1026 +
1027 + .footer-top-wrap {
1028 + background-color: #181818;
1029 + }
1030 +
1031 + .footer-bottom-wrap {
1032 + background-color: #000000;
1033 + }
1034 +
1035 + .footer-top-wrap,
1036 + .footer-top-wrap a,
1037 + .footer-bottom-wrap,
1038 + .footer-bottom-wrap a,
1039 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
1040 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
1041 + .footer-top-wrap .blog-post-content-widget h4 a,
1042 + .footer-top-wrap .blog-post-content-widget,
1043 + .footer-top-wrap .form-tools .control,
1044 + .footer-top-wrap .slick-dots li.slick-active button:before,
1045 + .footer-top-wrap .slick-dots li button::before,
1046 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
1047 + color: #ffffff;
1048 + }
1049 +
1050 + .footer-top-wrap a:hover,
1051 + .footer-bottom-wrap a:hover,
1052 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
1053 + color: rgba(36,52,140,1);
1054 + }
1055 + .houzez-osm-cluster {
1056 + background-image: url(https://immeublesalexcellence.com/wp-content/themes/houzez/img/map/cluster-icon.png);
1057 + text-align: center;
1058 + color: #fff;
1059 + width: 48px;
1060 + height: 48px;
1061 + line-height: 48px;
1062 + }
1063 + section.top-banner-wrap.slider-revolution-wrap {
1064 + height: auto;
1065 +}
1066 +.label-status {
1067 + font-size: 14px;
1068 + text-transform: uppercase; /* Optionnel : Met les étiquettes en majuscules */
1069 +}
1070 +.hz-label {
1071 + font-size: 14px; /* Ajustez la taille selon vos besoins */
1072 + font-weight: bold; /* Rend le texte en gras */
1073 + color: #ffffff; /* Couleur du texte */
1074 + background-color: #166584; /* Couleur de fond */
1075 + padding: 5px 10px; /* Espacement interne */
1076 + border-radius: 3px; /* Coins arrondis */
1077 +}
1078 +</style>
1079 +<link rel='stylesheet' id='leaflet-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/js//vendors/leaflet/leaflet.css?ver=1.9.3' type='text/css' media='all' />
1080 +<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /></noscript><link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap&#038;ver=6.7.5' type='text/css' media='all' />
1081 +<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.27.1" id="font-awesome-4-shim-js"></script>
1082 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
1083 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
1084 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/js/houzez-studio-public.js?ver=1.2.1" id="houzez-studio-js"></script>
1085 +<link rel="https://api.w.org/" href="https://immeublesalexcellence.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://immeublesalexcellence.com/wp-json/wp/v2/properties/3023" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://immeublesalexcellence.com/xmlrpc.php?rsd" />
1086 +<meta name="generator" content="WordPress 6.7.5" />
1087 +<link rel='shortlink' href='https://immeublesalexcellence.com/?p=3023' />
1088 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F" />
1089 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&#038;format=xml" />
1090 +<meta name="generator" content="Redux 4.5.6" /> <style>.cmplz-hidden {
1091 + display: none !important;
1092 + }</style><meta name="generator" content="Elementor 3.27.1; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
1093 + <style>
1094 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1095 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1096 + background-image: none !important;
1097 + }
1098 + @media screen and (max-height: 1024px) {
1099 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1100 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1101 + background-image: none !important;
1102 + }
1103 + }
1104 + @media screen and (max-height: 640px) {
1105 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1106 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1107 + background-image: none !important;
1108 + }
1109 + }
1110 + </style>
1111 + <meta name="generator" content="Powered by Slider Revolution 6.7.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
1112 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-32x32.png" sizes="32x32" />
1113 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-192x192.png" sizes="192x192" />
1114 +<link rel="apple-touch-icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-180x180.png" />
1115 +<meta name="msapplication-TileImage" content="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-270x270.png" />
1116 +<script>function setREVStartSize(e){
1117 + //window.requestAnimationFrame(function() {
1118 + window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
1119 + window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
1120 + try {
1121 + var pw = document.getElementById(e.c).parentNode.offsetWidth,
1122 + newh;
1123 + pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw;
1124 + e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
1125 + e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
1126 + e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
1127 + e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
1128 + e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
1129 + e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
1130 + e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
1131 + if(e.layout==="fullscreen" || e.l==="fullscreen")
1132 + newh = Math.max(e.mh,window.RSIH);
1133 + else{
1134 + e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
1135 + for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
1136 + e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
1137 + e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
1138 + for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
1139 +
1140 + var nl = new Array(e.rl.length),
1141 + ix = 0,
1142 + sl;
1143 + e.tabw = e.tabhide>=pw ? 0 : e.tabw;
1144 + e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
1145 + e.tabh = e.tabhide>=pw ? 0 : e.tabh;
1146 + e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
1147 + for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
1148 + sl = nl[0];
1149 + for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
1150 + var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
1151 + newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
1152 + }
1153 + var el = document.getElementById(e.c);
1154 + if (el!==null && el) el.style.height = newh+"px";
1155 + el = document.getElementById(e.c+"_wrapper");
1156 + if (el!==null && el) {
1157 + el.style.height = newh+"px";
1158 + el.style.display = "block";
1159 + }
1160 + } catch(e){
1161 + console.log("Failure at Presize of Slider:" + e)
1162 + }
1163 + //});
1164 + };</script>
1165 +</head>
1166 +
1167 +<body data-cmplz=2 class="property-template-default single single-property postid-3023 houzez-theme houzez-footer-position transparent- houzez-header- elementor-default elementor-kit-6">
1168 +
1169 +
1170 + <div class="nav-mobile nav-mobile-js">
1171 + <div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile">
1172 + <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://immeublesalexcellence.com/">Accueil</a> </li>
1173 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1174 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1175 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1176 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1177 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1178 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1179 +</ul> </div><!-- main-nav -->
1180 + <nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user">
1181 +
1182 +
1183 +
1184 + </nav><!-- .navi -->
1185 +
1186 +
1187 +
1188 +</div><!-- nav-mobile -->
1189 + <main id="main-wrap" class="main-wrap main-wrap-js">
1190 +
1191 + <header class="header-main-wrap ">
1192 + <div class="top-bar-wrap ">
1193 + <div class="container">
1194 + <div class="d-flex justify-content-between">
1195 + <div class="top-bar-left-wrap">
1196 + <div class="header-social-icons">
1197 + <ul class="list-inline">
1198 +
1199 + <li class="list-inline-item">
1200 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1201 + <i class="houzez-icon icon-social-media-facebook"></i>
1202 + </a>
1203 + </li>
1204 +
1205 +
1206 +
1207 +
1208 +
1209 +
1210 +
1211 +
1212 + <li class="list-inline-item">
1213 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1214 + <i class="houzez-icon icon-social-instagram"></i>
1215 + </a>
1216 + </li>
1217 +
1218 +
1219 +
1220 +
1221 + </ul>
1222 +</div><!-- .header-social-icons -->
1223 + </div><!-- top-bar-left-wrap -->
1224 +
1225 + <div class="top-bar-right-wrap">
1226 + <div class="top-bar-contact">
1227 +
1228 + </div><!-- top-bar-contact --> </div><!-- top-bar-right-wrap -->
1229 + </div><!-- d-flex -->
1230 + </div><!-- container -->
1231 +</div><!-- top-bar-wrap --><div class="header-desktop header-v2">
1232 + <div class="header-top">
1233 + <div class="container">
1234 + <div class="header-inner-wrap">
1235 + <div class="navbar d-flex align-items-center">
1236 +
1237 +
1238 + <div class="logo logo-desktop">
1239 + <a href="https://immeublesalexcellence.com/">
1240 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="66,5px" width="218px" alt="logo">
1241 + </a>
1242 + </div>
1243 +
1244 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1245 +
1246 +
1247 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1248 + <div class="header-contact-left">
1249 + <i class="houzez-icon icon-phone ml-1"></i>
1250 + </div><!-- header-contact-left -->
1251 + <div class="header-contact-right">
1252 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1253 + <div><a href="mailto:"></a></div>
1254 + </div><!-- .header-contact-right -->
1255 + </div><!-- .header-contact -->
1256 +
1257 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1258 + <div class="header-contact-left">
1259 + <i class="houzez-icon icon-pin ml-1"></i>
1260 + </div><!-- header-contact-left -->
1261 + <div class="header-contact-right">
1262 + <div>1025, rue des Seigneurs, #301</div>
1263 + <div>Sherbrooke (Québec) J1H 5V3</div>
1264 + </div><!-- .header-contact-right -->
1265 + </div><!-- .header-contact -->
1266 +
1267 +
1268 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1269 + <div class="header-contact-left">
1270 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1271 + </div><!-- header-contact-left -->
1272 + <div class="header-contact-right">
1273 + <div>8 h 30 à 16 h 30</div>
1274 + <div>Lundi au jeudi</div>
1275 + </div><!-- .header-contact-right -->
1276 + </div><!-- .header-contact -->
1277 +
1278 +
1279 + <div class="header-contact header-contact-4 d-flex align-items-center">
1280 + <div class="header-social-icons">
1281 + <ul class="list-inline">
1282 +
1283 + <li class="list-inline-item">
1284 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1285 + <i class="houzez-icon icon-social-media-facebook"></i>
1286 + </a>
1287 + </li>
1288 +
1289 +
1290 +
1291 +
1292 +
1293 +
1294 +
1295 +
1296 + <li class="list-inline-item">
1297 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1298 + <i class="houzez-icon icon-social-instagram"></i>
1299 + </a>
1300 + </li>
1301 +
1302 +
1303 +
1304 +
1305 + </ul>
1306 +</div><!-- .header-social-icons -->
1307 + </div><!-- .header-contact -->
1308 +</div><!-- .header-contact-wrap -->
1309 +
1310 +
1311 + </div><!-- navbar -->
1312 + </div>
1313 + </div>
1314 + </div><!-- .header-top -->
1315 + <div id="header-section" class="header-bottom" data-sticky="1">
1316 + <div class="container">
1317 + <div class="header-inner-wrap">
1318 + <div class="navbar d-flex align-items-center">
1319 +
1320 + <nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1">
1321 + <ul id="main-nav" class="navbar-nav "><li id="menu-item-1535" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home nav-item menu-item-1535 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/">Accueil</a> </li>
1322 +<li id="menu-item-1809" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1809 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1323 +<li id="menu-item-1771" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1771 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1324 +<li id="menu-item-2352" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2352 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1325 +<li id="menu-item-2432" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2432 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1326 +<li id="menu-item-2426" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2426 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1327 +<li id="menu-item-2466" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2466 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1328 +</ul> </nav><!-- main-nav -->
1329 +
1330 + <div class="login-register on-hover-menu">
1331 + <ul class="login-register-nav dropdown d-flex align-items-center">
1332 +
1333 +
1334 +
1335 +
1336 +
1337 +
1338 + </ul>
1339 +</div>
1340 + </div><!-- navbar -->
1341 + </div>
1342 + </div>
1343 + </div><!-- .header-bottom -->
1344 +</div><!-- .header-v2 -->
1345 +
1346 +<div class="header-v2 header-v2-mobile">
1347 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1348 +
1349 +
1350 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1351 + <div class="header-contact-left">
1352 + <i class="houzez-icon icon-phone ml-1"></i>
1353 + </div><!-- header-contact-left -->
1354 + <div class="header-contact-right">
1355 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1356 + <div><a href="mailto:"></a></div>
1357 + </div><!-- .header-contact-right -->
1358 + </div><!-- .header-contact -->
1359 +
1360 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1361 + <div class="header-contact-left">
1362 + <i class="houzez-icon icon-pin ml-1"></i>
1363 + </div><!-- header-contact-left -->
1364 + <div class="header-contact-right">
1365 + <div>1025, rue des Seigneurs, #301</div>
1366 + <div>Sherbrooke (Québec) J1H 5V3</div>
1367 + </div><!-- .header-contact-right -->
1368 + </div><!-- .header-contact -->
1369 +
1370 +
1371 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1372 + <div class="header-contact-left">
1373 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1374 + </div><!-- header-contact-left -->
1375 + <div class="header-contact-right">
1376 + <div>8 h 30 à 16 h 30</div>
1377 + <div>Lundi au jeudi</div>
1378 + </div><!-- .header-contact-right -->
1379 + </div><!-- .header-contact -->
1380 +
1381 +
1382 + <div class="header-contact header-contact-4 d-flex align-items-center">
1383 + <div class="header-social-icons">
1384 + <ul class="list-inline">
1385 +
1386 + <li class="list-inline-item">
1387 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1388 + <i class="houzez-icon icon-social-media-facebook"></i>
1389 + </a>
1390 + </li>
1391 +
1392 +
1393 +
1394 +
1395 +
1396 +
1397 +
1398 +
1399 + <li class="list-inline-item">
1400 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1401 + <i class="houzez-icon icon-social-instagram"></i>
1402 + </a>
1403 + </li>
1404 +
1405 +
1406 +
1407 +
1408 + </ul>
1409 +</div><!-- .header-social-icons -->
1410 + </div><!-- .header-contact -->
1411 +</div><!-- .header-contact-wrap -->
1412 +
1413 +
1414 +
1415 +</div><!-- header-v2-mobile --><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky="">
1416 + <div class="header-mobile-left">
1417 + <button class="btn toggle-button-left">
1418 + <i class="houzez-icon icon-navigation-menu"></i>
1419 + </button><!-- toggle-button-left -->
1420 + </div><!-- .header-mobile-left -->
1421 + <div class="header-mobile-center flex-grow-1">
1422 + <div class="logo logo-mobile">
1423 + <a href="https://immeublesalexcellence.com/">
1424 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="39" width="127" alt="Mobile logo">
1425 + </a>
1426 +</div> </div>
1427 +
1428 + <div class="header-mobile-right">
1429 + </div><!-- .header-mobile-right -->
1430 +
1431 +</div><!-- header-mobile --></header><!-- .header-main-wrap -->
1432 +
1433 + <section class="content-wrap property-wrap property-detail-v6 ">
1434 + <div class="property-navigation-wrap">
1435 + <div class="container-fluid">
1436 + <ul class="property-navigation list-unstyled d-flex justify-content-between">
1437 + <li class="property-navigation-item">
1438 + <a class="back-top" href="#main-wrap">
1439 + <i class="houzez-icon icon-arrow-button-circle-up"></i>
1440 + </a>
1441 + </li>
1442 + <li class="property-navigation-item">
1443 + <a class="target" href="#property-description-wrap">Description du loyer</a>
1444 + </li>
1445 + </ul>
1446 + </div><!-- container -->
1447 +</div><!-- property-navigation-wrap -->
1448 +<div class="page-title-wrap">
1449 + <div class="container">
1450 + <div class="d-flex align-items-center">
1451 +
1452 +<div class="breadcrumb-wrap">
1453 + <nav>
1454 + <ol class="breadcrumb"><li class="breadcrumb-item breadcrumb-item-home"><i class="houzez-icon icon-house"></i><a href="https://immeublesalexcellence.com/">Accueil</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/"> 1er janvier 2027</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/a-louer/"> À LOUER</a></li><li class="breadcrumb-item active">Loyer 4 ½ à louer Secteur Université &#038; Mont-Bellevue</li></ol> </nav>
1455 +</div><!-- breadcrumb-wrap --> <ul class="item-tools">
1456 +
1457 + <li class="item-tool houzez-favorite">
1458 + <span class="add-favorite-js item-tool-favorite" data-listid="3023">
1459 + <i class="houzez-icon icon-love-it "></i>
1460 + </span><!-- item-tool-favorite -->
1461 + </li><!-- item-tool -->
1462 +
1463 + <li class="item-tool houzez-share">
1464 + <span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1465 + <i class="houzez-icon icon-share"></i>
1466 + </span><!-- item-tool-favorite -->
1467 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1468 +
1469 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F">
1470 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1471 +
1472 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F01%2FAppartement-etudiant-sherbrooke-1024x768.jpg&amp;description=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1473 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1474 +
1475 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&amp;t=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1476 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1477 +</a>
1478 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1479 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1480 +</a>
1481 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&title=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1482 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1483 +</a>
1484 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=Loyer 4 ½ à louer Secteur Université &#038; Mont-Bellevue&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F">
1485 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1486 +</a> </div>
1487 + </li><!-- item-tool -->
1488 +
1489 + <li class="item-tool houzez-print " data-propid="3023">
1490 + <span class="item-tool-compare">
1491 + <i class="houzez-icon icon-print-text"></i>
1492 + </span><!-- item-tool-compare -->
1493 + </li><!-- item-tool -->
1494 + </ul><!-- item-tools -->
1495 + </div><!-- d-flex -->
1496 + <div class="d-flex align-items-center property-title-price-wrap">
1497 + <div class="page-title">
1498 + <h1>Loyer 4 ½ à louer Secteur Université &#038; Mont-Bellevue</h1>
1499 +</div><!-- page-title --> <ul class="item-price-wrap hide-on-list">
1500 + <li class="item-price">1,150$/par mois</li></ul> </div><!-- d-flex -->
1501 + <div class="property-labels-wrap">
1502 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1503 + 1er janvier 2027
1504 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1505 + À LOUER
1506 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
1507 +
1508 + </a> </div>
1509 + <address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>Sherbrooke</address> </div><!-- container -->
1510 +</div><!-- page-title-wrap --><div class="property-top-wrap">
1511 + <div class="property-banner">
1512 + <div class="visible-on-mobile">
1513 + <div class="tab-content" id="pills-tabContent">
1514 +
1515 + <div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke.jpg);">
1516 + <div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 10</div>
1517 + <a class="property-banner-trigger" data-toggle="modal" data-target="#property-lightbox" href="#"></a>
1518 + </div>
1519 +
1520 +
1521 +
1522 +
1523 +
1524 +
1525 +
1526 + </div><!-- tab-content -->
1527 + </div><!-- visible-on-mobile -->
1528 +
1529 + <div class="container hidden-on-mobile">
1530 + <div class="row">
1531 + <div class="col-md-8">
1532 + <a href="#" data-slider-no="1" data-image="0" class="houzez-trigger-popup-slider-js img-wrap-1" data-toggle="modal" data-target="#property-lightbox">
1533 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke-1067x785.jpg" alt="loyer étudiant Sherbrooke Mont-Bellevue Université">
1534 + </a>
1535 + </div><!-- col-md-8 -->
1536 +
1537 + <div class="col-md-4">
1538 + <a href="#" data-slider-no="2" data-image="1" data-toggle="modal" data-target="#property-lightbox" class="houzez-trigger-popup-slider-js swipebox img-wrap-2">
1539 +
1540 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/cuisine-loyer-etudiant-sherbrooke-1067x785.jpg" alt="Cuisine Loyer 4 ½ à louer Université Sherbrooke">
1541 + </a>
1542 +
1543 + <a href="#" data-slider-no="3" data-image="2" data-toggle="modal" data-target="#property-lightbox" class="houzez-trigger-popup-slider-js swipebox img-wrap-3">
1544 + <div class="img-wrap-3-text"><i class="houzez-icon icon-picture-sun mr-1"></i> 7 photos, voir plus </div>
1545 +
1546 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/loyer-sherbrooke-location-1067x785.jpg" alt="Loyer 4 ½ à louer Mont-Bellevue U de S">
1547 + </a>
1548 + </div><!-- col-md-4 -->
1549 + <a href="#" class="img-wrap-1 gallery-hidden">
1550 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-alouer-1067x785.jpg" alt="Appartement a louer étudiant U de S">
1551 + </a>
1552 + <a href="#" class="img-wrap-1 gallery-hidden">
1553 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/salle-bain-loyer-universite-1067x785.jpg" alt="Loyer 4 ½ à louer salle de bain">
1554 + </a>
1555 + <a href="#" class="img-wrap-1 gallery-hidden">
1556 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/loyer-chambre-bain-udes-1067x785.jpg" alt="Chambre de bain Loyer 4 ½ à louer">
1557 + </a>
1558 + <a href="#" class="img-wrap-1 gallery-hidden">
1559 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/chambre-appartement-louer-1067x785.jpg" alt="chambre appartement 4 ½ à louer Sherbrooke">
1560 + </a>
1561 + <a href="#" class="img-wrap-1 gallery-hidden">
1562 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-renove-1067x785.jpg" alt="appartement étudiant disponible U de S">
1563 + </a>
1564 + <a href="#" class="img-wrap-1 gallery-hidden">
1565 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer-1-1067x785.jpg" alt="appartement a louer 4 ½ Mont-Bellevue">
1566 + </a>
1567 + <a href="#" class="img-wrap-1 gallery-hidden">
1568 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Piscine-Projet.jpg" alt="Loyer 4 ½ à louer Université Sherbrooke piscine">
1569 + </a>
1570 +
1571 + <div class="col-md-12">
1572 + <div class="block-wrap">
1573 + <div class="d-flex property-overview-data">
1574 + <ul class="list-unstyled flex-fill">
1575 + <li class="property-overview-item"><strong>Loyer 4½</strong></li>
1576 + <li class="hz-meta-label property-overview-type">Nombre pièce</li>
1577 +
1578 + </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 à coucher</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">Chambre de bain</li></ul> </div><!-- d-flex -->
1579 + </div><!-- block-wrap -->
1580 + </div><!-- col-md-12 -->
1581 + </div><!-- row -->
1582 + </div><!-- hidden-on-mobile -->
1583 + </div><!-- property-banner -->
1584 +
1585 +
1586 +</div><!-- property-top-wrap -->
1587 +
1588 + <div class="container">
1589 + <div class="row">
1590 + <div class="col-lg-12 col-md-12 bt-full-width-content-wrap">
1591 +
1592 + <div class="property-view">
1593 +
1594 + <div class="visible-on-mobile">
1595 + <div class="mobile-top-wrap">
1596 + <div class="mobile-property-tools houzez-media-tabs-3 clearfix">
1597 + <ul class="nav nav-pills" id="pills-tab" role="tablist">
1598 +
1599 + <li class="nav-item">
1600 + <a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1601 + <i class="houzez-icon icon-picture-sun"></i>
1602 + </a>
1603 + </li>
1604 + </ul><!-- nav --> <ul class="item-tools">
1605 +
1606 + <li class="item-tool houzez-favorite">
1607 + <span class="add-favorite-js item-tool-favorite" data-listid="3023">
1608 + <i class="houzez-icon icon-love-it "></i>
1609 + </span><!-- item-tool-favorite -->
1610 + </li><!-- item-tool -->
1611 +
1612 + <li class="item-tool houzez-share">
1613 + <span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1614 + <i class="houzez-icon icon-share"></i>
1615 + </span><!-- item-tool-favorite -->
1616 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1617 +
1618 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F">
1619 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1620 +
1621 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F01%2FAppartement-etudiant-sherbrooke-1024x768.jpg&amp;description=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1622 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1623 +
1624 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&amp;t=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1625 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1626 +</a>
1627 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1628 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1629 +</a>
1630 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&title=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1631 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1632 +</a>
1633 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=Loyer 4 ½ à louer Secteur Université &#038; Mont-Bellevue&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F">
1634 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1635 +</a> </div>
1636 + </li><!-- item-tool -->
1637 +
1638 + <li class="item-tool houzez-print " data-propid="3023">
1639 + <span class="item-tool-compare">
1640 + <i class="houzez-icon icon-print-text"></i>
1641 + </span><!-- item-tool-compare -->
1642 + </li><!-- item-tool -->
1643 + </ul><!-- item-tools -->
1644 + </div><!-- mobile-property-tools -->
1645 + <div class="mobile-property-title clearfix">
1646 + <span class="labels-wrap labels-right">
1647 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1648 + 1er janvier 2027
1649 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1650 + À LOUER
1651 + </a><a href="https://immeublesalexcellence.com/tag/4%c2%bd/" class="hz-label label label-color-203">
1652 +
1653 + </a>
1654 +</span>
1655 +
1656 + <div class="page-title">
1657 + <span class="item-title property-title-mobile">Loyer 4 ½ à louer Secteur Université &#038; Mont-Bellevue</span>
1658 +</div><!-- page-title -->
1659 + <address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>Sherbrooke</address> <ul class="item-price-wrap hide-on-list">
1660 + <li class="item-price">1,150$/par mois</li></ul>
1661 + </div><!-- mobile-property-title -->
1662 + </div><!-- mobile-top-wrap -->
1663 +</div><!-- visible-on-mobile -->
1664 + <div class="property-description-wrap property-section-wrap" id="property-description-wrap">
1665 + <div class="block-wrap">
1666 + <div class="block-title-wrap">
1667 + <h2>Description du loyer</h2>
1668 + </div>
1669 + <div class="block-content-wrap">
1670 +
1671 +<h2 class="wp-block-heading">Loyer lumineux, bien situé à Sherbrooke</h2>
1672 +
1673 +
1674 +
1675 +<p>Découvrez ce magnifique <strong>4 ½ à louer à Sherbrooke</strong>, situé au <strong>944, rue Thibault</strong>, parfait pour les étudiants, jeunes professionnels ou familles à la recherche d’un logement confortable et moderne.</p>
1676 +
1677 +
1678 +
1679 +<h2 class="wp-block-heading"><strong>Caractéristiques principales du loyer :</strong></h2>
1680 +
1681 +
1682 +
1683 +<ul class="wp-block-list">
1684 +<li><strong>Aire ouverte lumineuse</strong> : Un espace de vie spacieux et agréable.</li>
1685 +
1686 +
1687 +
1688 +<li><strong>Cuisine fonctionnelle :</strong> Comptoir-lunch, entrée lave-vaisselle et nombreux rangements.</li>
1689 +
1690 +
1691 +
1692 +<li><strong>Salon moderne :</strong> Porte-patio avec accès à un balcon privé.</li>
1693 +
1694 +
1695 +
1696 +<li><strong>Chambres spacieuses :</strong> Deux chambres, dont une avec walk-in.</li>
1697 +
1698 +
1699 +
1700 +<li><strong>Rangements pratiques :</strong> Casier de rangement intégré dans le logement.</li>
1701 +
1702 +
1703 +
1704 +<li><strong>Planchers modernes :</strong> Céramique et planchette de vinyle.</li>
1705 +</ul>
1706 +
1707 +
1708 +
1709 +<h2 class="wp-block-heading"><strong>Services inclus dans l’immeuble :</strong></h2>
1710 +
1711 +
1712 +
1713 +<ul class="wp-block-list">
1714 +<li>Stationnement extérieur.</li>
1715 +
1716 +
1717 +
1718 +<li>Buanderie ($).</li>
1719 +
1720 +
1721 +
1722 +<li>Aspirateur central à disposition.</li>
1723 +
1724 +
1725 +
1726 +<li>Piscine creusée extérieure.</li>
1727 +
1728 +
1729 +
1730 +<li>Remise extérieure pour vélos.</li>
1731 +
1732 +
1733 +
1734 +<li>Entrée sécurisée avec intercom.</li>
1735 +</ul>
1736 +
1737 +
1738 +
1739 +<h2 class="wp-block-heading"><strong>Avantages de la localisation :</strong></h2>
1740 +
1741 +
1742 +
1743 +<p>Situé dans un emplacement stratégique, à proximité de :</p>
1744 +
1745 +
1746 +
1747 +<ul class="wp-block-list">
1748 +<li><strong>Écoles, CÉGEP et Université.</strong></li>
1749 +
1750 +
1751 +
1752 +<li>Hôpital, pharmacies, épiceries, dépanneurs.</li>
1753 +
1754 +
1755 +
1756 +<li>Parcs, pistes cyclables, et clubs de golf.</li>
1757 +
1758 +
1759 +
1760 +<li>Cafés, restaurants, et boutiques.</li>
1761 +
1762 +
1763 +
1764 +<li>Accès rapide aux circuits d’autobus no.7 et no.11.</li>
1765 +
1766 +
1767 +
1768 +<li>Autoroute, banques, bureaux de poste, et centres commerciaux.</li>
1769 +</ul>
1770 +
1771 +
1772 +
1773 +<h3 class="wp-block-heading"><strong>Informations importantes :</strong></h3>
1774 +
1775 +
1776 +
1777 +<ul class="wp-block-list">
1778 +<li><strong>Loyer :</strong> 1150 $/mois (bail de 18 mois).</li>
1779 +
1780 +
1781 +
1782 +<li><strong>Animaux :</strong> Non permis.</li>
1783 +
1784 +
1785 +
1786 +<li><strong>Services inclus :</strong> Aucun.</li>
1787 +
1788 +
1789 +
1790 +<li><strong>Type de locataires recherché :</strong> Non-fumeurs, tranquilles, respectueux (enquête de crédit obligatoire).</li>
1791 +</ul>
1792 +
1793 +
1794 +
1795 +<h3 class="wp-block-heading"><strong>Pourquoi choisir ce logement ?</strong></h3>
1796 +
1797 +
1798 +
1799 +<p>Ce <strong>4 ½ rénové à Sherbrooke</strong> est idéal pour ceux qui recherchent un logement moderne, bien entretenu et offrant une excellente qualité de vie. La proximité avec le <strong>CÉGEP</strong>, l’<strong>Université</strong>, et les services essentiels en fait un choix parfait pour les étudiants et les professionnels.</p>
1800 +
1801 +
1802 +
1803 +<p><strong>Contactez-nous dès aujourd’hui</strong> pour planifier une visite et découvrir tout ce que cet appartement a à offrir !</p>
1804 +
1805 + </div>
1806 + </div>
1807 +</div>
1808 + </div><!-- property-view -->
1809 + </div><!-- bt-content-wrap -->
1810 +
1811 + </div><!-- row -->
1812 +
1813 +
1814 + </div><!-- container -->
1815 +
1816 +
1817 + </section><!-- listing-wrap -->
1818 +
1819 + <!-- end houzez_check_is_elementor -->
1820 +
1821 +</main><!-- .main-wrap start in header.php-->
1822 +
1823 +<footer class="footer-wrap footer-wrap-v1">
1824 +
1825 + <div class="footer-bottom-wrap footer-bottom-wrap-v1">
1826 + <div class="container">
1827 + <div class="d-flex justify-content-between">
1828 +
1829 + <div class="footer-copyright">
1830 + &copy; Immeubles Alexcellence - Tout droits réservés</div><!-- footer-copyright -->
1831 +
1832 +
1833 +
1834 + </div><!-- d-flex -->
1835 + </div><!-- container -->
1836 +</div><!-- footer-top-wrap --></footer><div class="back-to-top-wrap">
1837 + <a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1838 + <i class="houzez-icon icon-arrow-up-1"></i>
1839 + </a>
1840 +</div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1841 +
1842 + <button class="compare-property-label" style="display: none;">
1843 + <span class="compare-count compare-label"></span>
1844 + <i class="houzez-icon icon-move-left-right"></i>
1845 + </button>
1846 +
1847 + <p><strong>Comparer les annonces</strong></p>
1848 +
1849 + <div class="compare-wrap"></div>
1850 +
1851 +
1852 + <a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1853 + <button class="btn btn-grey-outlined btn-full-width close-compare-panel">Close</button>
1854 +</div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog">
1855 + <div class="modal-dialog" role="document">
1856 + <div class="modal-content">
1857 + <div class="modal-header">
1858 + <div class="login-register-tabs">
1859 + <ul class="nav nav-tabs">
1860 + <li class="nav-item">
1861 + <a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">S&#039;identifier</a>
1862 + </li>
1863 +
1864 + </ul>
1865 + </div><!-- login-register-tabs -->
1866 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1867 + <span aria-hidden="true">&times;</span>
1868 + </button>
1869 + </div><!-- modal-header -->
1870 + <div class="modal-body">
1871 + <div class="tab-content">
1872 + <div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel">
1873 + <div id="hz-login-messages" class="hz-social-messages"></div>
1874 +<form>
1875 + <div class="login-form-wrap">
1876 + <div class="form-group">
1877 + <div class="form-group-field username-field">
1878 + <input class="form-control" name="username" placeholder="Username or Email" type="text" />
1879 + </div><!-- input-group -->
1880 + </div><!-- form-group -->
1881 + <div class="form-group">
1882 + <div class="form-group-field password-field">
1883 + <input class="form-control" name="password" placeholder="Mot de passe" type="password" />
1884 + </div><!-- input-group -->
1885 + </div><!-- form-group -->
1886 + </div><!-- login-form-wrap -->
1887 +
1888 + <div class="form-tools">
1889 + <div class="d-flex">
1890 + <label class="control control--checkbox flex-grow-1">
1891 + <input name="remember" type="checkbox">Remember me FR <span class="control__indicator"></span>
1892 + </label>
1893 + <a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Lost your password?</a>
1894 + </div><!-- d-flex -->
1895 + </div><!-- form-tools -->
1896 +
1897 + <div class="form-group captcha_wrapper houzez-grecaptcha-v3">
1898 + <div class="houzez_google_reCaptcha"></div>
1899 +</div>
1900 +
1901 + <input type="hidden" id="houzez_login_security" name="houzez_login_security" value="90509fca4b" /><input type="hidden" name="_wp_http_referer" value="/appartements/loyer-a-louer-secteur-universite-mont-bellevue/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1902 + <input type="hidden" name="redirect_to" value="https://immeublesalexcellence.com/appartements/loyer-a-louer-secteur-universite-mont-bellevue/?login=success">
1903 + <button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1904 + <span class="btn-loader houzez-loader-js"></span> S&#039;identifier
1905 + </button>
1906 +</form>
1907 +
1908 +<div class="social-login-wrap">
1909 +
1910 + <button type="button" class="hz-facebook-login btn btn-facebook-login btn-full-width">
1911 + <span class="btn-loader houzez-loader-js"></span> Continue with Facebook </button>
1912 +
1913 + <button type="button" class="hz-google-login btn btn-google-plus-lined btn-full-width">
1914 + <span class="btn-loader houzez-loader-js"></span> <img class="google-icon" src="https://immeublesalexcellence.com/wp-content/themes/houzez/img/Google__G__Logo.svg"/> Sign in with google </button>
1915 +
1916 +</div>
1917 + </div><!-- login-form-tab -->
1918 + <div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel">
1919 + <div id="hz-register-messages" class="hz-social-messages"></div>
1920 +User registration is disabled for demo purpose. </div><!-- register-form-tab -->
1921 + </div><!-- tab-content -->
1922 + </div><!-- modal-body -->
1923 + </div><!-- modal-content -->
1924 + </div><!-- modal-dialog -->
1925 +</div><!-- login-register-form --><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog">
1926 + <div class="modal-dialog" role="document">
1927 + <div class="modal-content">
1928 + <div class="modal-header">
1929 + <div class="modal-title">Reset Password</div>
1930 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1931 + <span aria-hidden="true">&times;</span>
1932 + </button>
1933 + </div><!-- modal-header -->
1934 + <div class="modal-body">
1935 + <div id="reset_pass_msg"></div>
1936 + <p>Please enter your username or email address. You will receive a link to create a new password via email.</p>
1937 + <form>
1938 + <div class="form-group">
1939 + <input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Enter your username or email" class="form-control">
1940 + </div>
1941 + <input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="eec590fff1" /><input type="hidden" name="_wp_http_referer" value="/appartements/loyer-a-louer-secteur-universite-mont-bellevue/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1942 + <span class="btn-loader houzez-loader-js"></span> Get new password </button>
1943 + </form>
1944 + </div><!-- modal-body -->
1945 + </div><!-- modal-content -->
1946 + </div><!-- modal-dialog -->
1947 +</div><!-- login-register-form --><div class="property-lightbox">
1948 + <div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog">
1949 + <div class="modal-dialog modal-dialog-centered" role="document">
1950 + <div id="hz-listing-model-content" class="modal-content">
1951 +
1952 + </div><!-- modal-content -->
1953 + </div><!-- modal-dialog -->
1954 + </div><!-- modal -->
1955 +</div><!-- property-lightbox --><div class="property-lightbox">
1956 + <div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog">
1957 + <div class="modal-dialog modal-dialog-centered" role="document">
1958 + <div class="modal-content">
1959 + <div class="modal-header">
1960 + <div class="d-flex align-items-center">
1961 +
1962 + <div class="lightbox-logo">
1963 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" alt="Loyer 4 ½ à louer Secteur Université &#038; Mont-Bellevue">
1964 + </div><!-- lightbox-logo -->
1965 +
1966 + <div class="lightbox-title flex-grow-1">
1967 +
1968 + </div><!-- lightbox-title -->
1969 + <div class="lightbox-tools">
1970 + <ul class="list-inline">
1971 + <li class="list-inline-item btn-favorite">
1972 + <a class="add-favorite-js" data-listid="3023" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Préféré</span></a>
1973 + </li>
1974 +
1975 + <li class="list-inline-item btn-share">
1976 + <a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Share</span></a>
1977 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1978 +
1979 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F">
1980 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1981 +
1982 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F01%2FAppartement-etudiant-sherbrooke-1024x768.jpg&amp;description=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1983 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1984 +
1985 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&amp;t=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1986 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1987 +</a>
1988 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1989 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1990 +</a>
1991 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F&title=Loyer+4+%C2%BD+%C3%A0+louer+Secteur+Universit%C3%A9+%26%23038%3B+Mont-Bellevue&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1992 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1993 +</a>
1994 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=Loyer 4 ½ à louer Secteur Université &#038; Mont-Bellevue&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Floyer-a-louer-secteur-universite-mont-bellevue%2F">
1995 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1996 +</a> </div>
1997 + </li>
1998 + <li class="list-inline-item btn-email">
1999 + <a href="#"><i class="houzez-icon icon-envelope"></i></a>
2000 + </li>
2001 + </ul>
2002 + </div><!-- lightbox-tools -->
2003 + </div><!-- d-flex -->
2004 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
2005 + <span aria-hidden="true">&times;</span>
2006 + </button>
2007 + </div><!-- modal-header -->
2008 +
2009 + <div class="modal-body clearfix">
2010 + <div class="lightbox-gallery-wrap ">
2011 +
2012 + <a class="btn-expand">
2013 + <i class="houzez-icon icon-expand-3"></i>
2014 + </a>
2015 +
2016 + <div class="lightbox-gallery">
2017 + <div id="lightbox-slider-js" class="lightbox-slider">
2018 +
2019 + <div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-sherbrooke.jpg" alt="loyer étudiant Sherbrooke Mont-Bellevue Université" title="Appartement-etudiant-sherbrooke"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/cuisine-loyer-etudiant-sherbrooke.jpg" alt="Cuisine Loyer 4 ½ à louer Université Sherbrooke" title="cuisine-loyer-etudiant-sherbrooke"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/loyer-sherbrooke-location.jpg" alt="Loyer 4 ½ à louer Mont-Bellevue U de S" title="loyer-sherbrooke-location"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-alouer.jpg" alt="Appartement a louer étudiant U de S" title="Appartement-etudiant-alouer"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/salle-bain-loyer-universite.jpg" alt="Loyer 4 ½ à louer salle de bain" title="salle-bain-loyer-universite"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/loyer-chambre-bain-udes.jpg" alt="Chambre de bain Loyer 4 ½ à louer" title="loyer-chambre-bain-udes"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/chambre-appartement-louer.jpg" alt="chambre appartement 4 ½ à louer Sherbrooke" title="chambre-appartement-louer"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-etudiant-renove.jpg" alt="appartement étudiant disponible U de S" title="Appartement-etudiant-renove"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Appartement-a-louer-1.jpg" alt="appartement a louer 4 ½ Mont-Bellevue" title="Appartement-a-louer"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/01/Piscine-Projet.jpg" alt="Loyer 4 ½ à louer Université Sherbrooke piscine" title="Piscine-Projet"></div>
2020 + </div>
2021 + </div><!-- lightbox-gallery -->
2022 +
2023 + </div><!-- lightbox-gallery-wrap -->
2024 +
2025 + <div class="lightbox-form-wrap">
2026 + </div><!-- lightbox-form-wrap -->
2027 + </div><!-- modal-body -->
2028 + <div class="modal-footer">
2029 +
2030 + </div><!-- modal-footer -->
2031 + </div><!-- modal-content -->
2032 + </div><!-- modal-dialog -->
2033 + </div><!-- modal -->
2034 +</div><!-- property-lightbox -->
2035 +
2036 +
2037 + <script>
2038 + window.RS_MODULES = window.RS_MODULES || {};
2039 + window.RS_MODULES.modules = window.RS_MODULES.modules || {};
2040 + window.RS_MODULES.waiting = window.RS_MODULES.waiting || [];
2041 + window.RS_MODULES.defered = true;
2042 + window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};
2043 + window.RS_MODULES.type = 'compiled';
2044 + </script>
2045 +
2046 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
2047 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 parametres-de-confidentialite optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
2048 + <div class="cmplz-header">
2049 + <div class="cmplz-logo"><?xml version="1.0" encoding="utf-8"?>
2050 +<!-- Generator: Adobe Illustrator 27.6.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
2051 +<svg version="1.1" id="uuid-7dd7b5b8-c5e0-4d79-ad53-47e9a05e6f8e"
2052 + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1354.3 343"
2053 + style="enable-background:new 0 0 1354.3 343;" xml:space="preserve">
2054 +<style type="text/css">
2055 + .st0{fill:#009FFF;}
2056 + .st1{fill:#333333;}
2057 +</style>
2058 +<path class="st0" d="M663.5,62.7c-17.7,0-36,7.4-44.2,19v-15h-52.7V274h52.7v-75.8c8.2,11.6,26.5,19,44.2,19
2059 + c41.1,0,68.6-37.4,68.6-77.5S704.6,62.7,663.5,62.7L663.5,62.7L663.5,62.7z M649.6,174.1c-18,0-30.3-13.9-30.3-33.7
2060 + s11.9-34.7,30.3-34.7c17.4,0,29.9,14.6,29.9,34.7S666.9,174.1,649.6,174.1z M499.6,62.7c-24.5,0-39,10.8-49.3,24.1
2061 + c-8.5-14.6-21.8-24.1-44.8-24.1c-17.3,0-30.6,5.1-40.4,19.3V66.8h-52.7v146.4H365v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9
2062 + v75.4h52.7v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9v75.4h52.7v-88.2C553.2,90.2,538.9,62.7,499.6,62.7L499.6,62.7
2063 + L499.6,62.7z M221.3,62.7c-42.1,0-78.8,33.7-78.8,77.1s36,77.5,79.1,77.5s78.8-34.3,78.8-77.8S264.1,62.7,221.3,62.7L221.3,62.7
2064 + L221.3,62.7z M221.6,175.5c-18.4,0-27.9-18.7-27.9-35.6s9.5-35.3,27.5-35.3c19,0,27.9,18.7,27.9,35S240,175.5,221.6,175.5
2065 + L221.6,175.5L221.6,175.5z M79.6,175.8c-19,0-31.6-17.7-31.6-35.3c0-20.8,12.9-36,31.6-36c10.8,0,20.8,4.4,29.2,13.6l30.3-28.2
2066 + c-15.6-18.7-34.7-27.2-59.5-27.2C32.7,62.7-0.9,98-0.9,140.5s34.3,76.7,80.6,76.7c28.5,0,46.6-9.5,64.2-31.6l-35.3-24.8
2067 + C100.4,170.4,93.2,175.8,79.6,175.8L79.6,175.8L79.6,175.8z M1139,62.7c-17.4,0-32.6,6.4-42.1,19.3V66.7h-52.7v146.4h52.7v-77.1
2068 + c0-18,8.8-29.2,24.2-29.2s20.8,11.2,20.8,30.9v75.4h52.7v-88.1C1194.5,90.2,1178.5,62.7,1139,62.7L1139,62.7L1139,62.7z M958.2,62.7
2069 + c-26.5,0-50.9,4-70.3,15l16.3,31.6c15.3-7.9,31.9-12.6,52.3-12.6c15,0,21.8,3.4,21.8,13.6v5.1c-47.5,2.1-103.6,10.8-103.6,56.4
2070 + c0,27.9,24.8,45.5,53,45.5c25.5,0,34.7-4.1,50.6-15.3v11.2h52.7v-93.1C1030.9,78.3,1006.7,62.7,958.2,62.7L958.2,62.7L958.2,62.7z
2071 + M978.2,169.4c-8.5,7.4-17.4,10.5-30.6,10.5c-8.5,0-17-5.1-17-13.6c0-16.3,25.1-21.4,47.5-21.4V169.4z M744,213.2h52.7V1.7H744
2072 + V213.2L744,213.2z M1282.8,172.9l70.5-106.2h-143.7v40.8h53.7c4.8,0,8.8-0.3,8.8-0.3s-3.4,3.7-6.1,7.8l-66.2,98.2h145.1v-40.8h-52.1
2073 + C1289.8,172.4,1285.4,172.7,1282.8,172.9L1282.8,172.9L1282.8,172.9z M811.2,67.4v145.7h52.7V67.2c-8.3,2.9-17.1,4.6-26.1,4.6
2074 + S819.6,70.2,811.2,67.4L811.2,67.4L811.2,67.4z"/>
2075 +<g>
2076 + <g>
2077 + <path class="st1" d="M649.8,345v-8l10.1-1.8v-75.6l-11.2-1.8v-8h20.6l1.2,8.4c2.3-3.1,5.2-5.5,8.5-7.2c3.4-1.6,7.2-2.5,11.7-2.5
2078 + c5.8,0,10.8,1.5,14.9,4.6c4.1,3.1,7.3,7.4,9.4,12.9c2.2,5.5,3.3,12,3.3,19.4v1.3c0,6.6-1.1,12.4-3.3,17.3s-5.3,8.8-9.4,11.6
2079 + c-4.1,2.8-9,4.1-14.7,4.1c-4.3,0-8.1-0.7-11.4-2.1c-3.3-1.4-6.1-3.5-8.3-6.3v24l11.2,1.8v8L649.8,345L649.8,345z M686.8,310.6
2080 + c5.9,0,10.4-2.2,13.4-6.4c3-4.3,4.5-9.9,4.5-16.7V286c0-5.3-0.7-9.9-2-13.9c-1.4-4-3.4-7.2-6.1-9.5s-6.1-3.4-10.1-3.4
2081 + c-3.6,0-6.6,0.8-9.2,2.4c-2.6,1.6-4.6,3.8-6.2,6.6v33.6c1.6,2.9,3.7,5.1,6.2,6.7c2.6,1.6,5.7,2.4,9.5,2.4L686.8,310.6z"/>
2082 + </g>
2083 + <g>
2084 + <path class="st1" d="M758,320.5c-6.4,0-11.9-1.5-16.5-4.5s-8.2-7.1-10.7-12.4c-2.5-5.3-3.8-11.3-3.8-18.1v-1.4
2085 + c0-6.8,1.3-12.8,3.8-18.1c2.5-5.3,6.1-9.4,10.7-12.5c4.6-3,10.1-4.5,16.3-4.5s11.9,1.5,16.5,4.5s8.2,7.2,10.7,12.4
2086 + c2.5,5.3,3.8,11.3,3.8,18.1v1.4c0,6.8-1.3,12.9-3.8,18.2c-2.5,5.3-6.1,9.4-10.6,12.4C769.8,319,764.4,320.5,758,320.5L758,320.5z
2087 + M758.6,310.2c3.9,0,7.2-1.1,9.8-3.2c2.6-2.1,4.6-5.1,6-8.8s2-8,2-12.7v-1.4c0-4.8-0.7-9-2-12.7c-1.4-3.7-3.4-6.7-6-8.8
2088 + c-2.7-2.1-6-3.2-9.9-3.2c-4,0-7.2,1.1-9.9,3.2c-2.7,2.1-4.7,5.1-6,8.8c-1.3,3.7-2,8-2,12.7v1.4c0,4.8,0.7,9,2,12.7
2089 + c1.3,3.7,3.3,6.7,6,8.8S754.6,310.2,758.6,310.2L758.6,310.2z"/>
2090 + </g>
2091 + <g>
2092 + <path class="st1" d="M822.4,319.3l-18.1-59.5l-7.7-0.9v-8h28v8l-8.3,1.4l9.3,34.1l2.1,8.1h0.4l2.8-8.1l14.7-43.5h11.4l14.1,43.1
2093 + l3,9.5h0.4l3-9.5l9.5-33.8l-8.6-1.3v-8h28v8l-7.6,1.1L881,319.3h-12.1L855,278.2l-3.3-11l-0.4,0.1l-3.2,10.9l-14.9,41.1
2094 + L822.4,319.3L822.4,319.3z"/>
2095 + </g>
2096 + <g>
2097 + <path class="st1" d="M943.2,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2098 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2099 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7s3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2100 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C953.7,319.8,948.8,320.6,943.2,320.6L943.2,320.6z
2101 + M925.3,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3c-2.8,0-5.3,0.8-7.6,2.4
2102 + c-2.3,1.6-4.2,3.8-5.6,6.6c-1.5,2.8-2.5,6-2.9,9.5L925.3,277.8L925.3,277.8z"/>
2103 + </g>
2104 + <g>
2105 + <path class="st1" d="M980.5,319.3v-8l10.1-1.8v-48.8l-10.1-1.8v-8h21.1l1.1,8.7l0.1,1.2c1.9-3.5,4.2-6.2,7-8.2c2.8-2,6-3,9.6-3
2106 + c1.3,0,2.6,0.1,3.9,0.3c1.3,0.2,2.3,0.4,2.9,0.7l-1.6,11.6l-8.5-0.5c-3.2-0.2-5.9,0.5-8.1,2.2c-2.2,1.7-3.9,4-5.1,6.9v38.7
2107 + l10.1,1.8v8L980.5,319.3L980.5,319.3z"/>
2108 + </g>
2109 + <g>
2110 + <path class="st1" d="M1063.1,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2111 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2112 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7c1.4,3.4,3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2113 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C1073.6,319.8,1068.8,320.6,1063.1,320.6
2114 + L1063.1,320.6z M1045.2,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3
2115 + c-2.8,0-5.3,0.8-7.6,2.4c-2.3,1.6-4.2,3.8-5.6,6.6s-2.5,6-2.9,9.5L1045.2,277.8L1045.2,277.8z"/>
2116 + </g>
2117 + <g>
2118 + <path class="st1" d="M1127.3,320.6c-5.6,0-10.5-1.4-14.5-4.1c-4-2.8-7.1-6.6-9.2-11.6c-2.1-4.9-3.2-10.7-3.2-17.3v-1.3
2119 + c0-7.4,1.1-13.8,3.2-19.3c2.1-5.5,5.2-9.8,9.3-12.9c4.1-3.1,8.9-4.6,14.6-4.6c4.1,0,7.7,0.8,10.9,2.3c3.1,1.5,5.8,3.7,8,6.5v-27.7
2120 + l-10.1-1.8v-8h23.5v88.9l10.1,1.8v8H1148l-1-8.2c-2.3,3.1-5,5.5-8.3,7.1C1135.4,319.8,1131.7,320.6,1127.3,320.6L1127.3,320.6z
2121 + M1130.9,309.8c3.7,0,6.7-0.8,9.2-2.5c2.5-1.7,4.6-4,6.2-7.1V269c-1.6-2.8-3.6-5.1-6.2-6.7c-2.5-1.7-5.6-2.5-9.1-2.5
2122 + c-3.9,0-7.1,1.1-9.7,3.3c-2.5,2.2-4.4,5.3-5.7,9.2c-1.2,3.9-1.9,8.5-1.9,13.7v1.3c0,6.8,1.4,12.2,4.2,16.3
2123 + C1120.8,307.8,1125.1,309.8,1130.9,309.8L1130.9,309.8z"/>
2124 + </g>
2125 + <g>
2126 + <path class="st1" d="M1245.2,320.6c-4.5,0-8.3-0.9-11.6-2.6c-3.3-1.7-6-4.2-8.2-7.6l-1.1,8.8h-10.6v-88.8l-10.1-1.8v-8h22.4V259
2127 + c2.2-3,4.8-5.4,8-7c3.2-1.6,6.9-2.4,11.2-2.4c5.6,0,10.5,1.5,14.4,4.6c4,3.1,7,7.3,9.2,12.9c2.1,5.5,3.2,11.9,3.2,19.3v1.3
2128 + c0,6.6-1.1,12.3-3.2,17.3c-2.1,4.9-5.2,8.8-9.2,11.5C1255.6,319.2,1250.8,320.6,1245.2,320.6L1245.2,320.6z M1241.6,310.6
2129 + c6.1,0,10.6-2.2,13.5-6.5c2.9-4.3,4.4-10,4.4-17.1v-1c0-5.3-0.6-10-1.9-14s-3.2-7.1-5.8-9.4c-2.6-2.3-5.9-3.4-9.9-3.4
2130 + c-4,0-7.1,0.9-9.8,2.8c-2.6,1.9-4.8,4.4-6.3,7.5v30.6c1.5,3.1,3.6,5.5,6.2,7.3c2.6,1.8,5.8,2.7,9.5,2.7L1241.6,310.6z"/>
2131 + </g>
2132 + <g>
2133 + <path class="st1" d="M1293.4,346.2c-1,0-2.2-0.1-3.8-0.3c-1.6-0.2-2.8-0.5-3.6-0.7l1.3-9.8c0.7,0.1,1.7,0.2,3,0.2s2.1,0.1,2.6,0.1
2134 + c2.7,0,4.8-1,6.5-3c1.7-2,3.2-4.8,4.7-8.3l3-7.2l-24.3-58.2l-7.4-1v-8.1h29.1v8.1l-8.3,1.3l13.3,34.4l3.2,9h0.4l15.8-43.3
2135 + l-8.7-1.3v-8.1h28v8.1l-7.1,1l-27,70.1c-1.3,3.3-2.8,6.3-4.6,8.9c-1.8,2.6-4,4.6-6.6,6.1C1300.2,345.4,1297,346.2,1293.4,346.2
2136 + L1293.4,346.2z"/>
2137 + </g>
2138 +</g>
2139 +</svg>
2140 +</div>
2141 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
2142 + <div class="cmplz-close" tabindex="0" role="button" aria-label="close-dialog">
2143 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
2144 + </div>
2145 + </div>
2146 +
2147 + <div class="cmplz-divider cmplz-divider-header"></div>
2148 + <div class="cmplz-body">
2149 + <div class="cmplz-message" id="cmplz-message-1-optin"><p>Pour vous offrir les meilleures expériences, nous utilisons des technologies, telles que les cookies, pour stocker et accéder à des informations sur votre appareil. Votre consentement à ces technologies nous permet de traiter des données, telles que vos préférences de navigation ou des identifiants uniques. Vous pouvez refuser ou retirer votre consentement à tout moment, ce qui pourrait affecter certaines fonctionnalités ou caractéristiques du site. Pour en savoir plus sur l’utilisation de vos données, veuillez consulter notre [politique de confidentialité](lien vers la politique de confidentialité).</p></div>
2150 + <!-- categories start -->
2151 + <div class="cmplz-categories">
2152 + <details class="cmplz-category cmplz-functional" >
2153 + <summary>
2154 + <span class="cmplz-category-header">
2155 + <span class="cmplz-category-title">Fonctionnel</span>
2156 + <span class='cmplz-always-active'>
2157 + <span class="cmplz-banner-checkbox">
2158 + <input type="checkbox"
2159 + id="cmplz-functional-optin"
2160 + data-category="cmplz_functional"
2161 + class="cmplz-consent-checkbox cmplz-functional"
2162 + size="40"
2163 + value="1"/>
2164 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
2165 + </span>
2166 + Toujours activé </span>
2167 + <span class="cmplz-icon cmplz-open">
2168 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2169 + </span>
2170 + </span>
2171 + </summary>
2172 + <div class="cmplz-description">
2173 + <span class="cmplz-description-functional">L’accès ou le stockage technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
2174 + </div>
2175 + </details>
2176 +
2177 + <details class="cmplz-category cmplz-preferences" >
2178 + <summary>
2179 + <span class="cmplz-category-header">
2180 + <span class="cmplz-category-title">Préférences</span>
2181 + <span class="cmplz-banner-checkbox">
2182 + <input type="checkbox"
2183 + id="cmplz-preferences-optin"
2184 + data-category="cmplz_preferences"
2185 + class="cmplz-consent-checkbox cmplz-preferences"
2186 + size="40"
2187 + value="1"/>
2188 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
2189 + </span>
2190 + <span class="cmplz-icon cmplz-open">
2191 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2192 + </span>
2193 + </span>
2194 + </summary>
2195 + <div class="cmplz-description">
2196 + <span class="cmplz-description-preferences">L'accès ou le stockage technique est nécessaire dans la finalité d'intérêt légitime de stocker des préférences spécifiques des utilisateurs, telles que la langue, la région ou d'autres paramètres personnalisés, afin d'améliorer leur expérience sur le site.</span>
2197 + </div>
2198 + </details>
2199 +
2200 + <details class="cmplz-category cmplz-statistics" >
2201 + <summary>
2202 + <span class="cmplz-category-header">
2203 + <span class="cmplz-category-title">Statistiques</span>
2204 + <span class="cmplz-banner-checkbox">
2205 + <input type="checkbox"
2206 + id="cmplz-statistics-optin"
2207 + data-category="cmplz_statistics"
2208 + class="cmplz-consent-checkbox cmplz-statistics"
2209 + size="40"
2210 + value="1"/>
2211 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
2212 + </span>
2213 + <span class="cmplz-icon cmplz-open">
2214 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2215 + </span>
2216 + </span>
2217 + </summary>
2218 + <div class="cmplz-description">
2219 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
2220 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique est utilisé exclusivement à des fins statistiques anonymes. Sans assignation légale, conformité volontaire de votre fournisseur d’accès à Internet ou données supplémentaires d’une tierce partie, les informations collectées à cette fin ne peuvent pas être utilisées pour vous identifier.</span>
2221 + </div>
2222 + </details>
2223 + <details class="cmplz-category cmplz-marketing" >
2224 + <summary>
2225 + <span class="cmplz-category-header">
2226 + <span class="cmplz-category-title">Marketing</span>
2227 + <span class="cmplz-banner-checkbox">
2228 + <input type="checkbox"
2229 + id="cmplz-marketing-optin"
2230 + data-category="cmplz_marketing"
2231 + class="cmplz-consent-checkbox cmplz-marketing"
2232 + size="40"
2233 + value="1"/>
2234 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
2235 + </span>
2236 + <span class="cmplz-icon cmplz-open">
2237 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2238 + </span>
2239 + </span>
2240 + </summary>
2241 + <div class="cmplz-description">
2242 + <span class="cmplz-description-marketing">L’accès ou le stockage technique est nécessaire pour créer des profils d’utilisateurs, diffuser des publicités personnalisées, et suivre l’activité de l’utilisateur sur ce site ou sur plusieurs sites web dans le cadre de campagnes marketing similaires.</span>
2243 + </div>
2244 + </details>
2245 + </div><!-- categories end -->
2246 + </div>
2247 +
2248 + <div class="cmplz-links cmplz-information">
2249 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
2250 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
2251 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
2252 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
2253 + </div>
2254 +
2255 + <div class="cmplz-divider cmplz-footer"></div>
2256 +
2257 + <div class="cmplz-buttons">
2258 + <button class="cmplz-btn cmplz-accept">Accepter</button>
2259 + <button class="cmplz-btn cmplz-deny">Refuser</button>
2260 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
2261 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
2262 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
2263 + </div>
2264 +
2265 + <div class="cmplz-links cmplz-documents">
2266 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
2267 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
2268 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
2269 + </div>
2270 +
2271 +</div>
2272 +</div>
2273 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
2274 +
2275 +</div> <script data-service="google-recaptcha" data-category="marketing" type="text/plain">
2276 + var reCaptchaIDs = [];
2277 + var siteKey = '6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc';
2278 + var reCaptchaType = 'v3';
2279 +
2280 + var houzezReCaptchaLoad = function() {
2281 + jQuery( '.houzez_google_reCaptcha' ).each( function( index, el ) {
2282 + var tempID;
2283 +
2284 + if ( reCaptchaType === 'v3' ) {
2285 +
2286 + tempID = grecaptcha.ready(function () {
2287 + grecaptcha.execute(siteKey, {action: 'homepage'}).then(function (token) {
2288 + el.insertAdjacentHTML('beforeend', '<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="' + token + '">');
2289 + });
2290 + });
2291 +
2292 + } else {
2293 +
2294 + tempID = grecaptcha.render( el, {
2295 + 'sitekey' : siteKey
2296 + } );
2297 + }
2298 +
2299 + reCaptchaIDs.push( tempID );
2300 + } );
2301 + };
2302 +
2303 + //reCAPTCHA reset
2304 + var houzezReCaptchaReset = function() {
2305 + if ( reCaptchaType === 'v2' ) {
2306 + if( typeof reCaptchaIDs != 'undefined' ) {
2307 + var arrayLength = reCaptchaIDs.length;
2308 + for( var i = 0; i < arrayLength; i++ ) {
2309 + grecaptcha.reset( reCaptchaIDs[i] );
2310 + }
2311 + }
2312 + } else {
2313 + houzezReCaptchaLoad();
2314 + }
2315 + };
2316 + </script>
2317 + <script>
2318 + const lazyloadRunObserver = () => {
2319 + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
2320 + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
2321 + entries.forEach( ( entry ) => {
2322 + if ( entry.isIntersecting ) {
2323 + let lazyloadBackground = entry.target;
2324 + if( lazyloadBackground ) {
2325 + lazyloadBackground.classList.add( 'e-lazyloaded' );
2326 + }
2327 + lazyloadBackgroundObserver.unobserve( entry.target );
2328 + }
2329 + });
2330 + }, { rootMargin: '200px 0px 200px 0px' } );
2331 + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
2332 + lazyloadBackgroundObserver.observe( lazyloadBackground );
2333 + } );
2334 + };
2335 + const events = [
2336 + 'DOMContentLoaded',
2337 + 'elementor/lazyload/observe',
2338 + ];
2339 + events.forEach( ( event ) => {
2340 + document.addEventListener( event, lazyloadRunObserver );
2341 + } );
2342 + </script>
2343 + <link rel='stylesheet' id='rs-plugin-settings-css' href='//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/css/rs6.css?ver=6.7.20' type='text/css' media='all' />
2344 +<style id='rs-plugin-settings-inline-css' type='text/css'>
2345 +#rs-demo-id {}
2346 +</style>
2347 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.20" defer async id="tp-tools-js"></script>
2348 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.20" defer async id="revmin-js"></script>
2349 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/all-scripts.js?ver=3.4.4" id="houzez-all-in-one-js"></script>
2350 +<script type="module" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/houzez-instant-page.js?ver=3.0.0" id="houzez-instant-page-js"></script>
2351 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/lightslider.min.js?ver=1.1.3" id="lightslider-js"></script>
2352 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/Chart.min.js?ver=2.8.0" id="chart-js"></script>
2353 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script>
2354 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/menu.min.js?ver=1.13.3" id="jquery-ui-menu-js"></script>
2355 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/dom-ready.min.js?ver=f77871ff7694fffea381" id="wp-dom-ready-js"></script>
2356 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script>
2357 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script>
2358 +<script type="text/javascript" id="wp-i18n-js-after">
2359 +/* <![CDATA[ */
2360 +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
2361 +/* ]]> */
2362 +</script>
2363 +<script type="text/javascript" id="wp-a11y-js-translations">
2364 +/* <![CDATA[ */
2365 +( function( domain, translations ) {
2366 + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
2367 + localeData[""].domain = domain;
2368 + wp.i18n.setLocaleData( localeData, domain );
2369 +} )( "default", {"translation-revision-date":"2025-10-01 05:29:20+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} );
2370 +/* ]]> */
2371 +</script>
2372 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/a11y.min.js?ver=3156534cc54473497e14" id="wp-a11y-js"></script>
2373 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.13.3" id="jquery-ui-autocomplete-js"></script>
2374 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/mouse.min.js?ver=1.13.3" id="jquery-ui-mouse-js"></script>
2375 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/slider.min.js?ver=1.13.3" id="jquery-ui-slider-js"></script>
2376 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/bootstrap-datepicker.min.js?ver=1.9.0" id="bootstrap-datepicker-js"></script>
2377 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr.min.js?ver=1.0" id="bootstrap-datepicker.fr-js"></script>
2378 +<script type="text/javascript" id="houzez-custom-js-extra">
2379 +/* <![CDATA[ */
2380 +var houzez_vars = {"admin_url":"https:\/\/immeublesalexcellence.com\/wp-admin\/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https:\/\/immeublesalexcellence.com\/appartements\/loyer-a-louer-secteur-universite-mont-bellevue\/","property_gallery_popup_type":"houzez","wp_is_mobile":"","default_lat":"25.686540","default_long":"-80.431345","houzez_is_splash":"","prop_detail_nav":"yes","add_to_favorite_login_required":"1","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_banner","login_loading":"Envoi d'informations utilisateur, veuillez patienter ...","not_found":"Nous n'avons trouv\u00e9 aucun r\u00e9sultat","listings_not_found":"No more listings found","houzez_map_system":"osm","for_rent":"a-louer","for_rent_price_slider":"a-louer","search_min_price_range":"0","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","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"0","geocomplete_country":"","is_edit_property":"","processing_text":"Traitement, veuillez patienter ...","halfmap_layout":"","prev_text":"Prev","next_text":"Prochain","keyword_search_field":"prop_title","keyword_autocomplete":"1","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"1","simple_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo":"","mobile_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo_mobile":"","retina_logo_mobile_splash":"","custom_logo_splash":"","retina_logo_splash":"","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"","favorite_url":"","template_thankyou":"https:\/\/immeublesalexcellence.com\/","compare_page_not_found":"Veuillez cr\u00e9er une page en utilisant le mod\u00e8le de propri\u00e9t\u00e9s de comparaison","compare_limit":"Prix \u200b\u200bmaximum pour le loyer seulement","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Ajouter au comparatif","remove_compare_text":"Retirer du comparatif","is_mapbox":"google","api_mapbox":"","listing_pagination":"_loadmore","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""};
2381 +/* ]]> */
2382 +</script>
2383 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/custom.js?ver=3.4.4" id="houzez-custom-js"></script>
2384 +<script data-service="google-recaptcha" data-category="marketing" type="text/plain" data-cmplz-src="//www.google.com/recaptcha/api.js?render=6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc&amp;onload=houzezReCaptchaLoad&amp;ver=3.4.4" id="houzez-google-recaptcha-js"></script>
2385 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js//vendors/leaflet/leaflet.js?ver=1.9.3" id="leaflet-js"></script>
2386 +<script type="text/javascript" id="houzez-single-property-map-js-extra">
2387 +/* <![CDATA[ */
2388 +var houzez_single_property_map = [];
2389 +var houzez_map_options = {"markerPricePins":"no","single_map_zoom":"14","map_type":"satellite","map_pin_type":"marker","googlemap_stype":"[{\"featureType\":\"administrative\",\"elementType\":\"labels.text.fill\",\"stylers\":[{\"color\":\"#444444\"}]},{\"featureType\":\"administrative.locality\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"landscape\",\"elementType\":\"all\",\"stylers\":[{\"color\":\"#f2f2f2\"},{\"visibility\":\"simplified\"}]},{\"featureType\":\"poi\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"poi\",\"elementType\":\"geometry\",\"stylers\":[{\"visibility\":\"simplified\"},{\"saturation\":\"-65\"},{\"lightness\":\"45\"},{\"gamma\":\"1.78\"}]},{\"featureType\":\"poi\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"poi\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road\",\"elementType\":\"all\",\"stylers\":[{\"saturation\":-100},{\"lightness\":45}]},{\"featureType\":\"road\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"road\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road.highway\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"simplified\"}]},{\"featureType\":\"road.highway\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road.arterial\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.line\",\"elementType\":\"geometry\",\"stylers\":[{\"saturation\":\"-33\"},{\"lightness\":\"22\"},{\"gamma\":\"2.08\"}]},{\"featureType\":\"transit.station.airport\",\"elementType\":\"geometry\",\"stylers\":[{\"gamma\":\"2.08\"},{\"hue\":\"#ffa200\"}]},{\"featureType\":\"transit.station.airport\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.station.rail\",\"elementType\":\"labels.text\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.station.rail\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"simplified\"},{\"saturation\":\"-55\"},{\"lightness\":\"-2\"},{\"gamma\":\"1.88\"},{\"hue\":\"#ffab00\"}]},{\"featureType\":\"water\",\"elementType\":\"all\",\"stylers\":[{\"color\":\"#bbd9e5\"},{\"visibility\":\"simplified\"}]}]","closeIcon":"https:\/\/immeublesalexcellence.com\/wp-content\/themes\/houzez\/img\/map\/close.png","infoWindowPlac":"https:\/\/placehold.it\/120x90&text=Immeubles+Alexcellence"};
2390 +/* ]]> */
2391 +</script>
2392 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/single-property-osm-map.js?ver=3.4.4" id="houzez-single-property-map-js"></script>
2393 +<script type="text/javascript" id="cmplz-cookiebanner-js-extra">
2394 +/* <![CDATA[ */
2395 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"0","banner_version":"8517","version":"7.3.2","store_consent":"1","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"1","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/immeublesalexcellence.com\/wp-json\/complianz\/v1\/","locale":"lang=fr&locale=fr_FR","set_cookies_on_root":"0","cookie_domain":"","current_policy_id":"37","cookie_path":"\/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"<div class=\"cmplz-blocked-content-notice-body\">Cliquez sur \u00ab\u00a0J\u2019accepte\u00a0\u00bb pour activer {service}\u00a0<div class=\"cmplz-links\"><a href=\"#\" class=\"cmplz-link cookie-statement\">{title}<\/a><\/div><\/div><button class=\"cmplz-accept-service\">J\u2019accepte<\/button>","css_file":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=8517","page_links":{"ca":{"cookie-statement":{"title":"Politique de cookies ","url":"https:\/\/immeublesalexcellence.com\/politique-de-cookies-ca\/"},"privacy-statement":{"title":"D\u00e9claration de confidentialit\u00e9 ","url":"https:\/\/immeublesalexcellence.com\/declaration-de-confidentialite-ca\/"},"privacy-statement-children":{"title":"","url":"https:\/\/immeublesalexcellence.com\/appartements-a-louer\/"}}},"tm_categories":"","forceEnableStats":"1","preview":"","clean_cookies":"1","aria_label":"Cliquez sur le bouton pour activer {service}"};
2396 +/* ]]> */
2397 +</script>
2398 +<script defer type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/cookiebanner/js/complianz.min.js?ver=1736710566" id="cmplz-cookiebanner-js"></script>
2399 +<script type="text/javascript" id="cmplz-cookiebanner-js-after">
2400 +/* <![CDATA[ */
2401 +
2402 + if ('undefined' != typeof window.jQuery) {
2403 + jQuery(document).ready(function ($) {
2404 + $(document).on('elementor/popup/show', () => {
2405 + let rev_cats = cmplz_categories.reverse();
2406 + for (let key in rev_cats) {
2407 + if (rev_cats.hasOwnProperty(key)) {
2408 + let category = cmplz_categories[key];
2409 + if (cmplz_has_consent(category)) {
2410 + document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => {
2411 + cmplz_remove_placeholder(obj);
2412 + });
2413 + }
2414 + }
2415 + }
2416 +
2417 + let services = cmplz_get_services_on_page();
2418 + for (let key in services) {
2419 + if (services.hasOwnProperty(key)) {
2420 + let service = services[key].service;
2421 + let category = services[key].category;
2422 + if (cmplz_has_service_consent(service, category)) {
2423 + document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => {
2424 + cmplz_remove_placeholder(obj);
2425 + });
2426 + }
2427 + }
2428 + }
2429 + });
2430 + });
2431 + }
2432 +
2433 +
2434 +/* ]]> */
2435 +</script>
2436 +<!-- Statistics script Complianz GDPR/CCPA -->
2437 + <script data-category="functional">window['gtag_enable_tcf_support'] = false;
2438 +window.dataLayer = window.dataLayer || [];
2439 +function gtag(){dataLayer.push(arguments);}
2440 +gtag('js', new Date());
2441 +gtag('config', '', {
2442 + cookie_flags:'secure;samesite=none',
2443 + 'anonymize_ip': true
2444 +});
2445 +</script>
2446 +</body>
2447 +</html>
added tests/fixtures/alexcellence/cbd0ebff4704f8c48e5b.html +2362 −0
@@ -0,0 +1,2362 @@
1 +<!doctype html>
2 +<html lang="fr-FR">
3 +<head>
4 + <meta charset="UTF-8" />
5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 + <link rel="profile" href="https://gmpg.org/xfn/11" />
7 + <meta name="format-detection" content="telephone=no">
8 + <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://immeublesalexcellence.com/wp-content/themes/houzez/img/studio-icon.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>
9 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
10 + <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
11 +
12 + <!-- This site is optimized with the Yoast SEO plugin v24.3 - https://yoast.com/wordpress/plugins/seo/ -->
13 + <title>1½ à Louer à Sherbrooke - Secteur Université et Mont-Bellevue</title>
14 + <meta name="description" content="Beau 1½ semi-meublé à Sherbrooke, situé près de l&#039;Université, au pied Mont-Bellevue. chauffé, eau chaude inclus, stationnement, urgence 24/7" />
15 + <link rel="canonical" href="https://immeublesalexcellence.com/appartements/logement-1½-semi-meuble-au-pied-du-mont-bellevue/" />
16 + <meta property="og:locale" content="fr_FR" />
17 + <meta property="og:type" content="article" />
18 + <meta property="og:title" content="1½ à Louer à Sherbrooke - Secteur Université et Mont-Bellevue" />
19 + <meta property="og:description" content="Beau 1½ semi-meublé à Sherbrooke, situé près de l&#039;Université, au pied Mont-Bellevue. chauffé, eau chaude inclus, stationnement, urgence 24/7" />
20 + <meta property="og:url" content="https://immeublesalexcellence.com/appartements/logement-1½-semi-meuble-au-pied-du-mont-bellevue/" />
21 + <meta property="og:site_name" content="Immeubles Alexcellence" />
22 + <meta property="article:publisher" content="https://www.facebook.com/immeublesalexcellence" />
23 + <meta property="article:modified_time" content="2026-07-17T19:20:47+00:00" />
24 + <meta property="og:image" content="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2.jpg" />
25 + <meta property="og:image:width" content="1067" />
26 + <meta property="og:image:height" content="800" />
27 + <meta property="og:image:type" content="image/jpeg" />
28 + <meta name="twitter:card" content="summary_large_image" />
29 + <meta name="twitter:label1" content="Durée de lecture estimée" />
30 + <meta name="twitter:data1" content="2 minutes" />
31 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://immeublesalexcellence.com/appartements/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue/","url":"https://immeublesalexcellence.com/appartements/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue/","name":"1½ à Louer à Sherbrooke - Secteur Université et Mont-Bellevue","isPartOf":{"@id":"https://immeublesalexcellence.com/#website"},"primaryImageOfPage":{"@id":"https://immeublesalexcellence.com/appartements/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue/#primaryimage"},"image":{"@id":"https://immeublesalexcellence.com/appartements/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue/#primaryimage"},"thumbnailUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2.jpg","datePublished":"2025-07-07T20:36:17+00:00","dateModified":"2026-07-17T19:20:47+00:00","description":"Beau 1½ semi-meublé à Sherbrooke, situé près de l'Université, au pied Mont-Bellevue. chauffé, eau chaude inclus, stationnement, urgence 24/7","breadcrumb":{"@id":"https://immeublesalexcellence.com/appartements/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://immeublesalexcellence.com/appartements/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/appartements/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue/#primaryimage","url":"https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2.jpg","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2.jpg","width":1067,"height":800},{"@type":"BreadcrumbList","@id":"https://immeublesalexcellence.com/appartements/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https://immeublesalexcellence.com/"},{"@type":"ListItem","position":2,"name":"Propriétés","item":"https://immeublesalexcellence.com/appartements/"},{"@type":"ListItem","position":3,"name":"Logement 1½ semi-meublé au pied du Mont-Bellevue"}]},{"@type":"WebSite","@id":"https://immeublesalexcellence.com/#website","url":"https://immeublesalexcellence.com/","name":"Immeubles Alexcellence","description":"Appartement a louer Université Sherbrooke","publisher":{"@id":"https://immeublesalexcellence.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://immeublesalexcellence.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https://immeublesalexcellence.com/#organization","name":"Immeubles Alexcellence","url":"https://immeublesalexcellence.com/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/#/schema/logo/image/","url":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","width":436,"height":123,"caption":"Immeubles Alexcellence"},"image":{"@id":"https://immeublesalexcellence.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/immeublesalexcellence","https://www.instagram.com/immeublealexellence/"]}]}</script>
32 + <!-- / Yoast SEO plugin. -->
33 +
34 +
35 +<link rel='dns-prefetch' href='//www.google.com' />
36 +<link rel='dns-prefetch' href='//fonts.googleapis.com' />
37 +<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin />
38 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux" href="https://immeublesalexcellence.com/feed/" />
39 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux des commentaires" href="https://immeublesalexcellence.com/comments/feed/" />
40 +<script type="text/javascript">
41 +/* <![CDATA[ */
42 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/immeublesalexcellence.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.5"}};
43 +/*! This file is auto-generated */
44 +!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
45 +/* ]]> */
46 +</script>
47 +<style id='wp-emoji-styles-inline-css' type='text/css'>
48 +
49 + img.wp-smiley, img.emoji {
50 + display: inline !important;
51 + border: none !important;
52 + box-shadow: none !important;
53 + height: 1em !important;
54 + width: 1em !important;
55 + margin: 0 0.07em !important;
56 + vertical-align: -0.1em !important;
57 + background: none !important;
58 + padding: 0 !important;
59 + }
60 +</style>
61 +<link rel='stylesheet' id='wp-block-library-css' href='https://immeublesalexcellence.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.5' type='text/css' media='all' />
62 +<style id='classic-theme-styles-inline-css' type='text/css'>
63 +/*! This file is auto-generated */
64 +.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}
65 +</style>
66 +<style id='global-styles-inline-css' type='text/css'>
67 +: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,rgba(6,147,227,1) 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,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%,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 rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}: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;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.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;}
68 +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
69 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
70 +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
71 +</style>
72 +<link rel='stylesheet' id='elementor-frontend-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.27.1' type='text/css' media='all' />
73 +<link rel='stylesheet' id='elementor-post-6-css' href='https://immeublesalexcellence.com/wp-content/uploads/elementor/css/post-6.css?ver=1737736055' type='text/css' media='all' />
74 +<link rel='stylesheet' id='font-awesome-5-all-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.27.1' type='text/css' media='all' />
75 +<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.27.1' type='text/css' media='all' />
76 +<link rel='stylesheet' id='widget-text-editor-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.27.1' type='text/css' media='all' />
77 +<link rel='stylesheet' id='houzez-studio-css' href='https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/css/houzez-studio-public.css?ver=1.2.1' type='text/css' media='all' />
78 +<link rel='stylesheet' id='cmplz-general-css' href='https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/assets/css/cookieblocker.min.css?ver=1736710567' type='text/css' media='all' />
79 +<link rel='stylesheet' id='houzez-all-css-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/css/all-css.css?ver=3.4.4' type='text/css' media='all' />
80 +<link rel='stylesheet' id='houzez-style-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/style.css?ver=3.4.4' type='text/css' media='all' />
81 +<style id='houzez-style-inline-css' type='text/css'>
82 +
83 + @media (min-width: 1200px) {
84 + .container {
85 + max-width: 1310px;
86 + }
87 + }
88 + .status-color-21 {
89 + background-color: #45962e;
90 + }
91 +
92 + .status-color-199 {
93 + background-color: #595959;
94 + }
95 +
96 + body {
97 + font-family: Roboto;
98 + font-size: 15px;
99 + font-weight: 400;
100 + line-height: 25px;
101 + text-transform: none;
102 + }
103 + .main-nav,
104 + .dropdown-menu,
105 + .login-register,
106 + .btn.btn-create-listing,
107 + .logged-in-nav,
108 + .btn-phone-number {
109 + font-family: Roboto;
110 + font-size: 14px;
111 + font-weight: 500;
112 + text-align: left;
113 + text-transform: none;
114 + }
115 +
116 + .btn,
117 + .ele-btn,
118 + .houzez-search-button,
119 + .houzez-submit-button,
120 + .form-control,
121 + .bootstrap-select .text,
122 + .sort-by-title,
123 + .woocommerce ul.products li.product .button {
124 + font-family: Roboto;
125 + font-size: 15px;
126 + }
127 +
128 + h1, h2, h3, h4, h5, h6, .item-title {
129 + font-family: Roboto;
130 + font-weight: 500;
131 + text-transform: inherit;
132 + }
133 +
134 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
135 + font-weight: 500;
136 + text-transform: inherit;
137 + text-align: inherit;
138 + }
139 +
140 + .top-bar-wrap {
141 + font-family: Roboto;
142 + font-size: 13px;
143 + font-weight: 300;
144 + line-height: 25px;
145 + text-align: left;
146 + text-transform: none;
147 + }
148 + .footer-wrap {
149 + font-family: Roboto;
150 + font-size: 14px;
151 + font-weight: 300;
152 + line-height: 25px;
153 + text-align: left;
154 + text-transform: none;
155 + }
156 +
157 + .header-v1 .header-inner-wrap,
158 + .header-v1 .navbar-logged-in-wrap {
159 + line-height: 60px;
160 + height: 60px;
161 + }
162 + .header-v2 .header-top .navbar {
163 + height: 110px;
164 + }
165 +
166 + .header-v2 .header-bottom .header-inner-wrap,
167 + .header-v2 .header-bottom .navbar-logged-in-wrap {
168 + line-height: 54px;
169 + height: 54px;
170 + }
171 +
172 + .header-v3 .header-top .header-inner-wrap,
173 + .header-v3 .header-top .header-contact-wrap {
174 + height: 80px;
175 + line-height: 80px;
176 + }
177 + .header-v3 .header-bottom .header-inner-wrap,
178 + .header-v3 .header-bottom .navbar-logged-in-wrap {
179 + line-height: 54px;
180 + height: 54px;
181 + }
182 + .header-v4 .header-inner-wrap,
183 + .header-v4 .navbar-logged-in-wrap {
184 + line-height: 90px;
185 + height: 90px;
186 + }
187 + .header-v5 .header-top .header-inner-wrap,
188 + .header-v5 .header-top .navbar-logged-in-wrap {
189 + line-height: 110px;
190 + height: 110px;
191 + }
192 + .header-v5 .header-bottom .header-inner-wrap {
193 + line-height: 54px;
194 + height: 54px;
195 + }
196 + .header-v6 .header-inner-wrap,
197 + .header-v6 .navbar-logged-in-wrap {
198 + height: 60px;
199 + line-height: 60px;
200 + }
201 + @media (min-width: 1200px) {
202 + .header-v5 .header-top .container {
203 + max-width: 1170px;
204 + }
205 + }
206 +
207 + body,
208 + .main-wrap,
209 + .fw-property-documents-wrap h3 span,
210 + .fw-property-details-wrap h3 span {
211 + background-color: #f7f7f7;
212 + }
213 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
214 + background-color: #ffffff;
215 + }
216 +
217 + body,
218 + .form-control,
219 + .bootstrap-select .text,
220 + .item-title a,
221 + .listing-tabs .nav-tabs .nav-link,
222 + .item-wrap-v2 .item-amenities li span,
223 + .item-wrap-v2 .item-amenities li:before,
224 + .item-parallax-wrap .item-price-wrap,
225 + .list-view .item-body .item-price-wrap,
226 + .property-slider-item .item-price-wrap,
227 + .page-title-wrap .item-price-wrap,
228 + .agent-information .agent-phone span a,
229 + .property-overview-wrap ul li strong,
230 + .mobile-property-title .item-price-wrap .item-price,
231 + .fw-property-features-left li a,
232 + .lightbox-content-wrap .item-price-wrap,
233 + .blog-post-item-v1 .blog-post-title h3 a,
234 + .blog-post-content-widget h4 a,
235 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
236 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
237 + .agent-list-wrap .agent-list-content h2 a,
238 + .agent-list-wrap .agent-list-contact li a,
239 + .agent-contacts-wrap li a,
240 + .menu-edit-property li a,
241 + .statistic-referrals-list li a,
242 + .chart-nav .nav-pills .nav-link,
243 + .dashboard-table-properties td .property-payment-status,
244 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
245 + .payment-method-block .radio-tab .control-text,
246 + .post-title-wrap h2 a,
247 + .lead-nav-tab.nav-pills .nav-link,
248 + .deals-nav-tab.nav-pills .nav-link,
249 + .btn-light-grey-outlined:hover,
250 + button:not(.bs-placeholder) .filter-option-inner-inner,
251 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
252 + .products > .product > .item-body > a,
253 + .woocommerce ul.products li.product .price,
254 + .woocommerce div.product p.price,
255 + .woocommerce div.product span.price,
256 + .woocommerce #reviews #comments ol.commentlist li .meta,
257 + .woocommerce-MyAccount-navigation ul li a,
258 + .activitiy-item-close-button a,
259 + .property-section-wrap li a {
260 + color: #222222;
261 + }
262 +
263 +
264 +
265 + a,
266 + a:hover,
267 + a:active,
268 + a:focus,
269 + .primary-text,
270 + .btn-clear,
271 + .btn-apply,
272 + .btn-primary-outlined,
273 + .btn-primary-outlined:before,
274 + .item-title a:hover,
275 + .sort-by .bootstrap-select .bs-placeholder,
276 + .sort-by .bootstrap-select > .btn,
277 + .sort-by .bootstrap-select > .btn:active,
278 + .page-link,
279 + .page-link:hover,
280 + .accordion-title:before,
281 + .blog-post-content-widget h4 a:hover,
282 + .agent-list-wrap .agent-list-content h2 a:hover,
283 + .agent-list-wrap .agent-list-contact li a:hover,
284 + .agent-contacts-wrap li a:hover,
285 + .agent-nav-wrap .nav-pills .nav-link,
286 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
287 + .menu-edit-property li a.active,
288 + .menu-edit-property li a:hover,
289 + .dashboard-statistic-block h3 .fa,
290 + .statistic-referrals-list li a:hover,
291 + .chart-nav .nav-pills .nav-link.active,
292 + .board-message-icon-wrap.active,
293 + .post-title-wrap h2 a:hover,
294 + .listing-switch-view .switch-btn.active,
295 + .item-wrap-v6 .item-price-wrap,
296 + .listing-v6 .list-view .item-body .item-price-wrap,
297 + .woocommerce nav.woocommerce-pagination ul li a,
298 + .woocommerce nav.woocommerce-pagination ul li span,
299 + .woocommerce-MyAccount-navigation ul li a:hover,
300 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
301 + .property-schedule-tour-form-wrap .control:hover,
302 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
303 + .login-register .btn-icon-login-register + .dropdown-menu a,
304 + .activitiy-item-close-button a:hover,
305 + .property-section-wrap li a:hover,
306 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active,
307 + .property-lightbox-v2-sections-navigation .slick-prev,
308 + .property-lightbox-v2-sections-navigation .slick-next,
309 + .property-lightbox-v2-sections-navigation .slick-slide.current-section,
310 + .property-lightbox-v2-sections-navigation .nav-link.active,
311 + .agent-detail-page-v2 .listing-tabs .nav-link.active {
312 + color: #014582;
313 + }
314 +
315 + .agent-list-position a {
316 + color: #014582;
317 + }
318 +
319 + .control input:checked ~ .control__indicator,
320 + .top-banner-wrap .nav-pills .nav-link,
321 + .btn-primary-outlined:hover,
322 + .page-item.active .page-link,
323 + .slick-prev:hover,
324 + .slick-prev:focus,
325 + .slick-next:hover,
326 + .slick-next:focus,
327 + .mobile-property-tools .nav-pills .nav-link.active,
328 + .login-register-form .modal-header,
329 + .agent-nav-wrap .nav-pills .nav-link.active,
330 + .board-message-icon-wrap .notification-circle,
331 + .primary-label,
332 + .fc-event, .fc-event-dot,
333 + .compare-table .table-hover > tbody > tr:hover,
334 + .post-tag,
335 + .datepicker table tr td.active.active,
336 + .datepicker table tr td.active.disabled,
337 + .datepicker table tr td.active.disabled.active,
338 + .datepicker table tr td.active.disabled.disabled,
339 + .datepicker table tr td.active.disabled:active,
340 + .datepicker table tr td.active.disabled:hover,
341 + .datepicker table tr td.active.disabled:hover.active,
342 + .datepicker table tr td.active.disabled:hover.disabled,
343 + .datepicker table tr td.active.disabled:hover:active,
344 + .datepicker table tr td.active.disabled:hover:hover,
345 + .datepicker table tr td.active.disabled:hover[disabled],
346 + .datepicker table tr td.active.disabled[disabled],
347 + .datepicker table tr td.active:active,
348 + .datepicker table tr td.active:hover,
349 + .datepicker table tr td.active:hover.active,
350 + .datepicker table tr td.active:hover.disabled,
351 + .datepicker table tr td.active:hover:active,
352 + .datepicker table tr td.active:hover:hover,
353 + .datepicker table tr td.active:hover[disabled],
354 + .datepicker table tr td.active[disabled],
355 + .ui-slider-horizontal .ui-slider-range,
356 + .btn-bubble {
357 + background-color: #014582;
358 + }
359 +
360 + .control input:checked ~ .control__indicator,
361 + .btn-primary-outlined,
362 + .page-item.active .page-link,
363 + .mobile-property-tools .nav-pills .nav-link.active,
364 + .agent-nav-wrap .nav-pills .nav-link,
365 + .agent-nav-wrap .nav-pills .nav-link.active,
366 + .chart-nav .nav-pills .nav-link.active,
367 + .dashaboard-snake-nav .step-block.active,
368 + .fc-event,
369 + .fc-event-dot,
370 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
371 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
372 + border-color: #014582;
373 + }
374 +
375 + .slick-arrow:hover {
376 + background-color: rgba(36,52,140,0.52);
377 + }
378 +
379 + .slick-arrow {
380 + background-color: #014582;
381 + }
382 +
383 + .property-banner .nav-pills .nav-link.active {
384 + background-color: rgba(36,52,140,0.52) !important;
385 + }
386 +
387 + .property-navigation-wrap a.active {
388 + color: #014582;
389 + -webkit-box-shadow: inset 0 -3px #014582;
390 + box-shadow: inset 0 -3px #014582;
391 + }
392 +
393 + .btn-primary,
394 + .fc-button-primary,
395 + .woocommerce nav.woocommerce-pagination ul li a:focus,
396 + .woocommerce nav.woocommerce-pagination ul li a:hover,
397 + .woocommerce nav.woocommerce-pagination ul li span.current {
398 + color: #fff;
399 + background-color: #014582;
400 + border-color: #014582;
401 + }
402 + .btn-primary:focus, .btn-primary:focus:active,
403 + .fc-button-primary:focus,
404 + .fc-button-primary:focus:active {
405 + color: #fff;
406 + background-color: #014582;
407 + border-color: #014582;
408 + }
409 + .btn-primary:hover,
410 + .fc-button-primary:hover {
411 + color: #fff;
412 + background-color: #24348c;
413 + border-color: #24348c;
414 + }
415 + .btn-primary:active,
416 + .btn-primary:not(:disabled):not(:disabled):active,
417 + .fc-button-primary:active,
418 + .fc-button-primary:not(:disabled):not(:disabled):active {
419 + color: #fff;
420 + background-color: #24348c;
421 + border-color: #24348c;
422 + }
423 +
424 + .btn-secondary,
425 + .woocommerce span.onsale,
426 + .woocommerce ul.products li.product .button,
427 + .woocommerce #respond input#submit.alt,
428 + .woocommerce a.button.alt,
429 + .woocommerce button.button.alt,
430 + .woocommerce input.button.alt,
431 + .woocommerce #review_form #respond .form-submit input,
432 + .woocommerce #respond input#submit,
433 + .woocommerce a.button,
434 + .woocommerce button.button,
435 + .woocommerce input.button {
436 + color: #fff;
437 + background-color: #2ea7b2;
438 + border-color: #2ea7b2;
439 + }
440 + .woocommerce ul.products li.product .button:focus,
441 + .woocommerce ul.products li.product .button:active,
442 + .woocommerce #respond input#submit.alt:focus,
443 + .woocommerce a.button.alt:focus,
444 + .woocommerce button.button.alt:focus,
445 + .woocommerce input.button.alt:focus,
446 + .woocommerce #respond input#submit.alt:active,
447 + .woocommerce a.button.alt:active,
448 + .woocommerce button.button.alt:active,
449 + .woocommerce input.button.alt:active,
450 + .woocommerce #review_form #respond .form-submit input:focus,
451 + .woocommerce #review_form #respond .form-submit input:active,
452 + .woocommerce #respond input#submit:active,
453 + .woocommerce a.button:active,
454 + .woocommerce button.button:active,
455 + .woocommerce input.button:active,
456 + .woocommerce #respond input#submit:focus,
457 + .woocommerce a.button:focus,
458 + .woocommerce button.button:focus,
459 + .woocommerce input.button:focus {
460 + color: #fff;
461 + background-color: #2ea7b2;
462 + border-color: #2ea7b2;
463 + }
464 + .btn-secondary:hover,
465 + .woocommerce ul.products li.product .button:hover,
466 + .woocommerce #respond input#submit.alt:hover,
467 + .woocommerce a.button.alt:hover,
468 + .woocommerce button.button.alt:hover,
469 + .woocommerce input.button.alt:hover,
470 + .woocommerce #review_form #respond .form-submit input:hover,
471 + .woocommerce #respond input#submit:hover,
472 + .woocommerce a.button:hover,
473 + .woocommerce button.button:hover,
474 + .woocommerce input.button:hover {
475 + color: #fff;
476 + background-color: #333333;
477 + border-color: #333333;
478 + }
479 + .btn-secondary:active,
480 + .btn-secondary:not(:disabled):not(:disabled):active {
481 + color: #fff;
482 + background-color: #333333;
483 + border-color: #333333;
484 + }
485 +
486 + .btn-primary-outlined {
487 + color: #014582;
488 + background-color: transparent;
489 + border-color: #014582;
490 + }
491 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
492 + color: #014582;
493 + background-color: transparent;
494 + border-color: #014582;
495 + }
496 + .btn-primary-outlined:hover {
497 + color: #fff;
498 + background-color: #24348c;
499 + border-color: #24348c;
500 + }
501 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
502 + color: #014582;
503 + background-color: rgba(26, 26, 26, 0);
504 + border-color: #24348c;
505 + }
506 +
507 + .btn-secondary-outlined {
508 + color: #2ea7b2;
509 + background-color: transparent;
510 + border-color: #2ea7b2;
511 + }
512 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
513 + color: #2ea7b2;
514 + background-color: transparent;
515 + border-color: #2ea7b2;
516 + }
517 + .btn-secondary-outlined:hover {
518 + color: #fff;
519 + background-color: #333333;
520 + border-color: #333333;
521 + }
522 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
523 + color: #2ea7b2;
524 + background-color: rgba(26, 26, 26, 0);
525 + border-color: #333333;
526 + }
527 +
528 + .btn-call {
529 + color: #2ea7b2;
530 + background-color: transparent;
531 + border-color: #2ea7b2;
532 + }
533 + .btn-call:focus, .btn-call:focus:active {
534 + color: #2ea7b2;
535 + background-color: transparent;
536 + border-color: #2ea7b2;
537 + }
538 + .btn-call:hover {
539 + color: #2ea7b2;
540 + background-color: rgba(26, 26, 26, 0);
541 + border-color: #333333;
542 + }
543 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
544 + color: #2ea7b2;
545 + background-color: rgba(26, 26, 26, 0);
546 + border-color: #333333;
547 + }
548 + .icon-delete .btn-loader:after{
549 + border-color: #014582 transparent #014582 transparent
550 + }
551 +
552 + .header-v1 {
553 + background-color: #004274;
554 + border-bottom: 1px solid #004274;
555 + }
556 +
557 + .header-v1 a.nav-link {
558 + color: #ffffff;
559 + }
560 +
561 + .header-v1 a.nav-link:hover,
562 + .header-v1 a.nav-link:active {
563 + color: #00aeff;
564 + background-color: rgba(255,255,255,0.2);
565 + }
566 + .header-desktop .main-nav .nav-link {
567 + letter-spacing: 0.0px;
568 + }
569 +
570 + .header-v2 .header-top,
571 + .header-v5 .header-top,
572 + .header-v2 .header-contact-wrap {
573 + background-color: #ffffff;
574 + }
575 +
576 + .header-v2 .header-bottom,
577 + .header-v5 .header-bottom {
578 + background-color: #004274;
579 + }
580 +
581 + .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 {
582 + color: #004274;
583 + }
584 +
585 + .header-v2 .header-contact-left {
586 + color: #004274;
587 + }
588 +
589 + .header-v2 .header-bottom,
590 + .header-v2 .navbar-nav > li,
591 + .header-v2 .navbar-nav > li:first-of-type,
592 + .header-v5 .header-bottom,
593 + .header-v5 .navbar-nav > li,
594 + .header-v5 .navbar-nav > li:first-of-type {
595 + border-color: rgba(255,255,255,0.2);
596 + }
597 +
598 + .header-v2 a.nav-link,
599 + .header-v5 a.nav-link {
600 + color: #ffffff;
601 + }
602 +
603 + .header-v2 a.nav-link:hover,
604 + .header-v2 a.nav-link:active,
605 + .header-v5 a.nav-link:hover,
606 + .header-v5 a.nav-link:active {
607 + color: #00aeff;
608 + background-color: rgba(255,255,255,0.2);
609 + }
610 +
611 + .header-v2 .header-contact-right a:hover,
612 + .header-v2 .header-contact-right a:active,
613 + .header-v3 .header-contact-right a:hover,
614 + .header-v3 .header-contact-right a:active {
615 + background-color: transparent;
616 + }
617 +
618 + .header-v2 .header-social-icons a,
619 + .header-v5 .header-social-icons a {
620 + color: #004274;
621 + }
622 +
623 + .header-v3 .header-top {
624 + background-color: #ffffff;
625 + }
626 +
627 + .header-v3 .header-bottom {
628 + background-color: #004272;
629 + }
630 +
631 + .header-v3 .header-contact,
632 + .header-v3-mobile {
633 + background-color: #00aeef;
634 + color: #ffffff;
635 + }
636 +
637 + .header-v3 .header-bottom,
638 + .header-v3 .login-register,
639 + .header-v3 .navbar-nav > li,
640 + .header-v3 .navbar-nav > li:first-of-type {
641 + border-color: ;
642 + }
643 +
644 + .header-v3 a.nav-link,
645 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
646 + color: #003a6b;
647 + }
648 +
649 + .header-v3 a.nav-link:hover,
650 + .header-v3 a.nav-link:active {
651 + color: #00aeff;
652 + background-color: rgba(26,94,158,1);
653 + }
654 +
655 + .header-v3 .header-social-icons a {
656 + color: #FFFFFF;
657 + }
658 +
659 + .header-v4 {
660 + background-color: #000000;
661 + }
662 +
663 + .header-v4 a.nav-link {
664 + color: #ffffff;
665 + }
666 +
667 + .header-v4 a.nav-link:hover,
668 + .header-v4 a.nav-link:active {
669 + color: #00aeff;
670 + background-color: rgba(0, 174, 255, 0.1);
671 + }
672 +
673 + .header-v6 .header-top {
674 + background-color: #00AEEF;
675 + }
676 +
677 + .header-v6 a.nav-link {
678 + color: #FFFFFF;
679 + }
680 +
681 + .header-v6 a.nav-link:hover,
682 + .header-v6 a.nav-link:active {
683 + color: #00aeff;
684 + background-color: rgba(255,255,255,0.2);
685 + }
686 +
687 + .header-v6 .header-social-icons a {
688 + color: #FFFFFF;
689 + }
690 +
691 + .header-mobile {
692 + background-color: #ffffff;
693 + }
694 + .header-mobile .toggle-button-left,
695 + .header-mobile .toggle-button-right {
696 + color: #0b0049;
697 + }
698 +
699 + .nav-mobile .logged-in-nav a,
700 + .nav-mobile .main-nav,
701 + .nav-mobile .navi-login-register {
702 + background-color: #ffffff;
703 + }
704 +
705 + .nav-mobile .logged-in-nav a,
706 + .nav-mobile .main-nav .nav-item .nav-item a,
707 + .nav-mobile .main-nav .nav-item a,
708 + .navi-login-register .main-nav .nav-item a {
709 + color: #000000;
710 + border-bottom: 1px solid #000000;
711 + background-color: #ffffff;
712 + }
713 +
714 + .nav-mobile .btn-create-listing,
715 + .navi-login-register .btn-create-listing {
716 + color: #fff;
717 + border: 1px solid #014582;
718 + background-color: #014582;
719 + }
720 +
721 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
722 + .navi-login-register .btn-create-listing:hover,
723 + .navi-login-register .btn-create-listing:active {
724 + color: #fff;
725 + border: 1px solid #014582;
726 + background-color: rgba(0, 174, 255, 0.65);
727 + }
728 +
729 + .header-transparent-wrap .header-v4 {
730 + background-color: transparent;
731 + border-bottom: 1px none rgba(255,255,255,0.3);
732 + }
733 +
734 + .header-transparent-wrap .header-v4 a {
735 + color: #ffffff;
736 + }
737 +
738 + .header-transparent-wrap .header-v4 a:hover,
739 + .header-transparent-wrap .header-v4 a:active {
740 + color: #4aa7e1;
741 + background-color: rgba(255, 255, 255, 0.1);
742 + }
743 +
744 + .main-nav .navbar-nav .nav-item .dropdown-menu,
745 + .login-register .login-register-nav li .dropdown-menu {
746 + background-color: rgba(255,255,255,0.95);
747 + }
748 +
749 + .login-register .login-register-nav li .dropdown-menu:before {
750 + border-left-color: rgba(255,255,255,0.95);
751 + border-top-color: rgba(255,255,255,0.95);
752 + }
753 +
754 + .main-nav .navbar-nav .nav-item .nav-item a,
755 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
756 + color: #888888;
757 + border-bottom: 1px solid #e6e6e6;
758 + }
759 +
760 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
761 + .main-nav .navbar-nav .nav-item .nav-item a:active,
762 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
763 + color: #4aa7e1;
764 + }
765 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
766 + .main-nav .navbar-nav .nav-item .nav-item a:active,
767 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
768 + background-color: rgba(0, 174, 255, 0.1);
769 + }
770 +
771 + .header-main-wrap .btn-create-listing {
772 + color: #4aa7e1;
773 + border: 1px solid #4aa7e1;
774 + background-color: #ffffff;
775 + }
776 +
777 + .header-main-wrap .btn-create-listing:hover,
778 + .header-main-wrap .btn-create-listing:active {
779 + color: rgba(255,255,255,1);
780 + border: 1px solid #4aa7e1;
781 + background-color: rgba(74,167,225,1);
782 + }
783 +
784 + .header-transparent-wrap .header-v4 .btn-create-listing {
785 + color: #ffffff;
786 + border: 1px solid #ffffff;
787 + background-color: rgba(255,255,255,0.2);
788 + }
789 +
790 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
791 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
792 + color: rgba(255,255,255,1);
793 + border: 1px solid #4aa7e1;
794 + background-color: rgba(74,167,225,1);
795 + }
796 +
797 + .header-transparent-wrap .logged-in-nav a,
798 + .logged-in-nav a {
799 + color: #15268c;
800 + border-color: #e6e6e6;
801 + background-color: #FFFFFF;
802 + }
803 +
804 + .header-transparent-wrap .logged-in-nav a:hover,
805 + .header-transparent-wrap .logged-in-nav a:active,
806 + .logged-in-nav a:hover,
807 + .logged-in-nav a:active {
808 + color: #17298c;
809 + background-color: rgba(204,204,204,0.15);
810 + border-color: #e6e6e6;
811 + }
812 +
813 + .form-control::-webkit-input-placeholder,
814 + .search-banner-wrap ::-webkit-input-placeholder,
815 + .advanced-search ::-webkit-input-placeholder,
816 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
817 + .overlay-search-advanced-module ::-webkit-input-placeholder {
818 + color: #a1a7a8;
819 + }
820 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
821 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
822 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
823 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
824 + color: #a1a7a8;
825 + }
826 + .form-control::placeholder,
827 + .search-banner-wrap ::-webkit-input-placeholder,
828 + .advanced-search ::-webkit-input-placeholder,
829 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
830 + .overlay-search-advanced-module ::-webkit-input-placeholder {
831 + color: #a1a7a8;
832 + }
833 +
834 + .search-banner-wrap ::-moz-placeholder,
835 + .advanced-search ::-moz-placeholder,
836 + .advanced-search-banner-wrap ::-moz-placeholder,
837 + .overlay-search-advanced-module ::-moz-placeholder {
838 + color: #a1a7a8;
839 + }
840 +
841 + .search-banner-wrap :-ms-input-placeholder,
842 + .advanced-search :-ms-input-placeholder,
843 + .advanced-search-banner-wrap ::-ms-input-placeholder,
844 + .overlay-search-advanced-module ::-ms-input-placeholder {
845 + color: #a1a7a8;
846 + }
847 +
848 + .search-banner-wrap :-moz-placeholder,
849 + .advanced-search :-moz-placeholder,
850 + .advanced-search-banner-wrap :-moz-placeholder,
851 + .overlay-search-advanced-module :-moz-placeholder {
852 + color: #a1a7a8;
853 + }
854 +
855 + .advanced-search .form-control,
856 + .advanced-search .bootstrap-select > .btn,
857 + .location-trigger,
858 + .vertical-search-wrap .form-control,
859 + .vertical-search-wrap .bootstrap-select > .btn,
860 + .step-search-wrap .form-control,
861 + .step-search-wrap .bootstrap-select > .btn,
862 + .advanced-search-banner-wrap .form-control,
863 + .advanced-search-banner-wrap .bootstrap-select > .btn,
864 + .search-banner-wrap .form-control,
865 + .search-banner-wrap .bootstrap-select > .btn,
866 + .overlay-search-advanced-module .form-control,
867 + .overlay-search-advanced-module .bootstrap-select > .btn,
868 + .advanced-search-v2 .advanced-search-btn,
869 + .advanced-search-v2 .advanced-search-btn:hover {
870 + border-color: #cccccc;
871 + }
872 +
873 + .advanced-search-nav,
874 + .search-expandable,
875 + .overlay-search-advanced-module {
876 + background-color: #FFFFFF;
877 + }
878 + .btn-search {
879 + color: #ffffff;
880 + background-color: #4aa7e1;
881 + border-color: #4aa7e1;
882 + }
883 + .btn-search:hover, .btn-search:active {
884 + color: #ffffff;
885 + background-color: #24348c;
886 + border-color: #24348c;
887 + }
888 + .advanced-search-btn {
889 + color: #666666;
890 + background-color: #ffffff;
891 + border-color: #dce0e0;
892 + }
893 + .advanced-search-btn:hover, .advanced-search-btn:active {
894 + color: #000000;
895 + background-color: #ffffff;
896 + border-color: #dce0e0;
897 + }
898 + .advanced-search-btn:focus {
899 + color: #666666;
900 + background-color: #ffffff;
901 + border-color: #dce0e0;
902 + }
903 + .search-expandable-label {
904 + color: #ffffff;
905 + background-color: #4aa7e1;
906 + }
907 + .advanced-search-nav {
908 + padding-top: 10px;
909 + padding-bottom: 10px;
910 + }
911 + .features-list-wrap .control--checkbox,
912 + .features-list-wrap .control--radio,
913 + .range-text,
914 + .features-list-wrap .control--checkbox,
915 + .features-list-wrap .btn-features-list,
916 + .overlay-search-advanced-module .search-title,
917 + .overlay-search-advanced-module .overlay-search-module-close {
918 + color: #222222;
919 + }
920 + .advanced-search-half-map {
921 + background-color: #FFFFFF;
922 + }
923 + .advanced-search-half-map .range-text,
924 + .advanced-search-half-map .features-list-wrap .control--checkbox,
925 + .advanced-search-half-map .features-list-wrap .btn-features-list {
926 + color: #222222;
927 + }
928 +
929 + .save-search-btn {
930 + border-color: #4aa7e1 ;
931 + background-color: #4aa7e1 ;
932 + color: #ffffff ;
933 + }
934 + .save-search-btn:hover,
935 + .save-search-btn:active {
936 + border-color: #4aa7e1;
937 + background-color: #4aa7e1 ;
938 + color: #ffffff ;
939 + }
940 + .label-featured {
941 + background-color: transparent;
942 + color: #ffffff;
943 + }
944 +
945 + .dashboard-side-wrap {
946 + background-color: #24348c;
947 + }
948 +
949 + .side-menu a {
950 + color: #ffffff;
951 + }
952 +
953 + .side-menu a.active,
954 + .side-menu .side-menu-parent-selected > a,
955 + .side-menu-dropdown a,
956 + .side-menu a:hover {
957 + color: #4aa7e1;
958 + }
959 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
960 + color: #4aa7e1
961 + }
962 +
963 + .detail-wrap {
964 + background-color: rgba(217,217,217,0.1);
965 + border-color: #d6d6d6;
966 + }
967 + .top-bar-wrap,
968 + .top-bar-wrap .dropdown-menu,
969 + .switcher-wrap .dropdown-menu {
970 + background-color: #262626;
971 + }
972 + .top-bar-wrap a,
973 + .top-bar-contact,
974 + .top-bar-slogan,
975 + .top-bar-wrap .btn,
976 + .top-bar-wrap .dropdown-menu,
977 + .switcher-wrap .dropdown-menu,
978 + .top-bar-wrap .navbar-toggler {
979 + color: #ffffff;
980 + }
981 + .top-bar-wrap a:hover,
982 + .top-bar-wrap a:active,
983 + .top-bar-wrap .btn:hover,
984 + .top-bar-wrap .btn:active,
985 + .top-bar-wrap .dropdown-menu li:hover,
986 + .top-bar-wrap .dropdown-menu li:active,
987 + .switcher-wrap .dropdown-menu li:hover,
988 + .switcher-wrap .dropdown-menu li:active {
989 + color: rgba(74,167,225,0.59);
990 + }
991 + .class-energy-indicator:nth-child(1) {
992 + background-color: #33a357;
993 + }
994 + .class-energy-indicator:nth-child(2) {
995 + background-color: #79b752;
996 + }
997 + .class-energy-indicator:nth-child(3) {
998 + background-color: #c3d545;
999 + }
1000 + .class-energy-indicator:nth-child(4) {
1001 + background-color: #fff12c;
1002 + }
1003 + .class-energy-indicator:nth-child(5) {
1004 + background-color: #edb731;
1005 + }
1006 + .class-energy-indicator:nth-child(6) {
1007 + background-color: #d66f2c;
1008 + }
1009 + .class-energy-indicator:nth-child(7) {
1010 + background-color: #cc232a;
1011 + }
1012 + .class-energy-indicator:nth-child(8) {
1013 + background-color: #cc232a;
1014 + }
1015 + .class-energy-indicator:nth-child(9) {
1016 + background-color: #cc232a;
1017 + }
1018 + .class-energy-indicator:nth-child(10) {
1019 + background-color: #cc232a;
1020 + }
1021 +
1022 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#24348c }
1023 + .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 }
1024 +
1025 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#4aa7e1 }
1026 +
1027 + .footer-top-wrap {
1028 + background-color: #181818;
1029 + }
1030 +
1031 + .footer-bottom-wrap {
1032 + background-color: #000000;
1033 + }
1034 +
1035 + .footer-top-wrap,
1036 + .footer-top-wrap a,
1037 + .footer-bottom-wrap,
1038 + .footer-bottom-wrap a,
1039 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
1040 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
1041 + .footer-top-wrap .blog-post-content-widget h4 a,
1042 + .footer-top-wrap .blog-post-content-widget,
1043 + .footer-top-wrap .form-tools .control,
1044 + .footer-top-wrap .slick-dots li.slick-active button:before,
1045 + .footer-top-wrap .slick-dots li button::before,
1046 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
1047 + color: #ffffff;
1048 + }
1049 +
1050 + .footer-top-wrap a:hover,
1051 + .footer-bottom-wrap a:hover,
1052 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
1053 + color: rgba(36,52,140,1);
1054 + }
1055 + .houzez-osm-cluster {
1056 + background-image: url(https://immeublesalexcellence.com/wp-content/themes/houzez/img/map/cluster-icon.png);
1057 + text-align: center;
1058 + color: #fff;
1059 + width: 48px;
1060 + height: 48px;
1061 + line-height: 48px;
1062 + }
1063 + section.top-banner-wrap.slider-revolution-wrap {
1064 + height: auto;
1065 +}
1066 +.label-status {
1067 + font-size: 14px;
1068 + text-transform: uppercase; /* Optionnel : Met les étiquettes en majuscules */
1069 +}
1070 +.hz-label {
1071 + font-size: 14px; /* Ajustez la taille selon vos besoins */
1072 + font-weight: bold; /* Rend le texte en gras */
1073 + color: #ffffff; /* Couleur du texte */
1074 + background-color: #166584; /* Couleur de fond */
1075 + padding: 5px 10px; /* Espacement interne */
1076 + border-radius: 3px; /* Coins arrondis */
1077 +}
1078 +</style>
1079 +<link rel='stylesheet' id='leaflet-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/js//vendors/leaflet/leaflet.css?ver=1.9.3' type='text/css' media='all' />
1080 +<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /></noscript><link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap&#038;ver=6.7.5' type='text/css' media='all' />
1081 +<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.27.1" id="font-awesome-4-shim-js"></script>
1082 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
1083 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
1084 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/js/houzez-studio-public.js?ver=1.2.1" id="houzez-studio-js"></script>
1085 +<link rel="https://api.w.org/" href="https://immeublesalexcellence.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://immeublesalexcellence.com/wp-json/wp/v2/properties/3252" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://immeublesalexcellence.com/xmlrpc.php?rsd" />
1086 +<meta name="generator" content="WordPress 6.7.5" />
1087 +<link rel='shortlink' href='https://immeublesalexcellence.com/?p=3252' />
1088 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F" />
1089 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&#038;format=xml" />
1090 +<meta name="generator" content="Redux 4.5.6" /> <style>.cmplz-hidden {
1091 + display: none !important;
1092 + }</style><meta name="generator" content="Elementor 3.27.1; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
1093 + <style>
1094 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1095 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1096 + background-image: none !important;
1097 + }
1098 + @media screen and (max-height: 1024px) {
1099 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1100 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1101 + background-image: none !important;
1102 + }
1103 + }
1104 + @media screen and (max-height: 640px) {
1105 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1106 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1107 + background-image: none !important;
1108 + }
1109 + }
1110 + </style>
1111 + <meta name="generator" content="Powered by Slider Revolution 6.7.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
1112 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-32x32.png" sizes="32x32" />
1113 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-192x192.png" sizes="192x192" />
1114 +<link rel="apple-touch-icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-180x180.png" />
1115 +<meta name="msapplication-TileImage" content="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-270x270.png" />
1116 +<script>function setREVStartSize(e){
1117 + //window.requestAnimationFrame(function() {
1118 + window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
1119 + window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
1120 + try {
1121 + var pw = document.getElementById(e.c).parentNode.offsetWidth,
1122 + newh;
1123 + pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw;
1124 + e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
1125 + e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
1126 + e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
1127 + e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
1128 + e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
1129 + e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
1130 + e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
1131 + if(e.layout==="fullscreen" || e.l==="fullscreen")
1132 + newh = Math.max(e.mh,window.RSIH);
1133 + else{
1134 + e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
1135 + for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
1136 + e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
1137 + e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
1138 + for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
1139 +
1140 + var nl = new Array(e.rl.length),
1141 + ix = 0,
1142 + sl;
1143 + e.tabw = e.tabhide>=pw ? 0 : e.tabw;
1144 + e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
1145 + e.tabh = e.tabhide>=pw ? 0 : e.tabh;
1146 + e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
1147 + for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
1148 + sl = nl[0];
1149 + for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
1150 + var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
1151 + newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
1152 + }
1153 + var el = document.getElementById(e.c);
1154 + if (el!==null && el) el.style.height = newh+"px";
1155 + el = document.getElementById(e.c+"_wrapper");
1156 + if (el!==null && el) {
1157 + el.style.height = newh+"px";
1158 + el.style.display = "block";
1159 + }
1160 + } catch(e){
1161 + console.log("Failure at Presize of Slider:" + e)
1162 + }
1163 + //});
1164 + };</script>
1165 +</head>
1166 +
1167 +<body data-cmplz=2 class="property-template-default single single-property postid-3252 houzez-theme houzez-footer-position transparent- houzez-header- elementor-default elementor-kit-6">
1168 +
1169 +
1170 + <div class="nav-mobile nav-mobile-js">
1171 + <div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile">
1172 + <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://immeublesalexcellence.com/">Accueil</a> </li>
1173 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1174 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1175 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1176 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1177 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1178 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1179 +</ul> </div><!-- main-nav -->
1180 + <nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user">
1181 +
1182 +
1183 +
1184 + </nav><!-- .navi -->
1185 +
1186 +
1187 +
1188 +</div><!-- nav-mobile -->
1189 + <main id="main-wrap" class="main-wrap main-wrap-js">
1190 +
1191 + <header class="header-main-wrap ">
1192 + <div class="top-bar-wrap ">
1193 + <div class="container">
1194 + <div class="d-flex justify-content-between">
1195 + <div class="top-bar-left-wrap">
1196 + <div class="header-social-icons">
1197 + <ul class="list-inline">
1198 +
1199 + <li class="list-inline-item">
1200 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1201 + <i class="houzez-icon icon-social-media-facebook"></i>
1202 + </a>
1203 + </li>
1204 +
1205 +
1206 +
1207 +
1208 +
1209 +
1210 +
1211 +
1212 + <li class="list-inline-item">
1213 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1214 + <i class="houzez-icon icon-social-instagram"></i>
1215 + </a>
1216 + </li>
1217 +
1218 +
1219 +
1220 +
1221 + </ul>
1222 +</div><!-- .header-social-icons -->
1223 + </div><!-- top-bar-left-wrap -->
1224 +
1225 + <div class="top-bar-right-wrap">
1226 + <div class="top-bar-contact">
1227 +
1228 + </div><!-- top-bar-contact --> </div><!-- top-bar-right-wrap -->
1229 + </div><!-- d-flex -->
1230 + </div><!-- container -->
1231 +</div><!-- top-bar-wrap --><div class="header-desktop header-v2">
1232 + <div class="header-top">
1233 + <div class="container">
1234 + <div class="header-inner-wrap">
1235 + <div class="navbar d-flex align-items-center">
1236 +
1237 +
1238 + <div class="logo logo-desktop">
1239 + <a href="https://immeublesalexcellence.com/">
1240 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="66,5px" width="218px" alt="logo">
1241 + </a>
1242 + </div>
1243 +
1244 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1245 +
1246 +
1247 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1248 + <div class="header-contact-left">
1249 + <i class="houzez-icon icon-phone ml-1"></i>
1250 + </div><!-- header-contact-left -->
1251 + <div class="header-contact-right">
1252 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1253 + <div><a href="mailto:"></a></div>
1254 + </div><!-- .header-contact-right -->
1255 + </div><!-- .header-contact -->
1256 +
1257 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1258 + <div class="header-contact-left">
1259 + <i class="houzez-icon icon-pin ml-1"></i>
1260 + </div><!-- header-contact-left -->
1261 + <div class="header-contact-right">
1262 + <div>1025, rue des Seigneurs, #301</div>
1263 + <div>Sherbrooke (Québec) J1H 5V3</div>
1264 + </div><!-- .header-contact-right -->
1265 + </div><!-- .header-contact -->
1266 +
1267 +
1268 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1269 + <div class="header-contact-left">
1270 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1271 + </div><!-- header-contact-left -->
1272 + <div class="header-contact-right">
1273 + <div>8 h 30 à 16 h 30</div>
1274 + <div>Lundi au jeudi</div>
1275 + </div><!-- .header-contact-right -->
1276 + </div><!-- .header-contact -->
1277 +
1278 +
1279 + <div class="header-contact header-contact-4 d-flex align-items-center">
1280 + <div class="header-social-icons">
1281 + <ul class="list-inline">
1282 +
1283 + <li class="list-inline-item">
1284 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1285 + <i class="houzez-icon icon-social-media-facebook"></i>
1286 + </a>
1287 + </li>
1288 +
1289 +
1290 +
1291 +
1292 +
1293 +
1294 +
1295 +
1296 + <li class="list-inline-item">
1297 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1298 + <i class="houzez-icon icon-social-instagram"></i>
1299 + </a>
1300 + </li>
1301 +
1302 +
1303 +
1304 +
1305 + </ul>
1306 +</div><!-- .header-social-icons -->
1307 + </div><!-- .header-contact -->
1308 +</div><!-- .header-contact-wrap -->
1309 +
1310 +
1311 + </div><!-- navbar -->
1312 + </div>
1313 + </div>
1314 + </div><!-- .header-top -->
1315 + <div id="header-section" class="header-bottom" data-sticky="1">
1316 + <div class="container">
1317 + <div class="header-inner-wrap">
1318 + <div class="navbar d-flex align-items-center">
1319 +
1320 + <nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1">
1321 + <ul id="main-nav" class="navbar-nav "><li id="menu-item-1535" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home nav-item menu-item-1535 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/">Accueil</a> </li>
1322 +<li id="menu-item-1809" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1809 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1323 +<li id="menu-item-1771" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1771 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1324 +<li id="menu-item-2352" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2352 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1325 +<li id="menu-item-2432" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2432 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1326 +<li id="menu-item-2426" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2426 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1327 +<li id="menu-item-2466" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2466 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1328 +</ul> </nav><!-- main-nav -->
1329 +
1330 + <div class="login-register on-hover-menu">
1331 + <ul class="login-register-nav dropdown d-flex align-items-center">
1332 +
1333 +
1334 +
1335 +
1336 +
1337 +
1338 + </ul>
1339 +</div>
1340 + </div><!-- navbar -->
1341 + </div>
1342 + </div>
1343 + </div><!-- .header-bottom -->
1344 +</div><!-- .header-v2 -->
1345 +
1346 +<div class="header-v2 header-v2-mobile">
1347 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1348 +
1349 +
1350 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1351 + <div class="header-contact-left">
1352 + <i class="houzez-icon icon-phone ml-1"></i>
1353 + </div><!-- header-contact-left -->
1354 + <div class="header-contact-right">
1355 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1356 + <div><a href="mailto:"></a></div>
1357 + </div><!-- .header-contact-right -->
1358 + </div><!-- .header-contact -->
1359 +
1360 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1361 + <div class="header-contact-left">
1362 + <i class="houzez-icon icon-pin ml-1"></i>
1363 + </div><!-- header-contact-left -->
1364 + <div class="header-contact-right">
1365 + <div>1025, rue des Seigneurs, #301</div>
1366 + <div>Sherbrooke (Québec) J1H 5V3</div>
1367 + </div><!-- .header-contact-right -->
1368 + </div><!-- .header-contact -->
1369 +
1370 +
1371 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1372 + <div class="header-contact-left">
1373 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1374 + </div><!-- header-contact-left -->
1375 + <div class="header-contact-right">
1376 + <div>8 h 30 à 16 h 30</div>
1377 + <div>Lundi au jeudi</div>
1378 + </div><!-- .header-contact-right -->
1379 + </div><!-- .header-contact -->
1380 +
1381 +
1382 + <div class="header-contact header-contact-4 d-flex align-items-center">
1383 + <div class="header-social-icons">
1384 + <ul class="list-inline">
1385 +
1386 + <li class="list-inline-item">
1387 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1388 + <i class="houzez-icon icon-social-media-facebook"></i>
1389 + </a>
1390 + </li>
1391 +
1392 +
1393 +
1394 +
1395 +
1396 +
1397 +
1398 +
1399 + <li class="list-inline-item">
1400 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1401 + <i class="houzez-icon icon-social-instagram"></i>
1402 + </a>
1403 + </li>
1404 +
1405 +
1406 +
1407 +
1408 + </ul>
1409 +</div><!-- .header-social-icons -->
1410 + </div><!-- .header-contact -->
1411 +</div><!-- .header-contact-wrap -->
1412 +
1413 +
1414 +
1415 +</div><!-- header-v2-mobile --><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky="">
1416 + <div class="header-mobile-left">
1417 + <button class="btn toggle-button-left">
1418 + <i class="houzez-icon icon-navigation-menu"></i>
1419 + </button><!-- toggle-button-left -->
1420 + </div><!-- .header-mobile-left -->
1421 + <div class="header-mobile-center flex-grow-1">
1422 + <div class="logo logo-mobile">
1423 + <a href="https://immeublesalexcellence.com/">
1424 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="39" width="127" alt="Mobile logo">
1425 + </a>
1426 +</div> </div>
1427 +
1428 + <div class="header-mobile-right">
1429 + </div><!-- .header-mobile-right -->
1430 +
1431 +</div><!-- header-mobile --></header><!-- .header-main-wrap -->
1432 +
1433 + <section class="content-wrap property-wrap property-detail-v6 ">
1434 + <div class="property-navigation-wrap">
1435 + <div class="container-fluid">
1436 + <ul class="property-navigation list-unstyled d-flex justify-content-between">
1437 + <li class="property-navigation-item">
1438 + <a class="back-top" href="#main-wrap">
1439 + <i class="houzez-icon icon-arrow-button-circle-up"></i>
1440 + </a>
1441 + </li>
1442 + <li class="property-navigation-item">
1443 + <a class="target" href="#property-description-wrap">Description du loyer</a>
1444 + </li><li class="property-navigation-item">
1445 + <a class="target" href="#property-virtual-tour-wrap">visite virtuelle 360°</a>
1446 + </li>
1447 + </ul>
1448 + </div><!-- container -->
1449 +</div><!-- property-navigation-wrap -->
1450 +<div class="page-title-wrap">
1451 + <div class="container">
1452 + <div class="d-flex align-items-center">
1453 +
1454 +<div class="breadcrumb-wrap">
1455 + <nav>
1456 + <ol class="breadcrumb"><li class="breadcrumb-item breadcrumb-item-home"><i class="houzez-icon icon-house"></i><a href="https://immeublesalexcellence.com/">Accueil</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/"> 1er janvier 2027</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/a-louer/"> À LOUER</a></li><li class="breadcrumb-item active">Logement 1½ semi-meublé au pied du Mont-Bellevue</li></ol> </nav>
1457 +</div><!-- breadcrumb-wrap --> <ul class="item-tools">
1458 +
1459 + <li class="item-tool houzez-favorite">
1460 + <span class="add-favorite-js item-tool-favorite" data-listid="3252">
1461 + <i class="houzez-icon icon-love-it "></i>
1462 + </span><!-- item-tool-favorite -->
1463 + </li><!-- item-tool -->
1464 +
1465 + <li class="item-tool houzez-share">
1466 + <span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1467 + <i class="houzez-icon icon-share"></i>
1468 + </span><!-- item-tool-favorite -->
1469 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1470 +
1471 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F">
1472 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1473 +
1474 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F07%2FStudio-etudiant-universite-sherbrooke-2-1024x768.jpg&amp;description=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1475 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1476 +
1477 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&amp;t=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1478 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1479 +</a>
1480 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1481 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1482 +</a>
1483 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&title=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1484 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1485 +</a>
1486 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=Logement 1½ semi-meublé au pied du Mont-Bellevue&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F">
1487 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1488 +</a> </div>
1489 + </li><!-- item-tool -->
1490 +
1491 + <li class="item-tool houzez-print " data-propid="3252">
1492 + <span class="item-tool-compare">
1493 + <i class="houzez-icon icon-print-text"></i>
1494 + </span><!-- item-tool-compare -->
1495 + </li><!-- item-tool -->
1496 + </ul><!-- item-tools -->
1497 + </div><!-- d-flex -->
1498 + <div class="d-flex align-items-center property-title-price-wrap">
1499 + <div class="page-title">
1500 + <h1>Logement 1½ semi-meublé au pied du Mont-Bellevue</h1>
1501 +</div><!-- page-title --> <ul class="item-price-wrap hide-on-list">
1502 + <li class="item-price">650$/par mois</li></ul> </div><!-- d-flex -->
1503 + <div class="property-labels-wrap">
1504 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1505 + 1er janvier 2027
1506 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1507 + À LOUER
1508 + </a><a href="https://immeublesalexcellence.com/tag/1%c2%bd/" class="hz-label label label-color-200">
1509 +
1510 + </a> </div>
1511 + <address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>Sherbrooke</address> </div><!-- container -->
1512 +</div><!-- page-title-wrap --><div class="property-top-wrap">
1513 + <div class="property-banner">
1514 + <div class="visible-on-mobile">
1515 + <div class="tab-content" id="pills-tabContent">
1516 +
1517 + <div class="tab-pane show active" id="pills-gallery" role="tabpanel" aria-labelledby="pills-gallery-tab" style="background-image: url(https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-2.jpg);">
1518 + <div class="property-image-count visible-on-mobile"><i class="houzez-icon icon-picture-sun"></i> 6</div>
1519 + <a class="property-banner-trigger" data-toggle="modal" data-target="#property-lightbox" href="#"></a>
1520 + </div>
1521 +
1522 + <div class="tab-pane houzez-360-virtual-tour " id="pills-360tour" role="tabpanel" aria-labelledby="pills-360tour-tab">
1523 + <iframe width="768" height="576" src="https://embed.ricoh360.com/0c6dd261-38d0-4d30-b048-450bd3cb777b" frameborder="0" allowfullscreen loading="lazy"></iframe> </div>
1524 +
1525 +
1526 +
1527 +
1528 +
1529 +
1530 + </div><!-- tab-content -->
1531 + </div><!-- visible-on-mobile -->
1532 +
1533 + <div class="container hidden-on-mobile">
1534 + <div class="row">
1535 + <div class="col-md-8">
1536 + <a href="#" data-slider-no="1" data-image="0" class="houzez-trigger-popup-slider-js img-wrap-1" data-toggle="modal" data-target="#property-lightbox">
1537 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-1-1067x785.jpg" alt="">
1538 + </a>
1539 + </div><!-- col-md-8 -->
1540 +
1541 + <div class="col-md-4">
1542 + <a href="#" data-slider-no="2" data-image="1" data-toggle="modal" data-target="#property-lightbox" class="houzez-trigger-popup-slider-js swipebox img-wrap-2">
1543 +
1544 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-3-1067x785.jpg" alt="">
1545 + </a>
1546 +
1547 + <a href="#" data-slider-no="3" data-image="2" data-toggle="modal" data-target="#property-lightbox" class="houzez-trigger-popup-slider-js swipebox img-wrap-3">
1548 + <div class="img-wrap-3-text"><i class="houzez-icon icon-picture-sun mr-1"></i> 3 photos, voir plus </div>
1549 +
1550 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-4-1067x785.jpg" alt="">
1551 + </a>
1552 + </div><!-- col-md-4 -->
1553 + <a href="#" class="img-wrap-1 gallery-hidden">
1554 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-5-1067x785.jpg" alt="">
1555 + </a>
1556 + <a href="#" class="img-wrap-1 gallery-hidden">
1557 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-6-1067x785.jpg" alt="">
1558 + </a>
1559 + <a href="#" class="img-wrap-1 gallery-hidden">
1560 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-7-1067x785.jpg" alt="">
1561 + </a>
1562 +
1563 + <div class="col-md-12">
1564 + <div class="block-wrap">
1565 + <div class="d-flex property-overview-data">
1566 + <ul class="list-unstyled flex-fill">
1567 + <li class="property-overview-item"><strong>Loyer 1½</strong></li>
1568 + <li class="hz-meta-label property-overview-type">Nombre pièce</li>
1569 +
1570 + </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">Chambre de bain</li></ul> </div><!-- d-flex -->
1571 + </div><!-- block-wrap -->
1572 + </div><!-- col-md-12 -->
1573 + </div><!-- row -->
1574 + </div><!-- hidden-on-mobile -->
1575 + </div><!-- property-banner -->
1576 +
1577 +
1578 +</div><!-- property-top-wrap -->
1579 +
1580 + <div class="container">
1581 + <div class="row">
1582 + <div class="col-lg-12 col-md-12 bt-full-width-content-wrap">
1583 +
1584 + <div class="property-view">
1585 +
1586 + <div class="visible-on-mobile">
1587 + <div class="mobile-top-wrap">
1588 + <div class="mobile-property-tools houzez-media-tabs-4 clearfix">
1589 + <ul class="nav nav-pills" id="pills-tab" role="tablist">
1590 +
1591 + <li class="nav-item">
1592 + <a class="nav-link active" id="pills-gallery-tab" data-toggle="pill" href="#pills-gallery" role="tab" aria-controls="pills-gallery" aria-selected="true">
1593 + <i class="houzez-icon icon-picture-sun"></i>
1594 + </a>
1595 + </li>
1596 + <li class="nav-item">
1597 + <a class="nav-link " id="pills-360tour-tab" data-toggle="pill" href="#pills-360tour" role="tab" aria-controls="pills-360tour" aria-selected="true">
1598 + <i class="houzez-icon icon-surveillance-360-camera"></i>
1599 + </a>
1600 + </li>
1601 + </ul><!-- nav --> <ul class="item-tools">
1602 +
1603 + <li class="item-tool houzez-favorite">
1604 + <span class="add-favorite-js item-tool-favorite" data-listid="3252">
1605 + <i class="houzez-icon icon-love-it "></i>
1606 + </span><!-- item-tool-favorite -->
1607 + </li><!-- item-tool -->
1608 +
1609 + <li class="item-tool houzez-share">
1610 + <span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1611 + <i class="houzez-icon icon-share"></i>
1612 + </span><!-- item-tool-favorite -->
1613 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1614 +
1615 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F">
1616 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1617 +
1618 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F07%2FStudio-etudiant-universite-sherbrooke-2-1024x768.jpg&amp;description=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1619 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1620 +
1621 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&amp;t=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1622 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1623 +</a>
1624 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1625 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1626 +</a>
1627 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&title=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1628 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1629 +</a>
1630 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=Logement 1½ semi-meublé au pied du Mont-Bellevue&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F">
1631 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1632 +</a> </div>
1633 + </li><!-- item-tool -->
1634 +
1635 + <li class="item-tool houzez-print " data-propid="3252">
1636 + <span class="item-tool-compare">
1637 + <i class="houzez-icon icon-print-text"></i>
1638 + </span><!-- item-tool-compare -->
1639 + </li><!-- item-tool -->
1640 + </ul><!-- item-tools -->
1641 + </div><!-- mobile-property-tools -->
1642 + <div class="mobile-property-title clearfix">
1643 + <span class="labels-wrap labels-right">
1644 + <a href="https://immeublesalexcellence.com/statut/1er-janvier-2027/" class="label-status label status-color-213">
1645 + 1er janvier 2027
1646 + </a><a href="https://immeublesalexcellence.com/statut/a-louer/" class="label-status label status-color-21">
1647 + À LOUER
1648 + </a><a href="https://immeublesalexcellence.com/tag/1%c2%bd/" class="hz-label label label-color-200">
1649 +
1650 + </a>
1651 +</span>
1652 +
1653 + <div class="page-title">
1654 + <span class="item-title property-title-mobile">Logement 1½ semi-meublé au pied du Mont-Bellevue</span>
1655 +</div><!-- page-title -->
1656 + <address class="item-address"><i class="houzez-icon icon-pin mr-1"></i>Sherbrooke</address> <ul class="item-price-wrap hide-on-list">
1657 + <li class="item-price">650$/par mois</li></ul>
1658 + </div><!-- mobile-property-title -->
1659 + </div><!-- mobile-top-wrap -->
1660 +</div><!-- visible-on-mobile -->
1661 + <div class="property-description-wrap property-section-wrap" id="property-description-wrap">
1662 + <div class="block-wrap">
1663 + <div class="block-title-wrap">
1664 + <h2>Description du loyer</h2>
1665 + </div>
1666 + <div class="block-content-wrap">
1667 + <h2><strong>Beau 1½ semi-meublé (poêle/frigo) à louer à Sherbrooke, secteur de l&rsquo;Université et du Mont-Bellevue</strong></h2>
1668 +<p>Découvrez ce charmant <b>1½ rénové et semi-meublé</b> (poêle et réfrigérateur inclus), situé sur une rue paisible, <b>au pied du Mont-Bellevue</b>. L&#8217;emplacement de choix de cet immeuble tranquille vous permet de vous rendre <b>facilement à pied</b> aux différents services et d&rsquo;accéder directement aux sentiers du parc menant au campus de l’Université de Sherbrooke. Ce studio est <b>idéal pour les étudiants</b> à la recherche d&rsquo;un <b>milieu de vie pratique, offrant calme et confort</b>.</p>
1669 +<p><strong>Adresse :</strong> 1085 rue des Seigneurs, Sherbrooke (Québec), J1H 5V3</p>
1670 +<h3><strong>Caractéristiques principales du logement :</strong></h3>
1671 +<ul>
1672 +<li>Bel espace de vie lumineux.</li>
1673 +<li>Salle de bain entièrement rénové.</li>
1674 +<li>Une cuisine équipée d&rsquo;un poêle et d&rsquo;un réfrigérateur.</li>
1675 +</ul>
1676 +<h3><strong>Commodités de l&rsquo;Immeuble :</strong></h3>
1677 +<ul>
1678 +<li>Stationnement extérieur inclus (possibilité de louer un deuxième espace ($) selon disponibilité)</li>
1679 +<li>Entrée sécurisée avec intercom</li>
1680 +<li>Buanderie sur place ($)</li>
1681 +<li>Plancher en revêtement de béton pour une insonorisation optimale</li>
1682 +<li>Équipe de réparation disponible 24h/24</li>
1683 +</ul>
1684 +<hr />
1685 +<h3><strong>Avantages de la localisation :</strong></h3>
1686 +<p>Situé dans un emplacement stratégique, à proximité de :</p>
1687 +<ul>
1688 +<li>Université de Sherbrooke.</li>
1689 +<li>Parc du Mont-Bellevue.</li>
1690 +<li>Circuits d’autobus no.7 et no.11.</li>
1691 +<li>Accès rapide à l’autoroute.</li>
1692 +<li>Pharmacies, épiceries, dépanneurs.</li>
1693 +<li>Parcs et pistes cyclables.</li>
1694 +<li>Cafés, restaurants, et boutiques.</li>
1695 +</ul>
1696 +<p><strong>Informations importantes :</strong></p>
1697 +<ul>
1698 +<li><strong>Disponibilité :</strong> 1er septembre 2025 (<em>Possibilité de devancer la prise de possession du logement</em>)</li>
1699 +<li><strong>Loyer :</strong>  650$/mois</li>
1700 +<li><strong>Services inclus :</strong> Chauffage et eau chaude</li>
1701 +<li><strong>Semi-meublé : </strong>Poêle et réfrigérateur</li>
1702 +<li><strong>Bail de 12 mois</strong></li>
1703 +<li><strong>Non-fumeur</strong> (intérieur et extérieur)</li>
1704 +<li><strong><span style="color: initial;">Animaux interdits</span></strong></li>
1705 +<li><strong>Enquête de crédit obligatoire</strong></li>
1706 +</ul>
1707 +<p><strong>Contactez-nous dès aujourd’hui pour planifier votre visite et découvrir ce logement exceptionnel.</strong></p>
1708 +
1709 + </div>
1710 + </div>
1711 +</div><div class="property-virtual-tour-wrap property-section-wrap" id="property-virtual-tour-wrap">
1712 + <div class="block-wrap">
1713 + <div class="block-title-wrap d-flex justify-content-between align-items-center">
1714 + <h2>visite virtuelle 360°</h2>
1715 + </div><!-- block-title-wrap -->
1716 + <div class="block-content-wrap">
1717 + <div class="block-virtual-video-wrap">
1718 + <iframe width="768" height="576" src="https://embed.ricoh360.com/0c6dd261-38d0-4d30-b048-450bd3cb777b" frameborder="0" allowfullscreen loading="lazy"></iframe> </div>
1719 + </div><!-- block-content-wrap -->
1720 + </div><!-- block-wrap -->
1721 +</div><!-- property-virtual-tour-wrap -->
1722 +
1723 + </div><!-- property-view -->
1724 + </div><!-- bt-content-wrap -->
1725 +
1726 + </div><!-- row -->
1727 +
1728 +
1729 + </div><!-- container -->
1730 +
1731 +
1732 + </section><!-- listing-wrap -->
1733 +
1734 + <!-- end houzez_check_is_elementor -->
1735 +
1736 +</main><!-- .main-wrap start in header.php-->
1737 +
1738 +<footer class="footer-wrap footer-wrap-v1">
1739 +
1740 + <div class="footer-bottom-wrap footer-bottom-wrap-v1">
1741 + <div class="container">
1742 + <div class="d-flex justify-content-between">
1743 +
1744 + <div class="footer-copyright">
1745 + &copy; Immeubles Alexcellence - Tout droits réservés</div><!-- footer-copyright -->
1746 +
1747 +
1748 +
1749 + </div><!-- d-flex -->
1750 + </div><!-- container -->
1751 +</div><!-- footer-top-wrap --></footer><div class="back-to-top-wrap">
1752 + <a href="#top" id="scroll-top" class="btn btn-primary btn-back-to-top">
1753 + <i class="houzez-icon icon-arrow-up-1"></i>
1754 + </a>
1755 +</div><div id="compare-property-panel" class="compare-property-panel compare-property-panel-vertical compare-property-panel-right">
1756 +
1757 + <button class="compare-property-label" style="display: none;">
1758 + <span class="compare-count compare-label"></span>
1759 + <i class="houzez-icon icon-move-left-right"></i>
1760 + </button>
1761 +
1762 + <p><strong>Comparer les annonces</strong></p>
1763 +
1764 + <div class="compare-wrap"></div>
1765 +
1766 +
1767 + <a href="" class="compare-btn btn btn-primary btn-full-width mb-2">Comparer</a>
1768 + <button class="btn btn-grey-outlined btn-full-width close-compare-panel">Close</button>
1769 +</div><div class="modal fade login-register-form" id="login-register-form" tabindex="-1" role="dialog">
1770 + <div class="modal-dialog" role="document">
1771 + <div class="modal-content">
1772 + <div class="modal-header">
1773 + <div class="login-register-tabs">
1774 + <ul class="nav nav-tabs">
1775 + <li class="nav-item">
1776 + <a class="modal-toggle-1 nav-link" data-toggle="tab" href="#login-form-tab" role="tab">S&#039;identifier</a>
1777 + </li>
1778 +
1779 + </ul>
1780 + </div><!-- login-register-tabs -->
1781 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1782 + <span aria-hidden="true">&times;</span>
1783 + </button>
1784 + </div><!-- modal-header -->
1785 + <div class="modal-body">
1786 + <div class="tab-content">
1787 + <div class="tab-pane fade login-form-tab" id="login-form-tab" role="tabpanel">
1788 + <div id="hz-login-messages" class="hz-social-messages"></div>
1789 +<form>
1790 + <div class="login-form-wrap">
1791 + <div class="form-group">
1792 + <div class="form-group-field username-field">
1793 + <input class="form-control" name="username" placeholder="Username or Email" type="text" />
1794 + </div><!-- input-group -->
1795 + </div><!-- form-group -->
1796 + <div class="form-group">
1797 + <div class="form-group-field password-field">
1798 + <input class="form-control" name="password" placeholder="Mot de passe" type="password" />
1799 + </div><!-- input-group -->
1800 + </div><!-- form-group -->
1801 + </div><!-- login-form-wrap -->
1802 +
1803 + <div class="form-tools">
1804 + <div class="d-flex">
1805 + <label class="control control--checkbox flex-grow-1">
1806 + <input name="remember" type="checkbox">Remember me FR <span class="control__indicator"></span>
1807 + </label>
1808 + <a href="#" data-toggle="modal" data-target="#reset-password-form" data-dismiss="modal">Lost your password?</a>
1809 + </div><!-- d-flex -->
1810 + </div><!-- form-tools -->
1811 +
1812 + <div class="form-group captcha_wrapper houzez-grecaptcha-v3">
1813 + <div class="houzez_google_reCaptcha"></div>
1814 +</div>
1815 +
1816 + <input type="hidden" id="houzez_login_security" name="houzez_login_security" value="90509fca4b" /><input type="hidden" name="_wp_http_referer" value="/appartements/logement-1%C2%BD-semi-meuble-au-pied-du-mont-bellevue/" /> <input type="hidden" name="action" id="login_action" value="houzez_login">
1817 + <input type="hidden" name="redirect_to" value="https://immeublesalexcellence.com/appartements/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue/?login=success">
1818 + <button id="houzez-login-btn" type="submit" class="btn btn-primary btn-full-width">
1819 + <span class="btn-loader houzez-loader-js"></span> S&#039;identifier
1820 + </button>
1821 +</form>
1822 +
1823 +<div class="social-login-wrap">
1824 +
1825 + <button type="button" class="hz-facebook-login btn btn-facebook-login btn-full-width">
1826 + <span class="btn-loader houzez-loader-js"></span> Continue with Facebook </button>
1827 +
1828 + <button type="button" class="hz-google-login btn btn-google-plus-lined btn-full-width">
1829 + <span class="btn-loader houzez-loader-js"></span> <img class="google-icon" src="https://immeublesalexcellence.com/wp-content/themes/houzez/img/Google__G__Logo.svg"/> Sign in with google </button>
1830 +
1831 +</div>
1832 + </div><!-- login-form-tab -->
1833 + <div class="tab-pane fade register-form-tab" id="register-form-tab" role="tabpanel">
1834 + <div id="hz-register-messages" class="hz-social-messages"></div>
1835 +User registration is disabled for demo purpose. </div><!-- register-form-tab -->
1836 + </div><!-- tab-content -->
1837 + </div><!-- modal-body -->
1838 + </div><!-- modal-content -->
1839 + </div><!-- modal-dialog -->
1840 +</div><!-- login-register-form --><div class="modal fade reset-password-form" id="reset-password-form" tabindex="-1" role="dialog">
1841 + <div class="modal-dialog" role="document">
1842 + <div class="modal-content">
1843 + <div class="modal-header">
1844 + <div class="modal-title">Reset Password</div>
1845 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1846 + <span aria-hidden="true">&times;</span>
1847 + </button>
1848 + </div><!-- modal-header -->
1849 + <div class="modal-body">
1850 + <div id="reset_pass_msg"></div>
1851 + <p>Please enter your username or email address. You will receive a link to create a new password via email.</p>
1852 + <form>
1853 + <div class="form-group">
1854 + <input type="text" class="form-control forgot-password" name="user_login_forgot" id="user_login_forgot" placeholder="Enter your username or email" class="form-control">
1855 + </div>
1856 + <input type="hidden" id="fave_resetpassword_security" name="fave_resetpassword_security" value="eec590fff1" /><input type="hidden" name="_wp_http_referer" value="/appartements/logement-1%C2%BD-semi-meuble-au-pied-du-mont-bellevue/" /> <button type="button" id="houzez_forgetpass" class="btn btn-primary btn-block">
1857 + <span class="btn-loader houzez-loader-js"></span> Get new password </button>
1858 + </form>
1859 + </div><!-- modal-body -->
1860 + </div><!-- modal-content -->
1861 + </div><!-- modal-dialog -->
1862 +</div><!-- login-register-form --><div class="property-lightbox">
1863 + <div class="modal fade" id="houzez-listing-lightbox" tabindex="-1" role="dialog">
1864 + <div class="modal-dialog modal-dialog-centered" role="document">
1865 + <div id="hz-listing-model-content" class="modal-content">
1866 +
1867 + </div><!-- modal-content -->
1868 + </div><!-- modal-dialog -->
1869 + </div><!-- modal -->
1870 +</div><!-- property-lightbox --><div class="property-lightbox">
1871 + <div class="modal fade" id="property-lightbox" tabindex="-1" role="dialog">
1872 + <div class="modal-dialog modal-dialog-centered" role="document">
1873 + <div class="modal-content">
1874 + <div class="modal-header">
1875 + <div class="d-flex align-items-center">
1876 +
1877 + <div class="lightbox-logo">
1878 + <img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" alt="Logement 1½ semi-meublé au pied du Mont-Bellevue">
1879 + </div><!-- lightbox-logo -->
1880 +
1881 + <div class="lightbox-title flex-grow-1">
1882 +
1883 + </div><!-- lightbox-title -->
1884 + <div class="lightbox-tools">
1885 + <ul class="list-inline">
1886 + <li class="list-inline-item btn-favorite">
1887 + <a class="add-favorite-js" data-listid="3252" href="#"><i class="houzez-icon icon-love-it mr-2 "></i> <span class="display-none">Préféré</span></a>
1888 + </li>
1889 +
1890 + <li class="list-inline-item btn-share">
1891 + <a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="houzez-icon icon-share mr-2"></i> <span>Share</span></a>
1892 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1893 +
1894 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F">
1895 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1896 +
1897 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F07%2FStudio-etudiant-universite-sherbrooke-2-1024x768.jpg&amp;description=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1898 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1899 +
1900 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&amp;t=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1901 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook
1902 +</a>
1903 +<a class="dropdown-item" href="https://twitter.com/intent/tweet?text=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&via=Immeubles+Alexcellence" onclick="if(!document.getElementById('td_social_networks_buttons')){window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;}">
1904 + <i class="houzez-icon icon-x-logo-twitter-logo-2 mr-1"></i> Gazouillement
1905 +</a>
1906 +<a class="dropdown-item" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F&title=Logement+1%C2%BD+semi-meubl%C3%A9+au+pied+du+Mont-Bellevue&source=https%3A%2F%2Fimmeublesalexcellence.com%2F" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1907 + <i class="houzez-icon icon-professional-network-linkedin mr-1"></i> LinkedIn
1908 +</a>
1909 +<a class="dropdown-item" href="mailto:someone@example.com?Subject=Logement 1½ semi-meublé au pied du Mont-Bellevue&body=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-1%25c2%25bd-semi-meuble-au-pied-du-mont-bellevue%2F">
1910 + <i class="houzez-icon icon-envelope mr-1"></i>Email
1911 +</a> </div>
1912 + </li>
1913 + <li class="list-inline-item btn-email">
1914 + <a href="#"><i class="houzez-icon icon-envelope"></i></a>
1915 + </li>
1916 + </ul>
1917 + </div><!-- lightbox-tools -->
1918 + </div><!-- d-flex -->
1919 + <button type="button" class="close" data-dismiss="modal" aria-label="Close">
1920 + <span aria-hidden="true">&times;</span>
1921 + </button>
1922 + </div><!-- modal-header -->
1923 +
1924 + <div class="modal-body clearfix">
1925 + <div class="lightbox-gallery-wrap ">
1926 +
1927 + <a class="btn-expand">
1928 + <i class="houzez-icon icon-expand-3"></i>
1929 + </a>
1930 +
1931 + <div class="lightbox-gallery">
1932 + <div id="lightbox-slider-js" class="lightbox-slider">
1933 +
1934 + <div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-1.jpg" alt="" title="Studio-etudiant-universite-sherbrooke (1)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-3.jpg" alt="" title="Studio-etudiant-universite-sherbrooke (3)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-4.jpg" alt="" title="Studio-etudiant-universite-sherbrooke (4)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-5.jpg" alt="" title="Studio-etudiant-universite-sherbrooke (5)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-6.jpg" alt="" title="Studio-etudiant-universite-sherbrooke (6)"></div><div><img class="img-fluid" src="https://immeublesalexcellence.com/wp-content/uploads/2025/07/Studio-etudiant-universite-sherbrooke-7.jpg" alt="" title="Studio-etudiant-universite-sherbrooke (7)"></div>
1935 + </div>
1936 + </div><!-- lightbox-gallery -->
1937 +
1938 + </div><!-- lightbox-gallery-wrap -->
1939 +
1940 + <div class="lightbox-form-wrap">
1941 + </div><!-- lightbox-form-wrap -->
1942 + </div><!-- modal-body -->
1943 + <div class="modal-footer">
1944 +
1945 + </div><!-- modal-footer -->
1946 + </div><!-- modal-content -->
1947 + </div><!-- modal-dialog -->
1948 + </div><!-- modal -->
1949 +</div><!-- property-lightbox -->
1950 +
1951 +
1952 + <script>
1953 + window.RS_MODULES = window.RS_MODULES || {};
1954 + window.RS_MODULES.modules = window.RS_MODULES.modules || {};
1955 + window.RS_MODULES.waiting = window.RS_MODULES.waiting || [];
1956 + window.RS_MODULES.defered = true;
1957 + window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};
1958 + window.RS_MODULES.type = 'compiled';
1959 + </script>
1960 +
1961 +<!-- Consent Management powered by Complianz | GDPR/CCPA Cookie Consent https://wordpress.org/plugins/complianz-gdpr -->
1962 +<div id="cmplz-cookiebanner-container"><div class="cmplz-cookiebanner cmplz-hidden banner-1 parametres-de-confidentialite optin cmplz-bottom-right cmplz-categories-type-view-preferences" aria-modal="true" data-nosnippet="true" role="dialog" aria-live="polite" aria-labelledby="cmplz-header-1-optin" aria-describedby="cmplz-message-1-optin">
1963 + <div class="cmplz-header">
1964 + <div class="cmplz-logo"><?xml version="1.0" encoding="utf-8"?>
1965 +<!-- Generator: Adobe Illustrator 27.6.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
1966 +<svg version="1.1" id="uuid-7dd7b5b8-c5e0-4d79-ad53-47e9a05e6f8e"
1967 + xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1354.3 343"
1968 + style="enable-background:new 0 0 1354.3 343;" xml:space="preserve">
1969 +<style type="text/css">
1970 + .st0{fill:#009FFF;}
1971 + .st1{fill:#333333;}
1972 +</style>
1973 +<path class="st0" d="M663.5,62.7c-17.7,0-36,7.4-44.2,19v-15h-52.7V274h52.7v-75.8c8.2,11.6,26.5,19,44.2,19
1974 + c41.1,0,68.6-37.4,68.6-77.5S704.6,62.7,663.5,62.7L663.5,62.7L663.5,62.7z M649.6,174.1c-18,0-30.3-13.9-30.3-33.7
1975 + s11.9-34.7,30.3-34.7c17.4,0,29.9,14.6,29.9,34.7S666.9,174.1,649.6,174.1z M499.6,62.7c-24.5,0-39,10.8-49.3,24.1
1976 + c-8.5-14.6-21.8-24.1-44.8-24.1c-17.3,0-30.6,5.1-40.4,19.3V66.8h-52.7v146.4H365v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9
1977 + v75.4h52.7v-77.1c0-16.9,5.8-29.2,22.4-29.2s19,11.2,19,30.9v75.4h52.7v-88.2C553.2,90.2,538.9,62.7,499.6,62.7L499.6,62.7
1978 + L499.6,62.7z M221.3,62.7c-42.1,0-78.8,33.7-78.8,77.1s36,77.5,79.1,77.5s78.8-34.3,78.8-77.8S264.1,62.7,221.3,62.7L221.3,62.7
1979 + L221.3,62.7z M221.6,175.5c-18.4,0-27.9-18.7-27.9-35.6s9.5-35.3,27.5-35.3c19,0,27.9,18.7,27.9,35S240,175.5,221.6,175.5
1980 + L221.6,175.5L221.6,175.5z M79.6,175.8c-19,0-31.6-17.7-31.6-35.3c0-20.8,12.9-36,31.6-36c10.8,0,20.8,4.4,29.2,13.6l30.3-28.2
1981 + c-15.6-18.7-34.7-27.2-59.5-27.2C32.7,62.7-0.9,98-0.9,140.5s34.3,76.7,80.6,76.7c28.5,0,46.6-9.5,64.2-31.6l-35.3-24.8
1982 + C100.4,170.4,93.2,175.8,79.6,175.8L79.6,175.8L79.6,175.8z M1139,62.7c-17.4,0-32.6,6.4-42.1,19.3V66.7h-52.7v146.4h52.7v-77.1
1983 + c0-18,8.8-29.2,24.2-29.2s20.8,11.2,20.8,30.9v75.4h52.7v-88.1C1194.5,90.2,1178.5,62.7,1139,62.7L1139,62.7L1139,62.7z M958.2,62.7
1984 + c-26.5,0-50.9,4-70.3,15l16.3,31.6c15.3-7.9,31.9-12.6,52.3-12.6c15,0,21.8,3.4,21.8,13.6v5.1c-47.5,2.1-103.6,10.8-103.6,56.4
1985 + c0,27.9,24.8,45.5,53,45.5c25.5,0,34.7-4.1,50.6-15.3v11.2h52.7v-93.1C1030.9,78.3,1006.7,62.7,958.2,62.7L958.2,62.7L958.2,62.7z
1986 + M978.2,169.4c-8.5,7.4-17.4,10.5-30.6,10.5c-8.5,0-17-5.1-17-13.6c0-16.3,25.1-21.4,47.5-21.4V169.4z M744,213.2h52.7V1.7H744
1987 + V213.2L744,213.2z M1282.8,172.9l70.5-106.2h-143.7v40.8h53.7c4.8,0,8.8-0.3,8.8-0.3s-3.4,3.7-6.1,7.8l-66.2,98.2h145.1v-40.8h-52.1
1988 + C1289.8,172.4,1285.4,172.7,1282.8,172.9L1282.8,172.9L1282.8,172.9z M811.2,67.4v145.7h52.7V67.2c-8.3,2.9-17.1,4.6-26.1,4.6
1989 + S819.6,70.2,811.2,67.4L811.2,67.4L811.2,67.4z"/>
1990 +<g>
1991 + <g>
1992 + <path class="st1" d="M649.8,345v-8l10.1-1.8v-75.6l-11.2-1.8v-8h20.6l1.2,8.4c2.3-3.1,5.2-5.5,8.5-7.2c3.4-1.6,7.2-2.5,11.7-2.5
1993 + c5.8,0,10.8,1.5,14.9,4.6c4.1,3.1,7.3,7.4,9.4,12.9c2.2,5.5,3.3,12,3.3,19.4v1.3c0,6.6-1.1,12.4-3.3,17.3s-5.3,8.8-9.4,11.6
1994 + c-4.1,2.8-9,4.1-14.7,4.1c-4.3,0-8.1-0.7-11.4-2.1c-3.3-1.4-6.1-3.5-8.3-6.3v24l11.2,1.8v8L649.8,345L649.8,345z M686.8,310.6
1995 + c5.9,0,10.4-2.2,13.4-6.4c3-4.3,4.5-9.9,4.5-16.7V286c0-5.3-0.7-9.9-2-13.9c-1.4-4-3.4-7.2-6.1-9.5s-6.1-3.4-10.1-3.4
1996 + c-3.6,0-6.6,0.8-9.2,2.4c-2.6,1.6-4.6,3.8-6.2,6.6v33.6c1.6,2.9,3.7,5.1,6.2,6.7c2.6,1.6,5.7,2.4,9.5,2.4L686.8,310.6z"/>
1997 + </g>
1998 + <g>
1999 + <path class="st1" d="M758,320.5c-6.4,0-11.9-1.5-16.5-4.5s-8.2-7.1-10.7-12.4c-2.5-5.3-3.8-11.3-3.8-18.1v-1.4
2000 + c0-6.8,1.3-12.8,3.8-18.1c2.5-5.3,6.1-9.4,10.7-12.5c4.6-3,10.1-4.5,16.3-4.5s11.9,1.5,16.5,4.5s8.2,7.2,10.7,12.4
2001 + c2.5,5.3,3.8,11.3,3.8,18.1v1.4c0,6.8-1.3,12.9-3.8,18.2c-2.5,5.3-6.1,9.4-10.6,12.4C769.8,319,764.4,320.5,758,320.5L758,320.5z
2002 + M758.6,310.2c3.9,0,7.2-1.1,9.8-3.2c2.6-2.1,4.6-5.1,6-8.8s2-8,2-12.7v-1.4c0-4.8-0.7-9-2-12.7c-1.4-3.7-3.4-6.7-6-8.8
2003 + c-2.7-2.1-6-3.2-9.9-3.2c-4,0-7.2,1.1-9.9,3.2c-2.7,2.1-4.7,5.1-6,8.8c-1.3,3.7-2,8-2,12.7v1.4c0,4.8,0.7,9,2,12.7
2004 + c1.3,3.7,3.3,6.7,6,8.8S754.6,310.2,758.6,310.2L758.6,310.2z"/>
2005 + </g>
2006 + <g>
2007 + <path class="st1" d="M822.4,319.3l-18.1-59.5l-7.7-0.9v-8h28v8l-8.3,1.4l9.3,34.1l2.1,8.1h0.4l2.8-8.1l14.7-43.5h11.4l14.1,43.1
2008 + l3,9.5h0.4l3-9.5l9.5-33.8l-8.6-1.3v-8h28v8l-7.6,1.1L881,319.3h-12.1L855,278.2l-3.3-11l-0.4,0.1l-3.2,10.9l-14.9,41.1
2009 + L822.4,319.3L822.4,319.3z"/>
2010 + </g>
2011 + <g>
2012 + <path class="st1" d="M943.2,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2013 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2014 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7s3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2015 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C953.7,319.8,948.8,320.6,943.2,320.6L943.2,320.6z
2016 + M925.3,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3c-2.8,0-5.3,0.8-7.6,2.4
2017 + c-2.3,1.6-4.2,3.8-5.6,6.6c-1.5,2.8-2.5,6-2.9,9.5L925.3,277.8L925.3,277.8z"/>
2018 + </g>
2019 + <g>
2020 + <path class="st1" d="M980.5,319.3v-8l10.1-1.8v-48.8l-10.1-1.8v-8h21.1l1.1,8.7l0.1,1.2c1.9-3.5,4.2-6.2,7-8.2c2.8-2,6-3,9.6-3
2021 + c1.3,0,2.6,0.1,3.9,0.3c1.3,0.2,2.3,0.4,2.9,0.7l-1.6,11.6l-8.5-0.5c-3.2-0.2-5.9,0.5-8.1,2.2c-2.2,1.7-3.9,4-5.1,6.9v38.7
2022 + l10.1,1.8v8L980.5,319.3L980.5,319.3z"/>
2023 + </g>
2024 + <g>
2025 + <path class="st1" d="M1063.1,320.6c-6.3,0-11.8-1.4-16.5-4.3c-4.7-2.9-8.3-6.9-10.8-12.1c-2.5-5.2-3.8-11.1-3.8-17.9v-2.8
2026 + c0-6.5,1.3-12.3,4-17.5c2.7-5.1,6.2-9.2,10.7-12.2c4.4-3,9.3-4.5,14.5-4.5c6.1,0,11.3,1.3,15.4,3.8c4.1,2.5,7.3,6.1,9.4,10.7
2027 + c2.1,4.6,3.2,10,3.2,16.2v7.8h-44.3l-0.2,0.3c0.1,4.4,0.9,8.3,2.3,11.7c1.4,3.4,3.5,6.1,6.3,8c2.7,1.9,6,2.9,9.8,2.9
2028 + c4.2,0,7.9-0.6,11.1-1.8c3.2-1.2,5.9-2.9,8.2-5l4.9,8.1c-2.4,2.4-5.7,4.4-9.7,6C1073.6,319.8,1068.8,320.6,1063.1,320.6
2029 + L1063.1,320.6z M1045.2,277.8h31.6v-1.6c0-3.3-0.6-6.2-1.7-8.8c-1.2-2.6-2.9-4.7-5.2-6.1c-2.3-1.5-5.2-2.3-8.7-2.3
2030 + c-2.8,0-5.3,0.8-7.6,2.4c-2.3,1.6-4.2,3.8-5.6,6.6s-2.5,6-2.9,9.5L1045.2,277.8L1045.2,277.8z"/>
2031 + </g>
2032 + <g>
2033 + <path class="st1" d="M1127.3,320.6c-5.6,0-10.5-1.4-14.5-4.1c-4-2.8-7.1-6.6-9.2-11.6c-2.1-4.9-3.2-10.7-3.2-17.3v-1.3
2034 + c0-7.4,1.1-13.8,3.2-19.3c2.1-5.5,5.2-9.8,9.3-12.9c4.1-3.1,8.9-4.6,14.6-4.6c4.1,0,7.7,0.8,10.9,2.3c3.1,1.5,5.8,3.7,8,6.5v-27.7
2035 + l-10.1-1.8v-8h23.5v88.9l10.1,1.8v8H1148l-1-8.2c-2.3,3.1-5,5.5-8.3,7.1C1135.4,319.8,1131.7,320.6,1127.3,320.6L1127.3,320.6z
2036 + M1130.9,309.8c3.7,0,6.7-0.8,9.2-2.5c2.5-1.7,4.6-4,6.2-7.1V269c-1.6-2.8-3.6-5.1-6.2-6.7c-2.5-1.7-5.6-2.5-9.1-2.5
2037 + c-3.9,0-7.1,1.1-9.7,3.3c-2.5,2.2-4.4,5.3-5.7,9.2c-1.2,3.9-1.9,8.5-1.9,13.7v1.3c0,6.8,1.4,12.2,4.2,16.3
2038 + C1120.8,307.8,1125.1,309.8,1130.9,309.8L1130.9,309.8z"/>
2039 + </g>
2040 + <g>
2041 + <path class="st1" d="M1245.2,320.6c-4.5,0-8.3-0.9-11.6-2.6c-3.3-1.7-6-4.2-8.2-7.6l-1.1,8.8h-10.6v-88.8l-10.1-1.8v-8h22.4V259
2042 + c2.2-3,4.8-5.4,8-7c3.2-1.6,6.9-2.4,11.2-2.4c5.6,0,10.5,1.5,14.4,4.6c4,3.1,7,7.3,9.2,12.9c2.1,5.5,3.2,11.9,3.2,19.3v1.3
2043 + c0,6.6-1.1,12.3-3.2,17.3c-2.1,4.9-5.2,8.8-9.2,11.5C1255.6,319.2,1250.8,320.6,1245.2,320.6L1245.2,320.6z M1241.6,310.6
2044 + c6.1,0,10.6-2.2,13.5-6.5c2.9-4.3,4.4-10,4.4-17.1v-1c0-5.3-0.6-10-1.9-14s-3.2-7.1-5.8-9.4c-2.6-2.3-5.9-3.4-9.9-3.4
2045 + c-4,0-7.1,0.9-9.8,2.8c-2.6,1.9-4.8,4.4-6.3,7.5v30.6c1.5,3.1,3.6,5.5,6.2,7.3c2.6,1.8,5.8,2.7,9.5,2.7L1241.6,310.6z"/>
2046 + </g>
2047 + <g>
2048 + <path class="st1" d="M1293.4,346.2c-1,0-2.2-0.1-3.8-0.3c-1.6-0.2-2.8-0.5-3.6-0.7l1.3-9.8c0.7,0.1,1.7,0.2,3,0.2s2.1,0.1,2.6,0.1
2049 + c2.7,0,4.8-1,6.5-3c1.7-2,3.2-4.8,4.7-8.3l3-7.2l-24.3-58.2l-7.4-1v-8.1h29.1v8.1l-8.3,1.3l13.3,34.4l3.2,9h0.4l15.8-43.3
2050 + l-8.7-1.3v-8.1h28v8.1l-7.1,1l-27,70.1c-1.3,3.3-2.8,6.3-4.6,8.9c-1.8,2.6-4,4.6-6.6,6.1C1300.2,345.4,1297,346.2,1293.4,346.2
2051 + L1293.4,346.2z"/>
2052 + </g>
2053 +</g>
2054 +</svg>
2055 +</div>
2056 + <div class="cmplz-title" id="cmplz-header-1-optin">Gérer le consentement</div>
2057 + <div class="cmplz-close" tabindex="0" role="button" aria-label="close-dialog">
2058 + <svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="times" class="svg-inline--fa fa-times fa-w-11" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="currentColor" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path></svg>
2059 + </div>
2060 + </div>
2061 +
2062 + <div class="cmplz-divider cmplz-divider-header"></div>
2063 + <div class="cmplz-body">
2064 + <div class="cmplz-message" id="cmplz-message-1-optin"><p>Pour vous offrir les meilleures expériences, nous utilisons des technologies, telles que les cookies, pour stocker et accéder à des informations sur votre appareil. Votre consentement à ces technologies nous permet de traiter des données, telles que vos préférences de navigation ou des identifiants uniques. Vous pouvez refuser ou retirer votre consentement à tout moment, ce qui pourrait affecter certaines fonctionnalités ou caractéristiques du site. Pour en savoir plus sur l’utilisation de vos données, veuillez consulter notre [politique de confidentialité](lien vers la politique de confidentialité).</p></div>
2065 + <!-- categories start -->
2066 + <div class="cmplz-categories">
2067 + <details class="cmplz-category cmplz-functional" >
2068 + <summary>
2069 + <span class="cmplz-category-header">
2070 + <span class="cmplz-category-title">Fonctionnel</span>
2071 + <span class='cmplz-always-active'>
2072 + <span class="cmplz-banner-checkbox">
2073 + <input type="checkbox"
2074 + id="cmplz-functional-optin"
2075 + data-category="cmplz_functional"
2076 + class="cmplz-consent-checkbox cmplz-functional"
2077 + size="40"
2078 + value="1"/>
2079 + <label class="cmplz-label" for="cmplz-functional-optin" tabindex="0"><span class="screen-reader-text">Fonctionnel</span></label>
2080 + </span>
2081 + Toujours activé </span>
2082 + <span class="cmplz-icon cmplz-open">
2083 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2084 + </span>
2085 + </span>
2086 + </summary>
2087 + <div class="cmplz-description">
2088 + <span class="cmplz-description-functional">L’accès ou le stockage technique est strictement nécessaire dans la finalité d’intérêt légitime de permettre l’utilisation d’un service spécifique explicitement demandé par l’abonné ou l’utilisateur, ou dans le seul but d’effectuer la transmission d’une communication sur un réseau de communications électroniques.</span>
2089 + </div>
2090 + </details>
2091 +
2092 + <details class="cmplz-category cmplz-preferences" >
2093 + <summary>
2094 + <span class="cmplz-category-header">
2095 + <span class="cmplz-category-title">Préférences</span>
2096 + <span class="cmplz-banner-checkbox">
2097 + <input type="checkbox"
2098 + id="cmplz-preferences-optin"
2099 + data-category="cmplz_preferences"
2100 + class="cmplz-consent-checkbox cmplz-preferences"
2101 + size="40"
2102 + value="1"/>
2103 + <label class="cmplz-label" for="cmplz-preferences-optin" tabindex="0"><span class="screen-reader-text">Préférences</span></label>
2104 + </span>
2105 + <span class="cmplz-icon cmplz-open">
2106 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2107 + </span>
2108 + </span>
2109 + </summary>
2110 + <div class="cmplz-description">
2111 + <span class="cmplz-description-preferences">L'accès ou le stockage technique est nécessaire dans la finalité d'intérêt légitime de stocker des préférences spécifiques des utilisateurs, telles que la langue, la région ou d'autres paramètres personnalisés, afin d'améliorer leur expérience sur le site.</span>
2112 + </div>
2113 + </details>
2114 +
2115 + <details class="cmplz-category cmplz-statistics" >
2116 + <summary>
2117 + <span class="cmplz-category-header">
2118 + <span class="cmplz-category-title">Statistiques</span>
2119 + <span class="cmplz-banner-checkbox">
2120 + <input type="checkbox"
2121 + id="cmplz-statistics-optin"
2122 + data-category="cmplz_statistics"
2123 + class="cmplz-consent-checkbox cmplz-statistics"
2124 + size="40"
2125 + value="1"/>
2126 + <label class="cmplz-label" for="cmplz-statistics-optin" tabindex="0"><span class="screen-reader-text">Statistiques</span></label>
2127 + </span>
2128 + <span class="cmplz-icon cmplz-open">
2129 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2130 + </span>
2131 + </span>
2132 + </summary>
2133 + <div class="cmplz-description">
2134 + <span class="cmplz-description-statistics">Le stockage ou l’accès technique qui est utilisé exclusivement à des fins statistiques.</span>
2135 + <span class="cmplz-description-statistics-anonymous">Le stockage ou l’accès technique est utilisé exclusivement à des fins statistiques anonymes. Sans assignation légale, conformité volontaire de votre fournisseur d’accès à Internet ou données supplémentaires d’une tierce partie, les informations collectées à cette fin ne peuvent pas être utilisées pour vous identifier.</span>
2136 + </div>
2137 + </details>
2138 + <details class="cmplz-category cmplz-marketing" >
2139 + <summary>
2140 + <span class="cmplz-category-header">
2141 + <span class="cmplz-category-title">Marketing</span>
2142 + <span class="cmplz-banner-checkbox">
2143 + <input type="checkbox"
2144 + id="cmplz-marketing-optin"
2145 + data-category="cmplz_marketing"
2146 + class="cmplz-consent-checkbox cmplz-marketing"
2147 + size="40"
2148 + value="1"/>
2149 + <label class="cmplz-label" for="cmplz-marketing-optin" tabindex="0"><span class="screen-reader-text">Marketing</span></label>
2150 + </span>
2151 + <span class="cmplz-icon cmplz-open">
2152 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" height="18" ><path d="M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z"/></svg>
2153 + </span>
2154 + </span>
2155 + </summary>
2156 + <div class="cmplz-description">
2157 + <span class="cmplz-description-marketing">L’accès ou le stockage technique est nécessaire pour créer des profils d’utilisateurs, diffuser des publicités personnalisées, et suivre l’activité de l’utilisateur sur ce site ou sur plusieurs sites web dans le cadre de campagnes marketing similaires.</span>
2158 + </div>
2159 + </details>
2160 + </div><!-- categories end -->
2161 + </div>
2162 +
2163 + <div class="cmplz-links cmplz-information">
2164 + <a class="cmplz-link cmplz-manage-options cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Gérer les options</a>
2165 + <a class="cmplz-link cmplz-manage-third-parties cookie-statement" href="#" data-relative_url="#cmplz-cookies-overview">Gérer les services</a>
2166 + <a class="cmplz-link cmplz-manage-vendors tcf cookie-statement" href="#" data-relative_url="#cmplz-tcf-wrapper">Gérer {vendor_count} fournisseurs</a>
2167 + <a class="cmplz-link cmplz-external cmplz-read-more-purposes tcf" target="_blank" rel="noopener noreferrer nofollow" href="https://cookiedatabase.org/tcf/purposes/">En savoir plus sur ces finalités</a>
2168 + </div>
2169 +
2170 + <div class="cmplz-divider cmplz-footer"></div>
2171 +
2172 + <div class="cmplz-buttons">
2173 + <button class="cmplz-btn cmplz-accept">Accepter</button>
2174 + <button class="cmplz-btn cmplz-deny">Refuser</button>
2175 + <button class="cmplz-btn cmplz-view-preferences">Voir les préférences</button>
2176 + <button class="cmplz-btn cmplz-save-preferences">Enregistrer les préférences</button>
2177 + <a class="cmplz-btn cmplz-manage-options tcf cookie-statement" href="#" data-relative_url="#cmplz-manage-consent-container">Voir les préférences</a>
2178 + </div>
2179 +
2180 + <div class="cmplz-links cmplz-documents">
2181 + <a class="cmplz-link cookie-statement" href="#" data-relative_url="">{title}</a>
2182 + <a class="cmplz-link privacy-statement" href="#" data-relative_url="">{title}</a>
2183 + <a class="cmplz-link impressum" href="#" data-relative_url="">{title}</a>
2184 + </div>
2185 +
2186 +</div>
2187 +</div>
2188 + <div id="cmplz-manage-consent" data-nosnippet="true"><button class="cmplz-btn cmplz-hidden cmplz-manage-consent manage-consent-1">Gérer le consentement</button>
2189 +
2190 +</div> <script data-service="google-recaptcha" data-category="marketing" type="text/plain">
2191 + var reCaptchaIDs = [];
2192 + var siteKey = '6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc';
2193 + var reCaptchaType = 'v3';
2194 +
2195 + var houzezReCaptchaLoad = function() {
2196 + jQuery( '.houzez_google_reCaptcha' ).each( function( index, el ) {
2197 + var tempID;
2198 +
2199 + if ( reCaptchaType === 'v3' ) {
2200 +
2201 + tempID = grecaptcha.ready(function () {
2202 + grecaptcha.execute(siteKey, {action: 'homepage'}).then(function (token) {
2203 + el.insertAdjacentHTML('beforeend', '<input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response" value="' + token + '">');
2204 + });
2205 + });
2206 +
2207 + } else {
2208 +
2209 + tempID = grecaptcha.render( el, {
2210 + 'sitekey' : siteKey
2211 + } );
2212 + }
2213 +
2214 + reCaptchaIDs.push( tempID );
2215 + } );
2216 + };
2217 +
2218 + //reCAPTCHA reset
2219 + var houzezReCaptchaReset = function() {
2220 + if ( reCaptchaType === 'v2' ) {
2221 + if( typeof reCaptchaIDs != 'undefined' ) {
2222 + var arrayLength = reCaptchaIDs.length;
2223 + for( var i = 0; i < arrayLength; i++ ) {
2224 + grecaptcha.reset( reCaptchaIDs[i] );
2225 + }
2226 + }
2227 + } else {
2228 + houzezReCaptchaLoad();
2229 + }
2230 + };
2231 + </script>
2232 + <script>
2233 + const lazyloadRunObserver = () => {
2234 + const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` );
2235 + const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => {
2236 + entries.forEach( ( entry ) => {
2237 + if ( entry.isIntersecting ) {
2238 + let lazyloadBackground = entry.target;
2239 + if( lazyloadBackground ) {
2240 + lazyloadBackground.classList.add( 'e-lazyloaded' );
2241 + }
2242 + lazyloadBackgroundObserver.unobserve( entry.target );
2243 + }
2244 + });
2245 + }, { rootMargin: '200px 0px 200px 0px' } );
2246 + lazyloadBackgrounds.forEach( ( lazyloadBackground ) => {
2247 + lazyloadBackgroundObserver.observe( lazyloadBackground );
2248 + } );
2249 + };
2250 + const events = [
2251 + 'DOMContentLoaded',
2252 + 'elementor/lazyload/observe',
2253 + ];
2254 + events.forEach( ( event ) => {
2255 + document.addEventListener( event, lazyloadRunObserver );
2256 + } );
2257 + </script>
2258 + <link rel='stylesheet' id='rs-plugin-settings-css' href='//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/css/rs6.css?ver=6.7.20' type='text/css' media='all' />
2259 +<style id='rs-plugin-settings-inline-css' type='text/css'>
2260 +#rs-demo-id {}
2261 +</style>
2262 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.20" defer async id="tp-tools-js"></script>
2263 +<script type="text/javascript" src="//immeublesalexcellence.com/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.20" defer async id="revmin-js"></script>
2264 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/all-scripts.js?ver=3.4.4" id="houzez-all-in-one-js"></script>
2265 +<script type="module" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/houzez-instant-page.js?ver=3.0.0" id="houzez-instant-page-js"></script>
2266 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/lightslider.min.js?ver=1.1.3" id="lightslider-js"></script>
2267 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/Chart.min.js?ver=2.8.0" id="chart-js"></script>
2268 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script>
2269 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/menu.min.js?ver=1.13.3" id="jquery-ui-menu-js"></script>
2270 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/dom-ready.min.js?ver=f77871ff7694fffea381" id="wp-dom-ready-js"></script>
2271 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script>
2272 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script>
2273 +<script type="text/javascript" id="wp-i18n-js-after">
2274 +/* <![CDATA[ */
2275 +wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
2276 +/* ]]> */
2277 +</script>
2278 +<script type="text/javascript" id="wp-a11y-js-translations">
2279 +/* <![CDATA[ */
2280 +( function( domain, translations ) {
2281 + var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
2282 + localeData[""].domain = domain;
2283 + wp.i18n.setLocaleData( localeData, domain );
2284 +} )( "default", {"translation-revision-date":"2025-10-01 05:29:20+0000","generator":"GlotPress\/4.0.3","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n > 1;","lang":"fr"},"Notifications":["Notifications"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} );
2285 +/* ]]> */
2286 +</script>
2287 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/dist/a11y.min.js?ver=3156534cc54473497e14" id="wp-a11y-js"></script>
2288 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/autocomplete.min.js?ver=1.13.3" id="jquery-ui-autocomplete-js"></script>
2289 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/mouse.min.js?ver=1.13.3" id="jquery-ui-mouse-js"></script>
2290 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/ui/slider.min.js?ver=1.13.3" id="jquery-ui-slider-js"></script>
2291 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/bootstrap-datepicker.min.js?ver=1.9.0" id="bootstrap-datepicker-js"></script>
2292 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/vendors/locales/bootstrap-datepicker.fr.min.js?ver=1.0" id="bootstrap-datepicker.fr-js"></script>
2293 +<script type="text/javascript" id="houzez-custom-js-extra">
2294 +/* <![CDATA[ */
2295 +var houzez_vars = {"admin_url":"https:\/\/immeublesalexcellence.com\/wp-admin\/","houzez_rtl":"no","user_id":"0","redirect_type":"same_page","login_redirect":"https:\/\/immeublesalexcellence.com\/appartements\/logement-1%c2%bd-semi-meuble-au-pied-du-mont-bellevue\/","property_gallery_popup_type":"houzez","wp_is_mobile":"","default_lat":"25.686540","default_long":"-80.431345","houzez_is_splash":"","prop_detail_nav":"yes","add_to_favorite_login_required":"1","disable_property_gallery":"1","grid_gallery_behaviour":"on_hover","is_singular_property":"1","search_position":"under_banner","login_loading":"Envoi d'informations utilisateur, veuillez patienter ...","not_found":"Nous n'avons trouv\u00e9 aucun r\u00e9sultat","listings_not_found":"No more listings found","houzez_map_system":"osm","for_rent":"a-louer","for_rent_price_slider":"a-louer","search_min_price_range":"0","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","houzez_default_radius":"50","houzez_reCaptcha":"1","geo_country_limit":"0","geocomplete_country":"","is_edit_property":"","processing_text":"Traitement, veuillez patienter ...","halfmap_layout":"","prev_text":"Prev","next_text":"Prochain","keyword_search_field":"prop_title","keyword_autocomplete":"1","autosearch_text":"Searching...","paypal_connecting":"Connecting to paypal, Please wait... ","transparent_logo":"","is_transparent":"","is_top_header":"1","simple_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo":"","mobile_logo":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/2023\/11\/Immeubles-Alexcellence-logo.png","retina_logo_mobile":"","retina_logo_mobile_splash":"","custom_logo_splash":"","retina_logo_splash":"","monthly_payment":"Monthly Payment","weekly_payment":"Weekly Payment","bi_weekly_payment":"Bi-Weekly Payment","compare_url":"","favorite_url":"","template_thankyou":"https:\/\/immeublesalexcellence.com\/","compare_page_not_found":"Veuillez cr\u00e9er une page en utilisant le mod\u00e8le de propri\u00e9t\u00e9s de comparaison","compare_limit":"Prix \u200b\u200bmaximum pour le loyer seulement","compare_add_icon":"","compare_remove_icon":"","add_compare_text":"Ajouter au comparatif","remove_compare_text":"Retirer du comparatif","is_mapbox":"google","api_mapbox":"","listing_pagination":"_loadmore","is_marker_cluster":"1","g_recaptha_version":"v3","s_country":"","s_state":"","s_city":"","s_areas":"","woo_checkout_url":"","agent_redirection":""};
2296 +/* ]]> */
2297 +</script>
2298 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/custom.js?ver=3.4.4" id="houzez-custom-js"></script>
2299 +<script data-service="google-recaptcha" data-category="marketing" type="text/plain" data-cmplz-src="//www.google.com/recaptcha/api.js?render=6LcpA7QqAAAAAG2ZsJic0tMsbtTCoh-pULpzujmc&amp;onload=houzezReCaptchaLoad&amp;ver=3.4.4" id="houzez-google-recaptcha-js"></script>
2300 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js//vendors/leaflet/leaflet.js?ver=1.9.3" id="leaflet-js"></script>
2301 +<script type="text/javascript" id="houzez-single-property-map-js-extra">
2302 +/* <![CDATA[ */
2303 +var houzez_single_property_map = [];
2304 +var houzez_map_options = {"markerPricePins":"no","single_map_zoom":"14","map_type":"satellite","map_pin_type":"marker","googlemap_stype":"[{\"featureType\":\"administrative\",\"elementType\":\"labels.text.fill\",\"stylers\":[{\"color\":\"#444444\"}]},{\"featureType\":\"administrative.locality\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"landscape\",\"elementType\":\"all\",\"stylers\":[{\"color\":\"#f2f2f2\"},{\"visibility\":\"simplified\"}]},{\"featureType\":\"poi\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"poi\",\"elementType\":\"geometry\",\"stylers\":[{\"visibility\":\"simplified\"},{\"saturation\":\"-65\"},{\"lightness\":\"45\"},{\"gamma\":\"1.78\"}]},{\"featureType\":\"poi\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"poi\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road\",\"elementType\":\"all\",\"stylers\":[{\"saturation\":-100},{\"lightness\":45}]},{\"featureType\":\"road\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"on\"}]},{\"featureType\":\"road\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road.highway\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"simplified\"}]},{\"featureType\":\"road.highway\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road.arterial\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.line\",\"elementType\":\"geometry\",\"stylers\":[{\"saturation\":\"-33\"},{\"lightness\":\"22\"},{\"gamma\":\"2.08\"}]},{\"featureType\":\"transit.station.airport\",\"elementType\":\"geometry\",\"stylers\":[{\"gamma\":\"2.08\"},{\"hue\":\"#ffa200\"}]},{\"featureType\":\"transit.station.airport\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.station.rail\",\"elementType\":\"labels.text\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"transit.station.rail\",\"elementType\":\"labels.icon\",\"stylers\":[{\"visibility\":\"simplified\"},{\"saturation\":\"-55\"},{\"lightness\":\"-2\"},{\"gamma\":\"1.88\"},{\"hue\":\"#ffab00\"}]},{\"featureType\":\"water\",\"elementType\":\"all\",\"stylers\":[{\"color\":\"#bbd9e5\"},{\"visibility\":\"simplified\"}]}]","closeIcon":"https:\/\/immeublesalexcellence.com\/wp-content\/themes\/houzez\/img\/map\/close.png","infoWindowPlac":"https:\/\/placehold.it\/120x90&text=Immeubles+Alexcellence"};
2305 +/* ]]> */
2306 +</script>
2307 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/themes/houzez/js/single-property-osm-map.js?ver=3.4.4" id="houzez-single-property-map-js"></script>
2308 +<script type="text/javascript" id="cmplz-cookiebanner-js-extra">
2309 +/* <![CDATA[ */
2310 +var complianz = {"prefix":"cmplz_","user_banner_id":"1","set_cookies":[],"block_ajax_content":"0","banner_version":"8517","version":"7.3.2","store_consent":"1","do_not_track_enabled":"1","consenttype":"optin","region":"ca","geoip":"1","dismiss_timeout":"","disable_cookiebanner":"","soft_cookiewall":"","dismiss_on_scroll":"","cookie_expiry":"365","url":"https:\/\/immeublesalexcellence.com\/wp-json\/complianz\/v1\/","locale":"lang=fr&locale=fr_FR","set_cookies_on_root":"0","cookie_domain":"","current_policy_id":"37","cookie_path":"\/","categories":{"statistics":"statistiques","marketing":"marketing"},"tcf_active":"","placeholdertext":"<div class=\"cmplz-blocked-content-notice-body\">Cliquez sur \u00ab\u00a0J\u2019accepte\u00a0\u00bb pour activer {service}\u00a0<div class=\"cmplz-links\"><a href=\"#\" class=\"cmplz-link cookie-statement\">{title}<\/a><\/div><\/div><button class=\"cmplz-accept-service\">J\u2019accepte<\/button>","css_file":"https:\/\/immeublesalexcellence.com\/wp-content\/uploads\/complianz\/css\/banner-{banner_id}-{type}.css?v=8517","page_links":{"ca":{"cookie-statement":{"title":"Politique de cookies ","url":"https:\/\/immeublesalexcellence.com\/politique-de-cookies-ca\/"},"privacy-statement":{"title":"D\u00e9claration de confidentialit\u00e9 ","url":"https:\/\/immeublesalexcellence.com\/declaration-de-confidentialite-ca\/"},"privacy-statement-children":{"title":"","url":"https:\/\/immeublesalexcellence.com\/appartements-a-louer\/"}}},"tm_categories":"","forceEnableStats":"1","preview":"","clean_cookies":"1","aria_label":"Cliquez sur le bouton pour activer {service}"};
2311 +/* ]]> */
2312 +</script>
2313 +<script defer type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/cookiebanner/js/complianz.min.js?ver=1736710566" id="cmplz-cookiebanner-js"></script>
2314 +<script type="text/javascript" id="cmplz-cookiebanner-js-after">
2315 +/* <![CDATA[ */
2316 +
2317 + if ('undefined' != typeof window.jQuery) {
2318 + jQuery(document).ready(function ($) {
2319 + $(document).on('elementor/popup/show', () => {
2320 + let rev_cats = cmplz_categories.reverse();
2321 + for (let key in rev_cats) {
2322 + if (rev_cats.hasOwnProperty(key)) {
2323 + let category = cmplz_categories[key];
2324 + if (cmplz_has_consent(category)) {
2325 + document.querySelectorAll('[data-category="' + category + '"]').forEach(obj => {
2326 + cmplz_remove_placeholder(obj);
2327 + });
2328 + }
2329 + }
2330 + }
2331 +
2332 + let services = cmplz_get_services_on_page();
2333 + for (let key in services) {
2334 + if (services.hasOwnProperty(key)) {
2335 + let service = services[key].service;
2336 + let category = services[key].category;
2337 + if (cmplz_has_service_consent(service, category)) {
2338 + document.querySelectorAll('[data-service="' + service + '"]').forEach(obj => {
2339 + cmplz_remove_placeholder(obj);
2340 + });
2341 + }
2342 + }
2343 + }
2344 + });
2345 + });
2346 + }
2347 +
2348 +
2349 +/* ]]> */
2350 +</script>
2351 +<!-- Statistics script Complianz GDPR/CCPA -->
2352 + <script data-category="functional">window['gtag_enable_tcf_support'] = false;
2353 +window.dataLayer = window.dataLayer || [];
2354 +function gtag(){dataLayer.push(arguments);}
2355 +gtag('js', new Date());
2356 +gtag('config', '', {
2357 + cookie_flags:'secure;samesite=none',
2358 + 'anonymize_ip': true
2359 +});
2360 +</script>
2361 +</body>
2362 +</html>
added tests/fixtures/alexcellence/ccac9b427dca248835f6.html +1478 −0
@@ -0,0 +1,2510 @@
1 +<!doctype html>
2 +<html lang="fr-FR">
3 +<head>
4 + <meta charset="UTF-8" />
5 + <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 + <link rel="profile" href="https://gmpg.org/xfn/11" />
7 + <meta name="format-detection" content="telephone=no">
8 + <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://immeublesalexcellence.com/wp-content/themes/houzez/img/studio-icon.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>
9 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
10 + <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
11 +
12 + <!-- This site is optimized with the Yoast SEO plugin v24.3 - https://yoast.com/wordpress/plugins/seo/ -->
13 + <title>3½ rénové à louer Sherbrooke secteur Université et Mont-Bellevue</title>
14 + <meta name="description" content="Superbe 3½ à louer à Sherbrooke, espace de vie moderne, sécuritaire, fonctionnel et lumineux! Secteur de l&#039;Université et du Mont-Bellevue" />
15 + <link rel="canonical" href="https://immeublesalexcellence.com/appartements/logement-3-½-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/" />
16 + <meta property="og:locale" content="fr_FR" />
17 + <meta property="og:type" content="article" />
18 + <meta property="og:title" content="3½ rénové à louer Sherbrooke secteur Université et Mont-Bellevue" />
19 + <meta property="og:description" content="Superbe 3½ à louer à Sherbrooke, espace de vie moderne, sécuritaire, fonctionnel et lumineux! Secteur de l&#039;Université et du Mont-Bellevue" />
20 + <meta property="og:url" content="https://immeublesalexcellence.com/appartements/logement-3-½-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/" />
21 + <meta property="og:site_name" content="Immeubles Alexcellence" />
22 + <meta property="article:publisher" content="https://www.facebook.com/immeublesalexcellence" />
23 + <meta property="article:modified_time" content="2026-07-17T19:42:46+00:00" />
24 + <meta property="og:image" content="https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1.jpg" />
25 + <meta property="og:image:width" content="1067" />
26 + <meta property="og:image:height" content="800" />
27 + <meta property="og:image:type" content="image/jpeg" />
28 + <meta name="twitter:card" content="summary_large_image" />
29 + <meta name="twitter:label1" content="Durée de lecture estimée" />
30 + <meta name="twitter:data1" content="2 minutes" />
31 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://immeublesalexcellence.com/appartements/logement-3-%c2%bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/","url":"https://immeublesalexcellence.com/appartements/logement-3-%c2%bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/","name":"3½ rénové à louer Sherbrooke secteur Université et Mont-Bellevue","isPartOf":{"@id":"https://immeublesalexcellence.com/#website"},"primaryImageOfPage":{"@id":"https://immeublesalexcellence.com/appartements/logement-3-%c2%bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/#primaryimage"},"image":{"@id":"https://immeublesalexcellence.com/appartements/logement-3-%c2%bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/#primaryimage"},"thumbnailUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1.jpg","datePublished":"2025-08-28T03:17:11+00:00","dateModified":"2026-07-17T19:42:46+00:00","description":"Superbe 3½ à louer à Sherbrooke, espace de vie moderne, sécuritaire, fonctionnel et lumineux! Secteur de l'Université et du Mont-Bellevue","breadcrumb":{"@id":"https://immeublesalexcellence.com/appartements/logement-3-%c2%bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://immeublesalexcellence.com/appartements/logement-3-%c2%bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/appartements/logement-3-%c2%bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/#primaryimage","url":"https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1.jpg","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2025/08/4demi-logement-UdeS-1.jpg","width":1067,"height":800},{"@type":"BreadcrumbList","@id":"https://immeublesalexcellence.com/appartements/logement-3-%c2%bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https://immeublesalexcellence.com/"},{"@type":"ListItem","position":2,"name":"Propriétés","item":"https://immeublesalexcellence.com/appartements/"},{"@type":"ListItem","position":3,"name":"Logement 4 ½ entièrement rénové &#8211; Sherbrooke Secteur Université et Mont-Bellevue"}]},{"@type":"WebSite","@id":"https://immeublesalexcellence.com/#website","url":"https://immeublesalexcellence.com/","name":"Immeubles Alexcellence","description":"Appartement a louer Université Sherbrooke","publisher":{"@id":"https://immeublesalexcellence.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://immeublesalexcellence.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https://immeublesalexcellence.com/#organization","name":"Immeubles Alexcellence","url":"https://immeublesalexcellence.com/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://immeublesalexcellence.com/#/schema/logo/image/","url":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","contentUrl":"https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png","width":436,"height":123,"caption":"Immeubles Alexcellence"},"image":{"@id":"https://immeublesalexcellence.com/#/schema/logo/image/"},"sameAs":["https://www.facebook.com/immeublesalexcellence","https://www.instagram.com/immeublealexellence/"]}]}</script>
32 + <!-- / Yoast SEO plugin. -->
33 +
34 +
35 +<link rel='dns-prefetch' href='//www.google.com' />
36 +<link rel='dns-prefetch' href='//fonts.googleapis.com' />
37 +<link rel='preconnect' href='https://fonts.gstatic.com' crossorigin />
38 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux" href="https://immeublesalexcellence.com/feed/" />
39 +<link rel="alternate" type="application/rss+xml" title="Immeubles Alexcellence &raquo; Flux des commentaires" href="https://immeublesalexcellence.com/comments/feed/" />
40 +<script type="text/javascript">
41 +/* <![CDATA[ */
42 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/immeublesalexcellence.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.5"}};
43 +/*! This file is auto-generated */
44 +!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
45 +/* ]]> */
46 +</script>
47 +<style id='wp-emoji-styles-inline-css' type='text/css'>
48 +
49 + img.wp-smiley, img.emoji {
50 + display: inline !important;
51 + border: none !important;
52 + box-shadow: none !important;
53 + height: 1em !important;
54 + width: 1em !important;
55 + margin: 0 0.07em !important;
56 + vertical-align: -0.1em !important;
57 + background: none !important;
58 + padding: 0 !important;
59 + }
60 +</style>
61 +<link rel='stylesheet' id='wp-block-library-css' href='https://immeublesalexcellence.com/wp-includes/css/dist/block-library/style.min.css?ver=6.7.5' type='text/css' media='all' />
62 +<style id='classic-theme-styles-inline-css' type='text/css'>
63 +/*! This file is auto-generated */
64 +.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}
65 +</style>
66 +<style id='global-styles-inline-css' type='text/css'>
67 +: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,rgba(6,147,227,1) 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,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%,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 rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}: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;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.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;}
68 +:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
69 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
70 +:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
71 +</style>
72 +<link rel='stylesheet' id='elementor-frontend-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.27.1' type='text/css' media='all' />
73 +<link rel='stylesheet' id='elementor-post-6-css' href='https://immeublesalexcellence.com/wp-content/uploads/elementor/css/post-6.css?ver=1737736055' type='text/css' media='all' />
74 +<link rel='stylesheet' id='font-awesome-5-all-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.27.1' type='text/css' media='all' />
75 +<link rel='stylesheet' id='font-awesome-4-shim-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.27.1' type='text/css' media='all' />
76 +<link rel='stylesheet' id='widget-text-editor-css' href='https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css?ver=3.27.1' type='text/css' media='all' />
77 +<link rel='stylesheet' id='houzez-studio-css' href='https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/css/houzez-studio-public.css?ver=1.2.1' type='text/css' media='all' />
78 +<link rel='stylesheet' id='cmplz-general-css' href='https://immeublesalexcellence.com/wp-content/plugins/complianz-gdpr-premium/assets/css/cookieblocker.min.css?ver=1736710567' type='text/css' media='all' />
79 +<link rel='stylesheet' id='houzez-all-css-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/css/all-css.css?ver=3.4.4' type='text/css' media='all' />
80 +<link rel='stylesheet' id='houzez-style-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/style.css?ver=3.4.4' type='text/css' media='all' />
81 +<style id='houzez-style-inline-css' type='text/css'>
82 +
83 + @media (min-width: 1200px) {
84 + .container {
85 + max-width: 1310px;
86 + }
87 + }
88 + .status-color-21 {
89 + background-color: #45962e;
90 + }
91 +
92 + .status-color-199 {
93 + background-color: #595959;
94 + }
95 +
96 + body {
97 + font-family: Roboto;
98 + font-size: 15px;
99 + font-weight: 400;
100 + line-height: 25px;
101 + text-transform: none;
102 + }
103 + .main-nav,
104 + .dropdown-menu,
105 + .login-register,
106 + .btn.btn-create-listing,
107 + .logged-in-nav,
108 + .btn-phone-number {
109 + font-family: Roboto;
110 + font-size: 14px;
111 + font-weight: 500;
112 + text-align: left;
113 + text-transform: none;
114 + }
115 +
116 + .btn,
117 + .ele-btn,
118 + .houzez-search-button,
119 + .houzez-submit-button,
120 + .form-control,
121 + .bootstrap-select .text,
122 + .sort-by-title,
123 + .woocommerce ul.products li.product .button {
124 + font-family: Roboto;
125 + font-size: 15px;
126 + }
127 +
128 + h1, h2, h3, h4, h5, h6, .item-title {
129 + font-family: Roboto;
130 + font-weight: 500;
131 + text-transform: inherit;
132 + }
133 +
134 + .post-content-wrap h1, .post-content-wrap h2, .post-content-wrap h3, .post-content-wrap h4, .post-content-wrap h5, .post-content-wrap h6 {
135 + font-weight: 500;
136 + text-transform: inherit;
137 + text-align: inherit;
138 + }
139 +
140 + .top-bar-wrap {
141 + font-family: Roboto;
142 + font-size: 13px;
143 + font-weight: 300;
144 + line-height: 25px;
145 + text-align: left;
146 + text-transform: none;
147 + }
148 + .footer-wrap {
149 + font-family: Roboto;
150 + font-size: 14px;
151 + font-weight: 300;
152 + line-height: 25px;
153 + text-align: left;
154 + text-transform: none;
155 + }
156 +
157 + .header-v1 .header-inner-wrap,
158 + .header-v1 .navbar-logged-in-wrap {
159 + line-height: 60px;
160 + height: 60px;
161 + }
162 + .header-v2 .header-top .navbar {
163 + height: 110px;
164 + }
165 +
166 + .header-v2 .header-bottom .header-inner-wrap,
167 + .header-v2 .header-bottom .navbar-logged-in-wrap {
168 + line-height: 54px;
169 + height: 54px;
170 + }
171 +
172 + .header-v3 .header-top .header-inner-wrap,
173 + .header-v3 .header-top .header-contact-wrap {
174 + height: 80px;
175 + line-height: 80px;
176 + }
177 + .header-v3 .header-bottom .header-inner-wrap,
178 + .header-v3 .header-bottom .navbar-logged-in-wrap {
179 + line-height: 54px;
180 + height: 54px;
181 + }
182 + .header-v4 .header-inner-wrap,
183 + .header-v4 .navbar-logged-in-wrap {
184 + line-height: 90px;
185 + height: 90px;
186 + }
187 + .header-v5 .header-top .header-inner-wrap,
188 + .header-v5 .header-top .navbar-logged-in-wrap {
189 + line-height: 110px;
190 + height: 110px;
191 + }
192 + .header-v5 .header-bottom .header-inner-wrap {
193 + line-height: 54px;
194 + height: 54px;
195 + }
196 + .header-v6 .header-inner-wrap,
197 + .header-v6 .navbar-logged-in-wrap {
198 + height: 60px;
199 + line-height: 60px;
200 + }
201 + @media (min-width: 1200px) {
202 + .header-v5 .header-top .container {
203 + max-width: 1170px;
204 + }
205 + }
206 +
207 + body,
208 + .main-wrap,
209 + .fw-property-documents-wrap h3 span,
210 + .fw-property-details-wrap h3 span {
211 + background-color: #f7f7f7;
212 + }
213 + .houzez-main-wrap-v2, .main-wrap.agent-detail-page-v2 {
214 + background-color: #ffffff;
215 + }
216 +
217 + body,
218 + .form-control,
219 + .bootstrap-select .text,
220 + .item-title a,
221 + .listing-tabs .nav-tabs .nav-link,
222 + .item-wrap-v2 .item-amenities li span,
223 + .item-wrap-v2 .item-amenities li:before,
224 + .item-parallax-wrap .item-price-wrap,
225 + .list-view .item-body .item-price-wrap,
226 + .property-slider-item .item-price-wrap,
227 + .page-title-wrap .item-price-wrap,
228 + .agent-information .agent-phone span a,
229 + .property-overview-wrap ul li strong,
230 + .mobile-property-title .item-price-wrap .item-price,
231 + .fw-property-features-left li a,
232 + .lightbox-content-wrap .item-price-wrap,
233 + .blog-post-item-v1 .blog-post-title h3 a,
234 + .blog-post-content-widget h4 a,
235 + .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
236 + .login-register-form .modal-header .login-register-tabs .nav-link.active,
237 + .agent-list-wrap .agent-list-content h2 a,
238 + .agent-list-wrap .agent-list-contact li a,
239 + .agent-contacts-wrap li a,
240 + .menu-edit-property li a,
241 + .statistic-referrals-list li a,
242 + .chart-nav .nav-pills .nav-link,
243 + .dashboard-table-properties td .property-payment-status,
244 + .dashboard-mobile-edit-menu-wrap .bootstrap-select > .dropdown-toggle.bs-placeholder,
245 + .payment-method-block .radio-tab .control-text,
246 + .post-title-wrap h2 a,
247 + .lead-nav-tab.nav-pills .nav-link,
248 + .deals-nav-tab.nav-pills .nav-link,
249 + .btn-light-grey-outlined:hover,
250 + button:not(.bs-placeholder) .filter-option-inner-inner,
251 + .fw-property-floor-plans-wrap .floor-plans-tabs a,
252 + .products > .product > .item-body > a,
253 + .woocommerce ul.products li.product .price,
254 + .woocommerce div.product p.price,
255 + .woocommerce div.product span.price,
256 + .woocommerce #reviews #comments ol.commentlist li .meta,
257 + .woocommerce-MyAccount-navigation ul li a,
258 + .activitiy-item-close-button a,
259 + .property-section-wrap li a {
260 + color: #222222;
261 + }
262 +
263 +
264 +
265 + a,
266 + a:hover,
267 + a:active,
268 + a:focus,
269 + .primary-text,
270 + .btn-clear,
271 + .btn-apply,
272 + .btn-primary-outlined,
273 + .btn-primary-outlined:before,
274 + .item-title a:hover,
275 + .sort-by .bootstrap-select .bs-placeholder,
276 + .sort-by .bootstrap-select > .btn,
277 + .sort-by .bootstrap-select > .btn:active,
278 + .page-link,
279 + .page-link:hover,
280 + .accordion-title:before,
281 + .blog-post-content-widget h4 a:hover,
282 + .agent-list-wrap .agent-list-content h2 a:hover,
283 + .agent-list-wrap .agent-list-contact li a:hover,
284 + .agent-contacts-wrap li a:hover,
285 + .agent-nav-wrap .nav-pills .nav-link,
286 + .dashboard-side-menu-wrap .side-menu-dropdown a.active,
287 + .menu-edit-property li a.active,
288 + .menu-edit-property li a:hover,
289 + .dashboard-statistic-block h3 .fa,
290 + .statistic-referrals-list li a:hover,
291 + .chart-nav .nav-pills .nav-link.active,
292 + .board-message-icon-wrap.active,
293 + .post-title-wrap h2 a:hover,
294 + .listing-switch-view .switch-btn.active,
295 + .item-wrap-v6 .item-price-wrap,
296 + .listing-v6 .list-view .item-body .item-price-wrap,
297 + .woocommerce nav.woocommerce-pagination ul li a,
298 + .woocommerce nav.woocommerce-pagination ul li span,
299 + .woocommerce-MyAccount-navigation ul li a:hover,
300 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
301 + .property-schedule-tour-form-wrap .control:hover,
302 + .property-walkscore-wrap-v2 .score-details .houzez-icon,
303 + .login-register .btn-icon-login-register + .dropdown-menu a,
304 + .activitiy-item-close-button a:hover,
305 + .property-section-wrap li a:hover,
306 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active,
307 + .property-lightbox-v2-sections-navigation .slick-prev,
308 + .property-lightbox-v2-sections-navigation .slick-next,
309 + .property-lightbox-v2-sections-navigation .slick-slide.current-section,
310 + .property-lightbox-v2-sections-navigation .nav-link.active,
311 + .agent-detail-page-v2 .listing-tabs .nav-link.active {
312 + color: #014582;
313 + }
314 +
315 + .agent-list-position a {
316 + color: #014582;
317 + }
318 +
319 + .control input:checked ~ .control__indicator,
320 + .top-banner-wrap .nav-pills .nav-link,
321 + .btn-primary-outlined:hover,
322 + .page-item.active .page-link,
323 + .slick-prev:hover,
324 + .slick-prev:focus,
325 + .slick-next:hover,
326 + .slick-next:focus,
327 + .mobile-property-tools .nav-pills .nav-link.active,
328 + .login-register-form .modal-header,
329 + .agent-nav-wrap .nav-pills .nav-link.active,
330 + .board-message-icon-wrap .notification-circle,
331 + .primary-label,
332 + .fc-event, .fc-event-dot,
333 + .compare-table .table-hover > tbody > tr:hover,
334 + .post-tag,
335 + .datepicker table tr td.active.active,
336 + .datepicker table tr td.active.disabled,
337 + .datepicker table tr td.active.disabled.active,
338 + .datepicker table tr td.active.disabled.disabled,
339 + .datepicker table tr td.active.disabled:active,
340 + .datepicker table tr td.active.disabled:hover,
341 + .datepicker table tr td.active.disabled:hover.active,
342 + .datepicker table tr td.active.disabled:hover.disabled,
343 + .datepicker table tr td.active.disabled:hover:active,
344 + .datepicker table tr td.active.disabled:hover:hover,
345 + .datepicker table tr td.active.disabled:hover[disabled],
346 + .datepicker table tr td.active.disabled[disabled],
347 + .datepicker table tr td.active:active,
348 + .datepicker table tr td.active:hover,
349 + .datepicker table tr td.active:hover.active,
350 + .datepicker table tr td.active:hover.disabled,
351 + .datepicker table tr td.active:hover:active,
352 + .datepicker table tr td.active:hover:hover,
353 + .datepicker table tr td.active:hover[disabled],
354 + .datepicker table tr td.active[disabled],
355 + .ui-slider-horizontal .ui-slider-range,
356 + .btn-bubble {
357 + background-color: #014582;
358 + }
359 +
360 + .control input:checked ~ .control__indicator,
361 + .btn-primary-outlined,
362 + .page-item.active .page-link,
363 + .mobile-property-tools .nav-pills .nav-link.active,
364 + .agent-nav-wrap .nav-pills .nav-link,
365 + .agent-nav-wrap .nav-pills .nav-link.active,
366 + .chart-nav .nav-pills .nav-link.active,
367 + .dashaboard-snake-nav .step-block.active,
368 + .fc-event,
369 + .fc-event-dot,
370 + .property-schedule-tour-form-wrap .control input:checked ~ .control__indicator,
371 + .agent-detail-page-v2 .agent-nav-wrap .nav-link.active {
372 + border-color: #014582;
373 + }
374 +
375 + .slick-arrow:hover {
376 + background-color: rgba(36,52,140,0.52);
377 + }
378 +
379 + .slick-arrow {
380 + background-color: #014582;
381 + }
382 +
383 + .property-banner .nav-pills .nav-link.active {
384 + background-color: rgba(36,52,140,0.52) !important;
385 + }
386 +
387 + .property-navigation-wrap a.active {
388 + color: #014582;
389 + -webkit-box-shadow: inset 0 -3px #014582;
390 + box-shadow: inset 0 -3px #014582;
391 + }
392 +
393 + .btn-primary,
394 + .fc-button-primary,
395 + .woocommerce nav.woocommerce-pagination ul li a:focus,
396 + .woocommerce nav.woocommerce-pagination ul li a:hover,
397 + .woocommerce nav.woocommerce-pagination ul li span.current {
398 + color: #fff;
399 + background-color: #014582;
400 + border-color: #014582;
401 + }
402 + .btn-primary:focus, .btn-primary:focus:active,
403 + .fc-button-primary:focus,
404 + .fc-button-primary:focus:active {
405 + color: #fff;
406 + background-color: #014582;
407 + border-color: #014582;
408 + }
409 + .btn-primary:hover,
410 + .fc-button-primary:hover {
411 + color: #fff;
412 + background-color: #24348c;
413 + border-color: #24348c;
414 + }
415 + .btn-primary:active,
416 + .btn-primary:not(:disabled):not(:disabled):active,
417 + .fc-button-primary:active,
418 + .fc-button-primary:not(:disabled):not(:disabled):active {
419 + color: #fff;
420 + background-color: #24348c;
421 + border-color: #24348c;
422 + }
423 +
424 + .btn-secondary,
425 + .woocommerce span.onsale,
426 + .woocommerce ul.products li.product .button,
427 + .woocommerce #respond input#submit.alt,
428 + .woocommerce a.button.alt,
429 + .woocommerce button.button.alt,
430 + .woocommerce input.button.alt,
431 + .woocommerce #review_form #respond .form-submit input,
432 + .woocommerce #respond input#submit,
433 + .woocommerce a.button,
434 + .woocommerce button.button,
435 + .woocommerce input.button {
436 + color: #fff;
437 + background-color: #2ea7b2;
438 + border-color: #2ea7b2;
439 + }
440 + .woocommerce ul.products li.product .button:focus,
441 + .woocommerce ul.products li.product .button:active,
442 + .woocommerce #respond input#submit.alt:focus,
443 + .woocommerce a.button.alt:focus,
444 + .woocommerce button.button.alt:focus,
445 + .woocommerce input.button.alt:focus,
446 + .woocommerce #respond input#submit.alt:active,
447 + .woocommerce a.button.alt:active,
448 + .woocommerce button.button.alt:active,
449 + .woocommerce input.button.alt:active,
450 + .woocommerce #review_form #respond .form-submit input:focus,
451 + .woocommerce #review_form #respond .form-submit input:active,
452 + .woocommerce #respond input#submit:active,
453 + .woocommerce a.button:active,
454 + .woocommerce button.button:active,
455 + .woocommerce input.button:active,
456 + .woocommerce #respond input#submit:focus,
457 + .woocommerce a.button:focus,
458 + .woocommerce button.button:focus,
459 + .woocommerce input.button:focus {
460 + color: #fff;
461 + background-color: #2ea7b2;
462 + border-color: #2ea7b2;
463 + }
464 + .btn-secondary:hover,
465 + .woocommerce ul.products li.product .button:hover,
466 + .woocommerce #respond input#submit.alt:hover,
467 + .woocommerce a.button.alt:hover,
468 + .woocommerce button.button.alt:hover,
469 + .woocommerce input.button.alt:hover,
470 + .woocommerce #review_form #respond .form-submit input:hover,
471 + .woocommerce #respond input#submit:hover,
472 + .woocommerce a.button:hover,
473 + .woocommerce button.button:hover,
474 + .woocommerce input.button:hover {
475 + color: #fff;
476 + background-color: #333333;
477 + border-color: #333333;
478 + }
479 + .btn-secondary:active,
480 + .btn-secondary:not(:disabled):not(:disabled):active {
481 + color: #fff;
482 + background-color: #333333;
483 + border-color: #333333;
484 + }
485 +
486 + .btn-primary-outlined {
487 + color: #014582;
488 + background-color: transparent;
489 + border-color: #014582;
490 + }
491 + .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
492 + color: #014582;
493 + background-color: transparent;
494 + border-color: #014582;
495 + }
496 + .btn-primary-outlined:hover {
497 + color: #fff;
498 + background-color: #24348c;
499 + border-color: #24348c;
500 + }
501 + .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
502 + color: #014582;
503 + background-color: rgba(26, 26, 26, 0);
504 + border-color: #24348c;
505 + }
506 +
507 + .btn-secondary-outlined {
508 + color: #2ea7b2;
509 + background-color: transparent;
510 + border-color: #2ea7b2;
511 + }
512 + .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
513 + color: #2ea7b2;
514 + background-color: transparent;
515 + border-color: #2ea7b2;
516 + }
517 + .btn-secondary-outlined:hover {
518 + color: #fff;
519 + background-color: #333333;
520 + border-color: #333333;
521 + }
522 + .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
523 + color: #2ea7b2;
524 + background-color: rgba(26, 26, 26, 0);
525 + border-color: #333333;
526 + }
527 +
528 + .btn-call {
529 + color: #2ea7b2;
530 + background-color: transparent;
531 + border-color: #2ea7b2;
532 + }
533 + .btn-call:focus, .btn-call:focus:active {
534 + color: #2ea7b2;
535 + background-color: transparent;
536 + border-color: #2ea7b2;
537 + }
538 + .btn-call:hover {
539 + color: #2ea7b2;
540 + background-color: rgba(26, 26, 26, 0);
541 + border-color: #333333;
542 + }
543 + .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
544 + color: #2ea7b2;
545 + background-color: rgba(26, 26, 26, 0);
546 + border-color: #333333;
547 + }
548 + .icon-delete .btn-loader:after{
549 + border-color: #014582 transparent #014582 transparent
550 + }
551 +
552 + .header-v1 {
553 + background-color: #004274;
554 + border-bottom: 1px solid #004274;
555 + }
556 +
557 + .header-v1 a.nav-link {
558 + color: #ffffff;
559 + }
560 +
561 + .header-v1 a.nav-link:hover,
562 + .header-v1 a.nav-link:active {
563 + color: #00aeff;
564 + background-color: rgba(255,255,255,0.2);
565 + }
566 + .header-desktop .main-nav .nav-link {
567 + letter-spacing: 0.0px;
568 + }
569 +
570 + .header-v2 .header-top,
571 + .header-v5 .header-top,
572 + .header-v2 .header-contact-wrap {
573 + background-color: #ffffff;
574 + }
575 +
576 + .header-v2 .header-bottom,
577 + .header-v5 .header-bottom {
578 + background-color: #004274;
579 + }
580 +
581 + .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 {
582 + color: #004274;
583 + }
584 +
585 + .header-v2 .header-contact-left {
586 + color: #004274;
587 + }
588 +
589 + .header-v2 .header-bottom,
590 + .header-v2 .navbar-nav > li,
591 + .header-v2 .navbar-nav > li:first-of-type,
592 + .header-v5 .header-bottom,
593 + .header-v5 .navbar-nav > li,
594 + .header-v5 .navbar-nav > li:first-of-type {
595 + border-color: rgba(255,255,255,0.2);
596 + }
597 +
598 + .header-v2 a.nav-link,
599 + .header-v5 a.nav-link {
600 + color: #ffffff;
601 + }
602 +
603 + .header-v2 a.nav-link:hover,
604 + .header-v2 a.nav-link:active,
605 + .header-v5 a.nav-link:hover,
606 + .header-v5 a.nav-link:active {
607 + color: #00aeff;
608 + background-color: rgba(255,255,255,0.2);
609 + }
610 +
611 + .header-v2 .header-contact-right a:hover,
612 + .header-v2 .header-contact-right a:active,
613 + .header-v3 .header-contact-right a:hover,
614 + .header-v3 .header-contact-right a:active {
615 + background-color: transparent;
616 + }
617 +
618 + .header-v2 .header-social-icons a,
619 + .header-v5 .header-social-icons a {
620 + color: #004274;
621 + }
622 +
623 + .header-v3 .header-top {
624 + background-color: #ffffff;
625 + }
626 +
627 + .header-v3 .header-bottom {
628 + background-color: #004272;
629 + }
630 +
631 + .header-v3 .header-contact,
632 + .header-v3-mobile {
633 + background-color: #00aeef;
634 + color: #ffffff;
635 + }
636 +
637 + .header-v3 .header-bottom,
638 + .header-v3 .login-register,
639 + .header-v3 .navbar-nav > li,
640 + .header-v3 .navbar-nav > li:first-of-type {
641 + border-color: ;
642 + }
643 +
644 + .header-v3 a.nav-link,
645 + .header-v3 .header-contact-right a:hover, .header-v3 .header-contact-right a:active {
646 + color: #003a6b;
647 + }
648 +
649 + .header-v3 a.nav-link:hover,
650 + .header-v3 a.nav-link:active {
651 + color: #00aeff;
652 + background-color: rgba(26,94,158,1);
653 + }
654 +
655 + .header-v3 .header-social-icons a {
656 + color: #FFFFFF;
657 + }
658 +
659 + .header-v4 {
660 + background-color: #000000;
661 + }
662 +
663 + .header-v4 a.nav-link {
664 + color: #ffffff;
665 + }
666 +
667 + .header-v4 a.nav-link:hover,
668 + .header-v4 a.nav-link:active {
669 + color: #00aeff;
670 + background-color: rgba(0, 174, 255, 0.1);
671 + }
672 +
673 + .header-v6 .header-top {
674 + background-color: #00AEEF;
675 + }
676 +
677 + .header-v6 a.nav-link {
678 + color: #FFFFFF;
679 + }
680 +
681 + .header-v6 a.nav-link:hover,
682 + .header-v6 a.nav-link:active {
683 + color: #00aeff;
684 + background-color: rgba(255,255,255,0.2);
685 + }
686 +
687 + .header-v6 .header-social-icons a {
688 + color: #FFFFFF;
689 + }
690 +
691 + .header-mobile {
692 + background-color: #ffffff;
693 + }
694 + .header-mobile .toggle-button-left,
695 + .header-mobile .toggle-button-right {
696 + color: #0b0049;
697 + }
698 +
699 + .nav-mobile .logged-in-nav a,
700 + .nav-mobile .main-nav,
701 + .nav-mobile .navi-login-register {
702 + background-color: #ffffff;
703 + }
704 +
705 + .nav-mobile .logged-in-nav a,
706 + .nav-mobile .main-nav .nav-item .nav-item a,
707 + .nav-mobile .main-nav .nav-item a,
708 + .navi-login-register .main-nav .nav-item a {
709 + color: #000000;
710 + border-bottom: 1px solid #000000;
711 + background-color: #ffffff;
712 + }
713 +
714 + .nav-mobile .btn-create-listing,
715 + .navi-login-register .btn-create-listing {
716 + color: #fff;
717 + border: 1px solid #014582;
718 + background-color: #014582;
719 + }
720 +
721 + .nav-mobile .btn-create-listing:hover, .nav-mobile .btn-create-listing:active,
722 + .navi-login-register .btn-create-listing:hover,
723 + .navi-login-register .btn-create-listing:active {
724 + color: #fff;
725 + border: 1px solid #014582;
726 + background-color: rgba(0, 174, 255, 0.65);
727 + }
728 +
729 + .header-transparent-wrap .header-v4 {
730 + background-color: transparent;
731 + border-bottom: 1px none rgba(255,255,255,0.3);
732 + }
733 +
734 + .header-transparent-wrap .header-v4 a {
735 + color: #ffffff;
736 + }
737 +
738 + .header-transparent-wrap .header-v4 a:hover,
739 + .header-transparent-wrap .header-v4 a:active {
740 + color: #4aa7e1;
741 + background-color: rgba(255, 255, 255, 0.1);
742 + }
743 +
744 + .main-nav .navbar-nav .nav-item .dropdown-menu,
745 + .login-register .login-register-nav li .dropdown-menu {
746 + background-color: rgba(255,255,255,0.95);
747 + }
748 +
749 + .login-register .login-register-nav li .dropdown-menu:before {
750 + border-left-color: rgba(255,255,255,0.95);
751 + border-top-color: rgba(255,255,255,0.95);
752 + }
753 +
754 + .main-nav .navbar-nav .nav-item .nav-item a,
755 + .login-register .login-register-nav li .dropdown-menu .nav-item a {
756 + color: #888888;
757 + border-bottom: 1px solid #e6e6e6;
758 + }
759 +
760 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
761 + .main-nav .navbar-nav .nav-item .nav-item a:active,
762 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
763 + color: #4aa7e1;
764 + }
765 + .main-nav .navbar-nav .nav-item .nav-item a:hover,
766 + .main-nav .navbar-nav .nav-item .nav-item a:active,
767 + .login-register .login-register-nav li .dropdown-menu .nav-item a:hover {
768 + background-color: rgba(0, 174, 255, 0.1);
769 + }
770 +
771 + .header-main-wrap .btn-create-listing {
772 + color: #4aa7e1;
773 + border: 1px solid #4aa7e1;
774 + background-color: #ffffff;
775 + }
776 +
777 + .header-main-wrap .btn-create-listing:hover,
778 + .header-main-wrap .btn-create-listing:active {
779 + color: rgba(255,255,255,1);
780 + border: 1px solid #4aa7e1;
781 + background-color: rgba(74,167,225,1);
782 + }
783 +
784 + .header-transparent-wrap .header-v4 .btn-create-listing {
785 + color: #ffffff;
786 + border: 1px solid #ffffff;
787 + background-color: rgba(255,255,255,0.2);
788 + }
789 +
790 + .header-transparent-wrap .header-v4 .btn-create-listing:hover,
791 + .header-transparent-wrap .header-v4 .btn-create-listing:active {
792 + color: rgba(255,255,255,1);
793 + border: 1px solid #4aa7e1;
794 + background-color: rgba(74,167,225,1);
795 + }
796 +
797 + .header-transparent-wrap .logged-in-nav a,
798 + .logged-in-nav a {
799 + color: #15268c;
800 + border-color: #e6e6e6;
801 + background-color: #FFFFFF;
802 + }
803 +
804 + .header-transparent-wrap .logged-in-nav a:hover,
805 + .header-transparent-wrap .logged-in-nav a:active,
806 + .logged-in-nav a:hover,
807 + .logged-in-nav a:active {
808 + color: #17298c;
809 + background-color: rgba(204,204,204,0.15);
810 + border-color: #e6e6e6;
811 + }
812 +
813 + .form-control::-webkit-input-placeholder,
814 + .search-banner-wrap ::-webkit-input-placeholder,
815 + .advanced-search ::-webkit-input-placeholder,
816 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
817 + .overlay-search-advanced-module ::-webkit-input-placeholder {
818 + color: #a1a7a8;
819 + }
820 + .bootstrap-select > .dropdown-toggle.bs-placeholder,
821 + .bootstrap-select > .dropdown-toggle.bs-placeholder:active,
822 + .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
823 + .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
824 + color: #a1a7a8;
825 + }
826 + .form-control::placeholder,
827 + .search-banner-wrap ::-webkit-input-placeholder,
828 + .advanced-search ::-webkit-input-placeholder,
829 + .advanced-search-banner-wrap ::-webkit-input-placeholder,
830 + .overlay-search-advanced-module ::-webkit-input-placeholder {
831 + color: #a1a7a8;
832 + }
833 +
834 + .search-banner-wrap ::-moz-placeholder,
835 + .advanced-search ::-moz-placeholder,
836 + .advanced-search-banner-wrap ::-moz-placeholder,
837 + .overlay-search-advanced-module ::-moz-placeholder {
838 + color: #a1a7a8;
839 + }
840 +
841 + .search-banner-wrap :-ms-input-placeholder,
842 + .advanced-search :-ms-input-placeholder,
843 + .advanced-search-banner-wrap ::-ms-input-placeholder,
844 + .overlay-search-advanced-module ::-ms-input-placeholder {
845 + color: #a1a7a8;
846 + }
847 +
848 + .search-banner-wrap :-moz-placeholder,
849 + .advanced-search :-moz-placeholder,
850 + .advanced-search-banner-wrap :-moz-placeholder,
851 + .overlay-search-advanced-module :-moz-placeholder {
852 + color: #a1a7a8;
853 + }
854 +
855 + .advanced-search .form-control,
856 + .advanced-search .bootstrap-select > .btn,
857 + .location-trigger,
858 + .vertical-search-wrap .form-control,
859 + .vertical-search-wrap .bootstrap-select > .btn,
860 + .step-search-wrap .form-control,
861 + .step-search-wrap .bootstrap-select > .btn,
862 + .advanced-search-banner-wrap .form-control,
863 + .advanced-search-banner-wrap .bootstrap-select > .btn,
864 + .search-banner-wrap .form-control,
865 + .search-banner-wrap .bootstrap-select > .btn,
866 + .overlay-search-advanced-module .form-control,
867 + .overlay-search-advanced-module .bootstrap-select > .btn,
868 + .advanced-search-v2 .advanced-search-btn,
869 + .advanced-search-v2 .advanced-search-btn:hover {
870 + border-color: #cccccc;
871 + }
872 +
873 + .advanced-search-nav,
874 + .search-expandable,
875 + .overlay-search-advanced-module {
876 + background-color: #FFFFFF;
877 + }
878 + .btn-search {
879 + color: #ffffff;
880 + background-color: #4aa7e1;
881 + border-color: #4aa7e1;
882 + }
883 + .btn-search:hover, .btn-search:active {
884 + color: #ffffff;
885 + background-color: #24348c;
886 + border-color: #24348c;
887 + }
888 + .advanced-search-btn {
889 + color: #666666;
890 + background-color: #ffffff;
891 + border-color: #dce0e0;
892 + }
893 + .advanced-search-btn:hover, .advanced-search-btn:active {
894 + color: #000000;
895 + background-color: #ffffff;
896 + border-color: #dce0e0;
897 + }
898 + .advanced-search-btn:focus {
899 + color: #666666;
900 + background-color: #ffffff;
901 + border-color: #dce0e0;
902 + }
903 + .search-expandable-label {
904 + color: #ffffff;
905 + background-color: #4aa7e1;
906 + }
907 + .advanced-search-nav {
908 + padding-top: 10px;
909 + padding-bottom: 10px;
910 + }
911 + .features-list-wrap .control--checkbox,
912 + .features-list-wrap .control--radio,
913 + .range-text,
914 + .features-list-wrap .control--checkbox,
915 + .features-list-wrap .btn-features-list,
916 + .overlay-search-advanced-module .search-title,
917 + .overlay-search-advanced-module .overlay-search-module-close {
918 + color: #222222;
919 + }
920 + .advanced-search-half-map {
921 + background-color: #FFFFFF;
922 + }
923 + .advanced-search-half-map .range-text,
924 + .advanced-search-half-map .features-list-wrap .control--checkbox,
925 + .advanced-search-half-map .features-list-wrap .btn-features-list {
926 + color: #222222;
927 + }
928 +
929 + .save-search-btn {
930 + border-color: #4aa7e1 ;
931 + background-color: #4aa7e1 ;
932 + color: #ffffff ;
933 + }
934 + .save-search-btn:hover,
935 + .save-search-btn:active {
936 + border-color: #4aa7e1;
937 + background-color: #4aa7e1 ;
938 + color: #ffffff ;
939 + }
940 + .label-featured {
941 + background-color: transparent;
942 + color: #ffffff;
943 + }
944 +
945 + .dashboard-side-wrap {
946 + background-color: #24348c;
947 + }
948 +
949 + .side-menu a {
950 + color: #ffffff;
951 + }
952 +
953 + .side-menu a.active,
954 + .side-menu .side-menu-parent-selected > a,
955 + .side-menu-dropdown a,
956 + .side-menu a:hover {
957 + color: #4aa7e1;
958 + }
959 + .dashboard-side-menu-wrap .side-menu-dropdown a.active {
960 + color: #4aa7e1
961 + }
962 +
963 + .detail-wrap {
964 + background-color: rgba(217,217,217,0.1);
965 + border-color: #d6d6d6;
966 + }
967 + .top-bar-wrap,
968 + .top-bar-wrap .dropdown-menu,
969 + .switcher-wrap .dropdown-menu {
970 + background-color: #262626;
971 + }
972 + .top-bar-wrap a,
973 + .top-bar-contact,
974 + .top-bar-slogan,
975 + .top-bar-wrap .btn,
976 + .top-bar-wrap .dropdown-menu,
977 + .switcher-wrap .dropdown-menu,
978 + .top-bar-wrap .navbar-toggler {
979 + color: #ffffff;
980 + }
981 + .top-bar-wrap a:hover,
982 + .top-bar-wrap a:active,
983 + .top-bar-wrap .btn:hover,
984 + .top-bar-wrap .btn:active,
985 + .top-bar-wrap .dropdown-menu li:hover,
986 + .top-bar-wrap .dropdown-menu li:active,
987 + .switcher-wrap .dropdown-menu li:hover,
988 + .switcher-wrap .dropdown-menu li:active {
989 + color: rgba(74,167,225,0.59);
990 + }
991 + .class-energy-indicator:nth-child(1) {
992 + background-color: #33a357;
993 + }
994 + .class-energy-indicator:nth-child(2) {
995 + background-color: #79b752;
996 + }
997 + .class-energy-indicator:nth-child(3) {
998 + background-color: #c3d545;
999 + }
1000 + .class-energy-indicator:nth-child(4) {
1001 + background-color: #fff12c;
1002 + }
1003 + .class-energy-indicator:nth-child(5) {
1004 + background-color: #edb731;
1005 + }
1006 + .class-energy-indicator:nth-child(6) {
1007 + background-color: #d66f2c;
1008 + }
1009 + .class-energy-indicator:nth-child(7) {
1010 + background-color: #cc232a;
1011 + }
1012 + .class-energy-indicator:nth-child(8) {
1013 + background-color: #cc232a;
1014 + }
1015 + .class-energy-indicator:nth-child(9) {
1016 + background-color: #cc232a;
1017 + }
1018 + .class-energy-indicator:nth-child(10) {
1019 + background-color: #cc232a;
1020 + }
1021 +
1022 + .agent-detail-page-v2 .agent-profile-wrap { background-color:#24348c }
1023 + .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 }
1024 +
1025 + .agent-detail-page-v2 .all-reviews, .agent-detail-page-v2 .agent-profile-cta a { color:#4aa7e1 }
1026 +
1027 + .footer-top-wrap {
1028 + background-color: #181818;
1029 + }
1030 +
1031 + .footer-bottom-wrap {
1032 + background-color: #000000;
1033 + }
1034 +
1035 + .footer-top-wrap,
1036 + .footer-top-wrap a,
1037 + .footer-bottom-wrap,
1038 + .footer-bottom-wrap a,
1039 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-amenities,
1040 + .footer-top-wrap .property-item-widget .right-property-item-widget-wrap .item-price-wrap,
1041 + .footer-top-wrap .blog-post-content-widget h4 a,
1042 + .footer-top-wrap .blog-post-content-widget,
1043 + .footer-top-wrap .form-tools .control,
1044 + .footer-top-wrap .slick-dots li.slick-active button:before,
1045 + .footer-top-wrap .slick-dots li button::before,
1046 + .footer-top-wrap .widget ul:not(.item-amenities):not(.item-price-wrap):not(.contact-list):not(.dropdown-menu):not(.nav-tabs) li span {
1047 + color: #ffffff;
1048 + }
1049 +
1050 + .footer-top-wrap a:hover,
1051 + .footer-bottom-wrap a:hover,
1052 + .footer-top-wrap .blog-post-content-widget h4 a:hover {
1053 + color: rgba(36,52,140,1);
1054 + }
1055 + .houzez-osm-cluster {
1056 + background-image: url(https://immeublesalexcellence.com/wp-content/themes/houzez/img/map/cluster-icon.png);
1057 + text-align: center;
1058 + color: #fff;
1059 + width: 48px;
1060 + height: 48px;
1061 + line-height: 48px;
1062 + }
1063 + section.top-banner-wrap.slider-revolution-wrap {
1064 + height: auto;
1065 +}
1066 +.label-status {
1067 + font-size: 14px;
1068 + text-transform: uppercase; /* Optionnel : Met les étiquettes en majuscules */
1069 +}
1070 +.hz-label {
1071 + font-size: 14px; /* Ajustez la taille selon vos besoins */
1072 + font-weight: bold; /* Rend le texte en gras */
1073 + color: #ffffff; /* Couleur du texte */
1074 + background-color: #166584; /* Couleur de fond */
1075 + padding: 5px 10px; /* Espacement interne */
1076 + border-radius: 3px; /* Coins arrondis */
1077 +}
1078 +</style>
1079 +<link rel='stylesheet' id='leaflet-css' href='https://immeublesalexcellence.com/wp-content/themes/houzez/js//vendors/leaflet/leaflet.css?ver=1.9.3' type='text/css' media='all' />
1080 +<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic&#038;display=swap&#038;ver=1743772216" /></noscript><link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&#038;display=swap&#038;ver=6.7.5' type='text/css' media='all' />
1081 +<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.27.1" id="font-awesome-4-shim-js"></script>
1082 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
1083 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
1084 +<script type="text/javascript" src="https://immeublesalexcellence.com/wp-content/plugins/houzez-studio/public/js/houzez-studio-public.js?ver=1.2.1" id="houzez-studio-js"></script>
1085 +<link rel="https://api.w.org/" href="https://immeublesalexcellence.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://immeublesalexcellence.com/wp-json/wp/v2/properties/3368" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://immeublesalexcellence.com/xmlrpc.php?rsd" />
1086 +<meta name="generator" content="WordPress 6.7.5" />
1087 +<link rel='shortlink' href='https://immeublesalexcellence.com/?p=3368' />
1088 +<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-3-%25c2%25bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue%2F" />
1089 +<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://immeublesalexcellence.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-3-%25c2%25bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue%2F&#038;format=xml" />
1090 +<meta name="generator" content="Redux 4.5.6" /> <style>.cmplz-hidden {
1091 + display: none !important;
1092 + }</style><meta name="generator" content="Elementor 3.27.1; features: e_font_icon_svg, additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
1093 + <style>
1094 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
1095 + .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
1096 + background-image: none !important;
1097 + }
1098 + @media screen and (max-height: 1024px) {
1099 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
1100 + .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
1101 + background-image: none !important;
1102 + }
1103 + }
1104 + @media screen and (max-height: 640px) {
1105 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
1106 + .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
1107 + background-image: none !important;
1108 + }
1109 + }
1110 + </style>
1111 + <meta name="generator" content="Powered by Slider Revolution 6.7.20 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
1112 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-32x32.png" sizes="32x32" />
1113 +<link rel="icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-192x192.png" sizes="192x192" />
1114 +<link rel="apple-touch-icon" href="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-180x180.png" />
1115 +<meta name="msapplication-TileImage" content="https://immeublesalexcellence.com/wp-content/uploads/2023/11/cropped-Immeubles-Alexcellence-270x270.png" />
1116 +<script>function setREVStartSize(e){
1117 + //window.requestAnimationFrame(function() {
1118 + window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;
1119 + window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;
1120 + try {
1121 + var pw = document.getElementById(e.c).parentNode.offsetWidth,
1122 + newh;
1123 + pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw;
1124 + e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw);
1125 + e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw);
1126 + e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh);
1127 + e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh);
1128 + e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide);
1129 + e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide);
1130 + e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0);
1131 + if(e.layout==="fullscreen" || e.l==="fullscreen")
1132 + newh = Math.max(e.mh,window.RSIH);
1133 + else{
1134 + e.gw = Array.isArray(e.gw) ? e.gw : [e.gw];
1135 + for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1];
1136 + e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el;
1137 + e.gh = Array.isArray(e.gh) ? e.gh : [e.gh];
1138 + for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1];
1139 +
1140 + var nl = new Array(e.rl.length),
1141 + ix = 0,
1142 + sl;
1143 + e.tabw = e.tabhide>=pw ? 0 : e.tabw;
1144 + e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw;
1145 + e.tabh = e.tabhide>=pw ? 0 : e.tabh;
1146 + e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh;
1147 + for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i];
1148 + sl = nl[0];
1149 + for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;}
1150 + var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]);
1151 + newh = (e.gh[ix] * m) + (e.tabh + e.thumbh);
1152 + }
1153 + var el = document.getElementById(e.c);
1154 + if (el!==null && el) el.style.height = newh+"px";
1155 + el = document.getElementById(e.c+"_wrapper");
1156 + if (el!==null && el) {
1157 + el.style.height = newh+"px";
1158 + el.style.display = "block";
1159 + }
1160 + } catch(e){
1161 + console.log("Failure at Presize of Slider:" + e)
1162 + }
1163 + //});
1164 + };</script>
1165 +</head>
1166 +
1167 +<body data-cmplz=2 class="property-template-default single single-property postid-3368 houzez-theme houzez-footer-position transparent- houzez-header- elementor-default elementor-kit-6">
1168 +
1169 +
1170 + <div class="nav-mobile nav-mobile-js">
1171 + <div class="main-nav navbar slideout-menu slideout-menu-left" id="nav-mobile">
1172 + <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://immeublesalexcellence.com/">Accueil</a> </li>
1173 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1174 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1175 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1176 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1177 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1178 +<li class="nav-item menu-item menu-item-type-post_type menu-item-object-page "><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1179 +</ul> </div><!-- main-nav -->
1180 + <nav class="navi-login-register slideout-menu slideout-menu-right" id="navi-user">
1181 +
1182 +
1183 +
1184 + </nav><!-- .navi -->
1185 +
1186 +
1187 +
1188 +</div><!-- nav-mobile -->
1189 + <main id="main-wrap" class="main-wrap main-wrap-js">
1190 +
1191 + <header class="header-main-wrap ">
1192 + <div class="top-bar-wrap ">
1193 + <div class="container">
1194 + <div class="d-flex justify-content-between">
1195 + <div class="top-bar-left-wrap">
1196 + <div class="header-social-icons">
1197 + <ul class="list-inline">
1198 +
1199 + <li class="list-inline-item">
1200 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1201 + <i class="houzez-icon icon-social-media-facebook"></i>
1202 + </a>
1203 + </li>
1204 +
1205 +
1206 +
1207 +
1208 +
1209 +
1210 +
1211 +
1212 + <li class="list-inline-item">
1213 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1214 + <i class="houzez-icon icon-social-instagram"></i>
1215 + </a>
1216 + </li>
1217 +
1218 +
1219 +
1220 +
1221 + </ul>
1222 +</div><!-- .header-social-icons -->
1223 + </div><!-- top-bar-left-wrap -->
1224 +
1225 + <div class="top-bar-right-wrap">
1226 + <div class="top-bar-contact">
1227 +
1228 + </div><!-- top-bar-contact --> </div><!-- top-bar-right-wrap -->
1229 + </div><!-- d-flex -->
1230 + </div><!-- container -->
1231 +</div><!-- top-bar-wrap --><div class="header-desktop header-v2">
1232 + <div class="header-top">
1233 + <div class="container">
1234 + <div class="header-inner-wrap">
1235 + <div class="navbar d-flex align-items-center">
1236 +
1237 +
1238 + <div class="logo logo-desktop">
1239 + <a href="https://immeublesalexcellence.com/">
1240 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="66,5px" width="218px" alt="logo">
1241 + </a>
1242 + </div>
1243 +
1244 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1245 +
1246 +
1247 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1248 + <div class="header-contact-left">
1249 + <i class="houzez-icon icon-phone ml-1"></i>
1250 + </div><!-- header-contact-left -->
1251 + <div class="header-contact-right">
1252 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1253 + <div><a href="mailto:"></a></div>
1254 + </div><!-- .header-contact-right -->
1255 + </div><!-- .header-contact -->
1256 +
1257 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1258 + <div class="header-contact-left">
1259 + <i class="houzez-icon icon-pin ml-1"></i>
1260 + </div><!-- header-contact-left -->
1261 + <div class="header-contact-right">
1262 + <div>1025, rue des Seigneurs, #301</div>
1263 + <div>Sherbrooke (Québec) J1H 5V3</div>
1264 + </div><!-- .header-contact-right -->
1265 + </div><!-- .header-contact -->
1266 +
1267 +
1268 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1269 + <div class="header-contact-left">
1270 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1271 + </div><!-- header-contact-left -->
1272 + <div class="header-contact-right">
1273 + <div>8 h 30 à 16 h 30</div>
1274 + <div>Lundi au jeudi</div>
1275 + </div><!-- .header-contact-right -->
1276 + </div><!-- .header-contact -->
1277 +
1278 +
1279 + <div class="header-contact header-contact-4 d-flex align-items-center">
1280 + <div class="header-social-icons">
1281 + <ul class="list-inline">
1282 +
1283 + <li class="list-inline-item">
1284 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1285 + <i class="houzez-icon icon-social-media-facebook"></i>
1286 + </a>
1287 + </li>
1288 +
1289 +
1290 +
1291 +
1292 +
1293 +
1294 +
1295 +
1296 + <li class="list-inline-item">
1297 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1298 + <i class="houzez-icon icon-social-instagram"></i>
1299 + </a>
1300 + </li>
1301 +
1302 +
1303 +
1304 +
1305 + </ul>
1306 +</div><!-- .header-social-icons -->
1307 + </div><!-- .header-contact -->
1308 +</div><!-- .header-contact-wrap -->
1309 +
1310 +
1311 + </div><!-- navbar -->
1312 + </div>
1313 + </div>
1314 + </div><!-- .header-top -->
1315 + <div id="header-section" class="header-bottom" data-sticky="1">
1316 + <div class="container">
1317 + <div class="header-inner-wrap">
1318 + <div class="navbar d-flex align-items-center">
1319 +
1320 + <nav class="main-nav on-hover-menu navbar-expand-lg flex-grow-1">
1321 + <ul id="main-nav" class="navbar-nav "><li id="menu-item-1535" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home nav-item menu-item-1535 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/">Accueil</a> </li>
1322 +<li id="menu-item-1809" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1809 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/sherbrooke/">À propos</a> </li>
1323 +<li id="menu-item-1771" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-1771 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/appartements-a-louer/">Appartements à louer</a> </li>
1324 +<li id="menu-item-2352" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2352 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/reglements/">Réglementation</a> </li>
1325 +<li id="menu-item-2432" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2432 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/location-entrepots-sherbrooke/">Nos Entrepôts</a> </li>
1326 +<li id="menu-item-2426" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2426 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/demande-location/">Demande de location</a> </li>
1327 +<li id="menu-item-2466" class="menu-item menu-item-type-post_type menu-item-object-page nav-item menu-item-2466 menu-item-design-default"><a class="nav-link " href="https://immeublesalexcellence.com/contact/">Contact</a> </li>
1328 +</ul> </nav><!-- main-nav -->
1329 +
1330 + <div class="login-register on-hover-menu">
1331 + <ul class="login-register-nav dropdown d-flex align-items-center">
1332 +
1333 +
1334 +
1335 +
1336 +
1337 +
1338 + </ul>
1339 +</div>
1340 + </div><!-- navbar -->
1341 + </div>
1342 + </div>
1343 + </div><!-- .header-bottom -->
1344 +</div><!-- .header-v2 -->
1345 +
1346 +<div class="header-v2 header-v2-mobile">
1347 + <div class="header-contact-wrap navbar-expand-lg d-flex align-items-center justify-content-between">
1348 +
1349 +
1350 + <div class="header-contact header-contact-1 d-flex align-items-center flex-fill">
1351 + <div class="header-contact-left">
1352 + <i class="houzez-icon icon-phone ml-1"></i>
1353 + </div><!-- header-contact-left -->
1354 + <div class="header-contact-right">
1355 + <div><a href="tel://819-345-1370">819-345-1370</a></div>
1356 + <div><a href="mailto:"></a></div>
1357 + </div><!-- .header-contact-right -->
1358 + </div><!-- .header-contact -->
1359 +
1360 + <div class="header-contact header-contact-2 d-flex align-items-center flex-fill">
1361 + <div class="header-contact-left">
1362 + <i class="houzez-icon icon-pin ml-1"></i>
1363 + </div><!-- header-contact-left -->
1364 + <div class="header-contact-right">
1365 + <div>1025, rue des Seigneurs, #301</div>
1366 + <div>Sherbrooke (Québec) J1H 5V3</div>
1367 + </div><!-- .header-contact-right -->
1368 + </div><!-- .header-contact -->
1369 +
1370 +
1371 + <div class="header-contact header-contact-3 d-flex align-items-center flex-fill">
1372 + <div class="header-contact-left">
1373 + <i class="houzez-icon icon-time-clock-circle ml-1"></i>
1374 + </div><!-- header-contact-left -->
1375 + <div class="header-contact-right">
1376 + <div>8 h 30 à 16 h 30</div>
1377 + <div>Lundi au jeudi</div>
1378 + </div><!-- .header-contact-right -->
1379 + </div><!-- .header-contact -->
1380 +
1381 +
1382 + <div class="header-contact header-contact-4 d-flex align-items-center">
1383 + <div class="header-social-icons">
1384 + <ul class="list-inline">
1385 +
1386 + <li class="list-inline-item">
1387 + <a target="_blank" class="btn-square btn-facebook" href="https://www.facebook.com/immeublesalexcellence">
1388 + <i class="houzez-icon icon-social-media-facebook"></i>
1389 + </a>
1390 + </li>
1391 +
1392 +
1393 +
1394 +
1395 +
1396 +
1397 +
1398 +
1399 + <li class="list-inline-item">
1400 + <a target="_blank" class="btn-square btn-instagram" href="https://www.instagram.com/immeublealexellence/">
1401 + <i class="houzez-icon icon-social-instagram"></i>
1402 + </a>
1403 + </li>
1404 +
1405 +
1406 +
1407 +
1408 + </ul>
1409 +</div><!-- .header-social-icons -->
1410 + </div><!-- .header-contact -->
1411 +</div><!-- .header-contact-wrap -->
1412 +
1413 +
1414 +
1415 +</div><!-- header-v2-mobile --><div id="header-mobile" class="header-mobile d-flex align-items-center" data-sticky="">
1416 + <div class="header-mobile-left">
1417 + <button class="btn toggle-button-left">
1418 + <i class="houzez-icon icon-navigation-menu"></i>
1419 + </button><!-- toggle-button-left -->
1420 + </div><!-- .header-mobile-left -->
1421 + <div class="header-mobile-center flex-grow-1">
1422 + <div class="logo logo-mobile">
1423 + <a href="https://immeublesalexcellence.com/">
1424 + <img src="https://immeublesalexcellence.com/wp-content/uploads/2023/11/Immeubles-Alexcellence-logo.png" height="39" width="127" alt="Mobile logo">
1425 + </a>
1426 +</div> </div>
1427 +
1428 + <div class="header-mobile-right">
1429 + </div><!-- .header-mobile-right -->
1430 +
1431 +</div><!-- header-mobile --></header><!-- .header-main-wrap -->
1432 +
1433 + <section class="content-wrap property-wrap property-detail-v6 ">
1434 + <div class="property-navigation-wrap">
1435 + <div class="container-fluid">
1436 + <ul class="property-navigation list-unstyled d-flex justify-content-between">
1437 + <li class="property-navigation-item">
1438 + <a class="back-top" href="#main-wrap">
1439 + <i class="houzez-icon icon-arrow-button-circle-up"></i>
1440 + </a>
1441 + </li>
1442 + <li class="property-navigation-item">
1443 + <a class="target" href="#property-description-wrap">Description du loyer</a>
1444 + </li><li class="property-navigation-item">
1445 + <a class="target" href="#property-virtual-tour-wrap">visite virtuelle 360°</a>
1446 + </li>
1447 + </ul>
1448 + </div><!-- container -->
1449 +</div><!-- property-navigation-wrap -->
1450 +<div class="page-title-wrap">
1451 + <div class="container">
1452 + <div class="d-flex align-items-center">
1453 +
1454 +<div class="breadcrumb-wrap">
1455 + <nav>
1456 + <ol class="breadcrumb"><li class="breadcrumb-item breadcrumb-item-home"><i class="houzez-icon icon-house"></i><a href="https://immeublesalexcellence.com/">Accueil</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/1-er-octobre-2026/"> 1 er octobre 2026</a></li><li class="breadcrumb-item"><a href="https://immeublesalexcellence.com/statut/a-louer/"> À LOUER</a></li><li class="breadcrumb-item active">Logement 4 ½ entièrement rénové &#8211; Sherbrooke Secteur Université et Mont-Bellevue</li></ol> </nav>
1457 +</div><!-- breadcrumb-wrap --> <ul class="item-tools">
1458 +
1459 + <li class="item-tool houzez-favorite">
1460 + <span class="add-favorite-js item-tool-favorite" data-listid="3368">
1461 + <i class="houzez-icon icon-love-it "></i>
1462 + </span><!-- item-tool-favorite -->
1463 + </li><!-- item-tool -->
1464 +
1465 + <li class="item-tool houzez-share">
1466 + <span class="item-tool-share dropdown-toggle" data-toggle="dropdown">
1467 + <i class="houzez-icon icon-share"></i>
1468 + </span><!-- item-tool-favorite -->
1469 + <div class="dropdown-menu dropdown-menu-right item-tool-dropdown-menu">
1470 +
1471 +<a class="dropdown-item" target="_blank" href="https://api.whatsapp.com/send?text=Logement+4+%C2%BD+enti%C3%A8rement+r%C3%A9nov%C3%A9+%26%238211%3B+Sherbrooke+Secteur+Universit%C3%A9+et+Mont-Bellevue&nbsp;https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-3-%25c2%25bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue%2F">
1472 + <i class="houzez-icon icon-messaging-whatsapp mr-1"></i> WhatsApp</a>
1473 +
1474 +<a class="dropdown-item" href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-3-%25c2%25bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue%2F&amp;media=https%3A%2F%2Fimmeublesalexcellence.com%2Fwp-content%2Fuploads%2F2025%2F08%2F4demi-logement-UdeS-1-1024x768.jpg&amp;description=Logement+4+%C2%BD+enti%C3%A8rement+r%C3%A9nov%C3%A9+%26%238211%3B+Sherbrooke+Secteur+Universit%C3%A9+et+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1475 + <i class="houzez-icon icon-social-pinterest mr-1"></i> Pinterest</a>
1476 +
1477 +<a class="dropdown-item" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fimmeublesalexcellence.com%2Fappartements%2Flogement-3-%25c2%25bd-entierement-renove-sherbrooke-secteur-universite-et-mont-bellevue%2F&amp;t=Logement+4+%C2%BD+enti%C3%A8rement+r%C3%A9nov%C3%A9+%26%238211%3B+Sherbrooke+Secteur+Universit%C3%A9+et+Mont-Bellevue" onclick="window.open(this.href, 'mywin','left=50,top=50,width=600,height=350,toolbar=0'); return false;">
1478 + <i class="houzez-icon icon-social-media-facebook mr-1"></i> Facebook

Diff truncated — file too large.