SPB Git forge

spb/lou-ka

Public

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

232commits 1branches 0releases
172.9 MBsize
maindefault branch
2 days agolast push
HTML 98.9% Python 0.6%

[ka2] fix connecteur gestion_tb: refonte 2026 du site appartementstb.ca — la page GoHighLevel n'a plus l'arbre de colonnes par logement, tout le catalogue est maintenant un tableau JSON « window.GTB_LOGEMENTS » embarqué dans un bloc c-custom-code (le sync tombait à 0 trouvé, médiane ~15-28); nouveau parseur du tableau (champs structurés : prix, adresse, ville, chambres, sdb, dispo, animaux, photos; deep-link #logement=<id>), ancien parcours de l'arbre conservé en secours; fixtures ré-enregistrées. Testé: run.py sync gestion_tb → 18 annonces (médiane 14.875) + tests fixtures OK

Simon-Pierre Boucher committed 20 days ago (Sep 4, 2026) parent a830ba8

3 changed files +2,639 −492

modified louka/connectors/gestion_tb.py +114 −1
@@ -13,13 +13,19 @@
13 13 # (secteur, ville, disponibilité, étage, prix « 900 $ / mois ») et un
14 14 # carrousel de photos (sliderList). Pas de robots.txt (tout permis).
15 15 # Une seule requête HTTP par synchronisation.
16 +# Refonte 2026 (~2026-09) : la page est reconstruite avec des blocs
17 +# c-custom-code autonomes; les logements sont un tableau JSON embarqué
18 +# « window.GTB_LOGEMENTS = [...] » (champs structurés : prix, adresse,
19 +# ville, chambres, sallesDeBain, disponibilite, photos…). Fiche ouverte
20 +# en modal, deep-link « #logement=<id> ». L'ancien parcours de l'arbre
21 +# d'éléments (colonnes) est conservé en secours si le tableau disparaît.
16 22 # -----------------------------------------------------------------------------
17 23 from __future__ import annotations
18 24
19 25 import json
20 26 import re
21 27
22 −from ..schema import Listing
28 +from ..schema import Listing, strip_accents
23 29 from .base import BaseConnector
24 30
25 31 PORTAIL = "https://appartementstb.ca"
@@ -112,6 +118,113 @@ class GestionTBConnector(BaseConnector):
112 118 elements = root["data"]["pageData"]["elements"]
113 119 except (TypeError, KeyError):
114 120 return []
121 + listings = self._from_gtb_logements(elements)
122 + if listings:
123 + return listings
124 + return self._from_cols(elements)
125 +
126 + # -- refonte 2026 : tableau JSON « window.GTB_LOGEMENTS » -----------------
127 + def _from_gtb_logements(self, elements: list) -> list[Listing]:
128 + data: list = []
129 + for el in elements:
130 + if not isinstance(el, dict) or el.get("tagName") != "c-custom-code":
131 + continue
132 + extra = el.get("extra") if isinstance(el.get("extra"), dict) else {}
133 + code = str(((extra.get("customCode") or {}).get("value") or {})
134 + .get("rawCustomCode") or "")
135 + m = re.search(r"window\.GTB_LOGEMENTS\s*=\s*\[", code)
136 + if not m:
137 + continue
138 + try:
139 + data, _ = json.JSONDecoder().raw_decode(code, m.end() - 1)
140 + except ValueError:
141 + continue
142 + break
143 +
144 + listings: list[Listing] = []
145 + for d in data:
146 + if not isinstance(d, dict) or d.get("actif") is not True:
147 + continue
148 + ext_id = str(d.get("id") or "").strip()
149 + price = d.get("prix")
150 + if not ext_id or not isinstance(price, (int, float)):
151 + continue
152 +
153 + unit_type = str(d.get("typeAffiche") or d.get("type") or "").strip()
154 + address = str(d.get("adresse") or "").strip()
155 + city = str(d.get("ville") or "Drummondville").strip().replace("’", "'")
156 + city = _CITY_CANON.get(
157 + re.sub(r"\s+", " ", city).lower().replace("st-", "saint-"),
158 + city)
159 + sector = str(d.get("secteurAffiche") or d.get("secteur")
160 + or "").strip().replace("’", "'")
161 + key = strip_accents(re.sub(r"[\s-]+", " ", sector).lower()) \
162 + .replace("st ", "saint ")
163 + if key == strip_accents(re.sub(r"[\s-]+", " ", city).lower()):
164 + sector = ""
165 +
166 + dispo = d.get("disponibilite") if isinstance(
167 + d.get("disponibilite"), dict) else {}
168 + availability = str(dispo.get("libelle") or "").strip()
169 +
170 + animaux = d.get("animaux") if isinstance(d.get("animaux"), dict) else {}
171 + pets = None
172 + if animaux:
173 + allowed = [bool(animaux.get("chat")), bool(animaux.get("chien"))]
174 + pets = "oui" if all(allowed) else \
175 + ("conditions" if any(allowed) else "non")
176 +
177 + amenities = [str(c).strip() for c in (d.get("caracteristiques") or [])
178 + if str(c).strip()]
179 +
180 + imgs: list[str] = []
181 + for u in [d.get("photoPrincipale"), *(d.get("photos") or [])]:
182 + u = str(u or "")
183 + if u.startswith("http") and u not in imgs:
184 + imgs.append(u)
185 +
186 + details: dict = {}
187 + floor = str(d.get("etage") or "").strip()
188 + if floor:
189 + details["floor_label"] = floor
190 + if isinstance(d.get("stationnements"), (int, float)):
191 + details["parking_count"] = d["stationnements"]
192 +
193 + title = " ".join(x for x in (unit_type, address) if x)
194 + title = f"{title} à {int(price)}$" if title else str(d.get("titre") or "")
195 + description = str(d.get("description") or "").strip()
196 + if not description:
197 + description = " — ".join(
198 + x for x in (str(d.get("titre") or "").strip(),
199 + f"Secteur {sector}" if sector else "",
200 + availability, *amenities) if x)[:600]
201 +
202 + listings.append(Listing(
203 + source=self.source_id,
204 + external_id=ext_id,
205 + url=f"{PORTAIL}/#logement={ext_id}",
206 + title=title,
207 + address=address,
208 + sector=sector,
209 + city=city,
210 + unit_type=unit_type,
211 + price=float(price),
212 + price_label=f"{int(price)} $ / mois",
213 + bedrooms=d.get("chambres") if isinstance(
214 + d.get("chambres"), (int, float)) else None,
215 + bathrooms=d.get("sallesDeBain") if isinstance(
216 + d.get("sallesDeBain"), (int, float)) else None,
217 + availability=availability,
218 + pets=pets,
219 + description=description,
220 + amenities=amenities,
221 + details=details,
222 + images=imgs[:15],
223 + ))
224 + return listings
225 +
226 + # -- ancien format (page constructeur en colonnes, avant refonte 2026) ----
227 + def _from_cols(self, elements: list) -> list[Listing]:
115 228 idx = {e.get("id"): e for e in elements if isinstance(e, dict)}
116 229
117 230 # sections par typologie, dans l'ordre du document
modified tests/fixtures/gestion_tb/488e480806cb2842918a.html +2357 −197
@@ -1,4 +1,4 @@
1 −<!DOCTYPE html><html lang="fr-ca"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><title>Logements et appartements à louer à Drummondville | Gestion TB</title><link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin="anonymous"><link rel="preconnect" href="https://backend.leadconnectorhq.com" crossorigin="anonymous"><link rel="preconnect" href="https://images.leadconnectorhq.com" crossorigin="anonymous"><link rel="preconnect" href="https://cdn.filesafe.space" crossorigin="anonymous"><meta name="title" content="Logements et appartements à louer à Drummondville | Gestion TB"><meta property="og:title" content="Logements et appartements à louer à Drummondville | Gestion TB"><meta name="description" content="Consultez nos logements à louer à Drummondville. Des appartements propres, bien situés et gérés par des professionnels. Trouvez votre prochain chez-vous !"><meta property="og:description" content="Consultez nos logements à louer à Drummondville. Des appartements propres, bien situés et gérés par des professionnels. Trouvez votre prochain chez-vous !"><meta name="author" content="Gestion TB / Appartement TB"><meta property="og:author" content="Gestion TB / Appartement TB"><meta name="image" content="https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6961fae5f8a93b39cf67575e.png"><meta property="og:image" content="https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6961fae5f8a93b39cf67575e.png"><meta name="keywords" content="logements a louer drummondville, appartements a louer drummondville, location logement drummondville, 3/2 a louer, 4/2 a louer drummondville, 5/2 drummondville"><meta property="og:keywords" content="logements a louer drummondville, appartements a louer drummondville, location logement drummondville, 3/2 a louer, 4/2 a louer drummondville, 5/2 drummondville"><meta property="og:type" content="website"><meta property="twitter:type" content="website"><meta name="robots" content="index, follow"><style>
1 +<!DOCTYPE html><html lang="fr-ca"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><title>Logements et appartements à louer à Drummondville | Gestion TB</title><link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin="anonymous"><link rel="preconnect" href="https://backend.leadconnectorhq.com" crossorigin="anonymous"><link rel="preconnect" href="https://images.leadconnectorhq.com" crossorigin="anonymous"><link rel="preconnect" href="https://cdn.filesafe.space" crossorigin="anonymous"><meta name="title" content="Logements et appartements à louer à Drummondville | Gestion TB"><meta property="og:title" content="Logements et appartements à louer à Drummondville | Gestion TB"><meta name="description" content="Consultez nos logements à louer à Drummondville. Des appartements propres, bien situés et gérés par des professionnels. Trouvez votre prochain chez-vous !"><meta property="og:description" content="Consultez nos logements à louer à Drummondville. Des appartements propres, bien situés et gérés par des professionnels. Trouvez votre prochain chez-vous !"><meta name="author" content="Gestion TB / Appartement TB"><meta property="og:author" content="Gestion TB / Appartement TB"><meta name="image" content="https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6961fae5f8a93b39cf67575e.png"><meta property="og:image" content="https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6961fae5f8a93b39cf67575e.png"><meta name="twitter:card" content="summary_large_image"><meta name="twitter:image" content="https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6961fae5f8a93b39cf67575e.png"><meta name="keywords" content="logements a louer drummondville, appartements a louer drummondville, location logement drummondville, 3/2 a louer, 4/2 a louer drummondville, 5/2 drummondville"><meta property="og:keywords" content="logements a louer drummondville, appartements a louer drummondville, location logement drummondville, 3/2 a louer, 4/2 a louer drummondville, 5/2 drummondville"><meta property="og:type" content="website"><meta property="twitter:type" content="website"><meta name="robots" content="index, follow"><style>
2 2
3 3 :root{ --transparent: transparent;
4 4 --primary: #37ca37;
@@ -31,228 +31,58 @@
31 31 --contentfont: 'Inter';
32 32 --text-color: #000000;
33 33 --link-color: #188bf6; } .bg-fixed{bottom:0;top:0;left:0;right:0;position:fixed;overflow:auto;background-color:var(--white)}
34 −
35 34 .drop-zone-draggable .hl_main_popup{box-shadow:none;padding:20px;margin-top:0;border-color:var(--gray);border-width:10px;border-style:solid;background-color:var(--white);width:720px}
36 35
37 −
38 −#hl_main_popup.popup-body{position:absolute!important;left:50%!important;bottom:auto!important;transform:translate(-50%,0)!important;right:auto!important;box-shadow:none;padding:20px;margin-top:0;border-color:var(--gray);border-width:10px;border-style:solid;background-color:var(--white);width:720px}.--mobile #hl_main_popup.popup-body{width:380px!important}@media screen and (min-width:0px) and (max-width:480px){#hl_main_popup.popup-body{width:380px!important}}
39 36
37 +
38 +#hl_main_popup.popup-body{position:absolute!important;left:50%!important;bottom:auto!important;transform:translate(-50%,0)!important;right:auto!important;box-shadow:none;padding:20px;margin-top:0;border-color:var(--gray);border-width:10px;border-style:solid;background-color:var(--white);width:720px}.--mobile #hl_main_popup.popup-body{width:380px!important}@media screen and (min-width:0px) and (max-width:767px){#hl_main_popup.popup-body{width:380px!important}}
40 39 .drop-zone-draggable .hl_main_popup-gcJTzp6WbG{box-shadow:none;padding:20px 0;margin-top:0;border-color:var(--gray);border-width:10px;border-style:solid;background-color:var(--white);width:720px}
41 40
41 +
42 42
43 43
44 − .drop-zone-draggable .row-215Nt-0XPg{margin:0 auto}
45 − .drop-zone-draggable .row-215Nt-0XPg{box-shadow:none;padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}
44 + .drop-zone-draggable .row-215Nt-0XPg{margin:0 auto;box-shadow:none;padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}
45 +
46 46
47 47
48 48 .drop-zone-draggable .col-yW4xiVr8NL{box-shadow:none;padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:100%;border-color:var(--black);border-width:2px;border-style:solid;margin:0}
49 49
50 − .drop-zone-draggable .form-CNBum27-XR{margin:0;width:auto;height:auto}
51 − .drop-zone-draggable .cform-CNBum27-XR{padding:0}
50 + .drop-zone-draggable .form-CNBum27-XR{margin:0;width:auto;height:auto}.drop-zone-draggable .cform-CNBum27-XR{padding:0}
51 +
52 52
53 53
54 −#hl_main_popup-gcJTzp6WbG.popup-body{position:absolute!important;left:50%!important;bottom:auto!important;transform:translate(-50%,0)!important;right:auto!important;box-shadow:none;padding:20px 0;margin-top:0;border-color:var(--gray);border-width:10px;border-style:solid;background-color:var(--white);width:720px}.--mobile #hl_main_popup-gcJTzp6WbG.popup-body{width:380px!important}@media screen and (min-width:0px) and (max-width:480px){#hl_main_popup-gcJTzp6WbG.popup-body{width:380px!important}} @media (max-width:1024px){#row-215Nt-0XPg{animation:none!important}}.--mobile #row-215Nt-0XPg{animation:none!important} #col-yW4xiVr8NL>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-yW4xiVr8NL{animation:none!important}}.--mobile #col-yW4xiVr8NL{animation:none!important}
55 − /* ---- header gestion tb styles ----- */
56 −:root{--inter:'Inter';--transparent:transparent;--white:#ffffff;--black:#000000;--color-frszyjcd:#163760ff}.hl_page-preview--content .section-DUFD6YvRZJ{box-shadow:2px 2px 2px 0#707070;padding:0;margin:0;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:0;border-style:solid;border-radius:0}.hl_page-preview--content .col-a9NtY9lc-G,.hl_page-preview--content .row-nHziU-ybxu{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-a9NtY9lc-G{padding:10px 5px;margin:0}.hl_page-preview--content .nav-menu-v2-HxJubNiK5I{width:auto;height:auto}.hl_page-preview--content .cnav-menu-v2-HxJubNiK5I{font-family:var(--headlinefont);padding:8px 10px;margin:0;item-padding-top:0;item-padding-bottom:0;item-padding-left:16px;item-padding-right:16px;item-margin-top:0;item-margin-bottom:0;item-margin-left:0;item-margin-right:0;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:left;font-weight:400;background-color:var(--white);mobile-background-color:var(--white);popup-background-color:var(--white);mobile-popup-background-color:var(--white);color:var(--text-color);hover-background-color:var(--color-frszyjcd);hover-text-color:var(--white);bold-text-color:var(--black);italic-text-color:var(--black);underline-text-color:var(--black);icon-color:var(--black);cart-icon-color:var(--black);user-icon-color:var(--black);cart-icon-active-color:var(--black);submenu-background-color:var(--white);submenu-mobile-background-color:var(--white);submenu-color:var(--text-color);submenu-hover-background-color:var(--color-frszyjcd);submenu-hover-text-color:var(--white);nav-menu-item-spacing-x:12px;nav-menu-item-spacing-y:0;nav-menu-align:left;sub-menu-align:right;sub-menu-style:popover;border-color:#000;border-style:solid;border-width:0;border-radius:0;item-border-color:#000;item-border-style:solid;item-border-width:1px;item-border-radius:0;box-shadow:none;item-box-shadow:none}#section-DUFD6YvRZJ>.inner{max-width:1170px}@media (max-width:1024px){#section-DUFD6YvRZJ{animation:none!important}}.--mobile #row-nHziU-ybxu,.--mobile #section-DUFD6YvRZJ{animation:none!important}@media (max-width:1024px){#row-nHziU-ybxu{animation:none!important}}#col-a9NtY9lc-G>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-a9NtY9lc-G{animation:none!important}}.--mobile #col-a9NtY9lc-G{animation:none!important}#nav-menu-v2-HxJubNiK5I .mega-menu-container{font-weight:400;font-size:14px;justify-content:flex-start;flex-direction:row;background-color:var(--white)}#nav-menu-v2-HxJubNiK5I .nav-menu-mobile{display:none}#nav-menu-v2-HxJubNiK5I .nav-menu-desktop{display:flex}#nav-menu-v2-HxJubNiK5I .x-icon{display:none}#nav-menu-v2-HxJubNiK5I .menu-layout{flex-direction:row}#nav-menu-v2-HxJubNiK5I .nav-spacing-x{margin-left:12px}#nav-menu-v2-HxJubNiK5I .menu-item-builder-title,#nav-menu-v2-HxJubNiK5I .menu-item-title:hover{background-color:var(--color-frszyjcd);color:var(--white)}#nav-menu-v2-HxJubNiK5I .menu-item-builder-title-icon>span::after,#nav-menu-v2-HxJubNiK5I .menu-item-title-icon>span::after{color:inherit;content:"";font-family:"Font Awesome 5 Free";font-weight:700;font-size:14px;display:inline-block;margin-left:.25rem;transition:transform .3s ease}#nav-menu-v2-HxJubNiK5I .menu-item-builder-title-icon-hover>span::after,#nav-menu-v2-HxJubNiK5I .menu-item-title-icon:hover>span::after{transform:rotate(180deg)}#nav-menu-v2-HxJubNiK5I .menu-item-builder>.submenu-builder,#nav-menu-v2-HxJubNiK5I .menu-item:hover>.mega-menu,#nav-menu-v2-HxJubNiK5I .menu-item:hover>.submenu,#nav-menu-v2-HxJubNiK5I .submenu:hover{visibility:visible;opacity:1}#nav-menu-v2-HxJubNiK5I .submenu,#nav-menu-v2-HxJubNiK5I .submenu-builder{position:absolute;z-index:10;visibility:hidden;opacity:0;transition:visibility 0s,opacity .3s ease-in}#nav-menu-v2-HxJubNiK5I .submenu-content-container{margin:0;padding-top:0;padding-bottom:0;background-color:var(--white);border-width:1px;border-color:#000!important;border-style:solid;border-radius:0;box-shadow:none}#nav-menu-v2-HxJubNiK5I .submenu-column{display:block;grid-template-columns:1fr 1fr;row-gap:0;column-gap:0}#nav-menu-v2-HxJubNiK5I .submenu-item{padding-left:16px;padding-right:16px;margin-bottom:0;color:var(--text-color)}#nav-menu-v2-HxJubNiK5I .submenu-column>li:last-child,#nav-menu-v2-HxJubNiK5I .submenu-column>li:last-child .submenu-item{margin-bottom:0}#nav-menu-v2-HxJubNiK5I .submenu-item:hover{background-color:var(--color-frszyjcd);color:var(--white)}#nav-menu-v2-HxJubNiK5I .sub-menu-align{right:-.5rem}#nav-menu-v2-HxJubNiK5I .user-icon{color:var(--black)}#nav-menu-v2-HxJubNiK5I .mega-menu{visibility:hidden;opacity:0;transition:visibility 0s,opacity .3s ease-in;position:absolute;left:0;z-index:999}#nav-menu-v2-HxJubNiK5I .mega-menu:hover{visibility:visible;opacity:1}#nav-menu-v2-HxJubNiK5I .mega-menu-builder{position:absolute;left:0}#nav-menu-v2-HxJubNiK5I .items-cart,#nav-menu-v2-HxJubNiK5I .items-cart-active{color:var(--black)}#nav-menu-v2-HxJubNiK5I .cart-search-desktop{display:list-item}#nav-menu-v2-HxJubNiK5I .cart-search-mobile{display:none}#nav-menu-v2-HxJubNiK5I .nav-search-wrapper,#nav-menu-v2-HxJubNiK5I .search-bar-container{background-color:var(--white)}#nav-menu-v2-HxJubNiK5I .hl-autocomplete-input{border:1px solid #cacaca;margin:1px;border-radius:16px}#nav-menu-v2-HxJubNiK5I .hl-autocomplete{font-family:inherit}#nav-menu-v2-HxJubNiK5I .hl-autocomplete-button{background:#fff}#nav-menu-v2-HxJubNiK5I .hl-autocomplete-input-wrapper{color:#000;background-color:#fff}#nav-menu-v2-HxJubNiK5I .hl-autocomplete-results{border:1px solid #cacaca;border-top:none;border-radius:16px;border-top-left-radius:0;border-top-right-radius:0;color:var(--black);background-color:var(--white)}#nav-menu-v2-HxJubNiK5I .hl-autocomplete-input:hover{border-width:1.5px;margin:.5px}#nav-menu-v2-HxJubNiK5I .hl-autocomplete-input:focus-within{border-width:2px;margin:0}@media screen and (min-width:0px) and (max-width:480px){#nav-menu-v2-HxJubNiK5I .mega-menu-container{font-weight:400;font-size:14px;background-color:var(--white)}#nav-menu-v2-HxJubNiK5I .nav-menu-mobile{display:block}#nav-menu-v2-HxJubNiK5I .nav-menu-mobile span::before{cursor:pointer;color:var(--black);content:"";font-family:"Font Awesome 5 Free";font-weight:700;font-size:14px}#nav-menu-v2-HxJubNiK5I .nav-menu-desktop{display:block;position:fixed;width:100%;height:100vh;overflow-y:scroll;overscroll-behavior:contain;z-index:999;left:0;top:0;padding-left:1rem;padding-right:1rem;background-color:var(--white);padding-bottom:8rem}#nav-menu-v2-HxJubNiK5I:has(.nav-menu-desktop:not(.hide-popup)),.c-wrapper.c-column:has(#nav-menu-v2-HxJubNiK5I .nav-menu-desktop:not(.hide-popup)),.c-wrapper.c-row:has(#nav-menu-v2-HxJubNiK5I .nav-menu-desktop:not(.hide-popup)),.c-wrapper.c-section:has(#nav-menu-v2-HxJubNiK5I .nav-menu-desktop:not(.hide-popup)){z-index:13}#nav-menu-v2-HxJubNiK5I .hide-popup{display:none!important}#nav-menu-v2-HxJubNiK5I .x-icon{display:flex}#nav-menu-v2-HxJubNiK5I .submenu-content-container{margin:0;background-color:var(--white);padding:0 16px;border:0;box-shadow:none}#nav-menu-v2-HxJubNiK5I .nav-spacing-x{margin-left:0;margin-bottom:12px}#nav-menu-v2-HxJubNiK5I .menu-item-builder>.submenu-builder{display:block}#nav-menu-v2-HxJubNiK5I .menu-item-title-icon{position:relative;padding-right:calc(14px*2);white-space:normal!important;text-wrap:wrap!important}#nav-menu-v2-HxJubNiK5I .menu-item-title-icon>span::after{font-size:14px;position:absolute;right:.375rem}#nav-menu-v2-HxJubNiK5I .menu-item-title-icon-rotate>span::after{transform:rotate(180deg)!important}#nav-menu-v2-HxJubNiK5I .menu-item-title-icon-rotate-reverse>span::after{transform:rotate(0deg)!important}#nav-menu-v2-HxJubNiK5I .submenu{display:none;position:static;z-index:unset;visibility:visible;opacity:1;transition:visibility 0s,opacity .3s ease-in}#nav-menu-v2-HxJubNiK5I .submenu-item{white-space:normal!important;text-wrap:wrap!important}#nav-menu-v2-HxJubNiK5I .submenu-mobile-active{display:block}#nav-menu-v2-HxJubNiK5I .submenu-builder{display:none;position:static;z-index:none;visibility:visible;opacity:1;transition:none}#nav-menu-v2-HxJubNiK5I .itemTarget{border:0!important;border-radius:unset!important;box-shadow:none!important}#nav-menu-v2-HxJubNiK5I .mega-menu{display:none;visibility:visible;opacity:1;position:static;left:unset;bottom:unset;z-index:unset;transition:visibility 0s,opacity .3s ease-in}#nav-menu-v2-HxJubNiK5I .mega-menu-mobile-active{display:block}#nav-menu-v2-HxJubNiK5I .mega-menu-builder{position:static;left:unset;bottom:unset;z-index:unset}#nav-menu-v2-HxJubNiK5I .cart-search-desktop{display:none}#nav-menu-v2-HxJubNiK5I .cart-search-mobile{display:flex}#nav-menu-v2-HxJubNiK5I .nav-search-wrapper,#nav-menu-v2-HxJubNiK5I .search-bar-container{background-color:var(--white)}}#nav-menu-v2-HxJubNiK5I:has(.mega-menu-builder),#nav-menu-v2-HxJubNiK5I:has(.mega-menu-mobile-active),#nav-menu-v2-HxJubNiK5I:has(.menu-item-builder>.submenu-builder),#nav-menu-v2-HxJubNiK5I:has(.menu-item:hover>.mega-menu),#nav-menu-v2-HxJubNiK5I:has(.menu-item:hover>.submenu),#nav-menu-v2-HxJubNiK5I:has(.submenu-mobile-active),.c-wrapper.c-column:has(#nav-menu-v2-HxJubNiK5I .mega-menu-builder),.c-wrapper.c-column:has(#nav-menu-v2-HxJubNiK5I .mega-menu-mobile-active),.c-wrapper.c-column:has(#nav-menu-v2-HxJubNiK5I .menu-item-builder>.submenu-builder),.c-wrapper.c-column:has(#nav-menu-v2-HxJubNiK5I .menu-item:hover>.mega-menu),.c-wrapper.c-column:has(#nav-menu-v2-HxJubNiK5I .menu-item:hover>.submenu),.c-wrapper.c-column:has(#nav-menu-v2-HxJubNiK5I .submenu-mobile-active),.c-wrapper.c-row:has(#nav-menu-v2-HxJubNiK5I .mega-menu-builder),.c-wrapper.c-row:has(#nav-menu-v2-HxJubNiK5I .mega-menu-mobile-active),.c-wrapper.c-row:has(#nav-menu-v2-HxJubNiK5I .menu-item-builder>.submenu-builder),.c-wrapper.c-row:has(#nav-menu-v2-HxJubNiK5I .menu-item:hover>.mega-menu),.c-wrapper.c-row:has(#nav-menu-v2-HxJubNiK5I .menu-item:hover>.submenu),.c-wrapper.c-row:has(#nav-menu-v2-HxJubNiK5I .submenu-mobile-active),.c-wrapper.c-section:has(#nav-menu-v2-HxJubNiK5I .mega-menu-builder),.c-wrapper.c-section:has(#nav-menu-v2-HxJubNiK5I .mega-menu-mobile-active),.c-wrapper.c-section:has(#nav-menu-v2-HxJubNiK5I .menu-item-builder>.submenu-builder),.c-wrapper.c-section:has(#nav-menu-v2-HxJubNiK5I .menu-item:hover>.mega-menu),.c-wrapper.c-section:has(#nav-menu-v2-HxJubNiK5I .menu-item:hover>.submenu),.c-wrapper.c-section:has(#nav-menu-v2-HxJubNiK5I .submenu-mobile-active){z-index:13}
57 − /* ---- Section styles ----- */
58 −:root{--inter:'Inter';--transparent:transparent;--white:#ffffff;--black:#000000;--color-frszyjcd:#163760ff}.hl_page-preview--content .col-WR5cM4L3X7,.hl_page-preview--content .row-kyMqnsiRwF,.hl_page-preview--content .section-fo8vXgGyhn{box-shadow:none;padding:40px 0;margin:0;background-color:var(--color-frszyjcd);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid}.hl_page-preview--content .col-WR5cM4L3X7,.hl_page-preview--content .row-kyMqnsiRwF{margin:0 auto;padding:10px 5px;background-color:var(--transparent);width:100%}.hl_page-preview--content .col-WR5cM4L3X7{margin:0}.hl_page-preview--content #heading-EcitVf6jjT,.hl_page-preview--content #paragraph-Fy_HrphLXH{margin:0;width:auto;height:auto}.hl_page-preview--content .cheading-EcitVf6jjT,.hl_page-preview--content .cparagraph-Fy_HrphLXH{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);inline-colors:var(--white);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:left}.hl_page-preview--content .cheading-EcitVf6jjT{font-family:var(--headlinefont);font-weight:400;padding:0;text-transform:uppercase}#section-fo8vXgGyhn>.inner{max-width:1170px}@media (max-width:1024px){#section-fo8vXgGyhn{animation:none!important}}.--mobile #row-kyMqnsiRwF,.--mobile #section-fo8vXgGyhn{animation:none!important}@media (max-width:1024px){#row-kyMqnsiRwF{animation:none!important}}#col-WR5cM4L3X7>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-WR5cM4L3X7{animation:none!important}}.--mobile #col-WR5cM4L3X7{animation:none!important}.paragraph-Fy_HrphLXH{font-weight:400}.heading-EcitVf6jjT a,.heading-EcitVf6jjT a *,.paragraph-Fy_HrphLXH a,.paragraph-Fy_HrphLXH a *{color:var(--link-color);text-decoration:none}.heading-EcitVf6jjT a u,.heading-EcitVf6jjT a:hover,.paragraph-Fy_HrphLXH a u,.paragraph-Fy_HrphLXH a:hover{text-decoration:underline}.heading-EcitVf6jjT a s,.paragraph-Fy_HrphLXH a s{text-decoration:line-through}@media screen and (min-width:0px) and (max-width:480px){.paragraph-Fy_HrphLXH h1,.paragraph-Fy_HrphLXH h2,.paragraph-Fy_HrphLXH h3,.paragraph-Fy_HrphLXH h4,.paragraph-Fy_HrphLXH h5,.paragraph-Fy_HrphLXH h6,.paragraph-Fy_HrphLXH ul li,.paragraph-Fy_HrphLXH.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-Fy_HrphLXH h1,.paragraph-Fy_HrphLXH h2,.paragraph-Fy_HrphLXH h3,.paragraph-Fy_HrphLXH h4,.paragraph-Fy_HrphLXH h5,.paragraph-Fy_HrphLXH h6,.paragraph-Fy_HrphLXH ul li,.paragraph-Fy_HrphLXH.text-output{font-size:16px!important;font-weight:400}}.heading-EcitVf6jjT.text-output h1:first-child:before,.heading-EcitVf6jjT.text-output h2:first-child:before,.heading-EcitVf6jjT.text-output h3:first-child:before,.heading-EcitVf6jjT.text-output h4:first-child:before,.heading-EcitVf6jjT.text-output h5:first-child:before,.heading-EcitVf6jjT.text-output h6:first-child:before,.heading-EcitVf6jjT.text-output p:first-child:before,.paragraph-Fy_HrphLXH.text-output h1:first-child:before,.paragraph-Fy_HrphLXH.text-output h2:first-child:before,.paragraph-Fy_HrphLXH.text-output h3:first-child:before,.paragraph-Fy_HrphLXH.text-output h4:first-child:before,.paragraph-Fy_HrphLXH.text-output h5:first-child:before,.paragraph-Fy_HrphLXH.text-output h6:first-child:before,.paragraph-Fy_HrphLXH.text-output p:first-child:before{color:var(--text-color);content:'\';
59 − font-family: '';margin-right:5px;font-weight:700}.heading-EcitVf6jjT{font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.heading-EcitVf6jjT h1,.heading-EcitVf6jjT h2,.heading-EcitVf6jjT h3,.heading-EcitVf6jjT h4,.heading-EcitVf6jjT h5,.heading-EcitVf6jjT h6,.heading-EcitVf6jjT ul li,.heading-EcitVf6jjT.text-output{font-size:40px!important;font-weight:700}}@media screen and (min-width:481px) and (max-width:10000px){.heading-EcitVf6jjT h1,.heading-EcitVf6jjT h2,.heading-EcitVf6jjT h3,.heading-EcitVf6jjT h4,.heading-EcitVf6jjT h5,.heading-EcitVf6jjT h6,.heading-EcitVf6jjT ul li,.heading-EcitVf6jjT.text-output{font-size:40px!important;font-weight:700}}
60 − /* ---- Section 2 1/2 styles ----- */
61 −:root{--inter:'Inter';--transparent:transparent;--white:#ffffff;--black:#000000;--color-frszyjcd:#163760ff}.hl_page-preview--content .col-uupdULtpN6,.hl_page-preview--content .row-kqfP4SYDWs,.hl_page-preview--content .section-Hs3vSWqm1o{box-shadow:none;padding:20px 0;margin:0;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:0;border-style:none;border-radius:0}.hl_page-preview--content .col-uupdULtpN6,.hl_page-preview--content .row-kqfP4SYDWs{margin:0 auto;padding:10px 5px;width:100%}.hl_page-preview--content .col-uupdULtpN6{margin:0}.hl_page-preview--content #heading-P4JHNP-t3d{margin:0;width:auto;height:auto}.hl_page-preview--content .cheading-P4JHNP-t3d{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}@media screen and (min-width:0px) and (max-width:480px){.hl_page-preview--content .cheading-P4JHNP-t3d{padding-top:5px;padding-bottom:5px}}#section-Hs3vSWqm1o>.inner{max-width:1170px}@media (max-width:1024px){#section-Hs3vSWqm1o{animation:none!important}}.--mobile #row-kqfP4SYDWs,.--mobile #section-Hs3vSWqm1o{animation:none!important}@media (max-width:1024px){#row-kqfP4SYDWs{animation:none!important}}#col-uupdULtpN6>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-uupdULtpN6{animation:none!important}}.--mobile #col-uupdULtpN6{animation:none!important}.heading-P4JHNP-t3d{font-weight:700}.heading-P4JHNP-t3d a,.heading-P4JHNP-t3d a *{color:var(--link-color);text-decoration:none}.heading-P4JHNP-t3d a u,.heading-P4JHNP-t3d a:hover{text-decoration:underline}.heading-P4JHNP-t3d a s{text-decoration:line-through}@media screen and (min-width:0px) and (max-width:480px){.heading-P4JHNP-t3d h1,.heading-P4JHNP-t3d h2,.heading-P4JHNP-t3d h3,.heading-P4JHNP-t3d h4,.heading-P4JHNP-t3d h5,.heading-P4JHNP-t3d h6,.heading-P4JHNP-t3d ul li,.heading-P4JHNP-t3d.text-output{font-size:48px!important;font-weight:700}}@media screen and (min-width:481px) and (max-width:10000px){.heading-P4JHNP-t3d h1,.heading-P4JHNP-t3d h2,.heading-P4JHNP-t3d h3,.heading-P4JHNP-t3d h4,.heading-P4JHNP-t3d h5,.heading-P4JHNP-t3d h6,.heading-P4JHNP-t3d ul li,.heading-P4JHNP-t3d.text-output{font-size:48px!important;font-weight:700}}.heading-P4JHNP-t3d.text-output h1:first-child:before,.heading-P4JHNP-t3d.text-output h2:first-child:before,.heading-P4JHNP-t3d.text-output h3:first-child:before,.heading-P4JHNP-t3d.text-output h4:first-child:before,.heading-P4JHNP-t3d.text-output h5:first-child:before,.heading-P4JHNP-t3d.text-output h6:first-child:before,.heading-P4JHNP-t3d.text-output p:first-child:before{color:var(--text-color);content:'\';
62 − font-family: '';margin-right:5px;font-weight:700}
54 +#hl_main_popup-gcJTzp6WbG.popup-body{position:absolute!important;left:50%!important;bottom:auto!important;transform:translate(-50%,0)!important;right:auto!important;box-shadow:none;padding:20px 0;margin-top:0;border-color:var(--gray);border-width:10px;border-style:solid;background-color:var(--white);width:720px}.--mobile #hl_main_popup-gcJTzp6WbG.popup-body{width:380px!important}@media screen and (min-width:0px) and (max-width:767px){#hl_main_popup-gcJTzp6WbG.popup-body{width:380px!important}} @media (max-width:1024px){#row-215Nt-0XPg{animation:none!important}}.--mobile #row-215Nt-0XPg{animation:none!important} #col-yW4xiVr8NL>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-yW4xiVr8NL{animation:none!important}}.--mobile #col-yW4xiVr8NL{animation:none!important}
63 55 /* ---- Section 3 1/2 styles ----- */
64 −:root{--inter:'Inter';--transparent:transparent;--white:#ffffff;--gray:#cbd5e0;--black:#000000;--color-frszyjcd:#163760ff}.hl_page-preview--content .section-JEnfcw8zO5{box-shadow:none;padding:0;margin:0;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid}.hl_page-preview--content .col-5BSbroV8HW,.hl_page-preview--content .row-yRqZ6aHLSo{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;border-width:2px;border-style:solid}.hl_page-preview--content .row-yRqZ6aHLSo{margin:0 auto;box-shadow:none;border-color:var(--black);width:100%}.hl_page-preview--content .col-5BSbroV8HW{width:33%;border-color:var(--gray);margin:10px 20px 10px 0}.hl_page-preview--content #heading-3uWiOQESsM,.hl_page-preview--content #paragraph-8hPmEs7mZK,.hl_page-preview--content #paragraph-8iazHsJK-U,.hl_page-preview--content #paragraph-A9KXQOpxbx,.hl_page-preview--content #paragraph-H2jlK0WT1f,.hl_page-preview--content #paragraph-OVjcO1jAzz,.hl_page-preview--content #paragraph-PIa9qcyIGX,.hl_page-preview--content #paragraph-S0RLkATTlF,.hl_page-preview--content #paragraph-XosEhlVBsh,.hl_page-preview--content #paragraph-aRr6PntS5I,.hl_page-preview--content #paragraph-kUhwMrFwUs,.hl_page-preview--content #paragraph-qxvojP52IR,.hl_page-preview--content #paragraph-xlfTuNWwn0,.hl_page-preview--content #sub-heading-C3-NEO8NoY,.hl_page-preview--content #sub-heading-F57qzmwWcM,.hl_page-preview--content #sub-heading-JNJNQEo3JE,.hl_page-preview--content #sub-heading-P5Yzz7_Iqc,.hl_page-preview--content #sub-heading-P6aDP2NQDn,.hl_page-preview--content #sub-heading-X-Zufpq8Ah,.hl_page-preview--content #sub-heading-_OgtpHflq7,.hl_page-preview--content #sub-heading-cABxyP6k86,.hl_page-preview--content #sub-heading-eDB458-8HI,.hl_page-preview--content #sub-heading-gYnPMaZyrW,.hl_page-preview--content #sub-heading-iW-mCTaop8,.hl_page-preview--content #sub-heading-nza-xhmk31,.hl_page-preview--content #sub-heading-pkSbfv3TRg,.hl_page-preview--content #sub-heading-qokIovhf9V,.hl_page-preview--content #sub-heading-s8XATN38CD,.hl_page-preview--content #sub-heading-yEp3Wcs9u-{margin:0;width:auto;height:auto}.hl_page-preview--content .csub-heading-X-Zufpq8Ah,.hl_page-preview--content .csub-heading-eDB458-8HI{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-PZ9xI3iXTN,.hl_page-preview--content .row-nGS-HeF6nn{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-PZ9xI3iXTN{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-A9KXQOpxbx,.hl_page-preview--content .cparagraph-H2jlK0WT1f,.hl_page-preview--content .cparagraph-OVjcO1jAzz,.hl_page-preview--content .csub-heading-nza-xhmk31{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-nza-xhmk31{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-je4P_S8v_W{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-P5Yzz7_Iqc{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-zQ1-bO4G0X,.hl_page-preview--content .row--V65xLoMfl{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;border-width:2px;border-style:solid}.hl_page-preview--content .row--V65xLoMfl{margin:0 auto;box-shadow:none;border-color:var(--black);width:100%}.hl_page-preview--content .col-zQ1-bO4G0X{width:33%;border-color:var(--gray);margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-qokIovhf9V,.hl_page-preview--content .csub-heading-s8XATN38CD{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-xy95dLyhr_,.hl_page-preview--content .row-2A6TdgKHlq{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-xy95dLyhr_{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-8hPmEs7mZK,.hl_page-preview--content .cparagraph-8iazHsJK-U,.hl_page-preview--content .cparagraph-aRr6PntS5I{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .button-_3pz_kDc9D{margin:0;text-align:center;width:auto;height:auto}.hl_page-preview--content .cbutton-ys3tkAz43J{font-family:var(--headlinefont);background-color:#163760ff;color:var(--white);secondary-color:var(--white);padding:15px 20px;border-color:#163760ff;border-width:2px;border-style:none;border-radius:0;letter-spacing:0;width:auto%;icon-color:var(--white);text-decoration:none;inline-colors:#163760ff}.hl_page-preview--content .csub-heading-iW-mCTaop8{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .cimage-slider-qDIABhcLRq{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-_OgtpHflq7{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-5sScusTRxm{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-C3-NEO8NoY,.hl_page-preview--content .csub-heading-JNJNQEo3JE{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-xAMHzeXDbc,.hl_page-preview--content .row-fusa_Rdcgb{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-xAMHzeXDbc{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-kUhwMrFwUs,.hl_page-preview--content .cparagraph-qxvojP52IR,.hl_page-preview--content .cparagraph-xlfTuNWwn0,.hl_page-preview--content .csub-heading-gYnPMaZyrW{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-gYnPMaZyrW{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-w7GLGClyKT{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-F57qzmwWcM{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-Rg3Gr4MzBf{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .button-S5qxLC3t7Z{margin:0;text-align:center;width:auto;height:auto}.hl_page-preview--content .cbutton-S5qxLC3t7Z{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);secondary-color:var(--white);padding:10px 20px;border-color:var(--white);border-width:1px;border-style:solid;letter-spacing:0;text-transform:none;width:auto%;box-shadow:none;text-shadow:none;icon-color:var(--white)}.hl_page-preview--content .csub-heading-cABxyP6k86,.hl_page-preview--content .csub-heading-yEp3Wcs9u-{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-Fmvt_lf7Kk,.hl_page-preview--content .row-te6d0D-srD{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-Fmvt_lf7Kk{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-PIa9qcyIGX,.hl_page-preview--content .cparagraph-S0RLkATTlF,.hl_page-preview--content .cparagraph-XosEhlVBsh,.hl_page-preview--content .csub-heading-pkSbfv3TRg{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-pkSbfv3TRg{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-bQY6ZCwz82{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-P6aDP2NQDn{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-KIf4Ql0phl,.hl_page-preview--content .row-ufVUOO75V_{margin:0 auto;box-shadow:none;padding:40px 5px 10px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-KIf4Ql0phl{padding:10px 5px;margin:0}.hl_page-preview--content .cheading-3uWiOQESsM{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}@media screen and (min-width:0px) and (max-width:480px){.hl_page-preview--content .cheading-3uWiOQESsM{padding-top:5px;padding-bottom:5px}}#section-JEnfcw8zO5>.inner{max-width:1170px}@media (max-width:1024px){#section-JEnfcw8zO5{animation:none!important}}.--mobile #row-yRqZ6aHLSo,.--mobile #section-JEnfcw8zO5{animation:none!important}@media (max-width:1024px){#row-yRqZ6aHLSo{animation:none!important}}#col-5BSbroV8HW>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-5BSbroV8HW{animation:none!important}}.--mobile #col-5BSbroV8HW,.--mobile #row-nGS-HeF6nn{animation:none!important}.paragraph-8hPmEs7mZK,.paragraph-8iazHsJK-U,.paragraph-A9KXQOpxbx,.paragraph-H2jlK0WT1f,.paragraph-OVjcO1jAzz,.paragraph-PIa9qcyIGX,.paragraph-S0RLkATTlF,.paragraph-XosEhlVBsh,.paragraph-aRr6PntS5I,.paragraph-kUhwMrFwUs,.paragraph-qxvojP52IR,.paragraph-xlfTuNWwn0,.sub-heading-C3-NEO8NoY,.sub-heading-F57qzmwWcM,.sub-heading-JNJNQEo3JE,.sub-heading-P5Yzz7_Iqc,.sub-heading-P6aDP2NQDn,.sub-heading-X-Zufpq8Ah,.sub-heading-_OgtpHflq7,.sub-heading-cABxyP6k86,.sub-heading-eDB458-8HI,.sub-heading-gYnPMaZyrW,.sub-heading-iW-mCTaop8,.sub-heading-nza-xhmk31,.sub-heading-pkSbfv3TRg,.sub-heading-qokIovhf9V,.sub-heading-s8XATN38CD,.sub-heading-yEp3Wcs9u-{font-weight:400}.heading-3uWiOQESsM a,.heading-3uWiOQESsM a *,.paragraph-8hPmEs7mZK a,.paragraph-8hPmEs7mZK a *,.paragraph-8iazHsJK-U a,.paragraph-8iazHsJK-U a *,.paragraph-A9KXQOpxbx a,.paragraph-A9KXQOpxbx a *,.paragraph-H2jlK0WT1f a,.paragraph-H2jlK0WT1f a *,.paragraph-OVjcO1jAzz a,.paragraph-OVjcO1jAzz a *,.paragraph-PIa9qcyIGX a,.paragraph-PIa9qcyIGX a *,.paragraph-S0RLkATTlF a,.paragraph-S0RLkATTlF a *,.paragraph-XosEhlVBsh a,.paragraph-XosEhlVBsh a *,.paragraph-aRr6PntS5I a,.paragraph-aRr6PntS5I a *,.paragraph-kUhwMrFwUs a,.paragraph-kUhwMrFwUs a *,.paragraph-qxvojP52IR a,.paragraph-qxvojP52IR a *,.paragraph-xlfTuNWwn0 a,.paragraph-xlfTuNWwn0 a *,.sub-heading-C3-NEO8NoY a,.sub-heading-C3-NEO8NoY a *,.sub-heading-F57qzmwWcM a,.sub-heading-F57qzmwWcM a *,.sub-heading-JNJNQEo3JE a,.sub-heading-JNJNQEo3JE a *,.sub-heading-P5Yzz7_Iqc a,.sub-heading-P5Yzz7_Iqc a *,.sub-heading-P6aDP2NQDn a,.sub-heading-P6aDP2NQDn a *,.sub-heading-X-Zufpq8Ah a,.sub-heading-X-Zufpq8Ah a *,.sub-heading-_OgtpHflq7 a,.sub-heading-_OgtpHflq7 a *,.sub-heading-cABxyP6k86 a,.sub-heading-cABxyP6k86 a *,.sub-heading-eDB458-8HI a,.sub-heading-eDB458-8HI a *,.sub-heading-gYnPMaZyrW a,.sub-heading-gYnPMaZyrW a *,.sub-heading-iW-mCTaop8 a,.sub-heading-iW-mCTaop8 a *,.sub-heading-nza-xhmk31 a,.sub-heading-nza-xhmk31 a *,.sub-heading-pkSbfv3TRg a,.sub-heading-pkSbfv3TRg a *,.sub-heading-qokIovhf9V a,.sub-heading-qokIovhf9V a *,.sub-heading-s8XATN38CD a,.sub-heading-s8XATN38CD a *,.sub-heading-yEp3Wcs9u- a,.sub-heading-yEp3Wcs9u- a *{color:var(--link-color);text-decoration:none}.heading-3uWiOQESsM a u,.heading-3uWiOQESsM a:hover,.paragraph-8hPmEs7mZK a u,.paragraph-8hPmEs7mZK a:hover,.paragraph-8iazHsJK-U a u,.paragraph-8iazHsJK-U a:hover,.paragraph-A9KXQOpxbx a u,.paragraph-A9KXQOpxbx a:hover,.paragraph-H2jlK0WT1f a u,.paragraph-H2jlK0WT1f a:hover,.paragraph-OVjcO1jAzz a u,.paragraph-OVjcO1jAzz a:hover,.paragraph-PIa9qcyIGX a u,.paragraph-PIa9qcyIGX a:hover,.paragraph-S0RLkATTlF a u,.paragraph-S0RLkATTlF a:hover,.paragraph-XosEhlVBsh a u,.paragraph-XosEhlVBsh a:hover,.paragraph-aRr6PntS5I a u,.paragraph-aRr6PntS5I a:hover,.paragraph-kUhwMrFwUs a u,.paragraph-kUhwMrFwUs a:hover,.paragraph-qxvojP52IR a u,.paragraph-qxvojP52IR a:hover,.paragraph-xlfTuNWwn0 a u,.paragraph-xlfTuNWwn0 a:hover,.sub-heading-C3-NEO8NoY a u,.sub-heading-C3-NEO8NoY a:hover,.sub-heading-F57qzmwWcM a u,.sub-heading-F57qzmwWcM a:hover,.sub-heading-JNJNQEo3JE a u,.sub-heading-JNJNQEo3JE a:hover,.sub-heading-P5Yzz7_Iqc a u,.sub-heading-P5Yzz7_Iqc a:hover,.sub-heading-P6aDP2NQDn a u,.sub-heading-P6aDP2NQDn a:hover,.sub-heading-X-Zufpq8Ah a u,.sub-heading-X-Zufpq8Ah a:hover,.sub-heading-_OgtpHflq7 a u,.sub-heading-_OgtpHflq7 a:hover,.sub-heading-cABxyP6k86 a u,.sub-heading-cABxyP6k86 a:hover,.sub-heading-eDB458-8HI a u,.sub-heading-eDB458-8HI a:hover,.sub-heading-gYnPMaZyrW a u,.sub-heading-gYnPMaZyrW a:hover,.sub-heading-iW-mCTaop8 a u,.sub-heading-iW-mCTaop8 a:hover,.sub-heading-nza-xhmk31 a u,.sub-heading-nza-xhmk31 a:hover,.sub-heading-pkSbfv3TRg a u,.sub-heading-pkSbfv3TRg a:hover,.sub-heading-qokIovhf9V a u,.sub-heading-qokIovhf9V a:hover,.sub-heading-s8XATN38CD a u,.sub-heading-s8XATN38CD a:hover,.sub-heading-yEp3Wcs9u- a u,.sub-heading-yEp3Wcs9u- a:hover{text-decoration:underline}.heading-3uWiOQESsM a s,.paragraph-8hPmEs7mZK a s,.paragraph-8iazHsJK-U a s,.paragraph-A9KXQOpxbx a s,.paragraph-H2jlK0WT1f a s,.paragraph-OVjcO1jAzz a s,.paragraph-PIa9qcyIGX a s,.paragraph-S0RLkATTlF a s,.paragraph-XosEhlVBsh a s,.paragraph-aRr6PntS5I a s,.paragraph-kUhwMrFwUs a s,.paragraph-qxvojP52IR a s,.paragraph-xlfTuNWwn0 a s,.sub-heading-C3-NEO8NoY a s,.sub-heading-F57qzmwWcM a s,.sub-heading-JNJNQEo3JE a s,.sub-heading-P5Yzz7_Iqc a s,.sub-heading-P6aDP2NQDn a s,.sub-heading-X-Zufpq8Ah a s,.sub-heading-_OgtpHflq7 a s,.sub-heading-cABxyP6k86 a s,.sub-heading-eDB458-8HI a s,.sub-heading-gYnPMaZyrW a s,.sub-heading-iW-mCTaop8 a s,.sub-heading-nza-xhmk31 a s,.sub-heading-pkSbfv3TRg a s,.sub-heading-qokIovhf9V a s,.sub-heading-s8XATN38CD a s,.sub-heading-yEp3Wcs9u- a s{text-decoration:line-through}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-X-Zufpq8Ah h1,.sub-heading-X-Zufpq8Ah h2,.sub-heading-X-Zufpq8Ah h3,.sub-heading-X-Zufpq8Ah h4,.sub-heading-X-Zufpq8Ah h5,.sub-heading-X-Zufpq8Ah h6,.sub-heading-X-Zufpq8Ah ul li,.sub-heading-X-Zufpq8Ah.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-X-Zufpq8Ah h1,.sub-heading-X-Zufpq8Ah h2,.sub-heading-X-Zufpq8Ah h3,.sub-heading-X-Zufpq8Ah h4,.sub-heading-X-Zufpq8Ah h5,.sub-heading-X-Zufpq8Ah h6,.sub-heading-X-Zufpq8Ah ul li,.sub-heading-X-Zufpq8Ah.text-output{font-size:18px!important;font-weight:400}}.sub-heading-X-Zufpq8Ah.text-output h1:first-child:before,.sub-heading-X-Zufpq8Ah.text-output h2:first-child:before,.sub-heading-X-Zufpq8Ah.text-output h3:first-child:before,.sub-heading-X-Zufpq8Ah.text-output h4:first-child:before,.sub-heading-X-Zufpq8Ah.text-output h5:first-child:before,.sub-heading-X-Zufpq8Ah.text-output h6:first-child:before,.sub-heading-X-Zufpq8Ah.text-output p:first-child:before,.sub-heading-eDB458-8HI.text-output h1:first-child:before,.sub-heading-eDB458-8HI.text-output h2:first-child:before,.sub-heading-eDB458-8HI.text-output h3:first-child:before,.sub-heading-eDB458-8HI.text-output h4:first-child:before,.sub-heading-eDB458-8HI.text-output h5:first-child:before,.sub-heading-eDB458-8HI.text-output h6:first-child:before,.sub-heading-eDB458-8HI.text-output p:first-child:before{color:var(--text-color);content:'\';
65 − font-family: '';margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-eDB458-8HI h1,.sub-heading-eDB458-8HI h2,.sub-heading-eDB458-8HI h3,.sub-heading-eDB458-8HI h4,.sub-heading-eDB458-8HI h5,.sub-heading-eDB458-8HI h6,.sub-heading-eDB458-8HI ul li,.sub-heading-eDB458-8HI.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-eDB458-8HI h1,.sub-heading-eDB458-8HI h2,.sub-heading-eDB458-8HI h3,.sub-heading-eDB458-8HI h4,.sub-heading-eDB458-8HI h5,.sub-heading-eDB458-8HI h6,.sub-heading-eDB458-8HI ul li,.sub-heading-eDB458-8HI.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-nGS-HeF6nn{animation:none!important}}#col-PZ9xI3iXTN>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-PZ9xI3iXTN{animation:none!important}}.--mobile #col-PZ9xI3iXTN{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-OVjcO1jAzz h1,.paragraph-OVjcO1jAzz h2,.paragraph-OVjcO1jAzz h3,.paragraph-OVjcO1jAzz h4,.paragraph-OVjcO1jAzz h5,.paragraph-OVjcO1jAzz h6,.paragraph-OVjcO1jAzz ul li,.paragraph-OVjcO1jAzz.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-OVjcO1jAzz h1,.paragraph-OVjcO1jAzz h2,.paragraph-OVjcO1jAzz h3,.paragraph-OVjcO1jAzz h4,.paragraph-OVjcO1jAzz h5,.paragraph-OVjcO1jAzz h6,.paragraph-OVjcO1jAzz ul li,.paragraph-OVjcO1jAzz.text-output{font-size:16px!important;font-weight:400}}.paragraph-OVjcO1jAzz.text-output h1:first-child:before,.paragraph-OVjcO1jAzz.text-output h2:first-child:before,.paragraph-OVjcO1jAzz.text-output h3:first-child:before,.paragraph-OVjcO1jAzz.text-output h4:first-child:before,.paragraph-OVjcO1jAzz.text-output h5:first-child:before,.paragraph-OVjcO1jAzz.text-output h6:first-child:before,.paragraph-OVjcO1jAzz.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-H2jlK0WT1f h1,.paragraph-H2jlK0WT1f h2,.paragraph-H2jlK0WT1f h3,.paragraph-H2jlK0WT1f h4,.paragraph-H2jlK0WT1f h5,.paragraph-H2jlK0WT1f h6,.paragraph-H2jlK0WT1f ul li,.paragraph-H2jlK0WT1f.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-H2jlK0WT1f h1,.paragraph-H2jlK0WT1f h2,.paragraph-H2jlK0WT1f h3,.paragraph-H2jlK0WT1f h4,.paragraph-H2jlK0WT1f h5,.paragraph-H2jlK0WT1f h6,.paragraph-H2jlK0WT1f ul li,.paragraph-H2jlK0WT1f.text-output{font-size:16px!important;font-weight:400}}.paragraph-H2jlK0WT1f.text-output h1:first-child:before,.paragraph-H2jlK0WT1f.text-output h2:first-child:before,.paragraph-H2jlK0WT1f.text-output h3:first-child:before,.paragraph-H2jlK0WT1f.text-output h4:first-child:before,.paragraph-H2jlK0WT1f.text-output h5:first-child:before,.paragraph-H2jlK0WT1f.text-output h6:first-child:before,.paragraph-H2jlK0WT1f.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-A9KXQOpxbx h1,.paragraph-A9KXQOpxbx h2,.paragraph-A9KXQOpxbx h3,.paragraph-A9KXQOpxbx h4,.paragraph-A9KXQOpxbx h5,.paragraph-A9KXQOpxbx h6,.paragraph-A9KXQOpxbx ul li,.paragraph-A9KXQOpxbx.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-A9KXQOpxbx h1,.paragraph-A9KXQOpxbx h2,.paragraph-A9KXQOpxbx h3,.paragraph-A9KXQOpxbx h4,.paragraph-A9KXQOpxbx h5,.paragraph-A9KXQOpxbx h6,.paragraph-A9KXQOpxbx ul li,.paragraph-A9KXQOpxbx.text-output{font-size:16px!important;font-weight:400}}.paragraph-A9KXQOpxbx.text-output h1:first-child:before,.paragraph-A9KXQOpxbx.text-output h2:first-child:before,.paragraph-A9KXQOpxbx.text-output h3:first-child:before,.paragraph-A9KXQOpxbx.text-output h4:first-child:before,.paragraph-A9KXQOpxbx.text-output h5:first-child:before,.paragraph-A9KXQOpxbx.text-output h6:first-child:before,.paragraph-A9KXQOpxbx.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-nza-xhmk31 h1,.sub-heading-nza-xhmk31 h2,.sub-heading-nza-xhmk31 h3,.sub-heading-nza-xhmk31 h4,.sub-heading-nza-xhmk31 h5,.sub-heading-nza-xhmk31 h6,.sub-heading-nza-xhmk31 ul li,.sub-heading-nza-xhmk31.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-nza-xhmk31 h1,.sub-heading-nza-xhmk31 h2,.sub-heading-nza-xhmk31 h3,.sub-heading-nza-xhmk31 h4,.sub-heading-nza-xhmk31 h5,.sub-heading-nza-xhmk31 h6,.sub-heading-nza-xhmk31 ul li,.sub-heading-nza-xhmk31.text-output{font-size:18px!important;font-weight:400}}.sub-heading-P5Yzz7_Iqc.text-output h1:first-child:before,.sub-heading-P5Yzz7_Iqc.text-output h2:first-child:before,.sub-heading-P5Yzz7_Iqc.text-output h3:first-child:before,.sub-heading-P5Yzz7_Iqc.text-output h4:first-child:before,.sub-heading-P5Yzz7_Iqc.text-output h5:first-child:before,.sub-heading-P5Yzz7_Iqc.text-output h6:first-child:before,.sub-heading-P5Yzz7_Iqc.text-output p:first-child:before,.sub-heading-nza-xhmk31.text-output h1:first-child:before,.sub-heading-nza-xhmk31.text-output h2:first-child:before,.sub-heading-nza-xhmk31.text-output h3:first-child:before,.sub-heading-nza-xhmk31.text-output h4:first-child:before,.sub-heading-nza-xhmk31.text-output h5:first-child:before,.sub-heading-nza-xhmk31.text-output h6:first-child:before,.sub-heading-nza-xhmk31.text-output p:first-child:before,.sub-heading-qokIovhf9V.text-output h1:first-child:before,.sub-heading-qokIovhf9V.text-output h2:first-child:before,.sub-heading-qokIovhf9V.text-output h3:first-child:before,.sub-heading-qokIovhf9V.text-output h4:first-child:before,.sub-heading-qokIovhf9V.text-output h5:first-child:before,.sub-heading-qokIovhf9V.text-output h6:first-child:before,.sub-heading-qokIovhf9V.text-output p:first-child:before,.sub-heading-s8XATN38CD.text-output h1:first-child:before,.sub-heading-s8XATN38CD.text-output h2:first-child:before,.sub-heading-s8XATN38CD.text-output h3:first-child:before,.sub-heading-s8XATN38CD.text-output h4:first-child:before,.sub-heading-s8XATN38CD.text-output h5:first-child:before,.sub-heading-s8XATN38CD.text-output h6:first-child:before,.sub-heading-s8XATN38CD.text-output p:first-child:before{color:var(--text-color);content:'\';
66 − font-family: '';margin-right:5px;font-weight:700}#image-slider-je4P_S8v_W .carousel{height:300px;width:100%}#image-slider-je4P_S8v_W .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-bQY6ZCwz82 .carousel__pagination-container .carousel__pagination,#image-slider-je4P_S8v_W .carousel__pagination-container .carousel__pagination,#image-slider-qDIABhcLRq .carousel__pagination-container .carousel__pagination,#image-slider-w7GLGClyKT .carousel__pagination-container .carousel__pagination{height:10px;width:10px;border-radius:999px;transition:all 300ms}#image-slider-je4P_S8v_W .carousel__pagination-active{background:#fff}#image-slider-je4P_S8v_W .carousel__pagination-inactive{background:#000}#image-slider-je4P_S8v_W .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}#image-slider-bQY6ZCwz82 .carousel__arrow svg,#image-slider-je4P_S8v_W .carousel__arrow svg,#image-slider-qDIABhcLRq .carousel__arrow svg,#image-slider-w7GLGClyKT .carousel__arrow svg{color:#fff;width:40px;height:40px;cursor:pointer;z-index:12}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-P5Yzz7_Iqc h1,.sub-heading-P5Yzz7_Iqc h2,.sub-heading-P5Yzz7_Iqc h3,.sub-heading-P5Yzz7_Iqc h4,.sub-heading-P5Yzz7_Iqc h5,.sub-heading-P5Yzz7_Iqc h6,.sub-heading-P5Yzz7_Iqc ul li,.sub-heading-P5Yzz7_Iqc.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-P5Yzz7_Iqc h1,.sub-heading-P5Yzz7_Iqc h2,.sub-heading-P5Yzz7_Iqc h3,.sub-heading-P5Yzz7_Iqc h4,.sub-heading-P5Yzz7_Iqc h5,.sub-heading-P5Yzz7_Iqc h6,.sub-heading-P5Yzz7_Iqc ul li,.sub-heading-P5Yzz7_Iqc.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row--V65xLoMfl{animation:none!important}}.--mobile #row--V65xLoMfl{animation:none!important}#col-zQ1-bO4G0X>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-zQ1-bO4G0X{animation:none!important}}.--mobile #col-zQ1-bO4G0X,.--mobile #row-2A6TdgKHlq{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-qokIovhf9V h1,.sub-heading-qokIovhf9V h2,.sub-heading-qokIovhf9V h3,.sub-heading-qokIovhf9V h4,.sub-heading-qokIovhf9V h5,.sub-heading-qokIovhf9V h6,.sub-heading-qokIovhf9V ul li,.sub-heading-qokIovhf9V.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-qokIovhf9V h1,.sub-heading-qokIovhf9V h2,.sub-heading-qokIovhf9V h3,.sub-heading-qokIovhf9V h4,.sub-heading-qokIovhf9V h5,.sub-heading-qokIovhf9V h6,.sub-heading-qokIovhf9V ul li,.sub-heading-qokIovhf9V.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-s8XATN38CD h1,.sub-heading-s8XATN38CD h2,.sub-heading-s8XATN38CD h3,.sub-heading-s8XATN38CD h4,.sub-heading-s8XATN38CD h5,.sub-heading-s8XATN38CD h6,.sub-heading-s8XATN38CD ul li,.sub-heading-s8XATN38CD.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-s8XATN38CD h1,.sub-heading-s8XATN38CD h2,.sub-heading-s8XATN38CD h3,.sub-heading-s8XATN38CD h4,.sub-heading-s8XATN38CD h5,.sub-heading-s8XATN38CD h6,.sub-heading-s8XATN38CD ul li,.sub-heading-s8XATN38CD.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-2A6TdgKHlq{animation:none!important}}#col-xy95dLyhr_>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-xy95dLyhr_{animation:none!important}}.--mobile #col-xy95dLyhr_{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-aRr6PntS5I h1,.paragraph-aRr6PntS5I h2,.paragraph-aRr6PntS5I h3,.paragraph-aRr6PntS5I h4,.paragraph-aRr6PntS5I h5,.paragraph-aRr6PntS5I h6,.paragraph-aRr6PntS5I ul li,.paragraph-aRr6PntS5I.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-aRr6PntS5I h1,.paragraph-aRr6PntS5I h2,.paragraph-aRr6PntS5I h3,.paragraph-aRr6PntS5I h4,.paragraph-aRr6PntS5I h5,.paragraph-aRr6PntS5I h6,.paragraph-aRr6PntS5I ul li,.paragraph-aRr6PntS5I.text-output{font-size:16px!important;font-weight:400}}.paragraph-aRr6PntS5I.text-output h1:first-child:before,.paragraph-aRr6PntS5I.text-output h2:first-child:before,.paragraph-aRr6PntS5I.text-output h3:first-child:before,.paragraph-aRr6PntS5I.text-output h4:first-child:before,.paragraph-aRr6PntS5I.text-output h5:first-child:before,.paragraph-aRr6PntS5I.text-output h6:first-child:before,.paragraph-aRr6PntS5I.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-8iazHsJK-U h1,.paragraph-8iazHsJK-U h2,.paragraph-8iazHsJK-U h3,.paragraph-8iazHsJK-U h4,.paragraph-8iazHsJK-U h5,.paragraph-8iazHsJK-U h6,.paragraph-8iazHsJK-U ul li,.paragraph-8iazHsJK-U.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-8iazHsJK-U h1,.paragraph-8iazHsJK-U h2,.paragraph-8iazHsJK-U h3,.paragraph-8iazHsJK-U h4,.paragraph-8iazHsJK-U h5,.paragraph-8iazHsJK-U h6,.paragraph-8iazHsJK-U ul li,.paragraph-8iazHsJK-U.text-output{font-size:16px!important;font-weight:400}}.paragraph-8iazHsJK-U.text-output h1:first-child:before,.paragraph-8iazHsJK-U.text-output h2:first-child:before,.paragraph-8iazHsJK-U.text-output h3:first-child:before,.paragraph-8iazHsJK-U.text-output h4:first-child:before,.paragraph-8iazHsJK-U.text-output h5:first-child:before,.paragraph-8iazHsJK-U.text-output h6:first-child:before,.paragraph-8iazHsJK-U.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-8hPmEs7mZK h1,.paragraph-8hPmEs7mZK h2,.paragraph-8hPmEs7mZK h3,.paragraph-8hPmEs7mZK h4,.paragraph-8hPmEs7mZK h5,.paragraph-8hPmEs7mZK h6,.paragraph-8hPmEs7mZK ul li,.paragraph-8hPmEs7mZK.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-8hPmEs7mZK h1,.paragraph-8hPmEs7mZK h2,.paragraph-8hPmEs7mZK h3,.paragraph-8hPmEs7mZK h4,.paragraph-8hPmEs7mZK h5,.paragraph-8hPmEs7mZK h6,.paragraph-8hPmEs7mZK ul li,.paragraph-8hPmEs7mZK.text-output{font-size:16px!important;font-weight:400}}.paragraph-8hPmEs7mZK.text-output h1:first-child:before,.paragraph-8hPmEs7mZK.text-output h2:first-child:before,.paragraph-8hPmEs7mZK.text-output h3:first-child:before,.paragraph-8hPmEs7mZK.text-output h4:first-child:before,.paragraph-8hPmEs7mZK.text-output h5:first-child:before,.paragraph-8hPmEs7mZK.text-output h6:first-child:before,.paragraph-8hPmEs7mZK.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:481px) and (max-width:10000px){.button-_3pz_kDc9D .button-icon-end,.button-_3pz_kDc9D .button-icon-start,.button-_3pz_kDc9D .main-heading-button{font-size:20px;font-weight:600}.button-_3pz_kDc9D .button-icon-start{margin-right:5px}.button-_3pz_kDc9D .button-icon-end{margin-left:5px}.button-_3pz_kDc9D .sub-heading-button{font-size:15px;color:var(--white);font-weight:600}}@media screen and (min-width:0px) and (max-width:480px){.button-_3pz_kDc9D .button-icon-end,.button-_3pz_kDc9D .button-icon-start,.button-_3pz_kDc9D .main-heading-button{font-size:20px;font-weight:600}.button-_3pz_kDc9D .button-icon-start{margin-right:5px}.button-_3pz_kDc9D .button-icon-end{margin-left:5px}.button-_3pz_kDc9D .sub-heading-button{font-size:15px;color:var(--white);font-weight:undefined}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-iW-mCTaop8 h1,.sub-heading-iW-mCTaop8 h2,.sub-heading-iW-mCTaop8 h3,.sub-heading-iW-mCTaop8 h4,.sub-heading-iW-mCTaop8 h5,.sub-heading-iW-mCTaop8 h6,.sub-heading-iW-mCTaop8 ul li,.sub-heading-iW-mCTaop8.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-iW-mCTaop8 h1,.sub-heading-iW-mCTaop8 h2,.sub-heading-iW-mCTaop8 h3,.sub-heading-iW-mCTaop8 h4,.sub-heading-iW-mCTaop8 h5,.sub-heading-iW-mCTaop8 h6,.sub-heading-iW-mCTaop8 ul li,.sub-heading-iW-mCTaop8.text-output{font-size:18px!important;font-weight:400}}.sub-heading-C3-NEO8NoY.text-output h1:first-child:before,.sub-heading-C3-NEO8NoY.text-output h2:first-child:before,.sub-heading-C3-NEO8NoY.text-output h3:first-child:before,.sub-heading-C3-NEO8NoY.text-output h4:first-child:before,.sub-heading-C3-NEO8NoY.text-output h5:first-child:before,.sub-heading-C3-NEO8NoY.text-output h6:first-child:before,.sub-heading-C3-NEO8NoY.text-output p:first-child:before,.sub-heading-JNJNQEo3JE.text-output h1:first-child:before,.sub-heading-JNJNQEo3JE.text-output h2:first-child:before,.sub-heading-JNJNQEo3JE.text-output h3:first-child:before,.sub-heading-JNJNQEo3JE.text-output h4:first-child:before,.sub-heading-JNJNQEo3JE.text-output h5:first-child:before,.sub-heading-JNJNQEo3JE.text-output h6:first-child:before,.sub-heading-JNJNQEo3JE.text-output p:first-child:before,.sub-heading-_OgtpHflq7.text-output h1:first-child:before,.sub-heading-_OgtpHflq7.text-output h2:first-child:before,.sub-heading-_OgtpHflq7.text-output h3:first-child:before,.sub-heading-_OgtpHflq7.text-output h4:first-child:before,.sub-heading-_OgtpHflq7.text-output h5:first-child:before,.sub-heading-_OgtpHflq7.text-output h6:first-child:before,.sub-heading-_OgtpHflq7.text-output p:first-child:before,.sub-heading-iW-mCTaop8.text-output h1:first-child:before,.sub-heading-iW-mCTaop8.text-output h2:first-child:before,.sub-heading-iW-mCTaop8.text-output h3:first-child:before,.sub-heading-iW-mCTaop8.text-output h4:first-child:before,.sub-heading-iW-mCTaop8.text-output h5:first-child:before,.sub-heading-iW-mCTaop8.text-output h6:first-child:before,.sub-heading-iW-mCTaop8.text-output p:first-child:before{color:var(--text-color);content:'\';
67 − font-family: '';margin-right:5px;font-weight:700}#image-slider-qDIABhcLRq .carousel{height:300px;width:100%}#image-slider-qDIABhcLRq .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-qDIABhcLRq .carousel__pagination-active{background:#fff}#image-slider-qDIABhcLRq .carousel__pagination-inactive{background:#000}#image-slider-qDIABhcLRq .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-_OgtpHflq7 h1,.sub-heading-_OgtpHflq7 h2,.sub-heading-_OgtpHflq7 h3,.sub-heading-_OgtpHflq7 h4,.sub-heading-_OgtpHflq7 h5,.sub-heading-_OgtpHflq7 h6,.sub-heading-_OgtpHflq7 ul li,.sub-heading-_OgtpHflq7.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-_OgtpHflq7 h1,.sub-heading-_OgtpHflq7 h2,.sub-heading-_OgtpHflq7 h3,.sub-heading-_OgtpHflq7 h4,.sub-heading-_OgtpHflq7 h5,.sub-heading-_OgtpHflq7 h6,.sub-heading-_OgtpHflq7 ul li,.sub-heading-_OgtpHflq7.text-output{font-size:18px!important;font-weight:400}}#col-5sScusTRxm>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-5sScusTRxm{animation:none!important}}.--mobile #col-5sScusTRxm,.--mobile #row-fusa_Rdcgb{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-C3-NEO8NoY h1,.sub-heading-C3-NEO8NoY h2,.sub-heading-C3-NEO8NoY h3,.sub-heading-C3-NEO8NoY h4,.sub-heading-C3-NEO8NoY h5,.sub-heading-C3-NEO8NoY h6,.sub-heading-C3-NEO8NoY ul li,.sub-heading-C3-NEO8NoY.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-C3-NEO8NoY h1,.sub-heading-C3-NEO8NoY h2,.sub-heading-C3-NEO8NoY h3,.sub-heading-C3-NEO8NoY h4,.sub-heading-C3-NEO8NoY h5,.sub-heading-C3-NEO8NoY h6,.sub-heading-C3-NEO8NoY ul li,.sub-heading-C3-NEO8NoY.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-JNJNQEo3JE h1,.sub-heading-JNJNQEo3JE h2,.sub-heading-JNJNQEo3JE h3,.sub-heading-JNJNQEo3JE h4,.sub-heading-JNJNQEo3JE h5,.sub-heading-JNJNQEo3JE h6,.sub-heading-JNJNQEo3JE ul li,.sub-heading-JNJNQEo3JE.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-JNJNQEo3JE h1,.sub-heading-JNJNQEo3JE h2,.sub-heading-JNJNQEo3JE h3,.sub-heading-JNJNQEo3JE h4,.sub-heading-JNJNQEo3JE h5,.sub-heading-JNJNQEo3JE h6,.sub-heading-JNJNQEo3JE ul li,.sub-heading-JNJNQEo3JE.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-fusa_Rdcgb{animation:none!important}}#col-xAMHzeXDbc>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-xAMHzeXDbc{animation:none!important}}.--mobile #col-xAMHzeXDbc{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-kUhwMrFwUs h1,.paragraph-kUhwMrFwUs h2,.paragraph-kUhwMrFwUs h3,.paragraph-kUhwMrFwUs h4,.paragraph-kUhwMrFwUs h5,.paragraph-kUhwMrFwUs h6,.paragraph-kUhwMrFwUs ul li,.paragraph-kUhwMrFwUs.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-kUhwMrFwUs h1,.paragraph-kUhwMrFwUs h2,.paragraph-kUhwMrFwUs h3,.paragraph-kUhwMrFwUs h4,.paragraph-kUhwMrFwUs h5,.paragraph-kUhwMrFwUs h6,.paragraph-kUhwMrFwUs ul li,.paragraph-kUhwMrFwUs.text-output{font-size:16px!important;font-weight:400}}.paragraph-kUhwMrFwUs.text-output h1:first-child:before,.paragraph-kUhwMrFwUs.text-output h2:first-child:before,.paragraph-kUhwMrFwUs.text-output h3:first-child:before,.paragraph-kUhwMrFwUs.text-output h4:first-child:before,.paragraph-kUhwMrFwUs.text-output h5:first-child:before,.paragraph-kUhwMrFwUs.text-output h6:first-child:before,.paragraph-kUhwMrFwUs.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-qxvojP52IR h1,.paragraph-qxvojP52IR h2,.paragraph-qxvojP52IR h3,.paragraph-qxvojP52IR h4,.paragraph-qxvojP52IR h5,.paragraph-qxvojP52IR h6,.paragraph-qxvojP52IR ul li,.paragraph-qxvojP52IR.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-qxvojP52IR h1,.paragraph-qxvojP52IR h2,.paragraph-qxvojP52IR h3,.paragraph-qxvojP52IR h4,.paragraph-qxvojP52IR h5,.paragraph-qxvojP52IR h6,.paragraph-qxvojP52IR ul li,.paragraph-qxvojP52IR.text-output{font-size:16px!important;font-weight:400}}.paragraph-qxvojP52IR.text-output h1:first-child:before,.paragraph-qxvojP52IR.text-output h2:first-child:before,.paragraph-qxvojP52IR.text-output h3:first-child:before,.paragraph-qxvojP52IR.text-output h4:first-child:before,.paragraph-qxvojP52IR.text-output h5:first-child:before,.paragraph-qxvojP52IR.text-output h6:first-child:before,.paragraph-qxvojP52IR.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-xlfTuNWwn0 h1,.paragraph-xlfTuNWwn0 h2,.paragraph-xlfTuNWwn0 h3,.paragraph-xlfTuNWwn0 h4,.paragraph-xlfTuNWwn0 h5,.paragraph-xlfTuNWwn0 h6,.paragraph-xlfTuNWwn0 ul li,.paragraph-xlfTuNWwn0.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-xlfTuNWwn0 h1,.paragraph-xlfTuNWwn0 h2,.paragraph-xlfTuNWwn0 h3,.paragraph-xlfTuNWwn0 h4,.paragraph-xlfTuNWwn0 h5,.paragraph-xlfTuNWwn0 h6,.paragraph-xlfTuNWwn0 ul li,.paragraph-xlfTuNWwn0.text-output{font-size:16px!important;font-weight:400}}.paragraph-xlfTuNWwn0.text-output h1:first-child:before,.paragraph-xlfTuNWwn0.text-output h2:first-child:before,.paragraph-xlfTuNWwn0.text-output h3:first-child:before,.paragraph-xlfTuNWwn0.text-output h4:first-child:before,.paragraph-xlfTuNWwn0.text-output h5:first-child:before,.paragraph-xlfTuNWwn0.text-output h6:first-child:before,.paragraph-xlfTuNWwn0.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-gYnPMaZyrW h1,.sub-heading-gYnPMaZyrW h2,.sub-heading-gYnPMaZyrW h3,.sub-heading-gYnPMaZyrW h4,.sub-heading-gYnPMaZyrW h5,.sub-heading-gYnPMaZyrW h6,.sub-heading-gYnPMaZyrW ul li,.sub-heading-gYnPMaZyrW.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-gYnPMaZyrW h1,.sub-heading-gYnPMaZyrW h2,.sub-heading-gYnPMaZyrW h3,.sub-heading-gYnPMaZyrW h4,.sub-heading-gYnPMaZyrW h5,.sub-heading-gYnPMaZyrW h6,.sub-heading-gYnPMaZyrW ul li,.sub-heading-gYnPMaZyrW.text-output{font-size:18px!important;font-weight:400}}.sub-heading-F57qzmwWcM.text-output h1:first-child:before,.sub-heading-F57qzmwWcM.text-output h2:first-child:before,.sub-heading-F57qzmwWcM.text-output h3:first-child:before,.sub-heading-F57qzmwWcM.text-output h4:first-child:before,.sub-heading-F57qzmwWcM.text-output h5:first-child:before,.sub-heading-F57qzmwWcM.text-output h6:first-child:before,.sub-heading-F57qzmwWcM.text-output p:first-child:before,.sub-heading-cABxyP6k86.text-output h1:first-child:before,.sub-heading-cABxyP6k86.text-output h2:first-child:before,.sub-heading-cABxyP6k86.text-output h3:first-child:before,.sub-heading-cABxyP6k86.text-output h4:first-child:before,.sub-heading-cABxyP6k86.text-output h5:first-child:before,.sub-heading-cABxyP6k86.text-output h6:first-child:before,.sub-heading-cABxyP6k86.text-output p:first-child:before,.sub-heading-gYnPMaZyrW.text-output h1:first-child:before,.sub-heading-gYnPMaZyrW.text-output h2:first-child:before,.sub-heading-gYnPMaZyrW.text-output h3:first-child:before,.sub-heading-gYnPMaZyrW.text-output h4:first-child:before,.sub-heading-gYnPMaZyrW.text-output h5:first-child:before,.sub-heading-gYnPMaZyrW.text-output h6:first-child:before,.sub-heading-gYnPMaZyrW.text-output p:first-child:before,.sub-heading-yEp3Wcs9u-.text-output h1:first-child:before,.sub-heading-yEp3Wcs9u-.text-output h2:first-child:before,.sub-heading-yEp3Wcs9u-.text-output h3:first-child:before,.sub-heading-yEp3Wcs9u-.text-output h4:first-child:before,.sub-heading-yEp3Wcs9u-.text-output h5:first-child:before,.sub-heading-yEp3Wcs9u-.text-output h6:first-child:before,.sub-heading-yEp3Wcs9u-.text-output p:first-child:before{color:var(--text-color);content:'\';
68 − font-family: '';margin-right:5px;font-weight:700}#image-slider-w7GLGClyKT .carousel{height:300px;width:100%}#image-slider-w7GLGClyKT .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-w7GLGClyKT .carousel__pagination-active{background:#fff}#image-slider-w7GLGClyKT .carousel__pagination-inactive{background:#000}#image-slider-w7GLGClyKT .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-F57qzmwWcM h1,.sub-heading-F57qzmwWcM h2,.sub-heading-F57qzmwWcM h3,.sub-heading-F57qzmwWcM h4,.sub-heading-F57qzmwWcM h5,.sub-heading-F57qzmwWcM h6,.sub-heading-F57qzmwWcM ul li,.sub-heading-F57qzmwWcM.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-F57qzmwWcM h1,.sub-heading-F57qzmwWcM h2,.sub-heading-F57qzmwWcM h3,.sub-heading-F57qzmwWcM h4,.sub-heading-F57qzmwWcM h5,.sub-heading-F57qzmwWcM h6,.sub-heading-F57qzmwWcM ul li,.sub-heading-F57qzmwWcM.text-output{font-size:18px!important;font-weight:400}}#col-Rg3Gr4MzBf>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-Rg3Gr4MzBf{animation:none!important}}.--mobile #col-Rg3Gr4MzBf,.--mobile #row-te6d0D-srD{animation:none!important}.button-S5qxLC3t7Z .button-icon-start:before{content:"";font-family:"Font Awesome 5 Free";font-weight:700;color:var(--white)}@media screen and (min-width:481px) and (max-width:10000px){.button-S5qxLC3t7Z .button-icon-end,.button-S5qxLC3t7Z .button-icon-start,.button-S5qxLC3t7Z .main-heading-button{font-size:16px;font-weight:500}.button-S5qxLC3t7Z .button-icon-start{margin-right:5px}.button-S5qxLC3t7Z .button-icon-end{margin-left:5px}.button-S5qxLC3t7Z .sub-heading-button{font-size:15px;color:var(--white);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-S5qxLC3t7Z .button-icon-end,.button-S5qxLC3t7Z .button-icon-start,.button-S5qxLC3t7Z .main-heading-button{font-size:18px;font-weight:500}.button-S5qxLC3t7Z .button-icon-start{margin-right:5px}.button-S5qxLC3t7Z .button-icon-end{margin-left:5px}.button-S5qxLC3t7Z .sub-heading-button{font-size:15px;color:var(--white);font-weight:undefined}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-cABxyP6k86 h1,.sub-heading-cABxyP6k86 h2,.sub-heading-cABxyP6k86 h3,.sub-heading-cABxyP6k86 h4,.sub-heading-cABxyP6k86 h5,.sub-heading-cABxyP6k86 h6,.sub-heading-cABxyP6k86 ul li,.sub-heading-cABxyP6k86.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-cABxyP6k86 h1,.sub-heading-cABxyP6k86 h2,.sub-heading-cABxyP6k86 h3,.sub-heading-cABxyP6k86 h4,.sub-heading-cABxyP6k86 h5,.sub-heading-cABxyP6k86 h6,.sub-heading-cABxyP6k86 ul li,.sub-heading-cABxyP6k86.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-yEp3Wcs9u- h1,.sub-heading-yEp3Wcs9u- h2,.sub-heading-yEp3Wcs9u- h3,.sub-heading-yEp3Wcs9u- h4,.sub-heading-yEp3Wcs9u- h5,.sub-heading-yEp3Wcs9u- h6,.sub-heading-yEp3Wcs9u- ul li,.sub-heading-yEp3Wcs9u-.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-yEp3Wcs9u- h1,.sub-heading-yEp3Wcs9u- h2,.sub-heading-yEp3Wcs9u- h3,.sub-heading-yEp3Wcs9u- h4,.sub-heading-yEp3Wcs9u- h5,.sub-heading-yEp3Wcs9u- h6,.sub-heading-yEp3Wcs9u- ul li,.sub-heading-yEp3Wcs9u-.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-te6d0D-srD{animation:none!important}}#col-Fmvt_lf7Kk>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-Fmvt_lf7Kk{animation:none!important}}.--mobile #col-Fmvt_lf7Kk{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-XosEhlVBsh h1,.paragraph-XosEhlVBsh h2,.paragraph-XosEhlVBsh h3,.paragraph-XosEhlVBsh h4,.paragraph-XosEhlVBsh h5,.paragraph-XosEhlVBsh h6,.paragraph-XosEhlVBsh ul li,.paragraph-XosEhlVBsh.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-XosEhlVBsh h1,.paragraph-XosEhlVBsh h2,.paragraph-XosEhlVBsh h3,.paragraph-XosEhlVBsh h4,.paragraph-XosEhlVBsh h5,.paragraph-XosEhlVBsh h6,.paragraph-XosEhlVBsh ul li,.paragraph-XosEhlVBsh.text-output{font-size:16px!important;font-weight:400}}.paragraph-XosEhlVBsh.text-output h1:first-child:before,.paragraph-XosEhlVBsh.text-output h2:first-child:before,.paragraph-XosEhlVBsh.text-output h3:first-child:before,.paragraph-XosEhlVBsh.text-output h4:first-child:before,.paragraph-XosEhlVBsh.text-output h5:first-child:before,.paragraph-XosEhlVBsh.text-output h6:first-child:before,.paragraph-XosEhlVBsh.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-S0RLkATTlF h1,.paragraph-S0RLkATTlF h2,.paragraph-S0RLkATTlF h3,.paragraph-S0RLkATTlF h4,.paragraph-S0RLkATTlF h5,.paragraph-S0RLkATTlF h6,.paragraph-S0RLkATTlF ul li,.paragraph-S0RLkATTlF.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-S0RLkATTlF h1,.paragraph-S0RLkATTlF h2,.paragraph-S0RLkATTlF h3,.paragraph-S0RLkATTlF h4,.paragraph-S0RLkATTlF h5,.paragraph-S0RLkATTlF h6,.paragraph-S0RLkATTlF ul li,.paragraph-S0RLkATTlF.text-output{font-size:16px!important;font-weight:400}}.paragraph-S0RLkATTlF.text-output h1:first-child:before,.paragraph-S0RLkATTlF.text-output h2:first-child:before,.paragraph-S0RLkATTlF.text-output h3:first-child:before,.paragraph-S0RLkATTlF.text-output h4:first-child:before,.paragraph-S0RLkATTlF.text-output h5:first-child:before,.paragraph-S0RLkATTlF.text-output h6:first-child:before,.paragraph-S0RLkATTlF.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-PIa9qcyIGX h1,.paragraph-PIa9qcyIGX h2,.paragraph-PIa9qcyIGX h3,.paragraph-PIa9qcyIGX h4,.paragraph-PIa9qcyIGX h5,.paragraph-PIa9qcyIGX h6,.paragraph-PIa9qcyIGX ul li,.paragraph-PIa9qcyIGX.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-PIa9qcyIGX h1,.paragraph-PIa9qcyIGX h2,.paragraph-PIa9qcyIGX h3,.paragraph-PIa9qcyIGX h4,.paragraph-PIa9qcyIGX h5,.paragraph-PIa9qcyIGX h6,.paragraph-PIa9qcyIGX ul li,.paragraph-PIa9qcyIGX.text-output{font-size:16px!important;font-weight:400}}.paragraph-PIa9qcyIGX.text-output h1:first-child:before,.paragraph-PIa9qcyIGX.text-output h2:first-child:before,.paragraph-PIa9qcyIGX.text-output h3:first-child:before,.paragraph-PIa9qcyIGX.text-output h4:first-child:before,.paragraph-PIa9qcyIGX.text-output h5:first-child:before,.paragraph-PIa9qcyIGX.text-output h6:first-child:before,.paragraph-PIa9qcyIGX.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-pkSbfv3TRg h1,.sub-heading-pkSbfv3TRg h2,.sub-heading-pkSbfv3TRg h3,.sub-heading-pkSbfv3TRg h4,.sub-heading-pkSbfv3TRg h5,.sub-heading-pkSbfv3TRg h6,.sub-heading-pkSbfv3TRg ul li,.sub-heading-pkSbfv3TRg.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-pkSbfv3TRg h1,.sub-heading-pkSbfv3TRg h2,.sub-heading-pkSbfv3TRg h3,.sub-heading-pkSbfv3TRg h4,.sub-heading-pkSbfv3TRg h5,.sub-heading-pkSbfv3TRg h6,.sub-heading-pkSbfv3TRg ul li,.sub-heading-pkSbfv3TRg.text-output{font-size:18px!important;font-weight:400}}.heading-3uWiOQESsM.text-output h1:first-child:before,.heading-3uWiOQESsM.text-output h2:first-child:before,.heading-3uWiOQESsM.text-output h3:first-child:before,.heading-3uWiOQESsM.text-output h4:first-child:before,.heading-3uWiOQESsM.text-output h5:first-child:before,.heading-3uWiOQESsM.text-output h6:first-child:before,.heading-3uWiOQESsM.text-output p:first-child:before,.sub-heading-P6aDP2NQDn.text-output h1:first-child:before,.sub-heading-P6aDP2NQDn.text-output h2:first-child:before,.sub-heading-P6aDP2NQDn.text-output h3:first-child:before,.sub-heading-P6aDP2NQDn.text-output h4:first-child:before,.sub-heading-P6aDP2NQDn.text-output h5:first-child:before,.sub-heading-P6aDP2NQDn.text-output h6:first-child:before,.sub-heading-P6aDP2NQDn.text-output p:first-child:before,.sub-heading-pkSbfv3TRg.text-output h1:first-child:before,.sub-heading-pkSbfv3TRg.text-output h2:first-child:before,.sub-heading-pkSbfv3TRg.text-output h3:first-child:before,.sub-heading-pkSbfv3TRg.text-output h4:first-child:before,.sub-heading-pkSbfv3TRg.text-output h5:first-child:before,.sub-heading-pkSbfv3TRg.text-output h6:first-child:before,.sub-heading-pkSbfv3TRg.text-output p:first-child:before{color:var(--text-color);content:'\';
69 − font-family: '';margin-right:5px;font-weight:700}#image-slider-bQY6ZCwz82 .carousel{height:300px;width:100%}#image-slider-bQY6ZCwz82 .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-bQY6ZCwz82 .carousel__pagination-active{background:#fff}#image-slider-bQY6ZCwz82 .carousel__pagination-inactive{background:#000}#image-slider-bQY6ZCwz82 .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-P6aDP2NQDn h1,.sub-heading-P6aDP2NQDn h2,.sub-heading-P6aDP2NQDn h3,.sub-heading-P6aDP2NQDn h4,.sub-heading-P6aDP2NQDn h5,.sub-heading-P6aDP2NQDn h6,.sub-heading-P6aDP2NQDn ul li,.sub-heading-P6aDP2NQDn.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-P6aDP2NQDn h1,.sub-heading-P6aDP2NQDn h2,.sub-heading-P6aDP2NQDn h3,.sub-heading-P6aDP2NQDn h4,.sub-heading-P6aDP2NQDn h5,.sub-heading-P6aDP2NQDn h6,.sub-heading-P6aDP2NQDn ul li,.sub-heading-P6aDP2NQDn.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-ufVUOO75V_{animation:none!important}}.--mobile #row-ufVUOO75V_{animation:none!important}#col-KIf4Ql0phl>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-KIf4Ql0phl{animation:none!important}}.--mobile #col-KIf4Ql0phl{animation:none!important}.heading-3uWiOQESsM{font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.heading-3uWiOQESsM h1,.heading-3uWiOQESsM h2,.heading-3uWiOQESsM h3,.heading-3uWiOQESsM h4,.heading-3uWiOQESsM h5,.heading-3uWiOQESsM h6,.heading-3uWiOQESsM ul li,.heading-3uWiOQESsM.text-output{font-size:48px!important;font-weight:700}}@media screen and (min-width:481px) and (max-width:10000px){.heading-3uWiOQESsM h1,.heading-3uWiOQESsM h2,.heading-3uWiOQESsM h3,.heading-3uWiOQESsM h4,.heading-3uWiOQESsM h5,.heading-3uWiOQESsM h6,.heading-3uWiOQESsM ul li,.heading-3uWiOQESsM.text-output{font-size:48px!important;font-weight:700}}
70 − /* ---- Section 4 1/2 styles ----- */
71 −:root{--inter:'Inter';--transparent:transparent;--white:#ffffff;--gray:#cbd5e0;--black:#000000;--color-frszyjcd:#163760ff}.hl_page-preview--content .row-0KfYta8rZb,.hl_page-preview--content .section-qKXqWR4YrU{box-shadow:none;padding:0;margin:0;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid}.hl_page-preview--content .row-0KfYta8rZb{margin:0 auto;padding:10px 5px;border-width:0;border-style:none;border-radius:0;width:100%}.hl_page-preview--content .col-Hx1m6Q308r{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content #heading-M9pQSKd1GF,.hl_page-preview--content #paragraph-0ARgTVBi7B,.hl_page-preview--content #paragraph-13eT01scuR,.hl_page-preview--content #paragraph-3LKUiLrQ26,.hl_page-preview--content #paragraph-3gxdR4PXcj,.hl_page-preview--content #paragraph-4HAX9Ca-EU,.hl_page-preview--content #paragraph-5SPJVqr9eu,.hl_page-preview--content #paragraph-6CKq1pBHHQ,.hl_page-preview--content #paragraph-6oy5acXZcM,.hl_page-preview--content #paragraph-7oxcxXymqD,.hl_page-preview--content #paragraph-Co8Skt1R_M,.hl_page-preview--content #paragraph-ED8lURGOhn,.hl_page-preview--content #paragraph-EhP-Pqjb6A,.hl_page-preview--content #paragraph-GCGeBmgM8d,.hl_page-preview--content #paragraph-GI4XtUk08h,.hl_page-preview--content #paragraph-HNpWOU0yiZ,.hl_page-preview--content #paragraph-HgG_vA5ANo,.hl_page-preview--content #paragraph-J0uGvb7QgA,.hl_page-preview--content #paragraph-JXWmkCoDvo,.hl_page-preview--content #paragraph-NmI3r-dZjg,.hl_page-preview--content #paragraph-Ug1hGViFi0,.hl_page-preview--content #paragraph-WACCbQ0V0r,.hl_page-preview--content #paragraph-ZidcqoUw0n,.hl_page-preview--content #paragraph-dKojknH68T,.hl_page-preview--content #paragraph-dUBxgkE7tO,.hl_page-preview--content #paragraph-dZm5pCA3l0,.hl_page-preview--content #paragraph-e7_Jz94run,.hl_page-preview--content #paragraph-gGbLc7KkF4,.hl_page-preview--content #paragraph-gxTc5y4fR8,.hl_page-preview--content #paragraph-hRivWOY3Y6,.hl_page-preview--content #paragraph-hXYfvK6iKl,.hl_page-preview--content #paragraph-id85VbnU5o,.hl_page-preview--content #paragraph-kFmEo68CHO,.hl_page-preview--content #paragraph-kMr0FdCf6m,.hl_page-preview--content #paragraph-koCOWm6nld,.hl_page-preview--content #paragraph-lepTuUXuNh,.hl_page-preview--content #paragraph-lh3Hu7vp5F,.hl_page-preview--content #paragraph-pX2ZjZ44PA,.hl_page-preview--content #paragraph-phgBpwMWtG,.hl_page-preview--content #paragraph-r9oejefpDS,.hl_page-preview--content #paragraph-rixQIlOEog,.hl_page-preview--content #paragraph-sPkFZRxwOi,.hl_page-preview--content #paragraph-t6zTPAahzh,.hl_page-preview--content #paragraph-t9RQHTlDgr,.hl_page-preview--content #paragraph-tJxuqEhs9W,.hl_page-preview--content #paragraph-tKw7u61AHu,.hl_page-preview--content #paragraph-u1b81koA64,.hl_page-preview--content #paragraph-vVrlnmHbkZ,.hl_page-preview--content #paragraph-xe9HN-aaED,.hl_page-preview--content #paragraph-yf3nKbi6UZ,.hl_page-preview--content #paragraph-yxIDpMQVnK,.hl_page-preview--content #paragraph-zP3JRLb_6T,.hl_page-preview--content #sub-heading--0Wfz7yweG,.hl_page-preview--content #sub-heading--HCzqN8OSl,.hl_page-preview--content #sub-heading--kCWjhM_-p,.hl_page-preview--content #sub-heading-3HV33vvHcK,.hl_page-preview--content #sub-heading-3YlFDH-9YY,.hl_page-preview--content #sub-heading-4Ip_0iBotH,.hl_page-preview--content #sub-heading-4nu7x0-N_h,.hl_page-preview--content #sub-heading-8ux0_f0cmY,.hl_page-preview--content #sub-heading-93vSmZiclD,.hl_page-preview--content #sub-heading-9_c7U6TEGM,.hl_page-preview--content #sub-heading-AkGlLcCq8C,.hl_page-preview--content #sub-heading-BEyluUicBe,.hl_page-preview--content #sub-heading-CPSsjYF9pH,.hl_page-preview--content #sub-heading-Ca7Mh_I0dq,.hl_page-preview--content #sub-heading-CznAmDZC9h,.hl_page-preview--content #sub-heading-DSf2kux6uj,.hl_page-preview--content #sub-heading-EomoPmN2_e,.hl_page-preview--content #sub-heading-FVVh8D9G3M,.hl_page-preview--content #sub-heading-FZbW4ftYFz,.hl_page-preview--content #sub-heading-G_uKj5geJg,.hl_page-preview--content #sub-heading-GcoF6xvHoC,.hl_page-preview--content #sub-heading-Gpy-SIZp54,.hl_page-preview--content #sub-heading-Ie6JP0sg_S,.hl_page-preview--content #sub-heading-ItaE4IW413,.hl_page-preview--content #sub-heading-K9WQSYfv-z,.hl_page-preview--content #sub-heading-LgL5CdZHZ1,.hl_page-preview--content #sub-heading-LlqGzljPYr,.hl_page-preview--content #sub-heading-ME_G3AOWS4,.hl_page-preview--content #sub-heading-QFGuL_DcuK,.hl_page-preview--content #sub-heading-RaYk9nFP_n,.hl_page-preview--content #sub-heading-RqiA9xF_i7,.hl_page-preview--content #sub-heading-S7qiVAX1qU,.hl_page-preview--content #sub-heading-SnOeR9XLND,.hl_page-preview--content #sub-heading-T1biCJ5D-g,.hl_page-preview--content #sub-heading-UvAgDkge1E,.hl_page-preview--content #sub-heading-VZfKufRwAo,.hl_page-preview--content #sub-heading-WEH-tuxYZS,.hl_page-preview--content #sub-heading-WpuH1yb2dA,.hl_page-preview--content #sub-heading-YgPyfOmE5Z,.hl_page-preview--content #sub-heading-ZeeJaB1GkS,.hl_page-preview--content #sub-heading-_F7fq4Crrg,.hl_page-preview--content #sub-heading-bJTnLuUU6D,.hl_page-preview--content #sub-heading-bLU3UQb9Zi,.hl_page-preview--content #sub-heading-bdOY_Wzviu,.hl_page-preview--content #sub-heading-bxWsuz23xa,.hl_page-preview--content #sub-heading-ceUBsq0kuj,.hl_page-preview--content #sub-heading-dK9TIFstoS,.hl_page-preview--content #sub-heading-dXhd_Pt3Ef,.hl_page-preview--content #sub-heading-dj_hT0pl6A,.hl_page-preview--content #sub-heading-dwtEAsmPGN,.hl_page-preview--content #sub-heading-f45nCryqr0,.hl_page-preview--content #sub-heading-hqL5WiSwav,.hl_page-preview--content #sub-heading-ipOgPBQQgu,.hl_page-preview--content #sub-heading-jNzPlB9vbm,.hl_page-preview--content #sub-heading-l5Tul3SYB8,.hl_page-preview--content #sub-heading-mDjEEXBqNA,.hl_page-preview--content #sub-heading-pSNIku96t9,.hl_page-preview--content #sub-heading-szNTcYEybj,.hl_page-preview--content #sub-heading-tjEV3jdfXf,.hl_page-preview--content #sub-heading-vFeaZeoNAp,.hl_page-preview--content #sub-heading-wEYEICtBom,.hl_page-preview--content #sub-heading-wTHPsVslDr,.hl_page-preview--content #sub-heading-wuMQ4HlRJH,.hl_page-preview--content #sub-heading-xc5tqaes3e,.hl_page-preview--content #sub-heading-xgtdv2MejO,.hl_page-preview--content #sub-heading-zKFW_sRIcJ,.hl_page-preview--content #sub-heading-zSqzZqRNZ5,.hl_page-preview--content #sub-heading-zgAUEiWTty{margin:0;width:auto;height:auto}.hl_page-preview--content .csub-heading-FZbW4ftYFz,.hl_page-preview--content .csub-heading-dK9TIFstoS{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-d5P6cDv7cw,.hl_page-preview--content .row-BIkNjvRLaq{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-d5P6cDv7cw{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-GI4XtUk08h,.hl_page-preview--content .cparagraph-hRivWOY3Y6,.hl_page-preview--content .cparagraph-pX2ZjZ44PA,.hl_page-preview--content .csub-heading--kCWjhM_-p{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading--kCWjhM_-p{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-shO7zM36bG{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-BEyluUicBe{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-IeMQJtd4Vs{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading--HCzqN8OSl,.hl_page-preview--content .csub-heading-Ca7Mh_I0dq{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-o_l0aakC0u,.hl_page-preview--content .row-M4W9BYnUJ5{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-o_l0aakC0u{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-7oxcxXymqD,.hl_page-preview--content .cparagraph-rixQIlOEog,.hl_page-preview--content .cparagraph-yf3nKbi6UZ,.hl_page-preview--content .csub-heading-T1biCJ5D-g{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-T1biCJ5D-g{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-ezf0k7Duh5{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-LgL5CdZHZ1{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-M012EiU4jM,.hl_page-preview--content .row-hYTTIOKBfG{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;border-width:2px;border-style:solid}.hl_page-preview--content .row-hYTTIOKBfG{margin:0 auto;box-shadow:none;border-color:var(--black);width:100%}.hl_page-preview--content .col-M012EiU4jM{width:33%;border-color:var(--gray);margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-3HV33vvHcK,.hl_page-preview--content .csub-heading-f45nCryqr0{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-h-xrGyW5sh,.hl_page-preview--content .row-ZwxJLUTKEd{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-h-xrGyW5sh{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-GCGeBmgM8d,.hl_page-preview--content .cparagraph-phgBpwMWtG,.hl_page-preview--content .cparagraph-t9RQHTlDgr,.hl_page-preview--content .csub-heading-zSqzZqRNZ5{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-zSqzZqRNZ5{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-lCY3OTh4iK{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-xgtdv2MejO{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-4BWvVkisHn{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .button-Del9cF1yZc{margin:0;text-align:center;width:auto;height:auto}.hl_page-preview--content .cbutton-Del9cF1yZc{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);secondary-color:var(--white);padding:10px 20px;border-color:var(--white);border-width:1px;border-style:solid;letter-spacing:0;text-transform:none;width:auto%;box-shadow:none;text-shadow:none;icon-color:var(--white)}.hl_page-preview--content .csub-heading-3YlFDH-9YY,.hl_page-preview--content .csub-heading-EomoPmN2_e{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-p5GadL5G_x,.hl_page-preview--content .row-gmEgVmoveS{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-p5GadL5G_x{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-HNpWOU0yiZ,.hl_page-preview--content .cparagraph-gGbLc7KkF4,.hl_page-preview--content .cparagraph-hXYfvK6iKl,.hl_page-preview--content .csub-heading-mDjEEXBqNA{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-mDjEEXBqNA{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-U_M5ypvwFo{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-ZeeJaB1GkS{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-PDRiNvrIye{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .button-K56JSZZeV0{margin:0;text-align:center;width:auto;height:auto}.hl_page-preview--content .cbutton-K56JSZZeV0{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);secondary-color:var(--white);padding:10px 20px;border-color:var(--white);border-width:1px;border-style:solid;letter-spacing:0;text-transform:none;width:auto%;box-shadow:none;text-shadow:none;icon-color:var(--white)}.hl_page-preview--content .csub-heading-AkGlLcCq8C,.hl_page-preview--content .csub-heading-hqL5WiSwav{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-gnCK3IzMW4,.hl_page-preview--content .row-N2zOEM0D9T{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-gnCK3IzMW4{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-dZm5pCA3l0,.hl_page-preview--content .cparagraph-r9oejefpDS,.hl_page-preview--content .cparagraph-vVrlnmHbkZ,.hl_page-preview--content .csub-heading-zKFW_sRIcJ{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-zKFW_sRIcJ{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-LwgINnCEal{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-vFeaZeoNAp{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-tN2w8jSThI{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-CznAmDZC9h,.hl_page-preview--content .csub-heading-ItaE4IW413{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-Hu9p3uB0oJ,.hl_page-preview--content .row-AkFudryisy{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-Hu9p3uB0oJ{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-6oy5acXZcM,.hl_page-preview--content .cparagraph-Ug1hGViFi0,.hl_page-preview--content .cparagraph-u1b81koA64,.hl_page-preview--content .csub-heading-S7qiVAX1qU{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-S7qiVAX1qU{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-1_8JMdOs2R{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-WpuH1yb2dA{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-GydWbufL23{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-bJTnLuUU6D,.hl_page-preview--content .csub-heading-xc5tqaes3e{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-gYjurgTxv8,.hl_page-preview--content .row-gvJ5NslZYY{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-gYjurgTxv8{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-3LKUiLrQ26,.hl_page-preview--content .cparagraph-Co8Skt1R_M,.hl_page-preview--content .cparagraph-sPkFZRxwOi,.hl_page-preview--content .csub-heading-93vSmZiclD{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-93vSmZiclD{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-0_dT61oRor{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-_F7fq4Crrg{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-sP29GM9ciq,.hl_page-preview--content .row-99GgjNdm-g{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;border-width:2px;border-style:solid}.hl_page-preview--content .row-99GgjNdm-g{margin:0 auto;box-shadow:none;border-color:var(--black);width:100%}.hl_page-preview--content .col-sP29GM9ciq{width:33%;border-color:var(--gray);margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading--0Wfz7yweG,.hl_page-preview--content .csub-heading-ME_G3AOWS4{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-ls71cZvTn-,.hl_page-preview--content .row-meTU-K_rSB{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-ls71cZvTn-{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-kFmEo68CHO,.hl_page-preview--content .cparagraph-tJxuqEhs9W,.hl_page-preview--content .cparagraph-zP3JRLb_6T,.hl_page-preview--content .csub-heading-RqiA9xF_i7{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-RqiA9xF_i7{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-achszaW5L1{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-zgAUEiWTty{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-OHL99Fr2yl{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:0%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .button-7eUMBF9xr_{margin:0;text-align:center;width:auto;height:auto}.hl_page-preview--content .cbutton-7eUMBF9xr_{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);secondary-color:var(--white);padding:10px 20px;border-color:var(--white);border-width:1px;border-style:solid;letter-spacing:0;text-transform:none;width:auto%;box-shadow:none;text-shadow:none;icon-color:var(--white)}.hl_page-preview--content .csub-heading-UvAgDkge1E,.hl_page-preview--content .csub-heading-WEH-tuxYZS{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-cp3pdl5s08,.hl_page-preview--content .row-1tUj13yrU_{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-cp3pdl5s08{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-JXWmkCoDvo,.hl_page-preview--content .cparagraph-dUBxgkE7tO,.hl_page-preview--content .cparagraph-yxIDpMQVnK,.hl_page-preview--content .csub-heading-LlqGzljPYr{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-LlqGzljPYr{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-ZJsr3B4gSR{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-ipOgPBQQgu{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-L8zAeZtaIl{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:0%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .button-VVbM5fio9Y{margin:0;text-align:center;width:auto;height:auto}.hl_page-preview--content .cbutton-VVbM5fio9Y{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);secondary-color:var(--white);padding:10px 20px;border-color:var(--white);border-width:1px;border-style:solid;letter-spacing:0;text-transform:none;width:auto%;box-shadow:none;text-shadow:none;icon-color:var(--white)}.hl_page-preview--content .csub-heading-SnOeR9XLND,.hl_page-preview--content .csub-heading-wEYEICtBom{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-6sdGUnXWaj,.hl_page-preview--content .row-CGWejANV07{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-6sdGUnXWaj{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-6CKq1pBHHQ,.hl_page-preview--content .cparagraph-NmI3r-dZjg,.hl_page-preview--content .cparagraph-t6zTPAahzh,.hl_page-preview--content .csub-heading-tjEV3jdfXf{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-tjEV3jdfXf{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-riO8-nRuP5{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-QFGuL_DcuK{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-eZcUywOtoD{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:0%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .button-zuF2gWpWDs{margin:0;text-align:center;width:auto;height:auto}.hl_page-preview--content .cbutton-zuF2gWpWDs{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);secondary-color:var(--white);padding:10px 20px;border-color:var(--white);border-width:1px;border-style:solid;letter-spacing:0;text-transform:none;width:auto%;box-shadow:none;text-shadow:none;icon-color:var(--white)}.hl_page-preview--content .csub-heading-Ie6JP0sg_S,.hl_page-preview--content .csub-heading-wTHPsVslDr{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-7TnZnvp0Oz,.hl_page-preview--content .row-xqyNcqfIXP{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-7TnZnvp0Oz{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-5SPJVqr9eu,.hl_page-preview--content .cparagraph-EhP-Pqjb6A,.hl_page-preview--content .cparagraph-J0uGvb7QgA,.hl_page-preview--content .csub-heading-wuMQ4HlRJH{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-wuMQ4HlRJH{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-0DcKAWgheV{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-dj_hT0pl6A{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-0BdY2ssDlw{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:0%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .button-JjVPYMgs6z{margin:0;text-align:center;width:auto;height:auto}.hl_page-preview--content .cbutton-JjVPYMgs6z{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);secondary-color:var(--white);padding:10px 20px;border-color:var(--white);border-width:1px;border-style:solid;letter-spacing:0;text-transform:none;width:auto%;box-shadow:none;text-shadow:none;icon-color:var(--white)}.hl_page-preview--content .csub-heading-YgPyfOmE5Z,.hl_page-preview--content .csub-heading-jNzPlB9vbm{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-UWRaDC9Grz,.hl_page-preview--content .row-m_Yt_bXEHI{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-UWRaDC9Grz{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-ZidcqoUw0n,.hl_page-preview--content .cparagraph-e7_Jz94run,.hl_page-preview--content .cparagraph-koCOWm6nld,.hl_page-preview--content .csub-heading-ceUBsq0kuj{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-ceUBsq0kuj{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-eRqZbtNmeA{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-szNTcYEybj{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-Q4wU3xhreo{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-4Ip_0iBotH,.hl_page-preview--content .csub-heading-pSNIku96t9{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-NMqctrhnDW,.hl_page-preview--content .row-vKeRqlqG86{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-NMqctrhnDW{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-HgG_vA5ANo,.hl_page-preview--content .cparagraph-id85VbnU5o,.hl_page-preview--content .cparagraph-xe9HN-aaED,.hl_page-preview--content .csub-heading-8ux0_f0cmY{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-8ux0_f0cmY{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-CeKWjGzG_E{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-GcoF6xvHoC{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-W39DtM6M4H{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-bdOY_Wzviu,.hl_page-preview--content .csub-heading-dwtEAsmPGN{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-ixkz30M7i1,.hl_page-preview--content .row-R1cm8G6K1l{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-ixkz30M7i1{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-4HAX9Ca-EU,.hl_page-preview--content .cparagraph-ED8lURGOhn,.hl_page-preview--content .cparagraph-kMr0FdCf6m,.hl_page-preview--content .csub-heading-Gpy-SIZp54{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-Gpy-SIZp54{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-K91ox7l21J{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-4nu7x0-N_h{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-maREh0vwPA,.hl_page-preview--content .row-AXTeGWxz-Ld{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;border-width:2px;border-style:solid}.hl_page-preview--content .row-AXTeGWxz-Ld{margin:0 auto;box-shadow:none;border-color:var(--black);width:100%}.hl_page-preview--content .col-maREh0vwPA{width:33%;border-color:var(--gray);margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-RaYk9nFP_n,.hl_page-preview--content .csub-heading-l5Tul3SYB8{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-b7vKLa55Kt,.hl_page-preview--content .row-hjdHkZaMtO{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-b7vKLa55Kt{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-WACCbQ0V0r,.hl_page-preview--content .cparagraph-lepTuUXuNh,.hl_page-preview--content .cparagraph-tKw7u61AHu,.hl_page-preview--content .csub-heading-bLU3UQb9Zi{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-bLU3UQb9Zi{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-9ftVM9OWVJ{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-FVVh8D9G3M{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-gXGaYC3mUA{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-9_c7U6TEGM,.hl_page-preview--content .csub-heading-DSf2kux6uj{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-G974YejYr8,.hl_page-preview--content .row-FvKdm-vCdY{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-G974YejYr8{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-13eT01scuR,.hl_page-preview--content .cparagraph-dKojknH68T,.hl_page-preview--content .cparagraph-lh3Hu7vp5F,.hl_page-preview--content .csub-heading-CPSsjYF9pH{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-CPSsjYF9pH{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-U_p23De5wW{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-G_uKj5geJg{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-D7l9_3bXCN{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-K9WQSYfv-z,.hl_page-preview--content .csub-heading-dXhd_Pt3Ef{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-0XrNF11aND,.hl_page-preview--content .row-CpfFhBNjeH{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-0XrNF11aND{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-0ARgTVBi7B,.hl_page-preview--content .cparagraph-3gxdR4PXcj,.hl_page-preview--content .cparagraph-gxTc5y4fR8,.hl_page-preview--content .csub-heading-bxWsuz23xa{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-bxWsuz23xa{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-AYfgPodJLS{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-VZfKufRwAo{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-9QARp-V-6m,.hl_page-preview--content .row-rh4yMILdRq{margin:0 auto;box-shadow:none;padding:40px 5px 10px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-9QARp-V-6m{padding:10px 5px;margin:0}.hl_page-preview--content .cheading-M9pQSKd1GF{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}@media screen and (min-width:0px) and (max-width:480px){.hl_page-preview--content .cheading-M9pQSKd1GF{padding-top:5px;padding-bottom:5px}}#section-qKXqWR4YrU>.inner{max-width:1170px}@media (max-width:1024px){#section-qKXqWR4YrU{animation:none!important}}.--mobile #row-0KfYta8rZb,.--mobile #section-qKXqWR4YrU{animation:none!important}@media (max-width:1024px){#row-0KfYta8rZb{animation:none!important}}#col-Hx1m6Q308r>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-Hx1m6Q308r{animation:none!important}}.--mobile #col-Hx1m6Q308r,.--mobile #row-BIkNjvRLaq{animation:none!important}.paragraph-0ARgTVBi7B,.paragraph-13eT01scuR,.paragraph-3LKUiLrQ26,.paragraph-3gxdR4PXcj,.paragraph-4HAX9Ca-EU,.paragraph-5SPJVqr9eu,.paragraph-6CKq1pBHHQ,.paragraph-6oy5acXZcM,.paragraph-7oxcxXymqD,.paragraph-Co8Skt1R_M,.paragraph-ED8lURGOhn,.paragraph-EhP-Pqjb6A,.paragraph-GCGeBmgM8d,.paragraph-GI4XtUk08h,.paragraph-HNpWOU0yiZ,.paragraph-HgG_vA5ANo,.paragraph-J0uGvb7QgA,.paragraph-JXWmkCoDvo,.paragraph-NmI3r-dZjg,.paragraph-Ug1hGViFi0,.paragraph-WACCbQ0V0r,.paragraph-ZidcqoUw0n,.paragraph-dKojknH68T,.paragraph-dUBxgkE7tO,.paragraph-dZm5pCA3l0,.paragraph-e7_Jz94run,.paragraph-gGbLc7KkF4,.paragraph-gxTc5y4fR8,.paragraph-hRivWOY3Y6,.paragraph-hXYfvK6iKl,.paragraph-id85VbnU5o,.paragraph-kFmEo68CHO,.paragraph-kMr0FdCf6m,.paragraph-koCOWm6nld,.paragraph-lepTuUXuNh,.paragraph-lh3Hu7vp5F,.paragraph-pX2ZjZ44PA,.paragraph-phgBpwMWtG,.paragraph-r9oejefpDS,.paragraph-rixQIlOEog,.paragraph-sPkFZRxwOi,.paragraph-t6zTPAahzh,.paragraph-t9RQHTlDgr,.paragraph-tJxuqEhs9W,.paragraph-tKw7u61AHu,.paragraph-u1b81koA64,.paragraph-vVrlnmHbkZ,.paragraph-xe9HN-aaED,.paragraph-yf3nKbi6UZ,.paragraph-yxIDpMQVnK,.paragraph-zP3JRLb_6T,.sub-heading--0Wfz7yweG,.sub-heading--HCzqN8OSl,.sub-heading--kCWjhM_-p,.sub-heading-3HV33vvHcK,.sub-heading-3YlFDH-9YY,.sub-heading-4Ip_0iBotH,.sub-heading-4nu7x0-N_h,.sub-heading-8ux0_f0cmY,.sub-heading-93vSmZiclD,.sub-heading-9_c7U6TEGM,.sub-heading-AkGlLcCq8C,.sub-heading-BEyluUicBe,.sub-heading-CPSsjYF9pH,.sub-heading-Ca7Mh_I0dq,.sub-heading-CznAmDZC9h,.sub-heading-DSf2kux6uj,.sub-heading-EomoPmN2_e,.sub-heading-FVVh8D9G3M,.sub-heading-FZbW4ftYFz,.sub-heading-G_uKj5geJg,.sub-heading-GcoF6xvHoC,.sub-heading-Gpy-SIZp54,.sub-heading-Ie6JP0sg_S,.sub-heading-ItaE4IW413,.sub-heading-K9WQSYfv-z,.sub-heading-LgL5CdZHZ1,.sub-heading-LlqGzljPYr,.sub-heading-ME_G3AOWS4,.sub-heading-QFGuL_DcuK,.sub-heading-RaYk9nFP_n,.sub-heading-RqiA9xF_i7,.sub-heading-S7qiVAX1qU,.sub-heading-SnOeR9XLND,.sub-heading-T1biCJ5D-g,.sub-heading-UvAgDkge1E,.sub-heading-VZfKufRwAo,.sub-heading-WEH-tuxYZS,.sub-heading-WpuH1yb2dA,.sub-heading-YgPyfOmE5Z,.sub-heading-ZeeJaB1GkS,.sub-heading-_F7fq4Crrg,.sub-heading-bJTnLuUU6D,.sub-heading-bLU3UQb9Zi,.sub-heading-bdOY_Wzviu,.sub-heading-bxWsuz23xa,.sub-heading-ceUBsq0kuj,.sub-heading-dK9TIFstoS,.sub-heading-dXhd_Pt3Ef,.sub-heading-dj_hT0pl6A,.sub-heading-dwtEAsmPGN,.sub-heading-f45nCryqr0,.sub-heading-hqL5WiSwav,.sub-heading-ipOgPBQQgu,.sub-heading-jNzPlB9vbm,.sub-heading-l5Tul3SYB8,.sub-heading-mDjEEXBqNA,.sub-heading-pSNIku96t9,.sub-heading-szNTcYEybj,.sub-heading-tjEV3jdfXf,.sub-heading-vFeaZeoNAp,.sub-heading-wEYEICtBom,.sub-heading-wTHPsVslDr,.sub-heading-wuMQ4HlRJH,.sub-heading-xc5tqaes3e,.sub-heading-xgtdv2MejO,.sub-heading-zKFW_sRIcJ,.sub-heading-zSqzZqRNZ5,.sub-heading-zgAUEiWTty{font-weight:400}.heading-M9pQSKd1GF a,.heading-M9pQSKd1GF a *,.paragraph-0ARgTVBi7B a,.paragraph-0ARgTVBi7B a *,.paragraph-13eT01scuR a,.paragraph-13eT01scuR a *,.paragraph-3LKUiLrQ26 a,.paragraph-3LKUiLrQ26 a *,.paragraph-3gxdR4PXcj a,.paragraph-3gxdR4PXcj a *,.paragraph-4HAX9Ca-EU a,.paragraph-4HAX9Ca-EU a *,.paragraph-5SPJVqr9eu a,.paragraph-5SPJVqr9eu a *,.paragraph-6CKq1pBHHQ a,.paragraph-6CKq1pBHHQ a *,.paragraph-6oy5acXZcM a,.paragraph-6oy5acXZcM a *,.paragraph-7oxcxXymqD a,.paragraph-7oxcxXymqD a *,.paragraph-Co8Skt1R_M a,.paragraph-Co8Skt1R_M a *,.paragraph-ED8lURGOhn a,.paragraph-ED8lURGOhn a *,.paragraph-EhP-Pqjb6A a,.paragraph-EhP-Pqjb6A a *,.paragraph-GCGeBmgM8d a,.paragraph-GCGeBmgM8d a *,.paragraph-GI4XtUk08h a,.paragraph-GI4XtUk08h a *,.paragraph-HNpWOU0yiZ a,.paragraph-HNpWOU0yiZ a *,.paragraph-HgG_vA5ANo a,.paragraph-HgG_vA5ANo a *,.paragraph-J0uGvb7QgA a,.paragraph-J0uGvb7QgA a *,.paragraph-JXWmkCoDvo a,.paragraph-JXWmkCoDvo a *,.paragraph-NmI3r-dZjg a,.paragraph-NmI3r-dZjg a *,.paragraph-Ug1hGViFi0 a,.paragraph-Ug1hGViFi0 a *,.paragraph-WACCbQ0V0r a,.paragraph-WACCbQ0V0r a *,.paragraph-ZidcqoUw0n a,.paragraph-ZidcqoUw0n a *,.paragraph-dKojknH68T a,.paragraph-dKojknH68T a *,.paragraph-dUBxgkE7tO a,.paragraph-dUBxgkE7tO a *,.paragraph-dZm5pCA3l0 a,.paragraph-dZm5pCA3l0 a *,.paragraph-e7_Jz94run a,.paragraph-e7_Jz94run a *,.paragraph-gGbLc7KkF4 a,.paragraph-gGbLc7KkF4 a *,.paragraph-gxTc5y4fR8 a,.paragraph-gxTc5y4fR8 a *,.paragraph-hRivWOY3Y6 a,.paragraph-hRivWOY3Y6 a *,.paragraph-hXYfvK6iKl a,.paragraph-hXYfvK6iKl a *,.paragraph-id85VbnU5o a,.paragraph-id85VbnU5o a *,.paragraph-kFmEo68CHO a,.paragraph-kFmEo68CHO a *,.paragraph-kMr0FdCf6m a,.paragraph-kMr0FdCf6m a *,.paragraph-koCOWm6nld a,.paragraph-koCOWm6nld a *,.paragraph-lepTuUXuNh a,.paragraph-lepTuUXuNh a *,.paragraph-lh3Hu7vp5F a,.paragraph-lh3Hu7vp5F a *,.paragraph-pX2ZjZ44PA a,.paragraph-pX2ZjZ44PA a *,.paragraph-phgBpwMWtG a,.paragraph-phgBpwMWtG a *,.paragraph-r9oejefpDS a,.paragraph-r9oejefpDS a *,.paragraph-rixQIlOEog a,.paragraph-rixQIlOEog a *,.paragraph-sPkFZRxwOi a,.paragraph-sPkFZRxwOi a *,.paragraph-t6zTPAahzh a,.paragraph-t6zTPAahzh a *,.paragraph-t9RQHTlDgr a,.paragraph-t9RQHTlDgr a *,.paragraph-tJxuqEhs9W a,.paragraph-tJxuqEhs9W a *,.paragraph-tKw7u61AHu a,.paragraph-tKw7u61AHu a *,.paragraph-u1b81koA64 a,.paragraph-u1b81koA64 a *,.paragraph-vVrlnmHbkZ a,.paragraph-vVrlnmHbkZ a *,.paragraph-xe9HN-aaED a,.paragraph-xe9HN-aaED a *,.paragraph-yf3nKbi6UZ a,.paragraph-yf3nKbi6UZ a *,.paragraph-yxIDpMQVnK a,.paragraph-yxIDpMQVnK a *,.paragraph-zP3JRLb_6T a,.paragraph-zP3JRLb_6T a *,.sub-heading--0Wfz7yweG a,.sub-heading--0Wfz7yweG a *,.sub-heading--HCzqN8OSl a,.sub-heading--HCzqN8OSl a *,.sub-heading--kCWjhM_-p a,.sub-heading--kCWjhM_-p a *,.sub-heading-3HV33vvHcK a,.sub-heading-3HV33vvHcK a *,.sub-heading-3YlFDH-9YY a,.sub-heading-3YlFDH-9YY a *,.sub-heading-4Ip_0iBotH a,.sub-heading-4Ip_0iBotH a *,.sub-heading-4nu7x0-N_h a,.sub-heading-4nu7x0-N_h a *,.sub-heading-8ux0_f0cmY a,.sub-heading-8ux0_f0cmY a *,.sub-heading-93vSmZiclD a,.sub-heading-93vSmZiclD a *,.sub-heading-9_c7U6TEGM a,.sub-heading-9_c7U6TEGM a *,.sub-heading-AkGlLcCq8C a,.sub-heading-AkGlLcCq8C a *,.sub-heading-BEyluUicBe a,.sub-heading-BEyluUicBe a *,.sub-heading-CPSsjYF9pH a,.sub-heading-CPSsjYF9pH a *,.sub-heading-Ca7Mh_I0dq a,.sub-heading-Ca7Mh_I0dq a *,.sub-heading-CznAmDZC9h a,.sub-heading-CznAmDZC9h a *,.sub-heading-DSf2kux6uj a,.sub-heading-DSf2kux6uj a *,.sub-heading-EomoPmN2_e a,.sub-heading-EomoPmN2_e a *,.sub-heading-FVVh8D9G3M a,.sub-heading-FVVh8D9G3M a *,.sub-heading-FZbW4ftYFz a,.sub-heading-FZbW4ftYFz a *,.sub-heading-G_uKj5geJg a,.sub-heading-G_uKj5geJg a *,.sub-heading-GcoF6xvHoC a,.sub-heading-GcoF6xvHoC a *,.sub-heading-Gpy-SIZp54 a,.sub-heading-Gpy-SIZp54 a *,.sub-heading-Ie6JP0sg_S a,.sub-heading-Ie6JP0sg_S a *,.sub-heading-ItaE4IW413 a,.sub-heading-ItaE4IW413 a *,.sub-heading-K9WQSYfv-z a,.sub-heading-K9WQSYfv-z a *,.sub-heading-LgL5CdZHZ1 a,.sub-heading-LgL5CdZHZ1 a *,.sub-heading-LlqGzljPYr a,.sub-heading-LlqGzljPYr a *,.sub-heading-ME_G3AOWS4 a,.sub-heading-ME_G3AOWS4 a *,.sub-heading-QFGuL_DcuK a,.sub-heading-QFGuL_DcuK a *,.sub-heading-RaYk9nFP_n a,.sub-heading-RaYk9nFP_n a *,.sub-heading-RqiA9xF_i7 a,.sub-heading-RqiA9xF_i7 a *,.sub-heading-S7qiVAX1qU a,.sub-heading-S7qiVAX1qU a *,.sub-heading-SnOeR9XLND a,.sub-heading-SnOeR9XLND a *,.sub-heading-T1biCJ5D-g a,.sub-heading-T1biCJ5D-g a *,.sub-heading-UvAgDkge1E a,.sub-heading-UvAgDkge1E a *,.sub-heading-VZfKufRwAo a,.sub-heading-VZfKufRwAo a *,.sub-heading-WEH-tuxYZS a,.sub-heading-WEH-tuxYZS a *,.sub-heading-WpuH1yb2dA a,.sub-heading-WpuH1yb2dA a *,.sub-heading-YgPyfOmE5Z a,.sub-heading-YgPyfOmE5Z a *,.sub-heading-ZeeJaB1GkS a,.sub-heading-ZeeJaB1GkS a *,.sub-heading-_F7fq4Crrg a,.sub-heading-_F7fq4Crrg a *,.sub-heading-bJTnLuUU6D a,.sub-heading-bJTnLuUU6D a *,.sub-heading-bLU3UQb9Zi a,.sub-heading-bLU3UQb9Zi a *,.sub-heading-bdOY_Wzviu a,.sub-heading-bdOY_Wzviu a *,.sub-heading-bxWsuz23xa a,.sub-heading-bxWsuz23xa a *,.sub-heading-ceUBsq0kuj a,.sub-heading-ceUBsq0kuj a *,.sub-heading-dK9TIFstoS a,.sub-heading-dK9TIFstoS a *,.sub-heading-dXhd_Pt3Ef a,.sub-heading-dXhd_Pt3Ef a *,.sub-heading-dj_hT0pl6A a,.sub-heading-dj_hT0pl6A a *,.sub-heading-dwtEAsmPGN a,.sub-heading-dwtEAsmPGN a *,.sub-heading-f45nCryqr0 a,.sub-heading-f45nCryqr0 a *,.sub-heading-hqL5WiSwav a,.sub-heading-hqL5WiSwav a *,.sub-heading-ipOgPBQQgu a,.sub-heading-ipOgPBQQgu a *,.sub-heading-jNzPlB9vbm a,.sub-heading-jNzPlB9vbm a *,.sub-heading-l5Tul3SYB8 a,.sub-heading-l5Tul3SYB8 a *,.sub-heading-mDjEEXBqNA a,.sub-heading-mDjEEXBqNA a *,.sub-heading-pSNIku96t9 a,.sub-heading-pSNIku96t9 a *,.sub-heading-szNTcYEybj a,.sub-heading-szNTcYEybj a *,.sub-heading-tjEV3jdfXf a,.sub-heading-tjEV3jdfXf a *,.sub-heading-vFeaZeoNAp a,.sub-heading-vFeaZeoNAp a *,.sub-heading-wEYEICtBom a,.sub-heading-wEYEICtBom a *,.sub-heading-wTHPsVslDr a,.sub-heading-wTHPsVslDr a *,.sub-heading-wuMQ4HlRJH a,.sub-heading-wuMQ4HlRJH a *,.sub-heading-xc5tqaes3e a,.sub-heading-xc5tqaes3e a *,.sub-heading-xgtdv2MejO a,.sub-heading-xgtdv2MejO a *,.sub-heading-zKFW_sRIcJ a,.sub-heading-zKFW_sRIcJ a *,.sub-heading-zSqzZqRNZ5 a,.sub-heading-zSqzZqRNZ5 a *,.sub-heading-zgAUEiWTty a,.sub-heading-zgAUEiWTty a *{color:var(--link-color);text-decoration:none}.heading-M9pQSKd1GF a u,.heading-M9pQSKd1GF a:hover,.paragraph-0ARgTVBi7B a u,.paragraph-0ARgTVBi7B a:hover,.paragraph-13eT01scuR a u,.paragraph-13eT01scuR a:hover,.paragraph-3LKUiLrQ26 a u,.paragraph-3LKUiLrQ26 a:hover,.paragraph-3gxdR4PXcj a u,.paragraph-3gxdR4PXcj a:hover,.paragraph-4HAX9Ca-EU a u,.paragraph-4HAX9Ca-EU a:hover,.paragraph-5SPJVqr9eu a u,.paragraph-5SPJVqr9eu a:hover,.paragraph-6CKq1pBHHQ a u,.paragraph-6CKq1pBHHQ a:hover,.paragraph-6oy5acXZcM a u,.paragraph-6oy5acXZcM a:hover,.paragraph-7oxcxXymqD a u,.paragraph-7oxcxXymqD a:hover,.paragraph-Co8Skt1R_M a u,.paragraph-Co8Skt1R_M a:hover,.paragraph-ED8lURGOhn a u,.paragraph-ED8lURGOhn a:hover,.paragraph-EhP-Pqjb6A a u,.paragraph-EhP-Pqjb6A a:hover,.paragraph-GCGeBmgM8d a u,.paragraph-GCGeBmgM8d a:hover,.paragraph-GI4XtUk08h a u,.paragraph-GI4XtUk08h a:hover,.paragraph-HNpWOU0yiZ a u,.paragraph-HNpWOU0yiZ a:hover,.paragraph-HgG_vA5ANo a u,.paragraph-HgG_vA5ANo a:hover,.paragraph-J0uGvb7QgA a u,.paragraph-J0uGvb7QgA a:hover,.paragraph-JXWmkCoDvo a u,.paragraph-JXWmkCoDvo a:hover,.paragraph-NmI3r-dZjg a u,.paragraph-NmI3r-dZjg a:hover,.paragraph-Ug1hGViFi0 a u,.paragraph-Ug1hGViFi0 a:hover,.paragraph-WACCbQ0V0r a u,.paragraph-WACCbQ0V0r a:hover,.paragraph-ZidcqoUw0n a u,.paragraph-ZidcqoUw0n a:hover,.paragraph-dKojknH68T a u,.paragraph-dKojknH68T a:hover,.paragraph-dUBxgkE7tO a u,.paragraph-dUBxgkE7tO a:hover,.paragraph-dZm5pCA3l0 a u,.paragraph-dZm5pCA3l0 a:hover,.paragraph-e7_Jz94run a u,.paragraph-e7_Jz94run a:hover,.paragraph-gGbLc7KkF4 a u,.paragraph-gGbLc7KkF4 a:hover,.paragraph-gxTc5y4fR8 a u,.paragraph-gxTc5y4fR8 a:hover,.paragraph-hRivWOY3Y6 a u,.paragraph-hRivWOY3Y6 a:hover,.paragraph-hXYfvK6iKl a u,.paragraph-hXYfvK6iKl a:hover,.paragraph-id85VbnU5o a u,.paragraph-id85VbnU5o a:hover,.paragraph-kFmEo68CHO a u,.paragraph-kFmEo68CHO a:hover,.paragraph-kMr0FdCf6m a u,.paragraph-kMr0FdCf6m a:hover,.paragraph-koCOWm6nld a u,.paragraph-koCOWm6nld a:hover,.paragraph-lepTuUXuNh a u,.paragraph-lepTuUXuNh a:hover,.paragraph-lh3Hu7vp5F a u,.paragraph-lh3Hu7vp5F a:hover,.paragraph-pX2ZjZ44PA a u,.paragraph-pX2ZjZ44PA a:hover,.paragraph-phgBpwMWtG a u,.paragraph-phgBpwMWtG a:hover,.paragraph-r9oejefpDS a u,.paragraph-r9oejefpDS a:hover,.paragraph-rixQIlOEog a u,.paragraph-rixQIlOEog a:hover,.paragraph-sPkFZRxwOi a u,.paragraph-sPkFZRxwOi a:hover,.paragraph-t6zTPAahzh a u,.paragraph-t6zTPAahzh a:hover,.paragraph-t9RQHTlDgr a u,.paragraph-t9RQHTlDgr a:hover,.paragraph-tJxuqEhs9W a u,.paragraph-tJxuqEhs9W a:hover,.paragraph-tKw7u61AHu a u,.paragraph-tKw7u61AHu a:hover,.paragraph-u1b81koA64 a u,.paragraph-u1b81koA64 a:hover,.paragraph-vVrlnmHbkZ a u,.paragraph-vVrlnmHbkZ a:hover,.paragraph-xe9HN-aaED a u,.paragraph-xe9HN-aaED a:hover,.paragraph-yf3nKbi6UZ a u,.paragraph-yf3nKbi6UZ a:hover,.paragraph-yxIDpMQVnK a u,.paragraph-yxIDpMQVnK a:hover,.paragraph-zP3JRLb_6T a u,.paragraph-zP3JRLb_6T a:hover,.sub-heading--0Wfz7yweG a u,.sub-heading--0Wfz7yweG a:hover,.sub-heading--HCzqN8OSl a u,.sub-heading--HCzqN8OSl a:hover,.sub-heading--kCWjhM_-p a u,.sub-heading--kCWjhM_-p a:hover,.sub-heading-3HV33vvHcK a u,.sub-heading-3HV33vvHcK a:hover,.sub-heading-3YlFDH-9YY a u,.sub-heading-3YlFDH-9YY a:hover,.sub-heading-4Ip_0iBotH a u,.sub-heading-4Ip_0iBotH a:hover,.sub-heading-4nu7x0-N_h a u,.sub-heading-4nu7x0-N_h a:hover,.sub-heading-8ux0_f0cmY a u,.sub-heading-8ux0_f0cmY a:hover,.sub-heading-93vSmZiclD a u,.sub-heading-93vSmZiclD a:hover,.sub-heading-9_c7U6TEGM a u,.sub-heading-9_c7U6TEGM a:hover,.sub-heading-AkGlLcCq8C a u,.sub-heading-AkGlLcCq8C a:hover,.sub-heading-BEyluUicBe a u,.sub-heading-BEyluUicBe a:hover,.sub-heading-CPSsjYF9pH a u,.sub-heading-CPSsjYF9pH a:hover,.sub-heading-Ca7Mh_I0dq a u,.sub-heading-Ca7Mh_I0dq a:hover,.sub-heading-CznAmDZC9h a u,.sub-heading-CznAmDZC9h a:hover,.sub-heading-DSf2kux6uj a u,.sub-heading-DSf2kux6uj a:hover,.sub-heading-EomoPmN2_e a u,.sub-heading-EomoPmN2_e a:hover,.sub-heading-FVVh8D9G3M a u,.sub-heading-FVVh8D9G3M a:hover,.sub-heading-FZbW4ftYFz a u,.sub-heading-FZbW4ftYFz a:hover,.sub-heading-G_uKj5geJg a u,.sub-heading-G_uKj5geJg a:hover,.sub-heading-GcoF6xvHoC a u,.sub-heading-GcoF6xvHoC a:hover,.sub-heading-Gpy-SIZp54 a u,.sub-heading-Gpy-SIZp54 a:hover,.sub-heading-Ie6JP0sg_S a u,.sub-heading-Ie6JP0sg_S a:hover,.sub-heading-ItaE4IW413 a u,.sub-heading-ItaE4IW413 a:hover,.sub-heading-K9WQSYfv-z a u,.sub-heading-K9WQSYfv-z a:hover,.sub-heading-LgL5CdZHZ1 a u,.sub-heading-LgL5CdZHZ1 a:hover,.sub-heading-LlqGzljPYr a u,.sub-heading-LlqGzljPYr a:hover,.sub-heading-ME_G3AOWS4 a u,.sub-heading-ME_G3AOWS4 a:hover,.sub-heading-QFGuL_DcuK a u,.sub-heading-QFGuL_DcuK a:hover,.sub-heading-RaYk9nFP_n a u,.sub-heading-RaYk9nFP_n a:hover,.sub-heading-RqiA9xF_i7 a u,.sub-heading-RqiA9xF_i7 a:hover,.sub-heading-S7qiVAX1qU a u,.sub-heading-S7qiVAX1qU a:hover,.sub-heading-SnOeR9XLND a u,.sub-heading-SnOeR9XLND a:hover,.sub-heading-T1biCJ5D-g a u,.sub-heading-T1biCJ5D-g a:hover,.sub-heading-UvAgDkge1E a u,.sub-heading-UvAgDkge1E a:hover,.sub-heading-VZfKufRwAo a u,.sub-heading-VZfKufRwAo a:hover,.sub-heading-WEH-tuxYZS a u,.sub-heading-WEH-tuxYZS a:hover,.sub-heading-WpuH1yb2dA a u,.sub-heading-WpuH1yb2dA a:hover,.sub-heading-YgPyfOmE5Z a u,.sub-heading-YgPyfOmE5Z a:hover,.sub-heading-ZeeJaB1GkS a u,.sub-heading-ZeeJaB1GkS a:hover,.sub-heading-_F7fq4Crrg a u,.sub-heading-_F7fq4Crrg a:hover,.sub-heading-bJTnLuUU6D a u,.sub-heading-bJTnLuUU6D a:hover,.sub-heading-bLU3UQb9Zi a u,.sub-heading-bLU3UQb9Zi a:hover,.sub-heading-bdOY_Wzviu a u,.sub-heading-bdOY_Wzviu a:hover,.sub-heading-bxWsuz23xa a u,.sub-heading-bxWsuz23xa a:hover,.sub-heading-ceUBsq0kuj a u,.sub-heading-ceUBsq0kuj a:hover,.sub-heading-dK9TIFstoS a u,.sub-heading-dK9TIFstoS a:hover,.sub-heading-dXhd_Pt3Ef a u,.sub-heading-dXhd_Pt3Ef a:hover,.sub-heading-dj_hT0pl6A a u,.sub-heading-dj_hT0pl6A a:hover,.sub-heading-dwtEAsmPGN a u,.sub-heading-dwtEAsmPGN a:hover,.sub-heading-f45nCryqr0 a u,.sub-heading-f45nCryqr0 a:hover,.sub-heading-hqL5WiSwav a u,.sub-heading-hqL5WiSwav a:hover,.sub-heading-ipOgPBQQgu a u,.sub-heading-ipOgPBQQgu a:hover,.sub-heading-jNzPlB9vbm a u,.sub-heading-jNzPlB9vbm a:hover,.sub-heading-l5Tul3SYB8 a u,.sub-heading-l5Tul3SYB8 a:hover,.sub-heading-mDjEEXBqNA a u,.sub-heading-mDjEEXBqNA a:hover,.sub-heading-pSNIku96t9 a u,.sub-heading-pSNIku96t9 a:hover,.sub-heading-szNTcYEybj a u,.sub-heading-szNTcYEybj a:hover,.sub-heading-tjEV3jdfXf a u,.sub-heading-tjEV3jdfXf a:hover,.sub-heading-vFeaZeoNAp a u,.sub-heading-vFeaZeoNAp a:hover,.sub-heading-wEYEICtBom a u,.sub-heading-wEYEICtBom a:hover,.sub-heading-wTHPsVslDr a u,.sub-heading-wTHPsVslDr a:hover,.sub-heading-wuMQ4HlRJH a u,.sub-heading-wuMQ4HlRJH a:hover,.sub-heading-xc5tqaes3e a u,.sub-heading-xc5tqaes3e a:hover,.sub-heading-xgtdv2MejO a u,.sub-heading-xgtdv2MejO a:hover,.sub-heading-zKFW_sRIcJ a u,.sub-heading-zKFW_sRIcJ a:hover,.sub-heading-zSqzZqRNZ5 a u,.sub-heading-zSqzZqRNZ5 a:hover,.sub-heading-zgAUEiWTty a u,.sub-heading-zgAUEiWTty a:hover{text-decoration:underline}.heading-M9pQSKd1GF a s,.paragraph-0ARgTVBi7B a s,.paragraph-13eT01scuR a s,.paragraph-3LKUiLrQ26 a s,.paragraph-3gxdR4PXcj a s,.paragraph-4HAX9Ca-EU a s,.paragraph-5SPJVqr9eu a s,.paragraph-6CKq1pBHHQ a s,.paragraph-6oy5acXZcM a s,.paragraph-7oxcxXymqD a s,.paragraph-Co8Skt1R_M a s,.paragraph-ED8lURGOhn a s,.paragraph-EhP-Pqjb6A a s,.paragraph-GCGeBmgM8d a s,.paragraph-GI4XtUk08h a s,.paragraph-HNpWOU0yiZ a s,.paragraph-HgG_vA5ANo a s,.paragraph-J0uGvb7QgA a s,.paragraph-JXWmkCoDvo a s,.paragraph-NmI3r-dZjg a s,.paragraph-Ug1hGViFi0 a s,.paragraph-WACCbQ0V0r a s,.paragraph-ZidcqoUw0n a s,.paragraph-dKojknH68T a s,.paragraph-dUBxgkE7tO a s,.paragraph-dZm5pCA3l0 a s,.paragraph-e7_Jz94run a s,.paragraph-gGbLc7KkF4 a s,.paragraph-gxTc5y4fR8 a s,.paragraph-hRivWOY3Y6 a s,.paragraph-hXYfvK6iKl a s,.paragraph-id85VbnU5o a s,.paragraph-kFmEo68CHO a s,.paragraph-kMr0FdCf6m a s,.paragraph-koCOWm6nld a s,.paragraph-lepTuUXuNh a s,.paragraph-lh3Hu7vp5F a s,.paragraph-pX2ZjZ44PA a s,.paragraph-phgBpwMWtG a s,.paragraph-r9oejefpDS a s,.paragraph-rixQIlOEog a s,.paragraph-sPkFZRxwOi a s,.paragraph-t6zTPAahzh a s,.paragraph-t9RQHTlDgr a s,.paragraph-tJxuqEhs9W a s,.paragraph-tKw7u61AHu a s,.paragraph-u1b81koA64 a s,.paragraph-vVrlnmHbkZ a s,.paragraph-xe9HN-aaED a s,.paragraph-yf3nKbi6UZ a s,.paragraph-yxIDpMQVnK a s,.paragraph-zP3JRLb_6T a s,.sub-heading--0Wfz7yweG a s,.sub-heading--HCzqN8OSl a s,.sub-heading--kCWjhM_-p a s,.sub-heading-3HV33vvHcK a s,.sub-heading-3YlFDH-9YY a s,.sub-heading-4Ip_0iBotH a s,.sub-heading-4nu7x0-N_h a s,.sub-heading-8ux0_f0cmY a s,.sub-heading-93vSmZiclD a s,.sub-heading-9_c7U6TEGM a s,.sub-heading-AkGlLcCq8C a s,.sub-heading-BEyluUicBe a s,.sub-heading-CPSsjYF9pH a s,.sub-heading-Ca7Mh_I0dq a s,.sub-heading-CznAmDZC9h a s,.sub-heading-DSf2kux6uj a s,.sub-heading-EomoPmN2_e a s,.sub-heading-FVVh8D9G3M a s,.sub-heading-FZbW4ftYFz a s,.sub-heading-G_uKj5geJg a s,.sub-heading-GcoF6xvHoC a s,.sub-heading-Gpy-SIZp54 a s,.sub-heading-Ie6JP0sg_S a s,.sub-heading-ItaE4IW413 a s,.sub-heading-K9WQSYfv-z a s,.sub-heading-LgL5CdZHZ1 a s,.sub-heading-LlqGzljPYr a s,.sub-heading-ME_G3AOWS4 a s,.sub-heading-QFGuL_DcuK a s,.sub-heading-RaYk9nFP_n a s,.sub-heading-RqiA9xF_i7 a s,.sub-heading-S7qiVAX1qU a s,.sub-heading-SnOeR9XLND a s,.sub-heading-T1biCJ5D-g a s,.sub-heading-UvAgDkge1E a s,.sub-heading-VZfKufRwAo a s,.sub-heading-WEH-tuxYZS a s,.sub-heading-WpuH1yb2dA a s,.sub-heading-YgPyfOmE5Z a s,.sub-heading-ZeeJaB1GkS a s,.sub-heading-_F7fq4Crrg a s,.sub-heading-bJTnLuUU6D a s,.sub-heading-bLU3UQb9Zi a s,.sub-heading-bdOY_Wzviu a s,.sub-heading-bxWsuz23xa a s,.sub-heading-ceUBsq0kuj a s,.sub-heading-dK9TIFstoS a s,.sub-heading-dXhd_Pt3Ef a s,.sub-heading-dj_hT0pl6A a s,.sub-heading-dwtEAsmPGN a s,.sub-heading-f45nCryqr0 a s,.sub-heading-hqL5WiSwav a s,.sub-heading-ipOgPBQQgu a s,.sub-heading-jNzPlB9vbm a s,.sub-heading-l5Tul3SYB8 a s,.sub-heading-mDjEEXBqNA a s,.sub-heading-pSNIku96t9 a s,.sub-heading-szNTcYEybj a s,.sub-heading-tjEV3jdfXf a s,.sub-heading-vFeaZeoNAp a s,.sub-heading-wEYEICtBom a s,.sub-heading-wTHPsVslDr a s,.sub-heading-wuMQ4HlRJH a s,.sub-heading-xc5tqaes3e a s,.sub-heading-xgtdv2MejO a s,.sub-heading-zKFW_sRIcJ a s,.sub-heading-zSqzZqRNZ5 a s,.sub-heading-zgAUEiWTty a s{text-decoration:line-through}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-FZbW4ftYFz h1,.sub-heading-FZbW4ftYFz h2,.sub-heading-FZbW4ftYFz h3,.sub-heading-FZbW4ftYFz h4,.sub-heading-FZbW4ftYFz h5,.sub-heading-FZbW4ftYFz h6,.sub-heading-FZbW4ftYFz ul li,.sub-heading-FZbW4ftYFz.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-FZbW4ftYFz h1,.sub-heading-FZbW4ftYFz h2,.sub-heading-FZbW4ftYFz h3,.sub-heading-FZbW4ftYFz h4,.sub-heading-FZbW4ftYFz h5,.sub-heading-FZbW4ftYFz h6,.sub-heading-FZbW4ftYFz ul li,.sub-heading-FZbW4ftYFz.text-output{font-size:18px!important;font-weight:400}}.sub-heading-FZbW4ftYFz.text-output h1:first-child:before,.sub-heading-FZbW4ftYFz.text-output h2:first-child:before,.sub-heading-FZbW4ftYFz.text-output h3:first-child:before,.sub-heading-FZbW4ftYFz.text-output h4:first-child:before,.sub-heading-FZbW4ftYFz.text-output h5:first-child:before,.sub-heading-FZbW4ftYFz.text-output h6:first-child:before,.sub-heading-FZbW4ftYFz.text-output p:first-child:before,.sub-heading-dK9TIFstoS.text-output h1:first-child:before,.sub-heading-dK9TIFstoS.text-output h2:first-child:before,.sub-heading-dK9TIFstoS.text-output h3:first-child:before,.sub-heading-dK9TIFstoS.text-output h4:first-child:before,.sub-heading-dK9TIFstoS.text-output h5:first-child:before,.sub-heading-dK9TIFstoS.text-output h6:first-child:before,.sub-heading-dK9TIFstoS.text-output p:first-child:before{color:var(--text-color);content:'\';
72 − font-family: '';margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-dK9TIFstoS h1,.sub-heading-dK9TIFstoS h2,.sub-heading-dK9TIFstoS h3,.sub-heading-dK9TIFstoS h4,.sub-heading-dK9TIFstoS h5,.sub-heading-dK9TIFstoS h6,.sub-heading-dK9TIFstoS ul li,.sub-heading-dK9TIFstoS.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-dK9TIFstoS h1,.sub-heading-dK9TIFstoS h2,.sub-heading-dK9TIFstoS h3,.sub-heading-dK9TIFstoS h4,.sub-heading-dK9TIFstoS h5,.sub-heading-dK9TIFstoS h6,.sub-heading-dK9TIFstoS ul li,.sub-heading-dK9TIFstoS.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-BIkNjvRLaq{animation:none!important}}#col-d5P6cDv7cw>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-d5P6cDv7cw{animation:none!important}}.--mobile #col-d5P6cDv7cw{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-hRivWOY3Y6 h1,.paragraph-hRivWOY3Y6 h2,.paragraph-hRivWOY3Y6 h3,.paragraph-hRivWOY3Y6 h4,.paragraph-hRivWOY3Y6 h5,.paragraph-hRivWOY3Y6 h6,.paragraph-hRivWOY3Y6 ul li,.paragraph-hRivWOY3Y6.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-hRivWOY3Y6 h1,.paragraph-hRivWOY3Y6 h2,.paragraph-hRivWOY3Y6 h3,.paragraph-hRivWOY3Y6 h4,.paragraph-hRivWOY3Y6 h5,.paragraph-hRivWOY3Y6 h6,.paragraph-hRivWOY3Y6 ul li,.paragraph-hRivWOY3Y6.text-output{font-size:16px!important;font-weight:400}}.paragraph-hRivWOY3Y6.text-output h1:first-child:before,.paragraph-hRivWOY3Y6.text-output h2:first-child:before,.paragraph-hRivWOY3Y6.text-output h3:first-child:before,.paragraph-hRivWOY3Y6.text-output h4:first-child:before,.paragraph-hRivWOY3Y6.text-output h5:first-child:before,.paragraph-hRivWOY3Y6.text-output h6:first-child:before,.paragraph-hRivWOY3Y6.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-GI4XtUk08h h1,.paragraph-GI4XtUk08h h2,.paragraph-GI4XtUk08h h3,.paragraph-GI4XtUk08h h4,.paragraph-GI4XtUk08h h5,.paragraph-GI4XtUk08h h6,.paragraph-GI4XtUk08h ul li,.paragraph-GI4XtUk08h.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-GI4XtUk08h h1,.paragraph-GI4XtUk08h h2,.paragraph-GI4XtUk08h h3,.paragraph-GI4XtUk08h h4,.paragraph-GI4XtUk08h h5,.paragraph-GI4XtUk08h h6,.paragraph-GI4XtUk08h ul li,.paragraph-GI4XtUk08h.text-output{font-size:16px!important;font-weight:400}}.paragraph-GI4XtUk08h.text-output h1:first-child:before,.paragraph-GI4XtUk08h.text-output h2:first-child:before,.paragraph-GI4XtUk08h.text-output h3:first-child:before,.paragraph-GI4XtUk08h.text-output h4:first-child:before,.paragraph-GI4XtUk08h.text-output h5:first-child:before,.paragraph-GI4XtUk08h.text-output h6:first-child:before,.paragraph-GI4XtUk08h.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-pX2ZjZ44PA h1,.paragraph-pX2ZjZ44PA h2,.paragraph-pX2ZjZ44PA h3,.paragraph-pX2ZjZ44PA h4,.paragraph-pX2ZjZ44PA h5,.paragraph-pX2ZjZ44PA h6,.paragraph-pX2ZjZ44PA ul li,.paragraph-pX2ZjZ44PA.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-pX2ZjZ44PA h1,.paragraph-pX2ZjZ44PA h2,.paragraph-pX2ZjZ44PA h3,.paragraph-pX2ZjZ44PA h4,.paragraph-pX2ZjZ44PA h5,.paragraph-pX2ZjZ44PA h6,.paragraph-pX2ZjZ44PA ul li,.paragraph-pX2ZjZ44PA.text-output{font-size:16px!important;font-weight:400}}.paragraph-pX2ZjZ44PA.text-output h1:first-child:before,.paragraph-pX2ZjZ44PA.text-output h2:first-child:before,.paragraph-pX2ZjZ44PA.text-output h3:first-child:before,.paragraph-pX2ZjZ44PA.text-output h4:first-child:before,.paragraph-pX2ZjZ44PA.text-output h5:first-child:before,.paragraph-pX2ZjZ44PA.text-output h6:first-child:before,.paragraph-pX2ZjZ44PA.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading--kCWjhM_-p h1,.sub-heading--kCWjhM_-p h2,.sub-heading--kCWjhM_-p h3,.sub-heading--kCWjhM_-p h4,.sub-heading--kCWjhM_-p h5,.sub-heading--kCWjhM_-p h6,.sub-heading--kCWjhM_-p ul li,.sub-heading--kCWjhM_-p.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading--kCWjhM_-p h1,.sub-heading--kCWjhM_-p h2,.sub-heading--kCWjhM_-p h3,.sub-heading--kCWjhM_-p h4,.sub-heading--kCWjhM_-p h5,.sub-heading--kCWjhM_-p h6,.sub-heading--kCWjhM_-p ul li,.sub-heading--kCWjhM_-p.text-output{font-size:18px!important;font-weight:400}}.sub-heading--HCzqN8OSl.text-output h1:first-child:before,.sub-heading--HCzqN8OSl.text-output h2:first-child:before,.sub-heading--HCzqN8OSl.text-output h3:first-child:before,.sub-heading--HCzqN8OSl.text-output h4:first-child:before,.sub-heading--HCzqN8OSl.text-output h5:first-child:before,.sub-heading--HCzqN8OSl.text-output h6:first-child:before,.sub-heading--HCzqN8OSl.text-output p:first-child:before,.sub-heading--kCWjhM_-p.text-output h1:first-child:before,.sub-heading--kCWjhM_-p.text-output h2:first-child:before,.sub-heading--kCWjhM_-p.text-output h3:first-child:before,.sub-heading--kCWjhM_-p.text-output h4:first-child:before,.sub-heading--kCWjhM_-p.text-output h5:first-child:before,.sub-heading--kCWjhM_-p.text-output h6:first-child:before,.sub-heading--kCWjhM_-p.text-output p:first-child:before,.sub-heading-BEyluUicBe.text-output h1:first-child:before,.sub-heading-BEyluUicBe.text-output h2:first-child:before,.sub-heading-BEyluUicBe.text-output h3:first-child:before,.sub-heading-BEyluUicBe.text-output h4:first-child:before,.sub-heading-BEyluUicBe.text-output h5:first-child:before,.sub-heading-BEyluUicBe.text-output h6:first-child:before,.sub-heading-BEyluUicBe.text-output p:first-child:before,.sub-heading-Ca7Mh_I0dq.text-output h1:first-child:before,.sub-heading-Ca7Mh_I0dq.text-output h2:first-child:before,.sub-heading-Ca7Mh_I0dq.text-output h3:first-child:before,.sub-heading-Ca7Mh_I0dq.text-output h4:first-child:before,.sub-heading-Ca7Mh_I0dq.text-output h5:first-child:before,.sub-heading-Ca7Mh_I0dq.text-output h6:first-child:before,.sub-heading-Ca7Mh_I0dq.text-output p:first-child:before{color:var(--text-color);content:'\';
73 − font-family: '';margin-right:5px;font-weight:700}#image-slider-shO7zM36bG .carousel{height:300px;width:100%}#image-slider-shO7zM36bG .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-0DcKAWgheV .carousel__pagination-container .carousel__pagination,#image-slider-0_dT61oRor .carousel__pagination-container .carousel__pagination,#image-slider-1_8JMdOs2R .carousel__pagination-container .carousel__pagination,#image-slider-9ftVM9OWVJ .carousel__pagination-container .carousel__pagination,#image-slider-AYfgPodJLS .carousel__pagination-container .carousel__pagination,#image-slider-CeKWjGzG_E .carousel__pagination-container .carousel__pagination,#image-slider-K91ox7l21J .carousel__pagination-container .carousel__pagination,#image-slider-LwgINnCEal .carousel__pagination-container .carousel__pagination,#image-slider-U_M5ypvwFo .carousel__pagination-container .carousel__pagination,#image-slider-U_p23De5wW .carousel__pagination-container .carousel__pagination,#image-slider-ZJsr3B4gSR .carousel__pagination-container .carousel__pagination,#image-slider-achszaW5L1 .carousel__pagination-container .carousel__pagination,#image-slider-eRqZbtNmeA .carousel__pagination-container .carousel__pagination,#image-slider-ezf0k7Duh5 .carousel__pagination-container .carousel__pagination,#image-slider-lCY3OTh4iK .carousel__pagination-container .carousel__pagination,#image-slider-riO8-nRuP5 .carousel__pagination-container .carousel__pagination,#image-slider-shO7zM36bG .carousel__pagination-container .carousel__pagination{height:10px;width:10px;border-radius:999px;transition:all 300ms}#image-slider-shO7zM36bG .carousel__pagination-active{background:#fff}#image-slider-shO7zM36bG .carousel__pagination-inactive{background:#000}#image-slider-shO7zM36bG .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}#image-slider-0DcKAWgheV .carousel__arrow svg,#image-slider-0_dT61oRor .carousel__arrow svg,#image-slider-1_8JMdOs2R .carousel__arrow svg,#image-slider-9ftVM9OWVJ .carousel__arrow svg,#image-slider-AYfgPodJLS .carousel__arrow svg,#image-slider-CeKWjGzG_E .carousel__arrow svg,#image-slider-K91ox7l21J .carousel__arrow svg,#image-slider-LwgINnCEal .carousel__arrow svg,#image-slider-U_M5ypvwFo .carousel__arrow svg,#image-slider-U_p23De5wW .carousel__arrow svg,#image-slider-ZJsr3B4gSR .carousel__arrow svg,#image-slider-achszaW5L1 .carousel__arrow svg,#image-slider-eRqZbtNmeA .carousel__arrow svg,#image-slider-ezf0k7Duh5 .carousel__arrow svg,#image-slider-lCY3OTh4iK .carousel__arrow svg,#image-slider-riO8-nRuP5 .carousel__arrow svg,#image-slider-shO7zM36bG .carousel__arrow svg{color:#fff;width:40px;height:40px;cursor:pointer;z-index:12}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-BEyluUicBe h1,.sub-heading-BEyluUicBe h2,.sub-heading-BEyluUicBe h3,.sub-heading-BEyluUicBe h4,.sub-heading-BEyluUicBe h5,.sub-heading-BEyluUicBe h6,.sub-heading-BEyluUicBe ul li,.sub-heading-BEyluUicBe.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-BEyluUicBe h1,.sub-heading-BEyluUicBe h2,.sub-heading-BEyluUicBe h3,.sub-heading-BEyluUicBe h4,.sub-heading-BEyluUicBe h5,.sub-heading-BEyluUicBe h6,.sub-heading-BEyluUicBe ul li,.sub-heading-BEyluUicBe.text-output{font-size:18px!important;font-weight:400}}#col-IeMQJtd4Vs>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-IeMQJtd4Vs{animation:none!important}}.--mobile #col-IeMQJtd4Vs,.--mobile #row-M4W9BYnUJ5{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading--HCzqN8OSl h1,.sub-heading--HCzqN8OSl h2,.sub-heading--HCzqN8OSl h3,.sub-heading--HCzqN8OSl h4,.sub-heading--HCzqN8OSl h5,.sub-heading--HCzqN8OSl h6,.sub-heading--HCzqN8OSl ul li,.sub-heading--HCzqN8OSl.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading--HCzqN8OSl h1,.sub-heading--HCzqN8OSl h2,.sub-heading--HCzqN8OSl h3,.sub-heading--HCzqN8OSl h4,.sub-heading--HCzqN8OSl h5,.sub-heading--HCzqN8OSl h6,.sub-heading--HCzqN8OSl ul li,.sub-heading--HCzqN8OSl.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-Ca7Mh_I0dq h1,.sub-heading-Ca7Mh_I0dq h2,.sub-heading-Ca7Mh_I0dq h3,.sub-heading-Ca7Mh_I0dq h4,.sub-heading-Ca7Mh_I0dq h5,.sub-heading-Ca7Mh_I0dq h6,.sub-heading-Ca7Mh_I0dq ul li,.sub-heading-Ca7Mh_I0dq.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-Ca7Mh_I0dq h1,.sub-heading-Ca7Mh_I0dq h2,.sub-heading-Ca7Mh_I0dq h3,.sub-heading-Ca7Mh_I0dq h4,.sub-heading-Ca7Mh_I0dq h5,.sub-heading-Ca7Mh_I0dq h6,.sub-heading-Ca7Mh_I0dq ul li,.sub-heading-Ca7Mh_I0dq.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-M4W9BYnUJ5{animation:none!important}}#col-o_l0aakC0u>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-o_l0aakC0u{animation:none!important}}.--mobile #col-o_l0aakC0u{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-7oxcxXymqD h1,.paragraph-7oxcxXymqD h2,.paragraph-7oxcxXymqD h3,.paragraph-7oxcxXymqD h4,.paragraph-7oxcxXymqD h5,.paragraph-7oxcxXymqD h6,.paragraph-7oxcxXymqD ul li,.paragraph-7oxcxXymqD.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-7oxcxXymqD h1,.paragraph-7oxcxXymqD h2,.paragraph-7oxcxXymqD h3,.paragraph-7oxcxXymqD h4,.paragraph-7oxcxXymqD h5,.paragraph-7oxcxXymqD h6,.paragraph-7oxcxXymqD ul li,.paragraph-7oxcxXymqD.text-output{font-size:16px!important;font-weight:400}}.paragraph-7oxcxXymqD.text-output h1:first-child:before,.paragraph-7oxcxXymqD.text-output h2:first-child:before,.paragraph-7oxcxXymqD.text-output h3:first-child:before,.paragraph-7oxcxXymqD.text-output h4:first-child:before,.paragraph-7oxcxXymqD.text-output h5:first-child:before,.paragraph-7oxcxXymqD.text-output h6:first-child:before,.paragraph-7oxcxXymqD.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-rixQIlOEog h1,.paragraph-rixQIlOEog h2,.paragraph-rixQIlOEog h3,.paragraph-rixQIlOEog h4,.paragraph-rixQIlOEog h5,.paragraph-rixQIlOEog h6,.paragraph-rixQIlOEog ul li,.paragraph-rixQIlOEog.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-rixQIlOEog h1,.paragraph-rixQIlOEog h2,.paragraph-rixQIlOEog h3,.paragraph-rixQIlOEog h4,.paragraph-rixQIlOEog h5,.paragraph-rixQIlOEog h6,.paragraph-rixQIlOEog ul li,.paragraph-rixQIlOEog.text-output{font-size:16px!important;font-weight:400}}.paragraph-rixQIlOEog.text-output h1:first-child:before,.paragraph-rixQIlOEog.text-output h2:first-child:before,.paragraph-rixQIlOEog.text-output h3:first-child:before,.paragraph-rixQIlOEog.text-output h4:first-child:before,.paragraph-rixQIlOEog.text-output h5:first-child:before,.paragraph-rixQIlOEog.text-output h6:first-child:before,.paragraph-rixQIlOEog.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-yf3nKbi6UZ h1,.paragraph-yf3nKbi6UZ h2,.paragraph-yf3nKbi6UZ h3,.paragraph-yf3nKbi6UZ h4,.paragraph-yf3nKbi6UZ h5,.paragraph-yf3nKbi6UZ h6,.paragraph-yf3nKbi6UZ ul li,.paragraph-yf3nKbi6UZ.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-yf3nKbi6UZ h1,.paragraph-yf3nKbi6UZ h2,.paragraph-yf3nKbi6UZ h3,.paragraph-yf3nKbi6UZ h4,.paragraph-yf3nKbi6UZ h5,.paragraph-yf3nKbi6UZ h6,.paragraph-yf3nKbi6UZ ul li,.paragraph-yf3nKbi6UZ.text-output{font-size:16px!important;font-weight:400}}.paragraph-yf3nKbi6UZ.text-output h1:first-child:before,.paragraph-yf3nKbi6UZ.text-output h2:first-child:before,.paragraph-yf3nKbi6UZ.text-output h3:first-child:before,.paragraph-yf3nKbi6UZ.text-output h4:first-child:before,.paragraph-yf3nKbi6UZ.text-output h5:first-child:before,.paragraph-yf3nKbi6UZ.text-output h6:first-child:before,.paragraph-yf3nKbi6UZ.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-T1biCJ5D-g h1,.sub-heading-T1biCJ5D-g h2,.sub-heading-T1biCJ5D-g h3,.sub-heading-T1biCJ5D-g h4,.sub-heading-T1biCJ5D-g h5,.sub-heading-T1biCJ5D-g h6,.sub-heading-T1biCJ5D-g ul li,.sub-heading-T1biCJ5D-g.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-T1biCJ5D-g h1,.sub-heading-T1biCJ5D-g h2,.sub-heading-T1biCJ5D-g h3,.sub-heading-T1biCJ5D-g h4,.sub-heading-T1biCJ5D-g h5,.sub-heading-T1biCJ5D-g h6,.sub-heading-T1biCJ5D-g ul li,.sub-heading-T1biCJ5D-g.text-output{font-size:18px!important;font-weight:400}}.sub-heading-3HV33vvHcK.text-output h1:first-child:before,.sub-heading-3HV33vvHcK.text-output h2:first-child:before,.sub-heading-3HV33vvHcK.text-output h3:first-child:before,.sub-heading-3HV33vvHcK.text-output h4:first-child:before,.sub-heading-3HV33vvHcK.text-output h5:first-child:before,.sub-heading-3HV33vvHcK.text-output h6:first-child:before,.sub-heading-3HV33vvHcK.text-output p:first-child:before,.sub-heading-LgL5CdZHZ1.text-output h1:first-child:before,.sub-heading-LgL5CdZHZ1.text-output h2:first-child:before,.sub-heading-LgL5CdZHZ1.text-output h3:first-child:before,.sub-heading-LgL5CdZHZ1.text-output h4:first-child:before,.sub-heading-LgL5CdZHZ1.text-output h5:first-child:before,.sub-heading-LgL5CdZHZ1.text-output h6:first-child:before,.sub-heading-LgL5CdZHZ1.text-output p:first-child:before,.sub-heading-T1biCJ5D-g.text-output h1:first-child:before,.sub-heading-T1biCJ5D-g.text-output h2:first-child:before,.sub-heading-T1biCJ5D-g.text-output h3:first-child:before,.sub-heading-T1biCJ5D-g.text-output h4:first-child:before,.sub-heading-T1biCJ5D-g.text-output h5:first-child:before,.sub-heading-T1biCJ5D-g.text-output h6:first-child:before,.sub-heading-T1biCJ5D-g.text-output p:first-child:before,.sub-heading-f45nCryqr0.text-output h1:first-child:before,.sub-heading-f45nCryqr0.text-output h2:first-child:before,.sub-heading-f45nCryqr0.text-output h3:first-child:before,.sub-heading-f45nCryqr0.text-output h4:first-child:before,.sub-heading-f45nCryqr0.text-output h5:first-child:before,.sub-heading-f45nCryqr0.text-output h6:first-child:before,.sub-heading-f45nCryqr0.text-output p:first-child:before{color:var(--text-color);content:'\';
74 − font-family: '';margin-right:5px;font-weight:700}#image-slider-ezf0k7Duh5 .carousel{height:300px;width:100%}#image-slider-ezf0k7Duh5 .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-ezf0k7Duh5 .carousel__pagination-active{background:#fff}#image-slider-ezf0k7Duh5 .carousel__pagination-inactive{background:#000}#image-slider-ezf0k7Duh5 .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-LgL5CdZHZ1 h1,.sub-heading-LgL5CdZHZ1 h2,.sub-heading-LgL5CdZHZ1 h3,.sub-heading-LgL5CdZHZ1 h4,.sub-heading-LgL5CdZHZ1 h5,.sub-heading-LgL5CdZHZ1 h6,.sub-heading-LgL5CdZHZ1 ul li,.sub-heading-LgL5CdZHZ1.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-LgL5CdZHZ1 h1,.sub-heading-LgL5CdZHZ1 h2,.sub-heading-LgL5CdZHZ1 h3,.sub-heading-LgL5CdZHZ1 h4,.sub-heading-LgL5CdZHZ1 h5,.sub-heading-LgL5CdZHZ1 h6,.sub-heading-LgL5CdZHZ1 ul li,.sub-heading-LgL5CdZHZ1.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-hYTTIOKBfG{animation:none!important}}.--mobile #row-hYTTIOKBfG{animation:none!important}#col-M012EiU4jM>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-M012EiU4jM{animation:none!important}}.--mobile #col-M012EiU4jM,.--mobile #row-ZwxJLUTKEd{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-f45nCryqr0 h1,.sub-heading-f45nCryqr0 h2,.sub-heading-f45nCryqr0 h3,.sub-heading-f45nCryqr0 h4,.sub-heading-f45nCryqr0 h5,.sub-heading-f45nCryqr0 h6,.sub-heading-f45nCryqr0 ul li,.sub-heading-f45nCryqr0.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-f45nCryqr0 h1,.sub-heading-f45nCryqr0 h2,.sub-heading-f45nCryqr0 h3,.sub-heading-f45nCryqr0 h4,.sub-heading-f45nCryqr0 h5,.sub-heading-f45nCryqr0 h6,.sub-heading-f45nCryqr0 ul li,.sub-heading-f45nCryqr0.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-3HV33vvHcK h1,.sub-heading-3HV33vvHcK h2,.sub-heading-3HV33vvHcK h3,.sub-heading-3HV33vvHcK h4,.sub-heading-3HV33vvHcK h5,.sub-heading-3HV33vvHcK h6,.sub-heading-3HV33vvHcK ul li,.sub-heading-3HV33vvHcK.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-3HV33vvHcK h1,.sub-heading-3HV33vvHcK h2,.sub-heading-3HV33vvHcK h3,.sub-heading-3HV33vvHcK h4,.sub-heading-3HV33vvHcK h5,.sub-heading-3HV33vvHcK h6,.sub-heading-3HV33vvHcK ul li,.sub-heading-3HV33vvHcK.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-ZwxJLUTKEd{animation:none!important}}#col-h-xrGyW5sh>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-h-xrGyW5sh{animation:none!important}}.--mobile #col-h-xrGyW5sh{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-t9RQHTlDgr h1,.paragraph-t9RQHTlDgr h2,.paragraph-t9RQHTlDgr h3,.paragraph-t9RQHTlDgr h4,.paragraph-t9RQHTlDgr h5,.paragraph-t9RQHTlDgr h6,.paragraph-t9RQHTlDgr ul li,.paragraph-t9RQHTlDgr.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-t9RQHTlDgr h1,.paragraph-t9RQHTlDgr h2,.paragraph-t9RQHTlDgr h3,.paragraph-t9RQHTlDgr h4,.paragraph-t9RQHTlDgr h5,.paragraph-t9RQHTlDgr h6,.paragraph-t9RQHTlDgr ul li,.paragraph-t9RQHTlDgr.text-output{font-size:16px!important;font-weight:400}}.paragraph-t9RQHTlDgr.text-output h1:first-child:before,.paragraph-t9RQHTlDgr.text-output h2:first-child:before,.paragraph-t9RQHTlDgr.text-output h3:first-child:before,.paragraph-t9RQHTlDgr.text-output h4:first-child:before,.paragraph-t9RQHTlDgr.text-output h5:first-child:before,.paragraph-t9RQHTlDgr.text-output h6:first-child:before,.paragraph-t9RQHTlDgr.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-phgBpwMWtG h1,.paragraph-phgBpwMWtG h2,.paragraph-phgBpwMWtG h3,.paragraph-phgBpwMWtG h4,.paragraph-phgBpwMWtG h5,.paragraph-phgBpwMWtG h6,.paragraph-phgBpwMWtG ul li,.paragraph-phgBpwMWtG.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-phgBpwMWtG h1,.paragraph-phgBpwMWtG h2,.paragraph-phgBpwMWtG h3,.paragraph-phgBpwMWtG h4,.paragraph-phgBpwMWtG h5,.paragraph-phgBpwMWtG h6,.paragraph-phgBpwMWtG ul li,.paragraph-phgBpwMWtG.text-output{font-size:16px!important;font-weight:400}}.paragraph-phgBpwMWtG.text-output h1:first-child:before,.paragraph-phgBpwMWtG.text-output h2:first-child:before,.paragraph-phgBpwMWtG.text-output h3:first-child:before,.paragraph-phgBpwMWtG.text-output h4:first-child:before,.paragraph-phgBpwMWtG.text-output h5:first-child:before,.paragraph-phgBpwMWtG.text-output h6:first-child:before,.paragraph-phgBpwMWtG.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-GCGeBmgM8d h1,.paragraph-GCGeBmgM8d h2,.paragraph-GCGeBmgM8d h3,.paragraph-GCGeBmgM8d h4,.paragraph-GCGeBmgM8d h5,.paragraph-GCGeBmgM8d h6,.paragraph-GCGeBmgM8d ul li,.paragraph-GCGeBmgM8d.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-GCGeBmgM8d h1,.paragraph-GCGeBmgM8d h2,.paragraph-GCGeBmgM8d h3,.paragraph-GCGeBmgM8d h4,.paragraph-GCGeBmgM8d h5,.paragraph-GCGeBmgM8d h6,.paragraph-GCGeBmgM8d ul li,.paragraph-GCGeBmgM8d.text-output{font-size:16px!important;font-weight:400}}.paragraph-GCGeBmgM8d.text-output h1:first-child:before,.paragraph-GCGeBmgM8d.text-output h2:first-child:before,.paragraph-GCGeBmgM8d.text-output h3:first-child:before,.paragraph-GCGeBmgM8d.text-output h4:first-child:before,.paragraph-GCGeBmgM8d.text-output h5:first-child:before,.paragraph-GCGeBmgM8d.text-output h6:first-child:before,.paragraph-GCGeBmgM8d.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-zSqzZqRNZ5 h1,.sub-heading-zSqzZqRNZ5 h2,.sub-heading-zSqzZqRNZ5 h3,.sub-heading-zSqzZqRNZ5 h4,.sub-heading-zSqzZqRNZ5 h5,.sub-heading-zSqzZqRNZ5 h6,.sub-heading-zSqzZqRNZ5 ul li,.sub-heading-zSqzZqRNZ5.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-zSqzZqRNZ5 h1,.sub-heading-zSqzZqRNZ5 h2,.sub-heading-zSqzZqRNZ5 h3,.sub-heading-zSqzZqRNZ5 h4,.sub-heading-zSqzZqRNZ5 h5,.sub-heading-zSqzZqRNZ5 h6,.sub-heading-zSqzZqRNZ5 ul li,.sub-heading-zSqzZqRNZ5.text-output{font-size:18px!important;font-weight:400}}.sub-heading-3YlFDH-9YY.text-output h1:first-child:before,.sub-heading-3YlFDH-9YY.text-output h2:first-child:before,.sub-heading-3YlFDH-9YY.text-output h3:first-child:before,.sub-heading-3YlFDH-9YY.text-output h4:first-child:before,.sub-heading-3YlFDH-9YY.text-output h5:first-child:before,.sub-heading-3YlFDH-9YY.text-output h6:first-child:before,.sub-heading-3YlFDH-9YY.text-output p:first-child:before,.sub-heading-EomoPmN2_e.text-output h1:first-child:before,.sub-heading-EomoPmN2_e.text-output h2:first-child:before,.sub-heading-EomoPmN2_e.text-output h3:first-child:before,.sub-heading-EomoPmN2_e.text-output h4:first-child:before,.sub-heading-EomoPmN2_e.text-output h5:first-child:before,.sub-heading-EomoPmN2_e.text-output h6:first-child:before,.sub-heading-EomoPmN2_e.text-output p:first-child:before,.sub-heading-xgtdv2MejO.text-output h1:first-child:before,.sub-heading-xgtdv2MejO.text-output h2:first-child:before,.sub-heading-xgtdv2MejO.text-output h3:first-child:before,.sub-heading-xgtdv2MejO.text-output h4:first-child:before,.sub-heading-xgtdv2MejO.text-output h5:first-child:before,.sub-heading-xgtdv2MejO.text-output h6:first-child:before,.sub-heading-xgtdv2MejO.text-output p:first-child:before,.sub-heading-zSqzZqRNZ5.text-output h1:first-child:before,.sub-heading-zSqzZqRNZ5.text-output h2:first-child:before,.sub-heading-zSqzZqRNZ5.text-output h3:first-child:before,.sub-heading-zSqzZqRNZ5.text-output h4:first-child:before,.sub-heading-zSqzZqRNZ5.text-output h5:first-child:before,.sub-heading-zSqzZqRNZ5.text-output h6:first-child:before,.sub-heading-zSqzZqRNZ5.text-output p:first-child:before{color:var(--text-color);content:'\';
75 − font-family: '';margin-right:5px;font-weight:700}#image-slider-lCY3OTh4iK .carousel{height:300px;width:100%}#image-slider-lCY3OTh4iK .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-lCY3OTh4iK .carousel__pagination-active{background:#fff}#image-slider-lCY3OTh4iK .carousel__pagination-inactive{background:#000}#image-slider-lCY3OTh4iK .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-xgtdv2MejO h1,.sub-heading-xgtdv2MejO h2,.sub-heading-xgtdv2MejO h3,.sub-heading-xgtdv2MejO h4,.sub-heading-xgtdv2MejO h5,.sub-heading-xgtdv2MejO h6,.sub-heading-xgtdv2MejO ul li,.sub-heading-xgtdv2MejO.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-xgtdv2MejO h1,.sub-heading-xgtdv2MejO h2,.sub-heading-xgtdv2MejO h3,.sub-heading-xgtdv2MejO h4,.sub-heading-xgtdv2MejO h5,.sub-heading-xgtdv2MejO h6,.sub-heading-xgtdv2MejO ul li,.sub-heading-xgtdv2MejO.text-output{font-size:18px!important;font-weight:400}}#col-4BWvVkisHn>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-4BWvVkisHn{animation:none!important}}.--mobile #col-4BWvVkisHn,.--mobile #row-gmEgVmoveS{animation:none!important}.button-7eUMBF9xr_ .button-icon-start:before,.button-Del9cF1yZc .button-icon-start:before,.button-JjVPYMgs6z .button-icon-start:before,.button-K56JSZZeV0 .button-icon-start:before,.button-VVbM5fio9Y .button-icon-start:before,.button-zuF2gWpWDs .button-icon-start:before{content:"";font-family:"Font Awesome 5 Free";font-weight:700;color:var(--white)}@media screen and (min-width:481px) and (max-width:10000px){.button-Del9cF1yZc .button-icon-end,.button-Del9cF1yZc .button-icon-start,.button-Del9cF1yZc .main-heading-button{font-size:16px;font-weight:500}.button-Del9cF1yZc .button-icon-start{margin-right:5px}.button-Del9cF1yZc .button-icon-end{margin-left:5px}.button-Del9cF1yZc .sub-heading-button{font-size:15px;color:var(--white);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-Del9cF1yZc .button-icon-end,.button-Del9cF1yZc .button-icon-start,.button-Del9cF1yZc .main-heading-button{font-size:18px;font-weight:500}.button-Del9cF1yZc .button-icon-start{margin-right:5px}.button-Del9cF1yZc .button-icon-end{margin-left:5px}.button-Del9cF1yZc .sub-heading-button{font-size:15px;color:var(--white);font-weight:undefined}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-3YlFDH-9YY h1,.sub-heading-3YlFDH-9YY h2,.sub-heading-3YlFDH-9YY h3,.sub-heading-3YlFDH-9YY h4,.sub-heading-3YlFDH-9YY h5,.sub-heading-3YlFDH-9YY h6,.sub-heading-3YlFDH-9YY ul li,.sub-heading-3YlFDH-9YY.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-3YlFDH-9YY h1,.sub-heading-3YlFDH-9YY h2,.sub-heading-3YlFDH-9YY h3,.sub-heading-3YlFDH-9YY h4,.sub-heading-3YlFDH-9YY h5,.sub-heading-3YlFDH-9YY h6,.sub-heading-3YlFDH-9YY ul li,.sub-heading-3YlFDH-9YY.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-EomoPmN2_e h1,.sub-heading-EomoPmN2_e h2,.sub-heading-EomoPmN2_e h3,.sub-heading-EomoPmN2_e h4,.sub-heading-EomoPmN2_e h5,.sub-heading-EomoPmN2_e h6,.sub-heading-EomoPmN2_e ul li,.sub-heading-EomoPmN2_e.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-EomoPmN2_e h1,.sub-heading-EomoPmN2_e h2,.sub-heading-EomoPmN2_e h3,.sub-heading-EomoPmN2_e h4,.sub-heading-EomoPmN2_e h5,.sub-heading-EomoPmN2_e h6,.sub-heading-EomoPmN2_e ul li,.sub-heading-EomoPmN2_e.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-gmEgVmoveS{animation:none!important}}#col-p5GadL5G_x>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-p5GadL5G_x{animation:none!important}}.--mobile #col-p5GadL5G_x{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-hXYfvK6iKl h1,.paragraph-hXYfvK6iKl h2,.paragraph-hXYfvK6iKl h3,.paragraph-hXYfvK6iKl h4,.paragraph-hXYfvK6iKl h5,.paragraph-hXYfvK6iKl h6,.paragraph-hXYfvK6iKl ul li,.paragraph-hXYfvK6iKl.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-hXYfvK6iKl h1,.paragraph-hXYfvK6iKl h2,.paragraph-hXYfvK6iKl h3,.paragraph-hXYfvK6iKl h4,.paragraph-hXYfvK6iKl h5,.paragraph-hXYfvK6iKl h6,.paragraph-hXYfvK6iKl ul li,.paragraph-hXYfvK6iKl.text-output{font-size:16px!important;font-weight:400}}.paragraph-hXYfvK6iKl.text-output h1:first-child:before,.paragraph-hXYfvK6iKl.text-output h2:first-child:before,.paragraph-hXYfvK6iKl.text-output h3:first-child:before,.paragraph-hXYfvK6iKl.text-output h4:first-child:before,.paragraph-hXYfvK6iKl.text-output h5:first-child:before,.paragraph-hXYfvK6iKl.text-output h6:first-child:before,.paragraph-hXYfvK6iKl.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-gGbLc7KkF4 h1,.paragraph-gGbLc7KkF4 h2,.paragraph-gGbLc7KkF4 h3,.paragraph-gGbLc7KkF4 h4,.paragraph-gGbLc7KkF4 h5,.paragraph-gGbLc7KkF4 h6,.paragraph-gGbLc7KkF4 ul li,.paragraph-gGbLc7KkF4.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-gGbLc7KkF4 h1,.paragraph-gGbLc7KkF4 h2,.paragraph-gGbLc7KkF4 h3,.paragraph-gGbLc7KkF4 h4,.paragraph-gGbLc7KkF4 h5,.paragraph-gGbLc7KkF4 h6,.paragraph-gGbLc7KkF4 ul li,.paragraph-gGbLc7KkF4.text-output{font-size:16px!important;font-weight:400}}.paragraph-gGbLc7KkF4.text-output h1:first-child:before,.paragraph-gGbLc7KkF4.text-output h2:first-child:before,.paragraph-gGbLc7KkF4.text-output h3:first-child:before,.paragraph-gGbLc7KkF4.text-output h4:first-child:before,.paragraph-gGbLc7KkF4.text-output h5:first-child:before,.paragraph-gGbLc7KkF4.text-output h6:first-child:before,.paragraph-gGbLc7KkF4.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-HNpWOU0yiZ h1,.paragraph-HNpWOU0yiZ h2,.paragraph-HNpWOU0yiZ h3,.paragraph-HNpWOU0yiZ h4,.paragraph-HNpWOU0yiZ h5,.paragraph-HNpWOU0yiZ h6,.paragraph-HNpWOU0yiZ ul li,.paragraph-HNpWOU0yiZ.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-HNpWOU0yiZ h1,.paragraph-HNpWOU0yiZ h2,.paragraph-HNpWOU0yiZ h3,.paragraph-HNpWOU0yiZ h4,.paragraph-HNpWOU0yiZ h5,.paragraph-HNpWOU0yiZ h6,.paragraph-HNpWOU0yiZ ul li,.paragraph-HNpWOU0yiZ.text-output{font-size:16px!important;font-weight:400}}.paragraph-HNpWOU0yiZ.text-output h1:first-child:before,.paragraph-HNpWOU0yiZ.text-output h2:first-child:before,.paragraph-HNpWOU0yiZ.text-output h3:first-child:before,.paragraph-HNpWOU0yiZ.text-output h4:first-child:before,.paragraph-HNpWOU0yiZ.text-output h5:first-child:before,.paragraph-HNpWOU0yiZ.text-output h6:first-child:before,.paragraph-HNpWOU0yiZ.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-mDjEEXBqNA h1,.sub-heading-mDjEEXBqNA h2,.sub-heading-mDjEEXBqNA h3,.sub-heading-mDjEEXBqNA h4,.sub-heading-mDjEEXBqNA h5,.sub-heading-mDjEEXBqNA h6,.sub-heading-mDjEEXBqNA ul li,.sub-heading-mDjEEXBqNA.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-mDjEEXBqNA h1,.sub-heading-mDjEEXBqNA h2,.sub-heading-mDjEEXBqNA h3,.sub-heading-mDjEEXBqNA h4,.sub-heading-mDjEEXBqNA h5,.sub-heading-mDjEEXBqNA h6,.sub-heading-mDjEEXBqNA ul li,.sub-heading-mDjEEXBqNA.text-output{font-size:18px!important;font-weight:400}}.sub-heading-AkGlLcCq8C.text-output h1:first-child:before,.sub-heading-AkGlLcCq8C.text-output h2:first-child:before,.sub-heading-AkGlLcCq8C.text-output h3:first-child:before,.sub-heading-AkGlLcCq8C.text-output h4:first-child:before,.sub-heading-AkGlLcCq8C.text-output h5:first-child:before,.sub-heading-AkGlLcCq8C.text-output h6:first-child:before,.sub-heading-AkGlLcCq8C.text-output p:first-child:before,.sub-heading-ZeeJaB1GkS.text-output h1:first-child:before,.sub-heading-ZeeJaB1GkS.text-output h2:first-child:before,.sub-heading-ZeeJaB1GkS.text-output h3:first-child:before,.sub-heading-ZeeJaB1GkS.text-output h4:first-child:before,.sub-heading-ZeeJaB1GkS.text-output h5:first-child:before,.sub-heading-ZeeJaB1GkS.text-output h6:first-child:before,.sub-heading-ZeeJaB1GkS.text-output p:first-child:before,.sub-heading-hqL5WiSwav.text-output h1:first-child:before,.sub-heading-hqL5WiSwav.text-output h2:first-child:before,.sub-heading-hqL5WiSwav.text-output h3:first-child:before,.sub-heading-hqL5WiSwav.text-output h4:first-child:before,.sub-heading-hqL5WiSwav.text-output h5:first-child:before,.sub-heading-hqL5WiSwav.text-output h6:first-child:before,.sub-heading-hqL5WiSwav.text-output p:first-child:before,.sub-heading-mDjEEXBqNA.text-output h1:first-child:before,.sub-heading-mDjEEXBqNA.text-output h2:first-child:before,.sub-heading-mDjEEXBqNA.text-output h3:first-child:before,.sub-heading-mDjEEXBqNA.text-output h4:first-child:before,.sub-heading-mDjEEXBqNA.text-output h5:first-child:before,.sub-heading-mDjEEXBqNA.text-output h6:first-child:before,.sub-heading-mDjEEXBqNA.text-output p:first-child:before{color:var(--text-color);content:'\';
76 − font-family: '';margin-right:5px;font-weight:700}#image-slider-U_M5ypvwFo .carousel{height:300px;width:100%}#image-slider-U_M5ypvwFo .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-U_M5ypvwFo .carousel__pagination-active{background:#fff}#image-slider-U_M5ypvwFo .carousel__pagination-inactive{background:#000}#image-slider-U_M5ypvwFo .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-ZeeJaB1GkS h1,.sub-heading-ZeeJaB1GkS h2,.sub-heading-ZeeJaB1GkS h3,.sub-heading-ZeeJaB1GkS h4,.sub-heading-ZeeJaB1GkS h5,.sub-heading-ZeeJaB1GkS h6,.sub-heading-ZeeJaB1GkS ul li,.sub-heading-ZeeJaB1GkS.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-ZeeJaB1GkS h1,.sub-heading-ZeeJaB1GkS h2,.sub-heading-ZeeJaB1GkS h3,.sub-heading-ZeeJaB1GkS h4,.sub-heading-ZeeJaB1GkS h5,.sub-heading-ZeeJaB1GkS h6,.sub-heading-ZeeJaB1GkS ul li,.sub-heading-ZeeJaB1GkS.text-output{font-size:18px!important;font-weight:400}}#col-PDRiNvrIye>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-PDRiNvrIye{animation:none!important}}.--mobile #col-PDRiNvrIye,.--mobile #row-N2zOEM0D9T{animation:none!important}@media screen and (min-width:481px) and (max-width:10000px){.button-K56JSZZeV0 .button-icon-end,.button-K56JSZZeV0 .button-icon-start,.button-K56JSZZeV0 .main-heading-button{font-size:16px;font-weight:500}.button-K56JSZZeV0 .button-icon-start{margin-right:5px}.button-K56JSZZeV0 .button-icon-end{margin-left:5px}.button-K56JSZZeV0 .sub-heading-button{font-size:15px;color:var(--white);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-K56JSZZeV0 .button-icon-end,.button-K56JSZZeV0 .button-icon-start,.button-K56JSZZeV0 .main-heading-button{font-size:18px;font-weight:500}.button-K56JSZZeV0 .button-icon-start{margin-right:5px}.button-K56JSZZeV0 .button-icon-end{margin-left:5px}.button-K56JSZZeV0 .sub-heading-button{font-size:15px;color:var(--white);font-weight:undefined}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-hqL5WiSwav h1,.sub-heading-hqL5WiSwav h2,.sub-heading-hqL5WiSwav h3,.sub-heading-hqL5WiSwav h4,.sub-heading-hqL5WiSwav h5,.sub-heading-hqL5WiSwav h6,.sub-heading-hqL5WiSwav ul li,.sub-heading-hqL5WiSwav.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-hqL5WiSwav h1,.sub-heading-hqL5WiSwav h2,.sub-heading-hqL5WiSwav h3,.sub-heading-hqL5WiSwav h4,.sub-heading-hqL5WiSwav h5,.sub-heading-hqL5WiSwav h6,.sub-heading-hqL5WiSwav ul li,.sub-heading-hqL5WiSwav.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-AkGlLcCq8C h1,.sub-heading-AkGlLcCq8C h2,.sub-heading-AkGlLcCq8C h3,.sub-heading-AkGlLcCq8C h4,.sub-heading-AkGlLcCq8C h5,.sub-heading-AkGlLcCq8C h6,.sub-heading-AkGlLcCq8C ul li,.sub-heading-AkGlLcCq8C.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-AkGlLcCq8C h1,.sub-heading-AkGlLcCq8C h2,.sub-heading-AkGlLcCq8C h3,.sub-heading-AkGlLcCq8C h4,.sub-heading-AkGlLcCq8C h5,.sub-heading-AkGlLcCq8C h6,.sub-heading-AkGlLcCq8C ul li,.sub-heading-AkGlLcCq8C.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-N2zOEM0D9T{animation:none!important}}#col-gnCK3IzMW4>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-gnCK3IzMW4{animation:none!important}}.--mobile #col-gnCK3IzMW4{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-dZm5pCA3l0 h1,.paragraph-dZm5pCA3l0 h2,.paragraph-dZm5pCA3l0 h3,.paragraph-dZm5pCA3l0 h4,.paragraph-dZm5pCA3l0 h5,.paragraph-dZm5pCA3l0 h6,.paragraph-dZm5pCA3l0 ul li,.paragraph-dZm5pCA3l0.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-dZm5pCA3l0 h1,.paragraph-dZm5pCA3l0 h2,.paragraph-dZm5pCA3l0 h3,.paragraph-dZm5pCA3l0 h4,.paragraph-dZm5pCA3l0 h5,.paragraph-dZm5pCA3l0 h6,.paragraph-dZm5pCA3l0 ul li,.paragraph-dZm5pCA3l0.text-output{font-size:16px!important;font-weight:400}}.paragraph-dZm5pCA3l0.text-output h1:first-child:before,.paragraph-dZm5pCA3l0.text-output h2:first-child:before,.paragraph-dZm5pCA3l0.text-output h3:first-child:before,.paragraph-dZm5pCA3l0.text-output h4:first-child:before,.paragraph-dZm5pCA3l0.text-output h5:first-child:before,.paragraph-dZm5pCA3l0.text-output h6:first-child:before,.paragraph-dZm5pCA3l0.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-r9oejefpDS h1,.paragraph-r9oejefpDS h2,.paragraph-r9oejefpDS h3,.paragraph-r9oejefpDS h4,.paragraph-r9oejefpDS h5,.paragraph-r9oejefpDS h6,.paragraph-r9oejefpDS ul li,.paragraph-r9oejefpDS.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-r9oejefpDS h1,.paragraph-r9oejefpDS h2,.paragraph-r9oejefpDS h3,.paragraph-r9oejefpDS h4,.paragraph-r9oejefpDS h5,.paragraph-r9oejefpDS h6,.paragraph-r9oejefpDS ul li,.paragraph-r9oejefpDS.text-output{font-size:16px!important;font-weight:400}}.paragraph-r9oejefpDS.text-output h1:first-child:before,.paragraph-r9oejefpDS.text-output h2:first-child:before,.paragraph-r9oejefpDS.text-output h3:first-child:before,.paragraph-r9oejefpDS.text-output h4:first-child:before,.paragraph-r9oejefpDS.text-output h5:first-child:before,.paragraph-r9oejefpDS.text-output h6:first-child:before,.paragraph-r9oejefpDS.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-vVrlnmHbkZ h1,.paragraph-vVrlnmHbkZ h2,.paragraph-vVrlnmHbkZ h3,.paragraph-vVrlnmHbkZ h4,.paragraph-vVrlnmHbkZ h5,.paragraph-vVrlnmHbkZ h6,.paragraph-vVrlnmHbkZ ul li,.paragraph-vVrlnmHbkZ.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-vVrlnmHbkZ h1,.paragraph-vVrlnmHbkZ h2,.paragraph-vVrlnmHbkZ h3,.paragraph-vVrlnmHbkZ h4,.paragraph-vVrlnmHbkZ h5,.paragraph-vVrlnmHbkZ h6,.paragraph-vVrlnmHbkZ ul li,.paragraph-vVrlnmHbkZ.text-output{font-size:16px!important;font-weight:400}}.paragraph-vVrlnmHbkZ.text-output h1:first-child:before,.paragraph-vVrlnmHbkZ.text-output h2:first-child:before,.paragraph-vVrlnmHbkZ.text-output h3:first-child:before,.paragraph-vVrlnmHbkZ.text-output h4:first-child:before,.paragraph-vVrlnmHbkZ.text-output h5:first-child:before,.paragraph-vVrlnmHbkZ.text-output h6:first-child:before,.paragraph-vVrlnmHbkZ.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-zKFW_sRIcJ h1,.sub-heading-zKFW_sRIcJ h2,.sub-heading-zKFW_sRIcJ h3,.sub-heading-zKFW_sRIcJ h4,.sub-heading-zKFW_sRIcJ h5,.sub-heading-zKFW_sRIcJ h6,.sub-heading-zKFW_sRIcJ ul li,.sub-heading-zKFW_sRIcJ.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-zKFW_sRIcJ h1,.sub-heading-zKFW_sRIcJ h2,.sub-heading-zKFW_sRIcJ h3,.sub-heading-zKFW_sRIcJ h4,.sub-heading-zKFW_sRIcJ h5,.sub-heading-zKFW_sRIcJ h6,.sub-heading-zKFW_sRIcJ ul li,.sub-heading-zKFW_sRIcJ.text-output{font-size:18px!important;font-weight:400}}.sub-heading-CznAmDZC9h.text-output h1:first-child:before,.sub-heading-CznAmDZC9h.text-output h2:first-child:before,.sub-heading-CznAmDZC9h.text-output h3:first-child:before,.sub-heading-CznAmDZC9h.text-output h4:first-child:before,.sub-heading-CznAmDZC9h.text-output h5:first-child:before,.sub-heading-CznAmDZC9h.text-output h6:first-child:before,.sub-heading-CznAmDZC9h.text-output p:first-child:before,.sub-heading-ItaE4IW413.text-output h1:first-child:before,.sub-heading-ItaE4IW413.text-output h2:first-child:before,.sub-heading-ItaE4IW413.text-output h3:first-child:before,.sub-heading-ItaE4IW413.text-output h4:first-child:before,.sub-heading-ItaE4IW413.text-output h5:first-child:before,.sub-heading-ItaE4IW413.text-output h6:first-child:before,.sub-heading-ItaE4IW413.text-output p:first-child:before,.sub-heading-vFeaZeoNAp.text-output h1:first-child:before,.sub-heading-vFeaZeoNAp.text-output h2:first-child:before,.sub-heading-vFeaZeoNAp.text-output h3:first-child:before,.sub-heading-vFeaZeoNAp.text-output h4:first-child:before,.sub-heading-vFeaZeoNAp.text-output h5:first-child:before,.sub-heading-vFeaZeoNAp.text-output h6:first-child:before,.sub-heading-vFeaZeoNAp.text-output p:first-child:before,.sub-heading-zKFW_sRIcJ.text-output h1:first-child:before,.sub-heading-zKFW_sRIcJ.text-output h2:first-child:before,.sub-heading-zKFW_sRIcJ.text-output h3:first-child:before,.sub-heading-zKFW_sRIcJ.text-output h4:first-child:before,.sub-heading-zKFW_sRIcJ.text-output h5:first-child:before,.sub-heading-zKFW_sRIcJ.text-output h6:first-child:before,.sub-heading-zKFW_sRIcJ.text-output p:first-child:before{color:var(--text-color);content:'\';
77 − font-family: '';margin-right:5px;font-weight:700}#image-slider-LwgINnCEal .carousel{height:300px;width:100%}#image-slider-LwgINnCEal .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-LwgINnCEal .carousel__pagination-active{background:#fff}#image-slider-LwgINnCEal .carousel__pagination-inactive{background:#000}#image-slider-LwgINnCEal .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-vFeaZeoNAp h1,.sub-heading-vFeaZeoNAp h2,.sub-heading-vFeaZeoNAp h3,.sub-heading-vFeaZeoNAp h4,.sub-heading-vFeaZeoNAp h5,.sub-heading-vFeaZeoNAp h6,.sub-heading-vFeaZeoNAp ul li,.sub-heading-vFeaZeoNAp.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-vFeaZeoNAp h1,.sub-heading-vFeaZeoNAp h2,.sub-heading-vFeaZeoNAp h3,.sub-heading-vFeaZeoNAp h4,.sub-heading-vFeaZeoNAp h5,.sub-heading-vFeaZeoNAp h6,.sub-heading-vFeaZeoNAp ul li,.sub-heading-vFeaZeoNAp.text-output{font-size:18px!important;font-weight:400}}#col-tN2w8jSThI>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-tN2w8jSThI{animation:none!important}}.--mobile #col-tN2w8jSThI,.--mobile #row-AkFudryisy{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-ItaE4IW413 h1,.sub-heading-ItaE4IW413 h2,.sub-heading-ItaE4IW413 h3,.sub-heading-ItaE4IW413 h4,.sub-heading-ItaE4IW413 h5,.sub-heading-ItaE4IW413 h6,.sub-heading-ItaE4IW413 ul li,.sub-heading-ItaE4IW413.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-ItaE4IW413 h1,.sub-heading-ItaE4IW413 h2,.sub-heading-ItaE4IW413 h3,.sub-heading-ItaE4IW413 h4,.sub-heading-ItaE4IW413 h5,.sub-heading-ItaE4IW413 h6,.sub-heading-ItaE4IW413 ul li,.sub-heading-ItaE4IW413.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-CznAmDZC9h h1,.sub-heading-CznAmDZC9h h2,.sub-heading-CznAmDZC9h h3,.sub-heading-CznAmDZC9h h4,.sub-heading-CznAmDZC9h h5,.sub-heading-CznAmDZC9h h6,.sub-heading-CznAmDZC9h ul li,.sub-heading-CznAmDZC9h.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-CznAmDZC9h h1,.sub-heading-CznAmDZC9h h2,.sub-heading-CznAmDZC9h h3,.sub-heading-CznAmDZC9h h4,.sub-heading-CznAmDZC9h h5,.sub-heading-CznAmDZC9h h6,.sub-heading-CznAmDZC9h ul li,.sub-heading-CznAmDZC9h.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-AkFudryisy{animation:none!important}}#col-Hu9p3uB0oJ>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-Hu9p3uB0oJ{animation:none!important}}.--mobile #col-Hu9p3uB0oJ{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-Ug1hGViFi0 h1,.paragraph-Ug1hGViFi0 h2,.paragraph-Ug1hGViFi0 h3,.paragraph-Ug1hGViFi0 h4,.paragraph-Ug1hGViFi0 h5,.paragraph-Ug1hGViFi0 h6,.paragraph-Ug1hGViFi0 ul li,.paragraph-Ug1hGViFi0.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-Ug1hGViFi0 h1,.paragraph-Ug1hGViFi0 h2,.paragraph-Ug1hGViFi0 h3,.paragraph-Ug1hGViFi0 h4,.paragraph-Ug1hGViFi0 h5,.paragraph-Ug1hGViFi0 h6,.paragraph-Ug1hGViFi0 ul li,.paragraph-Ug1hGViFi0.text-output{font-size:16px!important;font-weight:400}}.paragraph-Ug1hGViFi0.text-output h1:first-child:before,.paragraph-Ug1hGViFi0.text-output h2:first-child:before,.paragraph-Ug1hGViFi0.text-output h3:first-child:before,.paragraph-Ug1hGViFi0.text-output h4:first-child:before,.paragraph-Ug1hGViFi0.text-output h5:first-child:before,.paragraph-Ug1hGViFi0.text-output h6:first-child:before,.paragraph-Ug1hGViFi0.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-u1b81koA64 h1,.paragraph-u1b81koA64 h2,.paragraph-u1b81koA64 h3,.paragraph-u1b81koA64 h4,.paragraph-u1b81koA64 h5,.paragraph-u1b81koA64 h6,.paragraph-u1b81koA64 ul li,.paragraph-u1b81koA64.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-u1b81koA64 h1,.paragraph-u1b81koA64 h2,.paragraph-u1b81koA64 h3,.paragraph-u1b81koA64 h4,.paragraph-u1b81koA64 h5,.paragraph-u1b81koA64 h6,.paragraph-u1b81koA64 ul li,.paragraph-u1b81koA64.text-output{font-size:16px!important;font-weight:400}}.paragraph-u1b81koA64.text-output h1:first-child:before,.paragraph-u1b81koA64.text-output h2:first-child:before,.paragraph-u1b81koA64.text-output h3:first-child:before,.paragraph-u1b81koA64.text-output h4:first-child:before,.paragraph-u1b81koA64.text-output h5:first-child:before,.paragraph-u1b81koA64.text-output h6:first-child:before,.paragraph-u1b81koA64.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-6oy5acXZcM h1,.paragraph-6oy5acXZcM h2,.paragraph-6oy5acXZcM h3,.paragraph-6oy5acXZcM h4,.paragraph-6oy5acXZcM h5,.paragraph-6oy5acXZcM h6,.paragraph-6oy5acXZcM ul li,.paragraph-6oy5acXZcM.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-6oy5acXZcM h1,.paragraph-6oy5acXZcM h2,.paragraph-6oy5acXZcM h3,.paragraph-6oy5acXZcM h4,.paragraph-6oy5acXZcM h5,.paragraph-6oy5acXZcM h6,.paragraph-6oy5acXZcM ul li,.paragraph-6oy5acXZcM.text-output{font-size:16px!important;font-weight:400}}.paragraph-6oy5acXZcM.text-output h1:first-child:before,.paragraph-6oy5acXZcM.text-output h2:first-child:before,.paragraph-6oy5acXZcM.text-output h3:first-child:before,.paragraph-6oy5acXZcM.text-output h4:first-child:before,.paragraph-6oy5acXZcM.text-output h5:first-child:before,.paragraph-6oy5acXZcM.text-output h6:first-child:before,.paragraph-6oy5acXZcM.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-S7qiVAX1qU h1,.sub-heading-S7qiVAX1qU h2,.sub-heading-S7qiVAX1qU h3,.sub-heading-S7qiVAX1qU h4,.sub-heading-S7qiVAX1qU h5,.sub-heading-S7qiVAX1qU h6,.sub-heading-S7qiVAX1qU ul li,.sub-heading-S7qiVAX1qU.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-S7qiVAX1qU h1,.sub-heading-S7qiVAX1qU h2,.sub-heading-S7qiVAX1qU h3,.sub-heading-S7qiVAX1qU h4,.sub-heading-S7qiVAX1qU h5,.sub-heading-S7qiVAX1qU h6,.sub-heading-S7qiVAX1qU ul li,.sub-heading-S7qiVAX1qU.text-output{font-size:18px!important;font-weight:400}}.sub-heading-S7qiVAX1qU.text-output h1:first-child:before,.sub-heading-S7qiVAX1qU.text-output h2:first-child:before,.sub-heading-S7qiVAX1qU.text-output h3:first-child:before,.sub-heading-S7qiVAX1qU.text-output h4:first-child:before,.sub-heading-S7qiVAX1qU.text-output h5:first-child:before,.sub-heading-S7qiVAX1qU.text-output h6:first-child:before,.sub-heading-S7qiVAX1qU.text-output p:first-child:before,.sub-heading-WpuH1yb2dA.text-output h1:first-child:before,.sub-heading-WpuH1yb2dA.text-output h2:first-child:before,.sub-heading-WpuH1yb2dA.text-output h3:first-child:before,.sub-heading-WpuH1yb2dA.text-output h4:first-child:before,.sub-heading-WpuH1yb2dA.text-output h5:first-child:before,.sub-heading-WpuH1yb2dA.text-output h6:first-child:before,.sub-heading-WpuH1yb2dA.text-output p:first-child:before,.sub-heading-bJTnLuUU6D.text-output h1:first-child:before,.sub-heading-bJTnLuUU6D.text-output h2:first-child:before,.sub-heading-bJTnLuUU6D.text-output h3:first-child:before,.sub-heading-bJTnLuUU6D.text-output h4:first-child:before,.sub-heading-bJTnLuUU6D.text-output h5:first-child:before,.sub-heading-bJTnLuUU6D.text-output h6:first-child:before,.sub-heading-bJTnLuUU6D.text-output p:first-child:before,.sub-heading-xc5tqaes3e.text-output h1:first-child:before,.sub-heading-xc5tqaes3e.text-output h2:first-child:before,.sub-heading-xc5tqaes3e.text-output h3:first-child:before,.sub-heading-xc5tqaes3e.text-output h4:first-child:before,.sub-heading-xc5tqaes3e.text-output h5:first-child:before,.sub-heading-xc5tqaes3e.text-output h6:first-child:before,.sub-heading-xc5tqaes3e.text-output p:first-child:before{color:var(--text-color);content:'\';
78 − font-family: '';margin-right:5px;font-weight:700}#image-slider-1_8JMdOs2R .carousel{height:300px;width:100%}#image-slider-1_8JMdOs2R .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-1_8JMdOs2R .carousel__pagination-active{background:#fff}#image-slider-1_8JMdOs2R .carousel__pagination-inactive{background:#000}#image-slider-1_8JMdOs2R .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-WpuH1yb2dA h1,.sub-heading-WpuH1yb2dA h2,.sub-heading-WpuH1yb2dA h3,.sub-heading-WpuH1yb2dA h4,.sub-heading-WpuH1yb2dA h5,.sub-heading-WpuH1yb2dA h6,.sub-heading-WpuH1yb2dA ul li,.sub-heading-WpuH1yb2dA.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-WpuH1yb2dA h1,.sub-heading-WpuH1yb2dA h2,.sub-heading-WpuH1yb2dA h3,.sub-heading-WpuH1yb2dA h4,.sub-heading-WpuH1yb2dA h5,.sub-heading-WpuH1yb2dA h6,.sub-heading-WpuH1yb2dA ul li,.sub-heading-WpuH1yb2dA.text-output{font-size:18px!important;font-weight:400}}#col-GydWbufL23>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-GydWbufL23{animation:none!important}}.--mobile #col-GydWbufL23,.--mobile #row-gvJ5NslZYY{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-xc5tqaes3e h1,.sub-heading-xc5tqaes3e h2,.sub-heading-xc5tqaes3e h3,.sub-heading-xc5tqaes3e h4,.sub-heading-xc5tqaes3e h5,.sub-heading-xc5tqaes3e h6,.sub-heading-xc5tqaes3e ul li,.sub-heading-xc5tqaes3e.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-xc5tqaes3e h1,.sub-heading-xc5tqaes3e h2,.sub-heading-xc5tqaes3e h3,.sub-heading-xc5tqaes3e h4,.sub-heading-xc5tqaes3e h5,.sub-heading-xc5tqaes3e h6,.sub-heading-xc5tqaes3e ul li,.sub-heading-xc5tqaes3e.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-bJTnLuUU6D h1,.sub-heading-bJTnLuUU6D h2,.sub-heading-bJTnLuUU6D h3,.sub-heading-bJTnLuUU6D h4,.sub-heading-bJTnLuUU6D h5,.sub-heading-bJTnLuUU6D h6,.sub-heading-bJTnLuUU6D ul li,.sub-heading-bJTnLuUU6D.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-bJTnLuUU6D h1,.sub-heading-bJTnLuUU6D h2,.sub-heading-bJTnLuUU6D h3,.sub-heading-bJTnLuUU6D h4,.sub-heading-bJTnLuUU6D h5,.sub-heading-bJTnLuUU6D h6,.sub-heading-bJTnLuUU6D ul li,.sub-heading-bJTnLuUU6D.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-gvJ5NslZYY{animation:none!important}}#col-gYjurgTxv8>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-gYjurgTxv8{animation:none!important}}.--mobile #col-gYjurgTxv8{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-Co8Skt1R_M h1,.paragraph-Co8Skt1R_M h2,.paragraph-Co8Skt1R_M h3,.paragraph-Co8Skt1R_M h4,.paragraph-Co8Skt1R_M h5,.paragraph-Co8Skt1R_M h6,.paragraph-Co8Skt1R_M ul li,.paragraph-Co8Skt1R_M.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-Co8Skt1R_M h1,.paragraph-Co8Skt1R_M h2,.paragraph-Co8Skt1R_M h3,.paragraph-Co8Skt1R_M h4,.paragraph-Co8Skt1R_M h5,.paragraph-Co8Skt1R_M h6,.paragraph-Co8Skt1R_M ul li,.paragraph-Co8Skt1R_M.text-output{font-size:16px!important;font-weight:400}}.paragraph-Co8Skt1R_M.text-output h1:first-child:before,.paragraph-Co8Skt1R_M.text-output h2:first-child:before,.paragraph-Co8Skt1R_M.text-output h3:first-child:before,.paragraph-Co8Skt1R_M.text-output h4:first-child:before,.paragraph-Co8Skt1R_M.text-output h5:first-child:before,.paragraph-Co8Skt1R_M.text-output h6:first-child:before,.paragraph-Co8Skt1R_M.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-sPkFZRxwOi h1,.paragraph-sPkFZRxwOi h2,.paragraph-sPkFZRxwOi h3,.paragraph-sPkFZRxwOi h4,.paragraph-sPkFZRxwOi h5,.paragraph-sPkFZRxwOi h6,.paragraph-sPkFZRxwOi ul li,.paragraph-sPkFZRxwOi.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-sPkFZRxwOi h1,.paragraph-sPkFZRxwOi h2,.paragraph-sPkFZRxwOi h3,.paragraph-sPkFZRxwOi h4,.paragraph-sPkFZRxwOi h5,.paragraph-sPkFZRxwOi h6,.paragraph-sPkFZRxwOi ul li,.paragraph-sPkFZRxwOi.text-output{font-size:16px!important;font-weight:400}}.paragraph-sPkFZRxwOi.text-output h1:first-child:before,.paragraph-sPkFZRxwOi.text-output h2:first-child:before,.paragraph-sPkFZRxwOi.text-output h3:first-child:before,.paragraph-sPkFZRxwOi.text-output h4:first-child:before,.paragraph-sPkFZRxwOi.text-output h5:first-child:before,.paragraph-sPkFZRxwOi.text-output h6:first-child:before,.paragraph-sPkFZRxwOi.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-3LKUiLrQ26 h1,.paragraph-3LKUiLrQ26 h2,.paragraph-3LKUiLrQ26 h3,.paragraph-3LKUiLrQ26 h4,.paragraph-3LKUiLrQ26 h5,.paragraph-3LKUiLrQ26 h6,.paragraph-3LKUiLrQ26 ul li,.paragraph-3LKUiLrQ26.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-3LKUiLrQ26 h1,.paragraph-3LKUiLrQ26 h2,.paragraph-3LKUiLrQ26 h3,.paragraph-3LKUiLrQ26 h4,.paragraph-3LKUiLrQ26 h5,.paragraph-3LKUiLrQ26 h6,.paragraph-3LKUiLrQ26 ul li,.paragraph-3LKUiLrQ26.text-output{font-size:16px!important;font-weight:400}}.paragraph-3LKUiLrQ26.text-output h1:first-child:before,.paragraph-3LKUiLrQ26.text-output h2:first-child:before,.paragraph-3LKUiLrQ26.text-output h3:first-child:before,.paragraph-3LKUiLrQ26.text-output h4:first-child:before,.paragraph-3LKUiLrQ26.text-output h5:first-child:before,.paragraph-3LKUiLrQ26.text-output h6:first-child:before,.paragraph-3LKUiLrQ26.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-93vSmZiclD h1,.sub-heading-93vSmZiclD h2,.sub-heading-93vSmZiclD h3,.sub-heading-93vSmZiclD h4,.sub-heading-93vSmZiclD h5,.sub-heading-93vSmZiclD h6,.sub-heading-93vSmZiclD ul li,.sub-heading-93vSmZiclD.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-93vSmZiclD h1,.sub-heading-93vSmZiclD h2,.sub-heading-93vSmZiclD h3,.sub-heading-93vSmZiclD h4,.sub-heading-93vSmZiclD h5,.sub-heading-93vSmZiclD h6,.sub-heading-93vSmZiclD ul li,.sub-heading-93vSmZiclD.text-output{font-size:18px!important;font-weight:400}}.sub-heading--0Wfz7yweG.text-output h1:first-child:before,.sub-heading--0Wfz7yweG.text-output h2:first-child:before,.sub-heading--0Wfz7yweG.text-output h3:first-child:before,.sub-heading--0Wfz7yweG.text-output h4:first-child:before,.sub-heading--0Wfz7yweG.text-output h5:first-child:before,.sub-heading--0Wfz7yweG.text-output h6:first-child:before,.sub-heading--0Wfz7yweG.text-output p:first-child:before,.sub-heading-93vSmZiclD.text-output h1:first-child:before,.sub-heading-93vSmZiclD.text-output h2:first-child:before,.sub-heading-93vSmZiclD.text-output h3:first-child:before,.sub-heading-93vSmZiclD.text-output h4:first-child:before,.sub-heading-93vSmZiclD.text-output h5:first-child:before,.sub-heading-93vSmZiclD.text-output h6:first-child:before,.sub-heading-93vSmZiclD.text-output p:first-child:before,.sub-heading-ME_G3AOWS4.text-output h1:first-child:before,.sub-heading-ME_G3AOWS4.text-output h2:first-child:before,.sub-heading-ME_G3AOWS4.text-output h3:first-child:before,.sub-heading-ME_G3AOWS4.text-output h4:first-child:before,.sub-heading-ME_G3AOWS4.text-output h5:first-child:before,.sub-heading-ME_G3AOWS4.text-output h6:first-child:before,.sub-heading-ME_G3AOWS4.text-output p:first-child:before,.sub-heading-_F7fq4Crrg.text-output h1:first-child:before,.sub-heading-_F7fq4Crrg.text-output h2:first-child:before,.sub-heading-_F7fq4Crrg.text-output h3:first-child:before,.sub-heading-_F7fq4Crrg.text-output h4:first-child:before,.sub-heading-_F7fq4Crrg.text-output h5:first-child:before,.sub-heading-_F7fq4Crrg.text-output h6:first-child:before,.sub-heading-_F7fq4Crrg.text-output p:first-child:before{color:var(--text-color);content:'\';
79 − font-family: '';margin-right:5px;font-weight:700}#image-slider-0_dT61oRor .carousel{height:300px;width:100%}#image-slider-0_dT61oRor .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-0_dT61oRor .carousel__pagination-active{background:#fff}#image-slider-0_dT61oRor .carousel__pagination-inactive{background:#000}#image-slider-0_dT61oRor .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-_F7fq4Crrg h1,.sub-heading-_F7fq4Crrg h2,.sub-heading-_F7fq4Crrg h3,.sub-heading-_F7fq4Crrg h4,.sub-heading-_F7fq4Crrg h5,.sub-heading-_F7fq4Crrg h6,.sub-heading-_F7fq4Crrg ul li,.sub-heading-_F7fq4Crrg.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-_F7fq4Crrg h1,.sub-heading-_F7fq4Crrg h2,.sub-heading-_F7fq4Crrg h3,.sub-heading-_F7fq4Crrg h4,.sub-heading-_F7fq4Crrg h5,.sub-heading-_F7fq4Crrg h6,.sub-heading-_F7fq4Crrg ul li,.sub-heading-_F7fq4Crrg.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-99GgjNdm-g{animation:none!important}}.--mobile #row-99GgjNdm-g{animation:none!important}#col-sP29GM9ciq>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-sP29GM9ciq{animation:none!important}}.--mobile #col-sP29GM9ciq,.--mobile #row-meTU-K_rSB{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading--0Wfz7yweG h1,.sub-heading--0Wfz7yweG h2,.sub-heading--0Wfz7yweG h3,.sub-heading--0Wfz7yweG h4,.sub-heading--0Wfz7yweG h5,.sub-heading--0Wfz7yweG h6,.sub-heading--0Wfz7yweG ul li,.sub-heading--0Wfz7yweG.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading--0Wfz7yweG h1,.sub-heading--0Wfz7yweG h2,.sub-heading--0Wfz7yweG h3,.sub-heading--0Wfz7yweG h4,.sub-heading--0Wfz7yweG h5,.sub-heading--0Wfz7yweG h6,.sub-heading--0Wfz7yweG ul li,.sub-heading--0Wfz7yweG.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-ME_G3AOWS4 h1,.sub-heading-ME_G3AOWS4 h2,.sub-heading-ME_G3AOWS4 h3,.sub-heading-ME_G3AOWS4 h4,.sub-heading-ME_G3AOWS4 h5,.sub-heading-ME_G3AOWS4 h6,.sub-heading-ME_G3AOWS4 ul li,.sub-heading-ME_G3AOWS4.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-ME_G3AOWS4 h1,.sub-heading-ME_G3AOWS4 h2,.sub-heading-ME_G3AOWS4 h3,.sub-heading-ME_G3AOWS4 h4,.sub-heading-ME_G3AOWS4 h5,.sub-heading-ME_G3AOWS4 h6,.sub-heading-ME_G3AOWS4 ul li,.sub-heading-ME_G3AOWS4.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-meTU-K_rSB{animation:none!important}}#col-ls71cZvTn->.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-ls71cZvTn-{animation:none!important}}.--mobile #col-ls71cZvTn-{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-tJxuqEhs9W h1,.paragraph-tJxuqEhs9W h2,.paragraph-tJxuqEhs9W h3,.paragraph-tJxuqEhs9W h4,.paragraph-tJxuqEhs9W h5,.paragraph-tJxuqEhs9W h6,.paragraph-tJxuqEhs9W ul li,.paragraph-tJxuqEhs9W.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-tJxuqEhs9W h1,.paragraph-tJxuqEhs9W h2,.paragraph-tJxuqEhs9W h3,.paragraph-tJxuqEhs9W h4,.paragraph-tJxuqEhs9W h5,.paragraph-tJxuqEhs9W h6,.paragraph-tJxuqEhs9W ul li,.paragraph-tJxuqEhs9W.text-output{font-size:16px!important;font-weight:400}}.paragraph-tJxuqEhs9W.text-output h1:first-child:before,.paragraph-tJxuqEhs9W.text-output h2:first-child:before,.paragraph-tJxuqEhs9W.text-output h3:first-child:before,.paragraph-tJxuqEhs9W.text-output h4:first-child:before,.paragraph-tJxuqEhs9W.text-output h5:first-child:before,.paragraph-tJxuqEhs9W.text-output h6:first-child:before,.paragraph-tJxuqEhs9W.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-zP3JRLb_6T h1,.paragraph-zP3JRLb_6T h2,.paragraph-zP3JRLb_6T h3,.paragraph-zP3JRLb_6T h4,.paragraph-zP3JRLb_6T h5,.paragraph-zP3JRLb_6T h6,.paragraph-zP3JRLb_6T ul li,.paragraph-zP3JRLb_6T.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-zP3JRLb_6T h1,.paragraph-zP3JRLb_6T h2,.paragraph-zP3JRLb_6T h3,.paragraph-zP3JRLb_6T h4,.paragraph-zP3JRLb_6T h5,.paragraph-zP3JRLb_6T h6,.paragraph-zP3JRLb_6T ul li,.paragraph-zP3JRLb_6T.text-output{font-size:16px!important;font-weight:400}}.paragraph-zP3JRLb_6T.text-output h1:first-child:before,.paragraph-zP3JRLb_6T.text-output h2:first-child:before,.paragraph-zP3JRLb_6T.text-output h3:first-child:before,.paragraph-zP3JRLb_6T.text-output h4:first-child:before,.paragraph-zP3JRLb_6T.text-output h5:first-child:before,.paragraph-zP3JRLb_6T.text-output h6:first-child:before,.paragraph-zP3JRLb_6T.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-kFmEo68CHO h1,.paragraph-kFmEo68CHO h2,.paragraph-kFmEo68CHO h3,.paragraph-kFmEo68CHO h4,.paragraph-kFmEo68CHO h5,.paragraph-kFmEo68CHO h6,.paragraph-kFmEo68CHO ul li,.paragraph-kFmEo68CHO.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-kFmEo68CHO h1,.paragraph-kFmEo68CHO h2,.paragraph-kFmEo68CHO h3,.paragraph-kFmEo68CHO h4,.paragraph-kFmEo68CHO h5,.paragraph-kFmEo68CHO h6,.paragraph-kFmEo68CHO ul li,.paragraph-kFmEo68CHO.text-output{font-size:16px!important;font-weight:400}}.paragraph-kFmEo68CHO.text-output h1:first-child:before,.paragraph-kFmEo68CHO.text-output h2:first-child:before,.paragraph-kFmEo68CHO.text-output h3:first-child:before,.paragraph-kFmEo68CHO.text-output h4:first-child:before,.paragraph-kFmEo68CHO.text-output h5:first-child:before,.paragraph-kFmEo68CHO.text-output h6:first-child:before,.paragraph-kFmEo68CHO.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-RqiA9xF_i7 h1,.sub-heading-RqiA9xF_i7 h2,.sub-heading-RqiA9xF_i7 h3,.sub-heading-RqiA9xF_i7 h4,.sub-heading-RqiA9xF_i7 h5,.sub-heading-RqiA9xF_i7 h6,.sub-heading-RqiA9xF_i7 ul li,.sub-heading-RqiA9xF_i7.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-RqiA9xF_i7 h1,.sub-heading-RqiA9xF_i7 h2,.sub-heading-RqiA9xF_i7 h3,.sub-heading-RqiA9xF_i7 h4,.sub-heading-RqiA9xF_i7 h5,.sub-heading-RqiA9xF_i7 h6,.sub-heading-RqiA9xF_i7 ul li,.sub-heading-RqiA9xF_i7.text-output{font-size:18px!important;font-weight:400}}.sub-heading-RqiA9xF_i7.text-output h1:first-child:before,.sub-heading-RqiA9xF_i7.text-output h2:first-child:before,.sub-heading-RqiA9xF_i7.text-output h3:first-child:before,.sub-heading-RqiA9xF_i7.text-output h4:first-child:before,.sub-heading-RqiA9xF_i7.text-output h5:first-child:before,.sub-heading-RqiA9xF_i7.text-output h6:first-child:before,.sub-heading-RqiA9xF_i7.text-output p:first-child:before,.sub-heading-UvAgDkge1E.text-output h1:first-child:before,.sub-heading-UvAgDkge1E.text-output h2:first-child:before,.sub-heading-UvAgDkge1E.text-output h3:first-child:before,.sub-heading-UvAgDkge1E.text-output h4:first-child:before,.sub-heading-UvAgDkge1E.text-output h5:first-child:before,.sub-heading-UvAgDkge1E.text-output h6:first-child:before,.sub-heading-UvAgDkge1E.text-output p:first-child:before,.sub-heading-WEH-tuxYZS.text-output h1:first-child:before,.sub-heading-WEH-tuxYZS.text-output h2:first-child:before,.sub-heading-WEH-tuxYZS.text-output h3:first-child:before,.sub-heading-WEH-tuxYZS.text-output h4:first-child:before,.sub-heading-WEH-tuxYZS.text-output h5:first-child:before,.sub-heading-WEH-tuxYZS.text-output h6:first-child:before,.sub-heading-WEH-tuxYZS.text-output p:first-child:before,.sub-heading-zgAUEiWTty.text-output h1:first-child:before,.sub-heading-zgAUEiWTty.text-output h2:first-child:before,.sub-heading-zgAUEiWTty.text-output h3:first-child:before,.sub-heading-zgAUEiWTty.text-output h4:first-child:before,.sub-heading-zgAUEiWTty.text-output h5:first-child:before,.sub-heading-zgAUEiWTty.text-output h6:first-child:before,.sub-heading-zgAUEiWTty.text-output p:first-child:before{color:var(--text-color);content:'\';
80 − font-family: '';margin-right:5px;font-weight:700}#image-slider-achszaW5L1 .carousel{height:300px;width:100%}#image-slider-achszaW5L1 .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-achszaW5L1 .carousel__pagination-active{background:#fff}#image-slider-achszaW5L1 .carousel__pagination-inactive{background:#000}#image-slider-achszaW5L1 .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-zgAUEiWTty h1,.sub-heading-zgAUEiWTty h2,.sub-heading-zgAUEiWTty h3,.sub-heading-zgAUEiWTty h4,.sub-heading-zgAUEiWTty h5,.sub-heading-zgAUEiWTty h6,.sub-heading-zgAUEiWTty ul li,.sub-heading-zgAUEiWTty.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-zgAUEiWTty h1,.sub-heading-zgAUEiWTty h2,.sub-heading-zgAUEiWTty h3,.sub-heading-zgAUEiWTty h4,.sub-heading-zgAUEiWTty h5,.sub-heading-zgAUEiWTty h6,.sub-heading-zgAUEiWTty ul li,.sub-heading-zgAUEiWTty.text-output{font-size:18px!important;font-weight:400}}#col-OHL99Fr2yl>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-OHL99Fr2yl{animation:none!important}}.--mobile #col-OHL99Fr2yl,.--mobile #row-1tUj13yrU_{animation:none!important}@media screen and (min-width:481px) and (max-width:10000px){.button-7eUMBF9xr_ .button-icon-end,.button-7eUMBF9xr_ .button-icon-start,.button-7eUMBF9xr_ .main-heading-button{font-size:16px;font-weight:500}.button-7eUMBF9xr_ .button-icon-start{margin-right:5px}.button-7eUMBF9xr_ .button-icon-end{margin-left:5px}.button-7eUMBF9xr_ .sub-heading-button{font-size:15px;color:var(--white);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-7eUMBF9xr_ .button-icon-end,.button-7eUMBF9xr_ .button-icon-start,.button-7eUMBF9xr_ .main-heading-button{font-size:18px;font-weight:500}.button-7eUMBF9xr_ .button-icon-start{margin-right:5px}.button-7eUMBF9xr_ .button-icon-end{margin-left:5px}.button-7eUMBF9xr_ .sub-heading-button{font-size:15px;color:var(--white);font-weight:undefined}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-UvAgDkge1E h1,.sub-heading-UvAgDkge1E h2,.sub-heading-UvAgDkge1E h3,.sub-heading-UvAgDkge1E h4,.sub-heading-UvAgDkge1E h5,.sub-heading-UvAgDkge1E h6,.sub-heading-UvAgDkge1E ul li,.sub-heading-UvAgDkge1E.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-UvAgDkge1E h1,.sub-heading-UvAgDkge1E h2,.sub-heading-UvAgDkge1E h3,.sub-heading-UvAgDkge1E h4,.sub-heading-UvAgDkge1E h5,.sub-heading-UvAgDkge1E h6,.sub-heading-UvAgDkge1E ul li,.sub-heading-UvAgDkge1E.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-WEH-tuxYZS h1,.sub-heading-WEH-tuxYZS h2,.sub-heading-WEH-tuxYZS h3,.sub-heading-WEH-tuxYZS h4,.sub-heading-WEH-tuxYZS h5,.sub-heading-WEH-tuxYZS h6,.sub-heading-WEH-tuxYZS ul li,.sub-heading-WEH-tuxYZS.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-WEH-tuxYZS h1,.sub-heading-WEH-tuxYZS h2,.sub-heading-WEH-tuxYZS h3,.sub-heading-WEH-tuxYZS h4,.sub-heading-WEH-tuxYZS h5,.sub-heading-WEH-tuxYZS h6,.sub-heading-WEH-tuxYZS ul li,.sub-heading-WEH-tuxYZS.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-1tUj13yrU_{animation:none!important}}#col-cp3pdl5s08>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-cp3pdl5s08{animation:none!important}}.--mobile #col-cp3pdl5s08{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-yxIDpMQVnK h1,.paragraph-yxIDpMQVnK h2,.paragraph-yxIDpMQVnK h3,.paragraph-yxIDpMQVnK h4,.paragraph-yxIDpMQVnK h5,.paragraph-yxIDpMQVnK h6,.paragraph-yxIDpMQVnK ul li,.paragraph-yxIDpMQVnK.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-yxIDpMQVnK h1,.paragraph-yxIDpMQVnK h2,.paragraph-yxIDpMQVnK h3,.paragraph-yxIDpMQVnK h4,.paragraph-yxIDpMQVnK h5,.paragraph-yxIDpMQVnK h6,.paragraph-yxIDpMQVnK ul li,.paragraph-yxIDpMQVnK.text-output{font-size:16px!important;font-weight:400}}.paragraph-yxIDpMQVnK.text-output h1:first-child:before,.paragraph-yxIDpMQVnK.text-output h2:first-child:before,.paragraph-yxIDpMQVnK.text-output h3:first-child:before,.paragraph-yxIDpMQVnK.text-output h4:first-child:before,.paragraph-yxIDpMQVnK.text-output h5:first-child:before,.paragraph-yxIDpMQVnK.text-output h6:first-child:before,.paragraph-yxIDpMQVnK.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-dUBxgkE7tO h1,.paragraph-dUBxgkE7tO h2,.paragraph-dUBxgkE7tO h3,.paragraph-dUBxgkE7tO h4,.paragraph-dUBxgkE7tO h5,.paragraph-dUBxgkE7tO h6,.paragraph-dUBxgkE7tO ul li,.paragraph-dUBxgkE7tO.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-dUBxgkE7tO h1,.paragraph-dUBxgkE7tO h2,.paragraph-dUBxgkE7tO h3,.paragraph-dUBxgkE7tO h4,.paragraph-dUBxgkE7tO h5,.paragraph-dUBxgkE7tO h6,.paragraph-dUBxgkE7tO ul li,.paragraph-dUBxgkE7tO.text-output{font-size:16px!important;font-weight:400}}.paragraph-dUBxgkE7tO.text-output h1:first-child:before,.paragraph-dUBxgkE7tO.text-output h2:first-child:before,.paragraph-dUBxgkE7tO.text-output h3:first-child:before,.paragraph-dUBxgkE7tO.text-output h4:first-child:before,.paragraph-dUBxgkE7tO.text-output h5:first-child:before,.paragraph-dUBxgkE7tO.text-output h6:first-child:before,.paragraph-dUBxgkE7tO.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-JXWmkCoDvo h1,.paragraph-JXWmkCoDvo h2,.paragraph-JXWmkCoDvo h3,.paragraph-JXWmkCoDvo h4,.paragraph-JXWmkCoDvo h5,.paragraph-JXWmkCoDvo h6,.paragraph-JXWmkCoDvo ul li,.paragraph-JXWmkCoDvo.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-JXWmkCoDvo h1,.paragraph-JXWmkCoDvo h2,.paragraph-JXWmkCoDvo h3,.paragraph-JXWmkCoDvo h4,.paragraph-JXWmkCoDvo h5,.paragraph-JXWmkCoDvo h6,.paragraph-JXWmkCoDvo ul li,.paragraph-JXWmkCoDvo.text-output{font-size:16px!important;font-weight:400}}.paragraph-JXWmkCoDvo.text-output h1:first-child:before,.paragraph-JXWmkCoDvo.text-output h2:first-child:before,.paragraph-JXWmkCoDvo.text-output h3:first-child:before,.paragraph-JXWmkCoDvo.text-output h4:first-child:before,.paragraph-JXWmkCoDvo.text-output h5:first-child:before,.paragraph-JXWmkCoDvo.text-output h6:first-child:before,.paragraph-JXWmkCoDvo.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-LlqGzljPYr h1,.sub-heading-LlqGzljPYr h2,.sub-heading-LlqGzljPYr h3,.sub-heading-LlqGzljPYr h4,.sub-heading-LlqGzljPYr h5,.sub-heading-LlqGzljPYr h6,.sub-heading-LlqGzljPYr ul li,.sub-heading-LlqGzljPYr.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-LlqGzljPYr h1,.sub-heading-LlqGzljPYr h2,.sub-heading-LlqGzljPYr h3,.sub-heading-LlqGzljPYr h4,.sub-heading-LlqGzljPYr h5,.sub-heading-LlqGzljPYr h6,.sub-heading-LlqGzljPYr ul li,.sub-heading-LlqGzljPYr.text-output{font-size:18px!important;font-weight:400}}.sub-heading-LlqGzljPYr.text-output h1:first-child:before,.sub-heading-LlqGzljPYr.text-output h2:first-child:before,.sub-heading-LlqGzljPYr.text-output h3:first-child:before,.sub-heading-LlqGzljPYr.text-output h4:first-child:before,.sub-heading-LlqGzljPYr.text-output h5:first-child:before,.sub-heading-LlqGzljPYr.text-output h6:first-child:before,.sub-heading-LlqGzljPYr.text-output p:first-child:before,.sub-heading-SnOeR9XLND.text-output h1:first-child:before,.sub-heading-SnOeR9XLND.text-output h2:first-child:before,.sub-heading-SnOeR9XLND.text-output h3:first-child:before,.sub-heading-SnOeR9XLND.text-output h4:first-child:before,.sub-heading-SnOeR9XLND.text-output h5:first-child:before,.sub-heading-SnOeR9XLND.text-output h6:first-child:before,.sub-heading-SnOeR9XLND.text-output p:first-child:before,.sub-heading-ipOgPBQQgu.text-output h1:first-child:before,.sub-heading-ipOgPBQQgu.text-output h2:first-child:before,.sub-heading-ipOgPBQQgu.text-output h3:first-child:before,.sub-heading-ipOgPBQQgu.text-output h4:first-child:before,.sub-heading-ipOgPBQQgu.text-output h5:first-child:before,.sub-heading-ipOgPBQQgu.text-output h6:first-child:before,.sub-heading-ipOgPBQQgu.text-output p:first-child:before,.sub-heading-wEYEICtBom.text-output h1:first-child:before,.sub-heading-wEYEICtBom.text-output h2:first-child:before,.sub-heading-wEYEICtBom.text-output h3:first-child:before,.sub-heading-wEYEICtBom.text-output h4:first-child:before,.sub-heading-wEYEICtBom.text-output h5:first-child:before,.sub-heading-wEYEICtBom.text-output h6:first-child:before,.sub-heading-wEYEICtBom.text-output p:first-child:before{color:var(--text-color);content:'\';
81 − font-family: '';margin-right:5px;font-weight:700}#image-slider-ZJsr3B4gSR .carousel{height:300px;width:100%}#image-slider-ZJsr3B4gSR .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-ZJsr3B4gSR .carousel__pagination-active{background:#fff}#image-slider-ZJsr3B4gSR .carousel__pagination-inactive{background:#000}#image-slider-ZJsr3B4gSR .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-ipOgPBQQgu h1,.sub-heading-ipOgPBQQgu h2,.sub-heading-ipOgPBQQgu h3,.sub-heading-ipOgPBQQgu h4,.sub-heading-ipOgPBQQgu h5,.sub-heading-ipOgPBQQgu h6,.sub-heading-ipOgPBQQgu ul li,.sub-heading-ipOgPBQQgu.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-ipOgPBQQgu h1,.sub-heading-ipOgPBQQgu h2,.sub-heading-ipOgPBQQgu h3,.sub-heading-ipOgPBQQgu h4,.sub-heading-ipOgPBQQgu h5,.sub-heading-ipOgPBQQgu h6,.sub-heading-ipOgPBQQgu ul li,.sub-heading-ipOgPBQQgu.text-output{font-size:18px!important;font-weight:400}}#col-L8zAeZtaIl>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-L8zAeZtaIl{animation:none!important}}.--mobile #col-L8zAeZtaIl,.--mobile #row-CGWejANV07{animation:none!important}@media screen and (min-width:481px) and (max-width:10000px){.button-VVbM5fio9Y .button-icon-end,.button-VVbM5fio9Y .button-icon-start,.button-VVbM5fio9Y .main-heading-button{font-size:16px;font-weight:500}.button-VVbM5fio9Y .button-icon-start{margin-right:5px}.button-VVbM5fio9Y .button-icon-end{margin-left:5px}.button-VVbM5fio9Y .sub-heading-button{font-size:15px;color:var(--white);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-VVbM5fio9Y .button-icon-end,.button-VVbM5fio9Y .button-icon-start,.button-VVbM5fio9Y .main-heading-button{font-size:18px;font-weight:500}.button-VVbM5fio9Y .button-icon-start{margin-right:5px}.button-VVbM5fio9Y .button-icon-end{margin-left:5px}.button-VVbM5fio9Y .sub-heading-button{font-size:15px;color:var(--white);font-weight:undefined}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-wEYEICtBom h1,.sub-heading-wEYEICtBom h2,.sub-heading-wEYEICtBom h3,.sub-heading-wEYEICtBom h4,.sub-heading-wEYEICtBom h5,.sub-heading-wEYEICtBom h6,.sub-heading-wEYEICtBom ul li,.sub-heading-wEYEICtBom.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-wEYEICtBom h1,.sub-heading-wEYEICtBom h2,.sub-heading-wEYEICtBom h3,.sub-heading-wEYEICtBom h4,.sub-heading-wEYEICtBom h5,.sub-heading-wEYEICtBom h6,.sub-heading-wEYEICtBom ul li,.sub-heading-wEYEICtBom.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-SnOeR9XLND h1,.sub-heading-SnOeR9XLND h2,.sub-heading-SnOeR9XLND h3,.sub-heading-SnOeR9XLND h4,.sub-heading-SnOeR9XLND h5,.sub-heading-SnOeR9XLND h6,.sub-heading-SnOeR9XLND ul li,.sub-heading-SnOeR9XLND.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-SnOeR9XLND h1,.sub-heading-SnOeR9XLND h2,.sub-heading-SnOeR9XLND h3,.sub-heading-SnOeR9XLND h4,.sub-heading-SnOeR9XLND h5,.sub-heading-SnOeR9XLND h6,.sub-heading-SnOeR9XLND ul li,.sub-heading-SnOeR9XLND.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-CGWejANV07{animation:none!important}}#col-6sdGUnXWaj>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-6sdGUnXWaj{animation:none!important}}.--mobile #col-6sdGUnXWaj{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-t6zTPAahzh h1,.paragraph-t6zTPAahzh h2,.paragraph-t6zTPAahzh h3,.paragraph-t6zTPAahzh h4,.paragraph-t6zTPAahzh h5,.paragraph-t6zTPAahzh h6,.paragraph-t6zTPAahzh ul li,.paragraph-t6zTPAahzh.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-t6zTPAahzh h1,.paragraph-t6zTPAahzh h2,.paragraph-t6zTPAahzh h3,.paragraph-t6zTPAahzh h4,.paragraph-t6zTPAahzh h5,.paragraph-t6zTPAahzh h6,.paragraph-t6zTPAahzh ul li,.paragraph-t6zTPAahzh.text-output{font-size:16px!important;font-weight:400}}.paragraph-t6zTPAahzh.text-output h1:first-child:before,.paragraph-t6zTPAahzh.text-output h2:first-child:before,.paragraph-t6zTPAahzh.text-output h3:first-child:before,.paragraph-t6zTPAahzh.text-output h4:first-child:before,.paragraph-t6zTPAahzh.text-output h5:first-child:before,.paragraph-t6zTPAahzh.text-output h6:first-child:before,.paragraph-t6zTPAahzh.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-NmI3r-dZjg h1,.paragraph-NmI3r-dZjg h2,.paragraph-NmI3r-dZjg h3,.paragraph-NmI3r-dZjg h4,.paragraph-NmI3r-dZjg h5,.paragraph-NmI3r-dZjg h6,.paragraph-NmI3r-dZjg ul li,.paragraph-NmI3r-dZjg.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-NmI3r-dZjg h1,.paragraph-NmI3r-dZjg h2,.paragraph-NmI3r-dZjg h3,.paragraph-NmI3r-dZjg h4,.paragraph-NmI3r-dZjg h5,.paragraph-NmI3r-dZjg h6,.paragraph-NmI3r-dZjg ul li,.paragraph-NmI3r-dZjg.text-output{font-size:16px!important;font-weight:400}}.paragraph-NmI3r-dZjg.text-output h1:first-child:before,.paragraph-NmI3r-dZjg.text-output h2:first-child:before,.paragraph-NmI3r-dZjg.text-output h3:first-child:before,.paragraph-NmI3r-dZjg.text-output h4:first-child:before,.paragraph-NmI3r-dZjg.text-output h5:first-child:before,.paragraph-NmI3r-dZjg.text-output h6:first-child:before,.paragraph-NmI3r-dZjg.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-6CKq1pBHHQ h1,.paragraph-6CKq1pBHHQ h2,.paragraph-6CKq1pBHHQ h3,.paragraph-6CKq1pBHHQ h4,.paragraph-6CKq1pBHHQ h5,.paragraph-6CKq1pBHHQ h6,.paragraph-6CKq1pBHHQ ul li,.paragraph-6CKq1pBHHQ.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-6CKq1pBHHQ h1,.paragraph-6CKq1pBHHQ h2,.paragraph-6CKq1pBHHQ h3,.paragraph-6CKq1pBHHQ h4,.paragraph-6CKq1pBHHQ h5,.paragraph-6CKq1pBHHQ h6,.paragraph-6CKq1pBHHQ ul li,.paragraph-6CKq1pBHHQ.text-output{font-size:16px!important;font-weight:400}}.paragraph-6CKq1pBHHQ.text-output h1:first-child:before,.paragraph-6CKq1pBHHQ.text-output h2:first-child:before,.paragraph-6CKq1pBHHQ.text-output h3:first-child:before,.paragraph-6CKq1pBHHQ.text-output h4:first-child:before,.paragraph-6CKq1pBHHQ.text-output h5:first-child:before,.paragraph-6CKq1pBHHQ.text-output h6:first-child:before,.paragraph-6CKq1pBHHQ.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-tjEV3jdfXf h1,.sub-heading-tjEV3jdfXf h2,.sub-heading-tjEV3jdfXf h3,.sub-heading-tjEV3jdfXf h4,.sub-heading-tjEV3jdfXf h5,.sub-heading-tjEV3jdfXf h6,.sub-heading-tjEV3jdfXf ul li,.sub-heading-tjEV3jdfXf.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-tjEV3jdfXf h1,.sub-heading-tjEV3jdfXf h2,.sub-heading-tjEV3jdfXf h3,.sub-heading-tjEV3jdfXf h4,.sub-heading-tjEV3jdfXf h5,.sub-heading-tjEV3jdfXf h6,.sub-heading-tjEV3jdfXf ul li,.sub-heading-tjEV3jdfXf.text-output{font-size:18px!important;font-weight:400}}.sub-heading-Ie6JP0sg_S.text-output h1:first-child:before,.sub-heading-Ie6JP0sg_S.text-output h2:first-child:before,.sub-heading-Ie6JP0sg_S.text-output h3:first-child:before,.sub-heading-Ie6JP0sg_S.text-output h4:first-child:before,.sub-heading-Ie6JP0sg_S.text-output h5:first-child:before,.sub-heading-Ie6JP0sg_S.text-output h6:first-child:before,.sub-heading-Ie6JP0sg_S.text-output p:first-child:before,.sub-heading-QFGuL_DcuK.text-output h1:first-child:before,.sub-heading-QFGuL_DcuK.text-output h2:first-child:before,.sub-heading-QFGuL_DcuK.text-output h3:first-child:before,.sub-heading-QFGuL_DcuK.text-output h4:first-child:before,.sub-heading-QFGuL_DcuK.text-output h5:first-child:before,.sub-heading-QFGuL_DcuK.text-output h6:first-child:before,.sub-heading-QFGuL_DcuK.text-output p:first-child:before,.sub-heading-tjEV3jdfXf.text-output h1:first-child:before,.sub-heading-tjEV3jdfXf.text-output h2:first-child:before,.sub-heading-tjEV3jdfXf.text-output h3:first-child:before,.sub-heading-tjEV3jdfXf.text-output h4:first-child:before,.sub-heading-tjEV3jdfXf.text-output h5:first-child:before,.sub-heading-tjEV3jdfXf.text-output h6:first-child:before,.sub-heading-tjEV3jdfXf.text-output p:first-child:before,.sub-heading-wTHPsVslDr.text-output h1:first-child:before,.sub-heading-wTHPsVslDr.text-output h2:first-child:before,.sub-heading-wTHPsVslDr.text-output h3:first-child:before,.sub-heading-wTHPsVslDr.text-output h4:first-child:before,.sub-heading-wTHPsVslDr.text-output h5:first-child:before,.sub-heading-wTHPsVslDr.text-output h6:first-child:before,.sub-heading-wTHPsVslDr.text-output p:first-child:before{color:var(--text-color);content:'\';
82 − font-family: '';margin-right:5px;font-weight:700}#image-slider-riO8-nRuP5 .carousel{height:300px;width:100%}#image-slider-riO8-nRuP5 .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-riO8-nRuP5 .carousel__pagination-active{background:#fff}#image-slider-riO8-nRuP5 .carousel__pagination-inactive{background:#000}#image-slider-riO8-nRuP5 .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-QFGuL_DcuK h1,.sub-heading-QFGuL_DcuK h2,.sub-heading-QFGuL_DcuK h3,.sub-heading-QFGuL_DcuK h4,.sub-heading-QFGuL_DcuK h5,.sub-heading-QFGuL_DcuK h6,.sub-heading-QFGuL_DcuK ul li,.sub-heading-QFGuL_DcuK.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-QFGuL_DcuK h1,.sub-heading-QFGuL_DcuK h2,.sub-heading-QFGuL_DcuK h3,.sub-heading-QFGuL_DcuK h4,.sub-heading-QFGuL_DcuK h5,.sub-heading-QFGuL_DcuK h6,.sub-heading-QFGuL_DcuK ul li,.sub-heading-QFGuL_DcuK.text-output{font-size:18px!important;font-weight:400}}#col-eZcUywOtoD>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-eZcUywOtoD{animation:none!important}}.--mobile #col-eZcUywOtoD,.--mobile #row-xqyNcqfIXP{animation:none!important}@media screen and (min-width:481px) and (max-width:10000px){.button-zuF2gWpWDs .button-icon-end,.button-zuF2gWpWDs .button-icon-start,.button-zuF2gWpWDs .main-heading-button{font-size:16px;font-weight:500}.button-zuF2gWpWDs .button-icon-start{margin-right:5px}.button-zuF2gWpWDs .button-icon-end{margin-left:5px}.button-zuF2gWpWDs .sub-heading-button{font-size:15px;color:var(--white);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-zuF2gWpWDs .button-icon-end,.button-zuF2gWpWDs .button-icon-start,.button-zuF2gWpWDs .main-heading-button{font-size:18px;font-weight:500}.button-zuF2gWpWDs .button-icon-start{margin-right:5px}.button-zuF2gWpWDs .button-icon-end{margin-left:5px}.button-zuF2gWpWDs .sub-heading-button{font-size:15px;color:var(--white);font-weight:undefined}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-wTHPsVslDr h1,.sub-heading-wTHPsVslDr h2,.sub-heading-wTHPsVslDr h3,.sub-heading-wTHPsVslDr h4,.sub-heading-wTHPsVslDr h5,.sub-heading-wTHPsVslDr h6,.sub-heading-wTHPsVslDr ul li,.sub-heading-wTHPsVslDr.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-wTHPsVslDr h1,.sub-heading-wTHPsVslDr h2,.sub-heading-wTHPsVslDr h3,.sub-heading-wTHPsVslDr h4,.sub-heading-wTHPsVslDr h5,.sub-heading-wTHPsVslDr h6,.sub-heading-wTHPsVslDr ul li,.sub-heading-wTHPsVslDr.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-Ie6JP0sg_S h1,.sub-heading-Ie6JP0sg_S h2,.sub-heading-Ie6JP0sg_S h3,.sub-heading-Ie6JP0sg_S h4,.sub-heading-Ie6JP0sg_S h5,.sub-heading-Ie6JP0sg_S h6,.sub-heading-Ie6JP0sg_S ul li,.sub-heading-Ie6JP0sg_S.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-Ie6JP0sg_S h1,.sub-heading-Ie6JP0sg_S h2,.sub-heading-Ie6JP0sg_S h3,.sub-heading-Ie6JP0sg_S h4,.sub-heading-Ie6JP0sg_S h5,.sub-heading-Ie6JP0sg_S h6,.sub-heading-Ie6JP0sg_S ul li,.sub-heading-Ie6JP0sg_S.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-xqyNcqfIXP{animation:none!important}}#col-7TnZnvp0Oz>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-7TnZnvp0Oz{animation:none!important}}.--mobile #col-7TnZnvp0Oz{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-J0uGvb7QgA h1,.paragraph-J0uGvb7QgA h2,.paragraph-J0uGvb7QgA h3,.paragraph-J0uGvb7QgA h4,.paragraph-J0uGvb7QgA h5,.paragraph-J0uGvb7QgA h6,.paragraph-J0uGvb7QgA ul li,.paragraph-J0uGvb7QgA.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-J0uGvb7QgA h1,.paragraph-J0uGvb7QgA h2,.paragraph-J0uGvb7QgA h3,.paragraph-J0uGvb7QgA h4,.paragraph-J0uGvb7QgA h5,.paragraph-J0uGvb7QgA h6,.paragraph-J0uGvb7QgA ul li,.paragraph-J0uGvb7QgA.text-output{font-size:16px!important;font-weight:400}}.paragraph-J0uGvb7QgA.text-output h1:first-child:before,.paragraph-J0uGvb7QgA.text-output h2:first-child:before,.paragraph-J0uGvb7QgA.text-output h3:first-child:before,.paragraph-J0uGvb7QgA.text-output h4:first-child:before,.paragraph-J0uGvb7QgA.text-output h5:first-child:before,.paragraph-J0uGvb7QgA.text-output h6:first-child:before,.paragraph-J0uGvb7QgA.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-5SPJVqr9eu h1,.paragraph-5SPJVqr9eu h2,.paragraph-5SPJVqr9eu h3,.paragraph-5SPJVqr9eu h4,.paragraph-5SPJVqr9eu h5,.paragraph-5SPJVqr9eu h6,.paragraph-5SPJVqr9eu ul li,.paragraph-5SPJVqr9eu.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-5SPJVqr9eu h1,.paragraph-5SPJVqr9eu h2,.paragraph-5SPJVqr9eu h3,.paragraph-5SPJVqr9eu h4,.paragraph-5SPJVqr9eu h5,.paragraph-5SPJVqr9eu h6,.paragraph-5SPJVqr9eu ul li,.paragraph-5SPJVqr9eu.text-output{font-size:16px!important;font-weight:400}}.paragraph-5SPJVqr9eu.text-output h1:first-child:before,.paragraph-5SPJVqr9eu.text-output h2:first-child:before,.paragraph-5SPJVqr9eu.text-output h3:first-child:before,.paragraph-5SPJVqr9eu.text-output h4:first-child:before,.paragraph-5SPJVqr9eu.text-output h5:first-child:before,.paragraph-5SPJVqr9eu.text-output h6:first-child:before,.paragraph-5SPJVqr9eu.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-EhP-Pqjb6A h1,.paragraph-EhP-Pqjb6A h2,.paragraph-EhP-Pqjb6A h3,.paragraph-EhP-Pqjb6A h4,.paragraph-EhP-Pqjb6A h5,.paragraph-EhP-Pqjb6A h6,.paragraph-EhP-Pqjb6A ul li,.paragraph-EhP-Pqjb6A.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-EhP-Pqjb6A h1,.paragraph-EhP-Pqjb6A h2,.paragraph-EhP-Pqjb6A h3,.paragraph-EhP-Pqjb6A h4,.paragraph-EhP-Pqjb6A h5,.paragraph-EhP-Pqjb6A h6,.paragraph-EhP-Pqjb6A ul li,.paragraph-EhP-Pqjb6A.text-output{font-size:16px!important;font-weight:400}}.paragraph-EhP-Pqjb6A.text-output h1:first-child:before,.paragraph-EhP-Pqjb6A.text-output h2:first-child:before,.paragraph-EhP-Pqjb6A.text-output h3:first-child:before,.paragraph-EhP-Pqjb6A.text-output h4:first-child:before,.paragraph-EhP-Pqjb6A.text-output h5:first-child:before,.paragraph-EhP-Pqjb6A.text-output h6:first-child:before,.paragraph-EhP-Pqjb6A.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-wuMQ4HlRJH h1,.sub-heading-wuMQ4HlRJH h2,.sub-heading-wuMQ4HlRJH h3,.sub-heading-wuMQ4HlRJH h4,.sub-heading-wuMQ4HlRJH h5,.sub-heading-wuMQ4HlRJH h6,.sub-heading-wuMQ4HlRJH ul li,.sub-heading-wuMQ4HlRJH.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-wuMQ4HlRJH h1,.sub-heading-wuMQ4HlRJH h2,.sub-heading-wuMQ4HlRJH h3,.sub-heading-wuMQ4HlRJH h4,.sub-heading-wuMQ4HlRJH h5,.sub-heading-wuMQ4HlRJH h6,.sub-heading-wuMQ4HlRJH ul li,.sub-heading-wuMQ4HlRJH.text-output{font-size:18px!important;font-weight:400}}.sub-heading-YgPyfOmE5Z.text-output h1:first-child:before,.sub-heading-YgPyfOmE5Z.text-output h2:first-child:before,.sub-heading-YgPyfOmE5Z.text-output h3:first-child:before,.sub-heading-YgPyfOmE5Z.text-output h4:first-child:before,.sub-heading-YgPyfOmE5Z.text-output h5:first-child:before,.sub-heading-YgPyfOmE5Z.text-output h6:first-child:before,.sub-heading-YgPyfOmE5Z.text-output p:first-child:before,.sub-heading-dj_hT0pl6A.text-output h1:first-child:before,.sub-heading-dj_hT0pl6A.text-output h2:first-child:before,.sub-heading-dj_hT0pl6A.text-output h3:first-child:before,.sub-heading-dj_hT0pl6A.text-output h4:first-child:before,.sub-heading-dj_hT0pl6A.text-output h5:first-child:before,.sub-heading-dj_hT0pl6A.text-output h6:first-child:before,.sub-heading-dj_hT0pl6A.text-output p:first-child:before,.sub-heading-jNzPlB9vbm.text-output h1:first-child:before,.sub-heading-jNzPlB9vbm.text-output h2:first-child:before,.sub-heading-jNzPlB9vbm.text-output h3:first-child:before,.sub-heading-jNzPlB9vbm.text-output h4:first-child:before,.sub-heading-jNzPlB9vbm.text-output h5:first-child:before,.sub-heading-jNzPlB9vbm.text-output h6:first-child:before,.sub-heading-jNzPlB9vbm.text-output p:first-child:before,.sub-heading-wuMQ4HlRJH.text-output h1:first-child:before,.sub-heading-wuMQ4HlRJH.text-output h2:first-child:before,.sub-heading-wuMQ4HlRJH.text-output h3:first-child:before,.sub-heading-wuMQ4HlRJH.text-output h4:first-child:before,.sub-heading-wuMQ4HlRJH.text-output h5:first-child:before,.sub-heading-wuMQ4HlRJH.text-output h6:first-child:before,.sub-heading-wuMQ4HlRJH.text-output p:first-child:before{color:var(--text-color);content:'\';
83 − font-family: '';margin-right:5px;font-weight:700}#image-slider-0DcKAWgheV .carousel{height:300px;width:100%}#image-slider-0DcKAWgheV .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-0DcKAWgheV .carousel__pagination-active{background:#fff}#image-slider-0DcKAWgheV .carousel__pagination-inactive{background:#000}#image-slider-0DcKAWgheV .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-dj_hT0pl6A h1,.sub-heading-dj_hT0pl6A h2,.sub-heading-dj_hT0pl6A h3,.sub-heading-dj_hT0pl6A h4,.sub-heading-dj_hT0pl6A h5,.sub-heading-dj_hT0pl6A h6,.sub-heading-dj_hT0pl6A ul li,.sub-heading-dj_hT0pl6A.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-dj_hT0pl6A h1,.sub-heading-dj_hT0pl6A h2,.sub-heading-dj_hT0pl6A h3,.sub-heading-dj_hT0pl6A h4,.sub-heading-dj_hT0pl6A h5,.sub-heading-dj_hT0pl6A h6,.sub-heading-dj_hT0pl6A ul li,.sub-heading-dj_hT0pl6A.text-output{font-size:18px!important;font-weight:400}}#col-0BdY2ssDlw>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-0BdY2ssDlw{animation:none!important}}.--mobile #col-0BdY2ssDlw,.--mobile #row-m_Yt_bXEHI{animation:none!important}@media screen and (min-width:481px) and (max-width:10000px){.button-JjVPYMgs6z .button-icon-end,.button-JjVPYMgs6z .button-icon-start,.button-JjVPYMgs6z .main-heading-button{font-size:16px;font-weight:500}.button-JjVPYMgs6z .button-icon-start{margin-right:5px}.button-JjVPYMgs6z .button-icon-end{margin-left:5px}.button-JjVPYMgs6z .sub-heading-button{font-size:15px;color:var(--white);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-JjVPYMgs6z .button-icon-end,.button-JjVPYMgs6z .button-icon-start,.button-JjVPYMgs6z .main-heading-button{font-size:18px;font-weight:500}.button-JjVPYMgs6z .button-icon-start{margin-right:5px}.button-JjVPYMgs6z .button-icon-end{margin-left:5px}.button-JjVPYMgs6z .sub-heading-button{font-size:15px;color:var(--white);font-weight:undefined}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-YgPyfOmE5Z h1,.sub-heading-YgPyfOmE5Z h2,.sub-heading-YgPyfOmE5Z h3,.sub-heading-YgPyfOmE5Z h4,.sub-heading-YgPyfOmE5Z h5,.sub-heading-YgPyfOmE5Z h6,.sub-heading-YgPyfOmE5Z ul li,.sub-heading-YgPyfOmE5Z.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-YgPyfOmE5Z h1,.sub-heading-YgPyfOmE5Z h2,.sub-heading-YgPyfOmE5Z h3,.sub-heading-YgPyfOmE5Z h4,.sub-heading-YgPyfOmE5Z h5,.sub-heading-YgPyfOmE5Z h6,.sub-heading-YgPyfOmE5Z ul li,.sub-heading-YgPyfOmE5Z.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-jNzPlB9vbm h1,.sub-heading-jNzPlB9vbm h2,.sub-heading-jNzPlB9vbm h3,.sub-heading-jNzPlB9vbm h4,.sub-heading-jNzPlB9vbm h5,.sub-heading-jNzPlB9vbm h6,.sub-heading-jNzPlB9vbm ul li,.sub-heading-jNzPlB9vbm.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-jNzPlB9vbm h1,.sub-heading-jNzPlB9vbm h2,.sub-heading-jNzPlB9vbm h3,.sub-heading-jNzPlB9vbm h4,.sub-heading-jNzPlB9vbm h5,.sub-heading-jNzPlB9vbm h6,.sub-heading-jNzPlB9vbm ul li,.sub-heading-jNzPlB9vbm.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-m_Yt_bXEHI{animation:none!important}}#col-UWRaDC9Grz>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-UWRaDC9Grz{animation:none!important}}.--mobile #col-UWRaDC9Grz{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-e7_Jz94run h1,.paragraph-e7_Jz94run h2,.paragraph-e7_Jz94run h3,.paragraph-e7_Jz94run h4,.paragraph-e7_Jz94run h5,.paragraph-e7_Jz94run h6,.paragraph-e7_Jz94run ul li,.paragraph-e7_Jz94run.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-e7_Jz94run h1,.paragraph-e7_Jz94run h2,.paragraph-e7_Jz94run h3,.paragraph-e7_Jz94run h4,.paragraph-e7_Jz94run h5,.paragraph-e7_Jz94run h6,.paragraph-e7_Jz94run ul li,.paragraph-e7_Jz94run.text-output{font-size:16px!important;font-weight:400}}.paragraph-e7_Jz94run.text-output h1:first-child:before,.paragraph-e7_Jz94run.text-output h2:first-child:before,.paragraph-e7_Jz94run.text-output h3:first-child:before,.paragraph-e7_Jz94run.text-output h4:first-child:before,.paragraph-e7_Jz94run.text-output h5:first-child:before,.paragraph-e7_Jz94run.text-output h6:first-child:before,.paragraph-e7_Jz94run.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-koCOWm6nld h1,.paragraph-koCOWm6nld h2,.paragraph-koCOWm6nld h3,.paragraph-koCOWm6nld h4,.paragraph-koCOWm6nld h5,.paragraph-koCOWm6nld h6,.paragraph-koCOWm6nld ul li,.paragraph-koCOWm6nld.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-koCOWm6nld h1,.paragraph-koCOWm6nld h2,.paragraph-koCOWm6nld h3,.paragraph-koCOWm6nld h4,.paragraph-koCOWm6nld h5,.paragraph-koCOWm6nld h6,.paragraph-koCOWm6nld ul li,.paragraph-koCOWm6nld.text-output{font-size:16px!important;font-weight:400}}.paragraph-koCOWm6nld.text-output h1:first-child:before,.paragraph-koCOWm6nld.text-output h2:first-child:before,.paragraph-koCOWm6nld.text-output h3:first-child:before,.paragraph-koCOWm6nld.text-output h4:first-child:before,.paragraph-koCOWm6nld.text-output h5:first-child:before,.paragraph-koCOWm6nld.text-output h6:first-child:before,.paragraph-koCOWm6nld.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-ZidcqoUw0n h1,.paragraph-ZidcqoUw0n h2,.paragraph-ZidcqoUw0n h3,.paragraph-ZidcqoUw0n h4,.paragraph-ZidcqoUw0n h5,.paragraph-ZidcqoUw0n h6,.paragraph-ZidcqoUw0n ul li,.paragraph-ZidcqoUw0n.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-ZidcqoUw0n h1,.paragraph-ZidcqoUw0n h2,.paragraph-ZidcqoUw0n h3,.paragraph-ZidcqoUw0n h4,.paragraph-ZidcqoUw0n h5,.paragraph-ZidcqoUw0n h6,.paragraph-ZidcqoUw0n ul li,.paragraph-ZidcqoUw0n.text-output{font-size:16px!important;font-weight:400}}.paragraph-ZidcqoUw0n.text-output h1:first-child:before,.paragraph-ZidcqoUw0n.text-output h2:first-child:before,.paragraph-ZidcqoUw0n.text-output h3:first-child:before,.paragraph-ZidcqoUw0n.text-output h4:first-child:before,.paragraph-ZidcqoUw0n.text-output h5:first-child:before,.paragraph-ZidcqoUw0n.text-output h6:first-child:before,.paragraph-ZidcqoUw0n.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-ceUBsq0kuj h1,.sub-heading-ceUBsq0kuj h2,.sub-heading-ceUBsq0kuj h3,.sub-heading-ceUBsq0kuj h4,.sub-heading-ceUBsq0kuj h5,.sub-heading-ceUBsq0kuj h6,.sub-heading-ceUBsq0kuj ul li,.sub-heading-ceUBsq0kuj.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-ceUBsq0kuj h1,.sub-heading-ceUBsq0kuj h2,.sub-heading-ceUBsq0kuj h3,.sub-heading-ceUBsq0kuj h4,.sub-heading-ceUBsq0kuj h5,.sub-heading-ceUBsq0kuj h6,.sub-heading-ceUBsq0kuj ul li,.sub-heading-ceUBsq0kuj.text-output{font-size:18px!important;font-weight:400}}.sub-heading-4Ip_0iBotH.text-output h1:first-child:before,.sub-heading-4Ip_0iBotH.text-output h2:first-child:before,.sub-heading-4Ip_0iBotH.text-output h3:first-child:before,.sub-heading-4Ip_0iBotH.text-output h4:first-child:before,.sub-heading-4Ip_0iBotH.text-output h5:first-child:before,.sub-heading-4Ip_0iBotH.text-output h6:first-child:before,.sub-heading-4Ip_0iBotH.text-output p:first-child:before,.sub-heading-ceUBsq0kuj.text-output h1:first-child:before,.sub-heading-ceUBsq0kuj.text-output h2:first-child:before,.sub-heading-ceUBsq0kuj.text-output h3:first-child:before,.sub-heading-ceUBsq0kuj.text-output h4:first-child:before,.sub-heading-ceUBsq0kuj.text-output h5:first-child:before,.sub-heading-ceUBsq0kuj.text-output h6:first-child:before,.sub-heading-ceUBsq0kuj.text-output p:first-child:before,.sub-heading-pSNIku96t9.text-output h1:first-child:before,.sub-heading-pSNIku96t9.text-output h2:first-child:before,.sub-heading-pSNIku96t9.text-output h3:first-child:before,.sub-heading-pSNIku96t9.text-output h4:first-child:before,.sub-heading-pSNIku96t9.text-output h5:first-child:before,.sub-heading-pSNIku96t9.text-output h6:first-child:before,.sub-heading-pSNIku96t9.text-output p:first-child:before,.sub-heading-szNTcYEybj.text-output h1:first-child:before,.sub-heading-szNTcYEybj.text-output h2:first-child:before,.sub-heading-szNTcYEybj.text-output h3:first-child:before,.sub-heading-szNTcYEybj.text-output h4:first-child:before,.sub-heading-szNTcYEybj.text-output h5:first-child:before,.sub-heading-szNTcYEybj.text-output h6:first-child:before,.sub-heading-szNTcYEybj.text-output p:first-child:before{color:var(--text-color);content:'\';
84 − font-family: '';margin-right:5px;font-weight:700}#image-slider-eRqZbtNmeA .carousel{height:300px;width:100%}#image-slider-eRqZbtNmeA .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-eRqZbtNmeA .carousel__pagination-active{background:#fff}#image-slider-eRqZbtNmeA .carousel__pagination-inactive{background:#000}#image-slider-eRqZbtNmeA .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-szNTcYEybj h1,.sub-heading-szNTcYEybj h2,.sub-heading-szNTcYEybj h3,.sub-heading-szNTcYEybj h4,.sub-heading-szNTcYEybj h5,.sub-heading-szNTcYEybj h6,.sub-heading-szNTcYEybj ul li,.sub-heading-szNTcYEybj.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-szNTcYEybj h1,.sub-heading-szNTcYEybj h2,.sub-heading-szNTcYEybj h3,.sub-heading-szNTcYEybj h4,.sub-heading-szNTcYEybj h5,.sub-heading-szNTcYEybj h6,.sub-heading-szNTcYEybj ul li,.sub-heading-szNTcYEybj.text-output{font-size:18px!important;font-weight:400}}#col-Q4wU3xhreo>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-Q4wU3xhreo{animation:none!important}}.--mobile #col-Q4wU3xhreo,.--mobile #row-vKeRqlqG86{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-4Ip_0iBotH h1,.sub-heading-4Ip_0iBotH h2,.sub-heading-4Ip_0iBotH h3,.sub-heading-4Ip_0iBotH h4,.sub-heading-4Ip_0iBotH h5,.sub-heading-4Ip_0iBotH h6,.sub-heading-4Ip_0iBotH ul li,.sub-heading-4Ip_0iBotH.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-4Ip_0iBotH h1,.sub-heading-4Ip_0iBotH h2,.sub-heading-4Ip_0iBotH h3,.sub-heading-4Ip_0iBotH h4,.sub-heading-4Ip_0iBotH h5,.sub-heading-4Ip_0iBotH h6,.sub-heading-4Ip_0iBotH ul li,.sub-heading-4Ip_0iBotH.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-pSNIku96t9 h1,.sub-heading-pSNIku96t9 h2,.sub-heading-pSNIku96t9 h3,.sub-heading-pSNIku96t9 h4,.sub-heading-pSNIku96t9 h5,.sub-heading-pSNIku96t9 h6,.sub-heading-pSNIku96t9 ul li,.sub-heading-pSNIku96t9.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-pSNIku96t9 h1,.sub-heading-pSNIku96t9 h2,.sub-heading-pSNIku96t9 h3,.sub-heading-pSNIku96t9 h4,.sub-heading-pSNIku96t9 h5,.sub-heading-pSNIku96t9 h6,.sub-heading-pSNIku96t9 ul li,.sub-heading-pSNIku96t9.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-vKeRqlqG86{animation:none!important}}#col-NMqctrhnDW>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-NMqctrhnDW{animation:none!important}}.--mobile #col-NMqctrhnDW{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-xe9HN-aaED h1,.paragraph-xe9HN-aaED h2,.paragraph-xe9HN-aaED h3,.paragraph-xe9HN-aaED h4,.paragraph-xe9HN-aaED h5,.paragraph-xe9HN-aaED h6,.paragraph-xe9HN-aaED ul li,.paragraph-xe9HN-aaED.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-xe9HN-aaED h1,.paragraph-xe9HN-aaED h2,.paragraph-xe9HN-aaED h3,.paragraph-xe9HN-aaED h4,.paragraph-xe9HN-aaED h5,.paragraph-xe9HN-aaED h6,.paragraph-xe9HN-aaED ul li,.paragraph-xe9HN-aaED.text-output{font-size:16px!important;font-weight:400}}.paragraph-xe9HN-aaED.text-output h1:first-child:before,.paragraph-xe9HN-aaED.text-output h2:first-child:before,.paragraph-xe9HN-aaED.text-output h3:first-child:before,.paragraph-xe9HN-aaED.text-output h4:first-child:before,.paragraph-xe9HN-aaED.text-output h5:first-child:before,.paragraph-xe9HN-aaED.text-output h6:first-child:before,.paragraph-xe9HN-aaED.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-id85VbnU5o h1,.paragraph-id85VbnU5o h2,.paragraph-id85VbnU5o h3,.paragraph-id85VbnU5o h4,.paragraph-id85VbnU5o h5,.paragraph-id85VbnU5o h6,.paragraph-id85VbnU5o ul li,.paragraph-id85VbnU5o.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-id85VbnU5o h1,.paragraph-id85VbnU5o h2,.paragraph-id85VbnU5o h3,.paragraph-id85VbnU5o h4,.paragraph-id85VbnU5o h5,.paragraph-id85VbnU5o h6,.paragraph-id85VbnU5o ul li,.paragraph-id85VbnU5o.text-output{font-size:16px!important;font-weight:400}}.paragraph-id85VbnU5o.text-output h1:first-child:before,.paragraph-id85VbnU5o.text-output h2:first-child:before,.paragraph-id85VbnU5o.text-output h3:first-child:before,.paragraph-id85VbnU5o.text-output h4:first-child:before,.paragraph-id85VbnU5o.text-output h5:first-child:before,.paragraph-id85VbnU5o.text-output h6:first-child:before,.paragraph-id85VbnU5o.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-HgG_vA5ANo h1,.paragraph-HgG_vA5ANo h2,.paragraph-HgG_vA5ANo h3,.paragraph-HgG_vA5ANo h4,.paragraph-HgG_vA5ANo h5,.paragraph-HgG_vA5ANo h6,.paragraph-HgG_vA5ANo ul li,.paragraph-HgG_vA5ANo.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-HgG_vA5ANo h1,.paragraph-HgG_vA5ANo h2,.paragraph-HgG_vA5ANo h3,.paragraph-HgG_vA5ANo h4,.paragraph-HgG_vA5ANo h5,.paragraph-HgG_vA5ANo h6,.paragraph-HgG_vA5ANo ul li,.paragraph-HgG_vA5ANo.text-output{font-size:16px!important;font-weight:400}}.paragraph-HgG_vA5ANo.text-output h1:first-child:before,.paragraph-HgG_vA5ANo.text-output h2:first-child:before,.paragraph-HgG_vA5ANo.text-output h3:first-child:before,.paragraph-HgG_vA5ANo.text-output h4:first-child:before,.paragraph-HgG_vA5ANo.text-output h5:first-child:before,.paragraph-HgG_vA5ANo.text-output h6:first-child:before,.paragraph-HgG_vA5ANo.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-8ux0_f0cmY h1,.sub-heading-8ux0_f0cmY h2,.sub-heading-8ux0_f0cmY h3,.sub-heading-8ux0_f0cmY h4,.sub-heading-8ux0_f0cmY h5,.sub-heading-8ux0_f0cmY h6,.sub-heading-8ux0_f0cmY ul li,.sub-heading-8ux0_f0cmY.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-8ux0_f0cmY h1,.sub-heading-8ux0_f0cmY h2,.sub-heading-8ux0_f0cmY h3,.sub-heading-8ux0_f0cmY h4,.sub-heading-8ux0_f0cmY h5,.sub-heading-8ux0_f0cmY h6,.sub-heading-8ux0_f0cmY ul li,.sub-heading-8ux0_f0cmY.text-output{font-size:18px!important;font-weight:400}}.sub-heading-8ux0_f0cmY.text-output h1:first-child:before,.sub-heading-8ux0_f0cmY.text-output h2:first-child:before,.sub-heading-8ux0_f0cmY.text-output h3:first-child:before,.sub-heading-8ux0_f0cmY.text-output h4:first-child:before,.sub-heading-8ux0_f0cmY.text-output h5:first-child:before,.sub-heading-8ux0_f0cmY.text-output h6:first-child:before,.sub-heading-8ux0_f0cmY.text-output p:first-child:before,.sub-heading-GcoF6xvHoC.text-output h1:first-child:before,.sub-heading-GcoF6xvHoC.text-output h2:first-child:before,.sub-heading-GcoF6xvHoC.text-output h3:first-child:before,.sub-heading-GcoF6xvHoC.text-output h4:first-child:before,.sub-heading-GcoF6xvHoC.text-output h5:first-child:before,.sub-heading-GcoF6xvHoC.text-output h6:first-child:before,.sub-heading-GcoF6xvHoC.text-output p:first-child:before,.sub-heading-bdOY_Wzviu.text-output h1:first-child:before,.sub-heading-bdOY_Wzviu.text-output h2:first-child:before,.sub-heading-bdOY_Wzviu.text-output h3:first-child:before,.sub-heading-bdOY_Wzviu.text-output h4:first-child:before,.sub-heading-bdOY_Wzviu.text-output h5:first-child:before,.sub-heading-bdOY_Wzviu.text-output h6:first-child:before,.sub-heading-bdOY_Wzviu.text-output p:first-child:before,.sub-heading-dwtEAsmPGN.text-output h1:first-child:before,.sub-heading-dwtEAsmPGN.text-output h2:first-child:before,.sub-heading-dwtEAsmPGN.text-output h3:first-child:before,.sub-heading-dwtEAsmPGN.text-output h4:first-child:before,.sub-heading-dwtEAsmPGN.text-output h5:first-child:before,.sub-heading-dwtEAsmPGN.text-output h6:first-child:before,.sub-heading-dwtEAsmPGN.text-output p:first-child:before{color:var(--text-color);content:'\';
85 − font-family: '';margin-right:5px;font-weight:700}#image-slider-CeKWjGzG_E .carousel{height:300px;width:100%}#image-slider-CeKWjGzG_E .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-CeKWjGzG_E .carousel__pagination-active{background:#fff}#image-slider-CeKWjGzG_E .carousel__pagination-inactive{background:#000}#image-slider-CeKWjGzG_E .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-GcoF6xvHoC h1,.sub-heading-GcoF6xvHoC h2,.sub-heading-GcoF6xvHoC h3,.sub-heading-GcoF6xvHoC h4,.sub-heading-GcoF6xvHoC h5,.sub-heading-GcoF6xvHoC h6,.sub-heading-GcoF6xvHoC ul li,.sub-heading-GcoF6xvHoC.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-GcoF6xvHoC h1,.sub-heading-GcoF6xvHoC h2,.sub-heading-GcoF6xvHoC h3,.sub-heading-GcoF6xvHoC h4,.sub-heading-GcoF6xvHoC h5,.sub-heading-GcoF6xvHoC h6,.sub-heading-GcoF6xvHoC ul li,.sub-heading-GcoF6xvHoC.text-output{font-size:18px!important;font-weight:400}}#col-W39DtM6M4H>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-W39DtM6M4H{animation:none!important}}.--mobile #col-W39DtM6M4H,.--mobile #row-R1cm8G6K1l{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-bdOY_Wzviu h1,.sub-heading-bdOY_Wzviu h2,.sub-heading-bdOY_Wzviu h3,.sub-heading-bdOY_Wzviu h4,.sub-heading-bdOY_Wzviu h5,.sub-heading-bdOY_Wzviu h6,.sub-heading-bdOY_Wzviu ul li,.sub-heading-bdOY_Wzviu.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-bdOY_Wzviu h1,.sub-heading-bdOY_Wzviu h2,.sub-heading-bdOY_Wzviu h3,.sub-heading-bdOY_Wzviu h4,.sub-heading-bdOY_Wzviu h5,.sub-heading-bdOY_Wzviu h6,.sub-heading-bdOY_Wzviu ul li,.sub-heading-bdOY_Wzviu.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-dwtEAsmPGN h1,.sub-heading-dwtEAsmPGN h2,.sub-heading-dwtEAsmPGN h3,.sub-heading-dwtEAsmPGN h4,.sub-heading-dwtEAsmPGN h5,.sub-heading-dwtEAsmPGN h6,.sub-heading-dwtEAsmPGN ul li,.sub-heading-dwtEAsmPGN.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-dwtEAsmPGN h1,.sub-heading-dwtEAsmPGN h2,.sub-heading-dwtEAsmPGN h3,.sub-heading-dwtEAsmPGN h4,.sub-heading-dwtEAsmPGN h5,.sub-heading-dwtEAsmPGN h6,.sub-heading-dwtEAsmPGN ul li,.sub-heading-dwtEAsmPGN.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-R1cm8G6K1l{animation:none!important}}#col-ixkz30M7i1>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-ixkz30M7i1{animation:none!important}}.--mobile #col-ixkz30M7i1{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-kMr0FdCf6m h1,.paragraph-kMr0FdCf6m h2,.paragraph-kMr0FdCf6m h3,.paragraph-kMr0FdCf6m h4,.paragraph-kMr0FdCf6m h5,.paragraph-kMr0FdCf6m h6,.paragraph-kMr0FdCf6m ul li,.paragraph-kMr0FdCf6m.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-kMr0FdCf6m h1,.paragraph-kMr0FdCf6m h2,.paragraph-kMr0FdCf6m h3,.paragraph-kMr0FdCf6m h4,.paragraph-kMr0FdCf6m h5,.paragraph-kMr0FdCf6m h6,.paragraph-kMr0FdCf6m ul li,.paragraph-kMr0FdCf6m.text-output{font-size:16px!important;font-weight:400}}.paragraph-kMr0FdCf6m.text-output h1:first-child:before,.paragraph-kMr0FdCf6m.text-output h2:first-child:before,.paragraph-kMr0FdCf6m.text-output h3:first-child:before,.paragraph-kMr0FdCf6m.text-output h4:first-child:before,.paragraph-kMr0FdCf6m.text-output h5:first-child:before,.paragraph-kMr0FdCf6m.text-output h6:first-child:before,.paragraph-kMr0FdCf6m.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-ED8lURGOhn h1,.paragraph-ED8lURGOhn h2,.paragraph-ED8lURGOhn h3,.paragraph-ED8lURGOhn h4,.paragraph-ED8lURGOhn h5,.paragraph-ED8lURGOhn h6,.paragraph-ED8lURGOhn ul li,.paragraph-ED8lURGOhn.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-ED8lURGOhn h1,.paragraph-ED8lURGOhn h2,.paragraph-ED8lURGOhn h3,.paragraph-ED8lURGOhn h4,.paragraph-ED8lURGOhn h5,.paragraph-ED8lURGOhn h6,.paragraph-ED8lURGOhn ul li,.paragraph-ED8lURGOhn.text-output{font-size:16px!important;font-weight:400}}.paragraph-ED8lURGOhn.text-output h1:first-child:before,.paragraph-ED8lURGOhn.text-output h2:first-child:before,.paragraph-ED8lURGOhn.text-output h3:first-child:before,.paragraph-ED8lURGOhn.text-output h4:first-child:before,.paragraph-ED8lURGOhn.text-output h5:first-child:before,.paragraph-ED8lURGOhn.text-output h6:first-child:before,.paragraph-ED8lURGOhn.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-4HAX9Ca-EU h1,.paragraph-4HAX9Ca-EU h2,.paragraph-4HAX9Ca-EU h3,.paragraph-4HAX9Ca-EU h4,.paragraph-4HAX9Ca-EU h5,.paragraph-4HAX9Ca-EU h6,.paragraph-4HAX9Ca-EU ul li,.paragraph-4HAX9Ca-EU.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-4HAX9Ca-EU h1,.paragraph-4HAX9Ca-EU h2,.paragraph-4HAX9Ca-EU h3,.paragraph-4HAX9Ca-EU h4,.paragraph-4HAX9Ca-EU h5,.paragraph-4HAX9Ca-EU h6,.paragraph-4HAX9Ca-EU ul li,.paragraph-4HAX9Ca-EU.text-output{font-size:16px!important;font-weight:400}}.paragraph-4HAX9Ca-EU.text-output h1:first-child:before,.paragraph-4HAX9Ca-EU.text-output h2:first-child:before,.paragraph-4HAX9Ca-EU.text-output h3:first-child:before,.paragraph-4HAX9Ca-EU.text-output h4:first-child:before,.paragraph-4HAX9Ca-EU.text-output h5:first-child:before,.paragraph-4HAX9Ca-EU.text-output h6:first-child:before,.paragraph-4HAX9Ca-EU.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-Gpy-SIZp54 h1,.sub-heading-Gpy-SIZp54 h2,.sub-heading-Gpy-SIZp54 h3,.sub-heading-Gpy-SIZp54 h4,.sub-heading-Gpy-SIZp54 h5,.sub-heading-Gpy-SIZp54 h6,.sub-heading-Gpy-SIZp54 ul li,.sub-heading-Gpy-SIZp54.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-Gpy-SIZp54 h1,.sub-heading-Gpy-SIZp54 h2,.sub-heading-Gpy-SIZp54 h3,.sub-heading-Gpy-SIZp54 h4,.sub-heading-Gpy-SIZp54 h5,.sub-heading-Gpy-SIZp54 h6,.sub-heading-Gpy-SIZp54 ul li,.sub-heading-Gpy-SIZp54.text-output{font-size:18px!important;font-weight:400}}.sub-heading-4nu7x0-N_h.text-output h1:first-child:before,.sub-heading-4nu7x0-N_h.text-output h2:first-child:before,.sub-heading-4nu7x0-N_h.text-output h3:first-child:before,.sub-heading-4nu7x0-N_h.text-output h4:first-child:before,.sub-heading-4nu7x0-N_h.text-output h5:first-child:before,.sub-heading-4nu7x0-N_h.text-output h6:first-child:before,.sub-heading-4nu7x0-N_h.text-output p:first-child:before,.sub-heading-Gpy-SIZp54.text-output h1:first-child:before,.sub-heading-Gpy-SIZp54.text-output h2:first-child:before,.sub-heading-Gpy-SIZp54.text-output h3:first-child:before,.sub-heading-Gpy-SIZp54.text-output h4:first-child:before,.sub-heading-Gpy-SIZp54.text-output h5:first-child:before,.sub-heading-Gpy-SIZp54.text-output h6:first-child:before,.sub-heading-Gpy-SIZp54.text-output p:first-child:before,.sub-heading-RaYk9nFP_n.text-output h1:first-child:before,.sub-heading-RaYk9nFP_n.text-output h2:first-child:before,.sub-heading-RaYk9nFP_n.text-output h3:first-child:before,.sub-heading-RaYk9nFP_n.text-output h4:first-child:before,.sub-heading-RaYk9nFP_n.text-output h5:first-child:before,.sub-heading-RaYk9nFP_n.text-output h6:first-child:before,.sub-heading-RaYk9nFP_n.text-output p:first-child:before,.sub-heading-l5Tul3SYB8.text-output h1:first-child:before,.sub-heading-l5Tul3SYB8.text-output h2:first-child:before,.sub-heading-l5Tul3SYB8.text-output h3:first-child:before,.sub-heading-l5Tul3SYB8.text-output h4:first-child:before,.sub-heading-l5Tul3SYB8.text-output h5:first-child:before,.sub-heading-l5Tul3SYB8.text-output h6:first-child:before,.sub-heading-l5Tul3SYB8.text-output p:first-child:before{color:var(--text-color);content:'\';
86 − font-family: '';margin-right:5px;font-weight:700}#image-slider-K91ox7l21J .carousel{height:300px;width:100%}#image-slider-K91ox7l21J .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-K91ox7l21J .carousel__pagination-active{background:#fff}#image-slider-K91ox7l21J .carousel__pagination-inactive{background:#000}#image-slider-K91ox7l21J .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-4nu7x0-N_h h1,.sub-heading-4nu7x0-N_h h2,.sub-heading-4nu7x0-N_h h3,.sub-heading-4nu7x0-N_h h4,.sub-heading-4nu7x0-N_h h5,.sub-heading-4nu7x0-N_h h6,.sub-heading-4nu7x0-N_h ul li,.sub-heading-4nu7x0-N_h.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-4nu7x0-N_h h1,.sub-heading-4nu7x0-N_h h2,.sub-heading-4nu7x0-N_h h3,.sub-heading-4nu7x0-N_h h4,.sub-heading-4nu7x0-N_h h5,.sub-heading-4nu7x0-N_h h6,.sub-heading-4nu7x0-N_h ul li,.sub-heading-4nu7x0-N_h.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-AXTeGWxz-Ld{animation:none!important}}.--mobile #row-AXTeGWxz-Ld{animation:none!important}#col-maREh0vwPA>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-maREh0vwPA{animation:none!important}}.--mobile #col-maREh0vwPA,.--mobile #row-hjdHkZaMtO{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-l5Tul3SYB8 h1,.sub-heading-l5Tul3SYB8 h2,.sub-heading-l5Tul3SYB8 h3,.sub-heading-l5Tul3SYB8 h4,.sub-heading-l5Tul3SYB8 h5,.sub-heading-l5Tul3SYB8 h6,.sub-heading-l5Tul3SYB8 ul li,.sub-heading-l5Tul3SYB8.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-l5Tul3SYB8 h1,.sub-heading-l5Tul3SYB8 h2,.sub-heading-l5Tul3SYB8 h3,.sub-heading-l5Tul3SYB8 h4,.sub-heading-l5Tul3SYB8 h5,.sub-heading-l5Tul3SYB8 h6,.sub-heading-l5Tul3SYB8 ul li,.sub-heading-l5Tul3SYB8.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-RaYk9nFP_n h1,.sub-heading-RaYk9nFP_n h2,.sub-heading-RaYk9nFP_n h3,.sub-heading-RaYk9nFP_n h4,.sub-heading-RaYk9nFP_n h5,.sub-heading-RaYk9nFP_n h6,.sub-heading-RaYk9nFP_n ul li,.sub-heading-RaYk9nFP_n.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-RaYk9nFP_n h1,.sub-heading-RaYk9nFP_n h2,.sub-heading-RaYk9nFP_n h3,.sub-heading-RaYk9nFP_n h4,.sub-heading-RaYk9nFP_n h5,.sub-heading-RaYk9nFP_n h6,.sub-heading-RaYk9nFP_n ul li,.sub-heading-RaYk9nFP_n.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-hjdHkZaMtO{animation:none!important}}#col-b7vKLa55Kt>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-b7vKLa55Kt{animation:none!important}}.--mobile #col-b7vKLa55Kt{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-lepTuUXuNh h1,.paragraph-lepTuUXuNh h2,.paragraph-lepTuUXuNh h3,.paragraph-lepTuUXuNh h4,.paragraph-lepTuUXuNh h5,.paragraph-lepTuUXuNh h6,.paragraph-lepTuUXuNh ul li,.paragraph-lepTuUXuNh.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-lepTuUXuNh h1,.paragraph-lepTuUXuNh h2,.paragraph-lepTuUXuNh h3,.paragraph-lepTuUXuNh h4,.paragraph-lepTuUXuNh h5,.paragraph-lepTuUXuNh h6,.paragraph-lepTuUXuNh ul li,.paragraph-lepTuUXuNh.text-output{font-size:16px!important;font-weight:400}}.paragraph-lepTuUXuNh.text-output h1:first-child:before,.paragraph-lepTuUXuNh.text-output h2:first-child:before,.paragraph-lepTuUXuNh.text-output h3:first-child:before,.paragraph-lepTuUXuNh.text-output h4:first-child:before,.paragraph-lepTuUXuNh.text-output h5:first-child:before,.paragraph-lepTuUXuNh.text-output h6:first-child:before,.paragraph-lepTuUXuNh.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-WACCbQ0V0r h1,.paragraph-WACCbQ0V0r h2,.paragraph-WACCbQ0V0r h3,.paragraph-WACCbQ0V0r h4,.paragraph-WACCbQ0V0r h5,.paragraph-WACCbQ0V0r h6,.paragraph-WACCbQ0V0r ul li,.paragraph-WACCbQ0V0r.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-WACCbQ0V0r h1,.paragraph-WACCbQ0V0r h2,.paragraph-WACCbQ0V0r h3,.paragraph-WACCbQ0V0r h4,.paragraph-WACCbQ0V0r h5,.paragraph-WACCbQ0V0r h6,.paragraph-WACCbQ0V0r ul li,.paragraph-WACCbQ0V0r.text-output{font-size:16px!important;font-weight:400}}.paragraph-WACCbQ0V0r.text-output h1:first-child:before,.paragraph-WACCbQ0V0r.text-output h2:first-child:before,.paragraph-WACCbQ0V0r.text-output h3:first-child:before,.paragraph-WACCbQ0V0r.text-output h4:first-child:before,.paragraph-WACCbQ0V0r.text-output h5:first-child:before,.paragraph-WACCbQ0V0r.text-output h6:first-child:before,.paragraph-WACCbQ0V0r.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-tKw7u61AHu h1,.paragraph-tKw7u61AHu h2,.paragraph-tKw7u61AHu h3,.paragraph-tKw7u61AHu h4,.paragraph-tKw7u61AHu h5,.paragraph-tKw7u61AHu h6,.paragraph-tKw7u61AHu ul li,.paragraph-tKw7u61AHu.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-tKw7u61AHu h1,.paragraph-tKw7u61AHu h2,.paragraph-tKw7u61AHu h3,.paragraph-tKw7u61AHu h4,.paragraph-tKw7u61AHu h5,.paragraph-tKw7u61AHu h6,.paragraph-tKw7u61AHu ul li,.paragraph-tKw7u61AHu.text-output{font-size:16px!important;font-weight:400}}.paragraph-tKw7u61AHu.text-output h1:first-child:before,.paragraph-tKw7u61AHu.text-output h2:first-child:before,.paragraph-tKw7u61AHu.text-output h3:first-child:before,.paragraph-tKw7u61AHu.text-output h4:first-child:before,.paragraph-tKw7u61AHu.text-output h5:first-child:before,.paragraph-tKw7u61AHu.text-output h6:first-child:before,.paragraph-tKw7u61AHu.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-bLU3UQb9Zi h1,.sub-heading-bLU3UQb9Zi h2,.sub-heading-bLU3UQb9Zi h3,.sub-heading-bLU3UQb9Zi h4,.sub-heading-bLU3UQb9Zi h5,.sub-heading-bLU3UQb9Zi h6,.sub-heading-bLU3UQb9Zi ul li,.sub-heading-bLU3UQb9Zi.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-bLU3UQb9Zi h1,.sub-heading-bLU3UQb9Zi h2,.sub-heading-bLU3UQb9Zi h3,.sub-heading-bLU3UQb9Zi h4,.sub-heading-bLU3UQb9Zi h5,.sub-heading-bLU3UQb9Zi h6,.sub-heading-bLU3UQb9Zi ul li,.sub-heading-bLU3UQb9Zi.text-output{font-size:18px!important;font-weight:400}}.sub-heading-9_c7U6TEGM.text-output h1:first-child:before,.sub-heading-9_c7U6TEGM.text-output h2:first-child:before,.sub-heading-9_c7U6TEGM.text-output h3:first-child:before,.sub-heading-9_c7U6TEGM.text-output h4:first-child:before,.sub-heading-9_c7U6TEGM.text-output h5:first-child:before,.sub-heading-9_c7U6TEGM.text-output h6:first-child:before,.sub-heading-9_c7U6TEGM.text-output p:first-child:before,.sub-heading-DSf2kux6uj.text-output h1:first-child:before,.sub-heading-DSf2kux6uj.text-output h2:first-child:before,.sub-heading-DSf2kux6uj.text-output h3:first-child:before,.sub-heading-DSf2kux6uj.text-output h4:first-child:before,.sub-heading-DSf2kux6uj.text-output h5:first-child:before,.sub-heading-DSf2kux6uj.text-output h6:first-child:before,.sub-heading-DSf2kux6uj.text-output p:first-child:before,.sub-heading-FVVh8D9G3M.text-output h1:first-child:before,.sub-heading-FVVh8D9G3M.text-output h2:first-child:before,.sub-heading-FVVh8D9G3M.text-output h3:first-child:before,.sub-heading-FVVh8D9G3M.text-output h4:first-child:before,.sub-heading-FVVh8D9G3M.text-output h5:first-child:before,.sub-heading-FVVh8D9G3M.text-output h6:first-child:before,.sub-heading-FVVh8D9G3M.text-output p:first-child:before,.sub-heading-bLU3UQb9Zi.text-output h1:first-child:before,.sub-heading-bLU3UQb9Zi.text-output h2:first-child:before,.sub-heading-bLU3UQb9Zi.text-output h3:first-child:before,.sub-heading-bLU3UQb9Zi.text-output h4:first-child:before,.sub-heading-bLU3UQb9Zi.text-output h5:first-child:before,.sub-heading-bLU3UQb9Zi.text-output h6:first-child:before,.sub-heading-bLU3UQb9Zi.text-output p:first-child:before{color:var(--text-color);content:'\';
87 − font-family: '';margin-right:5px;font-weight:700}#image-slider-9ftVM9OWVJ .carousel{height:300px;width:100%}#image-slider-9ftVM9OWVJ .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-9ftVM9OWVJ .carousel__pagination-active{background:#fff}#image-slider-9ftVM9OWVJ .carousel__pagination-inactive{background:#000}#image-slider-9ftVM9OWVJ .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-FVVh8D9G3M h1,.sub-heading-FVVh8D9G3M h2,.sub-heading-FVVh8D9G3M h3,.sub-heading-FVVh8D9G3M h4,.sub-heading-FVVh8D9G3M h5,.sub-heading-FVVh8D9G3M h6,.sub-heading-FVVh8D9G3M ul li,.sub-heading-FVVh8D9G3M.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-FVVh8D9G3M h1,.sub-heading-FVVh8D9G3M h2,.sub-heading-FVVh8D9G3M h3,.sub-heading-FVVh8D9G3M h4,.sub-heading-FVVh8D9G3M h5,.sub-heading-FVVh8D9G3M h6,.sub-heading-FVVh8D9G3M ul li,.sub-heading-FVVh8D9G3M.text-output{font-size:18px!important;font-weight:400}}#col-gXGaYC3mUA>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-gXGaYC3mUA{animation:none!important}}.--mobile #col-gXGaYC3mUA,.--mobile #row-FvKdm-vCdY{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-9_c7U6TEGM h1,.sub-heading-9_c7U6TEGM h2,.sub-heading-9_c7U6TEGM h3,.sub-heading-9_c7U6TEGM h4,.sub-heading-9_c7U6TEGM h5,.sub-heading-9_c7U6TEGM h6,.sub-heading-9_c7U6TEGM ul li,.sub-heading-9_c7U6TEGM.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-9_c7U6TEGM h1,.sub-heading-9_c7U6TEGM h2,.sub-heading-9_c7U6TEGM h3,.sub-heading-9_c7U6TEGM h4,.sub-heading-9_c7U6TEGM h5,.sub-heading-9_c7U6TEGM h6,.sub-heading-9_c7U6TEGM ul li,.sub-heading-9_c7U6TEGM.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-DSf2kux6uj h1,.sub-heading-DSf2kux6uj h2,.sub-heading-DSf2kux6uj h3,.sub-heading-DSf2kux6uj h4,.sub-heading-DSf2kux6uj h5,.sub-heading-DSf2kux6uj h6,.sub-heading-DSf2kux6uj ul li,.sub-heading-DSf2kux6uj.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-DSf2kux6uj h1,.sub-heading-DSf2kux6uj h2,.sub-heading-DSf2kux6uj h3,.sub-heading-DSf2kux6uj h4,.sub-heading-DSf2kux6uj h5,.sub-heading-DSf2kux6uj h6,.sub-heading-DSf2kux6uj ul li,.sub-heading-DSf2kux6uj.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-FvKdm-vCdY{animation:none!important}}#col-G974YejYr8>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-G974YejYr8{animation:none!important}}.--mobile #col-G974YejYr8{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-dKojknH68T h1,.paragraph-dKojknH68T h2,.paragraph-dKojknH68T h3,.paragraph-dKojknH68T h4,.paragraph-dKojknH68T h5,.paragraph-dKojknH68T h6,.paragraph-dKojknH68T ul li,.paragraph-dKojknH68T.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-dKojknH68T h1,.paragraph-dKojknH68T h2,.paragraph-dKojknH68T h3,.paragraph-dKojknH68T h4,.paragraph-dKojknH68T h5,.paragraph-dKojknH68T h6,.paragraph-dKojknH68T ul li,.paragraph-dKojknH68T.text-output{font-size:16px!important;font-weight:400}}.paragraph-dKojknH68T.text-output h1:first-child:before,.paragraph-dKojknH68T.text-output h2:first-child:before,.paragraph-dKojknH68T.text-output h3:first-child:before,.paragraph-dKojknH68T.text-output h4:first-child:before,.paragraph-dKojknH68T.text-output h5:first-child:before,.paragraph-dKojknH68T.text-output h6:first-child:before,.paragraph-dKojknH68T.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-lh3Hu7vp5F h1,.paragraph-lh3Hu7vp5F h2,.paragraph-lh3Hu7vp5F h3,.paragraph-lh3Hu7vp5F h4,.paragraph-lh3Hu7vp5F h5,.paragraph-lh3Hu7vp5F h6,.paragraph-lh3Hu7vp5F ul li,.paragraph-lh3Hu7vp5F.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-lh3Hu7vp5F h1,.paragraph-lh3Hu7vp5F h2,.paragraph-lh3Hu7vp5F h3,.paragraph-lh3Hu7vp5F h4,.paragraph-lh3Hu7vp5F h5,.paragraph-lh3Hu7vp5F h6,.paragraph-lh3Hu7vp5F ul li,.paragraph-lh3Hu7vp5F.text-output{font-size:16px!important;font-weight:400}}.paragraph-lh3Hu7vp5F.text-output h1:first-child:before,.paragraph-lh3Hu7vp5F.text-output h2:first-child:before,.paragraph-lh3Hu7vp5F.text-output h3:first-child:before,.paragraph-lh3Hu7vp5F.text-output h4:first-child:before,.paragraph-lh3Hu7vp5F.text-output h5:first-child:before,.paragraph-lh3Hu7vp5F.text-output h6:first-child:before,.paragraph-lh3Hu7vp5F.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-13eT01scuR h1,.paragraph-13eT01scuR h2,.paragraph-13eT01scuR h3,.paragraph-13eT01scuR h4,.paragraph-13eT01scuR h5,.paragraph-13eT01scuR h6,.paragraph-13eT01scuR ul li,.paragraph-13eT01scuR.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-13eT01scuR h1,.paragraph-13eT01scuR h2,.paragraph-13eT01scuR h3,.paragraph-13eT01scuR h4,.paragraph-13eT01scuR h5,.paragraph-13eT01scuR h6,.paragraph-13eT01scuR ul li,.paragraph-13eT01scuR.text-output{font-size:16px!important;font-weight:400}}.paragraph-13eT01scuR.text-output h1:first-child:before,.paragraph-13eT01scuR.text-output h2:first-child:before,.paragraph-13eT01scuR.text-output h3:first-child:before,.paragraph-13eT01scuR.text-output h4:first-child:before,.paragraph-13eT01scuR.text-output h5:first-child:before,.paragraph-13eT01scuR.text-output h6:first-child:before,.paragraph-13eT01scuR.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-CPSsjYF9pH h1,.sub-heading-CPSsjYF9pH h2,.sub-heading-CPSsjYF9pH h3,.sub-heading-CPSsjYF9pH h4,.sub-heading-CPSsjYF9pH h5,.sub-heading-CPSsjYF9pH h6,.sub-heading-CPSsjYF9pH ul li,.sub-heading-CPSsjYF9pH.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-CPSsjYF9pH h1,.sub-heading-CPSsjYF9pH h2,.sub-heading-CPSsjYF9pH h3,.sub-heading-CPSsjYF9pH h4,.sub-heading-CPSsjYF9pH h5,.sub-heading-CPSsjYF9pH h6,.sub-heading-CPSsjYF9pH ul li,.sub-heading-CPSsjYF9pH.text-output{font-size:18px!important;font-weight:400}}.sub-heading-CPSsjYF9pH.text-output h1:first-child:before,.sub-heading-CPSsjYF9pH.text-output h2:first-child:before,.sub-heading-CPSsjYF9pH.text-output h3:first-child:before,.sub-heading-CPSsjYF9pH.text-output h4:first-child:before,.sub-heading-CPSsjYF9pH.text-output h5:first-child:before,.sub-heading-CPSsjYF9pH.text-output h6:first-child:before,.sub-heading-CPSsjYF9pH.text-output p:first-child:before,.sub-heading-G_uKj5geJg.text-output h1:first-child:before,.sub-heading-G_uKj5geJg.text-output h2:first-child:before,.sub-heading-G_uKj5geJg.text-output h3:first-child:before,.sub-heading-G_uKj5geJg.text-output h4:first-child:before,.sub-heading-G_uKj5geJg.text-output h5:first-child:before,.sub-heading-G_uKj5geJg.text-output h6:first-child:before,.sub-heading-G_uKj5geJg.text-output p:first-child:before,.sub-heading-K9WQSYfv-z.text-output h1:first-child:before,.sub-heading-K9WQSYfv-z.text-output h2:first-child:before,.sub-heading-K9WQSYfv-z.text-output h3:first-child:before,.sub-heading-K9WQSYfv-z.text-output h4:first-child:before,.sub-heading-K9WQSYfv-z.text-output h5:first-child:before,.sub-heading-K9WQSYfv-z.text-output h6:first-child:before,.sub-heading-K9WQSYfv-z.text-output p:first-child:before,.sub-heading-dXhd_Pt3Ef.text-output h1:first-child:before,.sub-heading-dXhd_Pt3Ef.text-output h2:first-child:before,.sub-heading-dXhd_Pt3Ef.text-output h3:first-child:before,.sub-heading-dXhd_Pt3Ef.text-output h4:first-child:before,.sub-heading-dXhd_Pt3Ef.text-output h5:first-child:before,.sub-heading-dXhd_Pt3Ef.text-output h6:first-child:before,.sub-heading-dXhd_Pt3Ef.text-output p:first-child:before{color:var(--text-color);content:'\';
88 − font-family: '';margin-right:5px;font-weight:700}#image-slider-U_p23De5wW .carousel{height:300px;width:100%}#image-slider-U_p23De5wW .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-U_p23De5wW .carousel__pagination-active{background:#fff}#image-slider-U_p23De5wW .carousel__pagination-inactive{background:#000}#image-slider-U_p23De5wW .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-G_uKj5geJg h1,.sub-heading-G_uKj5geJg h2,.sub-heading-G_uKj5geJg h3,.sub-heading-G_uKj5geJg h4,.sub-heading-G_uKj5geJg h5,.sub-heading-G_uKj5geJg h6,.sub-heading-G_uKj5geJg ul li,.sub-heading-G_uKj5geJg.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-G_uKj5geJg h1,.sub-heading-G_uKj5geJg h2,.sub-heading-G_uKj5geJg h3,.sub-heading-G_uKj5geJg h4,.sub-heading-G_uKj5geJg h5,.sub-heading-G_uKj5geJg h6,.sub-heading-G_uKj5geJg ul li,.sub-heading-G_uKj5geJg.text-output{font-size:18px!important;font-weight:400}}#col-D7l9_3bXCN>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-D7l9_3bXCN{animation:none!important}}.--mobile #col-D7l9_3bXCN,.--mobile #row-CpfFhBNjeH{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-dXhd_Pt3Ef h1,.sub-heading-dXhd_Pt3Ef h2,.sub-heading-dXhd_Pt3Ef h3,.sub-heading-dXhd_Pt3Ef h4,.sub-heading-dXhd_Pt3Ef h5,.sub-heading-dXhd_Pt3Ef h6,.sub-heading-dXhd_Pt3Ef ul li,.sub-heading-dXhd_Pt3Ef.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-dXhd_Pt3Ef h1,.sub-heading-dXhd_Pt3Ef h2,.sub-heading-dXhd_Pt3Ef h3,.sub-heading-dXhd_Pt3Ef h4,.sub-heading-dXhd_Pt3Ef h5,.sub-heading-dXhd_Pt3Ef h6,.sub-heading-dXhd_Pt3Ef ul li,.sub-heading-dXhd_Pt3Ef.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-K9WQSYfv-z h1,.sub-heading-K9WQSYfv-z h2,.sub-heading-K9WQSYfv-z h3,.sub-heading-K9WQSYfv-z h4,.sub-heading-K9WQSYfv-z h5,.sub-heading-K9WQSYfv-z h6,.sub-heading-K9WQSYfv-z ul li,.sub-heading-K9WQSYfv-z.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-K9WQSYfv-z h1,.sub-heading-K9WQSYfv-z h2,.sub-heading-K9WQSYfv-z h3,.sub-heading-K9WQSYfv-z h4,.sub-heading-K9WQSYfv-z h5,.sub-heading-K9WQSYfv-z h6,.sub-heading-K9WQSYfv-z ul li,.sub-heading-K9WQSYfv-z.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-CpfFhBNjeH{animation:none!important}}#col-0XrNF11aND>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-0XrNF11aND{animation:none!important}}.--mobile #col-0XrNF11aND{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-gxTc5y4fR8 h1,.paragraph-gxTc5y4fR8 h2,.paragraph-gxTc5y4fR8 h3,.paragraph-gxTc5y4fR8 h4,.paragraph-gxTc5y4fR8 h5,.paragraph-gxTc5y4fR8 h6,.paragraph-gxTc5y4fR8 ul li,.paragraph-gxTc5y4fR8.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-gxTc5y4fR8 h1,.paragraph-gxTc5y4fR8 h2,.paragraph-gxTc5y4fR8 h3,.paragraph-gxTc5y4fR8 h4,.paragraph-gxTc5y4fR8 h5,.paragraph-gxTc5y4fR8 h6,.paragraph-gxTc5y4fR8 ul li,.paragraph-gxTc5y4fR8.text-output{font-size:16px!important;font-weight:400}}.paragraph-gxTc5y4fR8.text-output h1:first-child:before,.paragraph-gxTc5y4fR8.text-output h2:first-child:before,.paragraph-gxTc5y4fR8.text-output h3:first-child:before,.paragraph-gxTc5y4fR8.text-output h4:first-child:before,.paragraph-gxTc5y4fR8.text-output h5:first-child:before,.paragraph-gxTc5y4fR8.text-output h6:first-child:before,.paragraph-gxTc5y4fR8.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-3gxdR4PXcj h1,.paragraph-3gxdR4PXcj h2,.paragraph-3gxdR4PXcj h3,.paragraph-3gxdR4PXcj h4,.paragraph-3gxdR4PXcj h5,.paragraph-3gxdR4PXcj h6,.paragraph-3gxdR4PXcj ul li,.paragraph-3gxdR4PXcj.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-3gxdR4PXcj h1,.paragraph-3gxdR4PXcj h2,.paragraph-3gxdR4PXcj h3,.paragraph-3gxdR4PXcj h4,.paragraph-3gxdR4PXcj h5,.paragraph-3gxdR4PXcj h6,.paragraph-3gxdR4PXcj ul li,.paragraph-3gxdR4PXcj.text-output{font-size:16px!important;font-weight:400}}.paragraph-3gxdR4PXcj.text-output h1:first-child:before,.paragraph-3gxdR4PXcj.text-output h2:first-child:before,.paragraph-3gxdR4PXcj.text-output h3:first-child:before,.paragraph-3gxdR4PXcj.text-output h4:first-child:before,.paragraph-3gxdR4PXcj.text-output h5:first-child:before,.paragraph-3gxdR4PXcj.text-output h6:first-child:before,.paragraph-3gxdR4PXcj.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-0ARgTVBi7B h1,.paragraph-0ARgTVBi7B h2,.paragraph-0ARgTVBi7B h3,.paragraph-0ARgTVBi7B h4,.paragraph-0ARgTVBi7B h5,.paragraph-0ARgTVBi7B h6,.paragraph-0ARgTVBi7B ul li,.paragraph-0ARgTVBi7B.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-0ARgTVBi7B h1,.paragraph-0ARgTVBi7B h2,.paragraph-0ARgTVBi7B h3,.paragraph-0ARgTVBi7B h4,.paragraph-0ARgTVBi7B h5,.paragraph-0ARgTVBi7B h6,.paragraph-0ARgTVBi7B ul li,.paragraph-0ARgTVBi7B.text-output{font-size:16px!important;font-weight:400}}.paragraph-0ARgTVBi7B.text-output h1:first-child:before,.paragraph-0ARgTVBi7B.text-output h2:first-child:before,.paragraph-0ARgTVBi7B.text-output h3:first-child:before,.paragraph-0ARgTVBi7B.text-output h4:first-child:before,.paragraph-0ARgTVBi7B.text-output h5:first-child:before,.paragraph-0ARgTVBi7B.text-output h6:first-child:before,.paragraph-0ARgTVBi7B.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-bxWsuz23xa h1,.sub-heading-bxWsuz23xa h2,.sub-heading-bxWsuz23xa h3,.sub-heading-bxWsuz23xa h4,.sub-heading-bxWsuz23xa h5,.sub-heading-bxWsuz23xa h6,.sub-heading-bxWsuz23xa ul li,.sub-heading-bxWsuz23xa.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-bxWsuz23xa h1,.sub-heading-bxWsuz23xa h2,.sub-heading-bxWsuz23xa h3,.sub-heading-bxWsuz23xa h4,.sub-heading-bxWsuz23xa h5,.sub-heading-bxWsuz23xa h6,.sub-heading-bxWsuz23xa ul li,.sub-heading-bxWsuz23xa.text-output{font-size:18px!important;font-weight:400}}.heading-M9pQSKd1GF.text-output h1:first-child:before,.heading-M9pQSKd1GF.text-output h2:first-child:before,.heading-M9pQSKd1GF.text-output h3:first-child:before,.heading-M9pQSKd1GF.text-output h4:first-child:before,.heading-M9pQSKd1GF.text-output h5:first-child:before,.heading-M9pQSKd1GF.text-output h6:first-child:before,.heading-M9pQSKd1GF.text-output p:first-child:before,.sub-heading-VZfKufRwAo.text-output h1:first-child:before,.sub-heading-VZfKufRwAo.text-output h2:first-child:before,.sub-heading-VZfKufRwAo.text-output h3:first-child:before,.sub-heading-VZfKufRwAo.text-output h4:first-child:before,.sub-heading-VZfKufRwAo.text-output h5:first-child:before,.sub-heading-VZfKufRwAo.text-output h6:first-child:before,.sub-heading-VZfKufRwAo.text-output p:first-child:before,.sub-heading-bxWsuz23xa.text-output h1:first-child:before,.sub-heading-bxWsuz23xa.text-output h2:first-child:before,.sub-heading-bxWsuz23xa.text-output h3:first-child:before,.sub-heading-bxWsuz23xa.text-output h4:first-child:before,.sub-heading-bxWsuz23xa.text-output h5:first-child:before,.sub-heading-bxWsuz23xa.text-output h6:first-child:before,.sub-heading-bxWsuz23xa.text-output p:first-child:before{color:var(--text-color);content:'\';
89 − font-family: '';margin-right:5px;font-weight:700}#image-slider-AYfgPodJLS .carousel{height:300px;width:100%}#image-slider-AYfgPodJLS .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-AYfgPodJLS .carousel__pagination-active{background:#fff}#image-slider-AYfgPodJLS .carousel__pagination-inactive{background:#000}#image-slider-AYfgPodJLS .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-VZfKufRwAo h1,.sub-heading-VZfKufRwAo h2,.sub-heading-VZfKufRwAo h3,.sub-heading-VZfKufRwAo h4,.sub-heading-VZfKufRwAo h5,.sub-heading-VZfKufRwAo h6,.sub-heading-VZfKufRwAo ul li,.sub-heading-VZfKufRwAo.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-VZfKufRwAo h1,.sub-heading-VZfKufRwAo h2,.sub-heading-VZfKufRwAo h3,.sub-heading-VZfKufRwAo h4,.sub-heading-VZfKufRwAo h5,.sub-heading-VZfKufRwAo h6,.sub-heading-VZfKufRwAo ul li,.sub-heading-VZfKufRwAo.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-rh4yMILdRq{animation:none!important}}.--mobile #row-rh4yMILdRq{animation:none!important}#col-9QARp-V-6m>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-9QARp-V-6m{animation:none!important}}.--mobile #col-9QARp-V-6m{animation:none!important}.heading-M9pQSKd1GF{font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.heading-M9pQSKd1GF h1,.heading-M9pQSKd1GF h2,.heading-M9pQSKd1GF h3,.heading-M9pQSKd1GF h4,.heading-M9pQSKd1GF h5,.heading-M9pQSKd1GF h6,.heading-M9pQSKd1GF ul li,.heading-M9pQSKd1GF.text-output{font-size:48px!important;font-weight:700}}@media screen and (min-width:481px) and (max-width:10000px){.heading-M9pQSKd1GF h1,.heading-M9pQSKd1GF h2,.heading-M9pQSKd1GF h3,.heading-M9pQSKd1GF h4,.heading-M9pQSKd1GF h5,.heading-M9pQSKd1GF h6,.heading-M9pQSKd1GF ul li,.heading-M9pQSKd1GF.text-output{font-size:48px!important;font-weight:700}}
90 − /* ---- Section 5 1/2 styles ----- */
91 −:root{--inter:'Inter';--transparent:transparent;--white:#ffffff;--gray:#cbd5e0;--black:#000000;--color-frszyjcd:#163760ff}.hl_page-preview--content .row-qZ8zYe35q1,.hl_page-preview--content .section-PwCpNpl1z5{box-shadow:none;padding:0;margin:0;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid}.hl_page-preview--content .row-qZ8zYe35q1{margin:0 auto;padding:10px 5px;border-width:0;border-style:none;border-radius:0;width:100%}.hl_page-preview--content .col-F_OpzDB8FP{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content #heading-oHkotcAr7_,.hl_page-preview--content #paragraph-1Sp5gw4V4E,.hl_page-preview--content #paragraph-3lpfzdInHP,.hl_page-preview--content #paragraph-6EWwevM4Di,.hl_page-preview--content #paragraph-6S6vKy-B_2,.hl_page-preview--content #paragraph-7paamW55Da,.hl_page-preview--content #paragraph-AcGLX8s-c6,.hl_page-preview--content #paragraph-Az60LAogzf,.hl_page-preview--content #paragraph-BDSuLAw27o,.hl_page-preview--content #paragraph-CL0dN3AMWc,.hl_page-preview--content #paragraph-DkXSEa6Iol,.hl_page-preview--content #paragraph-FNPIa5e_Kn,.hl_page-preview--content #paragraph-FpaPMM5r_r,.hl_page-preview--content #paragraph-HJWyyx2R_F,.hl_page-preview--content #paragraph-LoDbFAVPUY,.hl_page-preview--content #paragraph-M3uEMYOFVI,.hl_page-preview--content #paragraph-RCfZuiUpQs,.hl_page-preview--content #paragraph-XXCiBPbH30,.hl_page-preview--content #paragraph-ZkySthXu3Y,.hl_page-preview--content #paragraph-f-2T0u4S8H,.hl_page-preview--content #paragraph-fPSjuUj-UJ,.hl_page-preview--content #paragraph-kXfOYNJlru,.hl_page-preview--content #paragraph-m92HIn7r7P,.hl_page-preview--content #paragraph-mAIG3jHICs,.hl_page-preview--content #paragraph-pT45PeOVlN,.hl_page-preview--content #sub-heading-03SHZqsluh,.hl_page-preview--content #sub-heading-3Bpz0SXwob,.hl_page-preview--content #sub-heading-4aGofuOfXq,.hl_page-preview--content #sub-heading-5gG07Ko_oZ,.hl_page-preview--content #sub-heading-7DX_u1N02U,.hl_page-preview--content #sub-heading-9RnPTV8r9K,.hl_page-preview--content #sub-heading-AQwPY9ibX5,.hl_page-preview--content #sub-heading-Bc30A5jEYL,.hl_page-preview--content #sub-heading-F1MzsywNHM,.hl_page-preview--content #sub-heading-GYm3rjqrcY,.hl_page-preview--content #sub-heading-IGlxgZWL3y,.hl_page-preview--content #sub-heading-Jz14zAZhJ6,.hl_page-preview--content #sub-heading-Mzh627hQoV,.hl_page-preview--content #sub-heading-PUhg-fuexb,.hl_page-preview--content #sub-heading-QFht7y46h2,.hl_page-preview--content #sub-heading-QRYO4W1KVE,.hl_page-preview--content #sub-heading-QRw76TR2hx,.hl_page-preview--content #sub-heading-TNa9hlT-hb,.hl_page-preview--content #sub-heading-UVhyw7sDTO,.hl_page-preview--content #sub-heading-UxnsjA280F,.hl_page-preview--content #sub-heading-Vrwfd6fYMC,.hl_page-preview--content #sub-heading-Z8ByyIP4nb,.hl_page-preview--content #sub-heading-h2yy_A6xP0,.hl_page-preview--content #sub-heading-nzfWFLpdN4,.hl_page-preview--content #sub-heading-qnskExuEj_,.hl_page-preview--content #sub-heading-rpngswhUnR,.hl_page-preview--content #sub-heading-vq9lCn23dz,.hl_page-preview--content #sub-heading-wjn1LLwHlQ,.hl_page-preview--content #sub-heading-xN6mEZJoxC,.hl_page-preview--content #sub-heading-xb4AOLmafR,.hl_page-preview--content #sub-heading-yuPakkKcss,.hl_page-preview--content #sub-heading-z7YCLV8dCF{margin:0;width:auto;height:auto}.hl_page-preview--content .csub-heading-Mzh627hQoV,.hl_page-preview--content .csub-heading-PUhg-fuexb{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-pbU9fmJdMn,.hl_page-preview--content .row-bdnVOVfKxF{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-pbU9fmJdMn{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-FNPIa5e_Kn,.hl_page-preview--content .cparagraph-HJWyyx2R_F,.hl_page-preview--content .cparagraph-LoDbFAVPUY,.hl_page-preview--content .csub-heading-7DX_u1N02U{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-7DX_u1N02U{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-BhOrd0UxRp{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-xb4AOLmafR{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .row-0PYG1zdcXx{margin:0 auto;box-shadow:none;padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:0;border-style:none;border-radius:0;width:100%}.hl_page-preview--content .col-Iz5DINGe-M{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-IGlxgZWL3y,.hl_page-preview--content .csub-heading-rpngswhUnR{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-yA0QJbNOCo,.hl_page-preview--content .row-GORzDsjsua{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-yA0QJbNOCo{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-AcGLX8s-c6,.hl_page-preview--content .cparagraph-CL0dN3AMWc,.hl_page-preview--content .cparagraph-ZkySthXu3Y,.hl_page-preview--content .csub-heading-F1MzsywNHM{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-F1MzsywNHM{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-bWla67nGnn{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-yuPakkKcss{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-KUsELMqcoC{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-qnskExuEj_,.hl_page-preview--content .csub-heading-z7YCLV8dCF{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-cuOhmolhsd,.hl_page-preview--content .row-2EwUhXMzzv{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-cuOhmolhsd{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-BDSuLAw27o,.hl_page-preview--content .cparagraph-FpaPMM5r_r,.hl_page-preview--content .cparagraph-kXfOYNJlru,.hl_page-preview--content .csub-heading-QRw76TR2hx{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-QRw76TR2hx{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-Ju4qJm1B3v{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-wjn1LLwHlQ{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-yhvBaHjiB6{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-03SHZqsluh,.hl_page-preview--content .csub-heading-GYm3rjqrcY{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col--Ce-PpyXTL,.hl_page-preview--content .row-6518d_odk6{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col--Ce-PpyXTL{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-7paamW55Da,.hl_page-preview--content .cparagraph-XXCiBPbH30,.hl_page-preview--content .cparagraph-m92HIn7r7P,.hl_page-preview--content .csub-heading-nzfWFLpdN4{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-nzfWFLpdN4{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-l_hlovsKRG{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-3Bpz0SXwob{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-ogCVk9UCXh,.hl_page-preview--content .row-VVzmQ44QDs{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;border-width:2px;border-style:solid}.hl_page-preview--content .row-VVzmQ44QDs{margin:0 auto;box-shadow:none;border-color:var(--black);width:100%}.hl_page-preview--content .col-ogCVk9UCXh{width:33%;border-color:var(--gray);margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-5gG07Ko_oZ,.hl_page-preview--content .csub-heading-xN6mEZJoxC{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-hV3q1OYuDJ,.hl_page-preview--content .row-ijx5noBjNS{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-hV3q1OYuDJ{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-3lpfzdInHP,.hl_page-preview--content .cparagraph-6S6vKy-B_2,.hl_page-preview--content .cparagraph-RCfZuiUpQs,.hl_page-preview--content .csub-heading-Bc30A5jEYL{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-Bc30A5jEYL{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-Zo4wpRG7hJ{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-h2yy_A6xP0{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-NsIdpn9Vp0{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .button-XutTlle0iL{margin:0;text-align:center;width:auto;height:auto}.hl_page-preview--content .cbutton-XutTlle0iL{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);secondary-color:var(--white);padding:10px 20px;border-color:var(--white);border-width:1px;border-style:solid;letter-spacing:0;text-transform:none;width:auto%;box-shadow:none;text-shadow:none;icon-color:var(--white)}.hl_page-preview--content .csub-heading-Vrwfd6fYMC,.hl_page-preview--content .csub-heading-Z8ByyIP4nb{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-gJzUPPOwIL,.hl_page-preview--content .row-8KmiNapolM{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-gJzUPPOwIL{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-6EWwevM4Di,.hl_page-preview--content .cparagraph-Az60LAogzf,.hl_page-preview--content .cparagraph-mAIG3jHICs,.hl_page-preview--content .csub-heading-9RnPTV8r9K{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-9RnPTV8r9K{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-qwzj19cKIy{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-Jz14zAZhJ6{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col--6VywJqT4n{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-4aGofuOfXq,.hl_page-preview--content .csub-heading-QRYO4W1KVE{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-rs0PGwlXj5,.hl_page-preview--content .row-iBCj_mgrrx{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-rs0PGwlXj5{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-1Sp5gw4V4E,.hl_page-preview--content .cparagraph-M3uEMYOFVI,.hl_page-preview--content .cparagraph-pT45PeOVlN,.hl_page-preview--content .csub-heading-UVhyw7sDTO{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-UVhyw7sDTO{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-FGU3qk0tCw{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-vq9lCn23dz{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-Vo1fx4hJqF{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;width:33%;border-color:var(--gray);border-width:2px;border-style:solid;margin:10px 20px 10px 0}.hl_page-preview--content .csub-heading-AQwPY9ibX5,.hl_page-preview--content .csub-heading-QFht7y46h2{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-cw-hkPoo_O,.hl_page-preview--content .row-RIUdOvYKzr{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-cw-hkPoo_O{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-DkXSEa6Iol,.hl_page-preview--content .cparagraph-f-2T0u4S8H,.hl_page-preview--content .cparagraph-fPSjuUj-UJ,.hl_page-preview--content .csub-heading-TNa9hlT-hb{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-TNa9hlT-hb{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-8gudlnPSki{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-UxnsjA280F{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-_L5Va54ZgF,.hl_page-preview--content .row-1leuN7S1Na{margin:0 auto;box-shadow:none;padding:40px 5px 10px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-_L5Va54ZgF{padding:10px 5px;margin:0}.hl_page-preview--content .cheading-oHkotcAr7_{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}@media screen and (min-width:0px) and (max-width:480px){.hl_page-preview--content .cheading-oHkotcAr7_{padding-top:5px;padding-bottom:5px}}#section-PwCpNpl1z5>.inner{max-width:1170px}@media (max-width:1024px){#section-PwCpNpl1z5{animation:none!important}}.--mobile #row-qZ8zYe35q1,.--mobile #section-PwCpNpl1z5{animation:none!important}@media (max-width:1024px){#row-qZ8zYe35q1{animation:none!important}}#col-F_OpzDB8FP>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-F_OpzDB8FP{animation:none!important}}.--mobile #col-F_OpzDB8FP,.--mobile #row-bdnVOVfKxF{animation:none!important}.paragraph-1Sp5gw4V4E,.paragraph-3lpfzdInHP,.paragraph-6EWwevM4Di,.paragraph-6S6vKy-B_2,.paragraph-7paamW55Da,.paragraph-AcGLX8s-c6,.paragraph-Az60LAogzf,.paragraph-BDSuLAw27o,.paragraph-CL0dN3AMWc,.paragraph-DkXSEa6Iol,.paragraph-FNPIa5e_Kn,.paragraph-FpaPMM5r_r,.paragraph-HJWyyx2R_F,.paragraph-LoDbFAVPUY,.paragraph-M3uEMYOFVI,.paragraph-RCfZuiUpQs,.paragraph-XXCiBPbH30,.paragraph-ZkySthXu3Y,.paragraph-f-2T0u4S8H,.paragraph-fPSjuUj-UJ,.paragraph-kXfOYNJlru,.paragraph-m92HIn7r7P,.paragraph-mAIG3jHICs,.paragraph-pT45PeOVlN,.sub-heading-03SHZqsluh,.sub-heading-3Bpz0SXwob,.sub-heading-4aGofuOfXq,.sub-heading-5gG07Ko_oZ,.sub-heading-7DX_u1N02U,.sub-heading-9RnPTV8r9K,.sub-heading-AQwPY9ibX5,.sub-heading-Bc30A5jEYL,.sub-heading-F1MzsywNHM,.sub-heading-GYm3rjqrcY,.sub-heading-IGlxgZWL3y,.sub-heading-Jz14zAZhJ6,.sub-heading-Mzh627hQoV,.sub-heading-PUhg-fuexb,.sub-heading-QFht7y46h2,.sub-heading-QRYO4W1KVE,.sub-heading-QRw76TR2hx,.sub-heading-TNa9hlT-hb,.sub-heading-UVhyw7sDTO,.sub-heading-UxnsjA280F,.sub-heading-Vrwfd6fYMC,.sub-heading-Z8ByyIP4nb,.sub-heading-h2yy_A6xP0,.sub-heading-nzfWFLpdN4,.sub-heading-qnskExuEj_,.sub-heading-rpngswhUnR,.sub-heading-vq9lCn23dz,.sub-heading-wjn1LLwHlQ,.sub-heading-xN6mEZJoxC,.sub-heading-xb4AOLmafR,.sub-heading-yuPakkKcss,.sub-heading-z7YCLV8dCF{font-weight:400}.heading-oHkotcAr7_ a,.heading-oHkotcAr7_ a *,.paragraph-1Sp5gw4V4E a,.paragraph-1Sp5gw4V4E a *,.paragraph-3lpfzdInHP a,.paragraph-3lpfzdInHP a *,.paragraph-6EWwevM4Di a,.paragraph-6EWwevM4Di a *,.paragraph-6S6vKy-B_2 a,.paragraph-6S6vKy-B_2 a *,.paragraph-7paamW55Da a,.paragraph-7paamW55Da a *,.paragraph-AcGLX8s-c6 a,.paragraph-AcGLX8s-c6 a *,.paragraph-Az60LAogzf a,.paragraph-Az60LAogzf a *,.paragraph-BDSuLAw27o a,.paragraph-BDSuLAw27o a *,.paragraph-CL0dN3AMWc a,.paragraph-CL0dN3AMWc a *,.paragraph-DkXSEa6Iol a,.paragraph-DkXSEa6Iol a *,.paragraph-FNPIa5e_Kn a,.paragraph-FNPIa5e_Kn a *,.paragraph-FpaPMM5r_r a,.paragraph-FpaPMM5r_r a *,.paragraph-HJWyyx2R_F a,.paragraph-HJWyyx2R_F a *,.paragraph-LoDbFAVPUY a,.paragraph-LoDbFAVPUY a *,.paragraph-M3uEMYOFVI a,.paragraph-M3uEMYOFVI a *,.paragraph-RCfZuiUpQs a,.paragraph-RCfZuiUpQs a *,.paragraph-XXCiBPbH30 a,.paragraph-XXCiBPbH30 a *,.paragraph-ZkySthXu3Y a,.paragraph-ZkySthXu3Y a *,.paragraph-f-2T0u4S8H a,.paragraph-f-2T0u4S8H a *,.paragraph-fPSjuUj-UJ a,.paragraph-fPSjuUj-UJ a *,.paragraph-kXfOYNJlru a,.paragraph-kXfOYNJlru a *,.paragraph-m92HIn7r7P a,.paragraph-m92HIn7r7P a *,.paragraph-mAIG3jHICs a,.paragraph-mAIG3jHICs a *,.paragraph-pT45PeOVlN a,.paragraph-pT45PeOVlN a *,.sub-heading-03SHZqsluh a,.sub-heading-03SHZqsluh a *,.sub-heading-3Bpz0SXwob a,.sub-heading-3Bpz0SXwob a *,.sub-heading-4aGofuOfXq a,.sub-heading-4aGofuOfXq a *,.sub-heading-5gG07Ko_oZ a,.sub-heading-5gG07Ko_oZ a *,.sub-heading-7DX_u1N02U a,.sub-heading-7DX_u1N02U a *,.sub-heading-9RnPTV8r9K a,.sub-heading-9RnPTV8r9K a *,.sub-heading-AQwPY9ibX5 a,.sub-heading-AQwPY9ibX5 a *,.sub-heading-Bc30A5jEYL a,.sub-heading-Bc30A5jEYL a *,.sub-heading-F1MzsywNHM a,.sub-heading-F1MzsywNHM a *,.sub-heading-GYm3rjqrcY a,.sub-heading-GYm3rjqrcY a *,.sub-heading-IGlxgZWL3y a,.sub-heading-IGlxgZWL3y a *,.sub-heading-Jz14zAZhJ6 a,.sub-heading-Jz14zAZhJ6 a *,.sub-heading-Mzh627hQoV a,.sub-heading-Mzh627hQoV a *,.sub-heading-PUhg-fuexb a,.sub-heading-PUhg-fuexb a *,.sub-heading-QFht7y46h2 a,.sub-heading-QFht7y46h2 a *,.sub-heading-QRYO4W1KVE a,.sub-heading-QRYO4W1KVE a *,.sub-heading-QRw76TR2hx a,.sub-heading-QRw76TR2hx a *,.sub-heading-TNa9hlT-hb a,.sub-heading-TNa9hlT-hb a *,.sub-heading-UVhyw7sDTO a,.sub-heading-UVhyw7sDTO a *,.sub-heading-UxnsjA280F a,.sub-heading-UxnsjA280F a *,.sub-heading-Vrwfd6fYMC a,.sub-heading-Vrwfd6fYMC a *,.sub-heading-Z8ByyIP4nb a,.sub-heading-Z8ByyIP4nb a *,.sub-heading-h2yy_A6xP0 a,.sub-heading-h2yy_A6xP0 a *,.sub-heading-nzfWFLpdN4 a,.sub-heading-nzfWFLpdN4 a *,.sub-heading-qnskExuEj_ a,.sub-heading-qnskExuEj_ a *,.sub-heading-rpngswhUnR a,.sub-heading-rpngswhUnR a *,.sub-heading-vq9lCn23dz a,.sub-heading-vq9lCn23dz a *,.sub-heading-wjn1LLwHlQ a,.sub-heading-wjn1LLwHlQ a *,.sub-heading-xN6mEZJoxC a,.sub-heading-xN6mEZJoxC a *,.sub-heading-xb4AOLmafR a,.sub-heading-xb4AOLmafR a *,.sub-heading-yuPakkKcss a,.sub-heading-yuPakkKcss a *,.sub-heading-z7YCLV8dCF a,.sub-heading-z7YCLV8dCF a *{color:var(--link-color);text-decoration:none}.heading-oHkotcAr7_ a u,.heading-oHkotcAr7_ a:hover,.paragraph-1Sp5gw4V4E a u,.paragraph-1Sp5gw4V4E a:hover,.paragraph-3lpfzdInHP a u,.paragraph-3lpfzdInHP a:hover,.paragraph-6EWwevM4Di a u,.paragraph-6EWwevM4Di a:hover,.paragraph-6S6vKy-B_2 a u,.paragraph-6S6vKy-B_2 a:hover,.paragraph-7paamW55Da a u,.paragraph-7paamW55Da a:hover,.paragraph-AcGLX8s-c6 a u,.paragraph-AcGLX8s-c6 a:hover,.paragraph-Az60LAogzf a u,.paragraph-Az60LAogzf a:hover,.paragraph-BDSuLAw27o a u,.paragraph-BDSuLAw27o a:hover,.paragraph-CL0dN3AMWc a u,.paragraph-CL0dN3AMWc a:hover,.paragraph-DkXSEa6Iol a u,.paragraph-DkXSEa6Iol a:hover,.paragraph-FNPIa5e_Kn a u,.paragraph-FNPIa5e_Kn a:hover,.paragraph-FpaPMM5r_r a u,.paragraph-FpaPMM5r_r a:hover,.paragraph-HJWyyx2R_F a u,.paragraph-HJWyyx2R_F a:hover,.paragraph-LoDbFAVPUY a u,.paragraph-LoDbFAVPUY a:hover,.paragraph-M3uEMYOFVI a u,.paragraph-M3uEMYOFVI a:hover,.paragraph-RCfZuiUpQs a u,.paragraph-RCfZuiUpQs a:hover,.paragraph-XXCiBPbH30 a u,.paragraph-XXCiBPbH30 a:hover,.paragraph-ZkySthXu3Y a u,.paragraph-ZkySthXu3Y a:hover,.paragraph-f-2T0u4S8H a u,.paragraph-f-2T0u4S8H a:hover,.paragraph-fPSjuUj-UJ a u,.paragraph-fPSjuUj-UJ a:hover,.paragraph-kXfOYNJlru a u,.paragraph-kXfOYNJlru a:hover,.paragraph-m92HIn7r7P a u,.paragraph-m92HIn7r7P a:hover,.paragraph-mAIG3jHICs a u,.paragraph-mAIG3jHICs a:hover,.paragraph-pT45PeOVlN a u,.paragraph-pT45PeOVlN a:hover,.sub-heading-03SHZqsluh a u,.sub-heading-03SHZqsluh a:hover,.sub-heading-3Bpz0SXwob a u,.sub-heading-3Bpz0SXwob a:hover,.sub-heading-4aGofuOfXq a u,.sub-heading-4aGofuOfXq a:hover,.sub-heading-5gG07Ko_oZ a u,.sub-heading-5gG07Ko_oZ a:hover,.sub-heading-7DX_u1N02U a u,.sub-heading-7DX_u1N02U a:hover,.sub-heading-9RnPTV8r9K a u,.sub-heading-9RnPTV8r9K a:hover,.sub-heading-AQwPY9ibX5 a u,.sub-heading-AQwPY9ibX5 a:hover,.sub-heading-Bc30A5jEYL a u,.sub-heading-Bc30A5jEYL a:hover,.sub-heading-F1MzsywNHM a u,.sub-heading-F1MzsywNHM a:hover,.sub-heading-GYm3rjqrcY a u,.sub-heading-GYm3rjqrcY a:hover,.sub-heading-IGlxgZWL3y a u,.sub-heading-IGlxgZWL3y a:hover,.sub-heading-Jz14zAZhJ6 a u,.sub-heading-Jz14zAZhJ6 a:hover,.sub-heading-Mzh627hQoV a u,.sub-heading-Mzh627hQoV a:hover,.sub-heading-PUhg-fuexb a u,.sub-heading-PUhg-fuexb a:hover,.sub-heading-QFht7y46h2 a u,.sub-heading-QFht7y46h2 a:hover,.sub-heading-QRYO4W1KVE a u,.sub-heading-QRYO4W1KVE a:hover,.sub-heading-QRw76TR2hx a u,.sub-heading-QRw76TR2hx a:hover,.sub-heading-TNa9hlT-hb a u,.sub-heading-TNa9hlT-hb a:hover,.sub-heading-UVhyw7sDTO a u,.sub-heading-UVhyw7sDTO a:hover,.sub-heading-UxnsjA280F a u,.sub-heading-UxnsjA280F a:hover,.sub-heading-Vrwfd6fYMC a u,.sub-heading-Vrwfd6fYMC a:hover,.sub-heading-Z8ByyIP4nb a u,.sub-heading-Z8ByyIP4nb a:hover,.sub-heading-h2yy_A6xP0 a u,.sub-heading-h2yy_A6xP0 a:hover,.sub-heading-nzfWFLpdN4 a u,.sub-heading-nzfWFLpdN4 a:hover,.sub-heading-qnskExuEj_ a u,.sub-heading-qnskExuEj_ a:hover,.sub-heading-rpngswhUnR a u,.sub-heading-rpngswhUnR a:hover,.sub-heading-vq9lCn23dz a u,.sub-heading-vq9lCn23dz a:hover,.sub-heading-wjn1LLwHlQ a u,.sub-heading-wjn1LLwHlQ a:hover,.sub-heading-xN6mEZJoxC a u,.sub-heading-xN6mEZJoxC a:hover,.sub-heading-xb4AOLmafR a u,.sub-heading-xb4AOLmafR a:hover,.sub-heading-yuPakkKcss a u,.sub-heading-yuPakkKcss a:hover,.sub-heading-z7YCLV8dCF a u,.sub-heading-z7YCLV8dCF a:hover{text-decoration:underline}.heading-oHkotcAr7_ a s,.paragraph-1Sp5gw4V4E a s,.paragraph-3lpfzdInHP a s,.paragraph-6EWwevM4Di a s,.paragraph-6S6vKy-B_2 a s,.paragraph-7paamW55Da a s,.paragraph-AcGLX8s-c6 a s,.paragraph-Az60LAogzf a s,.paragraph-BDSuLAw27o a s,.paragraph-CL0dN3AMWc a s,.paragraph-DkXSEa6Iol a s,.paragraph-FNPIa5e_Kn a s,.paragraph-FpaPMM5r_r a s,.paragraph-HJWyyx2R_F a s,.paragraph-LoDbFAVPUY a s,.paragraph-M3uEMYOFVI a s,.paragraph-RCfZuiUpQs a s,.paragraph-XXCiBPbH30 a s,.paragraph-ZkySthXu3Y a s,.paragraph-f-2T0u4S8H a s,.paragraph-fPSjuUj-UJ a s,.paragraph-kXfOYNJlru a s,.paragraph-m92HIn7r7P a s,.paragraph-mAIG3jHICs a s,.paragraph-pT45PeOVlN a s,.sub-heading-03SHZqsluh a s,.sub-heading-3Bpz0SXwob a s,.sub-heading-4aGofuOfXq a s,.sub-heading-5gG07Ko_oZ a s,.sub-heading-7DX_u1N02U a s,.sub-heading-9RnPTV8r9K a s,.sub-heading-AQwPY9ibX5 a s,.sub-heading-Bc30A5jEYL a s,.sub-heading-F1MzsywNHM a s,.sub-heading-GYm3rjqrcY a s,.sub-heading-IGlxgZWL3y a s,.sub-heading-Jz14zAZhJ6 a s,.sub-heading-Mzh627hQoV a s,.sub-heading-PUhg-fuexb a s,.sub-heading-QFht7y46h2 a s,.sub-heading-QRYO4W1KVE a s,.sub-heading-QRw76TR2hx a s,.sub-heading-TNa9hlT-hb a s,.sub-heading-UVhyw7sDTO a s,.sub-heading-UxnsjA280F a s,.sub-heading-Vrwfd6fYMC a s,.sub-heading-Z8ByyIP4nb a s,.sub-heading-h2yy_A6xP0 a s,.sub-heading-nzfWFLpdN4 a s,.sub-heading-qnskExuEj_ a s,.sub-heading-rpngswhUnR a s,.sub-heading-vq9lCn23dz a s,.sub-heading-wjn1LLwHlQ a s,.sub-heading-xN6mEZJoxC a s,.sub-heading-xb4AOLmafR a s,.sub-heading-yuPakkKcss a s,.sub-heading-z7YCLV8dCF a s{text-decoration:line-through}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-Mzh627hQoV h1,.sub-heading-Mzh627hQoV h2,.sub-heading-Mzh627hQoV h3,.sub-heading-Mzh627hQoV h4,.sub-heading-Mzh627hQoV h5,.sub-heading-Mzh627hQoV h6,.sub-heading-Mzh627hQoV ul li,.sub-heading-Mzh627hQoV.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-Mzh627hQoV h1,.sub-heading-Mzh627hQoV h2,.sub-heading-Mzh627hQoV h3,.sub-heading-Mzh627hQoV h4,.sub-heading-Mzh627hQoV h5,.sub-heading-Mzh627hQoV h6,.sub-heading-Mzh627hQoV ul li,.sub-heading-Mzh627hQoV.text-output{font-size:18px!important;font-weight:400}}.sub-heading-Mzh627hQoV.text-output h1:first-child:before,.sub-heading-Mzh627hQoV.text-output h2:first-child:before,.sub-heading-Mzh627hQoV.text-output h3:first-child:before,.sub-heading-Mzh627hQoV.text-output h4:first-child:before,.sub-heading-Mzh627hQoV.text-output h5:first-child:before,.sub-heading-Mzh627hQoV.text-output h6:first-child:before,.sub-heading-Mzh627hQoV.text-output p:first-child:before,.sub-heading-PUhg-fuexb.text-output h1:first-child:before,.sub-heading-PUhg-fuexb.text-output h2:first-child:before,.sub-heading-PUhg-fuexb.text-output h3:first-child:before,.sub-heading-PUhg-fuexb.text-output h4:first-child:before,.sub-heading-PUhg-fuexb.text-output h5:first-child:before,.sub-heading-PUhg-fuexb.text-output h6:first-child:before,.sub-heading-PUhg-fuexb.text-output p:first-child:before{color:var(--text-color);content:'\';
92 − font-family: '';margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-PUhg-fuexb h1,.sub-heading-PUhg-fuexb h2,.sub-heading-PUhg-fuexb h3,.sub-heading-PUhg-fuexb h4,.sub-heading-PUhg-fuexb h5,.sub-heading-PUhg-fuexb h6,.sub-heading-PUhg-fuexb ul li,.sub-heading-PUhg-fuexb.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-PUhg-fuexb h1,.sub-heading-PUhg-fuexb h2,.sub-heading-PUhg-fuexb h3,.sub-heading-PUhg-fuexb h4,.sub-heading-PUhg-fuexb h5,.sub-heading-PUhg-fuexb h6,.sub-heading-PUhg-fuexb ul li,.sub-heading-PUhg-fuexb.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-bdnVOVfKxF{animation:none!important}}#col-pbU9fmJdMn>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-pbU9fmJdMn{animation:none!important}}.--mobile #col-pbU9fmJdMn{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-FNPIa5e_Kn h1,.paragraph-FNPIa5e_Kn h2,.paragraph-FNPIa5e_Kn h3,.paragraph-FNPIa5e_Kn h4,.paragraph-FNPIa5e_Kn h5,.paragraph-FNPIa5e_Kn h6,.paragraph-FNPIa5e_Kn ul li,.paragraph-FNPIa5e_Kn.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-FNPIa5e_Kn h1,.paragraph-FNPIa5e_Kn h2,.paragraph-FNPIa5e_Kn h3,.paragraph-FNPIa5e_Kn h4,.paragraph-FNPIa5e_Kn h5,.paragraph-FNPIa5e_Kn h6,.paragraph-FNPIa5e_Kn ul li,.paragraph-FNPIa5e_Kn.text-output{font-size:16px!important;font-weight:400}}.paragraph-FNPIa5e_Kn.text-output h1:first-child:before,.paragraph-FNPIa5e_Kn.text-output h2:first-child:before,.paragraph-FNPIa5e_Kn.text-output h3:first-child:before,.paragraph-FNPIa5e_Kn.text-output h4:first-child:before,.paragraph-FNPIa5e_Kn.text-output h5:first-child:before,.paragraph-FNPIa5e_Kn.text-output h6:first-child:before,.paragraph-FNPIa5e_Kn.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-HJWyyx2R_F h1,.paragraph-HJWyyx2R_F h2,.paragraph-HJWyyx2R_F h3,.paragraph-HJWyyx2R_F h4,.paragraph-HJWyyx2R_F h5,.paragraph-HJWyyx2R_F h6,.paragraph-HJWyyx2R_F ul li,.paragraph-HJWyyx2R_F.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-HJWyyx2R_F h1,.paragraph-HJWyyx2R_F h2,.paragraph-HJWyyx2R_F h3,.paragraph-HJWyyx2R_F h4,.paragraph-HJWyyx2R_F h5,.paragraph-HJWyyx2R_F h6,.paragraph-HJWyyx2R_F ul li,.paragraph-HJWyyx2R_F.text-output{font-size:16px!important;font-weight:400}}.paragraph-HJWyyx2R_F.text-output h1:first-child:before,.paragraph-HJWyyx2R_F.text-output h2:first-child:before,.paragraph-HJWyyx2R_F.text-output h3:first-child:before,.paragraph-HJWyyx2R_F.text-output h4:first-child:before,.paragraph-HJWyyx2R_F.text-output h5:first-child:before,.paragraph-HJWyyx2R_F.text-output h6:first-child:before,.paragraph-HJWyyx2R_F.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-LoDbFAVPUY h1,.paragraph-LoDbFAVPUY h2,.paragraph-LoDbFAVPUY h3,.paragraph-LoDbFAVPUY h4,.paragraph-LoDbFAVPUY h5,.paragraph-LoDbFAVPUY h6,.paragraph-LoDbFAVPUY ul li,.paragraph-LoDbFAVPUY.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-LoDbFAVPUY h1,.paragraph-LoDbFAVPUY h2,.paragraph-LoDbFAVPUY h3,.paragraph-LoDbFAVPUY h4,.paragraph-LoDbFAVPUY h5,.paragraph-LoDbFAVPUY h6,.paragraph-LoDbFAVPUY ul li,.paragraph-LoDbFAVPUY.text-output{font-size:16px!important;font-weight:400}}.paragraph-LoDbFAVPUY.text-output h1:first-child:before,.paragraph-LoDbFAVPUY.text-output h2:first-child:before,.paragraph-LoDbFAVPUY.text-output h3:first-child:before,.paragraph-LoDbFAVPUY.text-output h4:first-child:before,.paragraph-LoDbFAVPUY.text-output h5:first-child:before,.paragraph-LoDbFAVPUY.text-output h6:first-child:before,.paragraph-LoDbFAVPUY.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-7DX_u1N02U h1,.sub-heading-7DX_u1N02U h2,.sub-heading-7DX_u1N02U h3,.sub-heading-7DX_u1N02U h4,.sub-heading-7DX_u1N02U h5,.sub-heading-7DX_u1N02U h6,.sub-heading-7DX_u1N02U ul li,.sub-heading-7DX_u1N02U.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-7DX_u1N02U h1,.sub-heading-7DX_u1N02U h2,.sub-heading-7DX_u1N02U h3,.sub-heading-7DX_u1N02U h4,.sub-heading-7DX_u1N02U h5,.sub-heading-7DX_u1N02U h6,.sub-heading-7DX_u1N02U ul li,.sub-heading-7DX_u1N02U.text-output{font-size:18px!important;font-weight:400}}.sub-heading-7DX_u1N02U.text-output h1:first-child:before,.sub-heading-7DX_u1N02U.text-output h2:first-child:before,.sub-heading-7DX_u1N02U.text-output h3:first-child:before,.sub-heading-7DX_u1N02U.text-output h4:first-child:before,.sub-heading-7DX_u1N02U.text-output h5:first-child:before,.sub-heading-7DX_u1N02U.text-output h6:first-child:before,.sub-heading-7DX_u1N02U.text-output p:first-child:before,.sub-heading-IGlxgZWL3y.text-output h1:first-child:before,.sub-heading-IGlxgZWL3y.text-output h2:first-child:before,.sub-heading-IGlxgZWL3y.text-output h3:first-child:before,.sub-heading-IGlxgZWL3y.text-output h4:first-child:before,.sub-heading-IGlxgZWL3y.text-output h5:first-child:before,.sub-heading-IGlxgZWL3y.text-output h6:first-child:before,.sub-heading-IGlxgZWL3y.text-output p:first-child:before,.sub-heading-rpngswhUnR.text-output h1:first-child:before,.sub-heading-rpngswhUnR.text-output h2:first-child:before,.sub-heading-rpngswhUnR.text-output h3:first-child:before,.sub-heading-rpngswhUnR.text-output h4:first-child:before,.sub-heading-rpngswhUnR.text-output h5:first-child:before,.sub-heading-rpngswhUnR.text-output h6:first-child:before,.sub-heading-rpngswhUnR.text-output p:first-child:before,.sub-heading-xb4AOLmafR.text-output h1:first-child:before,.sub-heading-xb4AOLmafR.text-output h2:first-child:before,.sub-heading-xb4AOLmafR.text-output h3:first-child:before,.sub-heading-xb4AOLmafR.text-output h4:first-child:before,.sub-heading-xb4AOLmafR.text-output h5:first-child:before,.sub-heading-xb4AOLmafR.text-output h6:first-child:before,.sub-heading-xb4AOLmafR.text-output p:first-child:before{color:var(--text-color);content:'\';
93 − font-family: '';margin-right:5px;font-weight:700}#image-slider-BhOrd0UxRp .carousel{height:300px;width:100%}#image-slider-BhOrd0UxRp .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-8gudlnPSki .carousel__pagination-container .carousel__pagination,#image-slider-BhOrd0UxRp .carousel__pagination-container .carousel__pagination,#image-slider-FGU3qk0tCw .carousel__pagination-container .carousel__pagination,#image-slider-Ju4qJm1B3v .carousel__pagination-container .carousel__pagination,#image-slider-Zo4wpRG7hJ .carousel__pagination-container .carousel__pagination,#image-slider-bWla67nGnn .carousel__pagination-container .carousel__pagination,#image-slider-l_hlovsKRG .carousel__pagination-container .carousel__pagination,#image-slider-qwzj19cKIy .carousel__pagination-container .carousel__pagination{height:10px;width:10px;border-radius:999px;transition:all 300ms}#image-slider-BhOrd0UxRp .carousel__pagination-active{background:#fff}#image-slider-BhOrd0UxRp .carousel__pagination-inactive{background:#000}#image-slider-BhOrd0UxRp .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}#image-slider-8gudlnPSki .carousel__arrow svg,#image-slider-BhOrd0UxRp .carousel__arrow svg,#image-slider-FGU3qk0tCw .carousel__arrow svg,#image-slider-Ju4qJm1B3v .carousel__arrow svg,#image-slider-Zo4wpRG7hJ .carousel__arrow svg,#image-slider-bWla67nGnn .carousel__arrow svg,#image-slider-l_hlovsKRG .carousel__arrow svg,#image-slider-qwzj19cKIy .carousel__arrow svg{color:#fff;width:40px;height:40px;cursor:pointer;z-index:12}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-xb4AOLmafR h1,.sub-heading-xb4AOLmafR h2,.sub-heading-xb4AOLmafR h3,.sub-heading-xb4AOLmafR h4,.sub-heading-xb4AOLmafR h5,.sub-heading-xb4AOLmafR h6,.sub-heading-xb4AOLmafR ul li,.sub-heading-xb4AOLmafR.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-xb4AOLmafR h1,.sub-heading-xb4AOLmafR h2,.sub-heading-xb4AOLmafR h3,.sub-heading-xb4AOLmafR h4,.sub-heading-xb4AOLmafR h5,.sub-heading-xb4AOLmafR h6,.sub-heading-xb4AOLmafR ul li,.sub-heading-xb4AOLmafR.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-0PYG1zdcXx{animation:none!important}}.--mobile #row-0PYG1zdcXx{animation:none!important}#col-Iz5DINGe-M>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-Iz5DINGe-M{animation:none!important}}.--mobile #col-Iz5DINGe-M,.--mobile #row-GORzDsjsua{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-IGlxgZWL3y h1,.sub-heading-IGlxgZWL3y h2,.sub-heading-IGlxgZWL3y h3,.sub-heading-IGlxgZWL3y h4,.sub-heading-IGlxgZWL3y h5,.sub-heading-IGlxgZWL3y h6,.sub-heading-IGlxgZWL3y ul li,.sub-heading-IGlxgZWL3y.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-IGlxgZWL3y h1,.sub-heading-IGlxgZWL3y h2,.sub-heading-IGlxgZWL3y h3,.sub-heading-IGlxgZWL3y h4,.sub-heading-IGlxgZWL3y h5,.sub-heading-IGlxgZWL3y h6,.sub-heading-IGlxgZWL3y ul li,.sub-heading-IGlxgZWL3y.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-rpngswhUnR h1,.sub-heading-rpngswhUnR h2,.sub-heading-rpngswhUnR h3,.sub-heading-rpngswhUnR h4,.sub-heading-rpngswhUnR h5,.sub-heading-rpngswhUnR h6,.sub-heading-rpngswhUnR ul li,.sub-heading-rpngswhUnR.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-rpngswhUnR h1,.sub-heading-rpngswhUnR h2,.sub-heading-rpngswhUnR h3,.sub-heading-rpngswhUnR h4,.sub-heading-rpngswhUnR h5,.sub-heading-rpngswhUnR h6,.sub-heading-rpngswhUnR ul li,.sub-heading-rpngswhUnR.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-GORzDsjsua{animation:none!important}}#col-yA0QJbNOCo>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-yA0QJbNOCo{animation:none!important}}.--mobile #col-yA0QJbNOCo{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-CL0dN3AMWc h1,.paragraph-CL0dN3AMWc h2,.paragraph-CL0dN3AMWc h3,.paragraph-CL0dN3AMWc h4,.paragraph-CL0dN3AMWc h5,.paragraph-CL0dN3AMWc h6,.paragraph-CL0dN3AMWc ul li,.paragraph-CL0dN3AMWc.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-CL0dN3AMWc h1,.paragraph-CL0dN3AMWc h2,.paragraph-CL0dN3AMWc h3,.paragraph-CL0dN3AMWc h4,.paragraph-CL0dN3AMWc h5,.paragraph-CL0dN3AMWc h6,.paragraph-CL0dN3AMWc ul li,.paragraph-CL0dN3AMWc.text-output{font-size:16px!important;font-weight:400}}.paragraph-CL0dN3AMWc.text-output h1:first-child:before,.paragraph-CL0dN3AMWc.text-output h2:first-child:before,.paragraph-CL0dN3AMWc.text-output h3:first-child:before,.paragraph-CL0dN3AMWc.text-output h4:first-child:before,.paragraph-CL0dN3AMWc.text-output h5:first-child:before,.paragraph-CL0dN3AMWc.text-output h6:first-child:before,.paragraph-CL0dN3AMWc.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-AcGLX8s-c6 h1,.paragraph-AcGLX8s-c6 h2,.paragraph-AcGLX8s-c6 h3,.paragraph-AcGLX8s-c6 h4,.paragraph-AcGLX8s-c6 h5,.paragraph-AcGLX8s-c6 h6,.paragraph-AcGLX8s-c6 ul li,.paragraph-AcGLX8s-c6.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-AcGLX8s-c6 h1,.paragraph-AcGLX8s-c6 h2,.paragraph-AcGLX8s-c6 h3,.paragraph-AcGLX8s-c6 h4,.paragraph-AcGLX8s-c6 h5,.paragraph-AcGLX8s-c6 h6,.paragraph-AcGLX8s-c6 ul li,.paragraph-AcGLX8s-c6.text-output{font-size:16px!important;font-weight:400}}.paragraph-AcGLX8s-c6.text-output h1:first-child:before,.paragraph-AcGLX8s-c6.text-output h2:first-child:before,.paragraph-AcGLX8s-c6.text-output h3:first-child:before,.paragraph-AcGLX8s-c6.text-output h4:first-child:before,.paragraph-AcGLX8s-c6.text-output h5:first-child:before,.paragraph-AcGLX8s-c6.text-output h6:first-child:before,.paragraph-AcGLX8s-c6.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-ZkySthXu3Y h1,.paragraph-ZkySthXu3Y h2,.paragraph-ZkySthXu3Y h3,.paragraph-ZkySthXu3Y h4,.paragraph-ZkySthXu3Y h5,.paragraph-ZkySthXu3Y h6,.paragraph-ZkySthXu3Y ul li,.paragraph-ZkySthXu3Y.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-ZkySthXu3Y h1,.paragraph-ZkySthXu3Y h2,.paragraph-ZkySthXu3Y h3,.paragraph-ZkySthXu3Y h4,.paragraph-ZkySthXu3Y h5,.paragraph-ZkySthXu3Y h6,.paragraph-ZkySthXu3Y ul li,.paragraph-ZkySthXu3Y.text-output{font-size:16px!important;font-weight:400}}.paragraph-ZkySthXu3Y.text-output h1:first-child:before,.paragraph-ZkySthXu3Y.text-output h2:first-child:before,.paragraph-ZkySthXu3Y.text-output h3:first-child:before,.paragraph-ZkySthXu3Y.text-output h4:first-child:before,.paragraph-ZkySthXu3Y.text-output h5:first-child:before,.paragraph-ZkySthXu3Y.text-output h6:first-child:before,.paragraph-ZkySthXu3Y.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-F1MzsywNHM h1,.sub-heading-F1MzsywNHM h2,.sub-heading-F1MzsywNHM h3,.sub-heading-F1MzsywNHM h4,.sub-heading-F1MzsywNHM h5,.sub-heading-F1MzsywNHM h6,.sub-heading-F1MzsywNHM ul li,.sub-heading-F1MzsywNHM.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-F1MzsywNHM h1,.sub-heading-F1MzsywNHM h2,.sub-heading-F1MzsywNHM h3,.sub-heading-F1MzsywNHM h4,.sub-heading-F1MzsywNHM h5,.sub-heading-F1MzsywNHM h6,.sub-heading-F1MzsywNHM ul li,.sub-heading-F1MzsywNHM.text-output{font-size:18px!important;font-weight:400}}.sub-heading-F1MzsywNHM.text-output h1:first-child:before,.sub-heading-F1MzsywNHM.text-output h2:first-child:before,.sub-heading-F1MzsywNHM.text-output h3:first-child:before,.sub-heading-F1MzsywNHM.text-output h4:first-child:before,.sub-heading-F1MzsywNHM.text-output h5:first-child:before,.sub-heading-F1MzsywNHM.text-output h6:first-child:before,.sub-heading-F1MzsywNHM.text-output p:first-child:before,.sub-heading-qnskExuEj_.text-output h1:first-child:before,.sub-heading-qnskExuEj_.text-output h2:first-child:before,.sub-heading-qnskExuEj_.text-output h3:first-child:before,.sub-heading-qnskExuEj_.text-output h4:first-child:before,.sub-heading-qnskExuEj_.text-output h5:first-child:before,.sub-heading-qnskExuEj_.text-output h6:first-child:before,.sub-heading-qnskExuEj_.text-output p:first-child:before,.sub-heading-yuPakkKcss.text-output h1:first-child:before,.sub-heading-yuPakkKcss.text-output h2:first-child:before,.sub-heading-yuPakkKcss.text-output h3:first-child:before,.sub-heading-yuPakkKcss.text-output h4:first-child:before,.sub-heading-yuPakkKcss.text-output h5:first-child:before,.sub-heading-yuPakkKcss.text-output h6:first-child:before,.sub-heading-yuPakkKcss.text-output p:first-child:before,.sub-heading-z7YCLV8dCF.text-output h1:first-child:before,.sub-heading-z7YCLV8dCF.text-output h2:first-child:before,.sub-heading-z7YCLV8dCF.text-output h3:first-child:before,.sub-heading-z7YCLV8dCF.text-output h4:first-child:before,.sub-heading-z7YCLV8dCF.text-output h5:first-child:before,.sub-heading-z7YCLV8dCF.text-output h6:first-child:before,.sub-heading-z7YCLV8dCF.text-output p:first-child:before{color:var(--text-color);content:'\';
94 − font-family: '';margin-right:5px;font-weight:700}#image-slider-bWla67nGnn .carousel{height:300px;width:100%}#image-slider-bWla67nGnn .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-bWla67nGnn .carousel__pagination-active{background:#fff}#image-slider-bWla67nGnn .carousel__pagination-inactive{background:#000}#image-slider-bWla67nGnn .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-yuPakkKcss h1,.sub-heading-yuPakkKcss h2,.sub-heading-yuPakkKcss h3,.sub-heading-yuPakkKcss h4,.sub-heading-yuPakkKcss h5,.sub-heading-yuPakkKcss h6,.sub-heading-yuPakkKcss ul li,.sub-heading-yuPakkKcss.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-yuPakkKcss h1,.sub-heading-yuPakkKcss h2,.sub-heading-yuPakkKcss h3,.sub-heading-yuPakkKcss h4,.sub-heading-yuPakkKcss h5,.sub-heading-yuPakkKcss h6,.sub-heading-yuPakkKcss ul li,.sub-heading-yuPakkKcss.text-output{font-size:18px!important;font-weight:400}}#col-KUsELMqcoC>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-KUsELMqcoC{animation:none!important}}.--mobile #col-KUsELMqcoC,.--mobile #row-2EwUhXMzzv{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-z7YCLV8dCF h1,.sub-heading-z7YCLV8dCF h2,.sub-heading-z7YCLV8dCF h3,.sub-heading-z7YCLV8dCF h4,.sub-heading-z7YCLV8dCF h5,.sub-heading-z7YCLV8dCF h6,.sub-heading-z7YCLV8dCF ul li,.sub-heading-z7YCLV8dCF.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-z7YCLV8dCF h1,.sub-heading-z7YCLV8dCF h2,.sub-heading-z7YCLV8dCF h3,.sub-heading-z7YCLV8dCF h4,.sub-heading-z7YCLV8dCF h5,.sub-heading-z7YCLV8dCF h6,.sub-heading-z7YCLV8dCF ul li,.sub-heading-z7YCLV8dCF.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-qnskExuEj_ h1,.sub-heading-qnskExuEj_ h2,.sub-heading-qnskExuEj_ h3,.sub-heading-qnskExuEj_ h4,.sub-heading-qnskExuEj_ h5,.sub-heading-qnskExuEj_ h6,.sub-heading-qnskExuEj_ ul li,.sub-heading-qnskExuEj_.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-qnskExuEj_ h1,.sub-heading-qnskExuEj_ h2,.sub-heading-qnskExuEj_ h3,.sub-heading-qnskExuEj_ h4,.sub-heading-qnskExuEj_ h5,.sub-heading-qnskExuEj_ h6,.sub-heading-qnskExuEj_ ul li,.sub-heading-qnskExuEj_.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-2EwUhXMzzv{animation:none!important}}#col-cuOhmolhsd>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-cuOhmolhsd{animation:none!important}}.--mobile #col-cuOhmolhsd{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-BDSuLAw27o h1,.paragraph-BDSuLAw27o h2,.paragraph-BDSuLAw27o h3,.paragraph-BDSuLAw27o h4,.paragraph-BDSuLAw27o h5,.paragraph-BDSuLAw27o h6,.paragraph-BDSuLAw27o ul li,.paragraph-BDSuLAw27o.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-BDSuLAw27o h1,.paragraph-BDSuLAw27o h2,.paragraph-BDSuLAw27o h3,.paragraph-BDSuLAw27o h4,.paragraph-BDSuLAw27o h5,.paragraph-BDSuLAw27o h6,.paragraph-BDSuLAw27o ul li,.paragraph-BDSuLAw27o.text-output{font-size:16px!important;font-weight:400}}.paragraph-BDSuLAw27o.text-output h1:first-child:before,.paragraph-BDSuLAw27o.text-output h2:first-child:before,.paragraph-BDSuLAw27o.text-output h3:first-child:before,.paragraph-BDSuLAw27o.text-output h4:first-child:before,.paragraph-BDSuLAw27o.text-output h5:first-child:before,.paragraph-BDSuLAw27o.text-output h6:first-child:before,.paragraph-BDSuLAw27o.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-FpaPMM5r_r h1,.paragraph-FpaPMM5r_r h2,.paragraph-FpaPMM5r_r h3,.paragraph-FpaPMM5r_r h4,.paragraph-FpaPMM5r_r h5,.paragraph-FpaPMM5r_r h6,.paragraph-FpaPMM5r_r ul li,.paragraph-FpaPMM5r_r.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-FpaPMM5r_r h1,.paragraph-FpaPMM5r_r h2,.paragraph-FpaPMM5r_r h3,.paragraph-FpaPMM5r_r h4,.paragraph-FpaPMM5r_r h5,.paragraph-FpaPMM5r_r h6,.paragraph-FpaPMM5r_r ul li,.paragraph-FpaPMM5r_r.text-output{font-size:16px!important;font-weight:400}}.paragraph-FpaPMM5r_r.text-output h1:first-child:before,.paragraph-FpaPMM5r_r.text-output h2:first-child:before,.paragraph-FpaPMM5r_r.text-output h3:first-child:before,.paragraph-FpaPMM5r_r.text-output h4:first-child:before,.paragraph-FpaPMM5r_r.text-output h5:first-child:before,.paragraph-FpaPMM5r_r.text-output h6:first-child:before,.paragraph-FpaPMM5r_r.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-kXfOYNJlru h1,.paragraph-kXfOYNJlru h2,.paragraph-kXfOYNJlru h3,.paragraph-kXfOYNJlru h4,.paragraph-kXfOYNJlru h5,.paragraph-kXfOYNJlru h6,.paragraph-kXfOYNJlru ul li,.paragraph-kXfOYNJlru.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-kXfOYNJlru h1,.paragraph-kXfOYNJlru h2,.paragraph-kXfOYNJlru h3,.paragraph-kXfOYNJlru h4,.paragraph-kXfOYNJlru h5,.paragraph-kXfOYNJlru h6,.paragraph-kXfOYNJlru ul li,.paragraph-kXfOYNJlru.text-output{font-size:16px!important;font-weight:400}}.paragraph-kXfOYNJlru.text-output h1:first-child:before,.paragraph-kXfOYNJlru.text-output h2:first-child:before,.paragraph-kXfOYNJlru.text-output h3:first-child:before,.paragraph-kXfOYNJlru.text-output h4:first-child:before,.paragraph-kXfOYNJlru.text-output h5:first-child:before,.paragraph-kXfOYNJlru.text-output h6:first-child:before,.paragraph-kXfOYNJlru.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-QRw76TR2hx h1,.sub-heading-QRw76TR2hx h2,.sub-heading-QRw76TR2hx h3,.sub-heading-QRw76TR2hx h4,.sub-heading-QRw76TR2hx h5,.sub-heading-QRw76TR2hx h6,.sub-heading-QRw76TR2hx ul li,.sub-heading-QRw76TR2hx.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-QRw76TR2hx h1,.sub-heading-QRw76TR2hx h2,.sub-heading-QRw76TR2hx h3,.sub-heading-QRw76TR2hx h4,.sub-heading-QRw76TR2hx h5,.sub-heading-QRw76TR2hx h6,.sub-heading-QRw76TR2hx ul li,.sub-heading-QRw76TR2hx.text-output{font-size:18px!important;font-weight:400}}.sub-heading-03SHZqsluh.text-output h1:first-child:before,.sub-heading-03SHZqsluh.text-output h2:first-child:before,.sub-heading-03SHZqsluh.text-output h3:first-child:before,.sub-heading-03SHZqsluh.text-output h4:first-child:before,.sub-heading-03SHZqsluh.text-output h5:first-child:before,.sub-heading-03SHZqsluh.text-output h6:first-child:before,.sub-heading-03SHZqsluh.text-output p:first-child:before,.sub-heading-GYm3rjqrcY.text-output h1:first-child:before,.sub-heading-GYm3rjqrcY.text-output h2:first-child:before,.sub-heading-GYm3rjqrcY.text-output h3:first-child:before,.sub-heading-GYm3rjqrcY.text-output h4:first-child:before,.sub-heading-GYm3rjqrcY.text-output h5:first-child:before,.sub-heading-GYm3rjqrcY.text-output h6:first-child:before,.sub-heading-GYm3rjqrcY.text-output p:first-child:before,.sub-heading-QRw76TR2hx.text-output h1:first-child:before,.sub-heading-QRw76TR2hx.text-output h2:first-child:before,.sub-heading-QRw76TR2hx.text-output h3:first-child:before,.sub-heading-QRw76TR2hx.text-output h4:first-child:before,.sub-heading-QRw76TR2hx.text-output h5:first-child:before,.sub-heading-QRw76TR2hx.text-output h6:first-child:before,.sub-heading-QRw76TR2hx.text-output p:first-child:before,.sub-heading-wjn1LLwHlQ.text-output h1:first-child:before,.sub-heading-wjn1LLwHlQ.text-output h2:first-child:before,.sub-heading-wjn1LLwHlQ.text-output h3:first-child:before,.sub-heading-wjn1LLwHlQ.text-output h4:first-child:before,.sub-heading-wjn1LLwHlQ.text-output h5:first-child:before,.sub-heading-wjn1LLwHlQ.text-output h6:first-child:before,.sub-heading-wjn1LLwHlQ.text-output p:first-child:before{color:var(--text-color);content:'\';
95 − font-family: '';margin-right:5px;font-weight:700}#image-slider-Ju4qJm1B3v .carousel{height:300px;width:100%}#image-slider-Ju4qJm1B3v .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-Ju4qJm1B3v .carousel__pagination-active{background:#fff}#image-slider-Ju4qJm1B3v .carousel__pagination-inactive{background:#000}#image-slider-Ju4qJm1B3v .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-wjn1LLwHlQ h1,.sub-heading-wjn1LLwHlQ h2,.sub-heading-wjn1LLwHlQ h3,.sub-heading-wjn1LLwHlQ h4,.sub-heading-wjn1LLwHlQ h5,.sub-heading-wjn1LLwHlQ h6,.sub-heading-wjn1LLwHlQ ul li,.sub-heading-wjn1LLwHlQ.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-wjn1LLwHlQ h1,.sub-heading-wjn1LLwHlQ h2,.sub-heading-wjn1LLwHlQ h3,.sub-heading-wjn1LLwHlQ h4,.sub-heading-wjn1LLwHlQ h5,.sub-heading-wjn1LLwHlQ h6,.sub-heading-wjn1LLwHlQ ul li,.sub-heading-wjn1LLwHlQ.text-output{font-size:18px!important;font-weight:400}}#col-yhvBaHjiB6>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-yhvBaHjiB6{animation:none!important}}.--mobile #col-yhvBaHjiB6,.--mobile #row-6518d_odk6{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-03SHZqsluh h1,.sub-heading-03SHZqsluh h2,.sub-heading-03SHZqsluh h3,.sub-heading-03SHZqsluh h4,.sub-heading-03SHZqsluh h5,.sub-heading-03SHZqsluh h6,.sub-heading-03SHZqsluh ul li,.sub-heading-03SHZqsluh.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-03SHZqsluh h1,.sub-heading-03SHZqsluh h2,.sub-heading-03SHZqsluh h3,.sub-heading-03SHZqsluh h4,.sub-heading-03SHZqsluh h5,.sub-heading-03SHZqsluh h6,.sub-heading-03SHZqsluh ul li,.sub-heading-03SHZqsluh.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-GYm3rjqrcY h1,.sub-heading-GYm3rjqrcY h2,.sub-heading-GYm3rjqrcY h3,.sub-heading-GYm3rjqrcY h4,.sub-heading-GYm3rjqrcY h5,.sub-heading-GYm3rjqrcY h6,.sub-heading-GYm3rjqrcY ul li,.sub-heading-GYm3rjqrcY.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-GYm3rjqrcY h1,.sub-heading-GYm3rjqrcY h2,.sub-heading-GYm3rjqrcY h3,.sub-heading-GYm3rjqrcY h4,.sub-heading-GYm3rjqrcY h5,.sub-heading-GYm3rjqrcY h6,.sub-heading-GYm3rjqrcY ul li,.sub-heading-GYm3rjqrcY.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-6518d_odk6{animation:none!important}}#col--Ce-PpyXTL>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col--Ce-PpyXTL{animation:none!important}}.--mobile #col--Ce-PpyXTL{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-m92HIn7r7P h1,.paragraph-m92HIn7r7P h2,.paragraph-m92HIn7r7P h3,.paragraph-m92HIn7r7P h4,.paragraph-m92HIn7r7P h5,.paragraph-m92HIn7r7P h6,.paragraph-m92HIn7r7P ul li,.paragraph-m92HIn7r7P.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-m92HIn7r7P h1,.paragraph-m92HIn7r7P h2,.paragraph-m92HIn7r7P h3,.paragraph-m92HIn7r7P h4,.paragraph-m92HIn7r7P h5,.paragraph-m92HIn7r7P h6,.paragraph-m92HIn7r7P ul li,.paragraph-m92HIn7r7P.text-output{font-size:16px!important;font-weight:400}}.paragraph-m92HIn7r7P.text-output h1:first-child:before,.paragraph-m92HIn7r7P.text-output h2:first-child:before,.paragraph-m92HIn7r7P.text-output h3:first-child:before,.paragraph-m92HIn7r7P.text-output h4:first-child:before,.paragraph-m92HIn7r7P.text-output h5:first-child:before,.paragraph-m92HIn7r7P.text-output h6:first-child:before,.paragraph-m92HIn7r7P.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-7paamW55Da h1,.paragraph-7paamW55Da h2,.paragraph-7paamW55Da h3,.paragraph-7paamW55Da h4,.paragraph-7paamW55Da h5,.paragraph-7paamW55Da h6,.paragraph-7paamW55Da ul li,.paragraph-7paamW55Da.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-7paamW55Da h1,.paragraph-7paamW55Da h2,.paragraph-7paamW55Da h3,.paragraph-7paamW55Da h4,.paragraph-7paamW55Da h5,.paragraph-7paamW55Da h6,.paragraph-7paamW55Da ul li,.paragraph-7paamW55Da.text-output{font-size:16px!important;font-weight:400}}.paragraph-7paamW55Da.text-output h1:first-child:before,.paragraph-7paamW55Da.text-output h2:first-child:before,.paragraph-7paamW55Da.text-output h3:first-child:before,.paragraph-7paamW55Da.text-output h4:first-child:before,.paragraph-7paamW55Da.text-output h5:first-child:before,.paragraph-7paamW55Da.text-output h6:first-child:before,.paragraph-7paamW55Da.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-XXCiBPbH30 h1,.paragraph-XXCiBPbH30 h2,.paragraph-XXCiBPbH30 h3,.paragraph-XXCiBPbH30 h4,.paragraph-XXCiBPbH30 h5,.paragraph-XXCiBPbH30 h6,.paragraph-XXCiBPbH30 ul li,.paragraph-XXCiBPbH30.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-XXCiBPbH30 h1,.paragraph-XXCiBPbH30 h2,.paragraph-XXCiBPbH30 h3,.paragraph-XXCiBPbH30 h4,.paragraph-XXCiBPbH30 h5,.paragraph-XXCiBPbH30 h6,.paragraph-XXCiBPbH30 ul li,.paragraph-XXCiBPbH30.text-output{font-size:16px!important;font-weight:400}}.paragraph-XXCiBPbH30.text-output h1:first-child:before,.paragraph-XXCiBPbH30.text-output h2:first-child:before,.paragraph-XXCiBPbH30.text-output h3:first-child:before,.paragraph-XXCiBPbH30.text-output h4:first-child:before,.paragraph-XXCiBPbH30.text-output h5:first-child:before,.paragraph-XXCiBPbH30.text-output h6:first-child:before,.paragraph-XXCiBPbH30.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-nzfWFLpdN4 h1,.sub-heading-nzfWFLpdN4 h2,.sub-heading-nzfWFLpdN4 h3,.sub-heading-nzfWFLpdN4 h4,.sub-heading-nzfWFLpdN4 h5,.sub-heading-nzfWFLpdN4 h6,.sub-heading-nzfWFLpdN4 ul li,.sub-heading-nzfWFLpdN4.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-nzfWFLpdN4 h1,.sub-heading-nzfWFLpdN4 h2,.sub-heading-nzfWFLpdN4 h3,.sub-heading-nzfWFLpdN4 h4,.sub-heading-nzfWFLpdN4 h5,.sub-heading-nzfWFLpdN4 h6,.sub-heading-nzfWFLpdN4 ul li,.sub-heading-nzfWFLpdN4.text-output{font-size:18px!important;font-weight:400}}.sub-heading-3Bpz0SXwob.text-output h1:first-child:before,.sub-heading-3Bpz0SXwob.text-output h2:first-child:before,.sub-heading-3Bpz0SXwob.text-output h3:first-child:before,.sub-heading-3Bpz0SXwob.text-output h4:first-child:before,.sub-heading-3Bpz0SXwob.text-output h5:first-child:before,.sub-heading-3Bpz0SXwob.text-output h6:first-child:before,.sub-heading-3Bpz0SXwob.text-output p:first-child:before,.sub-heading-5gG07Ko_oZ.text-output h1:first-child:before,.sub-heading-5gG07Ko_oZ.text-output h2:first-child:before,.sub-heading-5gG07Ko_oZ.text-output h3:first-child:before,.sub-heading-5gG07Ko_oZ.text-output h4:first-child:before,.sub-heading-5gG07Ko_oZ.text-output h5:first-child:before,.sub-heading-5gG07Ko_oZ.text-output h6:first-child:before,.sub-heading-5gG07Ko_oZ.text-output p:first-child:before,.sub-heading-nzfWFLpdN4.text-output h1:first-child:before,.sub-heading-nzfWFLpdN4.text-output h2:first-child:before,.sub-heading-nzfWFLpdN4.text-output h3:first-child:before,.sub-heading-nzfWFLpdN4.text-output h4:first-child:before,.sub-heading-nzfWFLpdN4.text-output h5:first-child:before,.sub-heading-nzfWFLpdN4.text-output h6:first-child:before,.sub-heading-nzfWFLpdN4.text-output p:first-child:before,.sub-heading-xN6mEZJoxC.text-output h1:first-child:before,.sub-heading-xN6mEZJoxC.text-output h2:first-child:before,.sub-heading-xN6mEZJoxC.text-output h3:first-child:before,.sub-heading-xN6mEZJoxC.text-output h4:first-child:before,.sub-heading-xN6mEZJoxC.text-output h5:first-child:before,.sub-heading-xN6mEZJoxC.text-output h6:first-child:before,.sub-heading-xN6mEZJoxC.text-output p:first-child:before{color:var(--text-color);content:'\';
96 − font-family: '';margin-right:5px;font-weight:700}#image-slider-l_hlovsKRG .carousel{height:300px;width:100%}#image-slider-l_hlovsKRG .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-l_hlovsKRG .carousel__pagination-active{background:#fff}#image-slider-l_hlovsKRG .carousel__pagination-inactive{background:#000}#image-slider-l_hlovsKRG .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-3Bpz0SXwob h1,.sub-heading-3Bpz0SXwob h2,.sub-heading-3Bpz0SXwob h3,.sub-heading-3Bpz0SXwob h4,.sub-heading-3Bpz0SXwob h5,.sub-heading-3Bpz0SXwob h6,.sub-heading-3Bpz0SXwob ul li,.sub-heading-3Bpz0SXwob.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-3Bpz0SXwob h1,.sub-heading-3Bpz0SXwob h2,.sub-heading-3Bpz0SXwob h3,.sub-heading-3Bpz0SXwob h4,.sub-heading-3Bpz0SXwob h5,.sub-heading-3Bpz0SXwob h6,.sub-heading-3Bpz0SXwob ul li,.sub-heading-3Bpz0SXwob.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-VVzmQ44QDs{animation:none!important}}.--mobile #row-VVzmQ44QDs{animation:none!important}#col-ogCVk9UCXh>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-ogCVk9UCXh{animation:none!important}}.--mobile #col-ogCVk9UCXh,.--mobile #row-ijx5noBjNS{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-xN6mEZJoxC h1,.sub-heading-xN6mEZJoxC h2,.sub-heading-xN6mEZJoxC h3,.sub-heading-xN6mEZJoxC h4,.sub-heading-xN6mEZJoxC h5,.sub-heading-xN6mEZJoxC h6,.sub-heading-xN6mEZJoxC ul li,.sub-heading-xN6mEZJoxC.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-xN6mEZJoxC h1,.sub-heading-xN6mEZJoxC h2,.sub-heading-xN6mEZJoxC h3,.sub-heading-xN6mEZJoxC h4,.sub-heading-xN6mEZJoxC h5,.sub-heading-xN6mEZJoxC h6,.sub-heading-xN6mEZJoxC ul li,.sub-heading-xN6mEZJoxC.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-5gG07Ko_oZ h1,.sub-heading-5gG07Ko_oZ h2,.sub-heading-5gG07Ko_oZ h3,.sub-heading-5gG07Ko_oZ h4,.sub-heading-5gG07Ko_oZ h5,.sub-heading-5gG07Ko_oZ h6,.sub-heading-5gG07Ko_oZ ul li,.sub-heading-5gG07Ko_oZ.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-5gG07Ko_oZ h1,.sub-heading-5gG07Ko_oZ h2,.sub-heading-5gG07Ko_oZ h3,.sub-heading-5gG07Ko_oZ h4,.sub-heading-5gG07Ko_oZ h5,.sub-heading-5gG07Ko_oZ h6,.sub-heading-5gG07Ko_oZ ul li,.sub-heading-5gG07Ko_oZ.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-ijx5noBjNS{animation:none!important}}#col-hV3q1OYuDJ>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-hV3q1OYuDJ{animation:none!important}}.--mobile #col-hV3q1OYuDJ{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-6S6vKy-B_2 h1,.paragraph-6S6vKy-B_2 h2,.paragraph-6S6vKy-B_2 h3,.paragraph-6S6vKy-B_2 h4,.paragraph-6S6vKy-B_2 h5,.paragraph-6S6vKy-B_2 h6,.paragraph-6S6vKy-B_2 ul li,.paragraph-6S6vKy-B_2.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-6S6vKy-B_2 h1,.paragraph-6S6vKy-B_2 h2,.paragraph-6S6vKy-B_2 h3,.paragraph-6S6vKy-B_2 h4,.paragraph-6S6vKy-B_2 h5,.paragraph-6S6vKy-B_2 h6,.paragraph-6S6vKy-B_2 ul li,.paragraph-6S6vKy-B_2.text-output{font-size:16px!important;font-weight:400}}.paragraph-6S6vKy-B_2.text-output h1:first-child:before,.paragraph-6S6vKy-B_2.text-output h2:first-child:before,.paragraph-6S6vKy-B_2.text-output h3:first-child:before,.paragraph-6S6vKy-B_2.text-output h4:first-child:before,.paragraph-6S6vKy-B_2.text-output h5:first-child:before,.paragraph-6S6vKy-B_2.text-output h6:first-child:before,.paragraph-6S6vKy-B_2.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-3lpfzdInHP h1,.paragraph-3lpfzdInHP h2,.paragraph-3lpfzdInHP h3,.paragraph-3lpfzdInHP h4,.paragraph-3lpfzdInHP h5,.paragraph-3lpfzdInHP h6,.paragraph-3lpfzdInHP ul li,.paragraph-3lpfzdInHP.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-3lpfzdInHP h1,.paragraph-3lpfzdInHP h2,.paragraph-3lpfzdInHP h3,.paragraph-3lpfzdInHP h4,.paragraph-3lpfzdInHP h5,.paragraph-3lpfzdInHP h6,.paragraph-3lpfzdInHP ul li,.paragraph-3lpfzdInHP.text-output{font-size:16px!important;font-weight:400}}.paragraph-3lpfzdInHP.text-output h1:first-child:before,.paragraph-3lpfzdInHP.text-output h2:first-child:before,.paragraph-3lpfzdInHP.text-output h3:first-child:before,.paragraph-3lpfzdInHP.text-output h4:first-child:before,.paragraph-3lpfzdInHP.text-output h5:first-child:before,.paragraph-3lpfzdInHP.text-output h6:first-child:before,.paragraph-3lpfzdInHP.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-RCfZuiUpQs h1,.paragraph-RCfZuiUpQs h2,.paragraph-RCfZuiUpQs h3,.paragraph-RCfZuiUpQs h4,.paragraph-RCfZuiUpQs h5,.paragraph-RCfZuiUpQs h6,.paragraph-RCfZuiUpQs ul li,.paragraph-RCfZuiUpQs.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-RCfZuiUpQs h1,.paragraph-RCfZuiUpQs h2,.paragraph-RCfZuiUpQs h3,.paragraph-RCfZuiUpQs h4,.paragraph-RCfZuiUpQs h5,.paragraph-RCfZuiUpQs h6,.paragraph-RCfZuiUpQs ul li,.paragraph-RCfZuiUpQs.text-output{font-size:16px!important;font-weight:400}}.paragraph-RCfZuiUpQs.text-output h1:first-child:before,.paragraph-RCfZuiUpQs.text-output h2:first-child:before,.paragraph-RCfZuiUpQs.text-output h3:first-child:before,.paragraph-RCfZuiUpQs.text-output h4:first-child:before,.paragraph-RCfZuiUpQs.text-output h5:first-child:before,.paragraph-RCfZuiUpQs.text-output h6:first-child:before,.paragraph-RCfZuiUpQs.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-Bc30A5jEYL h1,.sub-heading-Bc30A5jEYL h2,.sub-heading-Bc30A5jEYL h3,.sub-heading-Bc30A5jEYL h4,.sub-heading-Bc30A5jEYL h5,.sub-heading-Bc30A5jEYL h6,.sub-heading-Bc30A5jEYL ul li,.sub-heading-Bc30A5jEYL.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-Bc30A5jEYL h1,.sub-heading-Bc30A5jEYL h2,.sub-heading-Bc30A5jEYL h3,.sub-heading-Bc30A5jEYL h4,.sub-heading-Bc30A5jEYL h5,.sub-heading-Bc30A5jEYL h6,.sub-heading-Bc30A5jEYL ul li,.sub-heading-Bc30A5jEYL.text-output{font-size:18px!important;font-weight:400}}.sub-heading-Bc30A5jEYL.text-output h1:first-child:before,.sub-heading-Bc30A5jEYL.text-output h2:first-child:before,.sub-heading-Bc30A5jEYL.text-output h3:first-child:before,.sub-heading-Bc30A5jEYL.text-output h4:first-child:before,.sub-heading-Bc30A5jEYL.text-output h5:first-child:before,.sub-heading-Bc30A5jEYL.text-output h6:first-child:before,.sub-heading-Bc30A5jEYL.text-output p:first-child:before,.sub-heading-Vrwfd6fYMC.text-output h1:first-child:before,.sub-heading-Vrwfd6fYMC.text-output h2:first-child:before,.sub-heading-Vrwfd6fYMC.text-output h3:first-child:before,.sub-heading-Vrwfd6fYMC.text-output h4:first-child:before,.sub-heading-Vrwfd6fYMC.text-output h5:first-child:before,.sub-heading-Vrwfd6fYMC.text-output h6:first-child:before,.sub-heading-Vrwfd6fYMC.text-output p:first-child:before,.sub-heading-Z8ByyIP4nb.text-output h1:first-child:before,.sub-heading-Z8ByyIP4nb.text-output h2:first-child:before,.sub-heading-Z8ByyIP4nb.text-output h3:first-child:before,.sub-heading-Z8ByyIP4nb.text-output h4:first-child:before,.sub-heading-Z8ByyIP4nb.text-output h5:first-child:before,.sub-heading-Z8ByyIP4nb.text-output h6:first-child:before,.sub-heading-Z8ByyIP4nb.text-output p:first-child:before,.sub-heading-h2yy_A6xP0.text-output h1:first-child:before,.sub-heading-h2yy_A6xP0.text-output h2:first-child:before,.sub-heading-h2yy_A6xP0.text-output h3:first-child:before,.sub-heading-h2yy_A6xP0.text-output h4:first-child:before,.sub-heading-h2yy_A6xP0.text-output h5:first-child:before,.sub-heading-h2yy_A6xP0.text-output h6:first-child:before,.sub-heading-h2yy_A6xP0.text-output p:first-child:before{color:var(--text-color);content:'\';
97 − font-family: '';margin-right:5px;font-weight:700}#image-slider-Zo4wpRG7hJ .carousel{height:300px;width:100%}#image-slider-Zo4wpRG7hJ .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-Zo4wpRG7hJ .carousel__pagination-active{background:#fff}#image-slider-Zo4wpRG7hJ .carousel__pagination-inactive{background:#000}#image-slider-Zo4wpRG7hJ .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-h2yy_A6xP0 h1,.sub-heading-h2yy_A6xP0 h2,.sub-heading-h2yy_A6xP0 h3,.sub-heading-h2yy_A6xP0 h4,.sub-heading-h2yy_A6xP0 h5,.sub-heading-h2yy_A6xP0 h6,.sub-heading-h2yy_A6xP0 ul li,.sub-heading-h2yy_A6xP0.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-h2yy_A6xP0 h1,.sub-heading-h2yy_A6xP0 h2,.sub-heading-h2yy_A6xP0 h3,.sub-heading-h2yy_A6xP0 h4,.sub-heading-h2yy_A6xP0 h5,.sub-heading-h2yy_A6xP0 h6,.sub-heading-h2yy_A6xP0 ul li,.sub-heading-h2yy_A6xP0.text-output{font-size:18px!important;font-weight:400}}#col-NsIdpn9Vp0>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-NsIdpn9Vp0{animation:none!important}}.--mobile #col-NsIdpn9Vp0,.--mobile #row-8KmiNapolM{animation:none!important}.button-XutTlle0iL .button-icon-start:before{content:"";font-family:"Font Awesome 5 Free";font-weight:700;color:var(--white)}@media screen and (min-width:481px) and (max-width:10000px){.button-XutTlle0iL .button-icon-end,.button-XutTlle0iL .button-icon-start,.button-XutTlle0iL .main-heading-button{font-size:16px;font-weight:500}.button-XutTlle0iL .button-icon-start{margin-right:5px}.button-XutTlle0iL .button-icon-end{margin-left:5px}.button-XutTlle0iL .sub-heading-button{font-size:15px;color:var(--white);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-XutTlle0iL .button-icon-end,.button-XutTlle0iL .button-icon-start,.button-XutTlle0iL .main-heading-button{font-size:18px;font-weight:500}.button-XutTlle0iL .button-icon-start{margin-right:5px}.button-XutTlle0iL .button-icon-end{margin-left:5px}.button-XutTlle0iL .sub-heading-button{font-size:15px;color:var(--white);font-weight:undefined}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-Vrwfd6fYMC h1,.sub-heading-Vrwfd6fYMC h2,.sub-heading-Vrwfd6fYMC h3,.sub-heading-Vrwfd6fYMC h4,.sub-heading-Vrwfd6fYMC h5,.sub-heading-Vrwfd6fYMC h6,.sub-heading-Vrwfd6fYMC ul li,.sub-heading-Vrwfd6fYMC.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-Vrwfd6fYMC h1,.sub-heading-Vrwfd6fYMC h2,.sub-heading-Vrwfd6fYMC h3,.sub-heading-Vrwfd6fYMC h4,.sub-heading-Vrwfd6fYMC h5,.sub-heading-Vrwfd6fYMC h6,.sub-heading-Vrwfd6fYMC ul li,.sub-heading-Vrwfd6fYMC.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-Z8ByyIP4nb h1,.sub-heading-Z8ByyIP4nb h2,.sub-heading-Z8ByyIP4nb h3,.sub-heading-Z8ByyIP4nb h4,.sub-heading-Z8ByyIP4nb h5,.sub-heading-Z8ByyIP4nb h6,.sub-heading-Z8ByyIP4nb ul li,.sub-heading-Z8ByyIP4nb.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-Z8ByyIP4nb h1,.sub-heading-Z8ByyIP4nb h2,.sub-heading-Z8ByyIP4nb h3,.sub-heading-Z8ByyIP4nb h4,.sub-heading-Z8ByyIP4nb h5,.sub-heading-Z8ByyIP4nb h6,.sub-heading-Z8ByyIP4nb ul li,.sub-heading-Z8ByyIP4nb.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-8KmiNapolM{animation:none!important}}#col-gJzUPPOwIL>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-gJzUPPOwIL{animation:none!important}}.--mobile #col-gJzUPPOwIL{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-mAIG3jHICs h1,.paragraph-mAIG3jHICs h2,.paragraph-mAIG3jHICs h3,.paragraph-mAIG3jHICs h4,.paragraph-mAIG3jHICs h5,.paragraph-mAIG3jHICs h6,.paragraph-mAIG3jHICs ul li,.paragraph-mAIG3jHICs.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-mAIG3jHICs h1,.paragraph-mAIG3jHICs h2,.paragraph-mAIG3jHICs h3,.paragraph-mAIG3jHICs h4,.paragraph-mAIG3jHICs h5,.paragraph-mAIG3jHICs h6,.paragraph-mAIG3jHICs ul li,.paragraph-mAIG3jHICs.text-output{font-size:16px!important;font-weight:400}}.paragraph-mAIG3jHICs.text-output h1:first-child:before,.paragraph-mAIG3jHICs.text-output h2:first-child:before,.paragraph-mAIG3jHICs.text-output h3:first-child:before,.paragraph-mAIG3jHICs.text-output h4:first-child:before,.paragraph-mAIG3jHICs.text-output h5:first-child:before,.paragraph-mAIG3jHICs.text-output h6:first-child:before,.paragraph-mAIG3jHICs.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-6EWwevM4Di h1,.paragraph-6EWwevM4Di h2,.paragraph-6EWwevM4Di h3,.paragraph-6EWwevM4Di h4,.paragraph-6EWwevM4Di h5,.paragraph-6EWwevM4Di h6,.paragraph-6EWwevM4Di ul li,.paragraph-6EWwevM4Di.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-6EWwevM4Di h1,.paragraph-6EWwevM4Di h2,.paragraph-6EWwevM4Di h3,.paragraph-6EWwevM4Di h4,.paragraph-6EWwevM4Di h5,.paragraph-6EWwevM4Di h6,.paragraph-6EWwevM4Di ul li,.paragraph-6EWwevM4Di.text-output{font-size:16px!important;font-weight:400}}.paragraph-6EWwevM4Di.text-output h1:first-child:before,.paragraph-6EWwevM4Di.text-output h2:first-child:before,.paragraph-6EWwevM4Di.text-output h3:first-child:before,.paragraph-6EWwevM4Di.text-output h4:first-child:before,.paragraph-6EWwevM4Di.text-output h5:first-child:before,.paragraph-6EWwevM4Di.text-output h6:first-child:before,.paragraph-6EWwevM4Di.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-Az60LAogzf h1,.paragraph-Az60LAogzf h2,.paragraph-Az60LAogzf h3,.paragraph-Az60LAogzf h4,.paragraph-Az60LAogzf h5,.paragraph-Az60LAogzf h6,.paragraph-Az60LAogzf ul li,.paragraph-Az60LAogzf.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-Az60LAogzf h1,.paragraph-Az60LAogzf h2,.paragraph-Az60LAogzf h3,.paragraph-Az60LAogzf h4,.paragraph-Az60LAogzf h5,.paragraph-Az60LAogzf h6,.paragraph-Az60LAogzf ul li,.paragraph-Az60LAogzf.text-output{font-size:16px!important;font-weight:400}}.paragraph-Az60LAogzf.text-output h1:first-child:before,.paragraph-Az60LAogzf.text-output h2:first-child:before,.paragraph-Az60LAogzf.text-output h3:first-child:before,.paragraph-Az60LAogzf.text-output h4:first-child:before,.paragraph-Az60LAogzf.text-output h5:first-child:before,.paragraph-Az60LAogzf.text-output h6:first-child:before,.paragraph-Az60LAogzf.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-9RnPTV8r9K h1,.sub-heading-9RnPTV8r9K h2,.sub-heading-9RnPTV8r9K h3,.sub-heading-9RnPTV8r9K h4,.sub-heading-9RnPTV8r9K h5,.sub-heading-9RnPTV8r9K h6,.sub-heading-9RnPTV8r9K ul li,.sub-heading-9RnPTV8r9K.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-9RnPTV8r9K h1,.sub-heading-9RnPTV8r9K h2,.sub-heading-9RnPTV8r9K h3,.sub-heading-9RnPTV8r9K h4,.sub-heading-9RnPTV8r9K h5,.sub-heading-9RnPTV8r9K h6,.sub-heading-9RnPTV8r9K ul li,.sub-heading-9RnPTV8r9K.text-output{font-size:18px!important;font-weight:400}}.sub-heading-4aGofuOfXq.text-output h1:first-child:before,.sub-heading-4aGofuOfXq.text-output h2:first-child:before,.sub-heading-4aGofuOfXq.text-output h3:first-child:before,.sub-heading-4aGofuOfXq.text-output h4:first-child:before,.sub-heading-4aGofuOfXq.text-output h5:first-child:before,.sub-heading-4aGofuOfXq.text-output h6:first-child:before,.sub-heading-4aGofuOfXq.text-output p:first-child:before,.sub-heading-9RnPTV8r9K.text-output h1:first-child:before,.sub-heading-9RnPTV8r9K.text-output h2:first-child:before,.sub-heading-9RnPTV8r9K.text-output h3:first-child:before,.sub-heading-9RnPTV8r9K.text-output h4:first-child:before,.sub-heading-9RnPTV8r9K.text-output h5:first-child:before,.sub-heading-9RnPTV8r9K.text-output h6:first-child:before,.sub-heading-9RnPTV8r9K.text-output p:first-child:before,.sub-heading-Jz14zAZhJ6.text-output h1:first-child:before,.sub-heading-Jz14zAZhJ6.text-output h2:first-child:before,.sub-heading-Jz14zAZhJ6.text-output h3:first-child:before,.sub-heading-Jz14zAZhJ6.text-output h4:first-child:before,.sub-heading-Jz14zAZhJ6.text-output h5:first-child:before,.sub-heading-Jz14zAZhJ6.text-output h6:first-child:before,.sub-heading-Jz14zAZhJ6.text-output p:first-child:before,.sub-heading-QRYO4W1KVE.text-output h1:first-child:before,.sub-heading-QRYO4W1KVE.text-output h2:first-child:before,.sub-heading-QRYO4W1KVE.text-output h3:first-child:before,.sub-heading-QRYO4W1KVE.text-output h4:first-child:before,.sub-heading-QRYO4W1KVE.text-output h5:first-child:before,.sub-heading-QRYO4W1KVE.text-output h6:first-child:before,.sub-heading-QRYO4W1KVE.text-output p:first-child:before{color:var(--text-color);content:'\';
98 − font-family: '';margin-right:5px;font-weight:700}#image-slider-qwzj19cKIy .carousel{height:300px;width:100%}#image-slider-qwzj19cKIy .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-qwzj19cKIy .carousel__pagination-active{background:#fff}#image-slider-qwzj19cKIy .carousel__pagination-inactive{background:#000}#image-slider-qwzj19cKIy .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-Jz14zAZhJ6 h1,.sub-heading-Jz14zAZhJ6 h2,.sub-heading-Jz14zAZhJ6 h3,.sub-heading-Jz14zAZhJ6 h4,.sub-heading-Jz14zAZhJ6 h5,.sub-heading-Jz14zAZhJ6 h6,.sub-heading-Jz14zAZhJ6 ul li,.sub-heading-Jz14zAZhJ6.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-Jz14zAZhJ6 h1,.sub-heading-Jz14zAZhJ6 h2,.sub-heading-Jz14zAZhJ6 h3,.sub-heading-Jz14zAZhJ6 h4,.sub-heading-Jz14zAZhJ6 h5,.sub-heading-Jz14zAZhJ6 h6,.sub-heading-Jz14zAZhJ6 ul li,.sub-heading-Jz14zAZhJ6.text-output{font-size:18px!important;font-weight:400}}#col--6VywJqT4n>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col--6VywJqT4n{animation:none!important}}.--mobile #col--6VywJqT4n,.--mobile #row-iBCj_mgrrx{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-QRYO4W1KVE h1,.sub-heading-QRYO4W1KVE h2,.sub-heading-QRYO4W1KVE h3,.sub-heading-QRYO4W1KVE h4,.sub-heading-QRYO4W1KVE h5,.sub-heading-QRYO4W1KVE h6,.sub-heading-QRYO4W1KVE ul li,.sub-heading-QRYO4W1KVE.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-QRYO4W1KVE h1,.sub-heading-QRYO4W1KVE h2,.sub-heading-QRYO4W1KVE h3,.sub-heading-QRYO4W1KVE h4,.sub-heading-QRYO4W1KVE h5,.sub-heading-QRYO4W1KVE h6,.sub-heading-QRYO4W1KVE ul li,.sub-heading-QRYO4W1KVE.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-4aGofuOfXq h1,.sub-heading-4aGofuOfXq h2,.sub-heading-4aGofuOfXq h3,.sub-heading-4aGofuOfXq h4,.sub-heading-4aGofuOfXq h5,.sub-heading-4aGofuOfXq h6,.sub-heading-4aGofuOfXq ul li,.sub-heading-4aGofuOfXq.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-4aGofuOfXq h1,.sub-heading-4aGofuOfXq h2,.sub-heading-4aGofuOfXq h3,.sub-heading-4aGofuOfXq h4,.sub-heading-4aGofuOfXq h5,.sub-heading-4aGofuOfXq h6,.sub-heading-4aGofuOfXq ul li,.sub-heading-4aGofuOfXq.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-iBCj_mgrrx{animation:none!important}}#col-rs0PGwlXj5>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-rs0PGwlXj5{animation:none!important}}.--mobile #col-rs0PGwlXj5{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-M3uEMYOFVI h1,.paragraph-M3uEMYOFVI h2,.paragraph-M3uEMYOFVI h3,.paragraph-M3uEMYOFVI h4,.paragraph-M3uEMYOFVI h5,.paragraph-M3uEMYOFVI h6,.paragraph-M3uEMYOFVI ul li,.paragraph-M3uEMYOFVI.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-M3uEMYOFVI h1,.paragraph-M3uEMYOFVI h2,.paragraph-M3uEMYOFVI h3,.paragraph-M3uEMYOFVI h4,.paragraph-M3uEMYOFVI h5,.paragraph-M3uEMYOFVI h6,.paragraph-M3uEMYOFVI ul li,.paragraph-M3uEMYOFVI.text-output{font-size:16px!important;font-weight:400}}.paragraph-M3uEMYOFVI.text-output h1:first-child:before,.paragraph-M3uEMYOFVI.text-output h2:first-child:before,.paragraph-M3uEMYOFVI.text-output h3:first-child:before,.paragraph-M3uEMYOFVI.text-output h4:first-child:before,.paragraph-M3uEMYOFVI.text-output h5:first-child:before,.paragraph-M3uEMYOFVI.text-output h6:first-child:before,.paragraph-M3uEMYOFVI.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-1Sp5gw4V4E h1,.paragraph-1Sp5gw4V4E h2,.paragraph-1Sp5gw4V4E h3,.paragraph-1Sp5gw4V4E h4,.paragraph-1Sp5gw4V4E h5,.paragraph-1Sp5gw4V4E h6,.paragraph-1Sp5gw4V4E ul li,.paragraph-1Sp5gw4V4E.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-1Sp5gw4V4E h1,.paragraph-1Sp5gw4V4E h2,.paragraph-1Sp5gw4V4E h3,.paragraph-1Sp5gw4V4E h4,.paragraph-1Sp5gw4V4E h5,.paragraph-1Sp5gw4V4E h6,.paragraph-1Sp5gw4V4E ul li,.paragraph-1Sp5gw4V4E.text-output{font-size:16px!important;font-weight:400}}.paragraph-1Sp5gw4V4E.text-output h1:first-child:before,.paragraph-1Sp5gw4V4E.text-output h2:first-child:before,.paragraph-1Sp5gw4V4E.text-output h3:first-child:before,.paragraph-1Sp5gw4V4E.text-output h4:first-child:before,.paragraph-1Sp5gw4V4E.text-output h5:first-child:before,.paragraph-1Sp5gw4V4E.text-output h6:first-child:before,.paragraph-1Sp5gw4V4E.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-pT45PeOVlN h1,.paragraph-pT45PeOVlN h2,.paragraph-pT45PeOVlN h3,.paragraph-pT45PeOVlN h4,.paragraph-pT45PeOVlN h5,.paragraph-pT45PeOVlN h6,.paragraph-pT45PeOVlN ul li,.paragraph-pT45PeOVlN.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-pT45PeOVlN h1,.paragraph-pT45PeOVlN h2,.paragraph-pT45PeOVlN h3,.paragraph-pT45PeOVlN h4,.paragraph-pT45PeOVlN h5,.paragraph-pT45PeOVlN h6,.paragraph-pT45PeOVlN ul li,.paragraph-pT45PeOVlN.text-output{font-size:16px!important;font-weight:400}}.paragraph-pT45PeOVlN.text-output h1:first-child:before,.paragraph-pT45PeOVlN.text-output h2:first-child:before,.paragraph-pT45PeOVlN.text-output h3:first-child:before,.paragraph-pT45PeOVlN.text-output h4:first-child:before,.paragraph-pT45PeOVlN.text-output h5:first-child:before,.paragraph-pT45PeOVlN.text-output h6:first-child:before,.paragraph-pT45PeOVlN.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-UVhyw7sDTO h1,.sub-heading-UVhyw7sDTO h2,.sub-heading-UVhyw7sDTO h3,.sub-heading-UVhyw7sDTO h4,.sub-heading-UVhyw7sDTO h5,.sub-heading-UVhyw7sDTO h6,.sub-heading-UVhyw7sDTO ul li,.sub-heading-UVhyw7sDTO.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-UVhyw7sDTO h1,.sub-heading-UVhyw7sDTO h2,.sub-heading-UVhyw7sDTO h3,.sub-heading-UVhyw7sDTO h4,.sub-heading-UVhyw7sDTO h5,.sub-heading-UVhyw7sDTO h6,.sub-heading-UVhyw7sDTO ul li,.sub-heading-UVhyw7sDTO.text-output{font-size:18px!important;font-weight:400}}.sub-heading-AQwPY9ibX5.text-output h1:first-child:before,.sub-heading-AQwPY9ibX5.text-output h2:first-child:before,.sub-heading-AQwPY9ibX5.text-output h3:first-child:before,.sub-heading-AQwPY9ibX5.text-output h4:first-child:before,.sub-heading-AQwPY9ibX5.text-output h5:first-child:before,.sub-heading-AQwPY9ibX5.text-output h6:first-child:before,.sub-heading-AQwPY9ibX5.text-output p:first-child:before,.sub-heading-QFht7y46h2.text-output h1:first-child:before,.sub-heading-QFht7y46h2.text-output h2:first-child:before,.sub-heading-QFht7y46h2.text-output h3:first-child:before,.sub-heading-QFht7y46h2.text-output h4:first-child:before,.sub-heading-QFht7y46h2.text-output h5:first-child:before,.sub-heading-QFht7y46h2.text-output h6:first-child:before,.sub-heading-QFht7y46h2.text-output p:first-child:before,.sub-heading-UVhyw7sDTO.text-output h1:first-child:before,.sub-heading-UVhyw7sDTO.text-output h2:first-child:before,.sub-heading-UVhyw7sDTO.text-output h3:first-child:before,.sub-heading-UVhyw7sDTO.text-output h4:first-child:before,.sub-heading-UVhyw7sDTO.text-output h5:first-child:before,.sub-heading-UVhyw7sDTO.text-output h6:first-child:before,.sub-heading-UVhyw7sDTO.text-output p:first-child:before,.sub-heading-vq9lCn23dz.text-output h1:first-child:before,.sub-heading-vq9lCn23dz.text-output h2:first-child:before,.sub-heading-vq9lCn23dz.text-output h3:first-child:before,.sub-heading-vq9lCn23dz.text-output h4:first-child:before,.sub-heading-vq9lCn23dz.text-output h5:first-child:before,.sub-heading-vq9lCn23dz.text-output h6:first-child:before,.sub-heading-vq9lCn23dz.text-output p:first-child:before{color:var(--text-color);content:'\';
99 − font-family: '';margin-right:5px;font-weight:700}#image-slider-FGU3qk0tCw .carousel{height:300px;width:100%}#image-slider-FGU3qk0tCw .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-FGU3qk0tCw .carousel__pagination-active{background:#fff}#image-slider-FGU3qk0tCw .carousel__pagination-inactive{background:#000}#image-slider-FGU3qk0tCw .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-vq9lCn23dz h1,.sub-heading-vq9lCn23dz h2,.sub-heading-vq9lCn23dz h3,.sub-heading-vq9lCn23dz h4,.sub-heading-vq9lCn23dz h5,.sub-heading-vq9lCn23dz h6,.sub-heading-vq9lCn23dz ul li,.sub-heading-vq9lCn23dz.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-vq9lCn23dz h1,.sub-heading-vq9lCn23dz h2,.sub-heading-vq9lCn23dz h3,.sub-heading-vq9lCn23dz h4,.sub-heading-vq9lCn23dz h5,.sub-heading-vq9lCn23dz h6,.sub-heading-vq9lCn23dz ul li,.sub-heading-vq9lCn23dz.text-output{font-size:18px!important;font-weight:400}}#col-Vo1fx4hJqF>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-Vo1fx4hJqF{animation:none!important}}.--mobile #col-Vo1fx4hJqF,.--mobile #row-RIUdOvYKzr{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-AQwPY9ibX5 h1,.sub-heading-AQwPY9ibX5 h2,.sub-heading-AQwPY9ibX5 h3,.sub-heading-AQwPY9ibX5 h4,.sub-heading-AQwPY9ibX5 h5,.sub-heading-AQwPY9ibX5 h6,.sub-heading-AQwPY9ibX5 ul li,.sub-heading-AQwPY9ibX5.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-AQwPY9ibX5 h1,.sub-heading-AQwPY9ibX5 h2,.sub-heading-AQwPY9ibX5 h3,.sub-heading-AQwPY9ibX5 h4,.sub-heading-AQwPY9ibX5 h5,.sub-heading-AQwPY9ibX5 h6,.sub-heading-AQwPY9ibX5 ul li,.sub-heading-AQwPY9ibX5.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-QFht7y46h2 h1,.sub-heading-QFht7y46h2 h2,.sub-heading-QFht7y46h2 h3,.sub-heading-QFht7y46h2 h4,.sub-heading-QFht7y46h2 h5,.sub-heading-QFht7y46h2 h6,.sub-heading-QFht7y46h2 ul li,.sub-heading-QFht7y46h2.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-QFht7y46h2 h1,.sub-heading-QFht7y46h2 h2,.sub-heading-QFht7y46h2 h3,.sub-heading-QFht7y46h2 h4,.sub-heading-QFht7y46h2 h5,.sub-heading-QFht7y46h2 h6,.sub-heading-QFht7y46h2 ul li,.sub-heading-QFht7y46h2.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-RIUdOvYKzr{animation:none!important}}#col-cw-hkPoo_O>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-cw-hkPoo_O{animation:none!important}}.--mobile #col-cw-hkPoo_O{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-DkXSEa6Iol h1,.paragraph-DkXSEa6Iol h2,.paragraph-DkXSEa6Iol h3,.paragraph-DkXSEa6Iol h4,.paragraph-DkXSEa6Iol h5,.paragraph-DkXSEa6Iol h6,.paragraph-DkXSEa6Iol ul li,.paragraph-DkXSEa6Iol.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-DkXSEa6Iol h1,.paragraph-DkXSEa6Iol h2,.paragraph-DkXSEa6Iol h3,.paragraph-DkXSEa6Iol h4,.paragraph-DkXSEa6Iol h5,.paragraph-DkXSEa6Iol h6,.paragraph-DkXSEa6Iol ul li,.paragraph-DkXSEa6Iol.text-output{font-size:16px!important;font-weight:400}}.paragraph-DkXSEa6Iol.text-output h1:first-child:before,.paragraph-DkXSEa6Iol.text-output h2:first-child:before,.paragraph-DkXSEa6Iol.text-output h3:first-child:before,.paragraph-DkXSEa6Iol.text-output h4:first-child:before,.paragraph-DkXSEa6Iol.text-output h5:first-child:before,.paragraph-DkXSEa6Iol.text-output h6:first-child:before,.paragraph-DkXSEa6Iol.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-fPSjuUj-UJ h1,.paragraph-fPSjuUj-UJ h2,.paragraph-fPSjuUj-UJ h3,.paragraph-fPSjuUj-UJ h4,.paragraph-fPSjuUj-UJ h5,.paragraph-fPSjuUj-UJ h6,.paragraph-fPSjuUj-UJ ul li,.paragraph-fPSjuUj-UJ.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-fPSjuUj-UJ h1,.paragraph-fPSjuUj-UJ h2,.paragraph-fPSjuUj-UJ h3,.paragraph-fPSjuUj-UJ h4,.paragraph-fPSjuUj-UJ h5,.paragraph-fPSjuUj-UJ h6,.paragraph-fPSjuUj-UJ ul li,.paragraph-fPSjuUj-UJ.text-output{font-size:16px!important;font-weight:400}}.paragraph-fPSjuUj-UJ.text-output h1:first-child:before,.paragraph-fPSjuUj-UJ.text-output h2:first-child:before,.paragraph-fPSjuUj-UJ.text-output h3:first-child:before,.paragraph-fPSjuUj-UJ.text-output h4:first-child:before,.paragraph-fPSjuUj-UJ.text-output h5:first-child:before,.paragraph-fPSjuUj-UJ.text-output h6:first-child:before,.paragraph-fPSjuUj-UJ.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-f-2T0u4S8H h1,.paragraph-f-2T0u4S8H h2,.paragraph-f-2T0u4S8H h3,.paragraph-f-2T0u4S8H h4,.paragraph-f-2T0u4S8H h5,.paragraph-f-2T0u4S8H h6,.paragraph-f-2T0u4S8H ul li,.paragraph-f-2T0u4S8H.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-f-2T0u4S8H h1,.paragraph-f-2T0u4S8H h2,.paragraph-f-2T0u4S8H h3,.paragraph-f-2T0u4S8H h4,.paragraph-f-2T0u4S8H h5,.paragraph-f-2T0u4S8H h6,.paragraph-f-2T0u4S8H ul li,.paragraph-f-2T0u4S8H.text-output{font-size:16px!important;font-weight:400}}.paragraph-f-2T0u4S8H.text-output h1:first-child:before,.paragraph-f-2T0u4S8H.text-output h2:first-child:before,.paragraph-f-2T0u4S8H.text-output h3:first-child:before,.paragraph-f-2T0u4S8H.text-output h4:first-child:before,.paragraph-f-2T0u4S8H.text-output h5:first-child:before,.paragraph-f-2T0u4S8H.text-output h6:first-child:before,.paragraph-f-2T0u4S8H.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-TNa9hlT-hb h1,.sub-heading-TNa9hlT-hb h2,.sub-heading-TNa9hlT-hb h3,.sub-heading-TNa9hlT-hb h4,.sub-heading-TNa9hlT-hb h5,.sub-heading-TNa9hlT-hb h6,.sub-heading-TNa9hlT-hb ul li,.sub-heading-TNa9hlT-hb.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-TNa9hlT-hb h1,.sub-heading-TNa9hlT-hb h2,.sub-heading-TNa9hlT-hb h3,.sub-heading-TNa9hlT-hb h4,.sub-heading-TNa9hlT-hb h5,.sub-heading-TNa9hlT-hb h6,.sub-heading-TNa9hlT-hb ul li,.sub-heading-TNa9hlT-hb.text-output{font-size:18px!important;font-weight:400}}.heading-oHkotcAr7_.text-output h1:first-child:before,.heading-oHkotcAr7_.text-output h2:first-child:before,.heading-oHkotcAr7_.text-output h3:first-child:before,.heading-oHkotcAr7_.text-output h4:first-child:before,.heading-oHkotcAr7_.text-output h5:first-child:before,.heading-oHkotcAr7_.text-output h6:first-child:before,.heading-oHkotcAr7_.text-output p:first-child:before,.sub-heading-TNa9hlT-hb.text-output h1:first-child:before,.sub-heading-TNa9hlT-hb.text-output h2:first-child:before,.sub-heading-TNa9hlT-hb.text-output h3:first-child:before,.sub-heading-TNa9hlT-hb.text-output h4:first-child:before,.sub-heading-TNa9hlT-hb.text-output h5:first-child:before,.sub-heading-TNa9hlT-hb.text-output h6:first-child:before,.sub-heading-TNa9hlT-hb.text-output p:first-child:before,.sub-heading-UxnsjA280F.text-output h1:first-child:before,.sub-heading-UxnsjA280F.text-output h2:first-child:before,.sub-heading-UxnsjA280F.text-output h3:first-child:before,.sub-heading-UxnsjA280F.text-output h4:first-child:before,.sub-heading-UxnsjA280F.text-output h5:first-child:before,.sub-heading-UxnsjA280F.text-output h6:first-child:before,.sub-heading-UxnsjA280F.text-output p:first-child:before{color:var(--text-color);content:'\';
100 − font-family: '';margin-right:5px;font-weight:700}#image-slider-8gudlnPSki .carousel{height:300px;width:100%}#image-slider-8gudlnPSki .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-8gudlnPSki .carousel__pagination-active{background:#fff}#image-slider-8gudlnPSki .carousel__pagination-inactive{background:#000}#image-slider-8gudlnPSki .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-UxnsjA280F h1,.sub-heading-UxnsjA280F h2,.sub-heading-UxnsjA280F h3,.sub-heading-UxnsjA280F h4,.sub-heading-UxnsjA280F h5,.sub-heading-UxnsjA280F h6,.sub-heading-UxnsjA280F ul li,.sub-heading-UxnsjA280F.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-UxnsjA280F h1,.sub-heading-UxnsjA280F h2,.sub-heading-UxnsjA280F h3,.sub-heading-UxnsjA280F h4,.sub-heading-UxnsjA280F h5,.sub-heading-UxnsjA280F h6,.sub-heading-UxnsjA280F ul li,.sub-heading-UxnsjA280F.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-1leuN7S1Na{animation:none!important}}.--mobile #row-1leuN7S1Na{animation:none!important}#col-_L5Va54ZgF>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-_L5Va54ZgF{animation:none!important}}.--mobile #col-_L5Va54ZgF{animation:none!important}.heading-oHkotcAr7_{font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.heading-oHkotcAr7_ h1,.heading-oHkotcAr7_ h2,.heading-oHkotcAr7_ h3,.heading-oHkotcAr7_ h4,.heading-oHkotcAr7_ h5,.heading-oHkotcAr7_ h6,.heading-oHkotcAr7_ ul li,.heading-oHkotcAr7_.text-output{font-size:48px!important;font-weight:700}}@media screen and (min-width:481px) and (max-width:10000px){.heading-oHkotcAr7_ h1,.heading-oHkotcAr7_ h2,.heading-oHkotcAr7_ h3,.heading-oHkotcAr7_ h4,.heading-oHkotcAr7_ h5,.heading-oHkotcAr7_ h6,.heading-oHkotcAr7_ ul li,.heading-oHkotcAr7_.text-output{font-size:48px!important;font-weight:700}}
101 − /* ---- Section 6 1/2 styles ----- */
102 −:root{--inter:'Inter';--transparent:transparent;--white:#ffffff;--gray:#cbd5e0;--black:#000000;--color-frszyjcd:#163760ff}.hl_page-preview--content .section-Z4kxjMJRRT{box-shadow:none;padding:0;margin:0;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid}.hl_page-preview--content .col-jGkxQisDii,.hl_page-preview--content .row-D-13Jo8OOF{padding:10px 5px;background-color:var(--transparent);backdrop-filter:none;border-width:2px;border-style:solid}.hl_page-preview--content .row-D-13Jo8OOF{margin:0 auto;box-shadow:none;border-color:var(--black);width:100%}.hl_page-preview--content .col-jGkxQisDii{width:33%;border-color:var(--gray);margin:10px 20px 10px 0}.hl_page-preview--content #heading-Yrbyajy-s0,.hl_page-preview--content #paragraph-_n_l7eHxtO,.hl_page-preview--content #paragraph-izFb8eF2oz,.hl_page-preview--content #paragraph-xiAH3YMjBJ,.hl_page-preview--content #sub-heading-WcRQfwMdNz,.hl_page-preview--content #sub-heading-cHIlNt_Ai0,.hl_page-preview--content #sub-heading-kmPg29coLK,.hl_page-preview--content #sub-heading-yoXQulNsGP{margin:0;width:auto;height:auto}.hl_page-preview--content .csub-heading-cHIlNt_Ai0,.hl_page-preview--content .csub-heading-kmPg29coLK{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-ikdHVxU13e,.hl_page-preview--content .row-H3omdqVcgL{margin:0 auto;box-shadow:none;padding:0 5px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-ikdHVxU13e{padding:10px 5px;width:33%;margin:0}.hl_page-preview--content .cparagraph-_n_l7eHxtO,.hl_page-preview--content .cparagraph-izFb8eF2oz,.hl_page-preview--content .cparagraph-xiAH3YMjBJ,.hl_page-preview--content .csub-heading-yoXQulNsGP{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .csub-heading-yoXQulNsGP{font-family:var(--headlinefont);font-weight:400;padding:0}.hl_page-preview--content .cimage-slider-hWYatebsAw{padding:0 10px 10px;margin:0;border-width:0;border-style:solid;border-radius:8px;border-color:#000;box-shadow:none}.hl_page-preview--content .csub-heading-WcRQfwMdNz{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .col-jaowBmUCXQ,.hl_page-preview--content .row-TWnivHykBW{margin:0 auto;box-shadow:none;padding:40px 5px 10px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid;width:100%}.hl_page-preview--content .col-jaowBmUCXQ{padding:10px 5px;margin:0}.hl_page-preview--content .cheading-Yrbyajy-s0{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}@media screen and (min-width:0px) and (max-width:480px){.hl_page-preview--content .cheading-Yrbyajy-s0{padding-top:5px;padding-bottom:5px}}#section-Z4kxjMJRRT>.inner{max-width:1170px}@media (max-width:1024px){#section-Z4kxjMJRRT{animation:none!important}}.--mobile #row-D-13Jo8OOF,.--mobile #section-Z4kxjMJRRT{animation:none!important}@media (max-width:1024px){#row-D-13Jo8OOF{animation:none!important}}#col-jGkxQisDii>.inner{flex-direction:column;justify-content:space-evenly;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-jGkxQisDii{animation:none!important}}.--mobile #col-jGkxQisDii,.--mobile #row-H3omdqVcgL{animation:none!important}.paragraph-_n_l7eHxtO,.paragraph-izFb8eF2oz,.paragraph-xiAH3YMjBJ,.sub-heading-WcRQfwMdNz,.sub-heading-cHIlNt_Ai0,.sub-heading-kmPg29coLK,.sub-heading-yoXQulNsGP{font-weight:400}.heading-Yrbyajy-s0 a,.heading-Yrbyajy-s0 a *,.paragraph-_n_l7eHxtO a,.paragraph-_n_l7eHxtO a *,.paragraph-izFb8eF2oz a,.paragraph-izFb8eF2oz a *,.paragraph-xiAH3YMjBJ a,.paragraph-xiAH3YMjBJ a *,.sub-heading-WcRQfwMdNz a,.sub-heading-WcRQfwMdNz a *,.sub-heading-cHIlNt_Ai0 a,.sub-heading-cHIlNt_Ai0 a *,.sub-heading-kmPg29coLK a,.sub-heading-kmPg29coLK a *,.sub-heading-yoXQulNsGP a,.sub-heading-yoXQulNsGP a *{color:var(--link-color);text-decoration:none}.heading-Yrbyajy-s0 a u,.heading-Yrbyajy-s0 a:hover,.paragraph-_n_l7eHxtO a u,.paragraph-_n_l7eHxtO a:hover,.paragraph-izFb8eF2oz a u,.paragraph-izFb8eF2oz a:hover,.paragraph-xiAH3YMjBJ a u,.paragraph-xiAH3YMjBJ a:hover,.sub-heading-WcRQfwMdNz a u,.sub-heading-WcRQfwMdNz a:hover,.sub-heading-cHIlNt_Ai0 a u,.sub-heading-cHIlNt_Ai0 a:hover,.sub-heading-kmPg29coLK a u,.sub-heading-kmPg29coLK a:hover,.sub-heading-yoXQulNsGP a u,.sub-heading-yoXQulNsGP a:hover{text-decoration:underline}.heading-Yrbyajy-s0 a s,.paragraph-_n_l7eHxtO a s,.paragraph-izFb8eF2oz a s,.paragraph-xiAH3YMjBJ a s,.sub-heading-WcRQfwMdNz a s,.sub-heading-cHIlNt_Ai0 a s,.sub-heading-kmPg29coLK a s,.sub-heading-yoXQulNsGP a s{text-decoration:line-through}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-kmPg29coLK h1,.sub-heading-kmPg29coLK h2,.sub-heading-kmPg29coLK h3,.sub-heading-kmPg29coLK h4,.sub-heading-kmPg29coLK h5,.sub-heading-kmPg29coLK h6,.sub-heading-kmPg29coLK ul li,.sub-heading-kmPg29coLK.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-kmPg29coLK h1,.sub-heading-kmPg29coLK h2,.sub-heading-kmPg29coLK h3,.sub-heading-kmPg29coLK h4,.sub-heading-kmPg29coLK h5,.sub-heading-kmPg29coLK h6,.sub-heading-kmPg29coLK ul li,.sub-heading-kmPg29coLK.text-output{font-size:18px!important;font-weight:400}}.sub-heading-cHIlNt_Ai0.text-output h1:first-child:before,.sub-heading-cHIlNt_Ai0.text-output h2:first-child:before,.sub-heading-cHIlNt_Ai0.text-output h3:first-child:before,.sub-heading-cHIlNt_Ai0.text-output h4:first-child:before,.sub-heading-cHIlNt_Ai0.text-output h5:first-child:before,.sub-heading-cHIlNt_Ai0.text-output h6:first-child:before,.sub-heading-cHIlNt_Ai0.text-output p:first-child:before,.sub-heading-kmPg29coLK.text-output h1:first-child:before,.sub-heading-kmPg29coLK.text-output h2:first-child:before,.sub-heading-kmPg29coLK.text-output h3:first-child:before,.sub-heading-kmPg29coLK.text-output h4:first-child:before,.sub-heading-kmPg29coLK.text-output h5:first-child:before,.sub-heading-kmPg29coLK.text-output h6:first-child:before,.sub-heading-kmPg29coLK.text-output p:first-child:before{color:var(--text-color);content:'\';
103 − font-family: '';margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-cHIlNt_Ai0 h1,.sub-heading-cHIlNt_Ai0 h2,.sub-heading-cHIlNt_Ai0 h3,.sub-heading-cHIlNt_Ai0 h4,.sub-heading-cHIlNt_Ai0 h5,.sub-heading-cHIlNt_Ai0 h6,.sub-heading-cHIlNt_Ai0 ul li,.sub-heading-cHIlNt_Ai0.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-cHIlNt_Ai0 h1,.sub-heading-cHIlNt_Ai0 h2,.sub-heading-cHIlNt_Ai0 h3,.sub-heading-cHIlNt_Ai0 h4,.sub-heading-cHIlNt_Ai0 h5,.sub-heading-cHIlNt_Ai0 h6,.sub-heading-cHIlNt_Ai0 ul li,.sub-heading-cHIlNt_Ai0.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-H3omdqVcgL{animation:none!important}}#col-ikdHVxU13e>.inner{flex-direction:row;justify-content:center;align-items:inherit;flex-wrap:wrap}@media (max-width:1024px){#col-ikdHVxU13e{animation:none!important}}.--mobile #col-ikdHVxU13e{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.paragraph-izFb8eF2oz h1,.paragraph-izFb8eF2oz h2,.paragraph-izFb8eF2oz h3,.paragraph-izFb8eF2oz h4,.paragraph-izFb8eF2oz h5,.paragraph-izFb8eF2oz h6,.paragraph-izFb8eF2oz ul li,.paragraph-izFb8eF2oz.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-izFb8eF2oz h1,.paragraph-izFb8eF2oz h2,.paragraph-izFb8eF2oz h3,.paragraph-izFb8eF2oz h4,.paragraph-izFb8eF2oz h5,.paragraph-izFb8eF2oz h6,.paragraph-izFb8eF2oz ul li,.paragraph-izFb8eF2oz.text-output{font-size:16px!important;font-weight:400}}.paragraph-izFb8eF2oz.text-output h1:first-child:before,.paragraph-izFb8eF2oz.text-output h2:first-child:before,.paragraph-izFb8eF2oz.text-output h3:first-child:before,.paragraph-izFb8eF2oz.text-output h4:first-child:before,.paragraph-izFb8eF2oz.text-output h5:first-child:before,.paragraph-izFb8eF2oz.text-output h6:first-child:before,.paragraph-izFb8eF2oz.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-_n_l7eHxtO h1,.paragraph-_n_l7eHxtO h2,.paragraph-_n_l7eHxtO h3,.paragraph-_n_l7eHxtO h4,.paragraph-_n_l7eHxtO h5,.paragraph-_n_l7eHxtO h6,.paragraph-_n_l7eHxtO ul li,.paragraph-_n_l7eHxtO.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-_n_l7eHxtO h1,.paragraph-_n_l7eHxtO h2,.paragraph-_n_l7eHxtO h3,.paragraph-_n_l7eHxtO h4,.paragraph-_n_l7eHxtO h5,.paragraph-_n_l7eHxtO h6,.paragraph-_n_l7eHxtO ul li,.paragraph-_n_l7eHxtO.text-output{font-size:16px!important;font-weight:400}}.paragraph-_n_l7eHxtO.text-output h1:first-child:before,.paragraph-_n_l7eHxtO.text-output h2:first-child:before,.paragraph-_n_l7eHxtO.text-output h3:first-child:before,.paragraph-_n_l7eHxtO.text-output h4:first-child:before,.paragraph-_n_l7eHxtO.text-output h5:first-child:before,.paragraph-_n_l7eHxtO.text-output h6:first-child:before,.paragraph-_n_l7eHxtO.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.paragraph-xiAH3YMjBJ h1,.paragraph-xiAH3YMjBJ h2,.paragraph-xiAH3YMjBJ h3,.paragraph-xiAH3YMjBJ h4,.paragraph-xiAH3YMjBJ h5,.paragraph-xiAH3YMjBJ h6,.paragraph-xiAH3YMjBJ ul li,.paragraph-xiAH3YMjBJ.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-xiAH3YMjBJ h1,.paragraph-xiAH3YMjBJ h2,.paragraph-xiAH3YMjBJ h3,.paragraph-xiAH3YMjBJ h4,.paragraph-xiAH3YMjBJ h5,.paragraph-xiAH3YMjBJ h6,.paragraph-xiAH3YMjBJ ul li,.paragraph-xiAH3YMjBJ.text-output{font-size:16px!important;font-weight:400}}.paragraph-xiAH3YMjBJ.text-output h1:first-child:before,.paragraph-xiAH3YMjBJ.text-output h2:first-child:before,.paragraph-xiAH3YMjBJ.text-output h3:first-child:before,.paragraph-xiAH3YMjBJ.text-output h4:first-child:before,.paragraph-xiAH3YMjBJ.text-output h5:first-child:before,.paragraph-xiAH3YMjBJ.text-output h6:first-child:before,.paragraph-xiAH3YMjBJ.text-output p:first-child:before{color:var(--text-color);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-yoXQulNsGP h1,.sub-heading-yoXQulNsGP h2,.sub-heading-yoXQulNsGP h3,.sub-heading-yoXQulNsGP h4,.sub-heading-yoXQulNsGP h5,.sub-heading-yoXQulNsGP h6,.sub-heading-yoXQulNsGP ul li,.sub-heading-yoXQulNsGP.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-yoXQulNsGP h1,.sub-heading-yoXQulNsGP h2,.sub-heading-yoXQulNsGP h3,.sub-heading-yoXQulNsGP h4,.sub-heading-yoXQulNsGP h5,.sub-heading-yoXQulNsGP h6,.sub-heading-yoXQulNsGP ul li,.sub-heading-yoXQulNsGP.text-output{font-size:18px!important;font-weight:400}}.heading-Yrbyajy-s0.text-output h1:first-child:before,.heading-Yrbyajy-s0.text-output h2:first-child:before,.heading-Yrbyajy-s0.text-output h3:first-child:before,.heading-Yrbyajy-s0.text-output h4:first-child:before,.heading-Yrbyajy-s0.text-output h5:first-child:before,.heading-Yrbyajy-s0.text-output h6:first-child:before,.heading-Yrbyajy-s0.text-output p:first-child:before,.sub-heading-WcRQfwMdNz.text-output h1:first-child:before,.sub-heading-WcRQfwMdNz.text-output h2:first-child:before,.sub-heading-WcRQfwMdNz.text-output h3:first-child:before,.sub-heading-WcRQfwMdNz.text-output h4:first-child:before,.sub-heading-WcRQfwMdNz.text-output h5:first-child:before,.sub-heading-WcRQfwMdNz.text-output h6:first-child:before,.sub-heading-WcRQfwMdNz.text-output p:first-child:before,.sub-heading-yoXQulNsGP.text-output h1:first-child:before,.sub-heading-yoXQulNsGP.text-output h2:first-child:before,.sub-heading-yoXQulNsGP.text-output h3:first-child:before,.sub-heading-yoXQulNsGP.text-output h4:first-child:before,.sub-heading-yoXQulNsGP.text-output h5:first-child:before,.sub-heading-yoXQulNsGP.text-output h6:first-child:before,.sub-heading-yoXQulNsGP.text-output p:first-child:before{color:var(--text-color);content:'\';
104 − font-family: '';margin-right:5px;font-weight:700}#image-slider-hWYatebsAw .carousel{height:300px;width:100%}#image-slider-hWYatebsAw .carousel__pagination-container{position:absolute;width:100%;display:flex;bottom:20px;gap:8px;justify-content:center;z-index:10}#image-slider-hWYatebsAw .carousel__pagination-container .carousel__pagination{height:10px;width:10px;border-radius:999px;transition:all 300ms}#image-slider-hWYatebsAw .carousel__pagination-active{background:#fff}#image-slider-hWYatebsAw .carousel__pagination-inactive{background:#000}#image-slider-hWYatebsAw .carousel__arrow{display:flex;width:100%;height:100%;position:absolute;top:0;justify-content:space-between;align-items:center}#image-slider-hWYatebsAw .carousel__arrow svg{color:#fff;width:40px;height:40px;cursor:pointer;z-index:12}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-WcRQfwMdNz h1,.sub-heading-WcRQfwMdNz h2,.sub-heading-WcRQfwMdNz h3,.sub-heading-WcRQfwMdNz h4,.sub-heading-WcRQfwMdNz h5,.sub-heading-WcRQfwMdNz h6,.sub-heading-WcRQfwMdNz ul li,.sub-heading-WcRQfwMdNz.text-output{font-size:18px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-WcRQfwMdNz h1,.sub-heading-WcRQfwMdNz h2,.sub-heading-WcRQfwMdNz h3,.sub-heading-WcRQfwMdNz h4,.sub-heading-WcRQfwMdNz h5,.sub-heading-WcRQfwMdNz h6,.sub-heading-WcRQfwMdNz ul li,.sub-heading-WcRQfwMdNz.text-output{font-size:18px!important;font-weight:400}}@media (max-width:1024px){#row-TWnivHykBW{animation:none!important}}.--mobile #row-TWnivHykBW{animation:none!important}#col-jaowBmUCXQ>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-jaowBmUCXQ{animation:none!important}}.--mobile #col-jaowBmUCXQ{animation:none!important}.heading-Yrbyajy-s0{font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.heading-Yrbyajy-s0 h1,.heading-Yrbyajy-s0 h2,.heading-Yrbyajy-s0 h3,.heading-Yrbyajy-s0 h4,.heading-Yrbyajy-s0 h5,.heading-Yrbyajy-s0 h6,.heading-Yrbyajy-s0 ul li,.heading-Yrbyajy-s0.text-output{font-size:48px!important;font-weight:700}}@media screen and (min-width:481px) and (max-width:10000px){.heading-Yrbyajy-s0 h1,.heading-Yrbyajy-s0 h2,.heading-Yrbyajy-s0 h3,.heading-Yrbyajy-s0 h4,.heading-Yrbyajy-s0 h5,.heading-Yrbyajy-s0 h6,.heading-Yrbyajy-s0 ul li,.heading-Yrbyajy-s0.text-output{font-size:48px!important;font-weight:700}}
56 +:root{--inter:'Inter';--transparent:transparent;--white:#ffffff;--black:#000000;--color-frszyjcd:#163760ff}.hl_page-preview--content .col-KIf4Ql0phl,.hl_page-preview--content .row-ufVUOO75V_,.hl_page-preview--content .section-JEnfcw8zO5{box-shadow:none;padding:0;margin:0;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid}.hl_page-preview--content .col-KIf4Ql0phl,.hl_page-preview--content .row-ufVUOO75V_{margin:0 auto;padding:40px 5px 10px;width:100%}.hl_page-preview--content .col-KIf4Ql0phl{padding:10px 5px;margin:0}.hl_page-preview--content #heading-3uWiOQESsM{margin:0;width:auto;height:auto}.hl_page-preview--content .cheading-3uWiOQESsM{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);icon-color:var(--text-color);font-weight:400;box-shadow:none;padding:0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}@media screen and (min-width:0px) and (max-width:767px){.hl_page-preview--content .cheading-3uWiOQESsM{padding-top:5px;padding-bottom:5px}}#section-JEnfcw8zO5>.inner{max-width:1170px}@media (max-width:1024px){#section-JEnfcw8zO5{animation:none!important}}.--mobile #row-ufVUOO75V_,.--mobile #section-JEnfcw8zO5{animation:none!important}@media (max-width:1024px){#row-ufVUOO75V_{animation:none!important}}#col-KIf4Ql0phl>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-KIf4Ql0phl{animation:none!important}}.--mobile #col-KIf4Ql0phl{animation:none!important}.heading-3uWiOQESsM{font-weight:700}.heading-3uWiOQESsM a,.heading-3uWiOQESsM a *{color:var(--link-color);text-decoration:none}.heading-3uWiOQESsM a u,.heading-3uWiOQESsM a:hover{text-decoration:underline}.heading-3uWiOQESsM a s{text-decoration:line-through}@media screen and (min-width:0px) and (max-width:767px){.heading-3uWiOQESsM h1,.heading-3uWiOQESsM h2,.heading-3uWiOQESsM h3,.heading-3uWiOQESsM h4,.heading-3uWiOQESsM h5,.heading-3uWiOQESsM h6,.heading-3uWiOQESsM ul li,.heading-3uWiOQESsM.text-output{font-size:48px!important;font-weight:700}}@media screen and (min-width:768px) and (max-width:10000px){.heading-3uWiOQESsM h1,.heading-3uWiOQESsM h2,.heading-3uWiOQESsM h3,.heading-3uWiOQESsM h4,.heading-3uWiOQESsM h5,.heading-3uWiOQESsM h6,.heading-3uWiOQESsM ul li,.heading-3uWiOQESsM.text-output{font-size:48px!important;font-weight:700}}.heading-3uWiOQESsM.text-output h1:first-child:before,.heading-3uWiOQESsM.text-output h2:first-child:before,.heading-3uWiOQESsM.text-output h3:first-child:before,.heading-3uWiOQESsM.text-output h4:first-child:before,.heading-3uWiOQESsM.text-output h5:first-child:before,.heading-3uWiOQESsM.text-output h6:first-child:before,.heading-3uWiOQESsM.text-output p:first-child:before{color:var(--text-color);content:'\';
57 + font-family: '';margin-right:5px;font-weight:700}
58 + /* ---- header-refonte-2026 styles ----- */
59 +:root{--transparent:transparent;--black:#000000}.hl_page-preview--content .col-uqg239Xywm,.hl_page-preview--content .row-WdC-9fjO44,.hl_page-preview--content .section-647pwPWczD{box-shadow:none;padding:0;margin:0;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:0;border-style:none;border-radius:0}.hl_page-preview--content .col-uqg239Xywm,.hl_page-preview--content .row-WdC-9fjO44{margin:0 auto;width:100%}.hl_page-preview--content .col-uqg239Xywm{margin:0}.hl_page-preview--content .custom-code-Vsh0VbcMEx{margin:0;width:auto;height:auto}#section-647pwPWczD>.inner{max-width:1170px}@media (max-width:1024px){#section-647pwPWczD{animation:none!important}}.--mobile #row-WdC-9fjO44,.--mobile #section-647pwPWczD{animation:none!important}@media (max-width:1024px){#row-WdC-9fjO44{animation:none!important}}#col-uqg239Xywm>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-uqg239Xywm{animation:none!important}}.--mobile #col-uqg239Xywm{animation:none!important}
105 60 /* ---- Section styles ----- */
106 −:root{--inter:'Inter';--transparent:transparent;--white:#ffffff;--black:#000000;--color-frszyjcd:#163760ff}.hl_page-preview--content .col-9GM_xmFQp0x,.hl_page-preview--content .row-ePMCxDWqgji,.hl_page-preview--content .section-bwMlraZJNd{box-shadow:none;padding:20px 0 0;margin:0 0 10px;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:2px;border-style:solid}.hl_page-preview--content .col-9GM_xmFQp0x,.hl_page-preview--content .row-ePMCxDWqgji{margin:0 auto 50px;padding:10px 5px;width:100%}.hl_page-preview--content .col-9GM_xmFQp0x{margin:0}.hl_page-preview--content .button-zXFPSmfYVZi{margin:0;text-align:center;width:auto;height:auto}.hl_page-preview--content .cbutton-zXFPSmfYVZi{font-family:var(--headlinefont);background-color:var(--color-frszyjcd);color:var(--white);secondary-color:var(--white);padding:15px 80px;border-color:var(--white);border-width:2px;border-style:solid;letter-spacing:0;text-transform:none;width:auto%;box-shadow:none;text-shadow:0 0 0 transparent;icon-color:var(--white);text-decoration:none}.hl_page-preview--content #heading-4itKQtj5gK5,.hl_page-preview--content #paragraph-AZyxGT2nEj-{margin:0;width:auto;height:auto}.hl_page-preview--content .cheading-4itKQtj5gK5,.hl_page-preview--content .cparagraph-AZyxGT2nEj-{font-family:var(--contentfont);background-color:var(--transparent);color:var(--text-color);icon-color:var(--text-color);font-weight:medium;box-shadow:none;padding:10px 0 32px;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:center}.hl_page-preview--content .cheading-4itKQtj5gK5{font-family:var(--headlinefont);color:var(--color-frszyjcd);font-weight:400;padding:0}#section-bwMlraZJNd>.inner{max-width:1170px}@media (max-width:1024px){#section-bwMlraZJNd{animation:none!important}}.--mobile #row-ePMCxDWqgji,.--mobile #section-bwMlraZJNd{animation:none!important}@media (max-width:1024px){#row-ePMCxDWqgji{animation:none!important}}#col-9GM_xmFQp0x>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-9GM_xmFQp0x{animation:none!important}}.--mobile #col-9GM_xmFQp0x{animation:none!important}.button-zXFPSmfYVZi,.cbutton-zXFPSmfYVZi{--hover-duration:0.3s;--hover-delay:0s;--hover-easing:ease-in-out}@media screen and (min-width:481px) and (max-width:10000px){.button-zXFPSmfYVZi .button-icon-end,.button-zXFPSmfYVZi .button-icon-start,.button-zXFPSmfYVZi .main-heading-button{font-size:20px;font-weight:600}.button-zXFPSmfYVZi .button-icon-start{margin-right:5px}.button-zXFPSmfYVZi .button-icon-end{margin-left:5px}.button-zXFPSmfYVZi .sub-heading-button{font-size:15px;color:var(--white);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-zXFPSmfYVZi .button-icon-end,.button-zXFPSmfYVZi .button-icon-start,.button-zXFPSmfYVZi .main-heading-button{font-size:20px;font-weight:600}.button-zXFPSmfYVZi .button-icon-start{margin-right:5px}.button-zXFPSmfYVZi .button-icon-end{margin-left:5px}.button-zXFPSmfYVZi .sub-heading-button{font-size:15px;color:var(--white);font-weight:undefined}}.paragraph-AZyxGT2nEj-{font-weight:400}.heading-4itKQtj5gK5 a,.heading-4itKQtj5gK5 a *,.paragraph-AZyxGT2nEj- a,.paragraph-AZyxGT2nEj- a *{color:var(--link-color);text-decoration:none}.heading-4itKQtj5gK5 a u,.heading-4itKQtj5gK5 a:hover,.paragraph-AZyxGT2nEj- a u,.paragraph-AZyxGT2nEj- a:hover{text-decoration:underline}.heading-4itKQtj5gK5 a s,.paragraph-AZyxGT2nEj- a s{text-decoration:line-through}@media screen and (min-width:0px) and (max-width:480px){.paragraph-AZyxGT2nEj- h1,.paragraph-AZyxGT2nEj- h2,.paragraph-AZyxGT2nEj- h3,.paragraph-AZyxGT2nEj- h4,.paragraph-AZyxGT2nEj- h5,.paragraph-AZyxGT2nEj- h6,.paragraph-AZyxGT2nEj- ul li,.paragraph-AZyxGT2nEj-.text-output{font-size:16px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-AZyxGT2nEj- h1,.paragraph-AZyxGT2nEj- h2,.paragraph-AZyxGT2nEj- h3,.paragraph-AZyxGT2nEj- h4,.paragraph-AZyxGT2nEj- h5,.paragraph-AZyxGT2nEj- h6,.paragraph-AZyxGT2nEj- ul li,.paragraph-AZyxGT2nEj-.text-output{font-size:16px!important;font-weight:400}}.heading-4itKQtj5gK5.text-output h1:first-child:before,.heading-4itKQtj5gK5.text-output h2:first-child:before,.heading-4itKQtj5gK5.text-output h3:first-child:before,.heading-4itKQtj5gK5.text-output h4:first-child:before,.heading-4itKQtj5gK5.text-output h5:first-child:before,.heading-4itKQtj5gK5.text-output h6:first-child:before,.heading-4itKQtj5gK5.text-output p:first-child:before,.paragraph-AZyxGT2nEj-.text-output h1:first-child:before,.paragraph-AZyxGT2nEj-.text-output h2:first-child:before,.paragraph-AZyxGT2nEj-.text-output h3:first-child:before,.paragraph-AZyxGT2nEj-.text-output h4:first-child:before,.paragraph-AZyxGT2nEj-.text-output h5:first-child:before,.paragraph-AZyxGT2nEj-.text-output h6:first-child:before,.paragraph-AZyxGT2nEj-.text-output p:first-child:before{color:var(--text-color);content:'\';
107 − font-family: '';margin-right:5px;font-weight:700}.heading-4itKQtj5gK5{font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.heading-4itKQtj5gK5 h1,.heading-4itKQtj5gK5 h2,.heading-4itKQtj5gK5 h3,.heading-4itKQtj5gK5 h4,.heading-4itKQtj5gK5 h5,.heading-4itKQtj5gK5 h6,.heading-4itKQtj5gK5 ul li,.heading-4itKQtj5gK5.text-output{font-size:30px!important;font-weight:700}}@media screen and (min-width:481px) and (max-width:10000px){.heading-4itKQtj5gK5 h1,.heading-4itKQtj5gK5 h2,.heading-4itKQtj5gK5 h3,.heading-4itKQtj5gK5 h4,.heading-4itKQtj5gK5 h5,.heading-4itKQtj5gK5 h6,.heading-4itKQtj5gK5 ul li,.heading-4itKQtj5gK5.text-output{font-size:30px!important;font-weight:700}}
108 − /* ---- footer for geston styles ----- */
109 − :root{--inter:'Inter';--transparent:transparent;--white:#ffffff;--black:#000000;--green:#9ae6b4;--teal:#81e6d9;--smoke:#f5f5f5;--color-bxkicywk:#002d57ff}.hl_page-preview--content .section-VjT1mZxqAj{box-shadow:none;padding:20px 0;margin:0;background-color:var(--color-bxkicywk);border-color:var(--black);border-width:2px;border-style:solid}.hl_page-preview--content .row-nUbsv-gIl0f{margin:0 auto;padding:15px 0;width:70%}.hl_page-preview--content .col-YMvj5HCxnWP,.hl_page-preview--content .cparagraph-yI6IHbm9TYl,.hl_page-preview--content .row-nUbsv-gIl0f{background-color:var(--transparent);box-shadow:none;border-color:var(--black);border-width:2px;border-style:solid}.hl_page-preview--content .col-YMvj5HCxnWP{padding:10px 5px;width:100%;margin:0}.hl_page-preview--content #paragraph-yI6IHbm9TYl{margin:0}.hl_page-preview--content .cparagraph-yI6IHbm9TYl{font-family:var(--contentfont);color:var(--white);icon-color:var(--white);font-weight:400;padding:0;opacity:1;text-shadow:none;line-height:1.3em;letter-spacing:0;text-align:center}.hl_page-preview--content .divider-yANWshFHPA1{margin:0;padding-top:10px;padding-bottom:10px}.hl_page-preview--content .cdivider-yANWshFHPA1{padding-top:5px;padding-bottom:5px}.hl_page-preview--content .col-x9ZcEl7pLga,.hl_page-preview--content .row-T40f7M8MinT{margin:0 auto;box-shadow:none;padding:15px 0;background-color:var(--transparent);border-color:var(--black);border-width:2px;border-style:solid;width:70%}.hl_page-preview--content .col-x9ZcEl7pLga{padding:10px 5px;width:100%;margin:0 0 0 20px}.hl_page-preview--content .csocial-icons-1UhMR1bjZS{font-family:Inter;font-size:12px;font-weight:500;color:#000;padding:10px;margin:10px 0}.hl_page-preview--content .col-YKHe7qBT1UY{box-shadow:none;padding:10px 5px;background-color:var(--transparent);width:100%;border-color:var(--black);border-width:2px;border-style:solid;margin:0 0 0 20px}.hl_page-preview--content #sub-heading-Cw2Jk_Gi_2{margin:0-37px 0 0;width:auto;height:auto}.hl_page-preview--content .csub-heading-BP5H83BdIK,.hl_page-preview--content .csub-heading-Cw2Jk_Gi_2,.hl_page-preview--content .csub-heading-dVVEuJvZsQ{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--smoke);icon-color:var(--white);font-weight:400;box-shadow:none;padding:10px 0;opacity:1;text-shadow:none;border-color:var(--black);border-width:2px;border-style:solid;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:left}.hl_page-preview--content #sub-heading-7bs5riSgjo,.hl_page-preview--content #sub-heading-BP5H83BdIK,.hl_page-preview--content #sub-heading-dVVEuJvZsQ{margin:0;width:auto;height:auto}.hl_page-preview--content .col-DBnd_lSUsZ9,.hl_page-preview--content .csub-heading-7bs5riSgjo{box-shadow:none;background-color:var(--transparent);border-color:var(--black);border-width:2px;border-style:solid}.hl_page-preview--content .csub-heading-7bs5riSgjo{font-family:var(--headlinefont);color:var(--smoke);icon-color:var(--white);font-weight:400;padding:0;opacity:1;text-shadow:none;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:left}.hl_page-preview--content .col-DBnd_lSUsZ9{padding:10px 5px 10px 20px;width:100%;margin:0}.hl_page-preview--content .button-DF5mXdwCw7{margin:-1px 0 10px;text-align:left}.hl_page-preview--content .cbutton-DF5mXdwCw7{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--white);secondary-color:var(--black);text-decoration:none;padding:0;border-color:var(--green);border-width:2px;border-style:solid;letter-spacing:0;width:auto%;box-shadow:none;text-shadow:none}.hl_page-preview--content .button-FqjMf4ioVjK{margin:-1px 0 10px;text-align:left}.hl_page-preview--content .cbutton-FqjMf4ioVjK{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--white);secondary-color:var(--black);text-decoration:none;padding:0;border-color:var(--green);border-width:2px;border-style:solid;letter-spacing:0;width:auto%;box-shadow:none;text-shadow:none}.hl_page-preview--content .button-nc0dXTGe9Oq{margin:0 0 10px;text-align:left}.hl_page-preview--content .cbutton-nc0dXTGe9Oq{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--white);secondary-color:var(--black);text-decoration:none;padding:0;border-color:var(--green);border-width:2px;border-style:solid;letter-spacing:0;width:auto%;box-shadow:none;text-shadow:none}.hl_page-preview--content .button-KKQhbBqBVwC{margin:0 0 10px;text-align:left}.hl_page-preview--content .cbutton-KKQhbBqBVwC{font-family:var(--headlinefont);background-color:var(--transparent);color:var(--white);secondary-color:var(--black);text-decoration:none;padding:0;border-color:var(--green);border-width:2px;border-style:solid;letter-spacing:0;width:auto%;box-shadow:none;text-shadow:none}.hl_page-preview--content #sub-heading-wjvcQDmzRDX{margin:0 0 20px}.hl_page-preview--content .csub-heading-wjvcQDmzRDX{font-family:var(--headlinefont);color:var(--teal);icon-color:var(--teal);font-weight:400;padding:0;opacity:1;text-shadow:none;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:left;inline-colors:var(--white)}.hl_page-preview--content .col-tMvNyJ-L9Ju,.hl_page-preview--content .cparagraph-pAtK8CJ2gUP,.hl_page-preview--content .csub-heading-wjvcQDmzRDX{background-color:var(--transparent);box-shadow:none;border-color:var(--black);border-width:2px;border-style:solid}.hl_page-preview--content .col-tMvNyJ-L9Ju{padding:0;width:100%;margin:0}.hl_page-preview--content #paragraph-pAtK8CJ2gUP{margin:0;width:auto;height:auto}.hl_page-preview--content .cparagraph-pAtK8CJ2gUP{font-family:var(--contentfont);color:var(--text-color);inline-colors:var(--white);icon-color:var(--text-color);font-weight:medium;padding:10px 0;opacity:1;text-shadow:none;line-height:1.3em;text-transform:none;letter-spacing:0;text-align:left}.hl_page-preview--content .image-LXRJzU4eiXY{margin:0}.hl_page-preview--content .image-LXRJzU4eiXY .image-container img{box-shadow:none;width:150px}.hl_page-preview--content .cimage-LXRJzU4eiXY{padding:10px;background-color:var(--transparent);opacity:1;text-align:left}#section-VjT1mZxqAj>.inner{max-width:100%}@media (max-width:1024px){#section-VjT1mZxqAj{animation:none!important}}.--mobile #row-nUbsv-gIl0f,.--mobile #section-VjT1mZxqAj{animation:none!important}@media (max-width:1024px){#row-nUbsv-gIl0f{animation:none!important}}#col-YMvj5HCxnWP>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-YMvj5HCxnWP{animation:none!important}}.--mobile #col-YMvj5HCxnWP,.--mobile #row-T40f7M8MinT{animation:none!important}.paragraph-yI6IHbm9TYl,.sub-heading-BP5H83BdIK,.sub-heading-Cw2Jk_Gi_2,.sub-heading-dVVEuJvZsQ{font-weight:400}.paragraph-yI6IHbm9TYl em,.paragraph-yI6IHbm9TYl strong,.paragraph-yI6IHbm9TYl u{color:var(--white)}.paragraph-pAtK8CJ2gUP a,.paragraph-pAtK8CJ2gUP a *,.paragraph-yI6IHbm9TYl a,.paragraph-yI6IHbm9TYl a *,.sub-heading-7bs5riSgjo a,.sub-heading-7bs5riSgjo a *,.sub-heading-BP5H83BdIK a,.sub-heading-BP5H83BdIK a *,.sub-heading-Cw2Jk_Gi_2 a,.sub-heading-Cw2Jk_Gi_2 a *,.sub-heading-dVVEuJvZsQ a,.sub-heading-dVVEuJvZsQ a *,.sub-heading-wjvcQDmzRDX a,.sub-heading-wjvcQDmzRDX a *{color:var(--link-color);text-decoration:none}.paragraph-pAtK8CJ2gUP a u,.paragraph-pAtK8CJ2gUP a:hover,.paragraph-yI6IHbm9TYl a u,.paragraph-yI6IHbm9TYl a:hover,.sub-heading-7bs5riSgjo a u,.sub-heading-7bs5riSgjo a:hover,.sub-heading-BP5H83BdIK a u,.sub-heading-BP5H83BdIK a:hover,.sub-heading-Cw2Jk_Gi_2 a u,.sub-heading-Cw2Jk_Gi_2 a:hover,.sub-heading-dVVEuJvZsQ a u,.sub-heading-dVVEuJvZsQ a:hover,.sub-heading-wjvcQDmzRDX a u,.sub-heading-wjvcQDmzRDX a:hover{text-decoration:underline}.paragraph-pAtK8CJ2gUP a s,.paragraph-yI6IHbm9TYl a s,.sub-heading-7bs5riSgjo a s,.sub-heading-BP5H83BdIK a s,.sub-heading-Cw2Jk_Gi_2 a s,.sub-heading-dVVEuJvZsQ a s,.sub-heading-wjvcQDmzRDX a s{text-decoration:line-through}@media screen and (min-width:0px) and (max-width:480px){.paragraph-yI6IHbm9TYl h1,.paragraph-yI6IHbm9TYl h2,.paragraph-yI6IHbm9TYl h3,.paragraph-yI6IHbm9TYl h4,.paragraph-yI6IHbm9TYl h5,.paragraph-yI6IHbm9TYl h6,.paragraph-yI6IHbm9TYl ul li,.paragraph-yI6IHbm9TYl.text-output{font-size:14px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-yI6IHbm9TYl h1,.paragraph-yI6IHbm9TYl h2,.paragraph-yI6IHbm9TYl h3,.paragraph-yI6IHbm9TYl h4,.paragraph-yI6IHbm9TYl h5,.paragraph-yI6IHbm9TYl h6,.paragraph-yI6IHbm9TYl ul li,.paragraph-yI6IHbm9TYl.text-output{font-size:14px!important;font-weight:400}}.paragraph-yI6IHbm9TYl.text-output h1:first-child:before,.paragraph-yI6IHbm9TYl.text-output h2:first-child:before,.paragraph-yI6IHbm9TYl.text-output h3:first-child:before,.paragraph-yI6IHbm9TYl.text-output h4:first-child:before,.paragraph-yI6IHbm9TYl.text-output h5:first-child:before,.paragraph-yI6IHbm9TYl.text-output h6:first-child:before,.paragraph-yI6IHbm9TYl.text-output p:first-child:before{color:var(--white);content:'\';
110 − font-family: '';margin-right:5px;font-weight:700}.divider-yANWshFHPA1 .divider-element{width:100%;border-top:1px solid var(--color-lyrjldj8);margin:0 auto}@media (max-width:1024px){#row-T40f7M8MinT{animation:none!important}}#col-x9ZcEl7pLga>.inner{flex-direction:column;justify-content:flex-start;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-x9ZcEl7pLga{animation:none!important}}.--mobile #col-x9ZcEl7pLga{animation:none!important}#social-icons-EBXnnGmxzp .social-media-icon{height:20px;width:20px}#social-icons-EBXnnGmxzp .social-icons-container{justify-content:center}#col-YKHe7qBT1UY>.inner{flex-direction:column;justify-content:flex-start;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-YKHe7qBT1UY{animation:none!important}}.--mobile #col-YKHe7qBT1UY{animation:none!important}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-Cw2Jk_Gi_2 h1,.sub-heading-Cw2Jk_Gi_2 h2,.sub-heading-Cw2Jk_Gi_2 h3,.sub-heading-Cw2Jk_Gi_2 h4,.sub-heading-Cw2Jk_Gi_2 h5,.sub-heading-Cw2Jk_Gi_2 h6,.sub-heading-Cw2Jk_Gi_2 ul li,.sub-heading-Cw2Jk_Gi_2.text-output{font-size:15px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-Cw2Jk_Gi_2 h1,.sub-heading-Cw2Jk_Gi_2 h2,.sub-heading-Cw2Jk_Gi_2 h3,.sub-heading-Cw2Jk_Gi_2 h4,.sub-heading-Cw2Jk_Gi_2 h5,.sub-heading-Cw2Jk_Gi_2 h6,.sub-heading-Cw2Jk_Gi_2 ul li,.sub-heading-Cw2Jk_Gi_2.text-output{font-size:15px!important;font-weight:400}}.sub-heading-Cw2Jk_Gi_2.text-output h1:first-child:before,.sub-heading-Cw2Jk_Gi_2.text-output h2:first-child:before,.sub-heading-Cw2Jk_Gi_2.text-output h3:first-child:before,.sub-heading-Cw2Jk_Gi_2.text-output h4:first-child:before,.sub-heading-Cw2Jk_Gi_2.text-output h5:first-child:before,.sub-heading-Cw2Jk_Gi_2.text-output h6:first-child:before,.sub-heading-Cw2Jk_Gi_2.text-output p:first-child:before{color:var(--white);content:"";font-family:"Font Awesome 5 Free";margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-BP5H83BdIK h1,.sub-heading-BP5H83BdIK h2,.sub-heading-BP5H83BdIK h3,.sub-heading-BP5H83BdIK h4,.sub-heading-BP5H83BdIK h5,.sub-heading-BP5H83BdIK h6,.sub-heading-BP5H83BdIK ul li,.sub-heading-BP5H83BdIK.text-output{font-size:15px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-BP5H83BdIK h1,.sub-heading-BP5H83BdIK h2,.sub-heading-BP5H83BdIK h3,.sub-heading-BP5H83BdIK h4,.sub-heading-BP5H83BdIK h5,.sub-heading-BP5H83BdIK h6,.sub-heading-BP5H83BdIK ul li,.sub-heading-BP5H83BdIK.text-output{font-size:15px!important;font-weight:400}}.sub-heading-7bs5riSgjo.text-output h1:first-child:before,.sub-heading-7bs5riSgjo.text-output h2:first-child:before,.sub-heading-7bs5riSgjo.text-output h3:first-child:before,.sub-heading-7bs5riSgjo.text-output h4:first-child:before,.sub-heading-7bs5riSgjo.text-output h5:first-child:before,.sub-heading-7bs5riSgjo.text-output h6:first-child:before,.sub-heading-7bs5riSgjo.text-output p:first-child:before,.sub-heading-BP5H83BdIK.text-output h1:first-child:before,.sub-heading-BP5H83BdIK.text-output h2:first-child:before,.sub-heading-BP5H83BdIK.text-output h3:first-child:before,.sub-heading-BP5H83BdIK.text-output h4:first-child:before,.sub-heading-BP5H83BdIK.text-output h5:first-child:before,.sub-heading-BP5H83BdIK.text-output h6:first-child:before,.sub-heading-BP5H83BdIK.text-output p:first-child:before,.sub-heading-dVVEuJvZsQ.text-output h1:first-child:before,.sub-heading-dVVEuJvZsQ.text-output h2:first-child:before,.sub-heading-dVVEuJvZsQ.text-output h3:first-child:before,.sub-heading-dVVEuJvZsQ.text-output h4:first-child:before,.sub-heading-dVVEuJvZsQ.text-output h5:first-child:before,.sub-heading-dVVEuJvZsQ.text-output h6:first-child:before,.sub-heading-dVVEuJvZsQ.text-output p:first-child:before{color:var(--white);content:'\';
111 − font-family: '';margin-right:5px;font-weight:700}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-dVVEuJvZsQ h1,.sub-heading-dVVEuJvZsQ h2,.sub-heading-dVVEuJvZsQ h3,.sub-heading-dVVEuJvZsQ h4,.sub-heading-dVVEuJvZsQ h5,.sub-heading-dVVEuJvZsQ h6,.sub-heading-dVVEuJvZsQ ul li,.sub-heading-dVVEuJvZsQ.text-output{font-size:15px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-dVVEuJvZsQ h1,.sub-heading-dVVEuJvZsQ h2,.sub-heading-dVVEuJvZsQ h3,.sub-heading-dVVEuJvZsQ h4,.sub-heading-dVVEuJvZsQ h5,.sub-heading-dVVEuJvZsQ h6,.sub-heading-dVVEuJvZsQ ul li,.sub-heading-dVVEuJvZsQ.text-output{font-size:15px!important;font-weight:400}}.sub-heading-7bs5riSgjo,.sub-heading-wjvcQDmzRDX{font-weight:600}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-7bs5riSgjo h1,.sub-heading-7bs5riSgjo h2,.sub-heading-7bs5riSgjo h3,.sub-heading-7bs5riSgjo h4,.sub-heading-7bs5riSgjo h5,.sub-heading-7bs5riSgjo h6,.sub-heading-7bs5riSgjo ul li,.sub-heading-7bs5riSgjo.text-output{font-size:17px!important;font-weight:600}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-7bs5riSgjo h1,.sub-heading-7bs5riSgjo h2,.sub-heading-7bs5riSgjo h3,.sub-heading-7bs5riSgjo h4,.sub-heading-7bs5riSgjo h5,.sub-heading-7bs5riSgjo h6,.sub-heading-7bs5riSgjo ul li,.sub-heading-7bs5riSgjo.text-output{font-size:17px!important;font-weight:600}}#col-DBnd_lSUsZ9>.inner{flex-direction:column;justify-content:flex-start;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-DBnd_lSUsZ9{animation:none!important}}.--mobile #col-DBnd_lSUsZ9{animation:none!important}@media screen and (min-width:481px) and (max-width:10000px){.button-DF5mXdwCw7 .button-icon-end,.button-DF5mXdwCw7 .button-icon-start,.button-DF5mXdwCw7 .main-heading-button{font-size:15px;font-weight:400}.button-DF5mXdwCw7 .button-icon-start{margin-right:5px}.button-DF5mXdwCw7 .button-icon-end{margin-left:5px}.button-DF5mXdwCw7 .sub-heading-button{font-size:15px;color:var(--black);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-DF5mXdwCw7 .button-icon-end,.button-DF5mXdwCw7 .button-icon-start,.button-DF5mXdwCw7 .main-heading-button{font-size:15px;font-weight:400}.button-DF5mXdwCw7 .button-icon-start{margin-right:5px}.button-DF5mXdwCw7 .button-icon-end{margin-left:5px}.button-DF5mXdwCw7 .sub-heading-button{font-size:15px;color:var(--black);font-weight:undefined}}@media screen and (min-width:481px) and (max-width:10000px){.button-FqjMf4ioVjK .button-icon-end,.button-FqjMf4ioVjK .button-icon-start,.button-FqjMf4ioVjK .main-heading-button{font-size:15px;font-weight:400}.button-FqjMf4ioVjK .button-icon-start{margin-right:5px}.button-FqjMf4ioVjK .button-icon-end{margin-left:5px}.button-FqjMf4ioVjK .sub-heading-button{font-size:15px;color:var(--black);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-FqjMf4ioVjK .button-icon-end,.button-FqjMf4ioVjK .button-icon-start,.button-FqjMf4ioVjK .main-heading-button{font-size:15px;font-weight:400}.button-FqjMf4ioVjK .button-icon-start{margin-right:5px}.button-FqjMf4ioVjK .button-icon-end{margin-left:5px}.button-FqjMf4ioVjK .sub-heading-button{font-size:15px;color:var(--black);font-weight:undefined}}@media screen and (min-width:481px) and (max-width:10000px){.button-nc0dXTGe9Oq .button-icon-end,.button-nc0dXTGe9Oq .button-icon-start,.button-nc0dXTGe9Oq .main-heading-button{font-size:15px;font-weight:400}.button-nc0dXTGe9Oq .button-icon-start{margin-right:5px}.button-nc0dXTGe9Oq .button-icon-end{margin-left:5px}.button-nc0dXTGe9Oq .sub-heading-button{font-size:15px;color:var(--black);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-nc0dXTGe9Oq .button-icon-end,.button-nc0dXTGe9Oq .button-icon-start,.button-nc0dXTGe9Oq .main-heading-button{font-size:15px;font-weight:400}.button-nc0dXTGe9Oq .button-icon-start{margin-right:5px}.button-nc0dXTGe9Oq .button-icon-end{margin-left:5px}.button-nc0dXTGe9Oq .sub-heading-button{font-size:15px;color:var(--black);font-weight:undefined}}@media screen and (min-width:481px) and (max-width:10000px){.button-KKQhbBqBVwC .button-icon-end,.button-KKQhbBqBVwC .button-icon-start,.button-KKQhbBqBVwC .main-heading-button{font-size:15px;font-weight:400}.button-KKQhbBqBVwC .button-icon-start{margin-right:5px}.button-KKQhbBqBVwC .button-icon-end{margin-left:5px}.button-KKQhbBqBVwC .sub-heading-button{font-size:15px;color:var(--black);font-weight:400}}@media screen and (min-width:0px) and (max-width:480px){.button-KKQhbBqBVwC .button-icon-end,.button-KKQhbBqBVwC .button-icon-start,.button-KKQhbBqBVwC .main-heading-button{font-size:15px;font-weight:400}.button-KKQhbBqBVwC .button-icon-start{margin-right:5px}.button-KKQhbBqBVwC .button-icon-end{margin-left:5px}.button-KKQhbBqBVwC .sub-heading-button{font-size:15px;color:var(--black);font-weight:undefined}}@media screen and (min-width:0px) and (max-width:480px){.sub-heading-wjvcQDmzRDX h1,.sub-heading-wjvcQDmzRDX h2,.sub-heading-wjvcQDmzRDX h3,.sub-heading-wjvcQDmzRDX h4,.sub-heading-wjvcQDmzRDX h5,.sub-heading-wjvcQDmzRDX h6,.sub-heading-wjvcQDmzRDX ul li,.sub-heading-wjvcQDmzRDX.text-output{font-size:17px!important;font-weight:600}}@media screen and (min-width:481px) and (max-width:10000px){.sub-heading-wjvcQDmzRDX h1,.sub-heading-wjvcQDmzRDX h2,.sub-heading-wjvcQDmzRDX h3,.sub-heading-wjvcQDmzRDX h4,.sub-heading-wjvcQDmzRDX h5,.sub-heading-wjvcQDmzRDX h6,.sub-heading-wjvcQDmzRDX ul li,.sub-heading-wjvcQDmzRDX.text-output{font-size:17px!important;font-weight:600}}.sub-heading-wjvcQDmzRDX.text-output h1:first-child:before,.sub-heading-wjvcQDmzRDX.text-output h2:first-child:before,.sub-heading-wjvcQDmzRDX.text-output h3:first-child:before,.sub-heading-wjvcQDmzRDX.text-output h4:first-child:before,.sub-heading-wjvcQDmzRDX.text-output h5:first-child:before,.sub-heading-wjvcQDmzRDX.text-output h6:first-child:before,.sub-heading-wjvcQDmzRDX.text-output p:first-child:before{color:var(--teal);content:'\';
112 − font-family: '';margin-right:5px;font-weight:700}#col-tMvNyJ-L9Ju>.inner{flex-direction:column;justify-content:flex-start;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-tMvNyJ-L9Ju{animation:none!important}}.--mobile #col-tMvNyJ-L9Ju{animation:none!important}.paragraph-pAtK8CJ2gUP{font-weight:400}@media screen and (min-width:0px) and (max-width:480px){.paragraph-pAtK8CJ2gUP h1,.paragraph-pAtK8CJ2gUP h2,.paragraph-pAtK8CJ2gUP h3,.paragraph-pAtK8CJ2gUP h4,.paragraph-pAtK8CJ2gUP h5,.paragraph-pAtK8CJ2gUP h6,.paragraph-pAtK8CJ2gUP ul li,.paragraph-pAtK8CJ2gUP.text-output{font-size:14px!important;font-weight:400}}@media screen and (min-width:481px) and (max-width:10000px){.paragraph-pAtK8CJ2gUP h1,.paragraph-pAtK8CJ2gUP h2,.paragraph-pAtK8CJ2gUP h3,.paragraph-pAtK8CJ2gUP h4,.paragraph-pAtK8CJ2gUP h5,.paragraph-pAtK8CJ2gUP h6,.paragraph-pAtK8CJ2gUP ul li,.paragraph-pAtK8CJ2gUP.text-output{font-size:14px!important;font-weight:400}}.paragraph-pAtK8CJ2gUP.text-output h1:first-child:before,.paragraph-pAtK8CJ2gUP.text-output h2:first-child:before,.paragraph-pAtK8CJ2gUP.text-output h3:first-child:before,.paragraph-pAtK8CJ2gUP.text-output h4:first-child:before,.paragraph-pAtK8CJ2gUP.text-output h5:first-child:before,.paragraph-pAtK8CJ2gUP.text-output h6:first-child:before,.paragraph-pAtK8CJ2gUP.text-output p:first-child:before{color:var(--text-color);content:'\';
113 − font-family: '';margin-right:5px;font-weight:700}
61 +:root{--transparent:transparent;--black:#000000}.hl_page-preview--content .col-_QFqrowOWR,.hl_page-preview--content .row-DRyw8jyBEZ,.hl_page-preview--content .section-0kjgjk3DFX{box-shadow:none;padding:20px 0;margin:0;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:0;border-style:none;border-radius:0}.hl_page-preview--content .col-_QFqrowOWR,.hl_page-preview--content .row-DRyw8jyBEZ{margin:0 auto;padding:10px 5px;width:100%}.hl_page-preview--content .col-_QFqrowOWR{margin:0}.hl_page-preview--content .custom-code-WC4M1By6OW{margin:0;width:auto;height:auto}#section-0kjgjk3DFX>.inner{max-width:1170px}@media (max-width:1024px){#section-0kjgjk3DFX{animation:none!important}}.--mobile #row-DRyw8jyBEZ,.--mobile #section-0kjgjk3DFX{animation:none!important}@media (max-width:1024px){#row-DRyw8jyBEZ{animation:none!important}}#col-_QFqrowOWR>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-_QFqrowOWR{animation:none!important}}.--mobile #col-_QFqrowOWR{animation:none!important}
62 + /* ---- footer-refonte 2026 styles ----- */
63 +:root{--transparent:transparent;--black:#000000}.hl_page-preview--content .col-XWdryjtNAM,.hl_page-preview--content .row-FK4sJ5Q_F3,.hl_page-preview--content .section-wmdTSyykT8{box-shadow:none;padding:0;margin:0;background-color:var(--transparent);backdrop-filter:none;border-color:var(--black);border-width:0;border-style:none;border-radius:0}.hl_page-preview--content .col-XWdryjtNAM,.hl_page-preview--content .row-FK4sJ5Q_F3{margin:0 auto;width:100%}.hl_page-preview--content .col-XWdryjtNAM{margin:0}.hl_page-preview--content .custom-code-4tobEgNGMa{margin:0;width:auto;height:auto}#section-wmdTSyykT8>.inner{max-width:1170px}@media (max-width:1024px){#section-wmdTSyykT8{animation:none!important}}.--mobile #row-FK4sJ5Q_F3,.--mobile #section-wmdTSyykT8{animation:none!important}@media (max-width:1024px){#row-FK4sJ5Q_F3{animation:none!important}}#col-XWdryjtNAM>.inner{flex-direction:column;justify-content:center;align-items:inherit;flex-wrap:nowrap}@media (max-width:1024px){#col-XWdryjtNAM{animation:none!important}}.--mobile #col-XWdryjtNAM{animation:none!important}
114 64
115 65
116 66
117 67 .hl-cookie-consent-banner{background-color:#ffffffff}.hl-cookie-consent-banner .banner-text,.hl-cookie-consent-banner .learn-more{color:#000;font-family:Inter;font-size:16px}.hl-cookie-consent-banner .button.primary{color:#fff;background-color:#00007bff;font-family:Inter;font-size:16px}.hl-cookie-consent-banner .button.secondary{color:#000;background-color:#f1f1f1ff;font-family:Inter;font-size:16px}.hl-cookie-consent-banner .button.customize{color:#000;background-color:#fff;font-family:Inter;font-size:16px}.hl-cc-preference-popup{background-color:#fff;font-family:Inter}.hl-cc-preference-popup .hl-cc-preference-popup-title{color:#101828;font-size:18px}.hl-cc-preference-popup .hl-cc-preference-popup-description{color:#344054;font-size:14px}.hl-cc-preference-popup-footer .cancel{color:#354054;background-color:#fff}.hl-cc-preference-popup-footer .save{color:#fff;background-color:#145eef}.hl-cc-preference-popup-footer .reject{color:#b42418;background-color:#fef3f2}.hl-cc-switch input:checked+.hl-slider{background-color:#155eef}.hl-cc-preference-popup-content .hl-cc-preference-category-header{color:#101828}
118 68
119 69 @media (max-width: 1024px) {
120 − #section-DUFD6YvRZJ,
121 − #row-nHziU-ybxu,
122 − #col-a9NtY9lc-G,
123 − #section-fo8vXgGyhn,
124 − #row-kyMqnsiRwF,
125 − #col-WR5cM4L3X7,
126 − #section-Hs3vSWqm1o,
127 − #row-kqfP4SYDWs,
128 − #col-uupdULtpN6,
129 70 #section-JEnfcw8zO5,
130 71 #row-ufVUOO75V_,
131 72 #col-KIf4Ql0phl,
132 − #row--V65xLoMfl,
133 − #col-Rg3Gr4MzBf,
134 − #row-te6d0D-srD,
135 − #col-Fmvt_lf7Kk,
136 − #col-5sScusTRxm,
137 − #row-fusa_Rdcgb,
138 − #col-xAMHzeXDbc,
139 − #col-zQ1-bO4G0X,
140 − #row-2A6TdgKHlq,
141 − #col-xy95dLyhr_,
142 − #row-yRqZ6aHLSo,
143 − #col-5BSbroV8HW,
144 − #row-nGS-HeF6nn,
145 − #col-PZ9xI3iXTN,
146 − #section-qKXqWR4YrU,
147 − #row-rh4yMILdRq,
148 − #col-9QARp-V-6m,
149 − #row-AXTeGWxz-Ld,
150 − #col-D7l9_3bXCN,
151 − #row-CpfFhBNjeH,
152 − #col-0XrNF11aND,
153 − #col-gXGaYC3mUA,
154 − #row-FvKdm-vCdY,
155 − #col-G974YejYr8,
156 − #col-maREh0vwPA,
157 − #row-hjdHkZaMtO,
158 − #col-b7vKLa55Kt,
159 − #row-99GgjNdm-g,
160 − #col-W39DtM6M4H,
161 − #row-R1cm8G6K1l,
162 − #col-ixkz30M7i1,
163 − #col-Q4wU3xhreo,
164 − #row-vKeRqlqG86,
165 − #col-NMqctrhnDW,
166 − #col-0BdY2ssDlw,
167 − #row-m_Yt_bXEHI,
168 − #col-UWRaDC9Grz,
169 − #col-eZcUywOtoD,
170 − #row-xqyNcqfIXP,
171 − #col-7TnZnvp0Oz,
172 − #col-L8zAeZtaIl,
173 − #row-CGWejANV07,
174 − #col-6sdGUnXWaj,
175 − #col-OHL99Fr2yl,
176 − #row-1tUj13yrU_,
177 − #col-cp3pdl5s08,
178 − #col-sP29GM9ciq,
179 − #row-meTU-K_rSB,
180 − #col-ls71cZvTn-,
181 − #row-hYTTIOKBfG,
182 − #col-GydWbufL23,
183 − #row-gvJ5NslZYY,
184 − #col-gYjurgTxv8,
185 − #col-tN2w8jSThI,
186 − #row-AkFudryisy,
187 − #col-Hu9p3uB0oJ,
188 − #col-PDRiNvrIye,
189 − #row-N2zOEM0D9T,
190 − #col-gnCK3IzMW4,
191 − #col-4BWvVkisHn,
192 − #row-gmEgVmoveS,
193 − #col-p5GadL5G_x,
194 − #col-M012EiU4jM,
195 − #row-ZwxJLUTKEd,
196 − #col-h-xrGyW5sh,
197 − #row-0KfYta8rZb,
198 − #col-IeMQJtd4Vs,
199 − #row-M4W9BYnUJ5,
200 − #col-o_l0aakC0u,
201 − #col-Hx1m6Q308r,
202 − #row-BIkNjvRLaq,
203 − #col-d5P6cDv7cw,
204 − #section-PwCpNpl1z5,
205 − #row-1leuN7S1Na,
206 − #col-_L5Va54ZgF,
207 − #row-VVzmQ44QDs,
208 − #col-Vo1fx4hJqF,
209 − #row-RIUdOvYKzr,
210 − #col-cw-hkPoo_O,
211 − #col--6VywJqT4n,
212 − #row-iBCj_mgrrx,
213 − #col-rs0PGwlXj5,
214 − #col-NsIdpn9Vp0,
215 − #row-8KmiNapolM,
216 − #col-gJzUPPOwIL,
217 − #col-ogCVk9UCXh,
218 − #row-ijx5noBjNS,
219 − #col-hV3q1OYuDJ,
220 − #row-0PYG1zdcXx,
221 − #col-yhvBaHjiB6,
222 − #row-6518d_odk6,
223 − #col--Ce-PpyXTL,
224 − #col-KUsELMqcoC,
225 − #row-2EwUhXMzzv,
226 − #col-cuOhmolhsd,
227 − #col-Iz5DINGe-M,
228 − #row-GORzDsjsua,
229 − #col-yA0QJbNOCo,
230 − #row-qZ8zYe35q1,
231 − #col-F_OpzDB8FP,
232 − #row-bdnVOVfKxF,
233 − #col-pbU9fmJdMn,
234 − #section-Z4kxjMJRRT,
235 − #row-TWnivHykBW,
236 − #col-jaowBmUCXQ,
237 − #row-D-13Jo8OOF,
238 − #col-jGkxQisDii,
239 − #row-H3omdqVcgL,
240 − #col-ikdHVxU13e,
241 − #section-bwMlraZJNd,
242 − #row-ePMCxDWqgji,
243 − #col-9GM_xmFQp0x,
244 − #section-VjT1mZxqAj,
245 − #row-T40f7M8MinT,
246 − #col-tMvNyJ-L9Ju,
247 − #col-DBnd_lSUsZ9,
248 − #col-YKHe7qBT1UY,
249 − #col-x9ZcEl7pLga,
250 − #row-nUbsv-gIl0f,
251 − #col-YMvj5HCxnWP {
73 + #section-647pwPWczD,
74 + #row-WdC-9fjO44,
75 + #col-uqg239Xywm,
76 + #section-0kjgjk3DFX,
77 + #row-DRyw8jyBEZ,
78 + #col-_QFqrowOWR,
79 + #section-wmdTSyykT8,
80 + #row-FK4sJ5Q_F3,
81 + #col-XWdryjtNAM {
252 82 animation: none !important;
253 83 }
254 84 }
255 −</style><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CInter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CRoboto:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap" media="print" onload="this.media='all'"><style>:root{--sticky-header-height:0px}[id]{scroll-margin-top:var(--sticky-header-height)}.flex{display:flex}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.flex-grow{flex-grow:9999}.align-center{align-items:center}.h-full{height:100%}.max-w-400{max-width:400px}.text-right{text-align:right}.d-grid{display:grid}.px-0{padding-left:0!important;padding-right:0!important}.gap-1{gap:.3rem}.items-end{align-items:flex-end}.relative{position:relative}.gap-2{gap:.625rem}.mt-20{margin-top:20px}.mt-8{margin-top:32px}.ml-3{margin-left:.75rem}.mr-10{margin-right:10px}.mt-4{margin-top:1rem}.mb-4{margin-bottom:1rem}.w-100{width:100%}.h-100{height:100%}.w-50{width:50%}.w-25{width:25%}.mw-100{max-width:100%}.noBorder{border:none!important}.iti__flag{background-image:url(https://stcdn.leadconnectorhq.com/intl-tel-input/17.0.12/img/flags.png)}.pointer{cursor:pointer}@media(min-resolution:192dpi){.iti__flag{background-image:url(https://stcdn.leadconnectorhq.com/intl-tel-input/17.0.12/img/flags@2x.png)}}.iti__country{display:flex;justify-content:space-between}@media(min-width:768px){.hl_wrapper.nav-shrink .hl_wrapper--inner.page-creator,body{padding-top:0}.hl_page-creator--menu{left:0;top:0;z-index:10}.hl_wrapper{padding-left:0}}@media(min-width:1200px){.hl_wrapper.nav-shrink{padding-left:0!important}}html body .hl_wrapper{height:100vh;overflow:hidden}body{margin:0;-webkit-font-smoothing:antialiased}img{border-style:none;vertical-align:middle}.bg-fixed{z-index:-1}.progress-outer{background-color:#f5f5f5;border-radius:inherit;box-shadow:inset 0 1px 2px #0000001a;font-size:14px;height:35px;line-height:36px;overflow:hidden;padding-bottom:0;padding-top:0;width:100%}.progress-inner{box-shadow:inset 0 -1px #00000026;color:#fff;float:left;font-size:14px;height:100%;padding-left:10px;padding-right:10px;transition:width .6s ease;width:0}.progress0{width:0}.progress10{width:10%}.progress20{width:20%}.progress30{width:30%}.progress40{width:40%}.progress50{width:50%}.progress60{width:60%}.progress70{width:70%}.progress80{width:80%}.progress90{width:90%}.progress100{width:100%}.progressbarOffsetWhite{background:#f5f5f5}.progressbarOffsetTransparentWhite{background-color:#ffffff80}.progressbarOffsetBlack{background:#333}.progressbarOffsetTransparentBlack{background-color:#7e7e7e80}.text-white{color:#fff}.text-bold{font-weight:700}.text-italic{font-style:italic}.text-bold-italic{font-style:italic;font-weight:700}.progressbarSmall{font-size:14px;height:35px;line-height:36px}.progressbarMedium{font-size:19px;height:45px;line-height:45px}.progressbarLarge{font-size:21px;height:65px;line-height:65px}.recaptcha-container{margin-bottom:1em}.recaptcha-container p{color:red;margin-top:1em}.button-recaptcha-container div:first-child{height:auto!important;width:100%!important}.card-el-error-msg{align-items:center;color:#e25950;display:flex;font-size:13px;justify-content:flex-start;padding:10px 0;text-align:center}.card-el-error-msg svg{color:#f87171;margin-right:2px}.hl-faq-child-heading{border:none;cursor:pointer;justify-content:space-between;outline:none;padding:15px;width:100%}.hl-faq-child-head,.hl-faq-child-heading{align-items:center;display:flex}.v-enter-active,.v-leave-active{transition:opacity .2s ease-out}.v-enter-from,.v-leave-to{opacity:0}.faq-separated-child{margin-bottom:10px}.hl-faq-child-panel img{border-radius:15px;cursor:pointer}.hl-faq-child-heading-icon.left{margin-right:1em}.expand-collapse-all-button{background-color:transparent;border:1px solid #d1d5db;border-radius:15px;color:#3b82f6;cursor:pointer;font-size:12px;font-weight:400;line-height:16px;margin:1em 0;padding:5px 15px}.hl-faq-child-panel{transition:padding .2s ease}.v-spinner .v-moon1{position:relative}.v-spinner .v-moon1,.v-spinner .v-moon2{animation:v-moonStretchDelay .6s linear 0s infinite;animation-fill-mode:forwards}.v-spinner .v-moon2{opacity:.8;position:absolute}.v-spinner .v-moon3{opacity:.1}@keyframes v-moonStretchDelay{to{transform:rotate(1turn)}}.generic-error-message{color:red;font-weight:500;margin-top:.5rem;text-align:center}#faq-overlay{background:var(--overlay);height:100vh;opacity:.8;width:100vw}#faq-overlay,#faq-popup{position:fixed;z-index:1000}#faq-popup{background:#fff;height:auto;left:50%;margin-left:-250px;margin-top:-250px;top:50%;width:500px}#popupclose{cursor:pointer;float:right;padding:10px}.popupcontent{height:auto!important;width:100%!important}#button{cursor:pointer}.dark{background-color:#000}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.spotlight{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);bottom:-30vh;filter:blur(20vh);height:40vh}.z-10{z-index:10}.right-0{right:0}.left-0{left:0}.fixed{position:fixed}.text-black{--tw-text-opacity:1;color:rgba(0,0,0,var(--tw-text-opacity))}.overflow-hidden{overflow:hidden}.min-h-screen{min-height:100vh}.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.place-content-center{place-content:center}.grid{display:grid}.z-20{z-index:20}.max-w-520px{max-width:520px}.mb-8{margin-bottom:2rem}.text-8xl{font-size:6rem;line-height:1}.font-medium{font-weight:500}.mb-16{margin-bottom:4rem}.leading-tight{line-height:1.25}.text-xl{font-size:1.25rem;line-height:1.75rem}.font-light{font-weight:300}@media(min-width:640px){.sm-text-10xl{font-size:10rem;line-height:1}.sm-text-4xl{font-size:2.25rem;line-height:2.5rem}.sm-px-0{padding-left:0;padding-right:0}}.full-center{background-position:50%!important;background-repeat:repeat!important;background-size:cover!important}.fill-width{background-size:100% auto!important}.fill-width,.fill-width-height{background-repeat:no-repeat!important}.fill-width-height{background-size:100% 100%!important}.no-repeat{background-repeat:no-repeat!important}.repeat-x{background-repeat:repeat-x!important}.repeat-y{background-repeat:repeat-y!important}.repeat-x-fix-top{background-position:top!important;background-repeat:repeat-x!important}.repeat-x-fix-bottom{background-position:bottom!important;background-repeat:repeat-x!important}#overlay{height:100%;inset:0;opacity:0;overflow-y:scroll;position:fixed;transition:opacity .3s ease;width:100%;z-index:999;-webkit-overflow-scrolling:touch}#overlay.show{opacity:1}.popup-body{background-color:#fff;height:auto;left:50%;min-height:180px;position:absolute;top:10%;transition:transform .25s ease-in-out}.popup-body,.popup-body.show{transform:translate(-50%)}.closeLPModal{cursor:pointer;position:absolute;right:-10px;top:-10px;z-index:21}.settingsPModal{font-size:18px;left:40%;padding:10px;position:absolute;top:-40px;width:32px}.c-section>.inner{display:flex;flex-direction:column;justify-content:center;margin:auto;z-index:2}.c-row>.inner{display:flex;width:100%}.c-column>.inner{display:flex;flex-direction:column;height:100%;justify-content:inherit;width:100%!important}.c-wrapper{position:relative}.previewer{--vw:100vh/100;height:calc(100vh - 170px);margin:auto;overflow:scroll;overflow-x:hidden;overflow-y:scroll;width:100%}.c-element{position:relative}.c-column{flex:1}.c-column,.c-row{position:relative}p+p{margin-top:auto}.hl_page-creator--row.active{border-color:#188bf6}.flip-list-move{transition:transform .5s}.page-wrapper .sortable-ghost:before{background:#188bf6!important;border-radius:4px;content:"";height:4px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:100%}.page-wrapper .sortable-ghost{border:none!important;position:relative}.active-drop-area:before{color:gray;content:"";font-size:12px;left:50%;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%)}.active-drop-area{border:1px dashed grey}.active-drop-area.is-empty{min-height:60px}.empty-component{align-items:center;border:1px dashed #d7dde9;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%;z-index:2}.empty-component,.empty-component-min-height{min-height:100px;pointer-events:none}.dividerContainer{width:100%}.items-center{align-items:center}.font-semibold{font-weight:600}.text-2xl{font-size:1.5rem}.text-sm{font-size:.875rem}.w-full{width:100%}.mr-2{margin-right:.5rem}.mt-2{margin-top:.5rem}.justify-between{justify-content:space-between}.text-lg{font-size:1.125rem}.font-base{font-weight:400}.justify-end{justify-content:flex-end}.justify-center{justify-content:center!important}.text-center{text-align:center}.centered{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.mx-auto{margin:0 auto}.default-cursor{cursor:default!important}</style><style>@media only screen and (max-width:767px){.c-row>.inner{flex-direction:column}.desktop-only{display:none}.c-column,.c-row{width:100%!important}.c-column,.c-column>.inner,.c-row>.inner,.c-section,.c-section>.inner{padding-left:0!important;padding-right:0!important}.c-column,.c-column>.inner,.c-row{margin-left:0!important;margin-right:0!important}.c-row{padding-left:10px!important;padding-right:10px!important}}@media only screen and (min-width:768px){.mobile-only{display:none}}.c-button button{outline:none;position:relative}.fa,.fab,.fal,.far,.fas{-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.c-column{flex:1 1 auto!important}.c-column>.inner.horizontal>div{flex:1}.c-row>.inner{display:flex;width:100%}.c-nested-column .c-row>.inner{width:100%!important}.c-nested-column .inner{border:none!important}.bgCover.bg-fixed:before{background-attachment:fixed!important;background-position:50%!important;background-repeat:repeat!important;background-size:cover!important;-webkit-background-size:cover!important}@supports (-webkit-touch-callout:inherit){.bgCover.bg-fixed:before{background-attachment:scroll!important}}.bgCover100.bg-fixed:before{background-size:100% auto!important;-webkit-background-size:100% auto!important}.bgCover100.bg-fixed:before,.bgNoRepeat.bg-fixed:before{background-repeat:no-repeat!important}.bgRepeatX.bg-fixed:before{background-repeat:repeat-x!important}.bgRepeatY.bg-fixed:before{background-repeat:repeat-y!important}.bgRepeatXTop.bg-fixed:before{background-position:top!important;background-repeat:repeat-x!important}.bgRepeatXBottom.bg-fixed:before{background-position:bottom!important;background-repeat:repeat-x!important}.bgCover{background-attachment:fixed!important;background-position:50%!important;background-repeat:repeat!important;background-size:cover!important;-webkit-background-size:cover!important}@supports (-webkit-touch-callout:inherit){.bgCover{background-attachment:scroll!important}}.bgCover100{background-size:100% auto!important;-webkit-background-size:100% auto!important}.bgCover100,.bgNoRepeat{background-repeat:no-repeat!important}.bgRepeatX{background-repeat:repeat-x!important}.bgRepeatY{background-repeat:repeat-y!important}.bgRepeatXTop{background-position:top!important}.bgRepeatXBottom,.bgRepeatXTop{background-repeat:repeat-x!important}.bgRepeatXBottom{background-position:bottom!important}.cornersTop{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.cornersBottom{border-top-left-radius:0!important;border-top-right-radius:0!important}.radius0{border-radius:0}.radius1{border-radius:1px}.radius2{border-radius:2px}.radius3{border-radius:3px}.radius4{border-radius:4px}.radius5{border-radius:5px}.radius10{border-radius:10px}.radius15{border-radius:15px}.radius20{border-radius:20px}.radius25{border-radius:25px}.radius50{border-radius:50px}.radius75{border-radius:75px}.radius100{border-radius:100px}.radius125{border-radius:125px}.radius150{border-radius:150px}.borderTopBottom{border-bottom-color:#000000b3;border-left:none!important;border-right:none!important;border-top-color:#000000b3}.borderTop{border-bottom:none!important;border-top-color:#000000b3}.borderBottom,.borderTop{border-left:none!important;border-right:none!important}.borderBottom{border-bottom-color:#000000b3;border-top:none!important}.borderFull{border-color:#000000b3}@keyframes rocking{0%{transform:rotate(0)}25%{transform:rotate(0)}50%{transform:rotate(2deg)}75%{transform:rotate(-2deg)}to{transform:rotate(0)}}.buttonRocking{animation:rocking 2s infinite;animation-timing-function:ease-out;transition:.2s}.buttonPulseGlow{animation:pulseGlow 2s infinite;animation-timing-function:ease-in-out}@keyframes pulseGlow{0%{box-shadow:0 0 #fff0}25%{box-shadow:0 0 2.5px 1px #ffffff40}50%{box-shadow:0 0 5px 2px #ffffff80}85%{box-shadow:0 0 5px 5px #fff0}to{box-shadow:0 0 #fff0}}.buttonBounce{animation:bounce 1.5s infinite;animation-timing-function:ease-in;transition:.2s}@keyframes bounce{15%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}35%{box-shadow:0 8px 5px -5px #00000040;transform:translateY(-35%)}45%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}55%{box-shadow:0 5px 4px -4px #00000040;transform:translateY(-20%)}70%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}80%{box-shadow:0 4px 3px -3px #00000040;transform:translateY(-10%)}90%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}95%{box-shadow:0 2px 3px -3px #00000040;transform:translateY(-2%)}99%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}to{box-shadow:0 0 0 0 transparent;transform:translateY(0)}}@keyframes elevate{0%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}to{box-shadow:0 8px 5px -5px #00000040;transform:translateY(-10px)}}.buttonElevate:hover{animation:elevate .2s forwards}.buttonElevate{box-shadow:0 0 0 0 transparent;transition:.2s}.buttonWobble{transition:.3s}.buttonWobble:hover{animation:wobble .5s 1;animation-timing-function:ease-in-out}@keyframes wobble{0%{transform:skew(0)}25%{transform:skew(10deg)}50%{transform:skew(0)}75%{transform:skew(-10deg)}to{transform:skew(0)}}.image-container img{max-width:100%;vertical-align:middle}.sub-text ::-moz-placeholder{color:#000;opacity:1}.sub-text ::placeholder{color:#000;opacity:1}.image-container{height:100%;width:100%}.shadow5inner{box-shadow:inset 0 1px 3px #0000000d}.shadow10inner{box-shadow:inset 0 1px 5px #0000001a}.shadow20inner{box-shadow:inset 0 1px 5px #0003}.shadow30inner{box-shadow:inset 0 2px 5px 2px #0000004d}.shadow40inner{box-shadow:inset 0 2px 5px 2px #0006}.shadow5{box-shadow:0 1px 3px #0000000d}.shadow10{box-shadow:0 1px 5px #0000001a}.shadow20{box-shadow:0 1px 5px #0003}.shadow30{box-shadow:0 2px 5px 2px #0000004d}.shadow40{box-shadow:0 2px 5px 2px #0006}.sub-heading-button{color:#fff;font-weight:400;line-height:normal;opacity:.8;text-align:center}.wideSection{max-width:1120px}.midWideSection,.wideSection{margin-left:auto!important;margin-right:auto!important}.midWideSection{max-width:960px}.midSection{margin-left:auto!important;margin-right:auto!important;max-width:720px}.c-section>.inner{margin-left:auto;margin-right:auto;max-width:1170px;width:100%}.c-column{padding-left:15px;padding-right:15px}.feature-img-circle img,.img-circle,.img-circle img{border-radius:50%!important}.feature-img-round-corners img,.img-round-corners,.img-round-corners img{border-radius:5px}.feature-image-dark-border img,.image-dark-border{border:3px solid rgba(0,0,0,.7)}.feature-image-white-border img,.image-white-border{border:3px solid #fff}.img-grey,.img-grey img{filter:grayscale(100%);filter:gray;-webkit-transition:all .6s ease}.button-shadow1{box-shadow:0 1px 5px #0003}.button-shadow2{box-shadow:0 1px 5px #0006}.button-shadow3{box-shadow:0 1px 5px #000000b3}.button-shadow4{box-shadow:0 8px 1px #0000001a}.button-shadow5{box-shadow:0 0 25px #0003,0 0 15px #0003,0 0 3px #0006}.button-shadow6{box-shadow:0 0 25px #0006,0 0 15px #fff3,0 0 3px #fff6}.button-shadow-sharp1{box-shadow:inset 0 1px #fff3}.button-shadow-sharp2{box-shadow:inset 0 0 0 1px #fff3}.button-shadow-sharp3{box-shadow:inset 0 0 0 2px #fff3}.button-shadow-highlight{box-shadow:none}.button-shadow-highlight:hover{box-shadow:inset 0 0 #ffffff38,inset 0 233px 233px #ffffff1f}.button-flat-line{background-color:transparent!important;border-width:2px}.button-vp-5{padding-bottom:5px!important;padding-top:5px!important}.button-vp-10{padding-bottom:10px!important;padding-top:10px!important}.button-vp-15{padding-bottom:15px!important;padding-top:15px!important}.button-vp-20{padding-bottom:20px!important;padding-top:20px!important}.button-vp-25{padding-bottom:25px!important;padding-top:25px!important}.button-vp-30{padding-bottom:30px!important;padding-top:30px!important}.button-vp-40{padding-bottom:40px!important;padding-top:40px!important}.button-vp-0{padding-bottom:0!important;padding-top:0!important}.button-hp-5{padding-left:5px!important;padding-right:5px!important}.button-hp-10{padding-left:10px!important;padding-right:10px!important}.button-hp-15{padding-left:15px!important;padding-right:15px!important}.button-hp-20{padding-left:20px!important;padding-right:20px!important}.button-hp-25{padding-left:25px!important;padding-right:25px!important}.button-hp-30{padding-left:30px!important;padding-right:30px!important}.button-hp-40{padding-left:40px!important;padding-right:40px!important}.button-hp-0{padding-left:0!important;padding-right:0!important}.vs__dropdown-toggle{background:#f3f8fb!important;border:none!important;height:43px!important}.row-align-center{margin:0 auto}.row-align-left{margin:0 auto;margin-left:0!important}.row-align-right{margin:0 auto;margin-right:0!important}button,input,optgroup,select,textarea{border-radius:unset;font-family:unset;font-size:unset;line-height:unset;margin:unset;text-transform:unset}body{font-weight:unset!important;line-height:unset!important;-moz-osx-font-smoothing:grayscale;word-wrap:break-word}*,:after,:before{box-sizing:border-box}.main-heading-group>div{display:inline-block}.c-button span.main-heading-group,.c-button span.sub-heading-group{display:block}.time-grid-3{grid-template-columns:repeat(3,100px)}.time-grid-3,.time-grid-4{display:grid;text-align:center}.time-grid-4{grid-template-columns:repeat(4,100px)}@media screen and (max-width:767px){.time-grid-3{grid-template-columns:repeat(3,80px)}.time-grid-4{grid-template-columns:repeat(4,70px)}}.time-grid .timer-box{display:grid;font-size:15px;grid-template-columns:1fr;text-align:center}.timer-box .label{font-weight:300}.c-button button{cursor:pointer}.c-button>a{text-decoration:none}.c-button>a,.c-button>a span{display:inline-block}.nav-menu-wrapper{display:flex;justify-content:space-between}.nav-menu-wrapper.default{flex-direction:row}.nav-menu-wrapper.reverse{flex-direction:row-reverse}.nav-menu-wrapper .branding{align-items:center;display:flex}.nav-menu-wrapper.default .branding{flex-direction:row}.nav-menu-wrapper.reverse .branding{flex-direction:row-reverse}.nav-menu-wrapper.default .branding .logo,.nav-menu-wrapper.reverse .branding .title{margin-right:18px}.nav-menu-wrapper .branding .title{align-items:center;display:flex;min-height:50px;min-width:50px}.nav-menu{align-items:center;display:flex;flex-wrap:wrap;list-style:none;margin:0;padding:0}.nav-menu a{text-decoration:none}.dropdown{display:inline-block;position:relative}.dropdown .dropdown-menu{border:none;box-shadow:0 8px 16px 5px #0000001a}.dropdown-menu{background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.3125rem;color:#607179;display:none;float:left;font-size:1rem;left:0;list-style:none;margin:.125rem 0 0;min-width:10rem;padding:.5rem 0;position:absolute;text-align:left;top:100%;z-index:1000}.nav-menu .nav-menu-item.dropdown:hover>.dropdown-menu{display:block}.nav-menu .dropdown-menu{display:none;list-style:none;margin:0;padding:0}.nav-menu-mobile{display:none}.nav-menu-mobile i{cursor:pointer;font-size:24px}#nav-menu-popup{background:var(--overlay);display:none;height:100%;inset:0;opacity:0;position:fixed;transition:opacity .3s ease;width:100%;z-index:100}#nav-menu-popup.show{opacity:1}#nav-menu-popup .nav-menu-body{background-color:#fff;height:100%;left:0;overflow:auto;padding:45px;position:absolute;top:0;width:100%}#nav-menu-popup .nav-menu-body .close-menu{cursor:pointer;position:absolute;right:20px;top:20px;z-index:100}#nav-menu-popup .nav-menu-body .close-menu:before{content:""}#nav-menu-popup .nav-menu{align-items:center;display:flex;flex-direction:column;list-style:none;margin:0;padding:0}#nav-menu-popup .nav-menu .nav-menu-item{list-style:none;text-align:left;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}#nav-menu-popup .nav-menu .nav-menu-item .nav-menu-item-content{display:flex;position:relative}#nav-menu-popup .nav-menu-item .nav-menu-item-title{flex-grow:1;margin:0 1rem;max-width:calc(100% - 2rem)}#nav-menu-popup .nav-menu .nav-menu-item .nav-menu-item-content .nav-menu-item-toggle{cursor:pointer;font-size:24px;position:absolute;right:0;top:calc(50% - 12px)}#nav-menu-popup .nav-menu .nav-menu-item .nav-menu-item-content .nav-menu-item-toggle i{font-size:24px;transition:transform .2s ease}#nav-menu-popup .nav-menu .nav-menu-item .nav-menu-item-content .nav-menu-item-toggle i:before{content:""}#nav-menu-popup .nav-menu .nav-menu-item.active .nav-menu-item-content .nav-menu-item-toggle i{transform:rotate(-180deg)}#nav-menu-popup .nav-menu .nav-menu-item .nav-dropdown-menu{display:none;max-height:0;opacity:0;overflow:auto;padding:0;transition:all .3s ease-in-out;visibility:hidden}#nav-menu-popup .nav-menu .nav-menu-item.active .nav-dropdown-menu{display:block;max-height:600px;opacity:1;visibility:visible}.form-error{border:2px solid var(--red);border-radius:8px;cursor:pointer;font-size:20px;margin-bottom:10px;padding:6px 12px;text-align:center}.form-error,.form-error i{color:var(--red)}.c-bullet-list ul li{line-height:inherit}.c-bullet-list ul li.ql-indent-1{padding-left:4.5em}.c-bullet-list ul li.ql-indent-2{padding-left:7.5em}.c-bullet-list ul li.ql-indent-3{padding-left:10.5em}.c-bullet-list ul li.ql-indent-4{padding-left:13.5em}.c-bullet-list ul li.ql-indent-5{padding-left:16.5em}.c-bullet-list ul li.ql-indent-6{padding-left:19.5em}.c-bullet-list ul li.ql-indent-7{padding-left:22.5em}.c-bullet-list ul li.ql-indent-8{padding-left:25.5em}.c-rich-text .list-disc{list-style-type:disc}.c-rich-text .list-square{list-style-type:square}.c-rich-text .list-none{list-style-type:none}.c-rich-text .list-circle{list-style-type:circle}.c-rich-text .list-decimal{list-style-type:decimal}.c-rich-text .list-upper-alpha{list-style-type:upper-alpha}.c-rich-text .list-lower-alpha{list-style-type:lower-alpha}.c-rich-text .list-upper-roman{list-style-type:upper-roman}.c-rich-text .list-lower-roman{list-style-type:lower-roman}.text-output ul li{padding-left:1.5em}.text-output ul li:before{display:inline-block;font-weight:700;margin-left:-1.5em;margin-right:.3em;text-align:right;white-space:nowrap;width:1.2em}.svg-component svg{max-height:100%;max-width:100%}.border1{border-bottom:3px solid rgba(0,0,0,.2)!important}.border2{border:2px solid rgba(0,0,0,.55)}.border3{border:solid rgba(0,0,0,.15);border-width:1px 1px 2px;padding:5px}.border4{border:solid rgba(0,0,0,.35);border-width:1px 1px 2px;padding:1px!important}.shadow1{box-shadow:0 10px 6px -6px #00000026}.shadow2{box-shadow:0 4px 3px #00000026,0 0 2px #00000026}.shadow3{box-shadow:0 10px 6px -6px #999}.shadow4{box-shadow:3px 3px 15px #212121a8}.shadow6{box-shadow:0 10px 1px #ddd,0 10px 20px #ccc}.background{background-color:unset!important}@keyframes progress-bar-animation{to{background-position:0 -3000px}}@keyframes gradient{0%{background-position:0 50%}50%{background-position:100% 50%}to{background-position:0 50%}}h1,h2,h3,h4,h5,h6{font-weight:500;margin:unset}p{margin:unset}.c-bullet-list,.c-faq,.c-heading,.c-image-feature,.c-paragraph,.c-sub-heading{word-break:break-word}h1:empty:after,h2:empty:after,h3:empty:after,h4:empty:after,h5:empty:after,h6:empty:after,p:empty:after{content:" "}h1:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,h2:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,h3:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,h4:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,h5:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,h6:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,p:has(>br:last-child):not(:has(>br:nth-of-type(2))):after{content:"\a";white-space:pre}.w-3-4{width:75%}.w-1-2{width:50%}.tabs-container{display:flex}@media screen and (max-width:767px){.nav-menu{display:none}.nav-menu-mobile{align-items:center;display:flex}#faq-popup{left:5px!important;margin-left:0!important;width:98%!important}.video-container{width:100%!important}.autoplay .vjs-big-play-button{display:none!important}.autoplay:hover .vjs-control-bar{display:flex!important}}.hvr-grow{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:var(--hover-easing,ease);vertical-align:middle}.hl-builder-hover-preview.hvr-grow,.hvr-grow:hover{transform:perspective(1px) translateZ(0) scale(var(--hover-scale,1.05))!important}.hvr-shrink{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:var(--hover-easing,ease);vertical-align:middle}.hl-builder-hover-preview.hvr-shrink,.hvr-shrink:hover{transform:perspective(1px) translateZ(0) scale(var(--hover-scale,.9))!important}@keyframes hvr-pulse{25%{transform:scale(var(--hover-scale,1.1))}75%{transform:scale(.9)}}.hvr-pulse{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);vertical-align:middle}.hl-builder-hover-preview.hvr-pulse,.hvr-pulse:hover{animation-delay:var(--hover-delay,0s);animation-duration:var(--hover-duration,1s);animation-iteration-count:infinite;animation-name:hvr-pulse;animation-timing-function:linear}.hvr-bounce-in{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.5s);transition-property:transform;vertical-align:middle}.hl-builder-hover-preview.hvr-bounce-in,.hvr-bounce-in:hover{transform:perspective(1px) translateZ(0) scale(var(--hover-scale,1.2))!important;transition-timing-function:cubic-bezier(.47,2.02,.31,-.36)}.hvr-rotate{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:var(--hover-easing,ease);vertical-align:middle}.hl-builder-hover-preview.hvr-rotate,.hvr-rotate:hover{transform:perspective(1px) translateZ(0) rotate(calc(var(--hover-angle, 5)*1deg))!important}.hvr-float{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:var(--hover-easing,ease-out);vertical-align:middle}.hl-builder-hover-preview.hvr-float,.hvr-float:hover{transform:perspective(1px) translateZ(0) translateY(calc(var(--hover-distance, 5)*-1px))!important}.hvr-skew-forward{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transform-origin:0 100%;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:var(--hover-easing,ease);vertical-align:middle}.hl-builder-hover-preview.hvr-skew-forward,.hvr-skew-forward:hover{transform:perspective(1px) translateZ(0) skew(calc(var(--hover-angle, 5)*-1deg))!important}@keyframes hvr-wobble-horizontal{16.65%{transform:translate(8px)}33.3%{transform:translate(-6px)}49.95%{transform:translate(4px)}66.6%{transform:translate(-2px)}83.25%{transform:translate(1px)}to{transform:translate(0)}}.hvr-wobble-horizontal{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);vertical-align:middle}.hl-builder-hover-preview.hvr-wobble-horizontal,.hvr-wobble-horizontal:hover{animation-delay:var(--hover-delay,0s);animation-duration:var(--hover-duration,1s);animation-iteration-count:1;animation-name:hvr-wobble-horizontal;animation-timing-function:ease-in-out}@keyframes hvr-buzz{50%{transform:translate(calc(var(--hover-distance, 3)*1px)) rotate(2deg)}to{transform:translate(calc(var(--hover-distance, 3)*-1px)) rotate(-2deg)}}.hvr-buzz{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);vertical-align:middle}.hl-builder-hover-preview.hvr-buzz,.hvr-buzz:hover{animation-delay:var(--hover-delay,0s);animation-duration:var(--hover-duration,.15s);animation-iteration-count:infinite;animation-name:hvr-buzz;animation-timing-function:linear}.hoverElevate{backface-visibility:hidden;box-shadow:0 0 0 0 transparent;transition:transform var(--hover-duration,.3s) var(--hover-easing,ease) var(--hover-delay,0s),box-shadow var(--hover-duration,.3s) var(--hover-easing,ease) var(--hover-delay,0s)}.hl-builder-hover-preview.hoverElevate,.hoverElevate:hover{box-shadow:0 8px 5px -5px #00000040!important;transform:translateY(calc(var(--hover-distance, 10)*-1px))!important}.hvr-fade{box-shadow:0 0 1px transparent;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:color;vertical-align:middle}.hvr-fade>*{position:relative;z-index:1}.hvr-fade:before{background:var(--hover-fill-color,#188bf6);content:"";inset:0;opacity:0;position:absolute;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:opacity;z-index:0}.hl-builder-hover-preview.hvr-fade,.hvr-fade:hover{color:#fff!important}.hvr-fade:hover:before{opacity:1!important}@keyframes hvr-fade-preview{0%{opacity:0}to{opacity:1}}.hl-builder-hover-preview.hvr-fade:before{animation:hvr-fade-preview var(--hover-duration,.3s) var(--hover-easing,ease-in-out) var(--hover-delay,0s) forwards!important}.hvr-sweep-to-right{box-shadow:0 0 1px transparent;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);transition-duration:var(--hover-duration,.3s);transition-property:color;vertical-align:middle}.hvr-sweep-to-right>*{position:relative;z-index:1}.hvr-sweep-to-right:before{background:var(--hover-fill-color,#188bf6);content:"";inset:0;position:absolute;transform:scaleX(0);transform-origin:0 50%;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:ease-out;z-index:0}.hl-builder-hover-preview.hvr-sweep-to-right,.hvr-sweep-to-right:hover{color:#fff!important}.hvr-sweep-to-right:hover:before{transform:scaleX(1)!important}@keyframes hvr-sweep-right-preview{0%{transform:scaleX(0)}to{transform:scaleX(1)}}.hl-builder-hover-preview.hvr-sweep-to-right:before{animation:hvr-sweep-right-preview var(--hover-duration,.3s) var(--hover-easing,ease-out) var(--hover-delay,0s) forwards!important}.hvr-sweep-to-bottom{box-shadow:0 0 1px transparent;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);transition-duration:var(--hover-duration,.3s);transition-property:color;vertical-align:middle}.hvr-sweep-to-bottom>*{position:relative;z-index:1}.hvr-sweep-to-bottom:before{background:var(--hover-fill-color,#188bf6);content:"";inset:0;position:absolute;transform:scaleY(0);transform-origin:50% 0;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:ease-out;z-index:0}.hl-builder-hover-preview.hvr-sweep-to-bottom,.hvr-sweep-to-bottom:hover{color:#fff!important}.hvr-sweep-to-bottom:hover:before{transform:scaleY(1)!important}@keyframes hvr-sweep-bottom-preview{0%{transform:scaleY(0)}to{transform:scaleY(1)}}.hl-builder-hover-preview.hvr-sweep-to-bottom:before{animation:hvr-sweep-bottom-preview var(--hover-duration,.3s) var(--hover-easing,ease-out) var(--hover-delay,0s) forwards!important}.hvr-radial-in{box-shadow:0 0 1px transparent;color:var(--hover-radial-in-rest-color,#fff)!important;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:color;vertical-align:middle}.hvr-radial-in>*{position:relative;z-index:1}.hvr-radial-in:before{background:var(--hover-fill-color,#188bf6);border-radius:100%;content:"";inset:0;position:absolute;transform:scale(2);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:ease-out;z-index:0}.hvr-radial-in:hover{color:var(--hover-radial-in-hover-color,inherit)!important}.hvr-radial-in:hover:before{transform:scale(0)!important}@keyframes hvr-radial-in-preview{0%{transform:scale(2)}to{transform:scale(0)}}.hl-builder-hover-preview.hvr-radial-in:before{animation:hvr-radial-in-preview var(--hover-duration,.3s) var(--hover-easing,ease-out) var(--hover-delay,0s) forwards!important}.hvr-bounce-to-top{box-shadow:0 0 1px transparent;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:color;vertical-align:middle}.hvr-bounce-to-top>*{position:relative;z-index:1}.hvr-bounce-to-top:before{background:var(--hover-fill-color,#188bf6);content:"";inset:0;position:absolute;transform:scaleY(0);transform-origin:50% 100%;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:cubic-bezier(.47,2.02,.31,-.36);z-index:0}.hl-builder-hover-preview.hvr-bounce-to-top,.hvr-bounce-to-top:hover{color:#fff!important}.hvr-bounce-to-top:hover:before{transform:scaleY(1)!important}@keyframes hvr-bounce-top-preview{0%{transform:scaleY(0)}to{transform:scaleY(1)}}.hl-builder-hover-preview.hvr-bounce-to-top:before{animation:hvr-bounce-top-preview var(--hover-duration,.3s) cubic-bezier(.47,2.02,.31,-.36) var(--hover-delay,0s) forwards!important}@keyframes hvr-ripple-out{to{inset:-12px;opacity:0}}.hvr-ripple-out{box-shadow:0 0 1px transparent;display:inline-block;position:relative;transform:perspective(1px) translateZ(0);vertical-align:middle}.hvr-ripple-out:before{animation-delay:var(--hover-delay,0s);animation-duration:var(--hover-duration,1s);border:var(--hover-border-thickness,2px) solid var(--hover-border-color,#188bf6);content:"";inset:0;position:absolute}.hl-builder-hover-preview.hvr-ripple-out:before,.hvr-ripple-out:hover:before{animation-name:hvr-ripple-out}.hvr-outline-in{box-shadow:0 0 1px transparent;display:inline-block;position:relative;transform:perspective(1px) translateZ(0);vertical-align:middle}.hvr-outline-in:before{border:var(--hover-border-thickness,4px) solid var(--hover-border-color,#188bf6);content:"";inset:-16px;opacity:0;pointer-events:none;position:absolute;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:top,right,bottom,left,opacity}.hl-builder-hover-preview.hvr-outline-in:before,.hvr-outline-in:hover:before{inset:-8px!important;opacity:1!important}.hvr-underline-from-center{box-shadow:0 0 1px transparent;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);vertical-align:middle}.hvr-underline-from-center>*{position:relative;z-index:1}.hvr-underline-from-center:before{background:var(--hover-border-color,#188bf6);bottom:0;content:"";height:var(--hover-border-thickness,4px);left:51%;position:absolute;right:51%;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:left,right;transition-timing-function:ease-out;z-index:0}.hl-builder-hover-preview.hvr-underline-from-center:before,.hvr-underline-from-center:hover:before{left:0!important;right:0!important}.hvr-shadow{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition:box-shadow var(--hover-duration,.3s) var(--hover-easing,ease-in-out) var(--hover-delay,0s);vertical-align:middle}.hl-builder-hover-preview.hvr-shadow,.hvr-shadow:focus,.hvr-shadow:hover{box-shadow:0 var(--hover-spread,10px) var(--hover-blur,10px) calc(var(--hover-spread, 10px)*-1) var(--hover-shadow-color,rgba(24,139,246,.55))!important}.hvr-glow{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition:box-shadow var(--hover-duration,.3s) var(--hover-easing,ease-in-out) var(--hover-delay,0s);vertical-align:middle}.hl-builder-hover-preview.hvr-glow,.hvr-glow:focus,.hvr-glow:hover{box-shadow:0 0 var(--hover-blur,8px) var(--hover-spread,0) var(--hover-shadow-color,rgba(24,139,246,.55))!important}.hvr-box-shadow-outset{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:box-shadow;vertical-align:middle}.hl-builder-hover-preview.hvr-box-shadow-outset,.hvr-box-shadow-outset:active,.hvr-box-shadow-outset:focus,.hvr-box-shadow-outset:hover{box-shadow:2px 2px var(--hover-blur,10px) var(--hover-spread,5px) var(--hover-shadow-color,rgba(24,139,246,.55))!important}@media(hover:none),(max-width:1024px){.hl-builder-hover-preview.hoverElevate,.hl-builder-hover-preview.hvr-bounce-in,.hl-builder-hover-preview.hvr-box-shadow-outset,.hl-builder-hover-preview.hvr-buzz,.hl-builder-hover-preview.hvr-float,.hl-builder-hover-preview.hvr-glow,.hl-builder-hover-preview.hvr-grow,.hl-builder-hover-preview.hvr-pulse,.hl-builder-hover-preview.hvr-rotate,.hl-builder-hover-preview.hvr-shadow,.hl-builder-hover-preview.hvr-shrink,.hl-builder-hover-preview.hvr-skew-forward,.hl-builder-hover-preview.hvr-wobble-horizontal,.hoverElevate:hover,.hvr-bounce-in:hover,.hvr-box-shadow-outset:active,.hvr-box-shadow-outset:focus,.hvr-box-shadow-outset:hover,.hvr-buzz:hover,.hvr-float:hover,.hvr-glow:focus,.hvr-glow:hover,.hvr-grow:hover,.hvr-pulse:hover,.hvr-rotate:hover,.hvr-shadow:focus,.hvr-shadow:hover,.hvr-shrink:hover,.hvr-skew-forward:hover,.hvr-wobble-horizontal:hover{animation:none!important;box-shadow:none!important;transform:none!important}.hl-builder-hover-preview.hvr-bounce-to-top:before,.hl-builder-hover-preview.hvr-fade:before,.hl-builder-hover-preview.hvr-outline-in:before,.hl-builder-hover-preview.hvr-ripple-out:before,.hl-builder-hover-preview.hvr-sweep-to-bottom:before,.hl-builder-hover-preview.hvr-sweep-to-right:before,.hl-builder-hover-preview.hvr-underline-from-center:before,.hvr-bounce-to-top:hover:before,.hvr-fade:hover:before,.hvr-outline-in:hover:before,.hvr-ripple-out:hover:before,.hvr-sweep-to-bottom:hover:before,.hvr-sweep-to-right:hover:before,.hvr-underline-from-center:hover:before{animation:none!important;opacity:0!important;transform:scale(0)!important}.hvr-radial-in:hover:before{animation:none!important;opacity:1!important;transform:scale(2)!important}}.hl-entrance-running{pointer-events:none!important}.hl-entrance-parent-clipping{overflow:hidden}[data-animation-done="1"]:not(.hl-entrance-running){opacity:1!important}@media(prefers-reduced-motion:reduce){.hoverElevate,.hoverElevate.hl-builder-hover-preview,.hoverElevate:hover,[class*=hvr-],[class*=hvr-].hl-builder-hover-preview,[class*=hvr-]:hover{animation:none!important;transform:none!important;transition:none!important}}</style><style>@font-face{font-display:swap;font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:400;src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.eot);src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.woff2) format("woff2"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.woff) format("woff"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.ttf) format("truetype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-display:swap;font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:900;src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.eot);src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.woff2) format("woff2"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.woff) format("woff"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.ttf) format("truetype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:Font Awesome\ 5 Free}.fa,.fas{font-weight:900}@font-face{font-display:swap;font-family:Font Awesome\ 5 Brands;font-style:normal;font-weight:400;src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.eot);src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.woff2) format("woff2"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.woff) format("woff"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.ttf) format("truetype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:Font Awesome\ 5 Brands;font-weight:400}</style><style>:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{animation-duration:1s;animation-duration:var(--animate-duration);animation-fill-mode:both}@media(prefers-reduced-motion:reduce),print{.animate__animated{animation-duration:1ms!important;animation-iteration-count:1!important;transition-duration:1ms!important}.animate__animated[class*=Out]{opacity:0}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{animation-name:fadeIn}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUp{animation-name:fadeInUp}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDown{animation-name:fadeInDown}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRight{animation-name:fadeInRight}@keyframes slideInUp{0%{opacity:0;transform:translate3d(0,100%,0);visibility:visible}to{opacity:1;transform:translateZ(0)}}.animate__slideInUp{animation-name:slideInUp}@keyframes slideInDown{0%{opacity:0;transform:translate3d(0,-100%,0);visibility:visible}to{opacity:1;transform:translateZ(0)}}.animate__slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{opacity:0;transform:translate3d(-100%,0,0);visibility:visible}to{opacity:1;transform:translateZ(0)}}.animate__slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{opacity:0;transform:translate3d(100%,0,0);visibility:visible}to{opacity:1;transform:translateZ(0)}}.animate__slideInRight{animation-name:slideInRight}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*.75);animation-name:bounceIn}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}75%{transform:translate3d(0,10px,0) scaleY(.95)}90%{transform:translate3d(0,-5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInUp{animation-name:bounceInUp}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;transform:translate3d(0,25px,0) scaleY(.9)}75%{transform:translate3d(0,-10px,0) scaleY(.95)}90%{transform:translate3d(0,5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(25px,0,0) scaleX(1)}75%{transform:translate3d(-10px,0,0) scaleX(.98)}90%{transform:translate3d(5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px,0,0) scaleX(1)}75%{transform:translate3d(10px,0,0) scaleX(.98)}90%{transform:translate3d(-5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInRight{animation-name:bounceInRight}@keyframes flip{0%{animation-timing-function:ease-out;opacity:0;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)}40%{animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)}50%{animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)}80%{animation-timing-function:ease-in;transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0)}to{animation-timing-function:ease-in;opacity:1;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0)}}.animate__animated.animate__flip{animation-name:flip;backface-visibility:visible}@keyframes flipInX{0%{animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateX(90deg)}40%{animation-timing-function:ease-in;transform:perspective(400px) rotateX(-20deg)}60%{opacity:1;transform:perspective(400px) rotateX(10deg)}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.animate__flipInX{animation-name:flipInX;backface-visibility:visible!important}@keyframes flipInY{0%{animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateY(90deg)}40%{animation-timing-function:ease-in;transform:perspective(400px) rotateY(-20deg)}60%{opacity:1;transform:perspective(400px) rotateY(10deg)}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.animate__flipInY{animation-name:flipInY;backface-visibility:visible!important}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.animate__rollIn{animation-name:rollIn}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{animation-name:zoomIn}@keyframes lightSpeedInLeft{0%{opacity:0;transform:translate3d(-100%,0,0) skew(30deg)}60%{opacity:1;transform:skew(-20deg)}80%{transform:skew(5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInLeft{animation-name:lightSpeedInLeft;animation-timing-function:ease-out}@keyframes lightSpeedInRight{0%{opacity:0;transform:translate3d(100%,0,0) skew(-30deg)}60%{opacity:1;transform:skew(20deg)}80%{transform:skew(-5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInRight{animation-name:lightSpeedInRight;animation-timing-function:ease-out}</style><style>.hl-cookie-consent-banner{align-items:center;display:flex;gap:14px;justify-content:space-between;padding:24px;width:100%;z-index:100}.hl-cookie-consent-banner .banner-text-container{line-height:22px}.hl-cookie-consent-banner .banner-actions-container{justify-content:flex-end}.hl-cookie-consent-banner .learn-more{font-weight:600}.hl-cookie-consent-banner .button{align-items:center;border-radius:4px;border-width:1px;box-shadow:0 1px 2px #1018280d;box-sizing:border-box;cursor:pointer;display:flex;flex-direction:row;gap:8px;justify-content:center;padding:8px 14px}.hl-cookie-consent-banner .ok{flex-grow:unset}.hl-cookie-consent-banner .button.customize,.hl-cookie-consent-banner .button.primary,.hl-cookie-consent-banner .button.secondary{border:none!important}.hl-cookie-consent-banner .flex{display:flex}@media only screen and (max-width:600px){.hl-cookie-consent-banner{padding:4%!important}.hl-cookie-consent-banner .banner-actions-container{justify-content:center!important;margin-bottom:15px;margin-top:15px;width:100%!important}.hl-cookie-consent-banner .banner-text-container{margin-bottom:12px;text-align:center!important;width:100%!important}.bottom-banner .banner-text-container,.top-banner .banner-text-container{max-width:100%!important}.hl-cookie-consent-banner .banner-text{text-align:justify}.hl-cookie-consent-banner .flex{align-items:center;display:flex;flex-direction:column}.hl-cookie-consent-banner .button{margin-left:0!important;padding:10px 14px;width:100%}.bottom-banner,.top-banner{flex-direction:column}.position-left,.position-right{bottom:0!important;left:unset!important;right:unset!important}.bottom-banner .banner-actions-container,.top-banner .banner-actions-container{gap:10px}}.bottom-banner{bottom:0;position:fixed}.bottom-banner .banner-text-container,.top-banner .banner-text-container{max-width:70%}.bottom-banner .banner-actions-container,.top-banner .banner-actions-container{flex-grow:1;gap:14px}.position-left .banner-actions-container,.position-right .banner-actions-container{justify-content:space-between!important}.position-left .button,.position-right .button{flex-grow:1}.top-banner{position:fixed;top:0}.popup-banner{align-items:unset!important;flex-direction:column;position:fixed}.popup-banner .banner-actions-container{flex-grow:1;gap:10px;width:100%!important}.position-left{bottom:20px;left:20px;max-width:450px}.position-right{bottom:20px;max-width:450px;right:20px}.position-center{bottom:20px;left:50%;right:unset;transform:translate(-50%);width:90%}.position-center .button{flex-grow:unset!important}</style><style>.nav-menu-ul{list-style-type:none;margin:0;padding:0}.mr-2{margin-right:.5rem}.justify-start{justify-content:flex-start}.flex-row{flex-direction:row}.py-2{padding-bottom:.5rem;padding-top:.5rem}.px-15{padding-right:.375rem}.pl-15,.px-15{padding-left:.375rem}.rounded-sm{border-radius:.125rem}.relative{position:relative}.text-nowrap{white-space:nowrap!important}.absolute{position:absolute}.min-w-24{min-width:6rem}.bottom-0{bottom:0}.py-4{padding-bottom:1rem;padding-top:1rem}.justify-center{justify-content:center}.w-7{width:1.75rem}.h-7{height:1.75rem}.w-5{width:1.25rem}.h-5{height:1.25rem}.no-inherit{background-color:initial;color:initial;font-family:revert;font-weight:400;letter-spacing:normal;line-height:normal;text-align:initial;text-transform:none}.mt-1{margin-top:.25rem}.mr-1{margin-right:.25rem}.cart-padding .items-text{padding-right:0}.touch-target{min-height:48px;min-width:48px}</style><style>.image-container[data-v-cbdc8153]{display:flex;justify-content:center}.carousel[data-v-cbdc8153]{overflow:hidden;position:relative}</style><style>.carousel__slides{display:flex!important;height:100%;position:relative;z-index:1}.carousel__slide{flex:0 0 100%}.c-image-slider .carousel__slide{height:100%;overflow:hidden;padding:0;position:relative;width:100%}.carousel__slide-image{-o-object-fit:cover!important;object-fit:cover!important}.carousel__slide .hl-image-picture{height:100%}</style><style>.social-icons-container{display:flex;flex-wrap:wrap;-webkit-font-smoothing:auto!important}.social-icon{color:inherit;cursor:pointer;display:block;padding:1rem;text-align:center;text-decoration:none}.social-icon p{margin-top:8px}</style><style>.testimonial-modal-overlay{align-items:center;background:#0000004d;display:flex;height:100vh;justify-content:center;left:0;position:fixed;top:0;width:100vw;z-index:10000}.testimonial-modal-content{align-items:stretch;background:none;display:flex;flex-direction:column;max-height:600px;max-width:540px;width:100%}.testimonial-modal-close{align-items:center;background:#fff;border:none;border-radius:50%;cursor:pointer;display:flex;height:36px;justify-content:center;position:absolute;right:20px;top:20px;transition:background .15s;width:36px;z-index:2}.testimonial-modal-close-icon{color:#222;height:22px;width:22px}@media(max-width:768px){.testimonial-modal-content{border-radius:10px;max-width:98vw}.testimonial-modal-close{right:10px;top:10px}}</style><style>.mega-menu-link,.mega-menu-link:active,.mega-menu-link:hover{color:inherit;text-decoration:inherit}</style><style>.pdp-modal-overlay{align-items:center;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);background:#344054b3;display:flex;justify-content:center;inset:0;position:fixed;z-index:9999}.pdp-modal-container{background:#fff;border-radius:12px;box-shadow:0 20px 60px #00000026;display:flex;flex-direction:column;max-height:min(640px,85vh);max-width:1024px;position:relative;width:90%}.pdp-modal-container--mobile{border-radius:0;height:100%;max-height:100%;max-width:100%;width:100%}.pdp-modal-close{align-items:center;background:transparent;border:none;cursor:pointer;display:flex;height:32px;justify-content:center;padding:0;position:absolute;right:-8px;top:-8px;width:32px;z-index:10}.pdp-modal-scroll{border-radius:12px;flex:1;font-family:var(--contentfont,inherit);font-size:14px;margin-top:24px;overflow-x:hidden;overflow-y:auto;padding:12px}.pdp-modal-container--mobile .pdp-modal-scroll{padding:12px}@media(max-width:1024px){.pdp-modal-overlay{align-items:flex-start;box-sizing:border-box;padding:8px 12px 12px}.pdp-modal-container{border-radius:0;height:100%;max-height:100%;max-width:100%;width:100%}.pdp-modal-container .pdp-modal-scroll{padding:12px}}.pdp-modal-scroll .c-product-details--sticky{position:static!important}.pdp-modal-scroll .hl-product-image-container{height:auto!important;position:static!important;top:auto!important}.pdp-modal-scroll .product-detail-container{flex-wrap:wrap!important;height:auto!important}.pdp-modal-scroll .c-product-details{min-width:0;overflow-wrap:break-word;word-break:break-word}.pdp-modal-scroll .ecomm-price-desktop-container .flex{flex-wrap:wrap}.pdp-modal-scroll>div{container-type:inline-size;width:100%}</style><style>.drawer{visibility:hidden}.drawer.is-visible{visibility:visible}.drawer.is-open .drawer__overlay{opacity:.5}.drawer.is-open .drawer__content{transform:translate(0)}.drawer__overlay{background-color:#000;left:0;opacity:0;transition-property:opacity;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:200}.drawer__content,.drawer__overlay{bottom:0;position:fixed;right:0;top:0;width:100%}.drawer__content{box-shadow:0 2px 6px #777;display:flex;flex-direction:column;height:100%;overflow:auto;transform:translate(100%);transition-property:transform;transition:all .45s cubic-bezier(.29,.63,.44,1);z-index:9999}</style><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Inter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CInter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CRoboto:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/zC2SjMv-.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/C4PAUnY3.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/C7cwXeKO.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/oeh7tU1a.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/D8xDZqa6.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/C0jga0MZ.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/-r5_IDCF.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/GtuyP1-B.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/yrB7dV05.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/DRNKrJGC.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/R0a7rjoH.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/DbwuZ0xl.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/BMMjs8iz.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/m8rq7opm.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/hMuZO8Vo.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/BLb92b2S.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/OOAVvhnF.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/C3e4t58V.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/DpGxo2Of.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/Ck-XJGPY.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/CkDsxuUU.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/DKeuBCMA.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/Dh95PCnU.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/CeDIG8Cl.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/mpPvEb5C.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/Y3EHJ7fu.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/B8Q6Pi9v.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/aJr9jhuc.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/DYa7OZHt.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/C0VERPQs.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/BXpxoPyz.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/CenvAvwo.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/Bnu4K8Uu.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/BZBlyZ8k.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/CkE1Z6Iz.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/C4trhqWD.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/BGUphCfU.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/DEl8Z1Zb.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/CIpySqQa.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/B7rL4XpU.js"><script type="module" src="https://stcdn.leadconnectorhq.com/_preview/zC2SjMv-.js" crossorigin></script><link rel="dns-prefetch" href="https://services.leadconnectorhq.com"><link rel="icon" href="https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/6963d6ed98efbdd270eb5bac.png"><link rel="canonical" href="https://gestiontb.ca/logements-a-louer"><meta name="facebook-domain-verification" content="1mqw2orse1jc8zk8g9xnhm1s17u4s0"><script type="application/ld+json">{
85 +</style><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CInter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CRoboto:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap" media="print" onload="this.media='all'"><style>:root{--sticky-header-height:0px}[id]{scroll-margin-top:var(--sticky-header-height)}.flex{display:flex}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.flex-grow{flex-grow:9999}.align-center{align-items:center}.h-full{height:100%}.max-w-400{max-width:400px}.text-right{text-align:right}.d-grid{display:grid}.px-0{padding-left:0!important;padding-right:0!important}.gap-1{gap:.3rem}.items-end{align-items:flex-end}.relative{position:relative}.gap-2{gap:.625rem}.mt-20{margin-top:20px}.mt-8{margin-top:32px}.ml-3{margin-left:.75rem}.mr-10{margin-right:10px}.mt-4{margin-top:1rem}.mb-4{margin-bottom:1rem}.w-100{width:100%}.h-100{height:100%}.w-50{width:50%}.w-25{width:25%}.mw-100{max-width:100%}.noBorder{border:none!important}.iti__flag{background-image:url(https://stcdn.leadconnectorhq.com/intl-tel-input/17.0.12/img/flags.png)}.pointer{cursor:pointer}@media(min-resolution:192dpi){.iti__flag{background-image:url(https://stcdn.leadconnectorhq.com/intl-tel-input/17.0.12/img/flags@2x.png)}}.iti__country{display:flex;justify-content:space-between}.iti__hide{display:none}@media(min-width:768px){.hl_wrapper.nav-shrink .hl_wrapper--inner.page-creator,body{padding-top:0}.hl_page-creator--menu{left:0;top:0;z-index:10}.hl_wrapper{padding-left:0}}@media(min-width:1200px){.hl_wrapper.nav-shrink{padding-left:0!important}}html body .hl_wrapper{height:100vh;overflow:hidden}body{margin:0;-webkit-font-smoothing:antialiased}img{border-style:none;vertical-align:middle}.bg-fixed{z-index:-1}.progress-outer{background-color:#f5f5f5;border-radius:inherit;box-shadow:inset 0 1px 2px #0000001a;font-size:14px;height:35px;line-height:36px;overflow:hidden;padding-bottom:0;padding-top:0;width:100%}.progress-inner{box-shadow:inset 0 -1px #00000026;color:#fff;float:left;font-size:14px;height:100%;padding-left:10px;padding-right:10px;transition:width .6s ease;width:0}.progress0{width:0}.progress10{width:10%}.progress20{width:20%}.progress30{width:30%}.progress40{width:40%}.progress50{width:50%}.progress60{width:60%}.progress70{width:70%}.progress80{width:80%}.progress90{width:90%}.progress100{width:100%}.progressbarOffsetWhite{background:#f5f5f5}.progressbarOffsetTransparentWhite{background-color:#ffffff80}.progressbarOffsetBlack{background:#333}.progressbarOffsetTransparentBlack{background-color:#7e7e7e80}.text-white{color:#fff}.text-bold{font-weight:700}.text-italic{font-style:italic}.text-bold-italic{font-style:italic;font-weight:700}.progressbarSmall{font-size:14px;height:35px;line-height:36px}.progressbarMedium{font-size:19px;height:45px;line-height:45px}.progressbarLarge{font-size:21px;height:65px;line-height:65px}.recaptcha-container{margin-bottom:1em}.recaptcha-container p{color:red;margin-top:1em}.button-recaptcha-container div:first-child{height:auto!important;width:100%!important}.card-el-error-msg{align-items:center;color:#e25950;display:flex;font-size:13px;justify-content:flex-start;padding:10px 0;text-align:center}.card-el-error-msg svg{color:#f87171;margin-right:2px}.hl-faq-child-heading{border:none;cursor:pointer;justify-content:space-between;outline:none;padding:15px;width:100%}.hl-faq-child-head,.hl-faq-child-heading{align-items:center;display:flex}.v-enter-active,.v-leave-active{transition:opacity .2s ease-out}.v-enter-from,.v-leave-to{opacity:0}.faq-separated-child{margin-bottom:10px}.hl-faq-child-panel img{border-radius:15px;cursor:pointer}.hl-faq-child-heading-icon.left{margin-right:1em}.expand-collapse-all-button{background-color:transparent;border:1px solid #d1d5db;border-radius:15px;color:#3b82f6;cursor:pointer;font-size:12px;font-weight:400;line-height:16px;margin:1em 0;padding:5px 15px}.hl-faq-child-panel{transition:padding .2s ease}.v-spinner .v-moon1{position:relative}.v-spinner .v-moon1,.v-spinner .v-moon2{animation:v-moonStretchDelay .6s linear 0s infinite;animation-fill-mode:forwards}.v-spinner .v-moon2{opacity:.8;position:absolute}.v-spinner .v-moon3{opacity:.1}@keyframes v-moonStretchDelay{to{transform:rotate(1turn)}}.generic-error-message{color:red;font-weight:500;margin-top:.5rem;text-align:center}#faq-overlay{background:var(--overlay);height:100vh;opacity:.8;width:100vw}#faq-overlay,#faq-popup{position:fixed;z-index:1000}#faq-popup{background:#fff;height:auto;left:50%;margin-left:-250px;margin-top:-250px;top:50%;width:500px}#popupclose{cursor:pointer;float:right;padding:10px}.popupcontent{height:auto!important;width:100%!important}#button{cursor:pointer}.dark{background-color:#000}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.spotlight{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);bottom:-30vh;filter:blur(20vh);height:40vh}.z-10{z-index:10}.right-0{right:0}.left-0{left:0}.fixed{position:fixed}.text-black{--tw-text-opacity:1;color:rgba(0,0,0,var(--tw-text-opacity))}.overflow-hidden{overflow:hidden}.min-h-screen{min-height:100vh}.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.place-content-center{place-content:center}.grid{display:grid}.z-20{z-index:20}.max-w-520px{max-width:520px}.mb-8{margin-bottom:2rem}.text-8xl{font-size:6rem;line-height:1}.font-medium{font-weight:500}.mb-16{margin-bottom:4rem}.leading-tight{line-height:1.25}.text-xl{font-size:1.25rem;line-height:1.75rem}.font-light{font-weight:300}@media(min-width:640px){.sm-text-10xl{font-size:10rem;line-height:1}.sm-text-4xl{font-size:2.25rem;line-height:2.5rem}.sm-px-0{padding-left:0;padding-right:0}}.full-center{background-position:50%!important;background-repeat:repeat!important;background-size:cover!important}.fill-width{background-size:100% auto!important}.fill-width,.fill-width-height{background-repeat:no-repeat!important}.fill-width-height{background-size:100% 100%!important}.no-repeat{background-repeat:no-repeat!important}.repeat-x{background-repeat:repeat-x!important}.repeat-y{background-repeat:repeat-y!important}.repeat-x-fix-top{background-position:top!important;background-repeat:repeat-x!important}.repeat-x-fix-bottom{background-position:bottom!important;background-repeat:repeat-x!important}#overlay{height:100%;inset:0;opacity:0;overflow-y:scroll;position:fixed;transition:opacity .3s ease;width:100%;z-index:999;-webkit-overflow-scrolling:touch}#overlay.show{opacity:1}.popup-body{background-color:#fff;height:auto;left:50%;min-height:180px;position:absolute;top:10%;transition:transform .25s ease-in-out}.popup-body,.popup-body.show{transform:translate(-50%)}.closeLPModal{cursor:pointer;position:absolute;right:-10px;top:-10px;z-index:21}.settingsPModal{font-size:18px;left:40%;padding:10px;position:absolute;top:-40px;width:32px}.c-section>.inner{display:flex;flex-direction:column;justify-content:center;margin:auto;z-index:2}.c-row>.inner{display:flex;width:100%}.c-column>.inner{display:flex;flex-direction:column;height:100%;justify-content:inherit;width:100%!important}.c-wrapper{position:relative}.previewer{--vw:100vh/100;height:calc(100vh - 170px);margin:auto;overflow:scroll;overflow-x:hidden;overflow-y:scroll;width:100%}.c-element{position:relative}.c-column{flex:1}.c-column,.c-row{position:relative}p+p{margin-top:auto}.hl_page-creator--row.active{border-color:#188bf6}.flip-list-move{transition:transform .5s}.page-wrapper .sortable-ghost:before{background:#188bf6!important;border-radius:4px;content:"";height:4px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:100%}.page-wrapper .sortable-ghost{border:none!important;position:relative}.active-drop-area:before{color:gray;content:"";font-size:12px;left:50%;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%)}.active-drop-area{border:1px dashed grey}.active-drop-area.is-empty{min-height:60px}.empty-component{align-items:center;border:1px dashed #d7dde9;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%;z-index:2}.empty-component,.empty-component-min-height{min-height:100px;pointer-events:none}.dividerContainer{width:100%}.items-center{align-items:center}.font-semibold{font-weight:600}.text-2xl{font-size:1.5rem}.text-sm{font-size:.875rem}.w-full{width:100%}.mr-2{margin-right:.5rem}.mt-2{margin-top:.5rem}.justify-between{justify-content:space-between}.text-lg{font-size:1.125rem}.font-base{font-weight:400}.justify-end{justify-content:flex-end}.justify-center{justify-content:center!important}.text-center{text-align:center}.centered{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.mx-auto{margin:0 auto}.default-cursor{cursor:default!important}</style><style>@media only screen and (max-width:767px){.c-row>.inner{flex-direction:column}.desktop-only{display:none}.c-column,.c-row{width:100%!important}.c-column,.c-column>.inner,.c-row>.inner,.c-section,.c-section>.inner{padding-left:0!important;padding-right:0!important}.c-column,.c-column>.inner,.c-row{margin-left:0!important;margin-right:0!important}.c-row{padding-left:10px!important;padding-right:10px!important}}@media only screen and (min-width:1024.02px){.mobile-only{display:none}}@media only screen and (min-width:768px)and (max-width:1024px){.tablet-hide{display:none}}.c-button button{outline:none;position:relative}.fa,.fab,.fal,.far,.fas{-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.c-column{flex:1 1 auto!important}.c-column>.inner.horizontal>div{flex:1}.c-row>.inner{display:flex;width:100%}.c-nested-column .c-row>.inner{width:100%!important}.c-nested-column .inner{border:none!important}.bgCover.bg-fixed:before{background-attachment:fixed!important;background-position:50%!important;background-repeat:repeat!important;background-size:cover!important;-webkit-background-size:cover!important}@supports (-webkit-touch-callout:inherit){.bgCover.bg-fixed:before{background-attachment:scroll!important}}.bgCover100.bg-fixed:before{background-size:100% auto!important;-webkit-background-size:100% auto!important}.bgCover100.bg-fixed:before,.bgNoRepeat.bg-fixed:before{background-repeat:no-repeat!important}.bgRepeatX.bg-fixed:before{background-repeat:repeat-x!important}.bgRepeatY.bg-fixed:before{background-repeat:repeat-y!important}.bgRepeatXTop.bg-fixed:before{background-position:top!important;background-repeat:repeat-x!important}.bgRepeatXBottom.bg-fixed:before{background-position:bottom!important;background-repeat:repeat-x!important}.bgCover{background-attachment:fixed!important;background-position:50%!important;background-repeat:repeat!important;background-size:cover!important;-webkit-background-size:cover!important}@supports (-webkit-touch-callout:inherit){.bgCover{background-attachment:scroll!important}}.bgCover100{background-size:100% auto!important;-webkit-background-size:100% auto!important}.bgCover100,.bgNoRepeat{background-repeat:no-repeat!important}.bgRepeatX{background-repeat:repeat-x!important}.bgRepeatY{background-repeat:repeat-y!important}.bgRepeatXTop{background-position:top!important}.bgRepeatXBottom,.bgRepeatXTop{background-repeat:repeat-x!important}.bgRepeatXBottom{background-position:bottom!important}.cornersTop{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.cornersBottom{border-top-left-radius:0!important;border-top-right-radius:0!important}.radius0{border-radius:0}.radius1{border-radius:1px}.radius2{border-radius:2px}.radius3{border-radius:3px}.radius4{border-radius:4px}.radius5{border-radius:5px}.radius10{border-radius:10px}.radius15{border-radius:15px}.radius20{border-radius:20px}.radius25{border-radius:25px}.radius50{border-radius:50px}.radius75{border-radius:75px}.radius100{border-radius:100px}.radius125{border-radius:125px}.radius150{border-radius:150px}.borderTopBottom{border-bottom-color:#000000b3;border-left:none!important;border-right:none!important;border-top-color:#000000b3}.borderTop{border-bottom:none!important;border-top-color:#000000b3}.borderBottom,.borderTop{border-left:none!important;border-right:none!important}.borderBottom{border-bottom-color:#000000b3;border-top:none!important}.borderFull{border-color:#000000b3}@keyframes rocking{0%{transform:rotate(0)}25%{transform:rotate(0)}50%{transform:rotate(2deg)}75%{transform:rotate(-2deg)}to{transform:rotate(0)}}.buttonRocking{animation:rocking 2s infinite;animation-timing-function:ease-out;transition:.2s}.buttonPulseGlow{animation:pulseGlow 2s infinite;animation-timing-function:ease-in-out}@keyframes pulseGlow{0%{box-shadow:0 0 #fff0}25%{box-shadow:0 0 2.5px 1px #ffffff40}50%{box-shadow:0 0 5px 2px #ffffff80}85%{box-shadow:0 0 5px 5px #fff0}to{box-shadow:0 0 #fff0}}.buttonBounce{animation:bounce 1.5s infinite;animation-timing-function:ease-in;transition:.2s}@keyframes bounce{15%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}35%{box-shadow:0 8px 5px -5px #00000040;transform:translateY(-35%)}45%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}55%{box-shadow:0 5px 4px -4px #00000040;transform:translateY(-20%)}70%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}80%{box-shadow:0 4px 3px -3px #00000040;transform:translateY(-10%)}90%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}95%{box-shadow:0 2px 3px -3px #00000040;transform:translateY(-2%)}99%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}to{box-shadow:0 0 0 0 transparent;transform:translateY(0)}}@keyframes elevate{0%{box-shadow:0 0 0 0 transparent;transform:translateY(0)}to{box-shadow:0 8px 5px -5px #00000040;transform:translateY(-10px)}}.buttonElevate:hover{animation:elevate .2s forwards}.buttonElevate{box-shadow:0 0 0 0 transparent;transition:.2s}.buttonWobble{transition:.3s}.buttonWobble:hover{animation:wobble .5s 1;animation-timing-function:ease-in-out}@keyframes wobble{0%{transform:skew(0)}25%{transform:skew(10deg)}50%{transform:skew(0)}75%{transform:skew(-10deg)}to{transform:skew(0)}}.image-container img{max-width:100%;vertical-align:middle}.sub-text ::-moz-placeholder{color:#000;opacity:1}.sub-text ::placeholder{color:#000;opacity:1}.image-container{height:100%;width:100%}.shadow5inner{box-shadow:inset 0 1px 3px #0000000d}.shadow10inner{box-shadow:inset 0 1px 5px #0000001a}.shadow20inner{box-shadow:inset 0 1px 5px #0003}.shadow30inner{box-shadow:inset 0 2px 5px 2px #0000004d}.shadow40inner{box-shadow:inset 0 2px 5px 2px #0006}.shadow5{box-shadow:0 1px 3px #0000000d}.shadow10{box-shadow:0 1px 5px #0000001a}.shadow20{box-shadow:0 1px 5px #0003}.shadow30{box-shadow:0 2px 5px 2px #0000004d}.shadow40{box-shadow:0 2px 5px 2px #0006}.sub-heading-button{color:#fff;font-weight:400;line-height:normal;opacity:.8;text-align:center}.wideSection{max-width:1120px}.midWideSection,.wideSection{margin-left:auto!important;margin-right:auto!important}.midWideSection{max-width:960px}.midSection{margin-left:auto!important;margin-right:auto!important;max-width:720px}.c-section>.inner{margin-left:auto;margin-right:auto;max-width:1170px;width:100%}.c-column{padding-left:15px;padding-right:15px}.feature-img-circle img,.img-circle,.img-circle img{border-radius:50%!important}.feature-img-round-corners img,.img-round-corners,.img-round-corners img{border-radius:5px}.feature-image-dark-border img,.image-dark-border{border:3px solid rgba(0,0,0,.7)}.feature-image-white-border img,.image-white-border{border:3px solid #fff}.img-grey,.img-grey img{filter:grayscale(100%);filter:gray;-webkit-transition:all .6s ease}.button-shadow1{box-shadow:0 1px 5px #0003}.button-shadow2{box-shadow:0 1px 5px #0006}.button-shadow3{box-shadow:0 1px 5px #000000b3}.button-shadow4{box-shadow:0 8px 1px #0000001a}.button-shadow5{box-shadow:0 0 25px #0003,0 0 15px #0003,0 0 3px #0006}.button-shadow6{box-shadow:0 0 25px #0006,0 0 15px #fff3,0 0 3px #fff6}.button-shadow-sharp1{box-shadow:inset 0 1px #fff3}.button-shadow-sharp2{box-shadow:inset 0 0 0 1px #fff3}.button-shadow-sharp3{box-shadow:inset 0 0 0 2px #fff3}.button-shadow-highlight{box-shadow:none}.button-shadow-highlight:hover{box-shadow:inset 0 0 #ffffff38,inset 0 233px 233px #ffffff1f}.button-flat-line{background-color:transparent!important;border-width:2px}.button-vp-5{padding-bottom:5px!important;padding-top:5px!important}.button-vp-10{padding-bottom:10px!important;padding-top:10px!important}.button-vp-15{padding-bottom:15px!important;padding-top:15px!important}.button-vp-20{padding-bottom:20px!important;padding-top:20px!important}.button-vp-25{padding-bottom:25px!important;padding-top:25px!important}.button-vp-30{padding-bottom:30px!important;padding-top:30px!important}.button-vp-40{padding-bottom:40px!important;padding-top:40px!important}.button-vp-0{padding-bottom:0!important;padding-top:0!important}.button-hp-5{padding-left:5px!important;padding-right:5px!important}.button-hp-10{padding-left:10px!important;padding-right:10px!important}.button-hp-15{padding-left:15px!important;padding-right:15px!important}.button-hp-20{padding-left:20px!important;padding-right:20px!important}.button-hp-25{padding-left:25px!important;padding-right:25px!important}.button-hp-30{padding-left:30px!important;padding-right:30px!important}.button-hp-40{padding-left:40px!important;padding-right:40px!important}.button-hp-0{padding-left:0!important;padding-right:0!important}.vs__dropdown-toggle{background:#f3f8fb!important;border:none!important;height:43px!important}.row-align-center{margin:0 auto}.row-align-left{margin:0 auto;margin-left:0!important}.row-align-right{margin:0 auto;margin-right:0!important}button,input,optgroup,select,textarea{border-radius:unset;font-family:unset;font-size:unset;line-height:unset;margin:unset;text-transform:unset}body{font-weight:unset!important;line-height:unset!important;-moz-osx-font-smoothing:grayscale;word-wrap:break-word}*,:after,:before{box-sizing:border-box}.main-heading-group>div{display:inline-block}.c-button span.main-heading-group,.c-button span.sub-heading-group{display:block}.time-grid-3{grid-template-columns:repeat(3,100px)}.time-grid-3,.time-grid-4{display:grid;text-align:center}.time-grid-4{grid-template-columns:repeat(4,100px)}@media screen and (max-width:767px){.time-grid-3{grid-template-columns:repeat(3,80px)}.time-grid-4{grid-template-columns:repeat(4,70px)}}.time-grid .timer-box{display:grid;font-size:15px;grid-template-columns:1fr;text-align:center}.timer-box .label{font-weight:300}.c-button button{cursor:pointer}.c-button>a{text-decoration:none}.c-button>a,.c-button>a span{display:inline-block}.nav-menu-wrapper{display:flex;justify-content:space-between}.nav-menu-wrapper.default{flex-direction:row}.nav-menu-wrapper.reverse{flex-direction:row-reverse}.nav-menu-wrapper .branding{align-items:center;display:flex}.nav-menu-wrapper.default .branding{flex-direction:row}.nav-menu-wrapper.reverse .branding{flex-direction:row-reverse}.nav-menu-wrapper.default .branding .logo,.nav-menu-wrapper.reverse .branding .title{margin-right:18px}.nav-menu-wrapper .branding .title{align-items:center;display:flex;min-height:50px;min-width:50px}.nav-menu{align-items:center;display:flex;flex-wrap:wrap;list-style:none;margin:0;padding:0}.nav-menu a{text-decoration:none}.dropdown{display:inline-block;position:relative}.dropdown .dropdown-menu{border:none;box-shadow:0 8px 16px 5px #0000001a}.dropdown-menu{background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.3125rem;color:#607179;display:none;float:left;font-size:1rem;left:0;list-style:none;margin:.125rem 0 0;min-width:10rem;padding:.5rem 0;position:absolute;text-align:left;top:100%;z-index:1000}.nav-menu .nav-menu-item.dropdown:hover>.dropdown-menu{display:block}.nav-menu .dropdown-menu{display:none;list-style:none;margin:0;padding:0}.nav-menu-mobile{display:none}.nav-menu-mobile i{cursor:pointer;font-size:24px}#nav-menu-popup{background:var(--overlay);display:none;height:100%;inset:0;opacity:0;position:fixed;transition:opacity .3s ease;width:100%;z-index:100}#nav-menu-popup.show{opacity:1}#nav-menu-popup .nav-menu-body{background-color:#fff;height:100%;left:0;overflow:auto;padding:45px;position:absolute;top:0;width:100%}#nav-menu-popup .nav-menu-body .close-menu{cursor:pointer;position:absolute;right:20px;top:20px;z-index:100}#nav-menu-popup .nav-menu-body .close-menu:before{content:""}#nav-menu-popup .nav-menu{align-items:center;display:flex;flex-direction:column;list-style:none;margin:0;padding:0}#nav-menu-popup .nav-menu .nav-menu-item{list-style:none;text-align:left;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}#nav-menu-popup .nav-menu .nav-menu-item .nav-menu-item-content{display:flex;position:relative}#nav-menu-popup .nav-menu-item .nav-menu-item-title{flex-grow:1;margin:0 1rem;max-width:calc(100% - 2rem)}#nav-menu-popup .nav-menu .nav-menu-item .nav-menu-item-content .nav-menu-item-toggle{cursor:pointer;font-size:24px;position:absolute;right:0;top:calc(50% - 12px)}#nav-menu-popup .nav-menu .nav-menu-item .nav-menu-item-content .nav-menu-item-toggle i{font-size:24px;transition:transform .2s ease}#nav-menu-popup .nav-menu .nav-menu-item .nav-menu-item-content .nav-menu-item-toggle i:before{content:""}#nav-menu-popup .nav-menu .nav-menu-item.active .nav-menu-item-content .nav-menu-item-toggle i{transform:rotate(-180deg)}#nav-menu-popup .nav-menu .nav-menu-item .nav-dropdown-menu{display:none;max-height:0;opacity:0;overflow:auto;padding:0;transition:all .3s ease-in-out;visibility:hidden}#nav-menu-popup .nav-menu .nav-menu-item.active .nav-dropdown-menu{display:block;max-height:600px;opacity:1;visibility:visible}.form-error{border:2px solid var(--red);border-radius:8px;cursor:pointer;font-size:20px;margin-bottom:10px;padding:6px 12px;text-align:center}.form-error,.form-error i{color:var(--red)}.c-bullet-list ul li{line-height:inherit}.c-bullet-list ul li.ql-indent-1{padding-left:4.5em}.c-bullet-list ul li.ql-indent-2{padding-left:7.5em}.c-bullet-list ul li.ql-indent-3{padding-left:10.5em}.c-bullet-list ul li.ql-indent-4{padding-left:13.5em}.c-bullet-list ul li.ql-indent-5{padding-left:16.5em}.c-bullet-list ul li.ql-indent-6{padding-left:19.5em}.c-bullet-list ul li.ql-indent-7{padding-left:22.5em}.c-bullet-list ul li.ql-indent-8{padding-left:25.5em}.c-rich-text .list-disc{list-style-type:disc}.c-rich-text .list-square{list-style-type:square}.c-rich-text .list-none{list-style-type:none}.c-rich-text .list-circle{list-style-type:circle}.c-rich-text .list-decimal{list-style-type:decimal}.c-rich-text .list-upper-alpha{list-style-type:upper-alpha}.c-rich-text .list-lower-alpha{list-style-type:lower-alpha}.c-rich-text .list-upper-roman{list-style-type:upper-roman}.c-rich-text .list-lower-roman{list-style-type:lower-roman}.text-output ul li{padding-left:1.5em}.text-output ul li:before{display:inline-block;font-weight:700;margin-left:-1.5em;margin-right:.3em;text-align:right;white-space:nowrap;width:1.2em}.svg-component svg{max-height:100%;max-width:100%}.border1{border-bottom:3px solid rgba(0,0,0,.2)!important}.border2{border:2px solid rgba(0,0,0,.55)}.border3{border:solid rgba(0,0,0,.15);border-width:1px 1px 2px;padding:5px}.border4{border:solid rgba(0,0,0,.35);border-width:1px 1px 2px;padding:1px!important}.shadow1{box-shadow:0 10px 6px -6px #00000026}.shadow2{box-shadow:0 4px 3px #00000026,0 0 2px #00000026}.shadow3{box-shadow:0 10px 6px -6px #999}.shadow4{box-shadow:3px 3px 15px #212121a8}.shadow6{box-shadow:0 10px 1px #ddd,0 10px 20px #ccc}.background{background-color:unset!important}@keyframes progress-bar-animation{to{background-position:0 -3000px}}@keyframes gradient{0%{background-position:0 50%}50%{background-position:100% 50%}to{background-position:0 50%}}h1,h2,h3,h4,h5,h6{font-weight:500;margin:unset}p{margin:unset}.c-bullet-list,.c-faq,.c-heading,.c-image-feature,.c-paragraph,.c-sub-heading{word-break:break-word}h1:empty:after,h2:empty:after,h3:empty:after,h4:empty:after,h5:empty:after,h6:empty:after,p:empty:after{content:" "}h1:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,h2:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,h3:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,h4:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,h5:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,h6:has(>br:last-child):not(:has(>br:nth-of-type(2))):after,p:has(>br:last-child):not(:has(>br:nth-of-type(2))):after{content:"\a";white-space:pre}.w-3-4{width:75%}.w-1-2{width:50%}.tabs-container{display:flex}@media screen and (max-width:767px){.nav-menu{display:none}.nav-menu-mobile{align-items:center;display:flex}#faq-popup{left:5px!important;margin-left:0!important;width:98%!important}.video-container{width:100%!important}.autoplay .vjs-big-play-button{display:none!important}.autoplay:hover .vjs-control-bar{display:flex!important}}.hvr-grow{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:var(--hover-easing,ease);vertical-align:middle}.hl-builder-hover-preview.hvr-grow,.hvr-grow:hover{transform:perspective(1px) translateZ(0) scale(var(--hover-scale,1.05))!important}.hvr-shrink{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:var(--hover-easing,ease);vertical-align:middle}.hl-builder-hover-preview.hvr-shrink,.hvr-shrink:hover{transform:perspective(1px) translateZ(0) scale(var(--hover-scale,.9))!important}@keyframes hvr-pulse{25%{transform:scale(var(--hover-scale,1.1))}75%{transform:scale(.9)}}.hvr-pulse{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);vertical-align:middle}.hl-builder-hover-preview.hvr-pulse,.hvr-pulse:hover{animation-delay:var(--hover-delay,0s);animation-duration:var(--hover-duration,1s);animation-iteration-count:infinite;animation-name:hvr-pulse;animation-timing-function:linear}.hvr-bounce-in{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.5s);transition-property:transform;vertical-align:middle}.hl-builder-hover-preview.hvr-bounce-in,.hvr-bounce-in:hover{transform:perspective(1px) translateZ(0) scale(var(--hover-scale,1.2))!important;transition-timing-function:cubic-bezier(.47,2.02,.31,-.36)}.hvr-rotate{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:var(--hover-easing,ease);vertical-align:middle}.hl-builder-hover-preview.hvr-rotate,.hvr-rotate:hover{transform:perspective(1px) translateZ(0) rotate(calc(var(--hover-angle, 5)*1deg))!important}.hvr-float{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:var(--hover-easing,ease-out);vertical-align:middle}.hl-builder-hover-preview.hvr-float,.hvr-float:hover{transform:perspective(1px) translateZ(0) translateY(calc(var(--hover-distance, 5)*-1px))!important}.hvr-skew-forward{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transform-origin:0 100%;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:var(--hover-easing,ease);vertical-align:middle}.hl-builder-hover-preview.hvr-skew-forward,.hvr-skew-forward:hover{transform:perspective(1px) translateZ(0) skew(calc(var(--hover-angle, 5)*-1deg))!important}@keyframes hvr-wobble-horizontal{16.65%{transform:translate(8px)}33.3%{transform:translate(-6px)}49.95%{transform:translate(4px)}66.6%{transform:translate(-2px)}83.25%{transform:translate(1px)}to{transform:translate(0)}}.hvr-wobble-horizontal{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);vertical-align:middle}.hl-builder-hover-preview.hvr-wobble-horizontal,.hvr-wobble-horizontal:hover{animation-delay:var(--hover-delay,0s);animation-duration:var(--hover-duration,1s);animation-iteration-count:1;animation-name:hvr-wobble-horizontal;animation-timing-function:ease-in-out}@keyframes hvr-buzz{50%{transform:translate(calc(var(--hover-distance, 3)*1px)) rotate(2deg)}to{transform:translate(calc(var(--hover-distance, 3)*-1px)) rotate(-2deg)}}.hvr-buzz{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);vertical-align:middle}.hl-builder-hover-preview.hvr-buzz,.hvr-buzz:hover{animation-delay:var(--hover-delay,0s);animation-duration:var(--hover-duration,.15s);animation-iteration-count:infinite;animation-name:hvr-buzz;animation-timing-function:linear}.hoverElevate{backface-visibility:hidden;box-shadow:0 0 0 0 transparent;transition:transform var(--hover-duration,.3s) var(--hover-easing,ease) var(--hover-delay,0s),box-shadow var(--hover-duration,.3s) var(--hover-easing,ease) var(--hover-delay,0s)}.hl-builder-hover-preview.hoverElevate,.hoverElevate:hover{box-shadow:0 8px 5px -5px #00000040!important;transform:translateY(calc(var(--hover-distance, 10)*-1px))!important}.hvr-fade{box-shadow:0 0 1px transparent;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:color;vertical-align:middle}.hvr-fade>*{position:relative;z-index:1}.hvr-fade:before{background:var(--hover-fill-color,#188bf6);content:"";inset:0;opacity:0;position:absolute;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:opacity;z-index:0}.hl-builder-hover-preview.hvr-fade,.hvr-fade:hover{color:#fff!important}.hvr-fade:hover:before{opacity:1!important}@keyframes hvr-fade-preview{0%{opacity:0}to{opacity:1}}.hl-builder-hover-preview.hvr-fade:before{animation:hvr-fade-preview var(--hover-duration,.3s) var(--hover-easing,ease-in-out) var(--hover-delay,0s) forwards!important}.hvr-sweep-to-right{box-shadow:0 0 1px transparent;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);transition-duration:var(--hover-duration,.3s);transition-property:color;vertical-align:middle}.hvr-sweep-to-right>*{position:relative;z-index:1}.hvr-sweep-to-right:before{background:var(--hover-fill-color,#188bf6);content:"";inset:0;position:absolute;transform:scaleX(0);transform-origin:0 50%;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:ease-out;z-index:0}.hl-builder-hover-preview.hvr-sweep-to-right,.hvr-sweep-to-right:hover{color:#fff!important}.hvr-sweep-to-right:hover:before{transform:scaleX(1)!important}@keyframes hvr-sweep-right-preview{0%{transform:scaleX(0)}to{transform:scaleX(1)}}.hl-builder-hover-preview.hvr-sweep-to-right:before{animation:hvr-sweep-right-preview var(--hover-duration,.3s) var(--hover-easing,ease-out) var(--hover-delay,0s) forwards!important}.hvr-sweep-to-bottom{box-shadow:0 0 1px transparent;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);transition-duration:var(--hover-duration,.3s);transition-property:color;vertical-align:middle}.hvr-sweep-to-bottom>*{position:relative;z-index:1}.hvr-sweep-to-bottom:before{background:var(--hover-fill-color,#188bf6);content:"";inset:0;position:absolute;transform:scaleY(0);transform-origin:50% 0;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:ease-out;z-index:0}.hl-builder-hover-preview.hvr-sweep-to-bottom,.hvr-sweep-to-bottom:hover{color:#fff!important}.hvr-sweep-to-bottom:hover:before{transform:scaleY(1)!important}@keyframes hvr-sweep-bottom-preview{0%{transform:scaleY(0)}to{transform:scaleY(1)}}.hl-builder-hover-preview.hvr-sweep-to-bottom:before{animation:hvr-sweep-bottom-preview var(--hover-duration,.3s) var(--hover-easing,ease-out) var(--hover-delay,0s) forwards!important}.hvr-radial-in{box-shadow:0 0 1px transparent;color:var(--hover-radial-in-rest-color,#fff)!important;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:color;vertical-align:middle}.hvr-radial-in>*{position:relative;z-index:1}.hvr-radial-in:before{background:var(--hover-fill-color,#188bf6);border-radius:100%;content:"";inset:0;position:absolute;transform:scale(2);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:ease-out;z-index:0}.hvr-radial-in:hover{color:var(--hover-radial-in-hover-color,inherit)!important}.hvr-radial-in:hover:before{transform:scale(0)!important}@keyframes hvr-radial-in-preview{0%{transform:scale(2)}to{transform:scale(0)}}.hl-builder-hover-preview.hvr-radial-in:before{animation:hvr-radial-in-preview var(--hover-duration,.3s) var(--hover-easing,ease-out) var(--hover-delay,0s) forwards!important}.hvr-bounce-to-top{box-shadow:0 0 1px transparent;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:color;vertical-align:middle}.hvr-bounce-to-top>*{position:relative;z-index:1}.hvr-bounce-to-top:before{background:var(--hover-fill-color,#188bf6);content:"";inset:0;position:absolute;transform:scaleY(0);transform-origin:50% 100%;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:transform;transition-timing-function:cubic-bezier(.47,2.02,.31,-.36);z-index:0}.hl-builder-hover-preview.hvr-bounce-to-top,.hvr-bounce-to-top:hover{color:#fff!important}.hvr-bounce-to-top:hover:before{transform:scaleY(1)!important}@keyframes hvr-bounce-top-preview{0%{transform:scaleY(0)}to{transform:scaleY(1)}}.hl-builder-hover-preview.hvr-bounce-to-top:before{animation:hvr-bounce-top-preview var(--hover-duration,.3s) cubic-bezier(.47,2.02,.31,-.36) var(--hover-delay,0s) forwards!important}@keyframes hvr-ripple-out{to{inset:-12px;opacity:0}}.hvr-ripple-out{box-shadow:0 0 1px transparent;display:inline-block;position:relative;transform:perspective(1px) translateZ(0);vertical-align:middle}.hvr-ripple-out:before{animation-delay:var(--hover-delay,0s);animation-duration:var(--hover-duration,1s);border:var(--hover-border-thickness,2px) solid var(--hover-border-color,#188bf6);content:"";inset:0;position:absolute}.hl-builder-hover-preview.hvr-ripple-out:before,.hvr-ripple-out:hover:before{animation-name:hvr-ripple-out}.hvr-outline-in{box-shadow:0 0 1px transparent;display:inline-block;position:relative;transform:perspective(1px) translateZ(0);vertical-align:middle}.hvr-outline-in:before{border:var(--hover-border-thickness,4px) solid var(--hover-border-color,#188bf6);content:"";inset:-16px;opacity:0;pointer-events:none;position:absolute;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:top,right,bottom,left,opacity}.hl-builder-hover-preview.hvr-outline-in:before,.hvr-outline-in:hover:before{inset:-8px!important;opacity:1!important}.hvr-underline-from-center{box-shadow:0 0 1px transparent;display:inline-block;overflow:hidden;position:relative;transform:perspective(1px) translateZ(0);vertical-align:middle}.hvr-underline-from-center>*{position:relative;z-index:1}.hvr-underline-from-center:before{background:var(--hover-border-color,#188bf6);bottom:0;content:"";height:var(--hover-border-thickness,4px);left:51%;position:absolute;right:51%;transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:left,right;transition-timing-function:ease-out;z-index:0}.hl-builder-hover-preview.hvr-underline-from-center:before,.hvr-underline-from-center:hover:before{left:0!important;right:0!important}.hvr-shadow{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition:box-shadow var(--hover-duration,.3s) var(--hover-easing,ease-in-out) var(--hover-delay,0s);vertical-align:middle}.hl-builder-hover-preview.hvr-shadow,.hvr-shadow:focus,.hvr-shadow:hover{box-shadow:0 var(--hover-spread,10px) var(--hover-blur,10px) calc(var(--hover-spread, 10px)*-1) var(--hover-shadow-color,rgba(24,139,246,.55))!important}.hvr-glow{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition:box-shadow var(--hover-duration,.3s) var(--hover-easing,ease-in-out) var(--hover-delay,0s);vertical-align:middle}.hl-builder-hover-preview.hvr-glow,.hvr-glow:focus,.hvr-glow:hover{box-shadow:0 0 var(--hover-blur,8px) var(--hover-spread,0) var(--hover-shadow-color,rgba(24,139,246,.55))!important}.hvr-box-shadow-outset{box-shadow:0 0 1px transparent;display:inline-block;transform:perspective(1px) translateZ(0);transition-delay:var(--hover-delay,0s);transition-duration:var(--hover-duration,.3s);transition-property:box-shadow;vertical-align:middle}.hl-builder-hover-preview.hvr-box-shadow-outset,.hvr-box-shadow-outset:active,.hvr-box-shadow-outset:focus,.hvr-box-shadow-outset:hover{box-shadow:2px 2px var(--hover-blur,10px) var(--hover-spread,5px) var(--hover-shadow-color,rgba(24,139,246,.55))!important}@media(hover:none),(max-width:1024px){.hl-builder-hover-preview.hoverElevate,.hl-builder-hover-preview.hvr-bounce-in,.hl-builder-hover-preview.hvr-box-shadow-outset,.hl-builder-hover-preview.hvr-buzz,.hl-builder-hover-preview.hvr-float,.hl-builder-hover-preview.hvr-glow,.hl-builder-hover-preview.hvr-grow,.hl-builder-hover-preview.hvr-pulse,.hl-builder-hover-preview.hvr-rotate,.hl-builder-hover-preview.hvr-shadow,.hl-builder-hover-preview.hvr-shrink,.hl-builder-hover-preview.hvr-skew-forward,.hl-builder-hover-preview.hvr-wobble-horizontal,.hoverElevate:hover,.hvr-bounce-in:hover,.hvr-box-shadow-outset:active,.hvr-box-shadow-outset:focus,.hvr-box-shadow-outset:hover,.hvr-buzz:hover,.hvr-float:hover,.hvr-glow:focus,.hvr-glow:hover,.hvr-grow:hover,.hvr-pulse:hover,.hvr-rotate:hover,.hvr-shadow:focus,.hvr-shadow:hover,.hvr-shrink:hover,.hvr-skew-forward:hover,.hvr-wobble-horizontal:hover{animation:none!important;box-shadow:none!important;transform:none!important}.hl-builder-hover-preview.hvr-bounce-to-top:before,.hl-builder-hover-preview.hvr-fade:before,.hl-builder-hover-preview.hvr-outline-in:before,.hl-builder-hover-preview.hvr-ripple-out:before,.hl-builder-hover-preview.hvr-sweep-to-bottom:before,.hl-builder-hover-preview.hvr-sweep-to-right:before,.hl-builder-hover-preview.hvr-underline-from-center:before,.hvr-bounce-to-top:hover:before,.hvr-fade:hover:before,.hvr-outline-in:hover:before,.hvr-ripple-out:hover:before,.hvr-sweep-to-bottom:hover:before,.hvr-sweep-to-right:hover:before,.hvr-underline-from-center:hover:before{animation:none!important;opacity:0!important;transform:scale(0)!important}.hvr-radial-in:hover:before{animation:none!important;opacity:1!important;transform:scale(2)!important}}.hl-entrance-running{pointer-events:none!important}.hl-entrance-parent-clipping{overflow:hidden}[data-animation-done="1"]:not(.hl-entrance-running){opacity:1!important}@media(prefers-reduced-motion:reduce){.hoverElevate,.hoverElevate.hl-builder-hover-preview,.hoverElevate:hover,[class*=hvr-],[class*=hvr-].hl-builder-hover-preview,[class*=hvr-]:hover{animation:none!important;transform:none!important;transition:none!important}}</style><style>@font-face{font-display:swap;font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:400;src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.eot);src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.woff2) format("woff2"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.woff) format("woff"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.ttf) format("truetype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-display:swap;font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:900;src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.eot);src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.woff2) format("woff2"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.woff) format("woff"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.ttf) format("truetype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:Font Awesome\ 5 Free}.fa,.fas{font-weight:900}@font-face{font-display:swap;font-family:Font Awesome\ 5 Brands;font-style:normal;font-weight:400;src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.eot);src:url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.woff2) format("woff2"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.woff) format("woff"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.ttf) format("truetype"),url(https://stcdn.leadconnectorhq.com/funnel/fontawesome/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:Font Awesome\ 5 Brands;font-weight:400}</style><style>:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animate__animated{animation-duration:1s;animation-duration:var(--animate-duration);animation-fill-mode:both}@media(prefers-reduced-motion:reduce),print{.animate__animated{animation-duration:1ms!important;animation-iteration-count:1!important;transition-duration:1ms!important}.animate__animated[class*=Out]{opacity:0}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.animate__fadeIn{animation-name:fadeIn}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInUp{animation-name:fadeInUp}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-100%,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInDown{animation-name:fadeInDown}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(100%,0,0)}to{opacity:1;transform:translateZ(0)}}.animate__fadeInRight{animation-name:fadeInRight}@keyframes slideInUp{0%{opacity:0;transform:translate3d(0,100%,0);visibility:visible}to{opacity:1;transform:translateZ(0)}}.animate__slideInUp{animation-name:slideInUp}@keyframes slideInDown{0%{opacity:0;transform:translate3d(0,-100%,0);visibility:visible}to{opacity:1;transform:translateZ(0)}}.animate__slideInDown{animation-name:slideInDown}@keyframes slideInLeft{0%{opacity:0;transform:translate3d(-100%,0,0);visibility:visible}to{opacity:1;transform:translateZ(0)}}.animate__slideInLeft{animation-name:slideInLeft}@keyframes slideInRight{0%{opacity:0;transform:translate3d(100%,0,0);visibility:visible}to{opacity:1;transform:translateZ(0)}}.animate__slideInRight{animation-name:slideInRight}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.animate__bounceIn{animation-duration:.75s;animation-duration:calc(var(--animate-duration)*.75);animation-name:bounceIn}@keyframes bounceInUp{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;transform:translate3d(0,-20px,0) scaleY(.9)}75%{transform:translate3d(0,10px,0) scaleY(.95)}90%{transform:translate3d(0,-5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInUp{animation-name:bounceInUp}@keyframes bounceInDown{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;transform:translate3d(0,25px,0) scaleY(.9)}75%{transform:translate3d(0,-10px,0) scaleY(.95)}90%{transform:translate3d(0,5px,0) scaleY(.985)}to{transform:translateZ(0)}}.animate__bounceInDown{animation-name:bounceInDown}@keyframes bounceInLeft{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(25px,0,0) scaleX(1)}75%{transform:translate3d(-10px,0,0) scaleX(.98)}90%{transform:translate3d(5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInLeft{animation-name:bounceInLeft}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;transform:translate3d(-25px,0,0) scaleX(1)}75%{transform:translate3d(10px,0,0) scaleX(.98)}90%{transform:translate3d(-5px,0,0) scaleX(.995)}to{transform:translateZ(0)}}.animate__bounceInRight{animation-name:bounceInRight}@keyframes flip{0%{animation-timing-function:ease-out;opacity:0;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)}40%{animation-timing-function:ease-out;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)}50%{animation-timing-function:ease-in;transform:perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)}80%{animation-timing-function:ease-in;transform:perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0)}to{animation-timing-function:ease-in;opacity:1;transform:perspective(400px) scaleX(1) translateZ(0) rotateY(0)}}.animate__animated.animate__flip{animation-name:flip;backface-visibility:visible}@keyframes flipInX{0%{animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateX(90deg)}40%{animation-timing-function:ease-in;transform:perspective(400px) rotateX(-20deg)}60%{opacity:1;transform:perspective(400px) rotateX(10deg)}80%{transform:perspective(400px) rotateX(-5deg)}to{transform:perspective(400px)}}.animate__flipInX{animation-name:flipInX;backface-visibility:visible!important}@keyframes flipInY{0%{animation-timing-function:ease-in;opacity:0;transform:perspective(400px) rotateY(90deg)}40%{animation-timing-function:ease-in;transform:perspective(400px) rotateY(-20deg)}60%{opacity:1;transform:perspective(400px) rotateY(10deg)}80%{transform:perspective(400px) rotateY(-5deg)}to{transform:perspective(400px)}}.animate__flipInY{animation-name:flipInY;backface-visibility:visible!important}@keyframes rollIn{0%{opacity:0;transform:translate3d(-100%,0,0) rotate(-120deg)}to{opacity:1;transform:translateZ(0)}}.animate__rollIn{animation-name:rollIn}@keyframes zoomIn{0%{opacity:0;transform:scale3d(.3,.3,.3)}50%{opacity:1}}.animate__zoomIn{animation-name:zoomIn}@keyframes lightSpeedInLeft{0%{opacity:0;transform:translate3d(-100%,0,0) skew(30deg)}60%{opacity:1;transform:skew(-20deg)}80%{transform:skew(5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInLeft{animation-name:lightSpeedInLeft;animation-timing-function:ease-out}@keyframes lightSpeedInRight{0%{opacity:0;transform:translate3d(100%,0,0) skew(-30deg)}60%{opacity:1;transform:skew(20deg)}80%{transform:skew(-5deg)}to{transform:translateZ(0)}}.animate__lightSpeedInRight{animation-name:lightSpeedInRight;animation-timing-function:ease-out}</style><style>.hl-cookie-consent-banner{align-items:center;display:flex;gap:14px;justify-content:space-between;padding:24px;width:100%;z-index:100}.hl-cookie-consent-banner .banner-text-container{line-height:22px}.hl-cookie-consent-banner .banner-actions-container{justify-content:flex-end}.hl-cookie-consent-banner .learn-more{font-weight:600}.hl-cookie-consent-banner .button{align-items:center;border-radius:4px;border-width:1px;box-shadow:0 1px 2px #1018280d;box-sizing:border-box;cursor:pointer;display:flex;flex-direction:row;gap:8px;justify-content:center;padding:8px 14px}.hl-cookie-consent-banner .ok{flex-grow:unset}.hl-cookie-consent-banner .button.customize,.hl-cookie-consent-banner .button.primary,.hl-cookie-consent-banner .button.secondary{border:none!important}.hl-cookie-consent-banner .flex{display:flex}@media only screen and (max-width:600px){.hl-cookie-consent-banner{padding:4%!important}.hl-cookie-consent-banner .banner-actions-container{justify-content:center!important;margin-bottom:15px;margin-top:15px;width:100%!important}.hl-cookie-consent-banner .banner-text-container{margin-bottom:12px;text-align:center!important;width:100%!important}.bottom-banner .banner-text-container,.top-banner .banner-text-container{max-width:100%!important}.hl-cookie-consent-banner .banner-text{text-align:justify}.hl-cookie-consent-banner .flex{align-items:center;display:flex;flex-direction:column}.hl-cookie-consent-banner .button{margin-left:0!important;padding:10px 14px;width:100%}.bottom-banner,.top-banner{flex-direction:column}.position-left,.position-right{bottom:0!important;left:unset!important;right:unset!important}.bottom-banner .banner-actions-container,.top-banner .banner-actions-container{gap:10px}}.bottom-banner{bottom:0;position:fixed}.bottom-banner .banner-text-container,.top-banner .banner-text-container{max-width:70%}.bottom-banner .banner-actions-container,.top-banner .banner-actions-container{flex-grow:1;gap:14px}.position-left .banner-actions-container,.position-right .banner-actions-container{justify-content:space-between!important}.position-left .button,.position-right .button{flex-grow:1}.top-banner{position:fixed;top:0}.popup-banner{align-items:unset!important;flex-direction:column;position:fixed}.popup-banner .banner-actions-container{flex-grow:1;gap:10px;width:100%!important}.position-left{bottom:20px;left:20px;max-width:450px}.position-right{bottom:20px;max-width:450px;right:20px}.position-center{bottom:20px;left:50%;right:unset;transform:translate(-50%);width:90%}.position-center .button{flex-grow:unset!important}</style><style>.testimonial-modal-overlay{align-items:center;background:#0000004d;display:flex;height:100vh;justify-content:center;left:0;position:fixed;top:0;width:100vw;z-index:10000}.testimonial-modal-content{align-items:stretch;background:none;display:flex;flex-direction:column;max-height:600px;max-width:540px;width:100%}.testimonial-modal-close{align-items:center;background:#fff;border:none;border-radius:50%;cursor:pointer;display:flex;height:36px;justify-content:center;position:absolute;right:20px;top:20px;transition:background .15s;width:36px;z-index:2}.testimonial-modal-close-icon{color:#222;height:22px;width:22px}@media(max-width:768px){.testimonial-modal-content{border-radius:10px;max-width:98vw}.testimonial-modal-close{right:10px;top:10px}}</style><link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Inter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CInter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CRoboto:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/CTTbb0bb.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/DufMLVx4.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/DdZqK04z.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/CvIVkKb0.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/Bc8JtAG8.js"><link as="script" crossorigin href="https://stcdn.leadconnectorhq.com/_preview/DEwgz0DC.js"><script type="module" src="https://stcdn.leadconnectorhq.com/_preview/CTTbb0bb.js" crossorigin></script><link rel="dns-prefetch" href="https://services.leadconnectorhq.com"><link rel="icon" href="https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/6963d6ed98efbdd270eb5bac.png"><link rel="canonical" href="https://gestiontb.ca/logements-a-louer"><meta name="facebook-domain-verification" content="1mqw2orse1jc8zk8g9xnhm1s17u4s0"><script type="application/ld+json">{
256 86 "@context": "https://schema.org",
257 87 "@graph": [
258 88 {
@@ -296,4 +126,2334 @@
296 126 }
297 127 }
298 128 ]
299 −}</script></head><body><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><!--teleport start anchor--><!--teleport anchor--><div id="__nuxt"><!--[--><div></div><!--[--><div class="bgCover bg-fixed"></div><div><!--[--><div><!--[--><!----><div class="hl-cookie-consent-banner popup-banner position-center" style="display:none;"><div class="banner-text-container"><p class="banner-text">Nous utilisons des cookies pour améliorer votre expérience sur notre site. En utilisant notre site, vous consentez à l’utilisation des cookies. Le refus des cookies empêchera le chargement des cookies non essentiels. <!----></p></div><div class="banner-actions-container flex"><!----><button class="button primary" id="accept-all">Accepter</button><button class="button secondary">Accepter l&#39;essentiel</button></div></div><!--]--><!----><div><div id="nav-menu-popup" style="display:none;" class="hide"><div class="nav-menu-body"><i class="close-menu fas fa-times"></i><ul class="nav-menu"><!--[--><!--]--></ul></div></div></div><!----><!--[--><!----><!--]--><div id="preview-container" class="preview-container hl_page-preview--content"><div><!----><!--[--><!--[--><div id="section-DUFD6YvRZJ" data-animation-class data-entrance-clip="1" style="" class="fullSection c-section c-wrapper section-DUFD6YvRZJ"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-nHziU-ybxu" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-nHziU-ybxu"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-a9NtY9lc-G" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-a9NtY9lc-G"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="nav-menu-v2-HxJubNiK5I" data-animation-class style="" class="c-nav-menu-v2 c-wrapper nav-menu-v2-HxJubNiK5I"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="flex relative items-center w-full mega-menu-container menu-layout child-container-parent cnav-menu-v2-HxJubNiK5I"><div class="w-full flex justify-start items-center menu-layout"><div class="mr-2"><div style="cursor:pointer;" class="image-container"><div><div><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69516fb5e889d31e86b6efb2.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69516fb5e889d31e86b6efb2.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69516fb5e889d31e86b6efb2.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69516fb5e889d31e86b6efb2.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69516fb5e889d31e86b6efb2.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69516fb5e889d31e86b6efb2.png" alt="Brand Logo" style="height:50px !important;width:280px !important;object-fit:unset;" class="hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></div></div></div></div><div class="w-full"><div class="nav-menu-v2-HxJubNiK5I-headline text-output"><div><p></p></div></div></div></div><ul class="nav-menu-ul flex flex-row items-center cart-search-mobile"><!----><!----><li><div class="py-2 pl-15 rounded-sm text-nowrap pointer nav-menu-mobile" role="button" tabindex="0" aria-label="Toggle menu"><span></span></div></li></ul><ul class="hide-popup nav-menu-ul nav-menu-desktop flex flex-row items-center"><li class="w-full py-4 flex flex-row justify-end x-icon"><div class="flex justify-end items-center pointer touch-target" role="button" tabindex="0"><svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-label="Fermer"><path stroke-linecap="round" stroke-linejoin="round" d="M17 7L7 17M7 7l10 10"></path></svg></div></li><!--[--><li id="menu-item-fSkgSqa0zf" class="relative nav-spacing-x menu-item"><a aria-label="Logement à louer" href="https://gestiontb.ca/logements-a-louer" target class="mega-menu-link"><!--[--><div class="menu-item-title-icon-rotate-reverse py-2 px-15 rounded-sm text-nowrap pointer menu-item-title menu-item-title-icon">Logement à louer <span role="button" tabindex="0" aria-label="Toggle submenu"></span></div><!--]--></a><div class="sub-menu-align submenu"><div class="overflow-hidden min-w-24 itemTarget submenu-content-container"><ul class="nav-menu-ul submenu-column"><!--[--><li><a href="https://gestiontb.ca/logements-a-louer#heading-P4JHNP-t3d" aria-label="2 ½" target class="mega-menu-link"><!--[--><div class="py-2 pointer submenu-item text-nowrap">2 ½</div><!--]--></a></li><li><a href="https://gestiontb.ca/logements-a-louer#heading-3uWiOQESsM" aria-label="3 ½" target class="mega-menu-link"><!--[--><div class="py-2 pointer submenu-item text-nowrap">3 ½</div><!--]--></a></li><li><a href="https://gestiontb.ca/logements-a-louer#row-rh4yMILdRq" aria-label="4 ½" target class="mega-menu-link"><!--[--><div class="py-2 pointer submenu-item text-nowrap">4 ½</div><!--]--></a></li><li><a href="https://gestiontb.ca/logements-a-louer#heading-oHkotcAr7_" aria-label="5 ½" target class="mega-menu-link"><!--[--><div class="py-2 pointer submenu-item text-nowrap">5 ½</div><!--]--></a></li><li><a href="https://gestiontb.ca/logements-a-louer#heading-Yrbyajy-s0" aria-label="6 ½" target class="mega-menu-link"><!--[--><div class="py-2 pointer submenu-item text-nowrap">6 ½</div><!--]--></a></li><li><a href="https://gestiontb.ca/logements-a-louer#heading-GEBrPbfRG0" aria-label="Studio" target class="mega-menu-link"><!--[--><div class="py-2 pointer submenu-item text-nowrap">Studio</div><!--]--></a></li><!--]--></ul></div></div><!----></li><li id="menu-item-FlckQpY1Uv" class="relative nav-spacing-x menu-item"><div class="menu-item-title-icon-rotate-reverse py-2 px-15 rounded-sm text-nowrap pointer menu-item-title menu-item-title-icon" role="button" tabindex="0">Services <span></span></div><div class="sub-menu-align submenu"><div class="overflow-hidden min-w-24 itemTarget submenu-content-container"><ul class="nav-menu-ul submenu-column"><!--[--><li><a aria-label="Recherche de logements" href="https://gestiontb.ca/formlocation" target="_blank" rel="noreferrer noopener" class="mega-menu-link"><!--[--><div class="py-2 pointer submenu-item text-nowrap">Recherche de logements</div><!--]--></a></li><li><a aria-label="Achat d&#39;immeubles" href="https://gestiontb.ca/achat-dimmeuble" target class="mega-menu-link"><!--[--><div class="py-2 pointer submenu-item text-nowrap">Achat d&#39;immeubles</div><!--]--></a></li><!--]--></ul></div></div><!----></li><li id="2" class="nav-spacing-x menu-item"><a aria-label="À propos" href="https://gestiontb.ca/a-propos" target class="mega-menu-link"><!--[--><div class="menu-item-title-icon-rotate-reverse py-2 px-15 rounded-sm text-nowrap pointer menu-item-title menu-item-title-icon">À propos <!----></div><!--]--></a><!----><!----></li><li id="3" class="nav-spacing-x menu-item"><a aria-label="Contact" href="https://gestiontb.ca/nous-contacter" target class="mega-menu-link"><!--[--><div class="menu-item-title-icon-rotate-reverse py-2 px-15 rounded-sm text-nowrap pointer menu-item-title menu-item-title-icon">Contact <!----></div><!--]--></a><!----><!----></li><li id="menu-item-Exn9i7bw2I" class="relative nav-spacing-x menu-item"><div class="menu-item-title-icon-rotate-reverse py-2 px-15 rounded-sm text-nowrap pointer menu-item-title menu-item-title-icon" role="button" tabindex="0">Espace Locataire <span></span></div><div class="sub-menu-align submenu"><div class="overflow-hidden min-w-24 itemTarget submenu-content-container"><ul class="nav-menu-ul submenu-column"><!--[--><li><a aria-label="Maintenance" href="https://gestiontb.ca/maintenance" target="_blank" rel="noreferrer noopener" class="mega-menu-link"><!--[--><div class="py-2 pointer submenu-item text-nowrap">Maintenance</div><!--]--></a></li><li><a aria-label="FAQ" href="https://gestiontb.ca/faq-locataire" target class="mega-menu-link"><!--[--><div class="py-2 pointer submenu-item text-nowrap">FAQ</div><!--]--></a></li><li><a aria-label="Documents" href="https://gestiontb.ca/documents" target class="mega-menu-link"><!--[--><div class="py-2 pointer submenu-item text-nowrap">Documents</div><!--]--></a></li><!--]--></ul></div></div><!----></li><!--]--><!----><!----><!----></ul></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="section-fo8vXgGyhn" data-animation-class data-entrance-clip="1" style="" class="fullSection noBorder radius0 none c-section c-wrapper section-fo8vXgGyhn"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-kyMqnsiRwF" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-kyMqnsiRwF"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-WR5cM4L3X7" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-WR5cM4L3X7"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="heading-EcitVf6jjT" data-animation-class style="" class="c-heading c-wrapper"><!----><!----><!----><div class="heading-EcitVf6jjT text-output cheading-EcitVf6jjT noBorder radius0 none" data-animation-class style=""><div><h1><span style="color: var(--white)">Logement à louer</span></h1></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-Fy_HrphLXH" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-Fy_HrphLXH text-output cparagraph-Fy_HrphLXH noBorder radius0 none" data-animation-class style=""><div><p><span style="color: var(--white)">Trouvez la propriété idéale parmi notre sélection de logement à louer</span></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="section-Hs3vSWqm1o" data-animation-class data-entrance-clip="1" style="" class="fullSection c-section c-wrapper section-Hs3vSWqm1o desktop-only mobile-only"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-kqfP4SYDWs" data-animation-class data-entrance-clip="1" style="" class="row-align-center c-row c-wrapper row-kqfP4SYDWs"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-uupdULtpN6" data-animation-class data-entrance-clip="1" style="" class="c-column c-wrapper col-uupdULtpN6"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="heading-P4JHNP-t3d" data-animation-class style="" class="c-heading c-wrapper"><!----><!----><!----><div class="heading-P4JHNP-t3d text-output cheading-P4JHNP-t3d noBorder radius0 none" data-animation-class style=""><div><h1>2 <strong>½</strong> À LOUER</h1></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="section-JEnfcw8zO5" data-animation-class data-entrance-clip="1" style="" class="fullSection noBorder radius0 none c-section c-wrapper section-JEnfcw8zO5"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-ufVUOO75V_" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-ufVUOO75V_"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-KIf4Ql0phl" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-KIf4Ql0phl"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="heading-3uWiOQESsM" data-animation-class style="" class="c-heading c-wrapper"><!----><!----><!----><div class="heading-3uWiOQESsM text-output cheading-3uWiOQESsM noBorder radius0 none" data-animation-class style=""><div><h1>3 <strong>½</strong> À LOUER</h1></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row--V65xLoMfl" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row--V65xLoMfl"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-Rg3Gr4MzBf" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-Rg3Gr4MzBf"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-P6aDP2NQDn" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-P6aDP2NQDn text-output csub-heading-P6aDP2NQDn noBorder radius0 none" data-animation-class style=""><div><h2><strong>3 ½ rue Alexandre à 900$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-bQY6ZCwz82" data-animation-class style="" class="c-image-slider c-wrapper image-slider-bQY6ZCwz82"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-bQY6ZCwz82" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928ee7ca3d1c4804504.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928ee7ca3d1c4804504.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928ee7ca3d1c4804504.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928ee7ca3d1c4804504.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928ee7ca3d1c4804504.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928ee7ca3d1c4804504.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928eaa4719b5c2228ff.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928eaa4719b5c2228ff.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928eaa4719b5c2228ff.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928eaa4719b5c2228ff.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928eaa4719b5c2228ff.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928eaa4719b5c2228ff.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a72092835dab6b5c619dabb.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a720928fcee90cf632ffb8a.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-pkSbfv3TRg" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-pkSbfv3TRg text-output csub-heading-pkSbfv3TRg noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur St-Pierre</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> MAINTENANT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement<br>Entrée laveuse/sécheuse</h2><h2>Immeuble <strong>NEUF</strong></h2><h2>Près du cégep et tous les services</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-te6d0D-srD" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-te6d0D-srD"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-Fmvt_lf7Kk" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-Fmvt_lf7Kk"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-PIa9qcyIGX" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-PIa9qcyIGX text-output cparagraph-PIa9qcyIGX noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-S0RLkATTlF" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-S0RLkATTlF text-output cparagraph-S0RLkATTlF noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-XosEhlVBsh" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-XosEhlVBsh text-output cparagraph-XosEhlVBsh noBorder radius0 none" data-animation-class style=""><div><p>3 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-yEp3Wcs9u-" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-yEp3Wcs9u- text-output csub-heading-yEp3Wcs9u- noBorder radius0 none" data-animation-class style=""><div><h2>1er étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-cABxyP6k86" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-cABxyP6k86 text-output csub-heading-cABxyP6k86 noBorder radius0 none" data-animation-class style=""><div><h2>900 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-S5qxLC3t7Z" data-animation-class style="" class="c-button c-wrapper button-S5qxLC3t7Z desktop-only mobile-only"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><!----><!----><button data-animation-class="" id="button-S5qxLC3t7Z_btn" style="" class="cbutton-S5qxLC3t7Z custom btn-vp btn-hp noBorder radius5 none" aria-label="LOUER "><div style="" class="main-heading-group"><div class="button-icon-start"></div><div class="main-heading-button">LOUER</div><div class="button-icon-end"></div></div><!----><div style="display:none;left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);" class="btn-loader-position"><div style="display:none;" class="v-spinner"><div class="v-moon v-moon1" style="height:30px;width:30px;border-radius:100%;"><div class="v-moon v-moon2" style="height:4.285714285714286px;width:4.285714285714286px;border-radius:100%;top:12.857142857142858px;background-color:rgb(255, 255, 255);"></div><div class="v-moon v-moon3" style="height:30px;width:30px;border-radius:100%;border:4.285714285714286px solid rgb(255, 255, 255);"></div></div></div></div></button><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-5sScusTRxm" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-5sScusTRxm"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-F57qzmwWcM" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-F57qzmwWcM text-output csub-heading-F57qzmwWcM noBorder radius0 none" data-animation-class style=""><div><h2><strong>3 ½ rue Melançon à 1 130$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-w7GLGClyKT" data-animation-class style="" class="c-image-slider c-wrapper image-slider-w7GLGClyKT"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-w7GLGClyKT" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bba61536401851944b.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bba61536401851944b.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bba61536401851944b.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bba61536401851944b.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bba61536401851944b.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bba61536401851944b.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bbddfdcbf38b7eb0fc.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bbddfdcbf38b7eb0fc.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bbddfdcbf38b7eb0fc.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bbddfdcbf38b7eb0fc.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bbddfdcbf38b7eb0fc.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bbddfdcbf38b7eb0fc.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9cbf5c2841e06e3f.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9cbf5c2841e06e3f.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9cbf5c2841e06e3f.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9cbf5c2841e06e3f.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9cbf5c2841e06e3f.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9cbf5c2841e06e3f.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9c964e830c793952.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9c964e830c793952.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9c964e830c793952.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9c964e830c793952.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9c964e830c793952.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb9c964e830c793952.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb2815918092e83a53.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd54bb02c31a3704462d2f.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-gYnPMaZyrW" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-gYnPMaZyrW text-output csub-heading-gYnPMaZyrW noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur du cégep</strong></h2><h2>Disponible<strong> Août !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>Internet inclus</h2><h2>1 Stationnement<br>Près du cégep et tous les services</h2><h2></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-fusa_Rdcgb" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-fusa_Rdcgb"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-xAMHzeXDbc" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-xAMHzeXDbc"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-xlfTuNWwn0" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-xlfTuNWwn0 text-output cparagraph-xlfTuNWwn0 noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-qxvojP52IR" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-qxvojP52IR text-output cparagraph-qxvojP52IR noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-kUhwMrFwUs" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-kUhwMrFwUs text-output cparagraph-kUhwMrFwUs noBorder radius0 none" data-animation-class style=""><div><p>3 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-JNJNQEo3JE" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-JNJNQEo3JE text-output csub-heading-JNJNQEo3JE noBorder radius0 none" data-animation-class style=""><div><h2>Rez de chaussé</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-C3-NEO8NoY" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-C3-NEO8NoY text-output csub-heading-C3-NEO8NoY noBorder radius0 none" data-animation-class style=""><div><h2>1 130 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-zQ1-bO4G0X" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-zQ1-bO4G0X"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-_OgtpHflq7" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-_OgtpHflq7 text-output csub-heading-_OgtpHflq7 noBorder radius0 none" data-animation-class style=""><div><h2><strong>Boul. St-Joseph à partir de 1 125$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-qDIABhcLRq" data-animation-class style="" class="c-image-slider c-wrapper image-slider-qDIABhcLRq"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-qDIABhcLRq" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822815911b20ec2d2f.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822815911b20ec2d2f.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822815911b20ec2d2f.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822815911b20ec2d2f.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822815911b20ec2d2f.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822815911b20ec2d2f.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758266c8fcd62de8bc03.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758266c8fcd62de8bc03.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758266c8fcd62de8bc03.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758266c8fcd62de8bc03.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758266c8fcd62de8bc03.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758266c8fcd62de8bc03.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758287c93b851a7ba186.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758287c93b851a7ba186.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758287c93b851a7ba186.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758287c93b851a7ba186.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758287c93b851a7ba186.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd758287c93b851a7ba186.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822a8b8893e7e9aabf.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822a8b8893e7e9aabf.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822a8b8893e7e9aabf.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822a8b8893e7e9aabf.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822a8b8893e7e9aabf.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd75822a8b8893e7e9aabf.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582a78e44ceddb8e540.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd7582ddfdcb6be082a0d1.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-iW-mCTaop8" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-iW-mCTaop8 text-output csub-heading-iW-mCTaop8 noBorder radius0 none" data-animation-class style=""><div><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> MAINTENANT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement</h2><h2><strong>INTERNET COMPRIS</strong></h2><h2>Construction neuve</h2><h2>Thermopompe et échangeur d'air</h2><h2></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-_3pz_kDc9D" data-animation-class style="" class="c-button c-wrapper button-_3pz_kDc9D"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><a id="button-_3pz_kDc9D_btn" href="https://gestiontb.ca/4623-4625-bd-st-joseph" target="" data-animation-class="" class="cbutton-ys3tkAz43J custom button-vp-5 button-hp-5 text-center" style="" aria-label="Je suis intéressé "><span style="" class="main-heading-group"><span style="margin-right:5px;" class="button-icon-start"></span><span class="main-heading-button">Je suis intéressé</span><span style="margin-left:5px;" class="button-icon-end"></span></span><!----></a><!----><!----><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-2A6TdgKHlq" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-2A6TdgKHlq"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-xy95dLyhr_" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-xy95dLyhr_"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-8hPmEs7mZK" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-8hPmEs7mZK text-output cparagraph-8hPmEs7mZK noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-8iazHsJK-U" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-8iazHsJK-U text-output cparagraph-8iazHsJK-U noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-aRr6PntS5I" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-aRr6PntS5I text-output cparagraph-aRr6PntS5I noBorder radius0 none" data-animation-class style=""><div><p>3 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-s8XATN38CD" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-s8XATN38CD text-output csub-heading-s8XATN38CD noBorder radius0 none" data-animation-class style=""><div><h2>RDC à 3e étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-qokIovhf9V" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-qokIovhf9V text-output csub-heading-qokIovhf9V noBorder radius0 none" data-animation-class style=""><div><h2>1 125 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-yRqZ6aHLSo" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-yRqZ6aHLSo"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-5BSbroV8HW" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-5BSbroV8HW"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-P5Yzz7_Iqc" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-P5Yzz7_Iqc text-output csub-heading-P5Yzz7_Iqc noBorder radius0 none" data-animation-class style=""><div><h2><strong>3 ½ Notre-dame à 1 130$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-je4P_S8v_W" data-animation-class style="" class="c-image-slider c-wrapper image-slider-je4P_S8v_W"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-je4P_S8v_W" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb3fc0007de22c7d8.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb3fc0007de22c7d8.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb3fc0007de22c7d8.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb3fc0007de22c7d8.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb3fc0007de22c7d8.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb3fc0007de22c7d8.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003fa45cbe94421.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003fa45cbe94421.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003fa45cbe94421.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003fa45cbe94421.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003fa45cbe94421.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003fa45cbe94421.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbdb003faa891e94420.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69aaefbd618c8d7a2529199b.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-nza-xhmk31" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-nza-xhmk31 text-output csub-heading-nza-xhmk31 noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Notre-Dame-Du-</strong></h2><h2><strong>Bon-Conseil</strong></h2><h2>Disponible<strong> MAINTENANT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>Internet inclus</h2><h2>1 Stationnement</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-nGS-HeF6nn" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-nGS-HeF6nn"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-PZ9xI3iXTN" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-PZ9xI3iXTN"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-A9KXQOpxbx" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-A9KXQOpxbx text-output cparagraph-A9KXQOpxbx noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-H2jlK0WT1f" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-H2jlK0WT1f text-output cparagraph-H2jlK0WT1f noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-OVjcO1jAzz" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-OVjcO1jAzz text-output cparagraph-OVjcO1jAzz noBorder radius0 none" data-animation-class style=""><div><p>3 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-eDB458-8HI" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-eDB458-8HI text-output csub-heading-eDB458-8HI noBorder radius0 none" data-animation-class style=""><div><h2>1x Demisous-sol</h2><h2>1x 1e étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-X-Zufpq8Ah" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-X-Zufpq8Ah text-output csub-heading-X-Zufpq8Ah noBorder radius0 none" data-animation-class style=""><div><h2>1 130 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="section-qKXqWR4YrU" data-animation-class data-entrance-clip="1" style="" class="fullSection noBorder radius0 none c-section c-wrapper section-qKXqWR4YrU"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-rh4yMILdRq" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-rh4yMILdRq"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-9QARp-V-6m" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-9QARp-V-6m"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><!----><!--]--><!--[--><div id="heading-M9pQSKd1GF" data-animation-class style="" class="c-heading c-wrapper"><!----><!----><!----><div class="heading-M9pQSKd1GF text-output cheading-M9pQSKd1GF noBorder radius0 none" data-animation-class style=""><div><h1>4 <strong>½</strong> À LOUER</h1></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-AXTeGWxz-Ld" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-AXTeGWxz-Ld"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-D7l9_3bXCN" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-D7l9_3bXCN"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-VZfKufRwAo" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-VZfKufRwAo text-output csub-heading-VZfKufRwAo noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ rue Laurier à 995$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-AYfgPodJLS" data-animation-class style="" class="c-image-slider c-wrapper image-slider-AYfgPodJLS"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-AYfgPodJLS" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7845ec946582f7f28c.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7845ec946582f7f28c.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7845ec946582f7f28c.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7845ec946582f7f28c.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7845ec946582f7f28c.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7845ec946582f7f28c.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7802c31a6aad48b6e2.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7802c31a6aad48b6e2.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7802c31a6aad48b6e2.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7802c31a6aad48b6e2.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7802c31a6aad48b6e2.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7802c31a6aad48b6e2.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c78e94f5f553464bc0a.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c78e94f5f553464bc0a.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c78e94f5f553464bc0a.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c78e94f5f553464bc0a.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c78e94f5f553464bc0a.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c78e94f5f553464bc0a.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fcf594e75325.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd6c7866c8fca2c8e75326.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-bxWsuz23xa" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-bxWsuz23xa text-output csub-heading-bxWsuz23xa noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Richmond</strong></h2><h2><strong>(Richmond)</strong></h2><h2>Disponible<strong> 1er Septembre !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement</h2><h2></h2><h2></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-CpfFhBNjeH" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-CpfFhBNjeH"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-0XrNF11aND" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-0XrNF11aND"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-0ARgTVBi7B" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-0ARgTVBi7B text-output cparagraph-0ARgTVBi7B noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-3gxdR4PXcj" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-3gxdR4PXcj text-output cparagraph-3gxdR4PXcj noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-gxTc5y4fR8" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-gxTc5y4fR8 text-output cparagraph-gxTc5y4fR8 noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-K9WQSYfv-z" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-K9WQSYfv-z text-output csub-heading-K9WQSYfv-z noBorder radius0 none" data-animation-class style=""><div><h2>Demi sous-sol</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-dXhd_Pt3Ef" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-dXhd_Pt3Ef text-output csub-heading-dXhd_Pt3Ef noBorder radius0 none" data-animation-class style=""><div><h2>995 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-gXGaYC3mUA" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-gXGaYC3mUA"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-G_uKj5geJg" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-G_uKj5geJg text-output csub-heading-G_uKj5geJg noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ Bd St-Joseph à 1 050$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-U_p23De5wW" data-animation-class style="" class="c-image-slider c-wrapper image-slider-U_p23De5wW"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-U_p23De5wW" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709a.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709a.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709a.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709a.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709a.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709a.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb7fe5a8e31f5c776.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb7fe5a8e31f5c776.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb7fe5a8e31f5c776.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb7fe5a8e31f5c776.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb7fe5a8e31f5c776.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb7fe5a8e31f5c776.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae609da4cf581c2eda.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae609da4cf581c2eda.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae609da4cf581c2eda.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae609da4cf581c2eda.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae609da4cf581c2eda.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae609da4cf581c2eda.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae8219a56ed33a0796.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae8219a56ed33a0796.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae8219a56ed33a0796.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae8219a56ed33a0796.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae8219a56ed33a0796.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae8219a56ed33a0796.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-CPSsjYF9pH" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-CPSsjYF9pH text-output csub-heading-CPSsjYF9pH noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Centre-Ville</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> 1er Septembre !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement</h2><h2>Locker au sous-sol</h2><h2>Près de tous les services</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-FvKdm-vCdY" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-FvKdm-vCdY"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-G974YejYr8" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-G974YejYr8"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-13eT01scuR" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-13eT01scuR text-output cparagraph-13eT01scuR noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-lh3Hu7vp5F" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-lh3Hu7vp5F text-output cparagraph-lh3Hu7vp5F noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-dKojknH68T" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-dKojknH68T text-output cparagraph-dKojknH68T noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-DSf2kux6uj" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-DSf2kux6uj text-output csub-heading-DSf2kux6uj noBorder radius0 none" data-animation-class style=""><div><h2>Rez de chaussée</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-9_c7U6TEGM" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-9_c7U6TEGM text-output csub-heading-9_c7U6TEGM noBorder radius0 none" data-animation-class style=""><div><h2>1 050 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-maREh0vwPA" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-maREh0vwPA"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-FVVh8D9G3M" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-FVVh8D9G3M text-output csub-heading-FVVh8D9G3M noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ Bd St-Joseph à 1 100$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-9ftVM9OWVJ" data-animation-class style="" class="c-image-slider c-wrapper image-slider-9ftVM9OWVJ"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-9ftVM9OWVJ" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da4.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da4.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da4.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da4.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da4.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da4.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da9.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da9.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da9.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da9.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da9.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da9.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e5e892103d4821ec7.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e5e892103d4821ec7.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e5e892103d4821ec7.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e5e892103d4821ec7.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e5e892103d4821ec7.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e5e892103d4821ec7.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68ede69375f6a65816f.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68ede69375f6a65816f.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68ede69375f6a65816f.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68ede69375f6a65816f.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68ede69375f6a65816f.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68ede69375f6a65816f.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-bLU3UQb9Zi" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-bLU3UQb9Zi text-output csub-heading-bLU3UQb9Zi noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Centre-Ville</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> MAINTENANT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement</h2><h2>Locker au sous-sol</h2><h2>Près de tous les services</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-hjdHkZaMtO" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-hjdHkZaMtO"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-b7vKLa55Kt" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-b7vKLa55Kt"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-tKw7u61AHu" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-tKw7u61AHu text-output cparagraph-tKw7u61AHu noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-WACCbQ0V0r" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-WACCbQ0V0r text-output cparagraph-WACCbQ0V0r noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-lepTuUXuNh" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-lepTuUXuNh text-output cparagraph-lepTuUXuNh noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-RaYk9nFP_n" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-RaYk9nFP_n text-output csub-heading-RaYk9nFP_n noBorder radius0 none" data-animation-class style=""><div><h2>Rez de chaussée</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-l5Tul3SYB8" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-l5Tul3SYB8 text-output csub-heading-l5Tul3SYB8 noBorder radius0 none" data-animation-class style=""><div><h2>1 100 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-99GgjNdm-g" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-99GgjNdm-g"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-W39DtM6M4H" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-W39DtM6M4H"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-4nu7x0-N_h" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-4nu7x0-N_h text-output csub-heading-4nu7x0-N_h noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ rue Des Écoles à 1 155$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-K91ox7l21J" data-animation-class style="" class="c-image-slider c-wrapper image-slider-K91ox7l21J"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-K91ox7l21J" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f1cdebbc37d.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f1cdebbc37d.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f1cdebbc37d.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f1cdebbc37d.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f1cdebbc37d.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f1cdebbc37d.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f7bdf389290424619.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f7bdf389290424619.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f7bdf389290424619.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f7bdf389290424619.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f7bdf389290424619.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f7bdf389290424619.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f2ce1bbc37e.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f2ce1bbc37e.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f2ce1bbc37e.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f2ce1bbc37e.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f2ce1bbc37e.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f2ce1bbc37e.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f4dd428d6a997568d.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f4dd428d6a997568d.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f4dd428d6a997568d.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f4dd428d6a997568d.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f4dd428d6a997568d.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f4dd428d6a997568d.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-Gpy-SIZp54" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-Gpy-SIZp54 text-output csub-heading-Gpy-SIZp54 noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Centre-Ville</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> MAINTENANT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement</h2><h2>Locker sur balcon</h2><h2>Près de tous les services</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-R1cm8G6K1l" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-R1cm8G6K1l"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-ixkz30M7i1" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-ixkz30M7i1"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-4HAX9Ca-EU" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-4HAX9Ca-EU text-output cparagraph-4HAX9Ca-EU noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-ED8lURGOhn" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-ED8lURGOhn text-output cparagraph-ED8lURGOhn noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-kMr0FdCf6m" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-kMr0FdCf6m text-output cparagraph-kMr0FdCf6m noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-dwtEAsmPGN" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-dwtEAsmPGN text-output csub-heading-dwtEAsmPGN noBorder radius0 none" data-animation-class style=""><div><h2>3e étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-bdOY_Wzviu" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-bdOY_Wzviu text-output csub-heading-bdOY_Wzviu noBorder radius0 none" data-animation-class style=""><div><h2>1 155 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-Q4wU3xhreo" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-Q4wU3xhreo"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-GcoF6xvHoC" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-GcoF6xvHoC text-output csub-heading-GcoF6xvHoC noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ Boul. St-Joseph à 1 195$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-CeKWjGzG_E" data-animation-class style="" class="c-image-slider c-wrapper image-slider-CeKWjGzG_E"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-CeKWjGzG_E" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668bd29234e16dc1c04d.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668bd29234e16dc1c04d.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668bd29234e16dc1c04d.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668bd29234e16dc1c04d.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668bd29234e16dc1c04d.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668bd29234e16dc1c04d.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b02c31a7784478311.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b02c31a7784478311.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b02c31a7784478311.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b02c31a7784478311.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b02c31a7784478311.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b02c31a7784478311.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-8ux0_f0cmY" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-8ux0_f0cmY text-output csub-heading-8ux0_f0cmY noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Boul. St-Joseph</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>MAINTENANT !!</strong></h2><h2>Chauffage et électricité inclus</h2><h2>1 Stationnement</h2><h2>Près de tous les services</h2><h2></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-vKeRqlqG86" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-vKeRqlqG86"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-NMqctrhnDW" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-NMqctrhnDW"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-HgG_vA5ANo" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-HgG_vA5ANo text-output cparagraph-HgG_vA5ANo noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-id85VbnU5o" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-id85VbnU5o text-output cparagraph-id85VbnU5o noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-xe9HN-aaED" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-xe9HN-aaED text-output cparagraph-xe9HN-aaED noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-pSNIku96t9" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-pSNIku96t9 text-output csub-heading-pSNIku96t9 noBorder radius0 none" data-animation-class style=""><div><h2>Demi sous-sol</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-4Ip_0iBotH" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-4Ip_0iBotH text-output csub-heading-4Ip_0iBotH noBorder radius0 none" data-animation-class style=""><div><h2>1 195 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-0BdY2ssDlw" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-0BdY2ssDlw desktop-only mobile-only"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-szNTcYEybj" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-szNTcYEybj text-output csub-heading-szNTcYEybj noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ rue Toupin à 1 150$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-eRqZbtNmeA" data-animation-class style="" class="c-image-slider c-wrapper image-slider-eRqZbtNmeA"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-eRqZbtNmeA" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3b003fa7349861bcb.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3b003fa7349861bcb.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3b003fa7349861bcb.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3b003fa7349861bcb.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3b003fa7349861bcb.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3b003fa7349861bcb.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702f0feab6304f.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702f0feab6304f.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702f0feab6304f.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702f0feab6304f.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702f0feab6304f.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702f0feab6304f.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702fbd6cb6304e.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702fbd6cb6304e.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702fbd6cb6304e.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702fbd6cb6304e.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702fbd6cb6304e.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c336702fbd6cb6304e.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3ab7117e06e7fe316.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a867c3bffadf69df77f331.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-ceUBsq0kuj" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-ceUBsq0kuj text-output csub-heading-ceUBsq0kuj noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur St-Pierre</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> 1er Mars !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement</h2><p>Locker sur balcon arrière</p><h2>Immeuble QUADRUPLEX</h2><h2>Près de tous les services</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-m_Yt_bXEHI" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-m_Yt_bXEHI"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-UWRaDC9Grz" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-UWRaDC9Grz"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-ZidcqoUw0n" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-ZidcqoUw0n text-output cparagraph-ZidcqoUw0n noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-koCOWm6nld" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-koCOWm6nld text-output cparagraph-koCOWm6nld noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-e7_Jz94run" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-e7_Jz94run text-output cparagraph-e7_Jz94run noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-jNzPlB9vbm" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-jNzPlB9vbm text-output csub-heading-jNzPlB9vbm noBorder radius0 none" data-animation-class style=""><div><h2>2e étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-YgPyfOmE5Z" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-YgPyfOmE5Z text-output csub-heading-YgPyfOmE5Z noBorder radius0 none" data-animation-class style=""><div><h2>1 150 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-JjVPYMgs6z" data-animation-class style="" class="c-button c-wrapper button-JjVPYMgs6z"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><!----><!----><button data-animation-class="" id="button-JjVPYMgs6z_btn" style="" class="cbutton-JjVPYMgs6z custom btn-vp btn-hp noBorder radius5 none" aria-label="LOUER "><div style="" class="main-heading-group"><div class="button-icon-start"></div><div class="main-heading-button">LOUER</div><div class="button-icon-end"></div></div><!----><div style="display:none;left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);" class="btn-loader-position"><div style="display:none;" class="v-spinner"><div class="v-moon v-moon1" style="height:30px;width:30px;border-radius:100%;"><div class="v-moon v-moon2" style="height:4.285714285714286px;width:4.285714285714286px;border-radius:100%;top:12.857142857142858px;background-color:rgb(255, 255, 255);"></div><div class="v-moon v-moon3" style="height:30px;width:30px;border-radius:100%;border:4.285714285714286px solid rgb(255, 255, 255);"></div></div></div></div></button><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-eZcUywOtoD" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-eZcUywOtoD desktop-only mobile-only"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-dj_hT0pl6A" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-dj_hT0pl6A text-output csub-heading-dj_hT0pl6A noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ rue Des Écoles à 1 155$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-0DcKAWgheV" data-animation-class style="" class="c-image-slider c-wrapper image-slider-0DcKAWgheV"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-0DcKAWgheV" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-7 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf38e26c3e47de.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf38e26c3e47de.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf38e26c3e47de.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf38e26c3e47de.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf38e26c3e47de.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf38e26c3e47de.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b36702f6869b7cea5.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b36702f6869b7cea5.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b36702f6869b7cea5.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b36702f6869b7cea5.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b36702f6869b7cea5.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b36702f6869b7cea5.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf384e1d3e47df.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf384e1d3e47df.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf384e1d3e47df.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf384e1d3e47df.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf384e1d3e47df.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9b7bdf384e1d3e47df.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa1d2487bdd9.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa1d2487bdd9.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa1d2487bdd9.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa1d2487bdd9.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa1d2487bdd9.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa1d2487bdd9.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bbffadf782579ab84.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bbffadf782579ab84.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bbffadf782579ab84.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bbffadf782579ab84.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bbffadf782579ab84.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bbffadf782579ab84.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-7 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bedd087c42f140fee.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a86d9bb003fa4eec87bdda.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-wuMQ4HlRJH" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-wuMQ4HlRJH text-output csub-heading-wuMQ4HlRJH noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Centre-Ville</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> 1er Juillet !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement</h2><h2>balcon</h2><h2>Près de tous les services</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-xqyNcqfIXP" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-xqyNcqfIXP"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-7TnZnvp0Oz" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-7TnZnvp0Oz"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-EhP-Pqjb6A" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-EhP-Pqjb6A text-output cparagraph-EhP-Pqjb6A noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-5SPJVqr9eu" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-5SPJVqr9eu text-output cparagraph-5SPJVqr9eu noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-J0uGvb7QgA" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-J0uGvb7QgA text-output cparagraph-J0uGvb7QgA noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-Ie6JP0sg_S" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-Ie6JP0sg_S text-output csub-heading-Ie6JP0sg_S noBorder radius0 none" data-animation-class style=""><div><h2>3e étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-wTHPsVslDr" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-wTHPsVslDr text-output csub-heading-wTHPsVslDr noBorder radius0 none" data-animation-class style=""><div><h2>1 155 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-zuF2gWpWDs" data-animation-class style="" class="c-button c-wrapper button-zuF2gWpWDs"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><!----><!----><button data-animation-class="" id="button-zuF2gWpWDs_btn" style="" class="cbutton-zuF2gWpWDs custom btn-vp btn-hp noBorder radius5 none" aria-label="LOUER "><div style="" class="main-heading-group"><div class="button-icon-start"></div><div class="main-heading-button">LOUER</div><div class="button-icon-end"></div></div><!----><div style="display:none;left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);" class="btn-loader-position"><div style="display:none;" class="v-spinner"><div class="v-moon v-moon1" style="height:30px;width:30px;border-radius:100%;"><div class="v-moon v-moon2" style="height:4.285714285714286px;width:4.285714285714286px;border-radius:100%;top:12.857142857142858px;background-color:rgb(255, 255, 255);"></div><div class="v-moon v-moon3" style="height:30px;width:30px;border-radius:100%;border:4.285714285714286px solid rgb(255, 255, 255);"></div></div></div></div></button><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-L8zAeZtaIl" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-L8zAeZtaIl desktop-only mobile-only"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-QFGuL_DcuK" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-QFGuL_DcuK text-output csub-heading-QFGuL_DcuK noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ rue Toupin à 1 225$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-riO8-nRuP5" data-animation-class style="" class="c-image-slider c-wrapper image-slider-riO8-nRuP5"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-riO8-nRuP5" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69822b17d0487326c2ceaee7.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-tjEV3jdfXf" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-tjEV3jdfXf text-output csub-heading-tjEV3jdfXf noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur St-Pierre</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> 1er Juillet !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement <strong>+ Garage</strong></h2><p>Locker sur balcon arrière</p><h2>Immeuble QUADRUPLEX</h2><h2>Près de tous les services</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-CGWejANV07" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-CGWejANV07"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-6sdGUnXWaj" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-6sdGUnXWaj"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-6CKq1pBHHQ" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-6CKq1pBHHQ text-output cparagraph-6CKq1pBHHQ noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-NmI3r-dZjg" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-NmI3r-dZjg text-output cparagraph-NmI3r-dZjg noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-t6zTPAahzh" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-t6zTPAahzh text-output cparagraph-t6zTPAahzh noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-SnOeR9XLND" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-SnOeR9XLND text-output csub-heading-SnOeR9XLND noBorder radius0 none" data-animation-class style=""><div><h2>2e étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-wEYEICtBom" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-wEYEICtBom text-output csub-heading-wEYEICtBom noBorder radius0 none" data-animation-class style=""><div><h2>1 225 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-VVbM5fio9Y" data-animation-class style="" class="c-button c-wrapper button-VVbM5fio9Y"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><!----><!----><button data-animation-class="" id="button-VVbM5fio9Y_btn" style="" class="cbutton-VVbM5fio9Y custom btn-vp btn-hp noBorder radius5 none" aria-label="LOUER "><div style="" class="main-heading-group"><div class="button-icon-start"></div><div class="main-heading-button">LOUER</div><div class="button-icon-end"></div></div><!----><div style="display:none;left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);" class="btn-loader-position"><div style="display:none;" class="v-spinner"><div class="v-moon v-moon1" style="height:30px;width:30px;border-radius:100%;"><div class="v-moon v-moon2" style="height:4.285714285714286px;width:4.285714285714286px;border-radius:100%;top:12.857142857142858px;background-color:rgb(255, 255, 255);"></div><div class="v-moon v-moon3" style="height:30px;width:30px;border-radius:100%;border:4.285714285714286px solid rgb(255, 255, 255);"></div></div></div></div></button><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-OHL99Fr2yl" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-OHL99Fr2yl desktop-only mobile-only"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-ipOgPBQQgu" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-ipOgPBQQgu text-output csub-heading-ipOgPBQQgu noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ rue Melançon à 1 295$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-ZJsr3B4gSR" data-animation-class style="" class="c-image-slider c-wrapper image-slider-ZJsr3B4gSR"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-ZJsr3B4gSR" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880407bdf3871cf436980.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880407bdf3871cf436980.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880407bdf3871cf436980.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880407bdf3871cf436980.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880407bdf3871cf436980.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880407bdf3871cf436980.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65882e5c044f6.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65882e5c044f6.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65882e5c044f6.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65882e5c044f6.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65882e5c044f6.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65882e5c044f6.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65878c9c044f7.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65878c9c044f7.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65878c9c044f7.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65878c9c044f7.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65878c9c044f7.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a880406fa65878c9c044f7.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040618c8d7b78cd0ad6.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040618c8d7b78cd0ad6.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040618c8d7b78cd0ad6.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040618c8d7b78cd0ad6.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040618c8d7b78cd0ad6.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040618c8d7b78cd0ad6.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88040b003fadd9a8ce521.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a8804036702f9e0fbce9c9.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-LlqGzljPYr" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-LlqGzljPYr text-output csub-heading-LlqGzljPYr noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur près du Centre-Ville</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> 1er Juillet !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement</h2><h2>Balcon</h2><h2><strong>INTERNET COMPRIS</strong></h2><h2>Immeuble <strong>NEUF</strong></h2><h2>Thermopompe et échangeur d'air</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-1tUj13yrU_" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-1tUj13yrU_"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-cp3pdl5s08" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-cp3pdl5s08"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-JXWmkCoDvo" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-JXWmkCoDvo text-output cparagraph-JXWmkCoDvo noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-dUBxgkE7tO" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-dUBxgkE7tO text-output cparagraph-dUBxgkE7tO noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-yxIDpMQVnK" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-yxIDpMQVnK text-output cparagraph-yxIDpMQVnK noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-WEH-tuxYZS" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-WEH-tuxYZS text-output csub-heading-WEH-tuxYZS noBorder radius0 none" data-animation-class style=""><div><h2>1er étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-UvAgDkge1E" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-UvAgDkge1E text-output csub-heading-UvAgDkge1E noBorder radius0 none" data-animation-class style=""><div><h2>1 295 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-7eUMBF9xr_" data-animation-class style="" class="c-button c-wrapper button-7eUMBF9xr_"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><!----><!----><button data-animation-class="" id="button-7eUMBF9xr__btn" style="" class="cbutton-7eUMBF9xr_ custom btn-vp btn-hp noBorder radius5 none" aria-label="LOUER "><div style="" class="main-heading-group"><div class="button-icon-start"></div><div class="main-heading-button">LOUER</div><div class="button-icon-end"></div></div><!----><div style="display:none;left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);" class="btn-loader-position"><div style="display:none;" class="v-spinner"><div class="v-moon v-moon1" style="height:30px;width:30px;border-radius:100%;"><div class="v-moon v-moon2" style="height:4.285714285714286px;width:4.285714285714286px;border-radius:100%;top:12.857142857142858px;background-color:rgb(255, 255, 255);"></div><div class="v-moon v-moon3" style="height:30px;width:30px;border-radius:100%;border:4.285714285714286px solid rgb(255, 255, 255);"></div></div></div></div></button><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-sP29GM9ciq" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-sP29GM9ciq"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-zgAUEiWTty" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-zgAUEiWTty text-output csub-heading-zgAUEiWTty noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ Rue Melançon à 1 295$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-achszaW5L1" data-animation-class style="" class="c-image-slider c-wrapper image-slider-achszaW5L1"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-achszaW5L1" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedbb06f534879e0ed9.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedbb06f534879e0ed9.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedbb06f534879e0ed9.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedbb06f534879e0ed9.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedbb06f534879e0ed9.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedbb06f534879e0ed9.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb02969461567c096.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb02969461567c096.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb02969461567c096.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb02969461567c096.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb02969461567c096.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb02969461567c096.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb00a695176d152db.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb00a695176d152db.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb00a695176d152db.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb00a695176d152db.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb00a695176d152db.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedb00a695176d152db.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bed043da36483b4976c.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd5bedf77cd2c0645d40cb.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-RqiA9xF_i7" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-RqiA9xF_i7 text-output csub-heading-RqiA9xF_i7 noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur du Cegep</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>IMMÉDIATEMENT </strong><br>Chauffage et électricité à vos frais<br><strong>INTERNET COMPRIS</strong></h2><h2>1 Stationnement</h2><h2>Immeuble<strong> NEUF</strong><br>Près du cégep et de tous les services</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-meTU-K_rSB" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-meTU-K_rSB"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-ls71cZvTn-" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-ls71cZvTn-"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-kFmEo68CHO" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-kFmEo68CHO text-output cparagraph-kFmEo68CHO noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-zP3JRLb_6T" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-zP3JRLb_6T text-output cparagraph-zP3JRLb_6T noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-tJxuqEhs9W" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-tJxuqEhs9W text-output cparagraph-tJxuqEhs9W noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-ME_G3AOWS4" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-ME_G3AOWS4 text-output csub-heading-ME_G3AOWS4 noBorder radius0 none" data-animation-class style=""><div><h2>Demi sous-sol</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading--0Wfz7yweG" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading--0Wfz7yweG text-output csub-heading--0Wfz7yweG noBorder radius0 none" data-animation-class style=""><div><h2>1 295 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-hYTTIOKBfG" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-hYTTIOKBfG"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-GydWbufL23" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-GydWbufL23"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-_F7fq4Crrg" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-_F7fq4Crrg text-output csub-heading-_F7fq4Crrg noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ Boul. Lemire à 1 325$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-0_dT61oRor" data-animation-class style="" class="c-image-slider c-wrapper image-slider-0_dT61oRor"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-0_dT61oRor" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-7 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a8edd087a4ba1d9de5.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a8edd087a4ba1d9de5.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a8edd087a4ba1d9de5.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a8edd087a4ba1d9de5.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a8edd087a4ba1d9de5.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a8edd087a4ba1d9de5.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf00ef8316b0.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf00ef8316b0.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf00ef8316b0.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf00ef8316b0.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf00ef8316b0.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf00ef8316b0.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadfde998316db.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadfde998316db.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadfde998316db.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadfde998316db.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadfde998316db.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadfde998316db.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf43b28316bd.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf43b28316bd.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf43b28316bd.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf43b28316bd.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf43b28316bd.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf43b28316bd.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a836702f3857c10c06.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a836702f3857c10c06.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a836702f3857c10c06.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a836702f3857c10c06.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a836702f3857c10c06.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a836702f3857c10c06.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-7 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-93vSmZiclD" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-93vSmZiclD text-output csub-heading-93vSmZiclD noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Boul. Lemire</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>MAINTENANT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 stationnement</h2><h2><strong>INTERNET COMPRIS</strong></h2><h2>Thermopompe et échangeur d'air</h2><h2>Immeuble récent</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-gvJ5NslZYY" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-gvJ5NslZYY"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-gYjurgTxv8" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-gYjurgTxv8"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-3LKUiLrQ26" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-3LKUiLrQ26 text-output cparagraph-3LKUiLrQ26 noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-sPkFZRxwOi" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-sPkFZRxwOi text-output cparagraph-sPkFZRxwOi noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-Co8Skt1R_M" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-Co8Skt1R_M text-output cparagraph-Co8Skt1R_M noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-bJTnLuUU6D" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-bJTnLuUU6D text-output csub-heading-bJTnLuUU6D noBorder radius0 none" data-animation-class style=""><div><h2>1 au 1e étage</h2><h2>2 au 2e étage</h2><h2>2 au 3e étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-xc5tqaes3e" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-xc5tqaes3e text-output csub-heading-xc5tqaes3e noBorder radius0 none" data-animation-class style=""><div><h2>1 405 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-tN2w8jSThI" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-tN2w8jSThI"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-WpuH1yb2dA" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-WpuH1yb2dA text-output csub-heading-WpuH1yb2dA noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ Boul. St-Joseph à 1 395$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-1_8JMdOs2R" data-animation-class style="" class="c-image-slider c-wrapper image-slider-1_8JMdOs2R"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-1_8JMdOs2R" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64b003faaca4934a5f.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64b003faaca4934a5f.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64b003faaca4934a5f.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64b003faaca4934a5f.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64b003faaca4934a5f.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64b003faaca4934a5f.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a644b6c772c2f16f7d2.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a644b6c772c2f16f7d2.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a644b6c772c2f16f7d2.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a644b6c772c2f16f7d2.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a644b6c772c2f16f7d2.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a644b6c772c2f16f7d2.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf38b9bc49a189.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf38b9bc49a189.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf38b9bc49a189.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf38b9bc49a189.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf38b9bc49a189.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf38b9bc49a189.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a64c7e71f173ddb5b3e.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89a647bdf380a5749a18a.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-S7qiVAX1qU" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-S7qiVAX1qU text-output csub-heading-S7qiVAX1qU noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Boul. St-Joseph</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>MAINTENANT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 stationnement</h2><h2><strong>INTERNET COMPRIS</strong></h2><h2>Thermopompe et échangeur d'air</h2><h2>Immeuble<strong> NEUF</strong></h2><h2><strong>Locker intérieur</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-AkFudryisy" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-AkFudryisy"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-Hu9p3uB0oJ" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-Hu9p3uB0oJ"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-6oy5acXZcM" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-6oy5acXZcM text-output cparagraph-6oy5acXZcM noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-u1b81koA64" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-u1b81koA64 text-output cparagraph-u1b81koA64 noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-Ug1hGViFi0" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-Ug1hGViFi0 text-output cparagraph-Ug1hGViFi0 noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-CznAmDZC9h" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-CznAmDZC9h text-output csub-heading-CznAmDZC9h noBorder radius0 none" data-animation-class style=""><div><h2>1er étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-ItaE4IW413" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-ItaE4IW413 text-output csub-heading-ItaE4IW413 noBorder radius0 none" data-animation-class style=""><div><h2>1 395 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-PDRiNvrIye" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-PDRiNvrIye desktop-only mobile-only"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-vFeaZeoNAp" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-vFeaZeoNAp text-output csub-heading-vFeaZeoNAp noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ rue Melançon à 1 295$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-LwgINnCEal" data-animation-class style="" class="c-image-slider c-wrapper image-slider-LwgINnCEal"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-LwgINnCEal" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882216fa658082ec0c9cf.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882216fa658082ec0c9cf.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882216fa658082ec0c9cf.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882216fa658082ec0c9cf.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882216fa658082ec0c9cf.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882216fa658082ec0c9cf.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221c7e71fbf06d592db.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221c7e71fbf06d592db.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221c7e71fbf06d592db.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221c7e71fbf06d592db.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221c7e71fbf06d592db.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221c7e71fbf06d592db.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf385a3043e7b3.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf385a3043e7b3.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf385a3043e7b3.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf385a3043e7b3.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf385a3043e7b3.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf385a3043e7b3.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a88221618c8dad5ecd8db0.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a882217bdf38fb2c43e7b4.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-zKFW_sRIcJ" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-zKFW_sRIcJ text-output csub-heading-zKFW_sRIcJ noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur près du Centre-Ville</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> 1er Juillet !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement</h2><h2>Balcon</h2><h2><strong>INTERNET COMPRIS</strong></h2><h2>Immeuble <strong>NEUF</strong></h2><h2>Thermopompe et échangeur d'air</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-N2zOEM0D9T" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-N2zOEM0D9T"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-gnCK3IzMW4" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-gnCK3IzMW4"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-vVrlnmHbkZ" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-vVrlnmHbkZ text-output cparagraph-vVrlnmHbkZ noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-r9oejefpDS" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-r9oejefpDS text-output cparagraph-r9oejefpDS noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-dZm5pCA3l0" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-dZm5pCA3l0 text-output cparagraph-dZm5pCA3l0 noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-AkGlLcCq8C" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-AkGlLcCq8C text-output csub-heading-AkGlLcCq8C noBorder radius0 none" data-animation-class style=""><div><h2>Demi sous-sol</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-hqL5WiSwav" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-hqL5WiSwav text-output csub-heading-hqL5WiSwav noBorder radius0 none" data-animation-class style=""><div><h2>1 295 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-K56JSZZeV0" data-animation-class style="" class="c-button c-wrapper button-K56JSZZeV0"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><!----><!----><button data-animation-class="" id="button-K56JSZZeV0_btn" style="" class="cbutton-K56JSZZeV0 custom btn-vp btn-hp noBorder radius5 none" aria-label="LOUER "><div style="" class="main-heading-group"><div class="button-icon-start"></div><div class="main-heading-button">LOUER</div><div class="button-icon-end"></div></div><!----><div style="display:none;left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);" class="btn-loader-position"><div style="display:none;" class="v-spinner"><div class="v-moon v-moon1" style="height:30px;width:30px;border-radius:100%;"><div class="v-moon v-moon2" style="height:4.285714285714286px;width:4.285714285714286px;border-radius:100%;top:12.857142857142858px;background-color:rgb(255, 255, 255);"></div><div class="v-moon v-moon3" style="height:30px;width:30px;border-radius:100%;border:4.285714285714286px solid rgb(255, 255, 255);"></div></div></div></div></button><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-4BWvVkisHn" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-4BWvVkisHn desktop-only mobile-only"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-ZeeJaB1GkS" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-ZeeJaB1GkS text-output csub-heading-ZeeJaB1GkS noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ Boul. Foucault à 1 365$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-U_M5ypvwFo" data-animation-class style="" class="c-image-slider c-wrapper image-slider-U_M5ypvwFo"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-U_M5ypvwFo" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd4dd428ca0e997f53.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd4dd428ca0e997f53.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd4dd428ca0e997f53.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd4dd428ca0e997f53.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd4dd428ca0e997f53.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd4dd428ca0e997f53.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd7bdf38411d446151.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd7bdf38411d446151.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd7bdf38411d446151.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd7bdf38411d446151.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd7bdf38411d446151.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd7bdf38411d446151.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bdc7e71f99edd60f08.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bdc7e71f99edd60f08.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bdc7e71f99edd60f08.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bdc7e71f99edd60f08.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bdc7e71f99edd60f08.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bdc7e71f99edd60f08.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a883bd618c8d747bce0d06.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/69823750b7e498e56b03e5bc.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-mDjEEXBqNA" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-mDjEEXBqNA text-output csub-heading-mDjEEXBqNA noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur St-Charles</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> IMMÉDIATEMENT</strong></h2><h2>Chauffage et électricité à vos frais</h2><p>1 Stationnement</p><h2>1 Balcon</h2><h2>Locker intérieur</h2><h2>Thermopompe et échangeur d'air</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-gmEgVmoveS" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-gmEgVmoveS"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-p5GadL5G_x" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-p5GadL5G_x"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-HNpWOU0yiZ" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-HNpWOU0yiZ text-output cparagraph-HNpWOU0yiZ noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-gGbLc7KkF4" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-gGbLc7KkF4 text-output cparagraph-gGbLc7KkF4 noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-hXYfvK6iKl" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-hXYfvK6iKl text-output cparagraph-hXYfvK6iKl noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-EomoPmN2_e" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-EomoPmN2_e text-output csub-heading-EomoPmN2_e noBorder radius0 none" data-animation-class style=""><div><h2>Demi sous-sol</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-3YlFDH-9YY" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-3YlFDH-9YY text-output csub-heading-3YlFDH-9YY noBorder radius0 none" data-animation-class style=""><div><h2>1 365 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-Del9cF1yZc" data-animation-class style="" class="c-button c-wrapper button-Del9cF1yZc"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><!----><!----><button data-animation-class="" id="button-Del9cF1yZc_btn" style="" class="cbutton-Del9cF1yZc custom btn-vp btn-hp noBorder radius5 none" aria-label="LOUER "><div style="" class="main-heading-group"><div class="button-icon-start"></div><div class="main-heading-button">LOUER</div><div class="button-icon-end"></div></div><!----><div style="display:none;left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);" class="btn-loader-position"><div style="display:none;" class="v-spinner"><div class="v-moon v-moon1" style="height:30px;width:30px;border-radius:100%;"><div class="v-moon v-moon2" style="height:4.285714285714286px;width:4.285714285714286px;border-radius:100%;top:12.857142857142858px;background-color:rgb(255, 255, 255);"></div><div class="v-moon v-moon3" style="height:30px;width:30px;border-radius:100%;border:4.285714285714286px solid rgb(255, 255, 255);"></div></div></div></div></button><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-M012EiU4jM" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-M012EiU4jM"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-xgtdv2MejO" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-xgtdv2MejO text-output csub-heading-xgtdv2MejO noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ Boul. St-Joseph à 1 415$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-lCY3OTh4iK" data-animation-class style="" class="c-image-slider c-wrapper image-slider-lCY3OTh4iK"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-lCY3OTh4iK" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d36702fa8fbc32f55.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d36702fa8fbc32f55.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d36702fa8fbc32f55.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d36702fa8fbc32f55.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d36702fa8fbc32f55.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d36702fa8fbc32f55.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d7bdf384f6d49d010.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d7bdf384f6d49d010.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d7bdf384f6d49d010.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d7bdf384f6d49d010.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d7bdf384f6d49d010.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d7bdf384f6d49d010.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d6fa658449cc6dadc.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d6fa658449cc6dadc.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d6fa658449cc6dadc.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d6fa658449cc6dadc.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d6fa658449cc6dadc.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d6fa658449cc6dadc.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-zSqzZqRNZ5" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-zSqzZqRNZ5 text-output csub-heading-zSqzZqRNZ5 noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Boul. St-Joseph</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>1 Disponible <strong>IMMÉDIATEMENT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 stationnement</h2><h2><strong>INTERNET COMPRIS</strong></h2><h2>Thermopompe et échangeur d'air</h2><h2>Immeuble<strong> NEUF</strong></h2><h2><strong>Locker intérieur</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-ZwxJLUTKEd" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-ZwxJLUTKEd"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-h-xrGyW5sh" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-h-xrGyW5sh"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-GCGeBmgM8d" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-GCGeBmgM8d text-output cparagraph-GCGeBmgM8d noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-phgBpwMWtG" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-phgBpwMWtG text-output cparagraph-phgBpwMWtG noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-t9RQHTlDgr" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-t9RQHTlDgr text-output cparagraph-t9RQHTlDgr noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-3HV33vvHcK" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-3HV33vvHcK text-output csub-heading-3HV33vvHcK noBorder radius0 none" data-animation-class style=""><div><h1></h1><h2>1x demi sous-sol</h2><h2>1x 3e étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-f45nCryqr0" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-f45nCryqr0 text-output csub-heading-f45nCryqr0 noBorder radius0 none" data-animation-class style=""><div><h2>1 415 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-0KfYta8rZb" data-animation-class data-entrance-clip="1" style="" class="row-align-center c-row c-wrapper row-0KfYta8rZb"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-IeMQJtd4Vs" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-IeMQJtd4Vs"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-LgL5CdZHZ1" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-LgL5CdZHZ1 text-output csub-heading-LgL5CdZHZ1 noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ Boul. St-Joseph à 1 415$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-ezf0k7Duh5" data-animation-class style="" class="c-image-slider c-wrapper image-slider-ezf0k7Duh5"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-ezf0k7Duh5" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7836702f8540c3b020.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7836702f8540c3b020.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7836702f8540c3b020.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7836702f8540c3b020.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7836702f8540c3b020.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7836702f8540c3b020.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa65829a7c75a92.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa65829a7c75a92.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa65829a7c75a92.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa65829a7c75a92.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa65829a7c75a92.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa65829a7c75a92.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa658c1c6c75a91.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa658c1c6c75a91.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa658c1c6c75a91.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa658c1c6c75a91.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa658c1c6c75a91.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e786fa658c1c6c75a91.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e7822141ba9a3320737.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89e78bffadf9ec885d467.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-T1biCJ5D-g" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-T1biCJ5D-g text-output csub-heading-T1biCJ5D-g noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Boul. St-Joseph</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>MAINTENANT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 stationnement</h2><h2><strong>INTERNET COMPRIS</strong></h2><h2>Thermopompe et échangeur d'air</h2><h2>Immeuble<strong> NEUF</strong></h2><h2><strong>Locker intérieur</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-M4W9BYnUJ5" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-M4W9BYnUJ5"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-o_l0aakC0u" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-o_l0aakC0u"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-yf3nKbi6UZ" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-yf3nKbi6UZ text-output cparagraph-yf3nKbi6UZ noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-rixQIlOEog" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-rixQIlOEog text-output cparagraph-rixQIlOEog noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-7oxcxXymqD" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-7oxcxXymqD text-output cparagraph-7oxcxXymqD noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-Ca7Mh_I0dq" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-Ca7Mh_I0dq text-output csub-heading-Ca7Mh_I0dq noBorder radius0 none" data-animation-class style=""><div><h2>Demi sous-sol</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading--HCzqN8OSl" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading--HCzqN8OSl text-output csub-heading--HCzqN8OSl noBorder radius0 none" data-animation-class style=""><div><h2>1 415 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-Hx1m6Q308r" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-Hx1m6Q308r"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-BEyluUicBe" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-BEyluUicBe text-output csub-heading-BEyluUicBe noBorder radius0 none" data-animation-class style=""><div><h2><strong>4 ½ Boul. St-Joseph à 1 495$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-shO7zM36bG" data-animation-class style="" class="c-image-slider c-wrapper image-slider-shO7zM36bG"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-shO7zM36bG" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e87c93b27127984ab.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e87c93b27127984ab.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e87c93b27127984ab.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e87c93b27127984ab.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e87c93b27127984ab.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e87c93b27127984ab.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e45ec9486e3f741ae.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e45ec9486e3f741ae.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e45ec9486e3f741ae.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e45ec9486e3f741ae.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e45ec9486e3f741ae.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e45ec9486e3f741ae.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e02c31a72f24807d6.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e02c31a72f24807d6.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e02c31a72f24807d6.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e02c31a72f24807d6.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e02c31a72f24807d6.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e02c31a72f24807d6.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690e66c8fc832ae69f37.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd690ec85939055e37da24.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading--kCWjhM_-p" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading--kCWjhM_-p text-output csub-heading--kCWjhM_-p noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Boul. St-Joseph</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>MAINTENANT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>2 stationnement</h2><h2><strong>INTERNET COMPRIS</strong><br>1 Remise</h2><h2>Thermopompe et échangeur d'air</h2><h2>Immeuble<strong> NEUF</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-BIkNjvRLaq" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-BIkNjvRLaq"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-d5P6cDv7cw" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-d5P6cDv7cw"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-pX2ZjZ44PA" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-pX2ZjZ44PA text-output cparagraph-pX2ZjZ44PA noBorder radius0 none" data-animation-class style=""><div><p>2</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-GI4XtUk08h" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-GI4XtUk08h text-output cparagraph-GI4XtUk08h noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-hRivWOY3Y6" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-hRivWOY3Y6 text-output cparagraph-hRivWOY3Y6 noBorder radius0 none" data-animation-class style=""><div><p>4 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-dK9TIFstoS" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-dK9TIFstoS text-output csub-heading-dK9TIFstoS noBorder radius0 none" data-animation-class style=""><div><h2>2x 2E étage<br>1x 3E étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-FZbW4ftYFz" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-FZbW4ftYFz text-output csub-heading-FZbW4ftYFz noBorder radius0 none" data-animation-class style=""><div><h2>1 495 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="section-PwCpNpl1z5" data-animation-class data-entrance-clip="1" style="" class="fullSection noBorder radius0 none c-section c-wrapper section-PwCpNpl1z5"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-1leuN7S1Na" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-1leuN7S1Na"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-_L5Va54ZgF" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-_L5Va54ZgF"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><!----><!--]--><!--[--><div id="heading-oHkotcAr7_" data-animation-class style="" class="c-heading c-wrapper"><!----><!----><!----><div class="heading-oHkotcAr7_ text-output cheading-oHkotcAr7_ noBorder radius0 none" data-animation-class style=""><div><h1>5 <strong>½</strong> À LOUER</h1></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-VVzmQ44QDs" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-VVzmQ44QDs"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-Vo1fx4hJqF" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-Vo1fx4hJqF"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-UxnsjA280F" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-UxnsjA280F text-output csub-heading-UxnsjA280F noBorder radius0 none" data-animation-class style=""><div><h2><strong>5 ½ rue Lindsay à 1 095$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-8gudlnPSki" data-animation-class style="" class="c-image-slider c-wrapper image-slider-8gudlnPSki"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-8gudlnPSki" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-7 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f8.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f8.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f8.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f8.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f8.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f8.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca8219a56ed3286211.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca8219a56ed3286211.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca8219a56ed3286211.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca8219a56ed3286211.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca8219a56ed3286211.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca8219a56ed3286211.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca609da4cf580770eb.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca609da4cf580770eb.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca609da4cf580770eb.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca609da4cf580770eb.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca609da4cf580770eb.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca609da4cf580770eb.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca3520888034e96da7.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca3520888034e96da7.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca3520888034e96da7.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca3520888034e96da7.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca3520888034e96da7.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca3520888034e96da7.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca18a264df53a06681.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca18a264df53a06681.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca18a264df53a06681.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca18a264df53a06681.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca18a264df53a06681.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7ca18a264df53a06681.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-7 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7d218a264df53a0670d.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68e7caf347f716a43a57f3.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-TNa9hlT-hb" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-TNa9hlT-hb text-output csub-heading-TNa9hlT-hb noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Centre ville</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>1er Août !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>Près de tous les services</h2><h2>1 locker sur balcon</h2><h2>1 stationnement</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-RIUdOvYKzr" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-RIUdOvYKzr"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-cw-hkPoo_O" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-cw-hkPoo_O"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-f-2T0u4S8H" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-f-2T0u4S8H text-output cparagraph-f-2T0u4S8H noBorder radius0 none" data-animation-class style=""><div><p>3</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-fPSjuUj-UJ" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-fPSjuUj-UJ text-output cparagraph-fPSjuUj-UJ noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-DkXSEa6Iol" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-DkXSEa6Iol text-output cparagraph-DkXSEa6Iol noBorder radius0 none" data-animation-class style=""><div><p>5 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-QFht7y46h2" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-QFht7y46h2 text-output csub-heading-QFht7y46h2 noBorder radius0 none" data-animation-class style=""><div><h2>Demi Sous-sol</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-AQwPY9ibX5" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-AQwPY9ibX5 text-output csub-heading-AQwPY9ibX5 noBorder radius0 none" data-animation-class style=""><div><h2>1 095 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col--6VywJqT4n" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col--6VywJqT4n"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-vq9lCn23dz" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-vq9lCn23dz text-output csub-heading-vq9lCn23dz noBorder radius0 none" data-animation-class style=""><div><h2><strong>5 ½ rue St-Alphonse à 1 200$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-FGU3qk0tCw" data-animation-class style="" class="c-image-slider c-wrapper image-slider-FGU3qk0tCw"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-FGU3qk0tCw" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-7 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38009fe87a99945d53ad.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38009fe87a99945d53ad.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38009fe87a99945d53ad.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38009fe87a99945d53ad.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38009fe87a99945d53ad.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38009fe87a99945d53ad.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800a48992f689eb93ab.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800a48992f689eb93ab.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800a48992f689eb93ab.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800a48992f689eb93ab.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800a48992f689eb93ab.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800a48992f689eb93ab.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6c.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6c.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6c.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6c.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6c.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6c.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800dddb92342c132f74.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800dddb92342c132f74.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800dddb92342c132f74.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800dddb92342c132f74.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800dddb92342c132f74.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800dddb92342c132f74.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800821e8babd833b9ea.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800821e8babd833b9ea.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800821e8babd833b9ea.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800821e8babd833b9ea.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800821e8babd833b9ea.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800821e8babd833b9ea.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-7 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3800e2566498364c2c6b.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea38006588a29ac2afee14.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-UVhyw7sDTO" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-UVhyw7sDTO text-output csub-heading-UVhyw7sDTO noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur St-Joseph</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> MAINTENANT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement</h2><h2>Près de tous les services</h2><h1>Secteur Tranquille</h1></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-iBCj_mgrrx" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-iBCj_mgrrx"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-rs0PGwlXj5" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-rs0PGwlXj5"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-pT45PeOVlN" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-pT45PeOVlN text-output cparagraph-pT45PeOVlN noBorder radius0 none" data-animation-class style=""><div><p>3</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-1Sp5gw4V4E" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-1Sp5gw4V4E text-output cparagraph-1Sp5gw4V4E noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-M3uEMYOFVI" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-M3uEMYOFVI text-output cparagraph-M3uEMYOFVI noBorder radius0 none" data-animation-class style=""><div><p>5 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-4aGofuOfXq" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-4aGofuOfXq text-output csub-heading-4aGofuOfXq noBorder radius0 none" data-animation-class style=""><div><h2>2e étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-QRYO4W1KVE" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-QRYO4W1KVE text-output csub-heading-QRYO4W1KVE noBorder radius0 none" data-animation-class style=""><div><h2>1 200 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-NsIdpn9Vp0" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-NsIdpn9Vp0 desktop-only mobile-only"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-Jz14zAZhJ6" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-Jz14zAZhJ6 text-output csub-heading-Jz14zAZhJ6 noBorder radius0 none" data-animation-class style=""><div><h2><strong>5 ½ Boul Mercure à 1 425$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-qwzj19cKIy" data-animation-class style="" class="c-image-slider c-wrapper image-slider-qwzj19cKIy"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-qwzj19cKIy" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696a8f287b4d1ee1704b4946.webp" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-9RnPTV8r9K" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-9RnPTV8r9K text-output csub-heading-9RnPTV8r9K noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Boul. Mercure</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible<strong> 1er mai !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>2 Stationnement</h2><h2><strong>INTERNET COMPRIS</strong></h2><h2>Près de tous les services</h2><h2>Thermopompe et échangeur d'air</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-8KmiNapolM" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-8KmiNapolM"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-gJzUPPOwIL" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-gJzUPPOwIL"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-Az60LAogzf" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-Az60LAogzf text-output cparagraph-Az60LAogzf noBorder radius0 none" data-animation-class style=""><div><p>3</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-6EWwevM4Di" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-6EWwevM4Di text-output cparagraph-6EWwevM4Di noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-mAIG3jHICs" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-mAIG3jHICs text-output cparagraph-mAIG3jHICs noBorder radius0 none" data-animation-class style=""><div><p>5 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-Z8ByyIP4nb" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-Z8ByyIP4nb text-output csub-heading-Z8ByyIP4nb noBorder radius0 none" data-animation-class style=""><div><h2>2e étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-Vrwfd6fYMC" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-Vrwfd6fYMC text-output csub-heading-Vrwfd6fYMC noBorder radius0 none" data-animation-class style=""><div><h2>1 425 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-XutTlle0iL" data-animation-class style="" class="c-button c-wrapper button-XutTlle0iL"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><!----><!----><button data-animation-class="" id="button-XutTlle0iL_btn" style="" class="cbutton-XutTlle0iL custom btn-vp btn-hp noBorder radius5 none" aria-label="LOUER "><div style="" class="main-heading-group"><div class="button-icon-start"></div><div class="main-heading-button">LOUER</div><div class="button-icon-end"></div></div><!----><div style="display:none;left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);" class="btn-loader-position"><div style="display:none;" class="v-spinner"><div class="v-moon v-moon1" style="height:30px;width:30px;border-radius:100%;"><div class="v-moon v-moon2" style="height:4.285714285714286px;width:4.285714285714286px;border-radius:100%;top:12.857142857142858px;background-color:rgb(255, 255, 255);"></div><div class="v-moon v-moon3" style="height:30px;width:30px;border-radius:100%;border:4.285714285714286px solid rgb(255, 255, 255);"></div></div></div></div></button><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-ogCVk9UCXh" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-ogCVk9UCXh"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-h2yy_A6xP0" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-h2yy_A6xP0 text-output csub-heading-h2yy_A6xP0 noBorder radius0 none" data-animation-class style=""><div><h2><strong>5 ½ rue St-Henri à 1 295$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-Zo4wpRG7hJ" data-animation-class style="" class="c-image-slider c-wrapper image-slider-Zo4wpRG7hJ"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-Zo4wpRG7hJ" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29dcb75ee054ae85e9751.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29dcb75ee054ae85e9751.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29dcb75ee054ae85e9751.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29dcb75ee054ae85e9751.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29dcb75ee054ae85e9751.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29dcb75ee054ae85e9751.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df181b3746dcda3c17c.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df181b3746dcda3c17c.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df181b3746dcda3c17c.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df181b3746dcda3c17c.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df181b3746dcda3c17c.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df181b3746dcda3c17c.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df1ad1400575a3f78ca.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df1ad1400575a3f78ca.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df1ad1400575a3f78ca.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df1ad1400575a3f78ca.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df1ad1400575a3f78ca.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df1ad1400575a3f78ca.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee05acb35e9e79.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee05acb35e9e79.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee05acb35e9e79.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee05acb35e9e79.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee05acb35e9e79.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee05acb35e9e79.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-Bc30A5jEYL" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-Bc30A5jEYL text-output csub-heading-Bc30A5jEYL noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur St-Pierre</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>IMMÉDIATEMENT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 stationnements</h2><h2><strong>Locker sur balcon</strong></h2><h2>Secteur familial</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-ijx5noBjNS" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-ijx5noBjNS"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-hV3q1OYuDJ" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-hV3q1OYuDJ"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-RCfZuiUpQs" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-RCfZuiUpQs text-output cparagraph-RCfZuiUpQs noBorder radius0 none" data-animation-class style=""><div><p>3</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-3lpfzdInHP" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-3lpfzdInHP text-output cparagraph-3lpfzdInHP noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-6S6vKy-B_2" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-6S6vKy-B_2 text-output cparagraph-6S6vKy-B_2 noBorder radius0 none" data-animation-class style=""><div><p>5 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-5gG07Ko_oZ" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-5gG07Ko_oZ text-output csub-heading-5gG07Ko_oZ noBorder radius0 none" data-animation-class style=""><div><h2><br></h2><h2>3e étage Juillet</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-xN6mEZJoxC" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-xN6mEZJoxC text-output csub-heading-xN6mEZJoxC noBorder radius0 none" data-animation-class style=""><div><h2>1 295 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-0PYG1zdcXx" data-animation-class data-entrance-clip="1" style="" class="row-align-center c-row c-wrapper row-0PYG1zdcXx"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-yhvBaHjiB6" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-yhvBaHjiB6"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-3Bpz0SXwob" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-3Bpz0SXwob text-output csub-heading-3Bpz0SXwob noBorder radius0 none" data-animation-class style=""><div><h2><strong>5 ½ rue de l'Exposition à 1 395$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-l_hlovsKRG" data-animation-class style="" class="c-image-slider c-wrapper image-slider-l_hlovsKRG"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-l_hlovsKRG" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-7 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea25de69375f6a5c5f96.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea25de69375f6a5c5f96.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea25de69375f6a5c5f96.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea25de69375f6a5c5f96.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea25de69375f6a5c5f96.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea25de69375f6a5c5f96.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea255e892103d47af021.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea255e892103d47af021.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea255e892103d47af021.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea255e892103d47af021.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea255e892103d47af021.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea255e892103d47af021.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2c03e461bae0ade792.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2c03e461bae0ade792.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2c03e461bae0ade792.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2c03e461bae0ade792.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2c03e461bae0ade792.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2c03e461bae0ade792.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2581877afd27bd4b1e.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2581877afd27bd4b1e.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2581877afd27bd4b1e.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2581877afd27bd4b1e.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2581877afd27bd4b1e.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2581877afd27bd4b1e.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6bc.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6bc.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6bc.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6bc.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6bc.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6bc.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-7 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-nzfWFLpdN4" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-nzfWFLpdN4 text-output csub-heading-nzfWFLpdN4 noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur St-Léonard d'Aston</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>IMMÉDIATEMENT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 stationnements</h2><h2><strong>Remise</strong></h2><h2>Thermopompe et échangeur d'air</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-6518d_odk6" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-6518d_odk6"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col--Ce-PpyXTL" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col--Ce-PpyXTL"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-XXCiBPbH30" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-XXCiBPbH30 text-output cparagraph-XXCiBPbH30 noBorder radius0 none" data-animation-class style=""><div><p>3</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-7paamW55Da" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-7paamW55Da text-output cparagraph-7paamW55Da noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-m92HIn7r7P" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-m92HIn7r7P text-output cparagraph-m92HIn7r7P noBorder radius0 none" data-animation-class style=""><div><p>5 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-GYm3rjqrcY" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-GYm3rjqrcY text-output csub-heading-GYm3rjqrcY noBorder radius0 none" data-animation-class style=""><div><h2><br></h2><h2>3e étage Juillet</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-03SHZqsluh" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-03SHZqsluh text-output csub-heading-03SHZqsluh noBorder radius0 none" data-animation-class style=""><div><h2>1 395 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-KUsELMqcoC" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-KUsELMqcoC"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-wjn1LLwHlQ" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-wjn1LLwHlQ text-output csub-heading-wjn1LLwHlQ noBorder radius0 none" data-animation-class style=""><div><h2><strong>5 ½ rue De la commune à 1 495$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-Ju4qJm1B3v" data-animation-class style="" class="c-image-slider c-wrapper image-slider-Ju4qJm1B3v"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-Ju4qJm1B3v" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/698244007a20d044498ea357.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-QRw76TR2hx" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-QRw76TR2hx text-output csub-heading-QRw76TR2hx noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur De la commune</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>IMMÉDIATEMENT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>2 stationnements</h2><h2><strong>Locker extérieur</strong></h2><h2>Immeuble <strong>QUADRUPLEX</strong></h2><h2>Secteur familial</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-2EwUhXMzzv" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-2EwUhXMzzv"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-cuOhmolhsd" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-cuOhmolhsd"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-kXfOYNJlru" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-kXfOYNJlru text-output cparagraph-kXfOYNJlru noBorder radius0 none" data-animation-class style=""><div><p>3</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-FpaPMM5r_r" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-FpaPMM5r_r text-output cparagraph-FpaPMM5r_r noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-BDSuLAw27o" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-BDSuLAw27o text-output cparagraph-BDSuLAw27o noBorder radius0 none" data-animation-class style=""><div><p>5 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-qnskExuEj_" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-qnskExuEj_ text-output csub-heading-qnskExuEj_ noBorder radius0 none" data-animation-class style=""><div><h2>2e étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-z7YCLV8dCF" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-z7YCLV8dCF text-output csub-heading-z7YCLV8dCF noBorder radius0 none" data-animation-class style=""><div><h2>1 495 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-Iz5DINGe-M" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-Iz5DINGe-M"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-yuPakkKcss" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-yuPakkKcss text-output csub-heading-yuPakkKcss noBorder radius0 none" data-animation-class style=""><div><h2><strong>5 ½ rue Geai-Bleu à 1 495$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-bWla67nGnn" data-animation-class style="" class="c-image-slider c-wrapper image-slider-bWla67nGnn"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-bWla67nGnn" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-8 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6717d5dd4e15d0eed.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6717d5dd4e15d0eed.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6717d5dd4e15d0eed.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6717d5dd4e15d0eed.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6717d5dd4e15d0eed.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6717d5dd4e15d0eed.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff3.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff3.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff3.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff3.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff3.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff3.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6a48992f689ecab78.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6a48992f689ecab78.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6a48992f689ecab78.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6a48992f689ecab78.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6a48992f689ecab78.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6a48992f689ecab78.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff2.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff2.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff2.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff2.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff2.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6b0e5e2bb7f22bff2.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acd.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acd.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acd.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acd.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acd.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acd.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-7 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acf.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acf.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acf.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acf.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acf.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144acf.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-8 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6bd268b0120913696.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69ea3bf6dddb92342c144ace.png" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-F1MzsywNHM" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-F1MzsywNHM text-output csub-heading-F1MzsywNHM noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur St-Pierre</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>IMMÉDIATEMENT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>2 stationnements</h2><h2><strong>Locker extérieur</strong></h2><h2><strong>Cour clôturé</strong></h2><h2></h2><h2></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-GORzDsjsua" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-GORzDsjsua"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-yA0QJbNOCo" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-yA0QJbNOCo"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-ZkySthXu3Y" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-ZkySthXu3Y text-output cparagraph-ZkySthXu3Y noBorder radius0 none" data-animation-class style=""><div><p>3</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-AcGLX8s-c6" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-AcGLX8s-c6 text-output cparagraph-AcGLX8s-c6 noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-CL0dN3AMWc" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-CL0dN3AMWc text-output cparagraph-CL0dN3AMWc noBorder radius0 none" data-animation-class style=""><div><p>5 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-rpngswhUnR" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-rpngswhUnR text-output csub-heading-rpngswhUnR noBorder radius0 none" data-animation-class style=""><div><h2>1er étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-IGlxgZWL3y" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-IGlxgZWL3y text-output csub-heading-IGlxgZWL3y noBorder radius0 none" data-animation-class style=""><div><h2>1 495 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-qZ8zYe35q1" data-animation-class data-entrance-clip="1" style="" class="row-align-center c-row c-wrapper row-qZ8zYe35q1"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-F_OpzDB8FP" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-F_OpzDB8FP"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-xb4AOLmafR" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-xb4AOLmafR text-output csub-heading-xb4AOLmafR noBorder radius0 none" data-animation-class style=""><div><h2><strong>5 ½ rue Richard à 1 495$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-BhOrd0UxRp" data-animation-class style="" class="c-image-slider c-wrapper image-slider-BhOrd0UxRp"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-BhOrd0UxRp" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557f76fcc3e525294ae.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557f76fcc3e525294ae.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557f76fcc3e525294ae.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557f76fcc3e525294ae.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557f76fcc3e525294ae.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557f76fcc3e525294ae.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186cf.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186cf.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186cf.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186cf.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186cf.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186cf.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186d1.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186d1.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186d1.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186d1.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186d1.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45574ec36477494186d1.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45578d08689eb2cc09b9.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45578d08689eb2cc09b9.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45578d08689eb2cc09b9.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45578d08689eb2cc09b9.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45578d08689eb2cc09b9.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b45578d08689eb2cc09b9.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4557c56db4013f94f0ee.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a0b4558f76fcc3e525294fe.jpeg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-7DX_u1N02U" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-7DX_u1N02U text-output csub-heading-7DX_u1N02U noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur Drummondville</strong></h2><h2><strong>(Drummondville)</strong></h2><h2>Disponible <strong>IMMÉDIATEMENT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>2 stationnements</h2><h2><strong>Locker extérieur</strong><br><strong>Cour clôturé</strong></h2><h2></h2><h2></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-bdnVOVfKxF" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-bdnVOVfKxF"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-pbU9fmJdMn" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-pbU9fmJdMn"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-LoDbFAVPUY" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-LoDbFAVPUY text-output cparagraph-LoDbFAVPUY noBorder radius0 none" data-animation-class style=""><div><p>3</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-HJWyyx2R_F" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-HJWyyx2R_F text-output cparagraph-HJWyyx2R_F noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-FNPIa5e_Kn" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-FNPIa5e_Kn text-output cparagraph-FNPIa5e_Kn noBorder radius0 none" data-animation-class style=""><div><p>5 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-PUhg-fuexb" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-PUhg-fuexb text-output csub-heading-PUhg-fuexb noBorder radius0 none" data-animation-class style=""><div><h2>1er étage</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-Mzh627hQoV" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-Mzh627hQoV text-output csub-heading-Mzh627hQoV noBorder radius0 none" data-animation-class style=""><div><h2>1 495 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="section-Z4kxjMJRRT" data-animation-class data-entrance-clip="1" style="" class="fullSection noBorder radius0 none c-section c-wrapper section-Z4kxjMJRRT"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-TWnivHykBW" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-TWnivHykBW"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-jaowBmUCXQ" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-jaowBmUCXQ"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><!----><!--]--><!--[--><div id="heading-Yrbyajy-s0" data-animation-class style="" class="c-heading c-wrapper"><!----><!----><!----><div class="heading-Yrbyajy-s0 text-output cheading-Yrbyajy-s0 noBorder radius0 none" data-animation-class style=""><div><h1>6 <strong>½</strong> À LOUER</h1></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-D-13Jo8OOF" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-D-13Jo8OOF"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-jGkxQisDii" data-animation-class data-entrance-clip="1" style="" class="borderFull radius0 none c-nested-column c-column c-wrapper col-jGkxQisDii"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-WcRQfwMdNz" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-WcRQfwMdNz text-output csub-heading-WcRQfwMdNz noBorder radius0 none" data-animation-class style=""><div><h2><strong>6 ½ Rue de l'Exposition à 1 550$</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="image-slider-hWYatebsAw" data-animation-class style="" class="c-image-slider c-wrapper image-slider-hWYatebsAw"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="image-container cimage-slider-hWYatebsAw" data-v-cbdc8153><div class="carousel" role="region" aria-label="Image slider" data-v-cbdc8153><div class="carousel__slides" style="transition-duration:300ms;transform:translateX(-100%);display:none;" data-v-cbdc8153><!--[--><a class="carousel__slide carousel__slide-cloned-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-1 carousel__slide-current default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-2 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf6218a.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf6218a.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf6218a.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf6218a.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf6218a.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf6218a.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-3 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf621a3.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf621a3.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf621a3.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf621a3.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf621a3.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf621a3.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-4 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d3.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d3.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d3.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d3.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d3.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d3.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-5 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464a3dd25aa2a620c1b.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464a3dd25aa2a620c1b.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464a3dd25aa2a620c1b.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464a3dd25aa2a620c1b.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464a3dd25aa2a620c1b.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464a3dd25aa2a620c1b.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-6 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><a class="carousel__slide carousel__slide-cloned-1 default-cursor" href="#" target="_blank" rel="noreferrer noopener" aria-label=""><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg" alt="" style="height:100%;width:100%;object-fit:unset;" class="carousel__slide-image hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></a><!--]--></div><div class="carousel__arrow" data-v-cbdc8153><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M15 18l-6-6 6-6"></path></svg><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M9 18l6-6-6-6"></path></svg></div><div class="carousel__pagination-container" data-v-cbdc8153><!--[--><div class="carousel__pagination-active carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><div class="carousel__pagination-inactive carousel__pagination"></div><!--]--></div></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-yoXQulNsGP" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-yoXQulNsGP text-output csub-heading-yoXQulNsGP noBorder radius0 none" data-animation-class style=""><div><h2><strong>Secteur St-Leonard d'Aston</strong></h2><h2><strong>(St-Leonard d'Aston)</strong></h2><h2>Disponible<strong> MAINTENANT !!</strong></h2><h2>Chauffage et électricité à vos frais</h2><h2>1 Stationnement</h2><h2>1 Remise</h2><h2>Thermopompe et échangeur d'air</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-H3omdqVcgL" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-H3omdqVcgL"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-ikdHVxU13e" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-ikdHVxU13e"><!----><!----><div class="horizontal inner"><!----><!--[--><!--[--><div id="paragraph-xiAH3YMjBJ" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-xiAH3YMjBJ text-output cparagraph-xiAH3YMjBJ noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-_n_l7eHxtO" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-_n_l7eHxtO text-output cparagraph-_n_l7eHxtO noBorder radius0 none" data-animation-class style=""><div><p>1</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-izFb8eF2oz" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-izFb8eF2oz text-output cparagraph-izFb8eF2oz noBorder radius0 none" data-animation-class style=""><div><p>3 <strong>½</strong></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-cHIlNt_Ai0" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-cHIlNt_Ai0 text-output csub-heading-cHIlNt_Ai0 noBorder radius0 none" data-animation-class style=""><div><h2>Demi sous-sol</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-kmPg29coLK" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-kmPg29coLK text-output csub-heading-kmPg29coLK noBorder radius0 none" data-animation-class style=""><div><h2>1 550 $ / mois</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="section-bwMlraZJNd" data-animation-class data-entrance-clip="1" style="" class="fullSection noBorder radius0 none c-section c-wrapper section-bwMlraZJNd"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-ePMCxDWqgji" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-ePMCxDWqgji"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-9GM_xmFQp0x" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-9GM_xmFQp0x"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="heading-4itKQtj5gK5" data-animation-class style="" class="c-heading c-wrapper"><!----><!----><!----><div class="heading-4itKQtj5gK5 text-output cheading-4itKQtj5gK5 noBorder radius0 none" data-animation-class style=""><div><h1>Vous voulez plus d'information ?</h1></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-AZyxGT2nEj-" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-AZyxGT2nEj- text-output cparagraph-AZyxGT2nEj- noBorder radius0 none" data-animation-class style=""><div><p><span>Contactez-nous et nous vous aiderons à trouver la propriété idéale</span></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-zXFPSmfYVZi" data-animation-class style="" class="c-button c-wrapper button-zXFPSmfYVZi"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><a id="button-zXFPSmfYVZi_btn" href="https://gestiontb.ca/formlocation" target="" data-animation-class="" class="cbutton-zXFPSmfYVZi custom btn-vp btn-hp buttonElevate borderFull radius15 none btnshadow text-center" style="" aria-label="Nous contacter "><span style="" class="main-heading-group"><span style="margin-right:5px;" class="button-icon-start"></span><span class="main-heading-button">Nous contacter</span><span style="margin-left:5px;" class="button-icon-end"></span></span><!----></a><!----><!----><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="section-VjT1mZxqAj" data-animation-class data-entrance-clip="1" style="" class="fullSection noBorder radius0 none c-section c-wrapper section-VjT1mZxqAj"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-T40f7M8MinT" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-T40f7M8MinT"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-tMvNyJ-L9Ju" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-tMvNyJ-L9Ju"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="image-LXRJzU4eiXY" data-animation-class style="" class="c-image c-wrapper image-LXRJzU4eiXY"><!----><!----><!----><!----><!----><div style="cursor:default;" class="image-container cimage-LXRJzU4eiXY"><div><div><picture class="hl-image-picture" style="display:block;"><source media="(max-width:900px) and (min-width: 768px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/695a068605b511613e14dc84.png"><source media="(max-width:768px) and (min-width: 640px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/695a068605b511613e14dc84.png"><source media="(max-width:640px) and (min-width: 480px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_640/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/695a068605b511613e14dc84.png"><source media="(max-width:480px) and (min-width: 320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_768/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/695a068605b511613e14dc84.png"><source media="(max-width:320px)" srcset="https://images.leadconnectorhq.com/image/f_webp/q_80/r_320/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/695a068605b511613e14dc84.png"><img src="https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/695a068605b511613e14dc84.png" alt="" style="" class="img-none img-border-none img-effects-none hl-optimized mw-100" loading="lazy" fetchpriority="auto" data-animation-class=""></picture></div></div></div><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-pAtK8CJ2gUP" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-pAtK8CJ2gUP text-output cparagraph-pAtK8CJ2gUP noBorder radius0 none" data-animation-class style=""><div><p><span style="color: var(--white)">Votre partenaire de confiance pour la gestion, la location et l'achat de vos biens immobiliers.</span></p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-DBnd_lSUsZ9" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-DBnd_lSUsZ9"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-wjvcQDmzRDX" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-wjvcQDmzRDX text-output csub-heading-wjvcQDmzRDX noBorder radius0 none" data-animation-class style=""><div><h2><span style="color: var(--white)">Navigation</span></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-KKQhbBqBVwC" data-animation-class style="" class="c-button c-wrapper button-KKQhbBqBVwC"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><a id="button-KKQhbBqBVwC_btn" href="https://gestiontb.ca/page-dacceuil" target="" data-animation-class="" class="cbutton-KKQhbBqBVwC custom btn-vp btn-hp noBorder radius0 none text-center" style="" aria-label="Accueil "><span style="" class="main-heading-group"><span style="margin-right:5px;" class="button-icon-start"></span><span class="main-heading-button">Accueil</span><span style="margin-left:5px;" class="button-icon-end"></span></span><!----></a><!----><!----><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-nc0dXTGe9Oq" data-animation-class style="" class="c-button c-wrapper button-nc0dXTGe9Oq"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><a id="button-nc0dXTGe9Oq_btn" href="https://gestiontb.ca/logements-a-louer" target="" data-animation-class="" class="cbutton-nc0dXTGe9Oq custom btn-vp btn-hp noBorder radius0 none text-center" style="" aria-label="Logements à louer "><span style="" class="main-heading-group"><span style="margin-right:5px;" class="button-icon-start"></span><span class="main-heading-button">Logements à louer</span><span style="margin-left:5px;" class="button-icon-end"></span></span><!----></a><!----><!----><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-FqjMf4ioVjK" data-animation-class style="" class="c-button c-wrapper button-FqjMf4ioVjK"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><a id="button-FqjMf4ioVjK_btn" href="https://gestiontb.ca/achat-dimmeuble" target="" data-animation-class="" class="cbutton-FqjMf4ioVjK custom btn-vp btn-hp noBorder radius0 none text-center" style="" aria-label="Achat d&#39;immeuble "><span style="" class="main-heading-group"><span style="margin-right:5px;" class="button-icon-start"></span><span class="main-heading-button">Achat d&#39;immeuble</span><span style="margin-left:5px;" class="button-icon-end"></span></span><!----></a><!----><!----><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="button-DF5mXdwCw7" data-animation-class style="" class="c-button c-wrapper button-DF5mXdwCw7"><!----><!----><!----><!----><!----><!----><!--[--><!----><!--teleport start--><!--teleport end--><a id="button-DF5mXdwCw7_btn" href="https://gestiontb.ca/maintenance" target="" data-animation-class="" class="cbutton-DF5mXdwCw7 custom btn-vp btn-hp noBorder radius0 none text-center" style="" aria-label="Espace locataire "><span style="" class="main-heading-group"><span style="margin-right:5px;" class="button-icon-start"></span><span class="main-heading-button">Espace locataire</span><span style="margin-left:5px;" class="button-icon-end"></span></span><!----></a><!----><!----><div><!----></div><!----><!----><!--]--><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-YKHe7qBT1UY" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-YKHe7qBT1UY"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="sub-heading-7bs5riSgjo" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-7bs5riSgjo text-output csub-heading-7bs5riSgjo noBorder radius0 none" data-animation-class style=""><div><h2><strong>Nous joindre</strong></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-dVVEuJvZsQ" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-dVVEuJvZsQ text-output csub-heading-dVVEuJvZsQ noBorder radius0 none" data-animation-class style=""><div><h2><strong>Location</strong></h2><h2><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="6905060a081d000607290e0c1a1d0006071d0b470a08">[email&#160;protected]</a></h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-BP5H83BdIK" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-BP5H83BdIK text-output csub-heading-BP5H83BdIK noBorder radius0 none" data-animation-class style=""><div><h2><strong>Général</strong></h2><h2><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="177e79717857707264637e78796375397476">[email&#160;protected]</a><br>+1 819 817-8486</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="sub-heading-Cw2Jk_Gi_2" data-animation-class style="" class="c-sub-heading c-wrapper"><!----><!----><!----><div class="sub-heading-Cw2Jk_Gi_2 text-output csub-heading-Cw2Jk_Gi_2 noBorder radius0 none" data-animation-class style=""><div><h2>445 rue Lindsay, Local 25 Drummondville, QC J2B 1G9</h2></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><!----><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="col-x9ZcEl7pLga" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-x9ZcEl7pLga"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="social-icons-EBXnnGmxzp" data-animation-class style="" class="c-social-icons c-wrapper social-icons-EBXnnGmxzp"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><div class="csocial-icons-1UhMR1bjZS"><div class="social-icons-container"><!--[--><a class="p-3 social-icon" href="https://www.facebook.com/gestiontbappartementstb" aria-label="Facebook" target="_blank" rel="noreferrer noopener "><img src="https://stcdn.leadconnectorhq.com/funnel/icons/brand/facebook-brand.svg" alt="social media icon" class="social-media-icon"><!----></a><a class="p-3 social-icon" href="https://www.instagram.com/appartementstb/" aria-label="Instagram" target="_blank" rel="noreferrer noopener "><img src="https://stcdn.leadconnectorhq.com/funnel/icons/brand/instagram-brand.svg" alt="social media icon" class="social-media-icon"><!----></a><a class="p-3 social-icon" href="https://www.youtube.com/@GestionTB" aria-label="Youtube" target="_blank" rel="noreferrer noopener "><img src="https://stcdn.leadconnectorhq.com/funnel/icons/brand/youtube-brand.svg" alt="social media icon" class="social-media-icon"><!----></a><!--]--></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="row-nUbsv-gIl0f" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-nUbsv-gIl0f"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-YMvj5HCxnWP" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-YMvj5HCxnWP"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="divider-yANWshFHPA1" data-animation-class style="" class="c-divider c-wrapper dividerContainer divider-yANWshFHPA1"><!----><!----><!----><!----><!----><!----><!----><span></span><!----><!----><!----><!----><div id="divider-yANWshFHPA1-divider-inner" class="cdivider-yANWshFHPA1"><div class="divider-element"></div></div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="paragraph-yI6IHbm9TYl" data-animation-class style="" class="c-paragraph c-wrapper"><!----><!----><!----><div class="paragraph-yI6IHbm9TYl text-output cparagraph-yI6IHbm9TYl noBorder radius0 none" data-animation-class style=""><div><p>© 2026 Gestion TB. Tous droits réservés.</p></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div></div><!----><!----><!----></div><!--]--></div><!--]--><!--]--></div><div id="teleports"></div><script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>window.__NUXT__={};window.__NUXT__.config={public:{baseUrl:"https://apisystem.tech",newBaseURL:"https://backend.leadconnectorhq.com/appengine",serverBaseUrl:"https://apisystem.tech",NODE_ENV:"production",OLD_STORAGE_API_URL1_CDN:"https://cdn.msgsndr.com",OLD_STORAGE_API_URL2_CDN:"https://assets.cdn.msgsndr.com",STORAGE_API_URL1_CDN:"https://cdn.filesafe.space",STORAGE_API_URL2_CDN:"https://assets.cdn.filesafe.space",REVIEW_WIDGET_URL:"https://backend.leadconnectorhq.com/appengine/reviews/get_widget/",REST_API_URLS:"https://backend.leadconnectorhq.com",STATS_API_URL:"https://backend.leadconnectorhq.com",paymentsServiceUrl:"https://backend.leadconnectorhq.com",HLS_URL:"https://content.apisystem.tech",IMAGE_CDN:"https://images.leadconnectorhq.com",IMAGE_CDN_WHITELIST:["assets.cdn.msgsndr.com","cdn.msgsndr.com","cdn.filesafe.space","assets.cdn.filesafe.space","storage.googleapis.com","firebasestorage.googleapis.com"],authorizeAcceptJsUrlTestMode:"https://jstest.authorize.net/v1/Accept.js",authorizeAcceptJsUrlLiveMode:"https://js.authorize.net/v1/Accept.js",nmiPaymentProviderScriptUrl:"https://secure.safewebservices.com/token/Collect.js",FORMS_SERVICE_URL:"https://backend.leadconnectorhq.com",SURVEYS_SERVICE_URL:"https://backend.leadconnectorhq.com",QR_CODE_SERVICE_URL:"https://backend.leadconnectorhq.com",GOOGLE_API_SERVICE_URL:"https://services.leadconnectorhq.com/common-google",ECOMMERCE_SERVICE_URL:"https://backend.leadconnectorhq.com/ecommerce",HL_HOMEPAGE_STEPID:"6dcfb06b-9734-44bd-bbcc-8bd4b7fec976",STRIPE_BNPL_CONFIGURATION_TEST:"pmc_1OaAR1FpU9DlKp7RH0HHU4xH",STRIPE_BNPL_CONFIGURATION_LIVE:"pmc_1OlnyOFpU9DlKp7R4tTHuihw",STRIPE_PMC_KEY_TEST:"pmc_1Ps2bTFpU9DlKp7RmgTzmJUL",STRIPE_PMC_KEY_LIVE:"pmc_1PzYYpFpU9DlKp7RcgxVmcvS",STRIPE_DEFAULT_CONFIGURATION_TEST:"pmc_1M95aRFpU9DlKp7ReIqqY0PP",STRIPE_DEFAULT_CONFIGURATION_LIVE:"pmc_1NYilsFpU9DlKp7RkMiUNrKE",STRIPE_DEFAULT_CONFIGURATION_TEST_SURVEY:"pmc_1QrvB7FpU9DlKp7RcL9L2idV",STRIPE_DEFAULT_CONFIGURATION_LIVE_SURVEY:"pmc_1Qwds7FpU9DlKp7RMCBlclQ0",STRIPE_DEFAULT_CONFIGURATION_TEST_FORM:"pmc_1Qodu1FpU9DlKp7RoWHB8Txx",STRIPE_DEFAULT_CONFIGURATION_LIVE_FORM:"pmc_1QwcV0FpU9DlKp7RORUHPK8B",STRIPE_CARD_ONLY_TEST_PMC:"pmc_1PVvmcFpU9DlKp7RFsjX5G7G",STRIPE_CARD_ONLY_LIVE_PMC:"pmc_1PVvogFpU9DlKp7Rj8F0ITLV",ENTERPRISE_RECAPTCHA_SITE_KEY:"6LeDBFwpAAAAAJe8ux9-imrqZ2ueRsEtdiWoDDpX",ENTERPRISE_RECAPTCHA_CHECKBOX_SITE_KEY:"6Lfjxx4sAAAAAIsnmlR5mKNS7QwIWqDjABW2SUu7",STRIPE_ONE_STEP_PMC_ID_TEST:"pmc_1QodqYFpU9DlKp7R8EIapiwE",STRIPE_TWO_STEP_PMC_ID_TEST:"pmc_1QodsEFpU9DlKp7RHRyay2KC",STRIPE_ONE_STEP_PMC_ID_LIVE:"pmc_1QwcLrFpU9DlKp7Rl9zb07x1",STRIPE_TWO_STEP_PMC_ID_LIVE:"pmc_1QwcP4FpU9DlKp7R4L0ytWkJ",RECAPTCHA_SITE_KEY:"6LfcbMseAAAAAI-EJoB-lUh7_TJaYloLbcbmnhEO",ENCRYPTED_STORAGE_SECRET_KEY:"daffd34c5f824e455827b0c87cbbf64f8b0cd32b79b6d73100fc4bdf41f095ea",formFunnelWrapperEnabled:false,formCalendarWrapperEnabled:true,formNativeWrapperEnabled:true,formCalendarServiceWrapperEnabled:false,formCalendarRentalWrapperEnabled:false,surveyFunnelWrapperEnabled:false,surveyNativeWrapperEnabled:true,quizNativeWrapperEnabled:true,i18n:{baseUrl:"",defaultLocale:"en",defaultDirection:"ltr",strategy:"no_prefix",lazy:true,rootRedirect:"",routesNameSeparator:"___",defaultLocaleRouteNameSuffix:"default",skipSettingLocaleOnNavigate:true,differentDomains:false,trailingSlash:false,detectBrowserLanguage:{alwaysRedirect:false,cookieCrossOrigin:false,cookieDomain:"",cookieKey:"i18n_redirected",cookieSecure:false,fallbackLocale:"",redirectOn:"root",useCookie:true},experimental:{localeDetector:"",switchLocalePathLinkSSR:false,autoImportTranslationFunctions:false,typedPages:true,typedOptionsAndMessages:false,generatedLocaleFilePathFormat:"absolute",alternateLinkCanonicalQueries:false,hmr:true},multiDomainLocales:false,domainLocales:{da:{domain:""},de:{domain:""},en:{domain:""},es:{domain:""},fi:{domain:""},"fr-ca":{domain:""},fr:{domain:""},hu:{domain:""},it:{domain:""},nl:{domain:""},no:{domain:""},pl:{domain:""},"pt-br":{domain:""},pt:{domain:""},sv:{domain:""}}}},app:{baseURL:"/",buildId:"a2397302-46b4-4407-af76-40d9243e21a6",buildAssetsDir:"/_preview/",cdnURL:"https://stcdn.leadconnectorhq.com/"}}</script><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="true" id="__NUXT_DATA__">[["ShallowReactive",1],{"data":2,"state":9167,"once":9386,"_errors":9387,"serverRendered":40},["ShallowReactive",3],{"pageData":4},{"elements":5,"popup":8805,"fontsToLoad":8806,"customFonts":8807,"meta":8808,"domainName":8822,"pageUrl":8823,"pageId":8824,"pageName":8648,"locationId":8825,"headerCode":37,"footerCode":37,"popupsList":8826,"favicon":9064,"globalHeadTrackingCode":9065,"globalBodyTrackingCode":37,"funnelId":9066,"funnelName":9067,"stepId":123,"affiliateId":-1,"cookieConsent":9068,"disablePageLevelCookieConsent":33,"pixelToInit":9133,"isOptimisePageLoad":40,"backgroundSettingsClass":39,"schemaMarkup":9134,"isGeolocationNeeded":40},[6,18,51,81,111,271,294,312,335,357,377,396,411,429,447,471,490,523,543,561,579,603,621,639,656,674,717,735,755,784,802,820,838,862,879,896,913,959,977,1012,1030,1058,1075,1093,1111,1135,1152,1169,1186,1204,1238,1256,1285,1331,1349,1367,1385,1409,1426,1443,1460,1478,1508,1526,1544,1566,1584,1610,1626,1654,1672,1690,1708,1732,1750,1767,1785,1803,1835,1853,1881,1899,1917,1935,1959,1976,1993,2010,2028,2062,2080,2102,2130,2147,2165,2183,2207,2224,2241,2258,2276,2309,2326,2355,2396,2414,2431,2449,2473,2490,2507,2524,2542,2574,2592,2621,2662,2680,2697,2715,2739,2756,2773,2790,2808,2840,2858,2886,2904,2921,2939,2963,2980,2997,3014,3031,3063,3081,3109,3127,3145,3163,3187,3204,3221,3238,3256,3293,3311,3335,3363,3380,3397,3415,3439,3456,3473,3490,3508,3540,3558,3587,3628,3645,3662,3680,3704,3721,3738,3755,3772,3806,3823,3852,3893,3911,3929,3947,3971,3988,4005,4022,4040,4066,4084,4113,4154,4172,4190,4208,4232,4249,4266,4283,4301,4337,4355,4384,4425,4443,4460,4478,4502,4519,4536,4553,4571,4603,4621,4649,4667,4684,4702,4726,4743,4760,4777,4795,4825,4843,4871,4888,4905,4923,4947,4964,4981,4998,5016,5050,5067,5087,5114,5132,5150,5168,5192,5209,5226,5243,5261,5295,5313,5340,5358,5375,5393,5417,5434,5451,5468,5486,5520,5538,5565,5583,5600,5618,5642,5659,5676,5693,5711,5743,5761,5779,5802,5820,5845,5860,5887,5904,5921,5939,5963,5981,5998,6016,6034,6068,6086,6103,6130,6147,6164,6182,6206,6223,6240,6257,6275,6314,6332,6359,6376,6393,6411,6435,6452,6469,6486,6504,6529,6547,6575,6592,6610,6628,6652,6669,6686,6703,6721,6757,6775,6796,6823,6840,6857,6875,6899,6916,6933,6950,6968,7001,7019,7048,7089,7107,7124,7142,7166,7183,7200,7217,7235,7260,7278,7305,7323,7340,7358,7382,7399,7416,7433,7451,7487,7505,7532,7550,7568,7586,7610,7627,7644,7661,7679,7715,7733,7751,7774,7792,7815,7833,7860,7878,7895,7913,7937,7954,7971,7988,8006,8040,8058,8076,8099,8117,8138,8156,8180,8226,8244,8262,8291,8310,8332,8346,8356,8378,8402,8441,8468,8486,8504,8522,8540,8567,8605,8643,8681,8719,8733,8756,8774],{"id":7,"child":8},"hl_main",[9,10,11,12,13,14,15,16,17],"section-DUFD6YvRZJ","section-fo8vXgGyhn","section-Hs3vSWqm1o","section-JEnfcw8zO5","section-qKXqWR4YrU","section-PwCpNpl1z5","section-Z4kxjMJRRT","section-bwMlraZJNd","section-VjT1mZxqAj",{"id":9,"type":19,"child":20,"class":22,"styles":25,"extra":28,"meta":19,"tagName":46,"title":47,"prebuiltSectionTemplate":48,"_id":9,"classStr":24},"section",[21],"row-nHziU-ybxu",{"width":23},{"value":24},"fullSection",{"borderWidth":26},{"value":27},"0px",{"sticky":29,"visibility":31,"bgImage":34,"allowRowMaxWidth":41,"customClass":42,"elementScreenshot":44},{"value":30},"noneSticky",{"value":32},{"hideDesktop":33,"hideMobile":33},false,{"value":35},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},"image","","1","bgCover",true,{"value":33},{"value":43},[],{"value":45},[],"c-section","header gestion tb",{"_id":49,"name":47,"prebuiltSectionTemplateType":50,"deleted":33},"69a5aa39712354dece8cf1c3","sync",{"id":21,"type":52,"child":53,"class":55,"styles":64,"extra":68,"tagName":78,"meta":52,"title":79,"classStr":80},"row",[54],"col-a9NtY9lc-G",{"alignRow":56,"borders":58,"borderRadius":60,"radiusEdge":62},{"value":57},"row-align-center",{"value":59},"noBorder",{"value":61},"radius0",{"value":63},"none",{"borderWidth":65},{"value":66,"unit":67},"2","px",{"visibility":69,"bgImage":71,"rowWidth":73,"customClass":76},{"value":70},{"hideDesktop":33,"hideMobile":33},{"value":72},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},100,"%",{"value":77},[],"c-row","1 Column Row","row-align-center noBorder radius0 none",{"id":54,"type":82,"child":83,"class":85,"styles":89,"extra":91,"tagName":107,"meta":82,"title":108,"noOfColumns":109,"classStr":110},"col",[84],"nav-menu-v2-HxJubNiK5I",{"borders":86,"borderRadius":87,"radiusEdge":88},{"value":59},{"value":61},{"value":63},{"borderWidth":90},{"value":66,"unit":67},{"visibility":92,"bgImage":94,"columnLayout":96,"justifyContentColumnLayout":98,"alignContentColumnLayout":100,"forceColumnLayoutForMobile":102,"customClass":103,"elementVersion":105},{"value":93},{"hideDesktop":33,"hideMobile":33},{"value":95},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},"column",{"value":99},"center",{"value":101},"inherit",{"value":40},{"value":104},[],{"value":106},2,"c-column","1st Column",1,"noBorder radius0 none",{"extra":112,"id":84,"meta":263,"tagName":264,"class":265,"styles":266,"child":270},{"nodeId":113,"visibility":114,"menuItems":116,"enableCustomerLogin":201,"cacItems":202,"imageProperties":213,"imageActions":219,"visitWebsite":220,"popupId":222,"downloadFile":223,"hideElements":225,"showElements":227,"scrollToElement":229,"phoneNumber":230,"emailAddress":231,"elementVersion":232,"stepPath":233,"includeLogoInMenu":234,"text":235,"includeHeadlineInMenu":237,"menuLayout":238,"menuWrap":240,"typography":242,"inlineTypographies":244,"icon":246,"iconEnd":252,"mobileFontSize":256,"desktopFontSize":258,"customClass":259,"showCartIcon":261,"showSearchbar":262},"cnav-menu-v2-HxJubNiK5I",{"value":115},{"hideDesktop":37,"hideMobile":37},{"value":117},[118,157,171,176,182],{"id":119,"title":120,"goTo":121,"url":122,"goToId":123,"openInNewTab":33,"childs":124,"edit":33,"submenuActionable":40},"menu-item-fSkgSqa0zf","Logement à louer","go-to-funnel-step","#new-menu-item","614ea89a-7e41-43f6-89a2-220de7f1fc18",[125,132,137,142,147,152],{"id":126,"title":127,"goTo":128,"url":129,"goToId":130,"openInNewTab":33,"childs":131},"menu-item-Z0QlqlpKvR","2 ½","url","https:\u002F\u002Fgestiontb.ca\u002Flogements-a-louer#heading-P4JHNP-t3d","9e868619-d834-4f38-b8f0-ea389ca59b09",[],{"id":133,"title":134,"goTo":128,"url":135,"goToId":123,"openInNewTab":33,"childs":136},"menu-item-qdajdUO3Fi","3 ½","https:\u002F\u002Fgestiontb.ca\u002Flogements-a-louer#heading-3uWiOQESsM",[],{"id":138,"title":139,"goTo":128,"url":140,"goToId":123,"openInNewTab":33,"childs":141},"menu-item-O-Jte8uQ_1","4 ½","https:\u002F\u002Fgestiontb.ca\u002Flogements-a-louer#row-rh4yMILdRq",[],{"id":143,"title":144,"goTo":128,"url":145,"goToId":37,"openInNewTab":33,"childs":146},"menu-item-jNyUEuA61r","5 ½","https:\u002F\u002Fgestiontb.ca\u002Flogements-a-louer#heading-oHkotcAr7_",[],{"id":148,"title":149,"goTo":128,"url":150,"goToId":37,"openInNewTab":33,"childs":151},"menu-item-G4Fda4erKQ","6 ½","https:\u002F\u002Fgestiontb.ca\u002Flogements-a-louer#heading-Yrbyajy-s0",[],{"id":153,"title":154,"goTo":128,"url":155,"goToId":37,"openInNewTab":33,"childs":156},"menu-item-uKXfwx0lqn","Studio","https:\u002F\u002Fgestiontb.ca\u002Flogements-a-louer#heading-GEBrPbfRG0",[],{"id":158,"title":159,"goTo":128,"url":122,"goToId":37,"openInNewTab":33,"childs":160,"edit":33},"menu-item-FlckQpY1Uv","Services",[161,166],{"id":162,"title":163,"goTo":121,"url":122,"goToId":164,"openInNewTab":40,"childs":165},"menu-item-iBdWiaiwHS","Recherche de logements","aaab1c6a-b6ab-4930-9c28-aa8b51d472d2",[],{"id":38,"title":167,"goTo":121,"url":168,"goToId":169,"openInNewTab":33,"childs":170,"megaMenu":33,"edit":33},"Achat d'immeubles","#home","6b8e6702-78a2-48d8-a8f3-1b9ab59754c4",[],{"id":66,"title":172,"goTo":121,"url":173,"goToId":174,"openInNewTab":33,"childs":175,"megaMenu":33,"edit":33},"À propos","#about","e32e7f7e-9de5-4bea-af69-3221480baad9",[],{"id":177,"title":178,"goTo":121,"url":179,"goToId":180,"openInNewTab":33,"childs":181,"megaMenu":33,"edit":33},"3","Contact","#contact","718cf4e1-3982-4b6c-98a6-98d876d71f80",[],{"id":183,"title":184,"goTo":121,"url":122,"goToId":185,"openInNewTab":33,"childs":186,"edit":33},"menu-item-Exn9i7bw2I","Espace Locataire","19740a7a-627f-4cc2-9c6c-2bc4dc775310",[187,191,196],{"id":188,"title":189,"goTo":121,"url":122,"goToId":185,"openInNewTab":40,"childs":190},"menu-item-Yi9Vp9JZUA","Maintenance",[],{"id":192,"title":193,"goTo":121,"url":122,"goToId":194,"openInNewTab":33,"childs":195},"menu-item-p_RRwkRdw5","FAQ","c0995294-ef06-4054-8a07-0eb0a2e190c9",[],{"id":197,"title":198,"goTo":121,"url":122,"goToId":199,"openInNewTab":33,"childs":200},"menu-item-2wkXcrOthZ","Documents","bafe429c-5984-42d9-8477-abba4031cb38",[],{"value":33},{"value":203},[204,209],{"id":38,"title":205,"goTo":206,"url":37,"goToId":37,"goToCacPage":207,"openInNewTab":40,"childs":208,"megaMenu":33},"My Orders","go-to-cac","orders",[],{"id":66,"title":210,"goTo":211,"url":37,"goToId":37,"openInNewTab":33,"childs":212,"megaMenu":33},"Logout","logout",[],{"value":214},{"width":215,"height":216,"url":217,"altText":218,"compression":40,"placeholderBase64":37,"servingUrl":37,"imageMeta":37},"280px","50px","https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69516fb5e889d31e86b6efb2.png","Brand Logo",{"value":121},{"value":221},{"url":37,"newTab":33},{"value":37},{"value":224},{"fileUrl":37,"fileName":37},{"value":226},[],{"value":228},[],{"value":37},{"value":37},{"value":37},{"value":106},{"value":130},{"value":40},{"value":236},"\u003Cp>\u003C\u002Fp>",{"value":40},{"value":239},"default",{"value":241},"nowrap",{"value":243},"var(--headlinefont)",{"value":245},[],{"value":247},{"name":248,"unicode":249,"fontFamily":250,"color":251},"bars","f0c9","Font Awesome 5 Free","var(--black)",{"value":253},{"name":254,"unicode":255,"fontFamily":250,"color":251},"chevron-down","f078",{"value":257,"unit":67},14,{"value":257,"unit":67},{"value":260},[],{"value":33},{"value":33},"nav-menu-v2","c-nav-menu-v2",{},{"borderWidth":267,"iconColor":269},{"value":268,"unit":67},0,{"value":251},[],{"id":10,"type":19,"child":272,"class":274,"styles":279,"extra":281,"meta":19,"tagName":46,"title":292,"_id":10,"classStr":293},[273],"row-kyMqnsiRwF",{"width":275,"borders":276,"borderRadius":277,"radiusEdge":278},{"value":24},{"value":59},{"value":61},{"value":63},{"borderWidth":280},{"value":66,"unit":67},{"sticky":282,"visibility":283,"bgImage":285,"allowRowMaxWidth":287,"customClass":288,"elementScreenshot":290},{"value":30},{"value":284},{"hideDesktop":33,"hideMobile":33},{"value":286},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":33},{"value":289},[],{"value":291},[],"Section","fullSection noBorder radius0 none",{"id":273,"type":52,"child":295,"class":297,"styles":302,"extra":304,"tagName":78,"meta":52,"title":79,"classStr":80},[296],"col-WR5cM4L3X7",{"alignRow":298,"borders":299,"borderRadius":300,"radiusEdge":301},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":303},{"value":66,"unit":67},{"visibility":305,"bgImage":307,"rowWidth":309,"customClass":310},{"value":306},{"hideDesktop":33,"hideMobile":33},{"value":308},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":311},[],{"id":296,"type":82,"child":313,"class":316,"styles":321,"extra":323,"tagName":107,"meta":82,"title":108,"noOfColumns":109,"classStr":110},[314,315],"heading-EcitVf6jjT","paragraph-Fy_HrphLXH",{"borders":317,"borderRadius":318,"radiusEdge":319,"nestedColumn":320},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":322},{"value":66,"unit":67},{"visibility":324,"bgImage":326,"columnLayout":328,"justifyContentColumnLayout":329,"alignContentColumnLayout":330,"forceColumnLayoutForMobile":331,"customClass":332,"elementVersion":334},{"value":325},{"hideDesktop":33,"hideMobile":33},{"value":327},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":99},{"value":101},{"value":40},{"value":333},[],{"value":106},{"extra":336,"id":315,"tagName":344,"class":345,"meta":356},{"visibility":337,"text":339,"nodeId":341,"customClass":342},{"value":338},{"hideMobile":37,"hideDesktop":37},{"value":340},"\u003Cp>\u003Cspan style=\"color: var(--white)\">Trouvez la propriété idéale parmi notre sélection de logement à louer\u003C\u002Fspan>\u003C\u002Fp>","cparagraph-Fy_HrphLXH",{"value":343},[],"c-paragraph",{"borders":346,"borderRadius":347,"radiusEdge":348,"entranceAnimation":349,"animationScale":351,"animationDuration":352,"animationDelay":353,"animationEasing":354},{"value":59},{"value":61},{"value":63},{"value":350},null,{"value":109},{"value":109},{"value":268},{"value":355},"linear","paragraph",{"extra":358,"id":314,"tagName":366,"class":367,"meta":376},{"visibility":359,"text":361,"nodeId":363,"customClass":364},{"value":360},{"hideMobile":37,"hideDesktop":37},{"value":362},"\u003Ch1>\u003Cspan style=\"color: var(--white)\">Logement à louer\u003C\u002Fspan>\u003C\u002Fh1>","cheading-EcitVf6jjT",{"value":365},[],"c-heading",{"borders":368,"borderRadius":369,"radiusEdge":370,"entranceAnimation":371,"animationScale":372,"animationDuration":373,"animationDelay":374,"animationEasing":375},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},"heading",{"id":11,"type":19,"child":378,"class":380,"styles":382,"extra":384,"meta":19,"tagName":46,"title":395,"_id":11,"classStr":24},[379],"row-kqfP4SYDWs",{"width":381},{"value":24},{"borderWidth":383},{"value":27},{"sticky":385,"visibility":386,"bgImage":388,"allowRowMaxWidth":390,"customClass":391,"elementScreenshot":393},{"value":30},{"value":387},{"hideDesktop":40,"hideMobile":40},{"value":389},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":33},{"value":392},[],{"value":394},[],"Section 2 1\u002F2",{"id":379,"type":52,"child":397,"class":399,"styles":401,"extra":403,"tagName":78,"meta":52,"title":79,"classStr":57},[398],"col-uupdULtpN6",{"alignRow":400},{"value":57},{"borderWidth":402},{"value":27},{"visibility":404,"bgImage":406,"rowWidth":408,"customClass":409},{"value":405},{"hideDesktop":33,"hideMobile":33},{"value":407},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":410},[],{"id":398,"type":82,"child":412,"class":414,"styles":415,"extra":417,"tagName":107,"meta":82,"title":108,"noOfColumns":109},[413],"heading-P4JHNP-t3d",{},{"borderWidth":416},{"value":27},{"visibility":418,"bgImage":420,"columnLayout":422,"justifyContentColumnLayout":423,"alignContentColumnLayout":424,"forceColumnLayoutForMobile":425,"customClass":426,"elementVersion":428},{"value":419},{"hideDesktop":33,"hideMobile":33},{"value":421},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":99},{"value":101},{"value":40},{"value":427},[],{"value":106},{"extra":430,"id":413,"tagName":366,"class":438,"meta":376},{"visibility":431,"text":433,"nodeId":435,"customClass":436},{"value":432},{"hideMobile":37,"hideDesktop":37},{"value":434},"\u003Ch1>2 \u003Cstrong>½\u003C\u002Fstrong> À LOUER\u003C\u002Fh1>","cheading-P4JHNP-t3d",{"value":437},[],{"borders":439,"borderRadius":440,"radiusEdge":441,"entranceAnimation":442,"animationScale":443,"animationDuration":444,"animationDelay":445,"animationEasing":446},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":12,"type":19,"child":448,"class":452,"styles":457,"extra":459,"meta":19,"tagName":46,"title":470,"_id":12,"classStr":293},[449,450,451],"row-ufVUOO75V_","row--V65xLoMfl","row-yRqZ6aHLSo",{"width":453,"borders":454,"borderRadius":455,"radiusEdge":456},{"value":24},{"value":59},{"value":61},{"value":63},{"borderWidth":458},{"value":66,"unit":67},{"sticky":460,"visibility":461,"bgImage":463,"allowRowMaxWidth":465,"customClass":466,"elementScreenshot":468},{"value":30},{"value":462},{"hideDesktop":33,"hideMobile":33},{"value":464},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":33},{"value":467},[],{"value":469},[],"Section 3 1\u002F2",{"id":451,"type":52,"child":472,"class":474,"styles":479,"extra":481,"tagName":78,"meta":52,"title":489,"classStr":80},[473],"col-5BSbroV8HW",{"alignRow":475,"borders":476,"borderRadius":477,"radiusEdge":478},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":480},{"value":66,"unit":67},{"visibility":482,"bgImage":484,"rowWidth":486,"customClass":487},{"value":483},{"hideDesktop":33,"hideMobile":33},{"value":485},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":488},[],"3 Column Row",{"id":473,"type":82,"child":491,"class":498,"styles":505,"extra":507,"tagName":107,"meta":82,"title":520,"noOfColumns":521,"classStr":522},[492,493,494,495,496,497],"sub-heading-P5Yzz7_Iqc","image-slider-je4P_S8v_W","sub-heading-nza-xhmk31","row-nGS-HeF6nn","sub-heading-eDB458-8HI","sub-heading-X-Zufpq8Ah",{"borders":499,"borderRadius":501,"radiusEdge":502,"nestedColumn":503},{"value":500},"borderFull",{"value":61},{"value":63},{"value":504},"c-nested-column",{"borderWidth":506},{"value":66,"unit":67},{"visibility":508,"bgImage":510,"columnLayout":512,"justifyContentColumnLayout":513,"alignContentColumnLayout":515,"forceColumnLayoutForMobile":516,"customClass":517,"elementVersion":519},{"value":509},{"hideDesktop":33,"hideMobile":33},{"value":511},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},"space-evenly",{"value":101},{"value":40},{"value":518},[],{"value":106},"350 NOTRE-DAME À NDBC",3,"borderFull radius0 none c-nested-column",{"extra":524,"id":497,"tagName":532,"class":533,"meta":542},{"visibility":525,"text":527,"nodeId":529,"customClass":530},{"value":526},{"hideMobile":37,"hideDesktop":37},{"value":528},"\u003Ch2>1 130 $ \u002F mois\u003C\u002Fh2>","csub-heading-X-Zufpq8Ah",{"value":531},[],"c-sub-heading",{"borders":534,"borderRadius":535,"radiusEdge":536,"entranceAnimation":537,"animationScale":538,"animationDuration":539,"animationDelay":540,"animationEasing":541},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},"sub-heading",{"extra":544,"id":496,"tagName":532,"class":552,"meta":542},{"visibility":545,"text":547,"nodeId":549,"customClass":550},{"value":546},{"hideMobile":37,"hideDesktop":37},{"value":548},"\u003Ch2>1x Demisous-sol\u003C\u002Fh2>\u003Ch2>1x 1e étage\u003C\u002Fh2>","csub-heading-eDB458-8HI",{"value":551},[],{"borders":553,"borderRadius":554,"radiusEdge":555,"entranceAnimation":556,"animationScale":557,"animationDuration":558,"animationDelay":559,"animationEasing":560},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":495,"type":52,"child":562,"class":564,"styles":569,"extra":571,"tagName":78,"meta":52,"title":489,"classStr":80},[563],"col-PZ9xI3iXTN",{"alignRow":565,"borders":566,"borderRadius":567,"radiusEdge":568},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":570},{"value":66,"unit":67},{"visibility":572,"bgImage":574,"rowWidth":576,"customClass":577},{"value":573},{"hideDesktop":33,"hideMobile":33},{"value":575},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":578},[],{"id":563,"type":82,"child":580,"class":584,"styles":589,"extra":591,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[581,582,583],"paragraph-A9KXQOpxbx","paragraph-H2jlK0WT1f","paragraph-OVjcO1jAzz",{"borders":585,"borderRadius":586,"radiusEdge":587,"nestedColumn":588},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":590},{"value":66,"unit":67},{"visibility":592,"bgImage":594,"columnLayout":596,"justifyContentColumnLayout":597,"alignContentColumnLayout":598,"forceColumnLayoutForMobile":599,"customClass":600,"elementVersion":602},{"value":593},{"hideDesktop":33,"hideMobile":33},{"value":595},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":601},[],{"value":106},{"extra":604,"id":583,"tagName":344,"class":612,"meta":356},{"visibility":605,"text":607,"nodeId":609,"customClass":610},{"value":606},{"hideMobile":37,"hideDesktop":37},{"value":608},"\u003Cp>3 \u003Cstrong>½\u003C\u002Fstrong>\u003C\u002Fp>","cparagraph-OVjcO1jAzz",{"value":611},[],{"borders":613,"borderRadius":614,"radiusEdge":615,"entranceAnimation":616,"animationScale":617,"animationDuration":618,"animationDelay":619,"animationEasing":620},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":622,"id":582,"tagName":344,"class":630,"meta":356},{"visibility":623,"text":625,"nodeId":627,"customClass":628},{"value":624},{"hideMobile":37,"hideDesktop":37},{"value":626},"\u003Cp>1\u003C\u002Fp>","cparagraph-H2jlK0WT1f",{"value":629},[],{"borders":631,"borderRadius":632,"radiusEdge":633,"entranceAnimation":634,"animationScale":635,"animationDuration":636,"animationDelay":637,"animationEasing":638},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":640,"id":581,"tagName":344,"class":647,"meta":356},{"visibility":641,"text":643,"nodeId":644,"customClass":645},{"value":642},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-A9KXQOpxbx",{"value":646},[],{"borders":648,"borderRadius":649,"radiusEdge":650,"entranceAnimation":651,"animationScale":652,"animationDuration":653,"animationDelay":654,"animationEasing":655},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":657,"id":494,"tagName":532,"class":665,"meta":542},{"visibility":658,"text":660,"nodeId":662,"customClass":663},{"value":659},{"hideMobile":37,"hideDesktop":37},{"value":661},"\u003Ch2>\u003Cstrong>Secteur Notre-Dame-Du-\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>Bon-Conseil\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> MAINTENANT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>Internet inclus\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>","csub-heading-nza-xhmk31",{"value":664},[],{"borders":666,"borderRadius":667,"radiusEdge":668,"entranceAnimation":669,"animationScale":670,"animationDuration":671,"animationDelay":672,"animationEasing":673},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":675,"class":708,"styles":709,"customCss":711,"id":493,"version":106,"type":712,"child":713,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":676,"sliderList":677,"sliderSize":689,"sliderPagination":692,"sliderArrow":698,"sliderAnimation":700,"visibility":704,"customClass":706},"cimage-slider-je4P_S8v_W",{"value":678},[679,682,684,686],{"ctaTarget":680,"cta":37,"backgroundImage":681,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"_blank","https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69aaefbd618c8d7a2529199b.jpeg",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":683,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69aaefbdb3fc0007de22c7d8.jpeg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":685,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69aaefbdb003fa45cbe94421.jpeg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":688,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},4,"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69aaefbdb003faa891e94420.jpeg",{"value":690},{"height":691},300,{"value":693},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},"circle","#FFFFFF","#000000",10,{"value":699},{"enable":40,"color":695,"animationEffect":63},{"value":701},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},"slide",5,{"value":705},{"hideDesktop":33,"hideMobile":33},{"value":707},[],{},{"borderWidth":710},{"value":268,"unit":67},[],"element",[],"image-slider","c-image-slider","Image Slider",{"extra":718,"id":492,"tagName":532,"class":726,"meta":542},{"visibility":719,"text":721,"nodeId":723,"customClass":724},{"value":720},{"hideMobile":37,"hideDesktop":37},{"value":722},"\u003Ch2>\u003Cstrong>3 ½ Notre-dame à 1 130$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-P5Yzz7_Iqc",{"value":725},[],{"borders":727,"borderRadius":728,"radiusEdge":729,"entranceAnimation":730,"animationScale":731,"animationDuration":732,"animationDelay":733,"animationEasing":734},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":450,"type":52,"child":736,"class":740,"styles":745,"extra":747,"tagName":78,"meta":52,"title":489,"classStr":80},[737,738,739],"col-Rg3Gr4MzBf","col-5sScusTRxm","col-zQ1-bO4G0X",{"alignRow":741,"borders":742,"borderRadius":743,"radiusEdge":744},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":746},{"value":66,"unit":67},{"visibility":748,"bgImage":750,"rowWidth":752,"customClass":753},{"value":749},{"hideDesktop":33,"hideMobile":33},{"value":751},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":754},[],{"id":739,"type":82,"child":756,"class":764,"styles":769,"extra":771,"tagName":107,"meta":82,"title":783,"noOfColumns":521,"classStr":522},[757,758,759,760,761,762,763],"sub-heading-_OgtpHflq7","image-slider-qDIABhcLRq","sub-heading-iW-mCTaop8","button-_3pz_kDc9D","row-2A6TdgKHlq","sub-heading-s8XATN38CD","sub-heading-qokIovhf9V",{"borders":765,"borderRadius":766,"radiusEdge":767,"nestedColumn":768},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":770},{"value":66,"unit":67},{"visibility":772,"bgImage":774,"columnLayout":776,"justifyContentColumnLayout":777,"alignContentColumnLayout":778,"forceColumnLayoutForMobile":779,"customClass":780,"elementVersion":782},{"value":773},{"hideDesktop":33,"hideMobile":33},{"value":775},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":781},[],{"value":106},"4625 Boul St-Joseph",{"extra":785,"id":763,"tagName":532,"class":793,"meta":542},{"visibility":786,"text":788,"nodeId":790,"customClass":791},{"value":787},{"hideMobile":37,"hideDesktop":37},{"value":789},"\u003Ch2>1 125 $ \u002F mois\u003C\u002Fh2>","csub-heading-qokIovhf9V",{"value":792},[],{"borders":794,"borderRadius":795,"radiusEdge":796,"entranceAnimation":797,"animationScale":798,"animationDuration":799,"animationDelay":800,"animationEasing":801},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":803,"id":762,"tagName":532,"class":811,"meta":542},{"visibility":804,"text":806,"nodeId":808,"customClass":809},{"value":805},{"hideMobile":37,"hideDesktop":37},{"value":807},"\u003Ch2>RDC à 3e étage\u003C\u002Fh2>","csub-heading-s8XATN38CD",{"value":810},[],{"borders":812,"borderRadius":813,"radiusEdge":814,"entranceAnimation":815,"animationScale":816,"animationDuration":817,"animationDelay":818,"animationEasing":819},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":761,"type":52,"child":821,"class":823,"styles":828,"extra":830,"tagName":78,"meta":52,"title":489,"classStr":80},[822],"col-xy95dLyhr_",{"alignRow":824,"borders":825,"borderRadius":826,"radiusEdge":827},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":829},{"value":66,"unit":67},{"visibility":831,"bgImage":833,"rowWidth":835,"customClass":836},{"value":832},{"hideDesktop":33,"hideMobile":33},{"value":834},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":837},[],{"id":822,"type":82,"child":839,"class":843,"styles":848,"extra":850,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[840,841,842],"paragraph-8hPmEs7mZK","paragraph-8iazHsJK-U","paragraph-aRr6PntS5I",{"borders":844,"borderRadius":845,"radiusEdge":846,"nestedColumn":847},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":849},{"value":66,"unit":67},{"visibility":851,"bgImage":853,"columnLayout":855,"justifyContentColumnLayout":856,"alignContentColumnLayout":857,"forceColumnLayoutForMobile":858,"customClass":859,"elementVersion":861},{"value":852},{"hideDesktop":33,"hideMobile":33},{"value":854},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":860},[],{"value":106},{"extra":863,"id":842,"tagName":344,"class":870,"meta":356},{"visibility":864,"text":866,"nodeId":867,"customClass":868},{"value":865},{"hideMobile":37,"hideDesktop":37},{"value":608},"cparagraph-aRr6PntS5I",{"value":869},[],{"borders":871,"borderRadius":872,"radiusEdge":873,"entranceAnimation":874,"animationScale":875,"animationDuration":876,"animationDelay":877,"animationEasing":878},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":880,"id":841,"tagName":344,"class":887,"meta":356},{"visibility":881,"text":883,"nodeId":884,"customClass":885},{"value":882},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-8iazHsJK-U",{"value":886},[],{"borders":888,"borderRadius":889,"radiusEdge":890,"entranceAnimation":891,"animationScale":892,"animationDuration":893,"animationDelay":894,"animationEasing":895},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":897,"id":840,"tagName":344,"class":904,"meta":356},{"visibility":898,"text":900,"nodeId":901,"customClass":902},{"value":899},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-8hPmEs7mZK",{"value":903},[],{"borders":905,"borderRadius":906,"radiusEdge":907,"entranceAnimation":908,"animationScale":909,"animationDuration":910,"animationDelay":911,"animationEasing":912},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":914,"id":760,"tagName":944,"meta":945,"class":946},{"visibility":915,"text":917,"subText":919,"productId":920,"action":922,"visitWebsite":923,"downloadFile":924,"hideElements":925,"showElements":926,"scrollToElement":927,"stepPath":928,"saleAction":930,"phoneNumber":931,"emailAddress":932,"popupId":933,"storeProductId":935,"storeProductPriceId":937,"storeCollectionId":939,"customClass":941,"nodeId":943},{"value":916},{"hideMobile":37,"hideDesktop":37},{"value":918},"Je suis intéressé",{},{"value":921},{},{"value":121},{},{},{},{},{},{"value":929},"0f9d55c3-6a60-45ba-bf5d-d2606142d3a5",{},{},{},{"value":934},"hl_main_popup-gcJTzp6WbG",{"value":936},{},{"value":938},{},{"value":940},{},{"value":942},[],"cbutton-ys3tkAz43J","c-button","button",{"buttonBgStyle":947,"buttonVp":949,"buttonHp":951,"hoverAnimation":953,"entranceAnimation":954,"animationScale":955,"animationDuration":956,"animationDelay":957,"animationEasing":958},{"value":948},"custom",{"value":950},"button-vp-5",{"value":952},"button-hp-5",{"value":37},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":960,"id":759,"tagName":532,"class":968,"meta":542},{"visibility":961,"text":963,"nodeId":965,"customClass":966},{"value":962},{"hideMobile":37,"hideDesktop":37},{"value":964},"\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> MAINTENANT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Ch2>\u003Cstrong>INTERNET COMPRIS\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Construction neuve\u003C\u002Fh2>\u003Ch2>Thermopompe et échangeur d'air\u003C\u002Fh2>\u003Ch2>\u003C\u002Fh2>","csub-heading-iW-mCTaop8",{"value":967},[],{"borders":969,"borderRadius":970,"radiusEdge":971,"entranceAnimation":972,"animationScale":973,"animationDuration":974,"animationDelay":975,"animationEasing":976},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":978,"class":1007,"styles":1008,"customCss":1010,"id":758,"version":106,"type":712,"child":1011,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":979,"sliderList":980,"sliderSize":995,"sliderPagination":997,"sliderArrow":999,"sliderAnimation":1001,"visibility":1003,"customClass":1005},"cimage-slider-qDIABhcLRq",{"value":981},[982,984,986,988,990,992],{"ctaTarget":680,"cta":37,"backgroundImage":983,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd7582ddfdcb6be082a0d1.jpeg",{"ctaTarget":680,"cta":37,"backgroundImage":985,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd75822815911b20ec2d2f.jpeg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":987,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd758266c8fcd62de8bc03.jpeg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":989,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd758287c93b851a7ba186.jpeg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":991,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd75822a8b8893e7e9aabf.jpeg",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":994,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},6,"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd7582a78e44ceddb8e540.png",{"value":996},{"height":691},{"value":998},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":1000},{"enable":40,"color":695,"animationEffect":63},{"value":1002},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":1004},{"hideDesktop":33,"hideMobile":33},{"value":1006},[],{},{"borderWidth":1009},{"value":268,"unit":67},[],[],{"extra":1013,"id":757,"tagName":532,"class":1021,"meta":542},{"visibility":1014,"text":1016,"nodeId":1018,"customClass":1019},{"value":1015},{"hideMobile":37,"hideDesktop":37},{"value":1017},"\u003Ch2>\u003Cstrong>Boul. St-Joseph à partir de 1 125$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-_OgtpHflq7",{"value":1020},[],{"borders":1022,"borderRadius":1023,"radiusEdge":1024,"entranceAnimation":1025,"animationScale":1026,"animationDuration":1027,"animationDelay":1028,"animationEasing":1029},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":738,"type":82,"child":1031,"class":1038,"styles":1043,"extra":1045,"tagName":107,"meta":82,"title":1057,"noOfColumns":521,"classStr":522},[1032,1033,1034,1035,1036,1037],"sub-heading-F57qzmwWcM","image-slider-w7GLGClyKT","sub-heading-gYnPMaZyrW","row-fusa_Rdcgb","sub-heading-JNJNQEo3JE","sub-heading-C3-NEO8NoY",{"borders":1039,"borderRadius":1040,"radiusEdge":1041,"nestedColumn":1042},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":1044},{"value":66,"unit":67},{"visibility":1046,"bgImage":1048,"columnLayout":1050,"justifyContentColumnLayout":1051,"alignContentColumnLayout":1052,"forceColumnLayoutForMobile":1053,"customClass":1054,"elementVersion":1056},{"value":1047},{"hideDesktop":33,"hideMobile":33},{"value":1049},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":1055},[],{"value":106},"185-1 DORION",{"extra":1059,"id":1037,"tagName":532,"class":1066,"meta":542},{"visibility":1060,"text":1062,"nodeId":1063,"customClass":1064},{"value":1061},{"hideMobile":37,"hideDesktop":37},{"value":528},"csub-heading-C3-NEO8NoY",{"value":1065},[],{"borders":1067,"borderRadius":1068,"radiusEdge":1069,"entranceAnimation":1070,"animationScale":1071,"animationDuration":1072,"animationDelay":1073,"animationEasing":1074},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1076,"id":1036,"tagName":532,"class":1084,"meta":542},{"visibility":1077,"text":1079,"nodeId":1081,"customClass":1082},{"value":1078},{"hideMobile":37,"hideDesktop":37},{"value":1080},"\u003Ch2>Rez de chaussé\u003C\u002Fh2>","csub-heading-JNJNQEo3JE",{"value":1083},[],{"borders":1085,"borderRadius":1086,"radiusEdge":1087,"entranceAnimation":1088,"animationScale":1089,"animationDuration":1090,"animationDelay":1091,"animationEasing":1092},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":1035,"type":52,"child":1094,"class":1096,"styles":1101,"extra":1103,"tagName":78,"meta":52,"title":489,"classStr":80},[1095],"col-xAMHzeXDbc",{"alignRow":1097,"borders":1098,"borderRadius":1099,"radiusEdge":1100},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":1102},{"value":66,"unit":67},{"visibility":1104,"bgImage":1106,"rowWidth":1108,"customClass":1109},{"value":1105},{"hideDesktop":33,"hideMobile":33},{"value":1107},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":1110},[],{"id":1095,"type":82,"child":1112,"class":1116,"styles":1121,"extra":1123,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[1113,1114,1115],"paragraph-xlfTuNWwn0","paragraph-qxvojP52IR","paragraph-kUhwMrFwUs",{"borders":1117,"borderRadius":1118,"radiusEdge":1119,"nestedColumn":1120},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":1122},{"value":66,"unit":67},{"visibility":1124,"bgImage":1126,"columnLayout":1128,"justifyContentColumnLayout":1129,"alignContentColumnLayout":1130,"forceColumnLayoutForMobile":1131,"customClass":1132,"elementVersion":1134},{"value":1125},{"hideDesktop":33,"hideMobile":33},{"value":1127},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":1133},[],{"value":106},{"extra":1136,"id":1115,"tagName":344,"class":1143,"meta":356},{"visibility":1137,"text":1139,"nodeId":1140,"customClass":1141},{"value":1138},{"hideMobile":37,"hideDesktop":37},{"value":608},"cparagraph-kUhwMrFwUs",{"value":1142},[],{"borders":1144,"borderRadius":1145,"radiusEdge":1146,"entranceAnimation":1147,"animationScale":1148,"animationDuration":1149,"animationDelay":1150,"animationEasing":1151},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1153,"id":1114,"tagName":344,"class":1160,"meta":356},{"visibility":1154,"text":1156,"nodeId":1157,"customClass":1158},{"value":1155},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-qxvojP52IR",{"value":1159},[],{"borders":1161,"borderRadius":1162,"radiusEdge":1163,"entranceAnimation":1164,"animationScale":1165,"animationDuration":1166,"animationDelay":1167,"animationEasing":1168},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1170,"id":1113,"tagName":344,"class":1177,"meta":356},{"visibility":1171,"text":1173,"nodeId":1174,"customClass":1175},{"value":1172},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-xlfTuNWwn0",{"value":1176},[],{"borders":1178,"borderRadius":1179,"radiusEdge":1180,"entranceAnimation":1181,"animationScale":1182,"animationDuration":1183,"animationDelay":1184,"animationEasing":1185},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1187,"id":1034,"tagName":532,"class":1195,"meta":542},{"visibility":1188,"text":1190,"nodeId":1192,"customClass":1193},{"value":1189},{"hideMobile":37,"hideDesktop":37},{"value":1191},"\u003Ch2>\u003Cstrong>Secteur du cégep\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> Août !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>Internet inclus\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003Cbr>Près du cégep et tous les services\u003C\u002Fh2>\u003Ch2>\u003C\u002Fh2>","csub-heading-gYnPMaZyrW",{"value":1194},[],{"borders":1196,"borderRadius":1197,"radiusEdge":1198,"entranceAnimation":1199,"animationScale":1200,"animationDuration":1201,"animationDelay":1202,"animationEasing":1203},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1205,"class":1233,"styles":1234,"customCss":1236,"id":1033,"version":106,"type":712,"child":1237,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":1206,"sliderList":1207,"sliderSize":1221,"sliderPagination":1223,"sliderArrow":1225,"sliderAnimation":1227,"visibility":1229,"customClass":1231},"cimage-slider-w7GLGClyKT",{"value":1208},[1209,1211,1213,1215,1217,1219],{"id":109,"ctaTarget":680,"cta":37,"backgroundImage":1210,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd54bb02c31a3704462d2f.jpg",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":1212,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd54bba61536401851944b.jpg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":1214,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd54bbddfdcbf38b7eb0fc.jpg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":1216,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd54bb9cbf5c2841e06e3f.jpg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":1218,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd54bb9c964e830c793952.jpg",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":1220,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd54bb2815918092e83a53.jpg",{"value":1222},{"height":691},{"value":1224},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":1226},{"enable":40,"color":695,"animationEffect":63},{"value":1228},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":1230},{"hideDesktop":33,"hideMobile":33},{"value":1232},[],{},{"borderWidth":1235},{"value":268,"unit":67},[],[],{"extra":1239,"id":1032,"tagName":532,"class":1247,"meta":542},{"visibility":1240,"text":1242,"nodeId":1244,"customClass":1245},{"value":1241},{"hideMobile":37,"hideDesktop":37},{"value":1243},"\u003Ch2>\u003Cstrong>3 ½ rue Melançon à 1 130$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-F57qzmwWcM",{"value":1246},[],{"borders":1248,"borderRadius":1249,"radiusEdge":1250,"entranceAnimation":1251,"animationScale":1252,"animationDuration":1253,"animationDelay":1254,"animationEasing":1255},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":737,"type":82,"child":1257,"class":1265,"styles":1270,"extra":1272,"tagName":107,"meta":82,"title":1284,"noOfColumns":521,"classStr":522},[1258,1259,1260,1261,1262,1263,1264],"sub-heading-P6aDP2NQDn","image-slider-bQY6ZCwz82","sub-heading-pkSbfv3TRg","row-te6d0D-srD","sub-heading-yEp3Wcs9u-","sub-heading-cABxyP6k86","button-S5qxLC3t7Z",{"borders":1266,"borderRadius":1267,"radiusEdge":1268,"nestedColumn":1269},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":1271},{"value":66,"unit":67},{"visibility":1273,"bgImage":1275,"columnLayout":1277,"justifyContentColumnLayout":1278,"alignContentColumnLayout":1279,"forceColumnLayoutForMobile":1280,"customClass":1281,"elementVersion":1283},{"value":1274},{"hideDesktop":33,"hideMobile":33},{"value":1276},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":1282},[],{"value":106},"900-3 RUE ALEXANDRE",{"extra":1286,"id":1264,"tagName":944,"meta":945,"class":1315},{"visibility":1287,"text":1289,"subText":1291,"productId":1292,"action":1294,"visitWebsite":1296,"downloadFile":1297,"hideElements":1298,"showElements":1299,"scrollToElement":1300,"stepPath":1301,"saleAction":1302,"phoneNumber":1303,"emailAddress":1304,"popupId":1305,"storeProductId":1306,"storeProductPriceId":1308,"storeCollectionId":1310,"customClass":1312,"nodeId":1314},{"value":1288},{"hideMobile":40,"hideDesktop":40},{"value":1290},"LOUER",{},{"value":1293},{},{"value":1295},"openPopup",{},{},{},{},{},{},{},{},{},{"value":934},{"value":1307},{},{"value":1309},{},{"value":1311},{},{"value":1313},[],"cbutton-S5qxLC3t7Z",{"buttonBgStyle":1316,"buttonVp":1317,"buttonHp":1319,"hoverAnimation":1321,"borders":1322,"borderRadius":1323,"radiusEdge":1325,"entranceAnimation":1326,"animationScale":1327,"animationDuration":1328,"animationDelay":1329,"animationEasing":1330},{"value":948},{"value":1318},"btn-vp",{"value":1320},"btn-hp",{"value":350},{"value":59},{"value":1324},"radius5",{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1332,"id":1263,"tagName":532,"class":1340,"meta":542},{"visibility":1333,"text":1335,"nodeId":1337,"customClass":1338},{"value":1334},{"hideMobile":37,"hideDesktop":37},{"value":1336},"\u003Ch2>900 $ \u002F mois\u003C\u002Fh2>","csub-heading-cABxyP6k86",{"value":1339},[],{"borders":1341,"borderRadius":1342,"radiusEdge":1343,"entranceAnimation":1344,"animationScale":1345,"animationDuration":1346,"animationDelay":1347,"animationEasing":1348},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1350,"id":1262,"tagName":532,"class":1358,"meta":542},{"visibility":1351,"text":1353,"nodeId":1355,"customClass":1356},{"value":1352},{"hideMobile":37,"hideDesktop":37},{"value":1354},"\u003Ch2>1er étage\u003C\u002Fh2>","csub-heading-yEp3Wcs9u-",{"value":1357},[],{"borders":1359,"borderRadius":1360,"radiusEdge":1361,"entranceAnimation":1362,"animationScale":1363,"animationDuration":1364,"animationDelay":1365,"animationEasing":1366},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":1261,"type":52,"child":1368,"class":1370,"styles":1375,"extra":1377,"tagName":78,"meta":52,"title":489,"classStr":80},[1369],"col-Fmvt_lf7Kk",{"alignRow":1371,"borders":1372,"borderRadius":1373,"radiusEdge":1374},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":1376},{"value":66,"unit":67},{"visibility":1378,"bgImage":1380,"rowWidth":1382,"customClass":1383},{"value":1379},{"hideDesktop":33,"hideMobile":33},{"value":1381},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":1384},[],{"id":1369,"type":82,"child":1386,"class":1390,"styles":1395,"extra":1397,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[1387,1388,1389],"paragraph-PIa9qcyIGX","paragraph-S0RLkATTlF","paragraph-XosEhlVBsh",{"borders":1391,"borderRadius":1392,"radiusEdge":1393,"nestedColumn":1394},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":1396},{"value":66,"unit":67},{"visibility":1398,"bgImage":1400,"columnLayout":1402,"justifyContentColumnLayout":1403,"alignContentColumnLayout":1404,"forceColumnLayoutForMobile":1405,"customClass":1406,"elementVersion":1408},{"value":1399},{"hideDesktop":33,"hideMobile":33},{"value":1401},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":1407},[],{"value":106},{"extra":1410,"id":1389,"tagName":344,"class":1417,"meta":356},{"visibility":1411,"text":1413,"nodeId":1414,"customClass":1415},{"value":1412},{"hideMobile":37,"hideDesktop":37},{"value":608},"cparagraph-XosEhlVBsh",{"value":1416},[],{"borders":1418,"borderRadius":1419,"radiusEdge":1420,"entranceAnimation":1421,"animationScale":1422,"animationDuration":1423,"animationDelay":1424,"animationEasing":1425},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1427,"id":1388,"tagName":344,"class":1434,"meta":356},{"visibility":1428,"text":1430,"nodeId":1431,"customClass":1432},{"value":1429},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-S0RLkATTlF",{"value":1433},[],{"borders":1435,"borderRadius":1436,"radiusEdge":1437,"entranceAnimation":1438,"animationScale":1439,"animationDuration":1440,"animationDelay":1441,"animationEasing":1442},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1444,"id":1387,"tagName":344,"class":1451,"meta":356},{"visibility":1445,"text":1447,"nodeId":1448,"customClass":1449},{"value":1446},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-PIa9qcyIGX",{"value":1450},[],{"borders":1452,"borderRadius":1453,"radiusEdge":1454,"entranceAnimation":1455,"animationScale":1456,"animationDuration":1457,"animationDelay":1458,"animationEasing":1459},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1461,"id":1260,"tagName":532,"class":1469,"meta":542},{"visibility":1462,"text":1464,"nodeId":1466,"customClass":1467},{"value":1463},{"hideMobile":37,"hideDesktop":37},{"value":1465},"\u003Ch2>\u003Cstrong>Secteur St-Pierre\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> MAINTENANT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003Cbr>Entrée laveuse\u002Fsécheuse\u003C\u002Fh2>\u003Ch2>Immeuble \u003Cstrong>NEUF\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Près du cégep et tous les services\u003C\u002Fh2>","csub-heading-pkSbfv3TRg",{"value":1468},[],{"borders":1470,"borderRadius":1471,"radiusEdge":1472,"entranceAnimation":1473,"animationScale":1474,"animationDuration":1475,"animationDelay":1476,"animationEasing":1477},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1479,"class":1503,"styles":1504,"customCss":1506,"id":1259,"version":106,"type":712,"child":1507,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":1480,"sliderList":1481,"sliderSize":1491,"sliderPagination":1493,"sliderArrow":1495,"sliderAnimation":1497,"visibility":1499,"customClass":1501},"cimage-slider-bQY6ZCwz82",{"value":1482},[1483,1485,1487,1489],{"ctaTarget":680,"cta":37,"backgroundImage":1484,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a720928fcee90cf632ffb8a.png",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":1486,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a720928ee7ca3d1c4804504.png",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":1488,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a720928eaa4719b5c2228ff.png",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":1490,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a72092835dab6b5c619dabb.png",{"value":1492},{"height":691},{"value":1494},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":1496},{"enable":40,"color":695,"animationEffect":63},{"value":1498},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":1500},{"hideDesktop":33,"hideMobile":33},{"value":1502},[],{},{"borderWidth":1505},{"value":268,"unit":67},[],[],{"extra":1509,"id":1258,"tagName":532,"class":1517,"meta":542},{"visibility":1510,"text":1512,"nodeId":1514,"customClass":1515},{"value":1511},{"hideMobile":37,"hideDesktop":37},{"value":1513},"\u003Ch2>\u003Cstrong>3 ½ rue Alexandre à 900$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-P6aDP2NQDn",{"value":1516},[],{"borders":1518,"borderRadius":1519,"radiusEdge":1520,"entranceAnimation":1521,"animationScale":1522,"animationDuration":1523,"animationDelay":1524,"animationEasing":1525},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":449,"type":52,"child":1527,"class":1529,"styles":1534,"extra":1536,"tagName":78,"meta":52,"title":79,"classStr":80},[1528],"col-KIf4Ql0phl",{"alignRow":1530,"borders":1531,"borderRadius":1532,"radiusEdge":1533},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":1535},{"value":66,"unit":67},{"visibility":1537,"bgImage":1539,"rowWidth":1541,"customClass":1542},{"value":1538},{"hideDesktop":33,"hideMobile":33},{"value":1540},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":1543},[],{"id":1528,"type":82,"child":1545,"class":1547,"styles":1552,"extra":1554,"tagName":107,"meta":82,"title":108,"noOfColumns":109,"classStr":110},[1546],"heading-3uWiOQESsM",{"borders":1548,"borderRadius":1549,"radiusEdge":1550,"nestedColumn":1551},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":1553},{"value":66,"unit":67},{"visibility":1555,"bgImage":1557,"columnLayout":1559,"justifyContentColumnLayout":1560,"alignContentColumnLayout":1561,"forceColumnLayoutForMobile":1562,"customClass":1563,"elementVersion":1565},{"value":1556},{"hideDesktop":33,"hideMobile":33},{"value":1558},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":99},{"value":101},{"value":40},{"value":1564},[],{"value":106},{"extra":1567,"id":1546,"tagName":366,"class":1575,"meta":376},{"visibility":1568,"text":1570,"nodeId":1572,"customClass":1573},{"value":1569},{"hideMobile":37,"hideDesktop":37},{"value":1571},"\u003Ch1>3 \u003Cstrong>½\u003C\u002Fstrong> À LOUER\u003C\u002Fh1>","cheading-3uWiOQESsM",{"value":1574},[],{"borders":1576,"borderRadius":1577,"radiusEdge":1578,"entranceAnimation":1579,"animationScale":1580,"animationDuration":1581,"animationDelay":1582,"animationEasing":1583},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":13,"type":19,"child":1585,"class":1591,"styles":1596,"extra":1598,"meta":19,"tagName":46,"title":1609,"_id":13,"classStr":293},[1586,1587,1588,1589,1590],"row-rh4yMILdRq","row-AXTeGWxz-Ld","row-99GgjNdm-g","row-hYTTIOKBfG","row-0KfYta8rZb",{"width":1592,"borders":1593,"borderRadius":1594,"radiusEdge":1595},{"value":24},{"value":59},{"value":61},{"value":63},{"borderWidth":1597},{"value":66,"unit":67},{"sticky":1599,"visibility":1600,"bgImage":1602,"allowRowMaxWidth":1604,"customClass":1605,"elementScreenshot":1607},{"value":30},{"value":1601},{"hideDesktop":33,"hideMobile":33},{"value":1603},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":33},{"value":1606},[],{"value":1608},[],"Section 4 1\u002F2",{"id":1590,"type":52,"child":1611,"class":1614,"styles":1616,"extra":1618,"tagName":78,"meta":52,"title":79,"classStr":57},[1612,1613],"col-IeMQJtd4Vs","col-Hx1m6Q308r",{"alignRow":1615},{"value":57},{"borderWidth":1617},{"value":27},{"visibility":1619,"bgImage":1621,"rowWidth":1623,"customClass":1624},{"value":1620},{"hideDesktop":33,"hideMobile":33},{"value":1622},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":1625},[],{"id":1613,"type":82,"child":1627,"class":1634,"styles":1639,"extra":1641,"tagName":107,"meta":82,"title":1653,"noOfColumns":521,"classStr":522},[1628,1629,1630,1631,1632,1633],"sub-heading-BEyluUicBe","image-slider-shO7zM36bG","sub-heading--kCWjhM_-p","row-BIkNjvRLaq","sub-heading-dK9TIFstoS","sub-heading-FZbW4ftYFz",{"borders":1635,"borderRadius":1636,"radiusEdge":1637,"nestedColumn":1638},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":1640},{"value":66,"unit":67},{"visibility":1642,"bgImage":1644,"columnLayout":1646,"justifyContentColumnLayout":1647,"alignContentColumnLayout":1648,"forceColumnLayoutForMobile":1649,"customClass":1650,"elementVersion":1652},{"value":1643},{"hideDesktop":33,"hideMobile":33},{"value":1645},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":1651},[],{"value":106},"4714 BOUL ST-JOSEPH",{"extra":1655,"id":1633,"tagName":532,"class":1663,"meta":542},{"visibility":1656,"text":1658,"nodeId":1660,"customClass":1661},{"value":1657},{"hideMobile":37,"hideDesktop":37},{"value":1659},"\u003Ch2>1 495 $ \u002F mois\u003C\u002Fh2>","csub-heading-FZbW4ftYFz",{"value":1662},[],{"borders":1664,"borderRadius":1665,"radiusEdge":1666,"entranceAnimation":1667,"animationScale":1668,"animationDuration":1669,"animationDelay":1670,"animationEasing":1671},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1673,"id":1632,"tagName":532,"class":1681,"meta":542},{"visibility":1674,"text":1676,"nodeId":1678,"customClass":1679},{"value":1675},{"hideMobile":37,"hideDesktop":37},{"value":1677},"\u003Ch2>2x 2E étage\u003Cbr>1x 3E étage\u003C\u002Fh2>","csub-heading-dK9TIFstoS",{"value":1680},[],{"borders":1682,"borderRadius":1683,"radiusEdge":1684,"entranceAnimation":1685,"animationScale":1686,"animationDuration":1687,"animationDelay":1688,"animationEasing":1689},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":1631,"type":52,"child":1691,"class":1693,"styles":1698,"extra":1700,"tagName":78,"meta":52,"title":489,"classStr":80},[1692],"col-d5P6cDv7cw",{"alignRow":1694,"borders":1695,"borderRadius":1696,"radiusEdge":1697},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":1699},{"value":66,"unit":67},{"visibility":1701,"bgImage":1703,"rowWidth":1705,"customClass":1706},{"value":1702},{"hideDesktop":33,"hideMobile":33},{"value":1704},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":1707},[],{"id":1692,"type":82,"child":1709,"class":1713,"styles":1718,"extra":1720,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[1710,1711,1712],"paragraph-pX2ZjZ44PA","paragraph-GI4XtUk08h","paragraph-hRivWOY3Y6",{"borders":1714,"borderRadius":1715,"radiusEdge":1716,"nestedColumn":1717},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":1719},{"value":66,"unit":67},{"visibility":1721,"bgImage":1723,"columnLayout":1725,"justifyContentColumnLayout":1726,"alignContentColumnLayout":1727,"forceColumnLayoutForMobile":1728,"customClass":1729,"elementVersion":1731},{"value":1722},{"hideDesktop":33,"hideMobile":33},{"value":1724},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":1730},[],{"value":106},{"extra":1733,"id":1712,"tagName":344,"class":1741,"meta":356},{"visibility":1734,"text":1736,"nodeId":1738,"customClass":1739},{"value":1735},{"hideMobile":37,"hideDesktop":37},{"value":1737},"\u003Cp>4 \u003Cstrong>½\u003C\u002Fstrong>\u003C\u002Fp>","cparagraph-hRivWOY3Y6",{"value":1740},[],{"borders":1742,"borderRadius":1743,"radiusEdge":1744,"entranceAnimation":1745,"animationScale":1746,"animationDuration":1747,"animationDelay":1748,"animationEasing":1749},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1751,"id":1711,"tagName":344,"class":1758,"meta":356},{"visibility":1752,"text":1754,"nodeId":1755,"customClass":1756},{"value":1753},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-GI4XtUk08h",{"value":1757},[],{"borders":1759,"borderRadius":1760,"radiusEdge":1761,"entranceAnimation":1762,"animationScale":1763,"animationDuration":1764,"animationDelay":1765,"animationEasing":1766},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1768,"id":1710,"tagName":344,"class":1776,"meta":356},{"visibility":1769,"text":1771,"nodeId":1773,"customClass":1774},{"value":1770},{"hideMobile":37,"hideDesktop":37},{"value":1772},"\u003Cp>2\u003C\u002Fp>","cparagraph-pX2ZjZ44PA",{"value":1775},[],{"borders":1777,"borderRadius":1778,"radiusEdge":1779,"entranceAnimation":1780,"animationScale":1781,"animationDuration":1782,"animationDelay":1783,"animationEasing":1784},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1786,"id":1630,"tagName":532,"class":1794,"meta":542},{"visibility":1787,"text":1789,"nodeId":1791,"customClass":1792},{"value":1788},{"hideMobile":37,"hideDesktop":37},{"value":1790},"\u003Ch2>\u003Cstrong>Secteur Boul. St-Joseph\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible \u003Cstrong>MAINTENANT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>2 stationnement\u003C\u002Fh2>\u003Ch2>\u003Cstrong>INTERNET COMPRIS\u003C\u002Fstrong>\u003Cbr>1 Remise\u003C\u002Fh2>\u003Ch2>Thermopompe et échangeur d'air\u003C\u002Fh2>\u003Ch2>Immeuble\u003Cstrong> NEUF\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading--kCWjhM_-p",{"value":1793},[],{"borders":1795,"borderRadius":1796,"radiusEdge":1797,"entranceAnimation":1798,"animationScale":1799,"animationDuration":1800,"animationDelay":1801,"animationEasing":1802},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1804,"class":1830,"styles":1831,"customCss":1833,"id":1629,"version":106,"type":712,"child":1834,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":1805,"sliderList":1806,"sliderSize":1818,"sliderPagination":1820,"sliderArrow":1822,"sliderAnimation":1824,"visibility":1826,"customClass":1828},"cimage-slider-shO7zM36bG",{"value":1807},[1808,1810,1812,1814,1816],{"id":109,"ctaTarget":680,"cta":37,"backgroundImage":1809,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd690ec85939055e37da24.png",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":1811,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd690e87c93b27127984ab.png",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":1813,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd690e45ec9486e3f741ae.jpeg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":1815,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd690e02c31a72f24807d6.png",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":1817,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd690e66c8fc832ae69f37.png",{"value":1819},{"height":691},{"value":1821},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":1823},{"enable":40,"color":695,"animationEffect":63},{"value":1825},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":1827},{"hideDesktop":33,"hideMobile":33},{"value":1829},[],{},{"borderWidth":1832},{"value":268,"unit":67},[],[],{"extra":1836,"id":1628,"tagName":532,"class":1844,"meta":542},{"visibility":1837,"text":1839,"nodeId":1841,"customClass":1842},{"value":1838},{"hideMobile":37,"hideDesktop":37},{"value":1840},"\u003Ch2>\u003Cstrong>4 ½ Boul. St-Joseph à 1 495$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-BEyluUicBe",{"value":1843},[],{"borders":1845,"borderRadius":1846,"radiusEdge":1847,"entranceAnimation":1848,"animationScale":1849,"animationDuration":1850,"animationDelay":1851,"animationEasing":1852},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":1612,"type":82,"child":1854,"class":1861,"styles":1866,"extra":1868,"tagName":107,"meta":82,"title":1880,"noOfColumns":521,"classStr":522},[1855,1856,1857,1858,1859,1860],"sub-heading-LgL5CdZHZ1","image-slider-ezf0k7Duh5","sub-heading-T1biCJ5D-g","row-M4W9BYnUJ5","sub-heading-Ca7Mh_I0dq","sub-heading--HCzqN8OSl",{"borders":1862,"borderRadius":1863,"radiusEdge":1864,"nestedColumn":1865},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":1867},{"value":66,"unit":67},{"visibility":1869,"bgImage":1871,"columnLayout":1873,"justifyContentColumnLayout":1874,"alignContentColumnLayout":1875,"forceColumnLayoutForMobile":1876,"customClass":1877,"elementVersion":1879},{"value":1870},{"hideDesktop":33,"hideMobile":33},{"value":1872},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":1878},[],{"value":106},"2335-104 BOUL ST-JOSEPH",{"extra":1882,"id":1860,"tagName":532,"class":1890,"meta":542},{"visibility":1883,"text":1885,"nodeId":1887,"customClass":1888},{"value":1884},{"hideMobile":37,"hideDesktop":37},{"value":1886},"\u003Ch2>1 415 $ \u002F mois\u003C\u002Fh2>","csub-heading--HCzqN8OSl",{"value":1889},[],{"borders":1891,"borderRadius":1892,"radiusEdge":1893,"entranceAnimation":1894,"animationScale":1895,"animationDuration":1896,"animationDelay":1897,"animationEasing":1898},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1900,"id":1859,"tagName":532,"class":1908,"meta":542},{"visibility":1901,"text":1903,"nodeId":1905,"customClass":1906},{"value":1902},{"hideMobile":37,"hideDesktop":37},{"value":1904},"\u003Ch2>Demi sous-sol\u003C\u002Fh2>","csub-heading-Ca7Mh_I0dq",{"value":1907},[],{"borders":1909,"borderRadius":1910,"radiusEdge":1911,"entranceAnimation":1912,"animationScale":1913,"animationDuration":1914,"animationDelay":1915,"animationEasing":1916},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":1858,"type":52,"child":1918,"class":1920,"styles":1925,"extra":1927,"tagName":78,"meta":52,"title":489,"classStr":80},[1919],"col-o_l0aakC0u",{"alignRow":1921,"borders":1922,"borderRadius":1923,"radiusEdge":1924},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":1926},{"value":66,"unit":67},{"visibility":1928,"bgImage":1930,"rowWidth":1932,"customClass":1933},{"value":1929},{"hideDesktop":33,"hideMobile":33},{"value":1931},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":1934},[],{"id":1919,"type":82,"child":1936,"class":1940,"styles":1945,"extra":1947,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[1937,1938,1939],"paragraph-yf3nKbi6UZ","paragraph-rixQIlOEog","paragraph-7oxcxXymqD",{"borders":1941,"borderRadius":1942,"radiusEdge":1943,"nestedColumn":1944},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":1946},{"value":66,"unit":67},{"visibility":1948,"bgImage":1950,"columnLayout":1952,"justifyContentColumnLayout":1953,"alignContentColumnLayout":1954,"forceColumnLayoutForMobile":1955,"customClass":1956,"elementVersion":1958},{"value":1949},{"hideDesktop":33,"hideMobile":33},{"value":1951},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":1957},[],{"value":106},{"extra":1960,"id":1939,"tagName":344,"class":1967,"meta":356},{"visibility":1961,"text":1963,"nodeId":1964,"customClass":1965},{"value":1962},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-7oxcxXymqD",{"value":1966},[],{"borders":1968,"borderRadius":1969,"radiusEdge":1970,"entranceAnimation":1971,"animationScale":1972,"animationDuration":1973,"animationDelay":1974,"animationEasing":1975},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1977,"id":1938,"tagName":344,"class":1984,"meta":356},{"visibility":1978,"text":1980,"nodeId":1981,"customClass":1982},{"value":1979},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-rixQIlOEog",{"value":1983},[],{"borders":1985,"borderRadius":1986,"radiusEdge":1987,"entranceAnimation":1988,"animationScale":1989,"animationDuration":1990,"animationDelay":1991,"animationEasing":1992},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":1994,"id":1937,"tagName":344,"class":2001,"meta":356},{"visibility":1995,"text":1997,"nodeId":1998,"customClass":1999},{"value":1996},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-yf3nKbi6UZ",{"value":2000},[],{"borders":2002,"borderRadius":2003,"radiusEdge":2004,"entranceAnimation":2005,"animationScale":2006,"animationDuration":2007,"animationDelay":2008,"animationEasing":2009},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2011,"id":1857,"tagName":532,"class":2019,"meta":542},{"visibility":2012,"text":2014,"nodeId":2016,"customClass":2017},{"value":2013},{"hideMobile":37,"hideDesktop":37},{"value":2015},"\u003Ch2>\u003Cstrong>Secteur Boul. St-Joseph\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible \u003Cstrong>MAINTENANT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 stationnement\u003C\u002Fh2>\u003Ch2>\u003Cstrong>INTERNET COMPRIS\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Thermopompe et échangeur d'air\u003C\u002Fh2>\u003Ch2>Immeuble\u003Cstrong> NEUF\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>Locker intérieur\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-T1biCJ5D-g",{"value":2018},[],{"borders":2020,"borderRadius":2021,"radiusEdge":2022,"entranceAnimation":2023,"animationScale":2024,"animationDuration":2025,"animationDelay":2026,"animationEasing":2027},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2029,"class":2057,"styles":2058,"customCss":2060,"id":1856,"version":106,"type":712,"child":2061,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":2030,"sliderList":2031,"sliderSize":2045,"sliderPagination":2047,"sliderArrow":2049,"sliderAnimation":2051,"visibility":2053,"customClass":2055},"cimage-slider-ezf0k7Duh5",{"value":2032},[2033,2035,2037,2039,2041,2043],{"ctaTarget":680,"cta":37,"backgroundImage":2034,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89e78bffadf9ec885d467.jpeg",{"ctaTarget":680,"cta":37,"backgroundImage":2036,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89e7836702f8540c3b020.jpeg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":2038,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89e786fa65829a7c75a92.png",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":2040,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d618c8d4b0ed39146.jpg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":2042,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89e786fa658c1c6c75a91.jpeg",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":2044,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89e7822141ba9a3320737.jpeg",{"value":2046},{"height":691},{"value":2048},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":2050},{"enable":40,"color":695,"animationEffect":63},{"value":2052},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":2054},{"hideDesktop":33,"hideMobile":33},{"value":2056},[],{},{"borderWidth":2059},{"value":268,"unit":67},[],[],{"extra":2063,"id":1855,"tagName":532,"class":2071,"meta":542},{"visibility":2064,"text":2066,"nodeId":2068,"customClass":2069},{"value":2065},{"hideMobile":37,"hideDesktop":37},{"value":2067},"\u003Ch2>\u003Cstrong>4 ½ Boul. St-Joseph à 1 415$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-LgL5CdZHZ1",{"value":2070},[],{"borders":2072,"borderRadius":2073,"radiusEdge":2074,"entranceAnimation":2075,"animationScale":2076,"animationDuration":2077,"animationDelay":2078,"animationEasing":2079},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":1589,"type":52,"child":2081,"class":2087,"styles":2092,"extra":2094,"tagName":78,"meta":52,"title":489,"classStr":80},[2082,2083,2084,2085,2086],"col-GydWbufL23","col-tN2w8jSThI","col-PDRiNvrIye","col-4BWvVkisHn","col-M012EiU4jM",{"alignRow":2088,"borders":2089,"borderRadius":2090,"radiusEdge":2091},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":2093},{"value":66,"unit":67},{"visibility":2095,"bgImage":2097,"rowWidth":2099,"customClass":2100},{"value":2096},{"hideDesktop":33,"hideMobile":33},{"value":2098},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":2101},[],{"id":2086,"type":82,"child":2103,"class":2110,"styles":2115,"extra":2117,"tagName":107,"meta":82,"title":2129,"noOfColumns":521,"classStr":522},[2104,2105,2106,2107,2108,2109],"sub-heading-xgtdv2MejO","image-slider-lCY3OTh4iK","sub-heading-zSqzZqRNZ5","row-ZwxJLUTKEd","sub-heading-3HV33vvHcK","sub-heading-f45nCryqr0",{"borders":2111,"borderRadius":2112,"radiusEdge":2113,"nestedColumn":2114},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":2116},{"value":66,"unit":67},{"visibility":2118,"bgImage":2120,"columnLayout":2122,"justifyContentColumnLayout":2123,"alignContentColumnLayout":2124,"forceColumnLayoutForMobile":2125,"customClass":2126,"elementVersion":2128},{"value":2119},{"hideDesktop":33,"hideMobile":33},{"value":2121},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":2127},[],{"value":106},"2335-205 BOUL ST-JOSEPH",{"extra":2131,"id":2109,"tagName":532,"class":2138,"meta":542},{"visibility":2132,"text":2134,"nodeId":2135,"customClass":2136},{"value":2133},{"hideMobile":37,"hideDesktop":37},{"value":1886},"csub-heading-f45nCryqr0",{"value":2137},[],{"borders":2139,"borderRadius":2140,"radiusEdge":2141,"entranceAnimation":2142,"animationScale":2143,"animationDuration":2144,"animationDelay":2145,"animationEasing":2146},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2148,"id":2108,"tagName":532,"class":2156,"meta":542},{"visibility":2149,"text":2151,"nodeId":2153,"customClass":2154},{"value":2150},{"hideMobile":37,"hideDesktop":37},{"value":2152},"\u003Ch1>\u003C\u002Fh1>\u003Ch2>1x demi sous-sol\u003C\u002Fh2>\u003Ch2>1x 3e étage\u003C\u002Fh2>","csub-heading-3HV33vvHcK",{"value":2155},[],{"borders":2157,"borderRadius":2158,"radiusEdge":2159,"entranceAnimation":2160,"animationScale":2161,"animationDuration":2162,"animationDelay":2163,"animationEasing":2164},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":2107,"type":52,"child":2166,"class":2168,"styles":2173,"extra":2175,"tagName":78,"meta":52,"title":489,"classStr":80},[2167],"col-h-xrGyW5sh",{"alignRow":2169,"borders":2170,"borderRadius":2171,"radiusEdge":2172},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":2174},{"value":66,"unit":67},{"visibility":2176,"bgImage":2178,"rowWidth":2180,"customClass":2181},{"value":2177},{"hideDesktop":33,"hideMobile":33},{"value":2179},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":2182},[],{"id":2167,"type":82,"child":2184,"class":2188,"styles":2193,"extra":2195,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[2185,2186,2187],"paragraph-GCGeBmgM8d","paragraph-phgBpwMWtG","paragraph-t9RQHTlDgr",{"borders":2189,"borderRadius":2190,"radiusEdge":2191,"nestedColumn":2192},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":2194},{"value":66,"unit":67},{"visibility":2196,"bgImage":2198,"columnLayout":2200,"justifyContentColumnLayout":2201,"alignContentColumnLayout":2202,"forceColumnLayoutForMobile":2203,"customClass":2204,"elementVersion":2206},{"value":2197},{"hideDesktop":33,"hideMobile":33},{"value":2199},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":2205},[],{"value":106},{"extra":2208,"id":2187,"tagName":344,"class":2215,"meta":356},{"visibility":2209,"text":2211,"nodeId":2212,"customClass":2213},{"value":2210},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-t9RQHTlDgr",{"value":2214},[],{"borders":2216,"borderRadius":2217,"radiusEdge":2218,"entranceAnimation":2219,"animationScale":2220,"animationDuration":2221,"animationDelay":2222,"animationEasing":2223},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2225,"id":2186,"tagName":344,"class":2232,"meta":356},{"visibility":2226,"text":2228,"nodeId":2229,"customClass":2230},{"value":2227},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-phgBpwMWtG",{"value":2231},[],{"borders":2233,"borderRadius":2234,"radiusEdge":2235,"entranceAnimation":2236,"animationScale":2237,"animationDuration":2238,"animationDelay":2239,"animationEasing":2240},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2242,"id":2185,"tagName":344,"class":2249,"meta":356},{"visibility":2243,"text":2245,"nodeId":2246,"customClass":2247},{"value":2244},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-GCGeBmgM8d",{"value":2248},[],{"borders":2250,"borderRadius":2251,"radiusEdge":2252,"entranceAnimation":2253,"animationScale":2254,"animationDuration":2255,"animationDelay":2256,"animationEasing":2257},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2259,"id":2106,"tagName":532,"class":2267,"meta":542},{"visibility":2260,"text":2262,"nodeId":2264,"customClass":2265},{"value":2261},{"hideMobile":37,"hideDesktop":37},{"value":2263},"\u003Ch2>\u003Cstrong>Secteur Boul. St-Joseph\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>1 Disponible \u003Cstrong>IMMÉDIATEMENT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 stationnement\u003C\u002Fh2>\u003Ch2>\u003Cstrong>INTERNET COMPRIS\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Thermopompe et échangeur d'air\u003C\u002Fh2>\u003Ch2>Immeuble\u003Cstrong> NEUF\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>Locker intérieur\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-zSqzZqRNZ5",{"value":2266},[],{"borders":2268,"borderRadius":2269,"radiusEdge":2270,"entranceAnimation":2271,"animationScale":2272,"animationDuration":2273,"animationDelay":2274,"animationEasing":2275},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2277,"class":2304,"styles":2305,"customCss":2307,"id":2105,"version":106,"type":712,"child":2308,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":2278,"sliderList":2279,"sliderSize":2292,"sliderPagination":2294,"sliderArrow":2296,"sliderAnimation":2298,"visibility":2300,"customClass":2302},"cimage-slider-lCY3OTh4iK",{"value":2280},[2281,2283,2285,2287,2288,2290],{"ctaTarget":680,"cta":37,"backgroundImage":2282,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d22141b10653184b5.jpg",{"ctaTarget":680,"cta":37,"backgroundImage":2284,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d36702fa8fbc32f55.jpg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":2286,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d7bdf384f6d49d010.jpg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":2040,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":2289,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d6fa658449cc6dadc.jpg",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":2291,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d618c8d0196d39145.jpg",{"value":2293},{"height":691},{"value":2295},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":2297},{"enable":40,"color":695,"animationEffect":63},{"value":2299},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":2301},{"hideDesktop":33,"hideMobile":33},{"value":2303},[],{},{"borderWidth":2306},{"value":268,"unit":67},[],[],{"extra":2310,"id":2104,"tagName":532,"class":2317,"meta":542},{"visibility":2311,"text":2313,"nodeId":2314,"customClass":2315},{"value":2312},{"hideMobile":37,"hideDesktop":37},{"value":2067},"csub-heading-xgtdv2MejO",{"value":2316},[],{"borders":2318,"borderRadius":2319,"radiusEdge":2320,"entranceAnimation":2321,"animationScale":2322,"animationDuration":2323,"animationDelay":2324,"animationEasing":2325},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":2085,"type":82,"child":2327,"class":2335,"styles":2340,"extra":2342,"tagName":107,"meta":82,"title":2354,"noOfColumns":521,"classStr":522},[2328,2329,2330,2331,2332,2333,2334],"sub-heading-ZeeJaB1GkS","image-slider-U_M5ypvwFo","sub-heading-mDjEEXBqNA","row-gmEgVmoveS","sub-heading-EomoPmN2_e","sub-heading-3YlFDH-9YY","button-Del9cF1yZc",{"borders":2336,"borderRadius":2337,"radiusEdge":2338,"nestedColumn":2339},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":2341},{"value":66,"unit":67},{"visibility":2343,"bgImage":2345,"columnLayout":2347,"justifyContentColumnLayout":2348,"alignContentColumnLayout":2349,"forceColumnLayoutForMobile":2350,"customClass":2351,"elementVersion":2353},{"value":2344},{"hideDesktop":40,"hideMobile":40},{"value":2346},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":2352},[],{"value":106},"1251 BOUL FOUCAULT",{"extra":2356,"id":2334,"tagName":944,"meta":945,"class":2383},{"visibility":2357,"text":2359,"subText":2360,"productId":2361,"action":2363,"visitWebsite":2364,"downloadFile":2365,"hideElements":2366,"showElements":2367,"scrollToElement":2368,"stepPath":2369,"saleAction":2370,"phoneNumber":2371,"emailAddress":2372,"popupId":2373,"storeProductId":2374,"storeProductPriceId":2376,"storeCollectionId":2378,"customClass":2380,"nodeId":2382},{"value":2358},{"hideMobile":37,"hideDesktop":37},{"value":1290},{},{"value":2362},{},{"value":1295},{},{},{},{},{},{},{},{},{},{"value":934},{"value":2375},{},{"value":2377},{},{"value":2379},{},{"value":2381},[],"cbutton-Del9cF1yZc",{"buttonBgStyle":2384,"buttonVp":2385,"buttonHp":2386,"hoverAnimation":2387,"borders":2388,"borderRadius":2389,"radiusEdge":2390,"entranceAnimation":2391,"animationScale":2392,"animationDuration":2393,"animationDelay":2394,"animationEasing":2395},{"value":948},{"value":1318},{"value":1320},{"value":350},{"value":59},{"value":1324},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2397,"id":2333,"tagName":532,"class":2405,"meta":542},{"visibility":2398,"text":2400,"nodeId":2402,"customClass":2403},{"value":2399},{"hideMobile":37,"hideDesktop":37},{"value":2401},"\u003Ch2>1 365 $ \u002F mois\u003C\u002Fh2>","csub-heading-3YlFDH-9YY",{"value":2404},[],{"borders":2406,"borderRadius":2407,"radiusEdge":2408,"entranceAnimation":2409,"animationScale":2410,"animationDuration":2411,"animationDelay":2412,"animationEasing":2413},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2415,"id":2332,"tagName":532,"class":2422,"meta":542},{"visibility":2416,"text":2418,"nodeId":2419,"customClass":2420},{"value":2417},{"hideMobile":37,"hideDesktop":37},{"value":1904},"csub-heading-EomoPmN2_e",{"value":2421},[],{"borders":2423,"borderRadius":2424,"radiusEdge":2425,"entranceAnimation":2426,"animationScale":2427,"animationDuration":2428,"animationDelay":2429,"animationEasing":2430},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":2331,"type":52,"child":2432,"class":2434,"styles":2439,"extra":2441,"tagName":78,"meta":52,"title":489,"classStr":80},[2433],"col-p5GadL5G_x",{"alignRow":2435,"borders":2436,"borderRadius":2437,"radiusEdge":2438},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":2440},{"value":66,"unit":67},{"visibility":2442,"bgImage":2444,"rowWidth":2446,"customClass":2447},{"value":2443},{"hideDesktop":33,"hideMobile":33},{"value":2445},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":2448},[],{"id":2433,"type":82,"child":2450,"class":2454,"styles":2459,"extra":2461,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[2451,2452,2453],"paragraph-HNpWOU0yiZ","paragraph-gGbLc7KkF4","paragraph-hXYfvK6iKl",{"borders":2455,"borderRadius":2456,"radiusEdge":2457,"nestedColumn":2458},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":2460},{"value":66,"unit":67},{"visibility":2462,"bgImage":2464,"columnLayout":2466,"justifyContentColumnLayout":2467,"alignContentColumnLayout":2468,"forceColumnLayoutForMobile":2469,"customClass":2470,"elementVersion":2472},{"value":2463},{"hideDesktop":33,"hideMobile":33},{"value":2465},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":2471},[],{"value":106},{"extra":2474,"id":2453,"tagName":344,"class":2481,"meta":356},{"visibility":2475,"text":2477,"nodeId":2478,"customClass":2479},{"value":2476},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-hXYfvK6iKl",{"value":2480},[],{"borders":2482,"borderRadius":2483,"radiusEdge":2484,"entranceAnimation":2485,"animationScale":2486,"animationDuration":2487,"animationDelay":2488,"animationEasing":2489},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2491,"id":2452,"tagName":344,"class":2498,"meta":356},{"visibility":2492,"text":2494,"nodeId":2495,"customClass":2496},{"value":2493},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-gGbLc7KkF4",{"value":2497},[],{"borders":2499,"borderRadius":2500,"radiusEdge":2501,"entranceAnimation":2502,"animationScale":2503,"animationDuration":2504,"animationDelay":2505,"animationEasing":2506},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2508,"id":2451,"tagName":344,"class":2515,"meta":356},{"visibility":2509,"text":2511,"nodeId":2512,"customClass":2513},{"value":2510},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-HNpWOU0yiZ",{"value":2514},[],{"borders":2516,"borderRadius":2517,"radiusEdge":2518,"entranceAnimation":2519,"animationScale":2520,"animationDuration":2521,"animationDelay":2522,"animationEasing":2523},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2525,"id":2330,"tagName":532,"class":2533,"meta":542},{"visibility":2526,"text":2528,"nodeId":2530,"customClass":2531},{"value":2527},{"hideMobile":37,"hideDesktop":37},{"value":2529},"\u003Ch2>\u003Cstrong>Secteur St-Charles\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> IMMÉDIATEMENT\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Cp>1 Stationnement\u003C\u002Fp>\u003Ch2>1 Balcon\u003C\u002Fh2>\u003Ch2>Locker intérieur\u003C\u002Fh2>\u003Ch2>Thermopompe et échangeur d'air\u003C\u002Fh2>","csub-heading-mDjEEXBqNA",{"value":2532},[],{"borders":2534,"borderRadius":2535,"radiusEdge":2536,"entranceAnimation":2537,"animationScale":2538,"animationDuration":2539,"animationDelay":2540,"animationEasing":2541},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2543,"class":2569,"styles":2570,"customCss":2572,"id":2329,"version":106,"type":712,"child":2573,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":2544,"sliderList":2545,"sliderSize":2557,"sliderPagination":2559,"sliderArrow":2561,"sliderAnimation":2563,"visibility":2565,"customClass":2567},"cimage-slider-U_M5ypvwFo",{"value":2546},[2547,2549,2551,2553,2555],{"ctaTarget":680,"cta":37,"backgroundImage":2548,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69823750b7e498e56b03e5bc.jpg",{"ctaTarget":680,"cta":37,"backgroundImage":2550,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a883bd4dd428ca0e997f53.jpg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":2552,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a883bd7bdf38411d446151.jpg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":2554,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a883bdc7e71f99edd60f08.jpg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":2556,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a883bd618c8d747bce0d06.jpg",{"value":2558},{"height":691},{"value":2560},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":2562},{"enable":40,"color":695,"animationEffect":63},{"value":2564},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":2566},{"hideDesktop":33,"hideMobile":33},{"value":2568},[],{},{"borderWidth":2571},{"value":268,"unit":67},[],[],{"extra":2575,"id":2328,"tagName":532,"class":2583,"meta":542},{"visibility":2576,"text":2578,"nodeId":2580,"customClass":2581},{"value":2577},{"hideMobile":37,"hideDesktop":37},{"value":2579},"\u003Ch2>\u003Cstrong>4 ½ Boul. Foucault à 1 365$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-ZeeJaB1GkS",{"value":2582},[],{"borders":2584,"borderRadius":2585,"radiusEdge":2586,"entranceAnimation":2587,"animationScale":2588,"animationDuration":2589,"animationDelay":2590,"animationEasing":2591},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":2084,"type":82,"child":2593,"class":2601,"styles":2606,"extra":2608,"tagName":107,"meta":82,"title":2620,"noOfColumns":521,"classStr":522},[2594,2595,2596,2597,2598,2599,2600],"sub-heading-vFeaZeoNAp","image-slider-LwgINnCEal","sub-heading-zKFW_sRIcJ","row-N2zOEM0D9T","sub-heading-AkGlLcCq8C","sub-heading-hqL5WiSwav","button-K56JSZZeV0",{"borders":2602,"borderRadius":2603,"radiusEdge":2604,"nestedColumn":2605},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":2607},{"value":66,"unit":67},{"visibility":2609,"bgImage":2611,"columnLayout":2613,"justifyContentColumnLayout":2614,"alignContentColumnLayout":2615,"forceColumnLayoutForMobile":2616,"customClass":2617,"elementVersion":2619},{"value":2610},{"hideDesktop":40,"hideMobile":40},{"value":2612},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":2618},[],{"value":106},"423 MELANÇON",{"extra":2622,"id":2600,"tagName":944,"meta":945,"class":2649},{"visibility":2623,"text":2625,"subText":2626,"productId":2627,"action":2629,"visitWebsite":2630,"downloadFile":2631,"hideElements":2632,"showElements":2633,"scrollToElement":2634,"stepPath":2635,"saleAction":2636,"phoneNumber":2637,"emailAddress":2638,"popupId":2639,"storeProductId":2640,"storeProductPriceId":2642,"storeCollectionId":2644,"customClass":2646,"nodeId":2648},{"value":2624},{"hideMobile":37,"hideDesktop":37},{"value":1290},{},{"value":2628},{},{"value":1295},{},{},{},{},{},{},{},{},{},{"value":934},{"value":2641},{},{"value":2643},{},{"value":2645},{},{"value":2647},[],"cbutton-K56JSZZeV0",{"buttonBgStyle":2650,"buttonVp":2651,"buttonHp":2652,"hoverAnimation":2653,"borders":2654,"borderRadius":2655,"radiusEdge":2656,"entranceAnimation":2657,"animationScale":2658,"animationDuration":2659,"animationDelay":2660,"animationEasing":2661},{"value":948},{"value":1318},{"value":1320},{"value":350},{"value":59},{"value":1324},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2663,"id":2599,"tagName":532,"class":2671,"meta":542},{"visibility":2664,"text":2666,"nodeId":2668,"customClass":2669},{"value":2665},{"hideMobile":37,"hideDesktop":37},{"value":2667},"\u003Ch2>1 295 $ \u002F mois\u003C\u002Fh2>","csub-heading-hqL5WiSwav",{"value":2670},[],{"borders":2672,"borderRadius":2673,"radiusEdge":2674,"entranceAnimation":2675,"animationScale":2676,"animationDuration":2677,"animationDelay":2678,"animationEasing":2679},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2681,"id":2598,"tagName":532,"class":2688,"meta":542},{"visibility":2682,"text":2684,"nodeId":2685,"customClass":2686},{"value":2683},{"hideMobile":37,"hideDesktop":37},{"value":1904},"csub-heading-AkGlLcCq8C",{"value":2687},[],{"borders":2689,"borderRadius":2690,"radiusEdge":2691,"entranceAnimation":2692,"animationScale":2693,"animationDuration":2694,"animationDelay":2695,"animationEasing":2696},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":2597,"type":52,"child":2698,"class":2700,"styles":2705,"extra":2707,"tagName":78,"meta":52,"title":489,"classStr":80},[2699],"col-gnCK3IzMW4",{"alignRow":2701,"borders":2702,"borderRadius":2703,"radiusEdge":2704},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":2706},{"value":66,"unit":67},{"visibility":2708,"bgImage":2710,"rowWidth":2712,"customClass":2713},{"value":2709},{"hideDesktop":33,"hideMobile":33},{"value":2711},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":2714},[],{"id":2699,"type":82,"child":2716,"class":2720,"styles":2725,"extra":2727,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[2717,2718,2719],"paragraph-vVrlnmHbkZ","paragraph-r9oejefpDS","paragraph-dZm5pCA3l0",{"borders":2721,"borderRadius":2722,"radiusEdge":2723,"nestedColumn":2724},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":2726},{"value":66,"unit":67},{"visibility":2728,"bgImage":2730,"columnLayout":2732,"justifyContentColumnLayout":2733,"alignContentColumnLayout":2734,"forceColumnLayoutForMobile":2735,"customClass":2736,"elementVersion":2738},{"value":2729},{"hideDesktop":33,"hideMobile":33},{"value":2731},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":2737},[],{"value":106},{"extra":2740,"id":2719,"tagName":344,"class":2747,"meta":356},{"visibility":2741,"text":2743,"nodeId":2744,"customClass":2745},{"value":2742},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-dZm5pCA3l0",{"value":2746},[],{"borders":2748,"borderRadius":2749,"radiusEdge":2750,"entranceAnimation":2751,"animationScale":2752,"animationDuration":2753,"animationDelay":2754,"animationEasing":2755},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2757,"id":2718,"tagName":344,"class":2764,"meta":356},{"visibility":2758,"text":2760,"nodeId":2761,"customClass":2762},{"value":2759},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-r9oejefpDS",{"value":2763},[],{"borders":2765,"borderRadius":2766,"radiusEdge":2767,"entranceAnimation":2768,"animationScale":2769,"animationDuration":2770,"animationDelay":2771,"animationEasing":2772},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2774,"id":2717,"tagName":344,"class":2781,"meta":356},{"visibility":2775,"text":2777,"nodeId":2778,"customClass":2779},{"value":2776},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-vVrlnmHbkZ",{"value":2780},[],{"borders":2782,"borderRadius":2783,"radiusEdge":2784,"entranceAnimation":2785,"animationScale":2786,"animationDuration":2787,"animationDelay":2788,"animationEasing":2789},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2791,"id":2596,"tagName":532,"class":2799,"meta":542},{"visibility":2792,"text":2794,"nodeId":2796,"customClass":2797},{"value":2793},{"hideMobile":37,"hideDesktop":37},{"value":2795},"\u003Ch2>\u003Cstrong>Secteur près du Centre-Ville\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> 1er Juillet !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Ch2>Balcon\u003C\u002Fh2>\u003Ch2>\u003Cstrong>INTERNET COMPRIS\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Immeuble \u003Cstrong>NEUF\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Thermopompe et échangeur d'air\u003C\u002Fh2>","csub-heading-zKFW_sRIcJ",{"value":2798},[],{"borders":2800,"borderRadius":2801,"radiusEdge":2802,"entranceAnimation":2803,"animationScale":2804,"animationDuration":2805,"animationDelay":2806,"animationEasing":2807},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2809,"class":2835,"styles":2836,"customCss":2838,"id":2595,"version":106,"type":712,"child":2839,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":2810,"sliderList":2811,"sliderSize":2823,"sliderPagination":2825,"sliderArrow":2827,"sliderAnimation":2829,"visibility":2831,"customClass":2833},"cimage-slider-LwgINnCEal",{"value":2812},[2813,2815,2817,2819,2821],{"ctaTarget":680,"cta":37,"backgroundImage":2814,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a882217bdf38fb2c43e7b4.jpeg",{"ctaTarget":680,"cta":37,"backgroundImage":2816,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a882216fa658082ec0c9cf.jpeg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":2818,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a88221c7e71fbf06d592db.jpeg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":2820,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a882217bdf385a3043e7b3.jpeg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":2822,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a88221618c8dad5ecd8db0.jpeg",{"value":2824},{"height":691},{"value":2826},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":2828},{"enable":40,"color":695,"animationEffect":63},{"value":2830},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":2832},{"hideDesktop":33,"hideMobile":33},{"value":2834},[],{},{"borderWidth":2837},{"value":268,"unit":67},[],[],{"extra":2841,"id":2594,"tagName":532,"class":2849,"meta":542},{"visibility":2842,"text":2844,"nodeId":2846,"customClass":2847},{"value":2843},{"hideMobile":37,"hideDesktop":37},{"value":2845},"\u003Ch2>\u003Cstrong>4 ½ rue Melançon à 1 295$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-vFeaZeoNAp",{"value":2848},[],{"borders":2850,"borderRadius":2851,"radiusEdge":2852,"entranceAnimation":2853,"animationScale":2854,"animationDuration":2855,"animationDelay":2856,"animationEasing":2857},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":2083,"type":82,"child":2859,"class":2866,"styles":2871,"extra":2873,"tagName":107,"meta":82,"title":2885,"noOfColumns":521,"classStr":522},[2860,2861,2862,2863,2864,2865],"sub-heading-WpuH1yb2dA","image-slider-1_8JMdOs2R","sub-heading-S7qiVAX1qU","row-AkFudryisy","sub-heading-CznAmDZC9h","sub-heading-ItaE4IW413",{"borders":2867,"borderRadius":2868,"radiusEdge":2869,"nestedColumn":2870},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":2872},{"value":66,"unit":67},{"visibility":2874,"bgImage":2876,"columnLayout":2878,"justifyContentColumnLayout":2879,"alignContentColumnLayout":2880,"forceColumnLayoutForMobile":2881,"customClass":2882,"elementVersion":2884},{"value":2875},{"hideDesktop":33,"hideMobile":33},{"value":2877},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":2883},[],{"value":106},"2335-203 BOUL ST-JOSEPH",{"extra":2887,"id":2865,"tagName":532,"class":2895,"meta":542},{"visibility":2888,"text":2890,"nodeId":2892,"customClass":2893},{"value":2889},{"hideMobile":37,"hideDesktop":37},{"value":2891},"\u003Ch2>1 395 $ \u002F mois\u003C\u002Fh2>","csub-heading-ItaE4IW413",{"value":2894},[],{"borders":2896,"borderRadius":2897,"radiusEdge":2898,"entranceAnimation":2899,"animationScale":2900,"animationDuration":2901,"animationDelay":2902,"animationEasing":2903},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2905,"id":2864,"tagName":532,"class":2912,"meta":542},{"visibility":2906,"text":2908,"nodeId":2909,"customClass":2910},{"value":2907},{"hideMobile":37,"hideDesktop":37},{"value":1354},"csub-heading-CznAmDZC9h",{"value":2911},[],{"borders":2913,"borderRadius":2914,"radiusEdge":2915,"entranceAnimation":2916,"animationScale":2917,"animationDuration":2918,"animationDelay":2919,"animationEasing":2920},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":2863,"type":52,"child":2922,"class":2924,"styles":2929,"extra":2931,"tagName":78,"meta":52,"title":489,"classStr":80},[2923],"col-Hu9p3uB0oJ",{"alignRow":2925,"borders":2926,"borderRadius":2927,"radiusEdge":2928},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":2930},{"value":66,"unit":67},{"visibility":2932,"bgImage":2934,"rowWidth":2936,"customClass":2937},{"value":2933},{"hideDesktop":33,"hideMobile":33},{"value":2935},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":2938},[],{"id":2923,"type":82,"child":2940,"class":2944,"styles":2949,"extra":2951,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[2941,2942,2943],"paragraph-6oy5acXZcM","paragraph-u1b81koA64","paragraph-Ug1hGViFi0",{"borders":2945,"borderRadius":2946,"radiusEdge":2947,"nestedColumn":2948},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":2950},{"value":66,"unit":67},{"visibility":2952,"bgImage":2954,"columnLayout":2956,"justifyContentColumnLayout":2957,"alignContentColumnLayout":2958,"forceColumnLayoutForMobile":2959,"customClass":2960,"elementVersion":2962},{"value":2953},{"hideDesktop":33,"hideMobile":33},{"value":2955},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":2961},[],{"value":106},{"extra":2964,"id":2943,"tagName":344,"class":2971,"meta":356},{"visibility":2965,"text":2967,"nodeId":2968,"customClass":2969},{"value":2966},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-Ug1hGViFi0",{"value":2970},[],{"borders":2972,"borderRadius":2973,"radiusEdge":2974,"entranceAnimation":2975,"animationScale":2976,"animationDuration":2977,"animationDelay":2978,"animationEasing":2979},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2981,"id":2942,"tagName":344,"class":2988,"meta":356},{"visibility":2982,"text":2984,"nodeId":2985,"customClass":2986},{"value":2983},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-u1b81koA64",{"value":2987},[],{"borders":2989,"borderRadius":2990,"radiusEdge":2991,"entranceAnimation":2992,"animationScale":2993,"animationDuration":2994,"animationDelay":2995,"animationEasing":2996},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":2998,"id":2941,"tagName":344,"class":3005,"meta":356},{"visibility":2999,"text":3001,"nodeId":3002,"customClass":3003},{"value":3000},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-6oy5acXZcM",{"value":3004},[],{"borders":3006,"borderRadius":3007,"radiusEdge":3008,"entranceAnimation":3009,"animationScale":3010,"animationDuration":3011,"animationDelay":3012,"animationEasing":3013},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3015,"id":2862,"tagName":532,"class":3022,"meta":542},{"visibility":3016,"text":3018,"nodeId":3019,"customClass":3020},{"value":3017},{"hideMobile":37,"hideDesktop":37},{"value":2015},"csub-heading-S7qiVAX1qU",{"value":3021},[],{"borders":3023,"borderRadius":3024,"radiusEdge":3025,"entranceAnimation":3026,"animationScale":3027,"animationDuration":3028,"animationDelay":3029,"animationEasing":3030},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3032,"class":3058,"styles":3059,"customCss":3061,"id":2861,"version":106,"type":712,"child":3062,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":3033,"sliderList":3034,"sliderSize":3046,"sliderPagination":3048,"sliderArrow":3050,"sliderAnimation":3052,"visibility":3054,"customClass":3056},"cimage-slider-1_8JMdOs2R",{"value":3035},[3036,3038,3040,3042,3044],{"ctaTarget":680,"cta":37,"backgroundImage":3037,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89a647bdf380a5749a18a.png",{"ctaTarget":680,"cta":37,"backgroundImage":3039,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89a64b003faaca4934a5f.jpeg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":3041,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89a644b6c772c2f16f7d2.jpeg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":3043,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89a647bdf38b9bc49a189.jpeg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":3045,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89a64c7e71f173ddb5b3e.jpeg",{"value":3047},{"height":691},{"value":3049},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":3051},{"enable":40,"color":695,"animationEffect":63},{"value":3053},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":3055},{"hideDesktop":33,"hideMobile":33},{"value":3057},[],{},{"borderWidth":3060},{"value":268,"unit":67},[],[],{"extra":3064,"id":2860,"tagName":532,"class":3072,"meta":542},{"visibility":3065,"text":3067,"nodeId":3069,"customClass":3070},{"value":3066},{"hideMobile":37,"hideDesktop":37},{"value":3068},"\u003Ch2>\u003Cstrong>4 ½ Boul. St-Joseph à 1 395$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-WpuH1yb2dA",{"value":3071},[],{"borders":3073,"borderRadius":3074,"radiusEdge":3075,"entranceAnimation":3076,"animationScale":3077,"animationDuration":3078,"animationDelay":3079,"animationEasing":3080},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":2082,"type":82,"child":3082,"class":3089,"styles":3094,"extra":3096,"tagName":107,"meta":82,"title":3108,"noOfColumns":521,"classStr":522},[3083,3084,3085,3086,3087,3088],"sub-heading-_F7fq4Crrg","image-slider-0_dT61oRor","sub-heading-93vSmZiclD","row-gvJ5NslZYY","sub-heading-bJTnLuUU6D","sub-heading-xc5tqaes3e",{"borders":3090,"borderRadius":3091,"radiusEdge":3092,"nestedColumn":3093},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":3095},{"value":66,"unit":67},{"visibility":3097,"bgImage":3099,"columnLayout":3101,"justifyContentColumnLayout":3102,"alignContentColumnLayout":3103,"forceColumnLayoutForMobile":3104,"customClass":3105,"elementVersion":3107},{"value":3098},{"hideDesktop":33,"hideMobile":33},{"value":3100},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":3106},[],{"value":106},"2555-203 BOUL LEMIRE",{"extra":3110,"id":3088,"tagName":532,"class":3118,"meta":542},{"visibility":3111,"text":3113,"nodeId":3115,"customClass":3116},{"value":3112},{"hideMobile":37,"hideDesktop":37},{"value":3114},"\u003Ch2>1 405 $ \u002F mois\u003C\u002Fh2>","csub-heading-xc5tqaes3e",{"value":3117},[],{"borders":3119,"borderRadius":3120,"radiusEdge":3121,"entranceAnimation":3122,"animationScale":3123,"animationDuration":3124,"animationDelay":3125,"animationEasing":3126},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3128,"id":3087,"tagName":532,"class":3136,"meta":542},{"visibility":3129,"text":3131,"nodeId":3133,"customClass":3134},{"value":3130},{"hideMobile":37,"hideDesktop":37},{"value":3132},"\u003Ch2>1 au 1e étage\u003C\u002Fh2>\u003Ch2>2 au 2e étage\u003C\u002Fh2>\u003Ch2>2 au 3e étage\u003C\u002Fh2>","csub-heading-bJTnLuUU6D",{"value":3135},[],{"borders":3137,"borderRadius":3138,"radiusEdge":3139,"entranceAnimation":3140,"animationScale":3141,"animationDuration":3142,"animationDelay":3143,"animationEasing":3144},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":3086,"type":52,"child":3146,"class":3148,"styles":3153,"extra":3155,"tagName":78,"meta":52,"title":489,"classStr":80},[3147],"col-gYjurgTxv8",{"alignRow":3149,"borders":3150,"borderRadius":3151,"radiusEdge":3152},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":3154},{"value":66,"unit":67},{"visibility":3156,"bgImage":3158,"rowWidth":3160,"customClass":3161},{"value":3157},{"hideDesktop":33,"hideMobile":33},{"value":3159},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":3162},[],{"id":3147,"type":82,"child":3164,"class":3168,"styles":3173,"extra":3175,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[3165,3166,3167],"paragraph-3LKUiLrQ26","paragraph-sPkFZRxwOi","paragraph-Co8Skt1R_M",{"borders":3169,"borderRadius":3170,"radiusEdge":3171,"nestedColumn":3172},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":3174},{"value":66,"unit":67},{"visibility":3176,"bgImage":3178,"columnLayout":3180,"justifyContentColumnLayout":3181,"alignContentColumnLayout":3182,"forceColumnLayoutForMobile":3183,"customClass":3184,"elementVersion":3186},{"value":3177},{"hideDesktop":33,"hideMobile":33},{"value":3179},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":3185},[],{"value":106},{"extra":3188,"id":3167,"tagName":344,"class":3195,"meta":356},{"visibility":3189,"text":3191,"nodeId":3192,"customClass":3193},{"value":3190},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-Co8Skt1R_M",{"value":3194},[],{"borders":3196,"borderRadius":3197,"radiusEdge":3198,"entranceAnimation":3199,"animationScale":3200,"animationDuration":3201,"animationDelay":3202,"animationEasing":3203},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3205,"id":3166,"tagName":344,"class":3212,"meta":356},{"visibility":3206,"text":3208,"nodeId":3209,"customClass":3210},{"value":3207},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-sPkFZRxwOi",{"value":3211},[],{"borders":3213,"borderRadius":3214,"radiusEdge":3215,"entranceAnimation":3216,"animationScale":3217,"animationDuration":3218,"animationDelay":3219,"animationEasing":3220},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3222,"id":3165,"tagName":344,"class":3229,"meta":356},{"visibility":3223,"text":3225,"nodeId":3226,"customClass":3227},{"value":3224},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-3LKUiLrQ26",{"value":3228},[],{"borders":3230,"borderRadius":3231,"radiusEdge":3232,"entranceAnimation":3233,"animationScale":3234,"animationDuration":3235,"animationDelay":3236,"animationEasing":3237},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3239,"id":3085,"tagName":532,"class":3247,"meta":542},{"visibility":3240,"text":3242,"nodeId":3244,"customClass":3245},{"value":3241},{"hideMobile":37,"hideDesktop":37},{"value":3243},"\u003Ch2>\u003Cstrong>Secteur Boul. Lemire\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible \u003Cstrong>MAINTENANT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 stationnement\u003C\u002Fh2>\u003Ch2>\u003Cstrong>INTERNET COMPRIS\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Thermopompe et échangeur d'air\u003C\u002Fh2>\u003Ch2>Immeuble récent\u003C\u002Fh2>","csub-heading-93vSmZiclD",{"value":3246},[],{"borders":3248,"borderRadius":3249,"radiusEdge":3250,"entranceAnimation":3251,"animationScale":3252,"animationDuration":3253,"animationDelay":3254,"animationEasing":3255},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3257,"class":3288,"styles":3289,"customCss":3291,"id":3084,"version":106,"type":712,"child":3292,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":3258,"sliderList":3259,"sliderSize":3276,"sliderPagination":3278,"sliderArrow":3280,"sliderAnimation":3282,"visibility":3284,"customClass":3286},"cimage-slider-0_dT61oRor",{"value":3260},[3261,3263,3265,3267,3269,3271,3273],{"ctaTarget":680,"cta":37,"backgroundImage":3262,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a87bdf3881a947965d.png",{"ctaTarget":680,"cta":37,"backgroundImage":3264,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a8edd087a4ba1d9de5.png",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":3266,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a9bffadf00ef8316b0.png",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":3268,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a9bffadfde998316db.png",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":3270,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a9bffadf43b28316bd.png",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":3272,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a836702f3857c10c06.png",{"id":3274,"ctaTarget":680,"cta":37,"backgroundImage":3275,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},7,"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a822141b0c4c2f3dd0.png",{"value":3277},{"height":691},{"value":3279},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":3281},{"enable":40,"color":695,"animationEffect":63},{"value":3283},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":3285},{"hideDesktop":33,"hideMobile":33},{"value":3287},[],{},{"borderWidth":3290},{"value":268,"unit":67},[],[],{"extra":3294,"id":3083,"tagName":532,"class":3302,"meta":542},{"visibility":3295,"text":3297,"nodeId":3299,"customClass":3300},{"value":3296},{"hideMobile":37,"hideDesktop":37},{"value":3298},"\u003Ch2>\u003Cstrong>4 ½ Boul. Lemire à 1 325$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-_F7fq4Crrg",{"value":3301},[],{"borders":3303,"borderRadius":3304,"radiusEdge":3305,"entranceAnimation":3306,"animationScale":3307,"animationDuration":3308,"animationDelay":3309,"animationEasing":3310},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":1588,"type":52,"child":3312,"class":3320,"styles":3325,"extra":3327,"tagName":78,"meta":52,"title":489,"classStr":80},[3313,3314,3315,3316,3317,3318,3319],"col-W39DtM6M4H","col-Q4wU3xhreo","col-0BdY2ssDlw","col-eZcUywOtoD","col-L8zAeZtaIl","col-OHL99Fr2yl","col-sP29GM9ciq",{"alignRow":3321,"borders":3322,"borderRadius":3323,"radiusEdge":3324},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":3326},{"value":66,"unit":67},{"visibility":3328,"bgImage":3330,"rowWidth":3332,"customClass":3333},{"value":3329},{"hideDesktop":33,"hideMobile":33},{"value":3331},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":3334},[],{"id":3319,"type":82,"child":3336,"class":3343,"styles":3348,"extra":3350,"tagName":107,"meta":82,"title":3362,"noOfColumns":521,"classStr":522},[3337,3338,3339,3340,3341,3342],"sub-heading-zgAUEiWTty","image-slider-achszaW5L1","sub-heading-RqiA9xF_i7","row-meTU-K_rSB","sub-heading-ME_G3AOWS4","sub-heading--0Wfz7yweG",{"borders":3344,"borderRadius":3345,"radiusEdge":3346,"nestedColumn":3347},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":3349},{"value":66,"unit":67},{"visibility":3351,"bgImage":3353,"columnLayout":3355,"justifyContentColumnLayout":3356,"alignContentColumnLayout":3357,"forceColumnLayoutForMobile":3358,"customClass":3359,"elementVersion":3361},{"value":3352},{"hideDesktop":33,"hideMobile":33},{"value":3354},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":3360},[],{"value":106},"423 Melançon",{"extra":3364,"id":3342,"tagName":532,"class":3371,"meta":542},{"visibility":3365,"text":3367,"nodeId":3368,"customClass":3369},{"value":3366},{"hideMobile":37,"hideDesktop":37},{"value":2667},"csub-heading--0Wfz7yweG",{"value":3370},[],{"borders":3372,"borderRadius":3373,"radiusEdge":3374,"entranceAnimation":3375,"animationScale":3376,"animationDuration":3377,"animationDelay":3378,"animationEasing":3379},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3381,"id":3341,"tagName":532,"class":3388,"meta":542},{"visibility":3382,"text":3384,"nodeId":3385,"customClass":3386},{"value":3383},{"hideMobile":37,"hideDesktop":37},{"value":1904},"csub-heading-ME_G3AOWS4",{"value":3387},[],{"borders":3389,"borderRadius":3390,"radiusEdge":3391,"entranceAnimation":3392,"animationScale":3393,"animationDuration":3394,"animationDelay":3395,"animationEasing":3396},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":3340,"type":52,"child":3398,"class":3400,"styles":3405,"extra":3407,"tagName":78,"meta":52,"title":489,"classStr":80},[3399],"col-ls71cZvTn-",{"alignRow":3401,"borders":3402,"borderRadius":3403,"radiusEdge":3404},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":3406},{"value":66,"unit":67},{"visibility":3408,"bgImage":3410,"rowWidth":3412,"customClass":3413},{"value":3409},{"hideDesktop":33,"hideMobile":33},{"value":3411},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":3414},[],{"id":3399,"type":82,"child":3416,"class":3420,"styles":3425,"extra":3427,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[3417,3418,3419],"paragraph-kFmEo68CHO","paragraph-zP3JRLb_6T","paragraph-tJxuqEhs9W",{"borders":3421,"borderRadius":3422,"radiusEdge":3423,"nestedColumn":3424},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":3426},{"value":66,"unit":67},{"visibility":3428,"bgImage":3430,"columnLayout":3432,"justifyContentColumnLayout":3433,"alignContentColumnLayout":3434,"forceColumnLayoutForMobile":3435,"customClass":3436,"elementVersion":3438},{"value":3429},{"hideDesktop":33,"hideMobile":33},{"value":3431},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":3437},[],{"value":106},{"extra":3440,"id":3419,"tagName":344,"class":3447,"meta":356},{"visibility":3441,"text":3443,"nodeId":3444,"customClass":3445},{"value":3442},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-tJxuqEhs9W",{"value":3446},[],{"borders":3448,"borderRadius":3449,"radiusEdge":3450,"entranceAnimation":3451,"animationScale":3452,"animationDuration":3453,"animationDelay":3454,"animationEasing":3455},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3457,"id":3418,"tagName":344,"class":3464,"meta":356},{"visibility":3458,"text":3460,"nodeId":3461,"customClass":3462},{"value":3459},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-zP3JRLb_6T",{"value":3463},[],{"borders":3465,"borderRadius":3466,"radiusEdge":3467,"entranceAnimation":3468,"animationScale":3469,"animationDuration":3470,"animationDelay":3471,"animationEasing":3472},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3474,"id":3417,"tagName":344,"class":3481,"meta":356},{"visibility":3475,"text":3477,"nodeId":3478,"customClass":3479},{"value":3476},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-kFmEo68CHO",{"value":3480},[],{"borders":3482,"borderRadius":3483,"radiusEdge":3484,"entranceAnimation":3485,"animationScale":3486,"animationDuration":3487,"animationDelay":3488,"animationEasing":3489},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3491,"id":3339,"tagName":532,"class":3499,"meta":542},{"visibility":3492,"text":3494,"nodeId":3496,"customClass":3497},{"value":3493},{"hideMobile":37,"hideDesktop":37},{"value":3495},"\u003Ch2>\u003Cstrong>Secteur du Cegep\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible \u003Cstrong>IMMÉDIATEMENT \u003C\u002Fstrong>\u003Cbr>Chauffage et électricité à vos frais\u003Cbr>\u003Cstrong>INTERNET COMPRIS\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Ch2>Immeuble\u003Cstrong> NEUF\u003C\u002Fstrong>\u003Cbr>Près du cégep et de tous les services\u003C\u002Fh2>","csub-heading-RqiA9xF_i7",{"value":3498},[],{"borders":3500,"borderRadius":3501,"radiusEdge":3502,"entranceAnimation":3503,"animationScale":3504,"animationDuration":3505,"animationDelay":3506,"animationEasing":3507},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3509,"class":3535,"styles":3536,"customCss":3538,"id":3338,"version":106,"type":712,"child":3539,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":3510,"sliderList":3511,"sliderSize":3523,"sliderPagination":3525,"sliderArrow":3527,"sliderAnimation":3529,"visibility":3531,"customClass":3533},"cimage-slider-achszaW5L1",{"value":3512},[3513,3515,3517,3519,3521],{"id":109,"ctaTarget":680,"cta":37,"backgroundImage":3514,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd5bedf77cd2c0645d40cb.jpg",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":3516,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd5bedbb06f534879e0ed9.jpg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":3518,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd5bedb02969461567c096.jpg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":3520,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd5bedb00a695176d152db.jpg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":3522,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd5bed043da36483b4976c.jpg",{"value":3524},{"height":691},{"value":3526},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":3528},{"enable":40,"color":695,"animationEffect":63},{"value":3530},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":3532},{"hideDesktop":33,"hideMobile":33},{"value":3534},[],{},{"borderWidth":3537},{"value":268,"unit":67},[],[],{"extra":3541,"id":3337,"tagName":532,"class":3549,"meta":542},{"visibility":3542,"text":3544,"nodeId":3546,"customClass":3547},{"value":3543},{"hideMobile":37,"hideDesktop":37},{"value":3545},"\u003Ch2>\u003Cstrong>4 ½ Rue Melançon à 1 295$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-zgAUEiWTty",{"value":3548},[],{"borders":3550,"borderRadius":3551,"radiusEdge":3552,"entranceAnimation":3553,"animationScale":3554,"animationDuration":3555,"animationDelay":3556,"animationEasing":3557},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":3318,"type":82,"child":3559,"class":3567,"styles":3572,"extra":3574,"tagName":107,"meta":82,"title":3586,"noOfColumns":521,"classStr":522},[3560,3561,3562,3563,3564,3565,3566],"sub-heading-ipOgPBQQgu","image-slider-ZJsr3B4gSR","sub-heading-LlqGzljPYr","row-1tUj13yrU_","sub-heading-WEH-tuxYZS","sub-heading-UvAgDkge1E","button-7eUMBF9xr_",{"borders":3568,"borderRadius":3569,"radiusEdge":3570,"nestedColumn":3571},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":3573},{"value":66,"unit":67},{"visibility":3575,"bgImage":3577,"columnLayout":3579,"justifyContentColumnLayout":3580,"alignContentColumnLayout":3581,"forceColumnLayoutForMobile":3582,"customClass":3583,"elementVersion":3585},{"value":3576},{"hideDesktop":40,"hideMobile":40},{"value":3578},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":3584},[],{"value":106},"425 MELANÇON",{"extra":3588,"id":3566,"tagName":944,"meta":945,"class":3615},{"visibility":3589,"text":3591,"subText":3592,"productId":3593,"action":3595,"visitWebsite":3596,"downloadFile":3597,"hideElements":3598,"showElements":3599,"scrollToElement":3600,"stepPath":3601,"saleAction":3602,"phoneNumber":3603,"emailAddress":3604,"popupId":3605,"storeProductId":3606,"storeProductPriceId":3608,"storeCollectionId":3610,"customClass":3612,"nodeId":3614},{"value":3590},{"hideMobile":37,"hideDesktop":37},{"value":1290},{},{"value":3594},{},{"value":1295},{},{},{},{},{},{},{},{},{},{"value":934},{"value":3607},{},{"value":3609},{},{"value":3611},{},{"value":3613},[],"cbutton-7eUMBF9xr_",{"buttonBgStyle":3616,"buttonVp":3617,"buttonHp":3618,"hoverAnimation":3619,"borders":3620,"borderRadius":3621,"radiusEdge":3622,"entranceAnimation":3623,"animationScale":3624,"animationDuration":3625,"animationDelay":3626,"animationEasing":3627},{"value":948},{"value":1318},{"value":1320},{"value":350},{"value":59},{"value":1324},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3629,"id":3565,"tagName":532,"class":3636,"meta":542},{"visibility":3630,"text":3632,"nodeId":3633,"customClass":3634},{"value":3631},{"hideMobile":37,"hideDesktop":37},{"value":2667},"csub-heading-UvAgDkge1E",{"value":3635},[],{"borders":3637,"borderRadius":3638,"radiusEdge":3639,"entranceAnimation":3640,"animationScale":3641,"animationDuration":3642,"animationDelay":3643,"animationEasing":3644},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3646,"id":3564,"tagName":532,"class":3653,"meta":542},{"visibility":3647,"text":3649,"nodeId":3650,"customClass":3651},{"value":3648},{"hideMobile":37,"hideDesktop":37},{"value":1354},"csub-heading-WEH-tuxYZS",{"value":3652},[],{"borders":3654,"borderRadius":3655,"radiusEdge":3656,"entranceAnimation":3657,"animationScale":3658,"animationDuration":3659,"animationDelay":3660,"animationEasing":3661},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":3563,"type":52,"child":3663,"class":3665,"styles":3670,"extra":3672,"tagName":78,"meta":52,"title":489,"classStr":80},[3664],"col-cp3pdl5s08",{"alignRow":3666,"borders":3667,"borderRadius":3668,"radiusEdge":3669},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":3671},{"value":66,"unit":67},{"visibility":3673,"bgImage":3675,"rowWidth":3677,"customClass":3678},{"value":3674},{"hideDesktop":33,"hideMobile":33},{"value":3676},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":3679},[],{"id":3664,"type":82,"child":3681,"class":3685,"styles":3690,"extra":3692,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[3682,3683,3684],"paragraph-JXWmkCoDvo","paragraph-dUBxgkE7tO","paragraph-yxIDpMQVnK",{"borders":3686,"borderRadius":3687,"radiusEdge":3688,"nestedColumn":3689},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":3691},{"value":66,"unit":67},{"visibility":3693,"bgImage":3695,"columnLayout":3697,"justifyContentColumnLayout":3698,"alignContentColumnLayout":3699,"forceColumnLayoutForMobile":3700,"customClass":3701,"elementVersion":3703},{"value":3694},{"hideDesktop":33,"hideMobile":33},{"value":3696},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":3702},[],{"value":106},{"extra":3705,"id":3684,"tagName":344,"class":3712,"meta":356},{"visibility":3706,"text":3708,"nodeId":3709,"customClass":3710},{"value":3707},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-yxIDpMQVnK",{"value":3711},[],{"borders":3713,"borderRadius":3714,"radiusEdge":3715,"entranceAnimation":3716,"animationScale":3717,"animationDuration":3718,"animationDelay":3719,"animationEasing":3720},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3722,"id":3683,"tagName":344,"class":3729,"meta":356},{"visibility":3723,"text":3725,"nodeId":3726,"customClass":3727},{"value":3724},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-dUBxgkE7tO",{"value":3728},[],{"borders":3730,"borderRadius":3731,"radiusEdge":3732,"entranceAnimation":3733,"animationScale":3734,"animationDuration":3735,"animationDelay":3736,"animationEasing":3737},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3739,"id":3682,"tagName":344,"class":3746,"meta":356},{"visibility":3740,"text":3742,"nodeId":3743,"customClass":3744},{"value":3741},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-JXWmkCoDvo",{"value":3745},[],{"borders":3747,"borderRadius":3748,"radiusEdge":3749,"entranceAnimation":3750,"animationScale":3751,"animationDuration":3752,"animationDelay":3753,"animationEasing":3754},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3756,"id":3562,"tagName":532,"class":3763,"meta":542},{"visibility":3757,"text":3759,"nodeId":3760,"customClass":3761},{"value":3758},{"hideMobile":37,"hideDesktop":37},{"value":2795},"csub-heading-LlqGzljPYr",{"value":3762},[],{"borders":3764,"borderRadius":3765,"radiusEdge":3766,"entranceAnimation":3767,"animationScale":3768,"animationDuration":3769,"animationDelay":3770,"animationEasing":3771},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3773,"class":3801,"styles":3802,"customCss":3804,"id":3561,"version":106,"type":712,"child":3805,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":3774,"sliderList":3775,"sliderSize":3789,"sliderPagination":3791,"sliderArrow":3793,"sliderAnimation":3795,"visibility":3797,"customClass":3799},"cimage-slider-ZJsr3B4gSR",{"value":3776},[3777,3779,3781,3783,3785,3787],{"ctaTarget":680,"cta":37,"backgroundImage":3778,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a8804036702f9e0fbce9c9.jpeg",{"ctaTarget":680,"cta":37,"backgroundImage":3780,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a880407bdf3871cf436980.png",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":3782,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a880406fa65882e5c044f6.jpeg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":3784,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a880406fa65878c9c044f7.jpeg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":3786,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a88040618c8d7b78cd0ad6.jpeg",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":3788,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a88040b003fadd9a8ce521.jpeg",{"value":3790},{"height":691},{"value":3792},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":3794},{"enable":40,"color":695,"animationEffect":63},{"value":3796},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":3798},{"hideDesktop":33,"hideMobile":33},{"value":3800},[],{},{"borderWidth":3803},{"value":268,"unit":67},[],[],{"extra":3807,"id":3560,"tagName":532,"class":3814,"meta":542},{"visibility":3808,"text":3810,"nodeId":3811,"customClass":3812},{"value":3809},{"hideMobile":37,"hideDesktop":37},{"value":2845},"csub-heading-ipOgPBQQgu",{"value":3813},[],{"borders":3815,"borderRadius":3816,"radiusEdge":3817,"entranceAnimation":3818,"animationScale":3819,"animationDuration":3820,"animationDelay":3821,"animationEasing":3822},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":3317,"type":82,"child":3824,"class":3832,"styles":3837,"extra":3839,"tagName":107,"meta":82,"title":3851,"noOfColumns":521,"classStr":522},[3825,3826,3827,3828,3829,3830,3831],"sub-heading-QFGuL_DcuK","image-slider-riO8-nRuP5","sub-heading-tjEV3jdfXf","row-CGWejANV07","sub-heading-SnOeR9XLND","sub-heading-wEYEICtBom","button-VVbM5fio9Y",{"borders":3833,"borderRadius":3834,"radiusEdge":3835,"nestedColumn":3836},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":3838},{"value":66,"unit":67},{"visibility":3840,"bgImage":3842,"columnLayout":3844,"justifyContentColumnLayout":3845,"alignContentColumnLayout":3846,"forceColumnLayoutForMobile":3847,"customClass":3848,"elementVersion":3850},{"value":3841},{"hideDesktop":40,"hideMobile":40},{"value":3843},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":3849},[],{"value":106},"4 1\u002F2 toupin 1225",{"extra":3853,"id":3831,"tagName":944,"meta":945,"class":3880},{"visibility":3854,"text":3856,"subText":3857,"productId":3858,"action":3860,"visitWebsite":3861,"downloadFile":3862,"hideElements":3863,"showElements":3864,"scrollToElement":3865,"stepPath":3866,"saleAction":3867,"phoneNumber":3868,"emailAddress":3869,"popupId":3870,"storeProductId":3871,"storeProductPriceId":3873,"storeCollectionId":3875,"customClass":3877,"nodeId":3879},{"value":3855},{"hideMobile":37,"hideDesktop":37},{"value":1290},{},{"value":3859},{},{"value":1295},{},{},{},{},{},{},{},{},{},{"value":934},{"value":3872},{},{"value":3874},{},{"value":3876},{},{"value":3878},[],"cbutton-VVbM5fio9Y",{"buttonBgStyle":3881,"buttonVp":3882,"buttonHp":3883,"hoverAnimation":3884,"borders":3885,"borderRadius":3886,"radiusEdge":3887,"entranceAnimation":3888,"animationScale":3889,"animationDuration":3890,"animationDelay":3891,"animationEasing":3892},{"value":948},{"value":1318},{"value":1320},{"value":350},{"value":59},{"value":1324},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3894,"id":3830,"tagName":532,"class":3902,"meta":542},{"visibility":3895,"text":3897,"nodeId":3899,"customClass":3900},{"value":3896},{"hideMobile":37,"hideDesktop":37},{"value":3898},"\u003Ch2>1 225 $ \u002F mois\u003C\u002Fh2>","csub-heading-wEYEICtBom",{"value":3901},[],{"borders":3903,"borderRadius":3904,"radiusEdge":3905,"entranceAnimation":3906,"animationScale":3907,"animationDuration":3908,"animationDelay":3909,"animationEasing":3910},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3912,"id":3829,"tagName":532,"class":3920,"meta":542},{"visibility":3913,"text":3915,"nodeId":3917,"customClass":3918},{"value":3914},{"hideMobile":37,"hideDesktop":37},{"value":3916},"\u003Ch2>2e étage\u003C\u002Fh2>","csub-heading-SnOeR9XLND",{"value":3919},[],{"borders":3921,"borderRadius":3922,"radiusEdge":3923,"entranceAnimation":3924,"animationScale":3925,"animationDuration":3926,"animationDelay":3927,"animationEasing":3928},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":3828,"type":52,"child":3930,"class":3932,"styles":3937,"extra":3939,"tagName":78,"meta":52,"title":489,"classStr":80},[3931],"col-6sdGUnXWaj",{"alignRow":3933,"borders":3934,"borderRadius":3935,"radiusEdge":3936},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":3938},{"value":66,"unit":67},{"visibility":3940,"bgImage":3942,"rowWidth":3944,"customClass":3945},{"value":3941},{"hideDesktop":33,"hideMobile":33},{"value":3943},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":3946},[],{"id":3931,"type":82,"child":3948,"class":3952,"styles":3957,"extra":3959,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[3949,3950,3951],"paragraph-6CKq1pBHHQ","paragraph-NmI3r-dZjg","paragraph-t6zTPAahzh",{"borders":3953,"borderRadius":3954,"radiusEdge":3955,"nestedColumn":3956},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":3958},{"value":66,"unit":67},{"visibility":3960,"bgImage":3962,"columnLayout":3964,"justifyContentColumnLayout":3965,"alignContentColumnLayout":3966,"forceColumnLayoutForMobile":3967,"customClass":3968,"elementVersion":3970},{"value":3961},{"hideDesktop":33,"hideMobile":33},{"value":3963},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":3969},[],{"value":106},{"extra":3972,"id":3951,"tagName":344,"class":3979,"meta":356},{"visibility":3973,"text":3975,"nodeId":3976,"customClass":3977},{"value":3974},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-t6zTPAahzh",{"value":3978},[],{"borders":3980,"borderRadius":3981,"radiusEdge":3982,"entranceAnimation":3983,"animationScale":3984,"animationDuration":3985,"animationDelay":3986,"animationEasing":3987},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":3989,"id":3950,"tagName":344,"class":3996,"meta":356},{"visibility":3990,"text":3992,"nodeId":3993,"customClass":3994},{"value":3991},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-NmI3r-dZjg",{"value":3995},[],{"borders":3997,"borderRadius":3998,"radiusEdge":3999,"entranceAnimation":4000,"animationScale":4001,"animationDuration":4002,"animationDelay":4003,"animationEasing":4004},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4006,"id":3949,"tagName":344,"class":4013,"meta":356},{"visibility":4007,"text":4009,"nodeId":4010,"customClass":4011},{"value":4008},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-6CKq1pBHHQ",{"value":4012},[],{"borders":4014,"borderRadius":4015,"radiusEdge":4016,"entranceAnimation":4017,"animationScale":4018,"animationDuration":4019,"animationDelay":4020,"animationEasing":4021},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4023,"id":3827,"tagName":532,"class":4031,"meta":542},{"visibility":4024,"text":4026,"nodeId":4028,"customClass":4029},{"value":4025},{"hideMobile":37,"hideDesktop":37},{"value":4027},"\u003Ch2>\u003Cstrong>Secteur St-Pierre\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> 1er Juillet !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement \u003Cstrong>+ Garage\u003C\u002Fstrong>\u003C\u002Fh2>\u003Cp>Locker sur balcon arrière\u003C\u002Fp>\u003Ch2>Immeuble QUADRUPLEX\u003C\u002Fh2>\u003Ch2>Près de tous les services\u003C\u002Fh2>","csub-heading-tjEV3jdfXf",{"value":4030},[],{"borders":4032,"borderRadius":4033,"radiusEdge":4034,"entranceAnimation":4035,"animationScale":4036,"animationDuration":4037,"animationDelay":4038,"animationEasing":4039},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4041,"class":4061,"styles":4062,"customCss":4064,"id":3826,"version":106,"type":712,"child":4065,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":4042,"sliderList":4043,"sliderSize":4049,"sliderPagination":4051,"sliderArrow":4053,"sliderAnimation":4055,"visibility":4057,"customClass":4059},"cimage-slider-riO8-nRuP5",{"value":4044},[4045,4047],{"ctaTarget":680,"cta":37,"backgroundImage":4046,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69822b17d0487326c2ceaee7.jpeg",{"ctaTarget":680,"cta":37,"backgroundImage":4048,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F696691e39a690c2e02f2ed06.jpeg",{"value":4050},{"height":691},{"value":4052},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":4054},{"enable":40,"color":695,"animationEffect":63},{"value":4056},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":4058},{"hideDesktop":33,"hideMobile":33},{"value":4060},[],{},{"borderWidth":4063},{"value":268,"unit":67},[],[],{"extra":4067,"id":3825,"tagName":532,"class":4075,"meta":542},{"visibility":4068,"text":4070,"nodeId":4072,"customClass":4073},{"value":4069},{"hideMobile":37,"hideDesktop":37},{"value":4071},"\u003Ch2>\u003Cstrong>4 ½ rue Toupin à 1 225$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-QFGuL_DcuK",{"value":4074},[],{"borders":4076,"borderRadius":4077,"radiusEdge":4078,"entranceAnimation":4079,"animationScale":4080,"animationDuration":4081,"animationDelay":4082,"animationEasing":4083},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":3316,"type":82,"child":4085,"class":4093,"styles":4098,"extra":4100,"tagName":107,"meta":82,"title":4112,"noOfColumns":521,"classStr":522},[4086,4087,4088,4089,4090,4091,4092],"sub-heading-dj_hT0pl6A","image-slider-0DcKAWgheV","sub-heading-wuMQ4HlRJH","row-xqyNcqfIXP","sub-heading-Ie6JP0sg_S","sub-heading-wTHPsVslDr","button-zuF2gWpWDs",{"borders":4094,"borderRadius":4095,"radiusEdge":4096,"nestedColumn":4097},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":4099},{"value":66,"unit":67},{"visibility":4101,"bgImage":4103,"columnLayout":4105,"justifyContentColumnLayout":4106,"alignContentColumnLayout":4107,"forceColumnLayoutForMobile":4108,"customClass":4109,"elementVersion":4111},{"value":4102},{"hideDesktop":40,"hideMobile":40},{"value":4104},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":4110},[],{"value":106},"458-D DES ÉCOLES",{"extra":4114,"id":4092,"tagName":944,"meta":945,"class":4141},{"visibility":4115,"text":4117,"subText":4118,"productId":4119,"action":4121,"visitWebsite":4122,"downloadFile":4123,"hideElements":4124,"showElements":4125,"scrollToElement":4126,"stepPath":4127,"saleAction":4128,"phoneNumber":4129,"emailAddress":4130,"popupId":4131,"storeProductId":4132,"storeProductPriceId":4134,"storeCollectionId":4136,"customClass":4138,"nodeId":4140},{"value":4116},{"hideMobile":37,"hideDesktop":37},{"value":1290},{},{"value":4120},{},{"value":1295},{},{},{},{},{},{},{},{},{},{"value":934},{"value":4133},{},{"value":4135},{},{"value":4137},{},{"value":4139},[],"cbutton-zuF2gWpWDs",{"buttonBgStyle":4142,"buttonVp":4143,"buttonHp":4144,"hoverAnimation":4145,"borders":4146,"borderRadius":4147,"radiusEdge":4148,"entranceAnimation":4149,"animationScale":4150,"animationDuration":4151,"animationDelay":4152,"animationEasing":4153},{"value":948},{"value":1318},{"value":1320},{"value":350},{"value":59},{"value":1324},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4155,"id":4091,"tagName":532,"class":4163,"meta":542},{"visibility":4156,"text":4158,"nodeId":4160,"customClass":4161},{"value":4157},{"hideMobile":37,"hideDesktop":37},{"value":4159},"\u003Ch2>1 155 $ \u002F mois\u003C\u002Fh2>","csub-heading-wTHPsVslDr",{"value":4162},[],{"borders":4164,"borderRadius":4165,"radiusEdge":4166,"entranceAnimation":4167,"animationScale":4168,"animationDuration":4169,"animationDelay":4170,"animationEasing":4171},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4173,"id":4090,"tagName":532,"class":4181,"meta":542},{"visibility":4174,"text":4176,"nodeId":4178,"customClass":4179},{"value":4175},{"hideMobile":37,"hideDesktop":37},{"value":4177},"\u003Ch2>3e étage\u003C\u002Fh2>","csub-heading-Ie6JP0sg_S",{"value":4180},[],{"borders":4182,"borderRadius":4183,"radiusEdge":4184,"entranceAnimation":4185,"animationScale":4186,"animationDuration":4187,"animationDelay":4188,"animationEasing":4189},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":4089,"type":52,"child":4191,"class":4193,"styles":4198,"extra":4200,"tagName":78,"meta":52,"title":489,"classStr":80},[4192],"col-7TnZnvp0Oz",{"alignRow":4194,"borders":4195,"borderRadius":4196,"radiusEdge":4197},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":4199},{"value":66,"unit":67},{"visibility":4201,"bgImage":4203,"rowWidth":4205,"customClass":4206},{"value":4202},{"hideDesktop":33,"hideMobile":33},{"value":4204},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":4207},[],{"id":4192,"type":82,"child":4209,"class":4213,"styles":4218,"extra":4220,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[4210,4211,4212],"paragraph-EhP-Pqjb6A","paragraph-5SPJVqr9eu","paragraph-J0uGvb7QgA",{"borders":4214,"borderRadius":4215,"radiusEdge":4216,"nestedColumn":4217},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":4219},{"value":66,"unit":67},{"visibility":4221,"bgImage":4223,"columnLayout":4225,"justifyContentColumnLayout":4226,"alignContentColumnLayout":4227,"forceColumnLayoutForMobile":4228,"customClass":4229,"elementVersion":4231},{"value":4222},{"hideDesktop":33,"hideMobile":33},{"value":4224},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":4230},[],{"value":106},{"extra":4233,"id":4212,"tagName":344,"class":4240,"meta":356},{"visibility":4234,"text":4236,"nodeId":4237,"customClass":4238},{"value":4235},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-J0uGvb7QgA",{"value":4239},[],{"borders":4241,"borderRadius":4242,"radiusEdge":4243,"entranceAnimation":4244,"animationScale":4245,"animationDuration":4246,"animationDelay":4247,"animationEasing":4248},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4250,"id":4211,"tagName":344,"class":4257,"meta":356},{"visibility":4251,"text":4253,"nodeId":4254,"customClass":4255},{"value":4252},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-5SPJVqr9eu",{"value":4256},[],{"borders":4258,"borderRadius":4259,"radiusEdge":4260,"entranceAnimation":4261,"animationScale":4262,"animationDuration":4263,"animationDelay":4264,"animationEasing":4265},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4267,"id":4210,"tagName":344,"class":4274,"meta":356},{"visibility":4268,"text":4270,"nodeId":4271,"customClass":4272},{"value":4269},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-EhP-Pqjb6A",{"value":4273},[],{"borders":4275,"borderRadius":4276,"radiusEdge":4277,"entranceAnimation":4278,"animationScale":4279,"animationDuration":4280,"animationDelay":4281,"animationEasing":4282},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4284,"id":4088,"tagName":532,"class":4292,"meta":542},{"visibility":4285,"text":4287,"nodeId":4289,"customClass":4290},{"value":4286},{"hideMobile":37,"hideDesktop":37},{"value":4288},"\u003Ch2>\u003Cstrong>Secteur Centre-Ville\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> 1er Juillet !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Ch2>balcon\u003C\u002Fh2>\u003Ch2>Près de tous les services\u003C\u002Fh2>","csub-heading-wuMQ4HlRJH",{"value":4291},[],{"borders":4293,"borderRadius":4294,"radiusEdge":4295,"entranceAnimation":4296,"animationScale":4297,"animationDuration":4298,"animationDelay":4299,"animationEasing":4300},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4302,"class":4332,"styles":4333,"customCss":4335,"id":4087,"version":106,"type":712,"child":4336,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":4303,"sliderList":4304,"sliderSize":4320,"sliderPagination":4322,"sliderArrow":4324,"sliderAnimation":4326,"visibility":4328,"customClass":4330},"cimage-slider-0DcKAWgheV",{"value":4305},[4306,4308,4310,4312,4314,4316,4318],{"ctaTarget":680,"cta":37,"backgroundImage":4307,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a86d9bb003fa4eec87bdda.jpeg",{"ctaTarget":680,"cta":37,"backgroundImage":4309,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a86d9b7bdf38e26c3e47de.jpeg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":4311,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a86d9b36702f6869b7cea5.jpeg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":4313,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a86d9b7bdf384e1d3e47df.png",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":4315,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a86d9bb003fa1d2487bdd9.png",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":4317,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a86d9bbffadf782579ab84.png",{"id":3274,"ctaTarget":680,"cta":37,"backgroundImage":4319,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a86d9bedd087c42f140fee.jpeg",{"value":4321},{"height":691},{"value":4323},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":4325},{"enable":40,"color":695,"animationEffect":63},{"value":4327},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":4329},{"hideDesktop":33,"hideMobile":33},{"value":4331},[],{},{"borderWidth":4334},{"value":268,"unit":67},[],[],{"extra":4338,"id":4086,"tagName":532,"class":4346,"meta":542},{"visibility":4339,"text":4341,"nodeId":4343,"customClass":4344},{"value":4340},{"hideMobile":37,"hideDesktop":37},{"value":4342},"\u003Ch2>\u003Cstrong>4 ½ rue Des Écoles à 1 155$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-dj_hT0pl6A",{"value":4345},[],{"borders":4347,"borderRadius":4348,"radiusEdge":4349,"entranceAnimation":4350,"animationScale":4351,"animationDuration":4352,"animationDelay":4353,"animationEasing":4354},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":3315,"type":82,"child":4356,"class":4364,"styles":4369,"extra":4371,"tagName":107,"meta":82,"title":4383,"noOfColumns":521,"classStr":522},[4357,4358,4359,4360,4361,4362,4363],"sub-heading-szNTcYEybj","image-slider-eRqZbtNmeA","sub-heading-ceUBsq0kuj","row-m_Yt_bXEHI","sub-heading-jNzPlB9vbm","sub-heading-YgPyfOmE5Z","button-JjVPYMgs6z",{"borders":4365,"borderRadius":4366,"radiusEdge":4367,"nestedColumn":4368},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":4370},{"value":66,"unit":67},{"visibility":4372,"bgImage":4374,"columnLayout":4376,"justifyContentColumnLayout":4377,"alignContentColumnLayout":4378,"forceColumnLayoutForMobile":4379,"customClass":4380,"elementVersion":4382},{"value":4373},{"hideDesktop":40,"hideMobile":40},{"value":4375},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":4381},[],{"value":106},"472 RUE TOUPIN",{"extra":4385,"id":4363,"tagName":944,"meta":945,"class":4412},{"visibility":4386,"text":4388,"subText":4389,"productId":4390,"action":4392,"visitWebsite":4393,"downloadFile":4394,"hideElements":4395,"showElements":4396,"scrollToElement":4397,"stepPath":4398,"saleAction":4399,"phoneNumber":4400,"emailAddress":4401,"popupId":4402,"storeProductId":4403,"storeProductPriceId":4405,"storeCollectionId":4407,"customClass":4409,"nodeId":4411},{"value":4387},{"hideMobile":37,"hideDesktop":37},{"value":1290},{},{"value":4391},{},{"value":1295},{},{},{},{},{},{},{},{},{},{"value":934},{"value":4404},{},{"value":4406},{},{"value":4408},{},{"value":4410},[],"cbutton-JjVPYMgs6z",{"buttonBgStyle":4413,"buttonVp":4414,"buttonHp":4415,"hoverAnimation":4416,"borders":4417,"borderRadius":4418,"radiusEdge":4419,"entranceAnimation":4420,"animationScale":4421,"animationDuration":4422,"animationDelay":4423,"animationEasing":4424},{"value":948},{"value":1318},{"value":1320},{"value":350},{"value":59},{"value":1324},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4426,"id":4362,"tagName":532,"class":4434,"meta":542},{"visibility":4427,"text":4429,"nodeId":4431,"customClass":4432},{"value":4428},{"hideMobile":37,"hideDesktop":37},{"value":4430},"\u003Ch2>1 150 $ \u002F mois\u003C\u002Fh2>","csub-heading-YgPyfOmE5Z",{"value":4433},[],{"borders":4435,"borderRadius":4436,"radiusEdge":4437,"entranceAnimation":4438,"animationScale":4439,"animationDuration":4440,"animationDelay":4441,"animationEasing":4442},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4444,"id":4361,"tagName":532,"class":4451,"meta":542},{"visibility":4445,"text":4447,"nodeId":4448,"customClass":4449},{"value":4446},{"hideMobile":37,"hideDesktop":37},{"value":3916},"csub-heading-jNzPlB9vbm",{"value":4450},[],{"borders":4452,"borderRadius":4453,"radiusEdge":4454,"entranceAnimation":4455,"animationScale":4456,"animationDuration":4457,"animationDelay":4458,"animationEasing":4459},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":4360,"type":52,"child":4461,"class":4463,"styles":4468,"extra":4470,"tagName":78,"meta":52,"title":489,"classStr":80},[4462],"col-UWRaDC9Grz",{"alignRow":4464,"borders":4465,"borderRadius":4466,"radiusEdge":4467},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":4469},{"value":66,"unit":67},{"visibility":4471,"bgImage":4473,"rowWidth":4475,"customClass":4476},{"value":4472},{"hideDesktop":33,"hideMobile":33},{"value":4474},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":4477},[],{"id":4462,"type":82,"child":4479,"class":4483,"styles":4488,"extra":4490,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[4480,4481,4482],"paragraph-ZidcqoUw0n","paragraph-koCOWm6nld","paragraph-e7_Jz94run",{"borders":4484,"borderRadius":4485,"radiusEdge":4486,"nestedColumn":4487},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":4489},{"value":66,"unit":67},{"visibility":4491,"bgImage":4493,"columnLayout":4495,"justifyContentColumnLayout":4496,"alignContentColumnLayout":4497,"forceColumnLayoutForMobile":4498,"customClass":4499,"elementVersion":4501},{"value":4492},{"hideDesktop":33,"hideMobile":33},{"value":4494},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":4500},[],{"value":106},{"extra":4503,"id":4482,"tagName":344,"class":4510,"meta":356},{"visibility":4504,"text":4506,"nodeId":4507,"customClass":4508},{"value":4505},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-e7_Jz94run",{"value":4509},[],{"borders":4511,"borderRadius":4512,"radiusEdge":4513,"entranceAnimation":4514,"animationScale":4515,"animationDuration":4516,"animationDelay":4517,"animationEasing":4518},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4520,"id":4481,"tagName":344,"class":4527,"meta":356},{"visibility":4521,"text":4523,"nodeId":4524,"customClass":4525},{"value":4522},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-koCOWm6nld",{"value":4526},[],{"borders":4528,"borderRadius":4529,"radiusEdge":4530,"entranceAnimation":4531,"animationScale":4532,"animationDuration":4533,"animationDelay":4534,"animationEasing":4535},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4537,"id":4480,"tagName":344,"class":4544,"meta":356},{"visibility":4538,"text":4540,"nodeId":4541,"customClass":4542},{"value":4539},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-ZidcqoUw0n",{"value":4543},[],{"borders":4545,"borderRadius":4546,"radiusEdge":4547,"entranceAnimation":4548,"animationScale":4549,"animationDuration":4550,"animationDelay":4551,"animationEasing":4552},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4554,"id":4359,"tagName":532,"class":4562,"meta":542},{"visibility":4555,"text":4557,"nodeId":4559,"customClass":4560},{"value":4556},{"hideMobile":37,"hideDesktop":37},{"value":4558},"\u003Ch2>\u003Cstrong>Secteur St-Pierre\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> 1er Mars !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Cp>Locker sur balcon arrière\u003C\u002Fp>\u003Ch2>Immeuble QUADRUPLEX\u003C\u002Fh2>\u003Ch2>Près de tous les services\u003C\u002Fh2>","csub-heading-ceUBsq0kuj",{"value":4561},[],{"borders":4563,"borderRadius":4564,"radiusEdge":4565,"entranceAnimation":4566,"animationScale":4567,"animationDuration":4568,"animationDelay":4569,"animationEasing":4570},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4572,"class":4598,"styles":4599,"customCss":4601,"id":4358,"version":106,"type":712,"child":4602,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":4573,"sliderList":4574,"sliderSize":4586,"sliderPagination":4588,"sliderArrow":4590,"sliderAnimation":4592,"visibility":4594,"customClass":4596},"cimage-slider-eRqZbtNmeA",{"value":4575},[4576,4578,4580,4582,4584],{"ctaTarget":680,"cta":37,"backgroundImage":4577,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a867c3bffadf69df77f331.jpeg",{"ctaTarget":680,"cta":37,"backgroundImage":4579,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a867c3b003fa7349861bcb.jpeg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":4581,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a867c336702f0feab6304f.jpeg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":4583,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a867c336702fbd6cb6304e.jpeg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":4585,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a867c3ab7117e06e7fe316.jpeg",{"value":4587},{"height":691},{"value":4589},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":4591},{"enable":40,"color":695,"animationEffect":63},{"value":4593},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":4595},{"hideDesktop":33,"hideMobile":33},{"value":4597},[],{},{"borderWidth":4600},{"value":268,"unit":67},[],[],{"extra":4604,"id":4357,"tagName":532,"class":4612,"meta":542},{"visibility":4605,"text":4607,"nodeId":4609,"customClass":4610},{"value":4606},{"hideMobile":37,"hideDesktop":37},{"value":4608},"\u003Ch2>\u003Cstrong>4 ½ rue Toupin à 1 150$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-szNTcYEybj",{"value":4611},[],{"borders":4613,"borderRadius":4614,"radiusEdge":4615,"entranceAnimation":4616,"animationScale":4617,"animationDuration":4618,"animationDelay":4619,"animationEasing":4620},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":3314,"type":82,"child":4622,"class":4629,"styles":4634,"extra":4636,"tagName":107,"meta":82,"title":4648,"noOfColumns":521,"classStr":522},[4623,4624,4625,4626,4627,4628],"sub-heading-GcoF6xvHoC","image-slider-CeKWjGzG_E","sub-heading-8ux0_f0cmY","row-vKeRqlqG86","sub-heading-pSNIku96t9","sub-heading-4Ip_0iBotH",{"borders":4630,"borderRadius":4631,"radiusEdge":4632,"nestedColumn":4633},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":4635},{"value":66,"unit":67},{"visibility":4637,"bgImage":4639,"columnLayout":4641,"justifyContentColumnLayout":4642,"alignContentColumnLayout":4643,"forceColumnLayoutForMobile":4644,"customClass":4645,"elementVersion":4647},{"value":4638},{"hideDesktop":33,"hideMobile":33},{"value":4640},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":4646},[],{"value":106},"4514-13 BOUL ST-JOSEPH",{"extra":4650,"id":4628,"tagName":532,"class":4658,"meta":542},{"visibility":4651,"text":4653,"nodeId":4655,"customClass":4656},{"value":4652},{"hideMobile":37,"hideDesktop":37},{"value":4654},"\u003Ch2>1 195 $ \u002F mois\u003C\u002Fh2>","csub-heading-4Ip_0iBotH",{"value":4657},[],{"borders":4659,"borderRadius":4660,"radiusEdge":4661,"entranceAnimation":4662,"animationScale":4663,"animationDuration":4664,"animationDelay":4665,"animationEasing":4666},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4668,"id":4627,"tagName":532,"class":4675,"meta":542},{"visibility":4669,"text":4671,"nodeId":4672,"customClass":4673},{"value":4670},{"hideMobile":37,"hideDesktop":37},{"value":1904},"csub-heading-pSNIku96t9",{"value":4674},[],{"borders":4676,"borderRadius":4677,"radiusEdge":4678,"entranceAnimation":4679,"animationScale":4680,"animationDuration":4681,"animationDelay":4682,"animationEasing":4683},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":4626,"type":52,"child":4685,"class":4687,"styles":4692,"extra":4694,"tagName":78,"meta":52,"title":489,"classStr":80},[4686],"col-NMqctrhnDW",{"alignRow":4688,"borders":4689,"borderRadius":4690,"radiusEdge":4691},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":4693},{"value":66,"unit":67},{"visibility":4695,"bgImage":4697,"rowWidth":4699,"customClass":4700},{"value":4696},{"hideDesktop":33,"hideMobile":33},{"value":4698},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":4701},[],{"id":4686,"type":82,"child":4703,"class":4707,"styles":4712,"extra":4714,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[4704,4705,4706],"paragraph-HgG_vA5ANo","paragraph-id85VbnU5o","paragraph-xe9HN-aaED",{"borders":4708,"borderRadius":4709,"radiusEdge":4710,"nestedColumn":4711},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":4713},{"value":66,"unit":67},{"visibility":4715,"bgImage":4717,"columnLayout":4719,"justifyContentColumnLayout":4720,"alignContentColumnLayout":4721,"forceColumnLayoutForMobile":4722,"customClass":4723,"elementVersion":4725},{"value":4716},{"hideDesktop":33,"hideMobile":33},{"value":4718},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":4724},[],{"value":106},{"extra":4727,"id":4706,"tagName":344,"class":4734,"meta":356},{"visibility":4728,"text":4730,"nodeId":4731,"customClass":4732},{"value":4729},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-xe9HN-aaED",{"value":4733},[],{"borders":4735,"borderRadius":4736,"radiusEdge":4737,"entranceAnimation":4738,"animationScale":4739,"animationDuration":4740,"animationDelay":4741,"animationEasing":4742},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4744,"id":4705,"tagName":344,"class":4751,"meta":356},{"visibility":4745,"text":4747,"nodeId":4748,"customClass":4749},{"value":4746},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-id85VbnU5o",{"value":4750},[],{"borders":4752,"borderRadius":4753,"radiusEdge":4754,"entranceAnimation":4755,"animationScale":4756,"animationDuration":4757,"animationDelay":4758,"animationEasing":4759},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4761,"id":4704,"tagName":344,"class":4768,"meta":356},{"visibility":4762,"text":4764,"nodeId":4765,"customClass":4766},{"value":4763},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-HgG_vA5ANo",{"value":4767},[],{"borders":4769,"borderRadius":4770,"radiusEdge":4771,"entranceAnimation":4772,"animationScale":4773,"animationDuration":4774,"animationDelay":4775,"animationEasing":4776},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4778,"id":4625,"tagName":532,"class":4786,"meta":542},{"visibility":4779,"text":4781,"nodeId":4783,"customClass":4784},{"value":4780},{"hideMobile":37,"hideDesktop":37},{"value":4782},"\u003Ch2>\u003Cstrong>Secteur Boul. St-Joseph\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible \u003Cstrong>MAINTENANT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité inclus\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Ch2>Près de tous les services\u003C\u002Fh2>\u003Ch2>\u003C\u002Fh2>","csub-heading-8ux0_f0cmY",{"value":4785},[],{"borders":4787,"borderRadius":4788,"radiusEdge":4789,"entranceAnimation":4790,"animationScale":4791,"animationDuration":4792,"animationDelay":4793,"animationEasing":4794},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4796,"class":4820,"styles":4821,"customCss":4823,"id":4624,"version":106,"type":712,"child":4824,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":4797,"sliderList":4798,"sliderSize":4808,"sliderPagination":4810,"sliderArrow":4812,"sliderAnimation":4814,"visibility":4816,"customClass":4818},"cimage-slider-CeKWjGzG_E",{"value":4799},[4800,4802,4804,4806],{"id":109,"ctaTarget":680,"cta":37,"backgroundImage":4801,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd668b337b27bbbe919cc6.jpg",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":4803,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd668bd29234e16dc1c04d.jpg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":4805,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd668b02c31a7784478311.jpg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":4807,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd668b4c3d544bf1a50bb4.jpg",{"value":4809},{"height":691},{"value":4811},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":4813},{"enable":40,"color":695,"animationEffect":63},{"value":4815},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":4817},{"hideDesktop":33,"hideMobile":33},{"value":4819},[],{},{"borderWidth":4822},{"value":268,"unit":67},[],[],{"extra":4826,"id":4623,"tagName":532,"class":4834,"meta":542},{"visibility":4827,"text":4829,"nodeId":4831,"customClass":4832},{"value":4828},{"hideMobile":37,"hideDesktop":37},{"value":4830},"\u003Ch2>\u003Cstrong>4 ½ Boul. St-Joseph à 1 195$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-GcoF6xvHoC",{"value":4833},[],{"borders":4835,"borderRadius":4836,"radiusEdge":4837,"entranceAnimation":4838,"animationScale":4839,"animationDuration":4840,"animationDelay":4841,"animationEasing":4842},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":3313,"type":82,"child":4844,"class":4851,"styles":4856,"extra":4858,"tagName":107,"meta":82,"title":4870,"noOfColumns":521,"classStr":522},[4845,4846,4847,4848,4849,4850],"sub-heading-4nu7x0-N_h","image-slider-K91ox7l21J","sub-heading-Gpy-SIZp54","row-R1cm8G6K1l","sub-heading-dwtEAsmPGN","sub-heading-bdOY_Wzviu",{"borders":4852,"borderRadius":4853,"radiusEdge":4854,"nestedColumn":4855},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":4857},{"value":66,"unit":67},{"visibility":4859,"bgImage":4861,"columnLayout":4863,"justifyContentColumnLayout":4864,"alignContentColumnLayout":4865,"forceColumnLayoutForMobile":4866,"customClass":4867,"elementVersion":4869},{"value":4860},{"hideDesktop":33,"hideMobile":33},{"value":4862},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":4868},[],{"value":106},"458-E DES ÉCOLES",{"extra":4872,"id":4850,"tagName":532,"class":4879,"meta":542},{"visibility":4873,"text":4875,"nodeId":4876,"customClass":4877},{"value":4874},{"hideMobile":37,"hideDesktop":37},{"value":4159},"csub-heading-bdOY_Wzviu",{"value":4878},[],{"borders":4880,"borderRadius":4881,"radiusEdge":4882,"entranceAnimation":4883,"animationScale":4884,"animationDuration":4885,"animationDelay":4886,"animationEasing":4887},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4889,"id":4849,"tagName":532,"class":4896,"meta":542},{"visibility":4890,"text":4892,"nodeId":4893,"customClass":4894},{"value":4891},{"hideMobile":37,"hideDesktop":37},{"value":4177},"csub-heading-dwtEAsmPGN",{"value":4895},[],{"borders":4897,"borderRadius":4898,"radiusEdge":4899,"entranceAnimation":4900,"animationScale":4901,"animationDuration":4902,"animationDelay":4903,"animationEasing":4904},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":4848,"type":52,"child":4906,"class":4908,"styles":4913,"extra":4915,"tagName":78,"meta":52,"title":489,"classStr":80},[4907],"col-ixkz30M7i1",{"alignRow":4909,"borders":4910,"borderRadius":4911,"radiusEdge":4912},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":4914},{"value":66,"unit":67},{"visibility":4916,"bgImage":4918,"rowWidth":4920,"customClass":4921},{"value":4917},{"hideDesktop":33,"hideMobile":33},{"value":4919},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":4922},[],{"id":4907,"type":82,"child":4924,"class":4928,"styles":4933,"extra":4935,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[4925,4926,4927],"paragraph-4HAX9Ca-EU","paragraph-ED8lURGOhn","paragraph-kMr0FdCf6m",{"borders":4929,"borderRadius":4930,"radiusEdge":4931,"nestedColumn":4932},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":4934},{"value":66,"unit":67},{"visibility":4936,"bgImage":4938,"columnLayout":4940,"justifyContentColumnLayout":4941,"alignContentColumnLayout":4942,"forceColumnLayoutForMobile":4943,"customClass":4944,"elementVersion":4946},{"value":4937},{"hideDesktop":33,"hideMobile":33},{"value":4939},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":4945},[],{"value":106},{"extra":4948,"id":4927,"tagName":344,"class":4955,"meta":356},{"visibility":4949,"text":4951,"nodeId":4952,"customClass":4953},{"value":4950},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-kMr0FdCf6m",{"value":4954},[],{"borders":4956,"borderRadius":4957,"radiusEdge":4958,"entranceAnimation":4959,"animationScale":4960,"animationDuration":4961,"animationDelay":4962,"animationEasing":4963},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4965,"id":4926,"tagName":344,"class":4972,"meta":356},{"visibility":4966,"text":4968,"nodeId":4969,"customClass":4970},{"value":4967},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-ED8lURGOhn",{"value":4971},[],{"borders":4973,"borderRadius":4974,"radiusEdge":4975,"entranceAnimation":4976,"animationScale":4977,"animationDuration":4978,"animationDelay":4979,"animationEasing":4980},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4982,"id":4925,"tagName":344,"class":4989,"meta":356},{"visibility":4983,"text":4985,"nodeId":4986,"customClass":4987},{"value":4984},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-4HAX9Ca-EU",{"value":4988},[],{"borders":4990,"borderRadius":4991,"radiusEdge":4992,"entranceAnimation":4993,"animationScale":4994,"animationDuration":4995,"animationDelay":4996,"animationEasing":4997},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":4999,"id":4847,"tagName":532,"class":5007,"meta":542},{"visibility":5000,"text":5002,"nodeId":5004,"customClass":5005},{"value":5001},{"hideMobile":37,"hideDesktop":37},{"value":5003},"\u003Ch2>\u003Cstrong>Secteur Centre-Ville\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> MAINTENANT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Ch2>Locker sur balcon\u003C\u002Fh2>\u003Ch2>Près de tous les services\u003C\u002Fh2>","csub-heading-Gpy-SIZp54",{"value":5006},[],{"borders":5008,"borderRadius":5009,"radiusEdge":5010,"entranceAnimation":5011,"animationScale":5012,"animationDuration":5013,"animationDelay":5014,"animationEasing":5015},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5017,"class":5045,"styles":5046,"customCss":5048,"id":4846,"version":106,"type":712,"child":5049,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":5018,"sliderList":5019,"sliderSize":5033,"sliderPagination":5035,"sliderArrow":5037,"sliderAnimation":5039,"visibility":5041,"customClass":5043},"cimage-slider-K91ox7l21J",{"value":5020},[5021,5023,5025,5027,5029,5031],{"ctaTarget":680,"cta":37,"backgroundImage":5022,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2f6fa658c730bf2bcf.jpeg",{"ctaTarget":680,"cta":37,"backgroundImage":5024,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2f36702f1cdebbc37d.jpeg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":5026,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2f7bdf389290424619.jpeg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":5028,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2f36702f2ce1bbc37e.jpeg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":5030,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2f4dd428d6a997568d.jpeg",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":5032,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2fc7e71f52c4d3ecb2.jpeg",{"value":5034},{"height":691},{"value":5036},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":5038},{"enable":40,"color":695,"animationEffect":63},{"value":5040},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":5042},{"hideDesktop":33,"hideMobile":33},{"value":5044},[],{},{"borderWidth":5047},{"value":268,"unit":67},[],[],{"extra":5051,"id":4845,"tagName":532,"class":5058,"meta":542},{"visibility":5052,"text":5054,"nodeId":5055,"customClass":5056},{"value":5053},{"hideMobile":37,"hideDesktop":37},{"value":4342},"csub-heading-4nu7x0-N_h",{"value":5057},[],{"borders":5059,"borderRadius":5060,"radiusEdge":5061,"entranceAnimation":5062,"animationScale":5063,"animationDuration":5064,"animationDelay":5065,"animationEasing":5066},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":1587,"type":52,"child":5068,"class":5072,"styles":5077,"extra":5079,"tagName":78,"meta":52,"title":489,"classStr":80},[5069,5070,5071],"col-D7l9_3bXCN","col-gXGaYC3mUA","col-maREh0vwPA",{"alignRow":5073,"borders":5074,"borderRadius":5075,"radiusEdge":5076},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":5078},{"value":66,"unit":67},{"visibility":5080,"bgImage":5082,"rowWidth":5084,"customClass":5085},{"value":5081},{"hideDesktop":33,"hideMobile":33},{"value":5083},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":5086},[],{"id":5071,"type":82,"child":5088,"class":5095,"styles":5100,"extra":5102,"tagName":107,"meta":82,"title":4870,"noOfColumns":521,"classStr":522},[5089,5090,5091,5092,5093,5094],"sub-heading-FVVh8D9G3M","image-slider-9ftVM9OWVJ","sub-heading-bLU3UQb9Zi","row-hjdHkZaMtO","sub-heading-RaYk9nFP_n","sub-heading-l5Tul3SYB8",{"borders":5096,"borderRadius":5097,"radiusEdge":5098,"nestedColumn":5099},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":5101},{"value":66,"unit":67},{"visibility":5103,"bgImage":5105,"columnLayout":5107,"justifyContentColumnLayout":5108,"alignContentColumnLayout":5109,"forceColumnLayoutForMobile":5110,"customClass":5111,"elementVersion":5113},{"value":5104},{"hideDesktop":33,"hideMobile":33},{"value":5106},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":5112},[],{"value":106},{"extra":5115,"id":5094,"tagName":532,"class":5123,"meta":542},{"visibility":5116,"text":5118,"nodeId":5120,"customClass":5121},{"value":5117},{"hideMobile":37,"hideDesktop":37},{"value":5119},"\u003Ch2>1 100 $ \u002F mois\u003C\u002Fh2>","csub-heading-l5Tul3SYB8",{"value":5122},[],{"borders":5124,"borderRadius":5125,"radiusEdge":5126,"entranceAnimation":5127,"animationScale":5128,"animationDuration":5129,"animationDelay":5130,"animationEasing":5131},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5133,"id":5093,"tagName":532,"class":5141,"meta":542},{"visibility":5134,"text":5136,"nodeId":5138,"customClass":5139},{"value":5135},{"hideMobile":37,"hideDesktop":37},{"value":5137},"\u003Ch2>Rez de chaussée\u003C\u002Fh2>","csub-heading-RaYk9nFP_n",{"value":5140},[],{"borders":5142,"borderRadius":5143,"radiusEdge":5144,"entranceAnimation":5145,"animationScale":5146,"animationDuration":5147,"animationDelay":5148,"animationEasing":5149},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":5092,"type":52,"child":5151,"class":5153,"styles":5158,"extra":5160,"tagName":78,"meta":52,"title":489,"classStr":80},[5152],"col-b7vKLa55Kt",{"alignRow":5154,"borders":5155,"borderRadius":5156,"radiusEdge":5157},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":5159},{"value":66,"unit":67},{"visibility":5161,"bgImage":5163,"rowWidth":5165,"customClass":5166},{"value":5162},{"hideDesktop":33,"hideMobile":33},{"value":5164},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":5167},[],{"id":5152,"type":82,"child":5169,"class":5173,"styles":5178,"extra":5180,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[5170,5171,5172],"paragraph-tKw7u61AHu","paragraph-WACCbQ0V0r","paragraph-lepTuUXuNh",{"borders":5174,"borderRadius":5175,"radiusEdge":5176,"nestedColumn":5177},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":5179},{"value":66,"unit":67},{"visibility":5181,"bgImage":5183,"columnLayout":5185,"justifyContentColumnLayout":5186,"alignContentColumnLayout":5187,"forceColumnLayoutForMobile":5188,"customClass":5189,"elementVersion":5191},{"value":5182},{"hideDesktop":33,"hideMobile":33},{"value":5184},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":5190},[],{"value":106},{"extra":5193,"id":5172,"tagName":344,"class":5200,"meta":356},{"visibility":5194,"text":5196,"nodeId":5197,"customClass":5198},{"value":5195},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-lepTuUXuNh",{"value":5199},[],{"borders":5201,"borderRadius":5202,"radiusEdge":5203,"entranceAnimation":5204,"animationScale":5205,"animationDuration":5206,"animationDelay":5207,"animationEasing":5208},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5210,"id":5171,"tagName":344,"class":5217,"meta":356},{"visibility":5211,"text":5213,"nodeId":5214,"customClass":5215},{"value":5212},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-WACCbQ0V0r",{"value":5216},[],{"borders":5218,"borderRadius":5219,"radiusEdge":5220,"entranceAnimation":5221,"animationScale":5222,"animationDuration":5223,"animationDelay":5224,"animationEasing":5225},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5227,"id":5170,"tagName":344,"class":5234,"meta":356},{"visibility":5228,"text":5230,"nodeId":5231,"customClass":5232},{"value":5229},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-tKw7u61AHu",{"value":5233},[],{"borders":5235,"borderRadius":5236,"radiusEdge":5237,"entranceAnimation":5238,"animationScale":5239,"animationDuration":5240,"animationDelay":5241,"animationEasing":5242},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5244,"id":5091,"tagName":532,"class":5252,"meta":542},{"visibility":5245,"text":5247,"nodeId":5249,"customClass":5250},{"value":5246},{"hideMobile":37,"hideDesktop":37},{"value":5248},"\u003Ch2>\u003Cstrong>Secteur Centre-Ville\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> MAINTENANT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Ch2>Locker au sous-sol\u003C\u002Fh2>\u003Ch2>Près de tous les services\u003C\u002Fh2>","csub-heading-bLU3UQb9Zi",{"value":5251},[],{"borders":5253,"borderRadius":5254,"radiusEdge":5255,"entranceAnimation":5256,"animationScale":5257,"animationDuration":5258,"animationDelay":5259,"animationEasing":5260},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5262,"class":5290,"styles":5291,"customCss":5293,"id":5090,"version":106,"type":712,"child":5294,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":5263,"sliderList":5264,"sliderSize":5278,"sliderPagination":5280,"sliderArrow":5282,"sliderAnimation":5284,"visibility":5286,"customClass":5288},"cimage-slider-9ftVM9OWVJ",{"value":5265},[5266,5268,5270,5272,5274,5276],{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":5267,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68e1dd882f807a09dae.png",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":5269,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68e1dd882f807a09da4.png",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":5271,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68e1dd882f807a09da9.png",{"id":109,"ctaTarget":680,"cta":37,"backgroundImage":5273,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68e5e892103d4821ec7.png",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":5275,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68ede69375f6a65816f.png",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":5277,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68eab5cbf799a011b03.png",{"value":5279},{"height":691},{"value":5281},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":5283},{"enable":40,"color":695,"animationEffect":63},{"value":5285},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":5287},{"hideDesktop":33,"hideMobile":33},{"value":5289},[],{},{"borderWidth":5292},{"value":268,"unit":67},[],[],{"extra":5296,"id":5089,"tagName":532,"class":5304,"meta":542},{"visibility":5297,"text":5299,"nodeId":5301,"customClass":5302},{"value":5298},{"hideMobile":37,"hideDesktop":37},{"value":5300},"\u003Ch2>\u003Cstrong>4 ½ Bd St-Joseph à 1 100$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-FVVh8D9G3M",{"value":5303},[],{"borders":5305,"borderRadius":5306,"radiusEdge":5307,"entranceAnimation":5308,"animationScale":5309,"animationDuration":5310,"animationDelay":5311,"animationEasing":5312},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":5070,"type":82,"child":5314,"class":5321,"styles":5326,"extra":5328,"tagName":107,"meta":82,"title":4870,"noOfColumns":521,"classStr":522},[5315,5316,5317,5318,5319,5320],"sub-heading-G_uKj5geJg","image-slider-U_p23De5wW","sub-heading-CPSsjYF9pH","row-FvKdm-vCdY","sub-heading-DSf2kux6uj","sub-heading-9_c7U6TEGM",{"borders":5322,"borderRadius":5323,"radiusEdge":5324,"nestedColumn":5325},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":5327},{"value":66,"unit":67},{"visibility":5329,"bgImage":5331,"columnLayout":5333,"justifyContentColumnLayout":5334,"alignContentColumnLayout":5335,"forceColumnLayoutForMobile":5336,"customClass":5337,"elementVersion":5339},{"value":5330},{"hideDesktop":33,"hideMobile":33},{"value":5332},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":5338},[],{"value":106},{"extra":5341,"id":5320,"tagName":532,"class":5349,"meta":542},{"visibility":5342,"text":5344,"nodeId":5346,"customClass":5347},{"value":5343},{"hideMobile":37,"hideDesktop":37},{"value":5345},"\u003Ch2>1 050 $ \u002F mois\u003C\u002Fh2>","csub-heading-9_c7U6TEGM",{"value":5348},[],{"borders":5350,"borderRadius":5351,"radiusEdge":5352,"entranceAnimation":5353,"animationScale":5354,"animationDuration":5355,"animationDelay":5356,"animationEasing":5357},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5359,"id":5319,"tagName":532,"class":5366,"meta":542},{"visibility":5360,"text":5362,"nodeId":5363,"customClass":5364},{"value":5361},{"hideMobile":37,"hideDesktop":37},{"value":5137},"csub-heading-DSf2kux6uj",{"value":5365},[],{"borders":5367,"borderRadius":5368,"radiusEdge":5369,"entranceAnimation":5370,"animationScale":5371,"animationDuration":5372,"animationDelay":5373,"animationEasing":5374},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":5318,"type":52,"child":5376,"class":5378,"styles":5383,"extra":5385,"tagName":78,"meta":52,"title":489,"classStr":80},[5377],"col-G974YejYr8",{"alignRow":5379,"borders":5380,"borderRadius":5381,"radiusEdge":5382},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":5384},{"value":66,"unit":67},{"visibility":5386,"bgImage":5388,"rowWidth":5390,"customClass":5391},{"value":5387},{"hideDesktop":33,"hideMobile":33},{"value":5389},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":5392},[],{"id":5377,"type":82,"child":5394,"class":5398,"styles":5403,"extra":5405,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[5395,5396,5397],"paragraph-13eT01scuR","paragraph-lh3Hu7vp5F","paragraph-dKojknH68T",{"borders":5399,"borderRadius":5400,"radiusEdge":5401,"nestedColumn":5402},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":5404},{"value":66,"unit":67},{"visibility":5406,"bgImage":5408,"columnLayout":5410,"justifyContentColumnLayout":5411,"alignContentColumnLayout":5412,"forceColumnLayoutForMobile":5413,"customClass":5414,"elementVersion":5416},{"value":5407},{"hideDesktop":33,"hideMobile":33},{"value":5409},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":5415},[],{"value":106},{"extra":5418,"id":5397,"tagName":344,"class":5425,"meta":356},{"visibility":5419,"text":5421,"nodeId":5422,"customClass":5423},{"value":5420},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-dKojknH68T",{"value":5424},[],{"borders":5426,"borderRadius":5427,"radiusEdge":5428,"entranceAnimation":5429,"animationScale":5430,"animationDuration":5431,"animationDelay":5432,"animationEasing":5433},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5435,"id":5396,"tagName":344,"class":5442,"meta":356},{"visibility":5436,"text":5438,"nodeId":5439,"customClass":5440},{"value":5437},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-lh3Hu7vp5F",{"value":5441},[],{"borders":5443,"borderRadius":5444,"radiusEdge":5445,"entranceAnimation":5446,"animationScale":5447,"animationDuration":5448,"animationDelay":5449,"animationEasing":5450},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5452,"id":5395,"tagName":344,"class":5459,"meta":356},{"visibility":5453,"text":5455,"nodeId":5456,"customClass":5457},{"value":5454},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-13eT01scuR",{"value":5458},[],{"borders":5460,"borderRadius":5461,"radiusEdge":5462,"entranceAnimation":5463,"animationScale":5464,"animationDuration":5465,"animationDelay":5466,"animationEasing":5467},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5469,"id":5317,"tagName":532,"class":5477,"meta":542},{"visibility":5470,"text":5472,"nodeId":5474,"customClass":5475},{"value":5471},{"hideMobile":37,"hideDesktop":37},{"value":5473},"\u003Ch2>\u003Cstrong>Secteur Centre-Ville\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> 1er Septembre !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Ch2>Locker au sous-sol\u003C\u002Fh2>\u003Ch2>Près de tous les services\u003C\u002Fh2>","csub-heading-CPSsjYF9pH",{"value":5476},[],{"borders":5478,"borderRadius":5479,"radiusEdge":5480,"entranceAnimation":5481,"animationScale":5482,"animationDuration":5483,"animationDelay":5484,"animationEasing":5485},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5487,"class":5515,"styles":5516,"customCss":5518,"id":5316,"version":106,"type":712,"child":5519,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":5488,"sliderList":5489,"sliderSize":5503,"sliderPagination":5505,"sliderArrow":5507,"sliderAnimation":5509,"visibility":5511,"customClass":5513},"cimage-slider-U_p23De5wW",{"value":5490},[5491,5493,5495,5497,5499,5501],{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":5492,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6aeb4176d37275a709e.png",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":5494,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6aeb4176d37275a709a.png",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":5496,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6aeb7fe5a8e31f5c776.png",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":5498,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6ae609da4cf581c2eda.png",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":5500,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6ae8219a56ed33a0796.png",{"id":109,"ctaTarget":680,"cta":37,"backgroundImage":5502,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6ae3520888034fc86fc.png",{"value":5504},{"height":691},{"value":5506},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":5508},{"enable":40,"color":695,"animationEffect":63},{"value":5510},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":5512},{"hideDesktop":33,"hideMobile":33},{"value":5514},[],{},{"borderWidth":5517},{"value":268,"unit":67},[],[],{"extra":5521,"id":5315,"tagName":532,"class":5529,"meta":542},{"visibility":5522,"text":5524,"nodeId":5526,"customClass":5527},{"value":5523},{"hideMobile":37,"hideDesktop":37},{"value":5525},"\u003Ch2>\u003Cstrong>4 ½ Bd St-Joseph à 1 050$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-G_uKj5geJg",{"value":5528},[],{"borders":5530,"borderRadius":5531,"radiusEdge":5532,"entranceAnimation":5533,"animationScale":5534,"animationDuration":5535,"animationDelay":5536,"animationEasing":5537},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":5069,"type":82,"child":5539,"class":5546,"styles":5551,"extra":5553,"tagName":107,"meta":82,"title":4870,"noOfColumns":521,"classStr":522},[5540,5541,5542,5543,5544,5545],"sub-heading-VZfKufRwAo","image-slider-AYfgPodJLS","sub-heading-bxWsuz23xa","row-CpfFhBNjeH","sub-heading-K9WQSYfv-z","sub-heading-dXhd_Pt3Ef",{"borders":5547,"borderRadius":5548,"radiusEdge":5549,"nestedColumn":5550},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":5552},{"value":66,"unit":67},{"visibility":5554,"bgImage":5556,"columnLayout":5558,"justifyContentColumnLayout":5559,"alignContentColumnLayout":5560,"forceColumnLayoutForMobile":5561,"customClass":5562,"elementVersion":5564},{"value":5555},{"hideDesktop":33,"hideMobile":33},{"value":5557},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":5563},[],{"value":106},{"extra":5566,"id":5545,"tagName":532,"class":5574,"meta":542},{"visibility":5567,"text":5569,"nodeId":5571,"customClass":5572},{"value":5568},{"hideMobile":37,"hideDesktop":37},{"value":5570},"\u003Ch2>995 $ \u002F mois\u003C\u002Fh2>","csub-heading-dXhd_Pt3Ef",{"value":5573},[],{"borders":5575,"borderRadius":5576,"radiusEdge":5577,"entranceAnimation":5578,"animationScale":5579,"animationDuration":5580,"animationDelay":5581,"animationEasing":5582},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5584,"id":5544,"tagName":532,"class":5591,"meta":542},{"visibility":5585,"text":5587,"nodeId":5588,"customClass":5589},{"value":5586},{"hideMobile":37,"hideDesktop":37},{"value":1904},"csub-heading-K9WQSYfv-z",{"value":5590},[],{"borders":5592,"borderRadius":5593,"radiusEdge":5594,"entranceAnimation":5595,"animationScale":5596,"animationDuration":5597,"animationDelay":5598,"animationEasing":5599},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":5543,"type":52,"child":5601,"class":5603,"styles":5608,"extra":5610,"tagName":78,"meta":52,"title":489,"classStr":80},[5602],"col-0XrNF11aND",{"alignRow":5604,"borders":5605,"borderRadius":5606,"radiusEdge":5607},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":5609},{"value":66,"unit":67},{"visibility":5611,"bgImage":5613,"rowWidth":5615,"customClass":5616},{"value":5612},{"hideDesktop":33,"hideMobile":33},{"value":5614},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":5617},[],{"id":5602,"type":82,"child":5619,"class":5623,"styles":5628,"extra":5630,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[5620,5621,5622],"paragraph-0ARgTVBi7B","paragraph-3gxdR4PXcj","paragraph-gxTc5y4fR8",{"borders":5624,"borderRadius":5625,"radiusEdge":5626,"nestedColumn":5627},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":5629},{"value":66,"unit":67},{"visibility":5631,"bgImage":5633,"columnLayout":5635,"justifyContentColumnLayout":5636,"alignContentColumnLayout":5637,"forceColumnLayoutForMobile":5638,"customClass":5639,"elementVersion":5641},{"value":5632},{"hideDesktop":33,"hideMobile":33},{"value":5634},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":5640},[],{"value":106},{"extra":5643,"id":5622,"tagName":344,"class":5650,"meta":356},{"visibility":5644,"text":5646,"nodeId":5647,"customClass":5648},{"value":5645},{"hideMobile":37,"hideDesktop":37},{"value":1737},"cparagraph-gxTc5y4fR8",{"value":5649},[],{"borders":5651,"borderRadius":5652,"radiusEdge":5653,"entranceAnimation":5654,"animationScale":5655,"animationDuration":5656,"animationDelay":5657,"animationEasing":5658},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5660,"id":5621,"tagName":344,"class":5667,"meta":356},{"visibility":5661,"text":5663,"nodeId":5664,"customClass":5665},{"value":5662},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-3gxdR4PXcj",{"value":5666},[],{"borders":5668,"borderRadius":5669,"radiusEdge":5670,"entranceAnimation":5671,"animationScale":5672,"animationDuration":5673,"animationDelay":5674,"animationEasing":5675},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5677,"id":5620,"tagName":344,"class":5684,"meta":356},{"visibility":5678,"text":5680,"nodeId":5681,"customClass":5682},{"value":5679},{"hideMobile":37,"hideDesktop":37},{"value":1772},"cparagraph-0ARgTVBi7B",{"value":5683},[],{"borders":5685,"borderRadius":5686,"radiusEdge":5687,"entranceAnimation":5688,"animationScale":5689,"animationDuration":5690,"animationDelay":5691,"animationEasing":5692},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5694,"id":5542,"tagName":532,"class":5702,"meta":542},{"visibility":5695,"text":5697,"nodeId":5699,"customClass":5700},{"value":5696},{"hideMobile":37,"hideDesktop":37},{"value":5698},"\u003Ch2>\u003Cstrong>Secteur Richmond\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Richmond)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> 1er Septembre !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Ch2>\u003C\u002Fh2>\u003Ch2>\u003C\u002Fh2>","csub-heading-bxWsuz23xa",{"value":5701},[],{"borders":5703,"borderRadius":5704,"radiusEdge":5705,"entranceAnimation":5706,"animationScale":5707,"animationDuration":5708,"animationDelay":5709,"animationEasing":5710},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5712,"class":5738,"styles":5739,"customCss":5741,"id":5541,"version":106,"type":712,"child":5742,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":5713,"sliderList":5714,"sliderSize":5726,"sliderPagination":5728,"sliderArrow":5730,"sliderAnimation":5732,"visibility":5734,"customClass":5736},"cimage-slider-AYfgPodJLS",{"value":5715},[5716,5718,5720,5722,5724],{"id":109,"ctaTarget":680,"cta":37,"backgroundImage":5717,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd6c7866c8fca2c8e75326.jpeg",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":5719,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd6c7845ec946582f7f28c.jpeg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":5721,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd6c7802c31a6aad48b6e2.jpeg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":5723,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd6c78e94f5f553464bc0a.jpeg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":5725,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd6c7866c8fcf594e75325.jpeg",{"value":5727},{"height":691},{"value":5729},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":5731},{"enable":40,"color":695,"animationEffect":63},{"value":5733},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":5735},{"hideDesktop":33,"hideMobile":33},{"value":5737},[],{},{"borderWidth":5740},{"value":268,"unit":67},[],[],{"extra":5744,"id":5540,"tagName":532,"class":5752,"meta":542},{"visibility":5745,"text":5747,"nodeId":5749,"customClass":5750},{"value":5746},{"hideMobile":37,"hideDesktop":37},{"value":5748},"\u003Ch2>\u003Cstrong>4 ½ rue Laurier à 995$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-VZfKufRwAo",{"value":5751},[],{"borders":5753,"borderRadius":5754,"radiusEdge":5755,"entranceAnimation":5756,"animationScale":5757,"animationDuration":5758,"animationDelay":5759,"animationEasing":5760},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":1586,"type":52,"child":5762,"class":5764,"styles":5769,"extra":5771,"tagName":78,"meta":52,"title":79,"classStr":80},[5763],"col-9QARp-V-6m",{"alignRow":5765,"borders":5766,"borderRadius":5767,"radiusEdge":5768},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":5770},{"value":66,"unit":67},{"visibility":5772,"bgImage":5774,"rowWidth":5776,"customClass":5777},{"value":5773},{"hideDesktop":33,"hideMobile":33},{"value":5775},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":5778},[],{"id":5763,"type":82,"child":5780,"class":5783,"styles":5788,"extra":5790,"tagName":107,"meta":82,"title":108,"noOfColumns":109,"classStr":110},[5781,5782],"heading-d2QCkVwsf6","heading-M9pQSKd1GF",{"borders":5784,"borderRadius":5785,"radiusEdge":5786,"nestedColumn":5787},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":5789},{"value":66,"unit":67},{"visibility":5791,"bgImage":5793,"columnLayout":5795,"justifyContentColumnLayout":5796,"alignContentColumnLayout":5797,"forceColumnLayoutForMobile":5798,"customClass":5799,"elementVersion":5801},{"value":5792},{"hideDesktop":33,"hideMobile":33},{"value":5794},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":99},{"value":101},{"value":40},{"value":5800},[],{"value":106},{"extra":5803,"id":5782,"tagName":366,"class":5811,"meta":376},{"visibility":5804,"text":5806,"nodeId":5808,"customClass":5809},{"value":5805},{"hideMobile":37,"hideDesktop":37},{"value":5807},"\u003Ch1>4 \u003Cstrong>½\u003C\u002Fstrong> À LOUER\u003C\u002Fh1>","cheading-M9pQSKd1GF",{"value":5810},[],{"borders":5812,"borderRadius":5813,"radiusEdge":5814,"entranceAnimation":5815,"animationScale":5816,"animationDuration":5817,"animationDelay":5818,"animationEasing":5819},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":14,"type":19,"child":5821,"class":5826,"styles":5831,"extra":5833,"meta":19,"tagName":46,"title":5844,"_id":14,"classStr":293},[5822,5823,5824,5825],"row-1leuN7S1Na","row-VVzmQ44QDs","row-0PYG1zdcXx","row-qZ8zYe35q1",{"width":5827,"borders":5828,"borderRadius":5829,"radiusEdge":5830},{"value":24},{"value":59},{"value":61},{"value":63},{"borderWidth":5832},{"value":66,"unit":67},{"sticky":5834,"visibility":5835,"bgImage":5837,"allowRowMaxWidth":5839,"customClass":5840,"elementScreenshot":5842},{"value":30},{"value":5836},{"hideDesktop":33,"hideMobile":33},{"value":5838},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":33},{"value":5841},[],{"value":5843},[],"Section 5 1\u002F2",{"id":5825,"type":52,"child":5846,"class":5848,"styles":5850,"extra":5852,"tagName":78,"meta":52,"title":489,"classStr":57},[5847],"col-F_OpzDB8FP",{"alignRow":5849},{"value":57},{"borderWidth":5851},{"value":27},{"visibility":5853,"bgImage":5855,"rowWidth":5857,"customClass":5858},{"value":5854},{"hideDesktop":33,"hideMobile":33},{"value":5856},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":5859},[],{"id":5847,"type":82,"child":5861,"class":5868,"styles":5873,"extra":5875,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":522},[5862,5863,5864,5865,5866,5867],"sub-heading-xb4AOLmafR","image-slider-BhOrd0UxRp","sub-heading-7DX_u1N02U","row-bdnVOVfKxF","sub-heading-PUhg-fuexb","sub-heading-Mzh627hQoV",{"borders":5869,"borderRadius":5870,"radiusEdge":5871,"nestedColumn":5872},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":5874},{"value":66,"unit":67},{"visibility":5876,"bgImage":5878,"columnLayout":5880,"justifyContentColumnLayout":5881,"alignContentColumnLayout":5882,"forceColumnLayoutForMobile":5883,"customClass":5884,"elementVersion":5886},{"value":5877},{"hideDesktop":33,"hideMobile":33},{"value":5879},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":5885},[],{"value":106},{"extra":5888,"id":5867,"tagName":532,"class":5895,"meta":542},{"visibility":5889,"text":5891,"nodeId":5892,"customClass":5893},{"value":5890},{"hideMobile":37,"hideDesktop":37},{"value":1659},"csub-heading-Mzh627hQoV",{"value":5894},[],{"borders":5896,"borderRadius":5897,"radiusEdge":5898,"entranceAnimation":5899,"animationScale":5900,"animationDuration":5901,"animationDelay":5902,"animationEasing":5903},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5905,"id":5866,"tagName":532,"class":5912,"meta":542},{"visibility":5906,"text":5908,"nodeId":5909,"customClass":5910},{"value":5907},{"hideMobile":37,"hideDesktop":37},{"value":1354},"csub-heading-PUhg-fuexb",{"value":5911},[],{"borders":5913,"borderRadius":5914,"radiusEdge":5915,"entranceAnimation":5916,"animationScale":5917,"animationDuration":5918,"animationDelay":5919,"animationEasing":5920},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":5865,"type":52,"child":5922,"class":5924,"styles":5929,"extra":5931,"tagName":78,"meta":52,"title":489,"classStr":80},[5923],"col-pbU9fmJdMn",{"alignRow":5925,"borders":5926,"borderRadius":5927,"radiusEdge":5928},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":5930},{"value":66,"unit":67},{"visibility":5932,"bgImage":5934,"rowWidth":5936,"customClass":5937},{"value":5933},{"hideDesktop":33,"hideMobile":33},{"value":5935},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":5938},[],{"id":5923,"type":82,"child":5940,"class":5944,"styles":5949,"extra":5951,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[5941,5942,5943],"paragraph-LoDbFAVPUY","paragraph-HJWyyx2R_F","paragraph-FNPIa5e_Kn",{"borders":5945,"borderRadius":5946,"radiusEdge":5947,"nestedColumn":5948},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":5950},{"value":66,"unit":67},{"visibility":5952,"bgImage":5954,"columnLayout":5956,"justifyContentColumnLayout":5957,"alignContentColumnLayout":5958,"forceColumnLayoutForMobile":5959,"customClass":5960,"elementVersion":5962},{"value":5953},{"hideDesktop":33,"hideMobile":33},{"value":5955},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":5961},[],{"value":106},{"extra":5964,"id":5943,"tagName":344,"class":5972,"meta":356},{"visibility":5965,"text":5967,"nodeId":5969,"customClass":5970},{"value":5966},{"hideMobile":37,"hideDesktop":37},{"value":5968},"\u003Cp>5 \u003Cstrong>½\u003C\u002Fstrong>\u003C\u002Fp>","cparagraph-FNPIa5e_Kn",{"value":5971},[],{"borders":5973,"borderRadius":5974,"radiusEdge":5975,"entranceAnimation":5976,"animationScale":5977,"animationDuration":5978,"animationDelay":5979,"animationEasing":5980},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5982,"id":5942,"tagName":344,"class":5989,"meta":356},{"visibility":5983,"text":5985,"nodeId":5986,"customClass":5987},{"value":5984},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-HJWyyx2R_F",{"value":5988},[],{"borders":5990,"borderRadius":5991,"radiusEdge":5992,"entranceAnimation":5993,"animationScale":5994,"animationDuration":5995,"animationDelay":5996,"animationEasing":5997},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":5999,"id":5941,"tagName":344,"class":6007,"meta":356},{"visibility":6000,"text":6002,"nodeId":6004,"customClass":6005},{"value":6001},{"hideMobile":37,"hideDesktop":37},{"value":6003},"\u003Cp>3\u003C\u002Fp>","cparagraph-LoDbFAVPUY",{"value":6006},[],{"borders":6008,"borderRadius":6009,"radiusEdge":6010,"entranceAnimation":6011,"animationScale":6012,"animationDuration":6013,"animationDelay":6014,"animationEasing":6015},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6017,"id":5864,"tagName":532,"class":6025,"meta":542},{"visibility":6018,"text":6020,"nodeId":6022,"customClass":6023},{"value":6019},{"hideMobile":37,"hideDesktop":37},{"value":6021},"\u003Ch2>\u003Cstrong>Secteur Drummondville\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible \u003Cstrong>IMMÉDIATEMENT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>2 stationnements\u003C\u002Fh2>\u003Ch2>\u003Cstrong>Locker extérieur\u003C\u002Fstrong>\u003Cbr>\u003Cstrong>Cour clôturé\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003C\u002Fh2>\u003Ch2>\u003C\u002Fh2>","csub-heading-7DX_u1N02U",{"value":6024},[],{"borders":6026,"borderRadius":6027,"radiusEdge":6028,"entranceAnimation":6029,"animationScale":6030,"animationDuration":6031,"animationDelay":6032,"animationEasing":6033},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6035,"class":6063,"styles":6064,"customCss":6066,"id":5863,"version":106,"type":712,"child":6067,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":6036,"sliderList":6037,"sliderSize":6051,"sliderPagination":6053,"sliderArrow":6055,"sliderAnimation":6057,"visibility":6059,"customClass":6061},"cimage-slider-BhOrd0UxRp",{"value":6038},[6039,6041,6043,6045,6047,6049],{"ctaTarget":680,"cta":37,"backgroundImage":6040,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a0b4558f76fcc3e525294fe.jpeg",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":6042,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a0b4557f76fcc3e525294ae.jpeg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":6044,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a0b45574ec36477494186cf.jpeg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":6046,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a0b45574ec36477494186d1.jpeg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":6048,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a0b45578d08689eb2cc09b9.jpeg",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":6050,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a0b4557c56db4013f94f0ee.jpeg",{"value":6052},{"height":691},{"value":6054},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":6056},{"enable":40,"color":695,"animationEffect":63},{"value":6058},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":6060},{"hideDesktop":33,"hideMobile":33},{"value":6062},[],{},{"borderWidth":6065},{"value":268,"unit":67},[],[],{"extra":6069,"id":5862,"tagName":532,"class":6077,"meta":542},{"visibility":6070,"text":6072,"nodeId":6074,"customClass":6075},{"value":6071},{"hideMobile":37,"hideDesktop":37},{"value":6073},"\u003Ch2>\u003Cstrong>5 ½ rue Richard à 1 495$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-xb4AOLmafR",{"value":6076},[],{"borders":6078,"borderRadius":6079,"radiusEdge":6080,"entranceAnimation":6081,"animationScale":6082,"animationDuration":6083,"animationDelay":6084,"animationEasing":6085},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":5824,"type":52,"child":6087,"class":6091,"styles":6093,"extra":6095,"tagName":78,"meta":52,"title":489,"classStr":57},[6088,6089,6090],"col-yhvBaHjiB6","col-KUsELMqcoC","col-Iz5DINGe-M",{"alignRow":6092},{"value":57},{"borderWidth":6094},{"value":27},{"visibility":6096,"bgImage":6098,"rowWidth":6100,"customClass":6101},{"value":6097},{"hideDesktop":33,"hideMobile":33},{"value":6099},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":6102},[],{"id":6090,"type":82,"child":6104,"class":6111,"styles":6116,"extra":6118,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":522},[6105,6106,6107,6108,6109,6110],"sub-heading-yuPakkKcss","image-slider-bWla67nGnn","sub-heading-F1MzsywNHM","row-GORzDsjsua","sub-heading-rpngswhUnR","sub-heading-IGlxgZWL3y",{"borders":6112,"borderRadius":6113,"radiusEdge":6114,"nestedColumn":6115},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":6117},{"value":66,"unit":67},{"visibility":6119,"bgImage":6121,"columnLayout":6123,"justifyContentColumnLayout":6124,"alignContentColumnLayout":6125,"forceColumnLayoutForMobile":6126,"customClass":6127,"elementVersion":6129},{"value":6120},{"hideDesktop":33,"hideMobile":33},{"value":6122},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":6128},[],{"value":106},{"extra":6131,"id":6110,"tagName":532,"class":6138,"meta":542},{"visibility":6132,"text":6134,"nodeId":6135,"customClass":6136},{"value":6133},{"hideMobile":37,"hideDesktop":37},{"value":1659},"csub-heading-IGlxgZWL3y",{"value":6137},[],{"borders":6139,"borderRadius":6140,"radiusEdge":6141,"entranceAnimation":6142,"animationScale":6143,"animationDuration":6144,"animationDelay":6145,"animationEasing":6146},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6148,"id":6109,"tagName":532,"class":6155,"meta":542},{"visibility":6149,"text":6151,"nodeId":6152,"customClass":6153},{"value":6150},{"hideMobile":37,"hideDesktop":37},{"value":1354},"csub-heading-rpngswhUnR",{"value":6154},[],{"borders":6156,"borderRadius":6157,"radiusEdge":6158,"entranceAnimation":6159,"animationScale":6160,"animationDuration":6161,"animationDelay":6162,"animationEasing":6163},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":6108,"type":52,"child":6165,"class":6167,"styles":6172,"extra":6174,"tagName":78,"meta":52,"title":489,"classStr":80},[6166],"col-yA0QJbNOCo",{"alignRow":6168,"borders":6169,"borderRadius":6170,"radiusEdge":6171},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":6173},{"value":66,"unit":67},{"visibility":6175,"bgImage":6177,"rowWidth":6179,"customClass":6180},{"value":6176},{"hideDesktop":33,"hideMobile":33},{"value":6178},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":6181},[],{"id":6166,"type":82,"child":6183,"class":6187,"styles":6192,"extra":6194,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[6184,6185,6186],"paragraph-ZkySthXu3Y","paragraph-AcGLX8s-c6","paragraph-CL0dN3AMWc",{"borders":6188,"borderRadius":6189,"radiusEdge":6190,"nestedColumn":6191},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":6193},{"value":66,"unit":67},{"visibility":6195,"bgImage":6197,"columnLayout":6199,"justifyContentColumnLayout":6200,"alignContentColumnLayout":6201,"forceColumnLayoutForMobile":6202,"customClass":6203,"elementVersion":6205},{"value":6196},{"hideDesktop":33,"hideMobile":33},{"value":6198},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":6204},[],{"value":106},{"extra":6207,"id":6186,"tagName":344,"class":6214,"meta":356},{"visibility":6208,"text":6210,"nodeId":6211,"customClass":6212},{"value":6209},{"hideMobile":37,"hideDesktop":37},{"value":5968},"cparagraph-CL0dN3AMWc",{"value":6213},[],{"borders":6215,"borderRadius":6216,"radiusEdge":6217,"entranceAnimation":6218,"animationScale":6219,"animationDuration":6220,"animationDelay":6221,"animationEasing":6222},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6224,"id":6185,"tagName":344,"class":6231,"meta":356},{"visibility":6225,"text":6227,"nodeId":6228,"customClass":6229},{"value":6226},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-AcGLX8s-c6",{"value":6230},[],{"borders":6232,"borderRadius":6233,"radiusEdge":6234,"entranceAnimation":6235,"animationScale":6236,"animationDuration":6237,"animationDelay":6238,"animationEasing":6239},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6241,"id":6184,"tagName":344,"class":6248,"meta":356},{"visibility":6242,"text":6244,"nodeId":6245,"customClass":6246},{"value":6243},{"hideMobile":37,"hideDesktop":37},{"value":6003},"cparagraph-ZkySthXu3Y",{"value":6247},[],{"borders":6249,"borderRadius":6250,"radiusEdge":6251,"entranceAnimation":6252,"animationScale":6253,"animationDuration":6254,"animationDelay":6255,"animationEasing":6256},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6258,"id":6107,"tagName":532,"class":6266,"meta":542},{"visibility":6259,"text":6261,"nodeId":6263,"customClass":6264},{"value":6260},{"hideMobile":37,"hideDesktop":37},{"value":6262},"\u003Ch2>\u003Cstrong>Secteur St-Pierre\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible \u003Cstrong>IMMÉDIATEMENT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>2 stationnements\u003C\u002Fh2>\u003Ch2>\u003Cstrong>Locker extérieur\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>Cour clôturé\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003C\u002Fh2>\u003Ch2>\u003C\u002Fh2>","csub-heading-F1MzsywNHM",{"value":6265},[],{"borders":6267,"borderRadius":6268,"radiusEdge":6269,"entranceAnimation":6270,"animationScale":6271,"animationDuration":6272,"animationDelay":6273,"animationEasing":6274},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6276,"class":6309,"styles":6310,"customCss":6312,"id":6106,"version":106,"type":712,"child":6313,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":6277,"sliderList":6278,"sliderSize":6297,"sliderPagination":6299,"sliderArrow":6301,"sliderAnimation":6303,"visibility":6305,"customClass":6307},"cimage-slider-bWla67nGnn",{"value":6279},[6280,6282,6284,6286,6288,6290,6292,6294],{"ctaTarget":680,"cta":37,"backgroundImage":6281,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3bf6dddb92342c144ace.png",{"ctaTarget":680,"cta":37,"backgroundImage":6283,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3bf6717d5dd4e15d0eed.png",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":6285,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3bf6b0e5e2bb7f22bff3.png",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":6287,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3bf6a48992f689ecab78.png",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":6289,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3bf6b0e5e2bb7f22bff2.png",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":6291,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3bf6dddb92342c144acd.png",{"id":3274,"ctaTarget":680,"cta":37,"backgroundImage":6293,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3bf6dddb92342c144acf.png",{"id":6295,"ctaTarget":680,"cta":37,"backgroundImage":6296,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},8,"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3bf6bd268b0120913696.png",{"value":6298},{"height":691},{"value":6300},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":6302},{"enable":40,"color":695,"animationEffect":63},{"value":6304},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":6306},{"hideDesktop":33,"hideMobile":33},{"value":6308},[],{},{"borderWidth":6311},{"value":268,"unit":67},[],[],{"extra":6315,"id":6105,"tagName":532,"class":6323,"meta":542},{"visibility":6316,"text":6318,"nodeId":6320,"customClass":6321},{"value":6317},{"hideMobile":37,"hideDesktop":37},{"value":6319},"\u003Ch2>\u003Cstrong>5 ½ rue Geai-Bleu à 1 495$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-yuPakkKcss",{"value":6322},[],{"borders":6324,"borderRadius":6325,"radiusEdge":6326,"entranceAnimation":6327,"animationScale":6328,"animationDuration":6329,"animationDelay":6330,"animationEasing":6331},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":6089,"type":82,"child":6333,"class":6340,"styles":6345,"extra":6347,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":522},[6334,6335,6336,6337,6338,6339],"sub-heading-wjn1LLwHlQ","image-slider-Ju4qJm1B3v","sub-heading-QRw76TR2hx","row-2EwUhXMzzv","sub-heading-qnskExuEj_","sub-heading-z7YCLV8dCF",{"borders":6341,"borderRadius":6342,"radiusEdge":6343,"nestedColumn":6344},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":6346},{"value":66,"unit":67},{"visibility":6348,"bgImage":6350,"columnLayout":6352,"justifyContentColumnLayout":6353,"alignContentColumnLayout":6354,"forceColumnLayoutForMobile":6355,"customClass":6356,"elementVersion":6358},{"value":6349},{"hideDesktop":33,"hideMobile":33},{"value":6351},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":6357},[],{"value":106},{"extra":6360,"id":6339,"tagName":532,"class":6367,"meta":542},{"visibility":6361,"text":6363,"nodeId":6364,"customClass":6365},{"value":6362},{"hideMobile":37,"hideDesktop":37},{"value":1659},"csub-heading-z7YCLV8dCF",{"value":6366},[],{"borders":6368,"borderRadius":6369,"radiusEdge":6370,"entranceAnimation":6371,"animationScale":6372,"animationDuration":6373,"animationDelay":6374,"animationEasing":6375},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6377,"id":6338,"tagName":532,"class":6384,"meta":542},{"visibility":6378,"text":6380,"nodeId":6381,"customClass":6382},{"value":6379},{"hideMobile":37,"hideDesktop":37},{"value":3916},"csub-heading-qnskExuEj_",{"value":6383},[],{"borders":6385,"borderRadius":6386,"radiusEdge":6387,"entranceAnimation":6388,"animationScale":6389,"animationDuration":6390,"animationDelay":6391,"animationEasing":6392},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":6337,"type":52,"child":6394,"class":6396,"styles":6401,"extra":6403,"tagName":78,"meta":52,"title":489,"classStr":80},[6395],"col-cuOhmolhsd",{"alignRow":6397,"borders":6398,"borderRadius":6399,"radiusEdge":6400},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":6402},{"value":66,"unit":67},{"visibility":6404,"bgImage":6406,"rowWidth":6408,"customClass":6409},{"value":6405},{"hideDesktop":33,"hideMobile":33},{"value":6407},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":6410},[],{"id":6395,"type":82,"child":6412,"class":6416,"styles":6421,"extra":6423,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[6413,6414,6415],"paragraph-kXfOYNJlru","paragraph-FpaPMM5r_r","paragraph-BDSuLAw27o",{"borders":6417,"borderRadius":6418,"radiusEdge":6419,"nestedColumn":6420},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":6422},{"value":66,"unit":67},{"visibility":6424,"bgImage":6426,"columnLayout":6428,"justifyContentColumnLayout":6429,"alignContentColumnLayout":6430,"forceColumnLayoutForMobile":6431,"customClass":6432,"elementVersion":6434},{"value":6425},{"hideDesktop":33,"hideMobile":33},{"value":6427},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":6433},[],{"value":106},{"extra":6436,"id":6415,"tagName":344,"class":6443,"meta":356},{"visibility":6437,"text":6439,"nodeId":6440,"customClass":6441},{"value":6438},{"hideMobile":37,"hideDesktop":37},{"value":5968},"cparagraph-BDSuLAw27o",{"value":6442},[],{"borders":6444,"borderRadius":6445,"radiusEdge":6446,"entranceAnimation":6447,"animationScale":6448,"animationDuration":6449,"animationDelay":6450,"animationEasing":6451},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6453,"id":6414,"tagName":344,"class":6460,"meta":356},{"visibility":6454,"text":6456,"nodeId":6457,"customClass":6458},{"value":6455},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-FpaPMM5r_r",{"value":6459},[],{"borders":6461,"borderRadius":6462,"radiusEdge":6463,"entranceAnimation":6464,"animationScale":6465,"animationDuration":6466,"animationDelay":6467,"animationEasing":6468},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6470,"id":6413,"tagName":344,"class":6477,"meta":356},{"visibility":6471,"text":6473,"nodeId":6474,"customClass":6475},{"value":6472},{"hideMobile":37,"hideDesktop":37},{"value":6003},"cparagraph-kXfOYNJlru",{"value":6476},[],{"borders":6478,"borderRadius":6479,"radiusEdge":6480,"entranceAnimation":6481,"animationScale":6482,"animationDuration":6483,"animationDelay":6484,"animationEasing":6485},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6487,"id":6336,"tagName":532,"class":6495,"meta":542},{"visibility":6488,"text":6490,"nodeId":6492,"customClass":6493},{"value":6489},{"hideMobile":37,"hideDesktop":37},{"value":6491},"\u003Ch2>\u003Cstrong>Secteur De la commune\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible \u003Cstrong>IMMÉDIATEMENT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>2 stationnements\u003C\u002Fh2>\u003Ch2>\u003Cstrong>Locker extérieur\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Immeuble \u003Cstrong>QUADRUPLEX\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Secteur familial\u003C\u002Fh2>","csub-heading-QRw76TR2hx",{"value":6494},[],{"borders":6496,"borderRadius":6497,"radiusEdge":6498,"entranceAnimation":6499,"animationScale":6500,"animationDuration":6501,"animationDelay":6502,"animationEasing":6503},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6505,"class":6524,"styles":6525,"customCss":6527,"id":6335,"version":106,"type":712,"child":6528,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":6506,"sliderList":6507,"sliderSize":6512,"sliderPagination":6514,"sliderArrow":6516,"sliderAnimation":6518,"visibility":6520,"customClass":6522},"cimage-slider-Ju4qJm1B3v",{"value":6508},[6509,6511],{"ctaTarget":680,"cta":37,"backgroundImage":6510,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F698244007a20d044498ea357.jpg",{"ctaTarget":680,"cta":37,"backgroundImage":4048,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},{"value":6513},{"height":691},{"value":6515},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":6517},{"enable":40,"color":695,"animationEffect":63},{"value":6519},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":6521},{"hideDesktop":33,"hideMobile":33},{"value":6523},[],{},{"borderWidth":6526},{"value":268,"unit":67},[],[],{"extra":6530,"id":6334,"tagName":532,"class":6538,"meta":542},{"visibility":6531,"text":6533,"nodeId":6535,"customClass":6536},{"value":6532},{"hideMobile":37,"hideDesktop":37},{"value":6534},"\u003Ch2>\u003Cstrong>5 ½ rue De la commune à 1 495$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-wjn1LLwHlQ",{"value":6537},[],{"borders":6539,"borderRadius":6540,"radiusEdge":6541,"entranceAnimation":6542,"animationScale":6543,"animationDuration":6544,"animationDelay":6545,"animationEasing":6546},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":6088,"type":82,"child":6548,"class":6555,"styles":6560,"extra":6562,"tagName":107,"meta":82,"title":6574,"noOfColumns":521,"classStr":522},[6549,6550,6551,6552,6553,6554],"sub-heading-3Bpz0SXwob","image-slider-l_hlovsKRG","sub-heading-nzfWFLpdN4","row-6518d_odk6","sub-heading-GYm3rjqrcY","sub-heading-03SHZqsluh",{"borders":6556,"borderRadius":6557,"radiusEdge":6558,"nestedColumn":6559},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":6561},{"value":66,"unit":67},{"visibility":6563,"bgImage":6565,"columnLayout":6567,"justifyContentColumnLayout":6568,"alignContentColumnLayout":6569,"forceColumnLayoutForMobile":6570,"customClass":6571,"elementVersion":6573},{"value":6564},{"hideDesktop":33,"hideMobile":33},{"value":6566},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":6572},[],{"value":106},"50-c St-Henri",{"extra":6576,"id":6554,"tagName":532,"class":6583,"meta":542},{"visibility":6577,"text":6579,"nodeId":6580,"customClass":6581},{"value":6578},{"hideMobile":37,"hideDesktop":37},{"value":2891},"csub-heading-03SHZqsluh",{"value":6582},[],{"borders":6584,"borderRadius":6585,"radiusEdge":6586,"entranceAnimation":6587,"animationScale":6588,"animationDuration":6589,"animationDelay":6590,"animationEasing":6591},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6593,"id":6553,"tagName":532,"class":6601,"meta":542},{"visibility":6594,"text":6596,"nodeId":6598,"customClass":6599},{"value":6595},{"hideMobile":37,"hideDesktop":37},{"value":6597},"\u003Ch2>\u003Cbr>\u003C\u002Fh2>\u003Ch2>3e étage Juillet\u003C\u002Fh2>","csub-heading-GYm3rjqrcY",{"value":6600},[],{"borders":6602,"borderRadius":6603,"radiusEdge":6604,"entranceAnimation":6605,"animationScale":6606,"animationDuration":6607,"animationDelay":6608,"animationEasing":6609},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":6552,"type":52,"child":6611,"class":6613,"styles":6618,"extra":6620,"tagName":78,"meta":52,"title":489,"classStr":80},[6612],"col--Ce-PpyXTL",{"alignRow":6614,"borders":6615,"borderRadius":6616,"radiusEdge":6617},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":6619},{"value":66,"unit":67},{"visibility":6621,"bgImage":6623,"rowWidth":6625,"customClass":6626},{"value":6622},{"hideDesktop":33,"hideMobile":33},{"value":6624},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":6627},[],{"id":6612,"type":82,"child":6629,"class":6633,"styles":6638,"extra":6640,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[6630,6631,6632],"paragraph-XXCiBPbH30","paragraph-7paamW55Da","paragraph-m92HIn7r7P",{"borders":6634,"borderRadius":6635,"radiusEdge":6636,"nestedColumn":6637},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":6639},{"value":66,"unit":67},{"visibility":6641,"bgImage":6643,"columnLayout":6645,"justifyContentColumnLayout":6646,"alignContentColumnLayout":6647,"forceColumnLayoutForMobile":6648,"customClass":6649,"elementVersion":6651},{"value":6642},{"hideDesktop":33,"hideMobile":33},{"value":6644},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":6650},[],{"value":106},{"extra":6653,"id":6632,"tagName":344,"class":6660,"meta":356},{"visibility":6654,"text":6656,"nodeId":6657,"customClass":6658},{"value":6655},{"hideMobile":37,"hideDesktop":37},{"value":5968},"cparagraph-m92HIn7r7P",{"value":6659},[],{"borders":6661,"borderRadius":6662,"radiusEdge":6663,"entranceAnimation":6664,"animationScale":6665,"animationDuration":6666,"animationDelay":6667,"animationEasing":6668},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6670,"id":6631,"tagName":344,"class":6677,"meta":356},{"visibility":6671,"text":6673,"nodeId":6674,"customClass":6675},{"value":6672},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-7paamW55Da",{"value":6676},[],{"borders":6678,"borderRadius":6679,"radiusEdge":6680,"entranceAnimation":6681,"animationScale":6682,"animationDuration":6683,"animationDelay":6684,"animationEasing":6685},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6687,"id":6630,"tagName":344,"class":6694,"meta":356},{"visibility":6688,"text":6690,"nodeId":6691,"customClass":6692},{"value":6689},{"hideMobile":37,"hideDesktop":37},{"value":6003},"cparagraph-XXCiBPbH30",{"value":6693},[],{"borders":6695,"borderRadius":6696,"radiusEdge":6697,"entranceAnimation":6698,"animationScale":6699,"animationDuration":6700,"animationDelay":6701,"animationEasing":6702},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6704,"id":6551,"tagName":532,"class":6712,"meta":542},{"visibility":6705,"text":6707,"nodeId":6709,"customClass":6710},{"value":6706},{"hideMobile":37,"hideDesktop":37},{"value":6708},"\u003Ch2>\u003Cstrong>Secteur St-Léonard d'Aston\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible \u003Cstrong>IMMÉDIATEMENT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 stationnements\u003C\u002Fh2>\u003Ch2>\u003Cstrong>Remise\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Thermopompe et échangeur d'air\u003C\u002Fh2>","csub-heading-nzfWFLpdN4",{"value":6711},[],{"borders":6713,"borderRadius":6714,"radiusEdge":6715,"entranceAnimation":6716,"animationScale":6717,"animationDuration":6718,"animationDelay":6719,"animationEasing":6720},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6722,"class":6752,"styles":6753,"customCss":6755,"id":6550,"version":106,"type":712,"child":6756,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":6723,"sliderList":6724,"sliderSize":6740,"sliderPagination":6742,"sliderArrow":6744,"sliderAnimation":6746,"visibility":6748,"customClass":6750},"cimage-slider-l_hlovsKRG",{"value":6725},[6726,6728,6730,6732,6734,6736,6738],{"id":109,"ctaTarget":680,"cta":37,"backgroundImage":6727,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea2503e461bae0ade6c1.png",{"ctaTarget":680,"cta":37,"backgroundImage":6729,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea25de69375f6a5c5f96.png",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":6731,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea255e892103d47af021.png",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":6733,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea2c03e461bae0ade792.png",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":6735,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea2581877afd27bd4b1e.png",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":6737,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea2503e461bae0ade6bc.png",{"id":3274,"ctaTarget":680,"cta":37,"backgroundImage":6739,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea2544497f2c4a631b7a.png",{"value":6741},{"height":691},{"value":6743},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":6745},{"enable":40,"color":695,"animationEffect":63},{"value":6747},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":6749},{"hideDesktop":33,"hideMobile":33},{"value":6751},[],{},{"borderWidth":6754},{"value":268,"unit":67},[],[],{"extra":6758,"id":6549,"tagName":532,"class":6766,"meta":542},{"visibility":6759,"text":6761,"nodeId":6763,"customClass":6764},{"value":6760},{"hideMobile":37,"hideDesktop":37},{"value":6762},"\u003Ch2>\u003Cstrong>5 ½ rue de l'Exposition à 1 395$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-3Bpz0SXwob",{"value":6765},[],{"borders":6767,"borderRadius":6768,"radiusEdge":6769,"entranceAnimation":6770,"animationScale":6771,"animationDuration":6772,"animationDelay":6773,"animationEasing":6774},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":5823,"type":52,"child":6776,"class":6781,"styles":6786,"extra":6788,"tagName":78,"meta":52,"title":489,"classStr":80},[6777,6778,6779,6780],"col-Vo1fx4hJqF","col--6VywJqT4n","col-NsIdpn9Vp0","col-ogCVk9UCXh",{"alignRow":6782,"borders":6783,"borderRadius":6784,"radiusEdge":6785},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":6787},{"value":66,"unit":67},{"visibility":6789,"bgImage":6791,"rowWidth":6793,"customClass":6794},{"value":6790},{"hideDesktop":33,"hideMobile":33},{"value":6792},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":6795},[],{"id":6780,"type":82,"child":6797,"class":6804,"styles":6809,"extra":6811,"tagName":107,"meta":82,"title":6574,"noOfColumns":521,"classStr":522},[6798,6799,6800,6801,6802,6803],"sub-heading-h2yy_A6xP0","image-slider-Zo4wpRG7hJ","sub-heading-Bc30A5jEYL","row-ijx5noBjNS","sub-heading-5gG07Ko_oZ","sub-heading-xN6mEZJoxC",{"borders":6805,"borderRadius":6806,"radiusEdge":6807,"nestedColumn":6808},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":6810},{"value":66,"unit":67},{"visibility":6812,"bgImage":6814,"columnLayout":6816,"justifyContentColumnLayout":6817,"alignContentColumnLayout":6818,"forceColumnLayoutForMobile":6819,"customClass":6820,"elementVersion":6822},{"value":6813},{"hideDesktop":33,"hideMobile":33},{"value":6815},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":6821},[],{"value":106},{"extra":6824,"id":6803,"tagName":532,"class":6831,"meta":542},{"visibility":6825,"text":6827,"nodeId":6828,"customClass":6829},{"value":6826},{"hideMobile":37,"hideDesktop":37},{"value":2667},"csub-heading-xN6mEZJoxC",{"value":6830},[],{"borders":6832,"borderRadius":6833,"radiusEdge":6834,"entranceAnimation":6835,"animationScale":6836,"animationDuration":6837,"animationDelay":6838,"animationEasing":6839},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6841,"id":6802,"tagName":532,"class":6848,"meta":542},{"visibility":6842,"text":6844,"nodeId":6845,"customClass":6846},{"value":6843},{"hideMobile":37,"hideDesktop":37},{"value":6597},"csub-heading-5gG07Ko_oZ",{"value":6847},[],{"borders":6849,"borderRadius":6850,"radiusEdge":6851,"entranceAnimation":6852,"animationScale":6853,"animationDuration":6854,"animationDelay":6855,"animationEasing":6856},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":6801,"type":52,"child":6858,"class":6860,"styles":6865,"extra":6867,"tagName":78,"meta":52,"title":489,"classStr":80},[6859],"col-hV3q1OYuDJ",{"alignRow":6861,"borders":6862,"borderRadius":6863,"radiusEdge":6864},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":6866},{"value":66,"unit":67},{"visibility":6868,"bgImage":6870,"rowWidth":6872,"customClass":6873},{"value":6869},{"hideDesktop":33,"hideMobile":33},{"value":6871},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":6874},[],{"id":6859,"type":82,"child":6876,"class":6880,"styles":6885,"extra":6887,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[6877,6878,6879],"paragraph-RCfZuiUpQs","paragraph-3lpfzdInHP","paragraph-6S6vKy-B_2",{"borders":6881,"borderRadius":6882,"radiusEdge":6883,"nestedColumn":6884},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":6886},{"value":66,"unit":67},{"visibility":6888,"bgImage":6890,"columnLayout":6892,"justifyContentColumnLayout":6893,"alignContentColumnLayout":6894,"forceColumnLayoutForMobile":6895,"customClass":6896,"elementVersion":6898},{"value":6889},{"hideDesktop":33,"hideMobile":33},{"value":6891},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":6897},[],{"value":106},{"extra":6900,"id":6879,"tagName":344,"class":6907,"meta":356},{"visibility":6901,"text":6903,"nodeId":6904,"customClass":6905},{"value":6902},{"hideMobile":37,"hideDesktop":37},{"value":5968},"cparagraph-6S6vKy-B_2",{"value":6906},[],{"borders":6908,"borderRadius":6909,"radiusEdge":6910,"entranceAnimation":6911,"animationScale":6912,"animationDuration":6913,"animationDelay":6914,"animationEasing":6915},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6917,"id":6878,"tagName":344,"class":6924,"meta":356},{"visibility":6918,"text":6920,"nodeId":6921,"customClass":6922},{"value":6919},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-3lpfzdInHP",{"value":6923},[],{"borders":6925,"borderRadius":6926,"radiusEdge":6927,"entranceAnimation":6928,"animationScale":6929,"animationDuration":6930,"animationDelay":6931,"animationEasing":6932},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6934,"id":6877,"tagName":344,"class":6941,"meta":356},{"visibility":6935,"text":6937,"nodeId":6938,"customClass":6939},{"value":6936},{"hideMobile":37,"hideDesktop":37},{"value":6003},"cparagraph-RCfZuiUpQs",{"value":6940},[],{"borders":6942,"borderRadius":6943,"radiusEdge":6944,"entranceAnimation":6945,"animationScale":6946,"animationDuration":6947,"animationDelay":6948,"animationEasing":6949},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6951,"id":6800,"tagName":532,"class":6959,"meta":542},{"visibility":6952,"text":6954,"nodeId":6956,"customClass":6957},{"value":6953},{"hideMobile":37,"hideDesktop":37},{"value":6955},"\u003Ch2>\u003Cstrong>Secteur St-Pierre\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible \u003Cstrong>IMMÉDIATEMENT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 stationnements\u003C\u002Fh2>\u003Ch2>\u003Cstrong>Locker sur balcon\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Secteur familial\u003C\u002Fh2>","csub-heading-Bc30A5jEYL",{"value":6958},[],{"borders":6960,"borderRadius":6961,"radiusEdge":6962,"entranceAnimation":6963,"animationScale":6964,"animationDuration":6965,"animationDelay":6966,"animationEasing":6967},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":6969,"class":6996,"styles":6997,"customCss":6999,"id":6799,"version":106,"type":712,"child":7000,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":6970,"sliderList":6971,"sliderSize":6984,"sliderPagination":6986,"sliderArrow":6988,"sliderAnimation":6990,"visibility":6992,"customClass":6994},"cimage-slider-Zo4wpRG7hJ",{"value":6972},[6973,6975,6977,6979,6981,6983],{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":6974,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69c29df175ee0523955e9e78.jpeg",{"ctaTarget":680,"cta":37,"backgroundImage":6976,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69c29dcb75ee054ae85e9751.jpeg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":6978,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69c29df181b3746dcda3c17c.jpeg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":6980,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69c29df1ad1400575a3f78ca.jpeg",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":6982,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69c29df175ee05acb35e9e79.jpeg",{"ctaTarget":680,"cta":37,"backgroundImage":4048,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},{"value":6985},{"height":691},{"value":6987},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":6989},{"enable":40,"color":695,"animationEffect":63},{"value":6991},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":6993},{"hideDesktop":33,"hideMobile":33},{"value":6995},[],{},{"borderWidth":6998},{"value":268,"unit":67},[],[],{"extra":7002,"id":6798,"tagName":532,"class":7010,"meta":542},{"visibility":7003,"text":7005,"nodeId":7007,"customClass":7008},{"value":7004},{"hideMobile":37,"hideDesktop":37},{"value":7006},"\u003Ch2>\u003Cstrong>5 ½ rue St-Henri à 1 295$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-h2yy_A6xP0",{"value":7009},[],{"borders":7011,"borderRadius":7012,"radiusEdge":7013,"entranceAnimation":7014,"animationScale":7015,"animationDuration":7016,"animationDelay":7017,"animationEasing":7018},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":6779,"type":82,"child":7020,"class":7028,"styles":7033,"extra":7035,"tagName":107,"meta":82,"title":7047,"noOfColumns":521,"classStr":522},[7021,7022,7023,7024,7025,7026,7027],"sub-heading-Jz14zAZhJ6","image-slider-qwzj19cKIy","sub-heading-9RnPTV8r9K","row-8KmiNapolM","sub-heading-Z8ByyIP4nb","sub-heading-Vrwfd6fYMC","button-XutTlle0iL",{"borders":7029,"borderRadius":7030,"radiusEdge":7031,"nestedColumn":7032},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":7034},{"value":66,"unit":67},{"visibility":7036,"bgImage":7038,"columnLayout":7040,"justifyContentColumnLayout":7041,"alignContentColumnLayout":7042,"forceColumnLayoutForMobile":7043,"customClass":7044,"elementVersion":7046},{"value":7037},{"hideDesktop":40,"hideMobile":40},{"value":7039},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":7045},[],{"value":106},"2050-304 BOUL MERCURE",{"extra":7049,"id":7027,"tagName":944,"meta":945,"class":7076},{"visibility":7050,"text":7052,"subText":7053,"productId":7054,"action":7056,"visitWebsite":7057,"downloadFile":7058,"hideElements":7059,"showElements":7060,"scrollToElement":7061,"stepPath":7062,"saleAction":7063,"phoneNumber":7064,"emailAddress":7065,"popupId":7066,"storeProductId":7067,"storeProductPriceId":7069,"storeCollectionId":7071,"customClass":7073,"nodeId":7075},{"value":7051},{"hideMobile":37,"hideDesktop":37},{"value":1290},{},{"value":7055},{},{"value":1295},{},{},{},{},{},{},{},{},{},{"value":934},{"value":7068},{},{"value":7070},{},{"value":7072},{},{"value":7074},[],"cbutton-XutTlle0iL",{"buttonBgStyle":7077,"buttonVp":7078,"buttonHp":7079,"hoverAnimation":7080,"borders":7081,"borderRadius":7082,"radiusEdge":7083,"entranceAnimation":7084,"animationScale":7085,"animationDuration":7086,"animationDelay":7087,"animationEasing":7088},{"value":948},{"value":1318},{"value":1320},{"value":350},{"value":59},{"value":1324},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7090,"id":7026,"tagName":532,"class":7098,"meta":542},{"visibility":7091,"text":7093,"nodeId":7095,"customClass":7096},{"value":7092},{"hideMobile":37,"hideDesktop":37},{"value":7094},"\u003Ch2>1 425 $ \u002F mois\u003C\u002Fh2>","csub-heading-Vrwfd6fYMC",{"value":7097},[],{"borders":7099,"borderRadius":7100,"radiusEdge":7101,"entranceAnimation":7102,"animationScale":7103,"animationDuration":7104,"animationDelay":7105,"animationEasing":7106},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7108,"id":7025,"tagName":532,"class":7115,"meta":542},{"visibility":7109,"text":7111,"nodeId":7112,"customClass":7113},{"value":7110},{"hideMobile":37,"hideDesktop":37},{"value":3916},"csub-heading-Z8ByyIP4nb",{"value":7114},[],{"borders":7116,"borderRadius":7117,"radiusEdge":7118,"entranceAnimation":7119,"animationScale":7120,"animationDuration":7121,"animationDelay":7122,"animationEasing":7123},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":7024,"type":52,"child":7125,"class":7127,"styles":7132,"extra":7134,"tagName":78,"meta":52,"title":489,"classStr":80},[7126],"col-gJzUPPOwIL",{"alignRow":7128,"borders":7129,"borderRadius":7130,"radiusEdge":7131},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":7133},{"value":66,"unit":67},{"visibility":7135,"bgImage":7137,"rowWidth":7139,"customClass":7140},{"value":7136},{"hideDesktop":33,"hideMobile":33},{"value":7138},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":7141},[],{"id":7126,"type":82,"child":7143,"class":7147,"styles":7152,"extra":7154,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[7144,7145,7146],"paragraph-Az60LAogzf","paragraph-6EWwevM4Di","paragraph-mAIG3jHICs",{"borders":7148,"borderRadius":7149,"radiusEdge":7150,"nestedColumn":7151},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":7153},{"value":66,"unit":67},{"visibility":7155,"bgImage":7157,"columnLayout":7159,"justifyContentColumnLayout":7160,"alignContentColumnLayout":7161,"forceColumnLayoutForMobile":7162,"customClass":7163,"elementVersion":7165},{"value":7156},{"hideDesktop":33,"hideMobile":33},{"value":7158},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":7164},[],{"value":106},{"extra":7167,"id":7146,"tagName":344,"class":7174,"meta":356},{"visibility":7168,"text":7170,"nodeId":7171,"customClass":7172},{"value":7169},{"hideMobile":37,"hideDesktop":37},{"value":5968},"cparagraph-mAIG3jHICs",{"value":7173},[],{"borders":7175,"borderRadius":7176,"radiusEdge":7177,"entranceAnimation":7178,"animationScale":7179,"animationDuration":7180,"animationDelay":7181,"animationEasing":7182},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7184,"id":7145,"tagName":344,"class":7191,"meta":356},{"visibility":7185,"text":7187,"nodeId":7188,"customClass":7189},{"value":7186},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-6EWwevM4Di",{"value":7190},[],{"borders":7192,"borderRadius":7193,"radiusEdge":7194,"entranceAnimation":7195,"animationScale":7196,"animationDuration":7197,"animationDelay":7198,"animationEasing":7199},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7201,"id":7144,"tagName":344,"class":7208,"meta":356},{"visibility":7202,"text":7204,"nodeId":7205,"customClass":7206},{"value":7203},{"hideMobile":37,"hideDesktop":37},{"value":6003},"cparagraph-Az60LAogzf",{"value":7207},[],{"borders":7209,"borderRadius":7210,"radiusEdge":7211,"entranceAnimation":7212,"animationScale":7213,"animationDuration":7214,"animationDelay":7215,"animationEasing":7216},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7218,"id":7023,"tagName":532,"class":7226,"meta":542},{"visibility":7219,"text":7221,"nodeId":7223,"customClass":7224},{"value":7220},{"hideMobile":37,"hideDesktop":37},{"value":7222},"\u003Ch2>\u003Cstrong>Secteur Boul. Mercure\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> 1er mai !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>2 Stationnement\u003C\u002Fh2>\u003Ch2>\u003Cstrong>INTERNET COMPRIS\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Près de tous les services\u003C\u002Fh2>\u003Ch2>Thermopompe et échangeur d'air\u003C\u002Fh2>","csub-heading-9RnPTV8r9K",{"value":7225},[],{"borders":7227,"borderRadius":7228,"radiusEdge":7229,"entranceAnimation":7230,"animationScale":7231,"animationDuration":7232,"animationDelay":7233,"animationEasing":7234},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7236,"class":7255,"styles":7256,"customCss":7258,"id":7022,"version":106,"type":712,"child":7259,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":7237,"sliderList":7238,"sliderSize":7243,"sliderPagination":7245,"sliderArrow":7247,"sliderAnimation":7249,"visibility":7251,"customClass":7253},"cimage-slider-qwzj19cKIy",{"value":7239},[7240,7242],{"ctaTarget":680,"cta":37,"backgroundImage":7241,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F696a8f287b4d1ee1704b4946.webp",{"ctaTarget":680,"cta":37,"backgroundImage":4048,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":109},{"value":7244},{"height":691},{"value":7246},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":7248},{"enable":40,"color":695,"animationEffect":63},{"value":7250},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":7252},{"hideDesktop":33,"hideMobile":33},{"value":7254},[],{},{"borderWidth":7257},{"value":268,"unit":67},[],[],{"extra":7261,"id":7021,"tagName":532,"class":7269,"meta":542},{"visibility":7262,"text":7264,"nodeId":7266,"customClass":7267},{"value":7263},{"hideMobile":37,"hideDesktop":37},{"value":7265},"\u003Ch2>\u003Cstrong>5 ½ Boul Mercure à 1 425$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-Jz14zAZhJ6",{"value":7268},[],{"borders":7270,"borderRadius":7271,"radiusEdge":7272,"entranceAnimation":7273,"animationScale":7274,"animationDuration":7275,"animationDelay":7276,"animationEasing":7277},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":6778,"type":82,"child":7279,"class":7286,"styles":7291,"extra":7293,"tagName":107,"meta":82,"title":6574,"noOfColumns":521,"classStr":522},[7280,7281,7282,7283,7284,7285],"sub-heading-vq9lCn23dz","image-slider-FGU3qk0tCw","sub-heading-UVhyw7sDTO","row-iBCj_mgrrx","sub-heading-4aGofuOfXq","sub-heading-QRYO4W1KVE",{"borders":7287,"borderRadius":7288,"radiusEdge":7289,"nestedColumn":7290},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":7292},{"value":66,"unit":67},{"visibility":7294,"bgImage":7296,"columnLayout":7298,"justifyContentColumnLayout":7299,"alignContentColumnLayout":7300,"forceColumnLayoutForMobile":7301,"customClass":7302,"elementVersion":7304},{"value":7295},{"hideDesktop":33,"hideMobile":33},{"value":7297},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":7303},[],{"value":106},{"extra":7306,"id":7285,"tagName":532,"class":7314,"meta":542},{"visibility":7307,"text":7309,"nodeId":7311,"customClass":7312},{"value":7308},{"hideMobile":37,"hideDesktop":37},{"value":7310},"\u003Ch2>1 200 $ \u002F mois\u003C\u002Fh2>","csub-heading-QRYO4W1KVE",{"value":7313},[],{"borders":7315,"borderRadius":7316,"radiusEdge":7317,"entranceAnimation":7318,"animationScale":7319,"animationDuration":7320,"animationDelay":7321,"animationEasing":7322},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7324,"id":7284,"tagName":532,"class":7331,"meta":542},{"visibility":7325,"text":7327,"nodeId":7328,"customClass":7329},{"value":7326},{"hideMobile":37,"hideDesktop":37},{"value":3916},"csub-heading-4aGofuOfXq",{"value":7330},[],{"borders":7332,"borderRadius":7333,"radiusEdge":7334,"entranceAnimation":7335,"animationScale":7336,"animationDuration":7337,"animationDelay":7338,"animationEasing":7339},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":7283,"type":52,"child":7341,"class":7343,"styles":7348,"extra":7350,"tagName":78,"meta":52,"title":489,"classStr":80},[7342],"col-rs0PGwlXj5",{"alignRow":7344,"borders":7345,"borderRadius":7346,"radiusEdge":7347},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":7349},{"value":66,"unit":67},{"visibility":7351,"bgImage":7353,"rowWidth":7355,"customClass":7356},{"value":7352},{"hideDesktop":33,"hideMobile":33},{"value":7354},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":7357},[],{"id":7342,"type":82,"child":7359,"class":7363,"styles":7368,"extra":7370,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[7360,7361,7362],"paragraph-pT45PeOVlN","paragraph-1Sp5gw4V4E","paragraph-M3uEMYOFVI",{"borders":7364,"borderRadius":7365,"radiusEdge":7366,"nestedColumn":7367},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":7369},{"value":66,"unit":67},{"visibility":7371,"bgImage":7373,"columnLayout":7375,"justifyContentColumnLayout":7376,"alignContentColumnLayout":7377,"forceColumnLayoutForMobile":7378,"customClass":7379,"elementVersion":7381},{"value":7372},{"hideDesktop":33,"hideMobile":33},{"value":7374},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":7380},[],{"value":106},{"extra":7383,"id":7362,"tagName":344,"class":7390,"meta":356},{"visibility":7384,"text":7386,"nodeId":7387,"customClass":7388},{"value":7385},{"hideMobile":37,"hideDesktop":37},{"value":5968},"cparagraph-M3uEMYOFVI",{"value":7389},[],{"borders":7391,"borderRadius":7392,"radiusEdge":7393,"entranceAnimation":7394,"animationScale":7395,"animationDuration":7396,"animationDelay":7397,"animationEasing":7398},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7400,"id":7361,"tagName":344,"class":7407,"meta":356},{"visibility":7401,"text":7403,"nodeId":7404,"customClass":7405},{"value":7402},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-1Sp5gw4V4E",{"value":7406},[],{"borders":7408,"borderRadius":7409,"radiusEdge":7410,"entranceAnimation":7411,"animationScale":7412,"animationDuration":7413,"animationDelay":7414,"animationEasing":7415},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7417,"id":7360,"tagName":344,"class":7424,"meta":356},{"visibility":7418,"text":7420,"nodeId":7421,"customClass":7422},{"value":7419},{"hideMobile":37,"hideDesktop":37},{"value":6003},"cparagraph-pT45PeOVlN",{"value":7423},[],{"borders":7425,"borderRadius":7426,"radiusEdge":7427,"entranceAnimation":7428,"animationScale":7429,"animationDuration":7430,"animationDelay":7431,"animationEasing":7432},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7434,"id":7282,"tagName":532,"class":7442,"meta":542},{"visibility":7435,"text":7437,"nodeId":7439,"customClass":7440},{"value":7436},{"hideMobile":37,"hideDesktop":37},{"value":7438},"\u003Ch2>\u003Cstrong>Secteur St-Joseph\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> MAINTENANT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Ch2>Près de tous les services\u003C\u002Fh2>\u003Ch1>Secteur Tranquille\u003C\u002Fh1>","csub-heading-UVhyw7sDTO",{"value":7441},[],{"borders":7443,"borderRadius":7444,"radiusEdge":7445,"entranceAnimation":7446,"animationScale":7447,"animationDuration":7448,"animationDelay":7449,"animationEasing":7450},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7452,"class":7482,"styles":7483,"customCss":7485,"id":7281,"version":106,"type":712,"child":7486,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":7453,"sliderList":7454,"sliderSize":7470,"sliderPagination":7472,"sliderArrow":7474,"sliderAnimation":7476,"visibility":7478,"customClass":7480},"cimage-slider-FGU3qk0tCw",{"value":7455},[7456,7458,7460,7462,7464,7466,7468],{"id":109,"ctaTarget":680,"cta":37,"backgroundImage":7457,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea38006588a29ac2afee14.png",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":7459,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea38009fe87a99945d53ad.png",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":7461,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3800a48992f689eb93ab.png",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":7463,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3800e2566498364c2c6c.png",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":7465,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3800dddb92342c132f74.png",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":7467,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3800821e8babd833b9ea.png",{"id":3274,"ctaTarget":680,"cta":37,"backgroundImage":7469,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69ea3800e2566498364c2c6b.png",{"value":7471},{"height":691},{"value":7473},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":7475},{"enable":40,"color":695,"animationEffect":63},{"value":7477},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":7479},{"hideDesktop":33,"hideMobile":33},{"value":7481},[],{},{"borderWidth":7484},{"value":268,"unit":67},[],[],{"extra":7488,"id":7280,"tagName":532,"class":7496,"meta":542},{"visibility":7489,"text":7491,"nodeId":7493,"customClass":7494},{"value":7490},{"hideMobile":37,"hideDesktop":37},{"value":7492},"\u003Ch2>\u003Cstrong>5 ½ rue St-Alphonse à 1 200$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-vq9lCn23dz",{"value":7495},[],{"borders":7497,"borderRadius":7498,"radiusEdge":7499,"entranceAnimation":7500,"animationScale":7501,"animationDuration":7502,"animationDelay":7503,"animationEasing":7504},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":6777,"type":82,"child":7506,"class":7513,"styles":7518,"extra":7520,"tagName":107,"meta":82,"title":6574,"noOfColumns":521,"classStr":522},[7507,7508,7509,7510,7511,7512],"sub-heading-UxnsjA280F","image-slider-8gudlnPSki","sub-heading-TNa9hlT-hb","row-RIUdOvYKzr","sub-heading-QFht7y46h2","sub-heading-AQwPY9ibX5",{"borders":7514,"borderRadius":7515,"radiusEdge":7516,"nestedColumn":7517},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":7519},{"value":66,"unit":67},{"visibility":7521,"bgImage":7523,"columnLayout":7525,"justifyContentColumnLayout":7526,"alignContentColumnLayout":7527,"forceColumnLayoutForMobile":7528,"customClass":7529,"elementVersion":7531},{"value":7522},{"hideDesktop":33,"hideMobile":33},{"value":7524},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":7530},[],{"value":106},{"extra":7533,"id":7512,"tagName":532,"class":7541,"meta":542},{"visibility":7534,"text":7536,"nodeId":7538,"customClass":7539},{"value":7535},{"hideMobile":37,"hideDesktop":37},{"value":7537},"\u003Ch2>1 095 $ \u002F mois\u003C\u002Fh2>","csub-heading-AQwPY9ibX5",{"value":7540},[],{"borders":7542,"borderRadius":7543,"radiusEdge":7544,"entranceAnimation":7545,"animationScale":7546,"animationDuration":7547,"animationDelay":7548,"animationEasing":7549},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7551,"id":7511,"tagName":532,"class":7559,"meta":542},{"visibility":7552,"text":7554,"nodeId":7556,"customClass":7557},{"value":7553},{"hideMobile":37,"hideDesktop":37},{"value":7555},"\u003Ch2>Demi Sous-sol\u003C\u002Fh2>","csub-heading-QFht7y46h2",{"value":7558},[],{"borders":7560,"borderRadius":7561,"radiusEdge":7562,"entranceAnimation":7563,"animationScale":7564,"animationDuration":7565,"animationDelay":7566,"animationEasing":7567},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":7510,"type":52,"child":7569,"class":7571,"styles":7576,"extra":7578,"tagName":78,"meta":52,"title":489,"classStr":80},[7570],"col-cw-hkPoo_O",{"alignRow":7572,"borders":7573,"borderRadius":7574,"radiusEdge":7575},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":7577},{"value":66,"unit":67},{"visibility":7579,"bgImage":7581,"rowWidth":7583,"customClass":7584},{"value":7580},{"hideDesktop":33,"hideMobile":33},{"value":7582},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":7585},[],{"id":7570,"type":82,"child":7587,"class":7591,"styles":7596,"extra":7598,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[7588,7589,7590],"paragraph-f-2T0u4S8H","paragraph-fPSjuUj-UJ","paragraph-DkXSEa6Iol",{"borders":7592,"borderRadius":7593,"radiusEdge":7594,"nestedColumn":7595},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":7597},{"value":66,"unit":67},{"visibility":7599,"bgImage":7601,"columnLayout":7603,"justifyContentColumnLayout":7604,"alignContentColumnLayout":7605,"forceColumnLayoutForMobile":7606,"customClass":7607,"elementVersion":7609},{"value":7600},{"hideDesktop":33,"hideMobile":33},{"value":7602},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":7608},[],{"value":106},{"extra":7611,"id":7590,"tagName":344,"class":7618,"meta":356},{"visibility":7612,"text":7614,"nodeId":7615,"customClass":7616},{"value":7613},{"hideMobile":37,"hideDesktop":37},{"value":5968},"cparagraph-DkXSEa6Iol",{"value":7617},[],{"borders":7619,"borderRadius":7620,"radiusEdge":7621,"entranceAnimation":7622,"animationScale":7623,"animationDuration":7624,"animationDelay":7625,"animationEasing":7626},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7628,"id":7589,"tagName":344,"class":7635,"meta":356},{"visibility":7629,"text":7631,"nodeId":7632,"customClass":7633},{"value":7630},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-fPSjuUj-UJ",{"value":7634},[],{"borders":7636,"borderRadius":7637,"radiusEdge":7638,"entranceAnimation":7639,"animationScale":7640,"animationDuration":7641,"animationDelay":7642,"animationEasing":7643},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7645,"id":7588,"tagName":344,"class":7652,"meta":356},{"visibility":7646,"text":7648,"nodeId":7649,"customClass":7650},{"value":7647},{"hideMobile":37,"hideDesktop":37},{"value":6003},"cparagraph-f-2T0u4S8H",{"value":7651},[],{"borders":7653,"borderRadius":7654,"radiusEdge":7655,"entranceAnimation":7656,"animationScale":7657,"animationDuration":7658,"animationDelay":7659,"animationEasing":7660},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7662,"id":7509,"tagName":532,"class":7670,"meta":542},{"visibility":7663,"text":7665,"nodeId":7667,"customClass":7668},{"value":7664},{"hideMobile":37,"hideDesktop":37},{"value":7666},"\u003Ch2>\u003Cstrong>Secteur Centre ville\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(Drummondville)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible \u003Cstrong>1er Août !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>Près de tous les services\u003C\u002Fh2>\u003Ch2>1 locker sur balcon\u003C\u002Fh2>\u003Ch2>1 stationnement\u003C\u002Fh2>","csub-heading-TNa9hlT-hb",{"value":7669},[],{"borders":7671,"borderRadius":7672,"radiusEdge":7673,"entranceAnimation":7674,"animationScale":7675,"animationDuration":7676,"animationDelay":7677,"animationEasing":7678},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7680,"class":7710,"styles":7711,"customCss":7713,"id":7508,"version":106,"type":712,"child":7714,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":7681,"sliderList":7682,"sliderSize":7698,"sliderPagination":7700,"sliderArrow":7702,"sliderAnimation":7704,"visibility":7706,"customClass":7708},"cimage-slider-8gudlnPSki",{"value":7683},[7684,7686,7688,7690,7692,7694,7696],{"id":109,"ctaTarget":680,"cta":37,"backgroundImage":7685,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68e7caf347f716a43a57f3.png",{"ctaTarget":680,"cta":37,"backgroundImage":7687,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37,"id":106},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68e7caf347f716a43a57f8.png",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":7689,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68e7ca8219a56ed3286211.png",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":7691,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68e7ca609da4cf580770eb.png",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":7693,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68e7ca3520888034e96da7.png",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":7695,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68e7ca18a264df53a06681.png",{"id":3274,"ctaTarget":680,"cta":37,"backgroundImage":7697,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68e7d218a264df53a0670d.png",{"value":7699},{"height":691},{"value":7701},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":7703},{"enable":40,"color":695,"animationEffect":63},{"value":7705},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":7707},{"hideDesktop":33,"hideMobile":33},{"value":7709},[],{},{"borderWidth":7712},{"value":268,"unit":67},[],[],{"extra":7716,"id":7507,"tagName":532,"class":7724,"meta":542},{"visibility":7717,"text":7719,"nodeId":7721,"customClass":7722},{"value":7718},{"hideMobile":37,"hideDesktop":37},{"value":7720},"\u003Ch2>\u003Cstrong>5 ½ rue Lindsay à 1 095$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-UxnsjA280F",{"value":7723},[],{"borders":7725,"borderRadius":7726,"radiusEdge":7727,"entranceAnimation":7728,"animationScale":7729,"animationDuration":7730,"animationDelay":7731,"animationEasing":7732},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":5822,"type":52,"child":7734,"class":7736,"styles":7741,"extra":7743,"tagName":78,"meta":52,"title":79,"classStr":80},[7735],"col-_L5Va54ZgF",{"alignRow":7737,"borders":7738,"borderRadius":7739,"radiusEdge":7740},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":7742},{"value":66,"unit":67},{"visibility":7744,"bgImage":7746,"rowWidth":7748,"customClass":7749},{"value":7745},{"hideDesktop":33,"hideMobile":33},{"value":7747},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":7750},[],{"id":7735,"type":82,"child":7752,"class":7755,"styles":7760,"extra":7762,"tagName":107,"meta":82,"title":108,"noOfColumns":109,"classStr":110},[7753,7754],"heading-7bsQ4uNx-p","heading-oHkotcAr7_",{"borders":7756,"borderRadius":7757,"radiusEdge":7758,"nestedColumn":7759},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":7761},{"value":66,"unit":67},{"visibility":7763,"bgImage":7765,"columnLayout":7767,"justifyContentColumnLayout":7768,"alignContentColumnLayout":7769,"forceColumnLayoutForMobile":7770,"customClass":7771,"elementVersion":7773},{"value":7764},{"hideDesktop":33,"hideMobile":33},{"value":7766},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":99},{"value":101},{"value":40},{"value":7772},[],{"value":106},{"extra":7775,"id":7754,"tagName":366,"class":7783,"meta":376},{"visibility":7776,"text":7778,"nodeId":7780,"customClass":7781},{"value":7777},{"hideMobile":37,"hideDesktop":37},{"value":7779},"\u003Ch1>5 \u003Cstrong>½\u003C\u002Fstrong> À LOUER\u003C\u002Fh1>","cheading-oHkotcAr7_",{"value":7782},[],{"borders":7784,"borderRadius":7785,"radiusEdge":7786,"entranceAnimation":7787,"animationScale":7788,"animationDuration":7789,"animationDelay":7790,"animationEasing":7791},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":15,"type":19,"child":7793,"class":7796,"styles":7801,"extra":7803,"meta":19,"tagName":46,"title":7814,"_id":15,"classStr":293},[7794,7795],"row-TWnivHykBW","row-D-13Jo8OOF",{"width":7797,"borders":7798,"borderRadius":7799,"radiusEdge":7800},{"value":24},{"value":59},{"value":61},{"value":63},{"borderWidth":7802},{"value":66,"unit":67},{"sticky":7804,"visibility":7805,"bgImage":7807,"allowRowMaxWidth":7809,"customClass":7810,"elementScreenshot":7812},{"value":30},{"value":7806},{"hideDesktop":33,"hideMobile":33},{"value":7808},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":33},{"value":7811},[],{"value":7813},[],"Section 6 1\u002F2",{"id":7795,"type":52,"child":7816,"class":7818,"styles":7823,"extra":7825,"tagName":78,"meta":52,"title":489,"classStr":80},[7817],"col-jGkxQisDii",{"alignRow":7819,"borders":7820,"borderRadius":7821,"radiusEdge":7822},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":7824},{"value":66,"unit":67},{"visibility":7826,"bgImage":7828,"rowWidth":7830,"customClass":7831},{"value":7827},{"hideDesktop":33,"hideMobile":33},{"value":7829},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":7832},[],{"id":7817,"type":82,"child":7834,"class":7841,"styles":7846,"extra":7848,"tagName":107,"meta":82,"title":783,"noOfColumns":521,"classStr":522},[7835,7836,7837,7838,7839,7840],"sub-heading-WcRQfwMdNz","image-slider-hWYatebsAw","sub-heading-yoXQulNsGP","row-H3omdqVcgL","sub-heading-cHIlNt_Ai0","sub-heading-kmPg29coLK",{"borders":7842,"borderRadius":7843,"radiusEdge":7844,"nestedColumn":7845},{"value":500},{"value":61},{"value":63},{"value":504},{"borderWidth":7847},{"value":66,"unit":67},{"visibility":7849,"bgImage":7851,"columnLayout":7853,"justifyContentColumnLayout":7854,"alignContentColumnLayout":7855,"forceColumnLayoutForMobile":7856,"customClass":7857,"elementVersion":7859},{"value":7850},{"hideDesktop":33,"hideMobile":33},{"value":7852},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":514},{"value":101},{"value":40},{"value":7858},[],{"value":106},{"extra":7861,"id":7840,"tagName":532,"class":7869,"meta":542},{"visibility":7862,"text":7864,"nodeId":7866,"customClass":7867},{"value":7863},{"hideMobile":37,"hideDesktop":37},{"value":7865},"\u003Ch2>1 550 $ \u002F mois\u003C\u002Fh2>","csub-heading-kmPg29coLK",{"value":7868},[],{"borders":7870,"borderRadius":7871,"radiusEdge":7872,"entranceAnimation":7873,"animationScale":7874,"animationDuration":7875,"animationDelay":7876,"animationEasing":7877},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7879,"id":7839,"tagName":532,"class":7886,"meta":542},{"visibility":7880,"text":7882,"nodeId":7883,"customClass":7884},{"value":7881},{"hideMobile":37,"hideDesktop":37},{"value":1904},"csub-heading-cHIlNt_Ai0",{"value":7885},[],{"borders":7887,"borderRadius":7888,"radiusEdge":7889,"entranceAnimation":7890,"animationScale":7891,"animationDuration":7892,"animationDelay":7893,"animationEasing":7894},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":7838,"type":52,"child":7896,"class":7898,"styles":7903,"extra":7905,"tagName":78,"meta":52,"title":489,"classStr":80},[7897],"col-ikdHVxU13e",{"alignRow":7899,"borders":7900,"borderRadius":7901,"radiusEdge":7902},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":7904},{"value":66,"unit":67},{"visibility":7906,"bgImage":7908,"rowWidth":7910,"customClass":7911},{"value":7907},{"hideDesktop":33,"hideMobile":33},{"value":7909},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":7912},[],{"id":7897,"type":82,"child":7914,"class":7918,"styles":7923,"extra":7925,"tagName":107,"meta":82,"title":108,"noOfColumns":521,"classStr":110},[7915,7916,7917],"paragraph-xiAH3YMjBJ","paragraph-_n_l7eHxtO","paragraph-izFb8eF2oz",{"borders":7919,"borderRadius":7920,"radiusEdge":7921,"nestedColumn":7922},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":7924},{"value":66,"unit":67},{"visibility":7926,"bgImage":7928,"columnLayout":7930,"justifyContentColumnLayout":7931,"alignContentColumnLayout":7932,"forceColumnLayoutForMobile":7933,"customClass":7934,"elementVersion":7936},{"value":7927},{"hideDesktop":33,"hideMobile":33},{"value":7929},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":52},{"value":99},{"value":101},{"value":40},{"value":7935},[],{"value":106},{"extra":7938,"id":7917,"tagName":344,"class":7945,"meta":356},{"visibility":7939,"text":7941,"nodeId":7942,"customClass":7943},{"value":7940},{"hideMobile":37,"hideDesktop":37},{"value":608},"cparagraph-izFb8eF2oz",{"value":7944},[],{"borders":7946,"borderRadius":7947,"radiusEdge":7948,"entranceAnimation":7949,"animationScale":7950,"animationDuration":7951,"animationDelay":7952,"animationEasing":7953},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7955,"id":7916,"tagName":344,"class":7962,"meta":356},{"visibility":7956,"text":7958,"nodeId":7959,"customClass":7960},{"value":7957},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-_n_l7eHxtO",{"value":7961},[],{"borders":7963,"borderRadius":7964,"radiusEdge":7965,"entranceAnimation":7966,"animationScale":7967,"animationDuration":7968,"animationDelay":7969,"animationEasing":7970},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7972,"id":7915,"tagName":344,"class":7979,"meta":356},{"visibility":7973,"text":7975,"nodeId":7976,"customClass":7977},{"value":7974},{"hideMobile":37,"hideDesktop":37},{"value":626},"cparagraph-xiAH3YMjBJ",{"value":7978},[],{"borders":7980,"borderRadius":7981,"radiusEdge":7982,"entranceAnimation":7983,"animationScale":7984,"animationDuration":7985,"animationDelay":7986,"animationEasing":7987},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":7989,"id":7837,"tagName":532,"class":7997,"meta":542},{"visibility":7990,"text":7992,"nodeId":7994,"customClass":7995},{"value":7991},{"hideMobile":37,"hideDesktop":37},{"value":7993},"\u003Ch2>\u003Cstrong>Secteur St-Leonard d'Aston\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>\u003Cstrong>(St-Leonard d'Aston)\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Disponible\u003Cstrong> MAINTENANT !!\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>Chauffage et électricité à vos frais\u003C\u002Fh2>\u003Ch2>1 Stationnement\u003C\u002Fh2>\u003Ch2>1 Remise\u003C\u002Fh2>\u003Ch2>Thermopompe et échangeur d'air\u003C\u002Fh2>","csub-heading-yoXQulNsGP",{"value":7996},[],{"borders":7998,"borderRadius":7999,"radiusEdge":8000,"entranceAnimation":8001,"animationScale":8002,"animationDuration":8003,"animationDelay":8004,"animationEasing":8005},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":8007,"class":8035,"styles":8036,"customCss":8038,"id":7836,"version":106,"type":712,"child":8039,"meta":714,"tagName":715,"title":716,"tag":37},{"nodeId":8008,"sliderList":8009,"sliderSize":8023,"sliderPagination":8025,"sliderArrow":8027,"sliderAnimation":8029,"visibility":8031,"customClass":8033},"cimage-slider-hWYatebsAw",{"value":8010},[8011,8013,8015,8017,8019,8021],{"id":109,"ctaTarget":680,"cta":37,"backgroundImage":8012,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd464bc1f77cc35c2c2d4.jpg",{"id":106,"ctaTarget":680,"cta":37,"backgroundImage":8014,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd4645f98a4e47bf6218a.jpg",{"id":521,"ctaTarget":680,"cta":37,"backgroundImage":8016,"active":40,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd4645f98a4e47bf621a3.jpg",{"id":687,"ctaTarget":680,"cta":37,"backgroundImage":8018,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd464bc1f77cc35c2c2d3.jpg",{"id":703,"ctaTarget":680,"cta":37,"backgroundImage":8020,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd464a3dd25aa2a620c1b.jpg",{"id":993,"ctaTarget":680,"cta":37,"backgroundImage":8022,"active":33,"compression":40,"imageTitle":37,"imageDescription":37,"imageAltText":37},"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd464fb9074ae0357d678.jpg",{"value":8024},{"height":691},{"value":8026},{"enable":40,"style":694,"activeColor":695,"inActiveColor":696,"size":697},{"value":8028},{"enable":40,"color":695,"animationEffect":63},{"value":8030},{"animationEffect":702,"autoAnimationEnable":40,"interval":703,"infiniteLoop":40,"pauseOnHover":40},{"value":8032},{"hideDesktop":33,"hideMobile":33},{"value":8034},[],{},{"borderWidth":8037},{"value":268,"unit":67},[],[],{"extra":8041,"id":7835,"tagName":532,"class":8049,"meta":542},{"visibility":8042,"text":8044,"nodeId":8046,"customClass":8047},{"value":8043},{"hideMobile":37,"hideDesktop":37},{"value":8045},"\u003Ch2>\u003Cstrong>6 ½ Rue de l'Exposition à 1 550$\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-WcRQfwMdNz",{"value":8048},[],{"borders":8050,"borderRadius":8051,"radiusEdge":8052,"entranceAnimation":8053,"animationScale":8054,"animationDuration":8055,"animationDelay":8056,"animationEasing":8057},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":7794,"type":52,"child":8059,"class":8061,"styles":8066,"extra":8068,"tagName":78,"meta":52,"title":79,"classStr":80},[8060],"col-jaowBmUCXQ",{"alignRow":8062,"borders":8063,"borderRadius":8064,"radiusEdge":8065},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":8067},{"value":66,"unit":67},{"visibility":8069,"bgImage":8071,"rowWidth":8073,"customClass":8074},{"value":8070},{"hideDesktop":33,"hideMobile":33},{"value":8072},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":8075},[],{"id":8060,"type":82,"child":8077,"class":8080,"styles":8085,"extra":8087,"tagName":107,"meta":82,"title":108,"noOfColumns":109,"classStr":110},[8078,8079],"heading-BaR_iGp7IO","heading-Yrbyajy-s0",{"borders":8081,"borderRadius":8082,"radiusEdge":8083,"nestedColumn":8084},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":8086},{"value":66,"unit":67},{"visibility":8088,"bgImage":8090,"columnLayout":8092,"justifyContentColumnLayout":8093,"alignContentColumnLayout":8094,"forceColumnLayoutForMobile":8095,"customClass":8096,"elementVersion":8098},{"value":8089},{"hideDesktop":33,"hideMobile":33},{"value":8091},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":99},{"value":101},{"value":40},{"value":8097},[],{"value":106},{"extra":8100,"id":8079,"tagName":366,"class":8108,"meta":376},{"visibility":8101,"text":8103,"nodeId":8105,"customClass":8106},{"value":8102},{"hideMobile":37,"hideDesktop":37},{"value":8104},"\u003Ch1>6 \u003Cstrong>½\u003C\u002Fstrong> À LOUER\u003C\u002Fh1>","cheading-Yrbyajy-s0",{"value":8107},[],{"borders":8109,"borderRadius":8110,"radiusEdge":8111,"entranceAnimation":8112,"animationScale":8113,"animationDuration":8114,"animationDelay":8115,"animationEasing":8116},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":16,"type":19,"child":8118,"class":8120,"styles":8125,"extra":8127,"meta":19,"tagName":46,"title":292,"_id":16,"classStr":293},[8119],"row-ePMCxDWqgji",{"width":8121,"borders":8122,"borderRadius":8123,"radiusEdge":8124},{"value":24},{"value":59},{"value":61},{"value":63},{"borderWidth":8126},{"value":66,"unit":67},{"sticky":8128,"visibility":8129,"bgImage":8131,"allowRowMaxWidth":8133,"customClass":8134,"elementScreenshot":8136},{"value":30},{"value":8130},{"hideDesktop":33,"hideMobile":33},{"value":8132},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":33},{"value":8135},[],{"value":8137},[],{"id":8119,"type":52,"child":8139,"class":8141,"styles":8146,"extra":8148,"tagName":78,"meta":52,"title":79,"classStr":80},[8140],"col-9GM_xmFQp0x",{"alignRow":8142,"borders":8143,"borderRadius":8144,"radiusEdge":8145},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":8147},{"value":66,"unit":67},{"visibility":8149,"bgImage":8151,"rowWidth":8153,"customClass":8154},{"value":8150},{"hideDesktop":33,"hideMobile":33},{"value":8152},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":8155},[],{"id":8140,"type":82,"child":8157,"class":8161,"styles":8166,"extra":8168,"tagName":107,"meta":82,"title":108,"noOfColumns":109,"classStr":110},[8158,8159,8160],"heading-4itKQtj5gK5","paragraph-AZyxGT2nEj-","button-zXFPSmfYVZi",{"borders":8162,"borderRadius":8163,"radiusEdge":8164,"nestedColumn":8165},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":8167},{"value":66,"unit":67},{"visibility":8169,"bgImage":8171,"columnLayout":8173,"justifyContentColumnLayout":8174,"alignContentColumnLayout":8175,"forceColumnLayoutForMobile":8176,"customClass":8177,"elementVersion":8179},{"value":8170},{"hideDesktop":33,"hideMobile":33},{"value":8172},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":99},{"value":101},{"value":40},{"value":8178},[],{"value":106},{"extra":8181,"id":8160,"tagName":944,"meta":945,"class":8209},{"visibility":8182,"text":8184,"subText":8186,"productId":8187,"action":8189,"visitWebsite":8190,"downloadFile":8191,"hideElements":8192,"showElements":8193,"scrollToElement":8194,"stepPath":8195,"saleAction":8196,"phoneNumber":8197,"emailAddress":8198,"popupId":8199,"storeProductId":8200,"storeProductPriceId":8202,"storeCollectionId":8204,"customClass":8206,"nodeId":8208},{"value":8183},{"hideMobile":37,"hideDesktop":37},{"value":8185},"Nous contacter",{},{"value":8188},{},{"value":121},{},{},{},{},{},{"value":164},{},{},{},{"value":934},{"value":8201},{},{"value":8203},{},{"value":8205},{},{"value":8207},[],"cbutton-zXFPSmfYVZi",{"buttonBgStyle":8210,"buttonVp":8211,"buttonHp":8212,"hoverAnimation":8213,"borders":8215,"borderRadius":8216,"radiusEdge":8218,"entranceAnimation":8219,"animationScale":8220,"animationDuration":8221,"animationDelay":8222,"animationEasing":8223,"buttonBoxShadow":8224},{"value":948},{"value":1318},{"value":1320},{"value":8214},"buttonElevate",{"value":500},{"value":8217},"radius15",{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"value":8225},"btnshadow",{"extra":8227,"id":8159,"tagName":344,"class":8235,"meta":356},{"visibility":8228,"text":8230,"nodeId":8232,"customClass":8233},{"value":8229},{"hideMobile":37,"hideDesktop":37},{"value":8231},"\u003Cp>\u003Cspan>Contactez-nous et nous vous aiderons à trouver la propriété idéale\u003C\u002Fspan>\u003C\u002Fp>","cparagraph-AZyxGT2nEj-",{"value":8234},[],{"borders":8236,"borderRadius":8237,"radiusEdge":8238,"entranceAnimation":8239,"animationScale":8240,"animationDuration":8241,"animationDelay":8242,"animationEasing":8243},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":8245,"id":8158,"tagName":366,"class":8253,"meta":376},{"visibility":8246,"text":8248,"nodeId":8250,"customClass":8251},{"value":8247},{"hideMobile":37,"hideDesktop":37},{"value":8249},"\u003Ch1>Vous voulez plus d'information ?\u003C\u002Fh1>","cheading-4itKQtj5gK5",{"value":8252},[],{"borders":8254,"borderRadius":8255,"radiusEdge":8256,"entranceAnimation":8257,"animationScale":8258,"animationDuration":8259,"animationDelay":8260,"animationEasing":8261},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":17,"type":19,"child":8263,"class":8266,"styles":8271,"extra":8273,"meta":19,"tagName":46,"title":8283,"_id":17,"generalColors":8284,"fonts":8289,"isGlobal":40,"classStr":293},[8264,8265],"row-T40f7M8MinT","row-nUbsv-gIl0f",{"width":8267,"borders":8268,"borderRadius":8269,"radiusEdge":8270},{"value":24},{"value":59},{"value":61},{"value":63},{"borderWidth":8272},{"value":66,"unit":67},{"sticky":8274,"visibility":8275,"bgImage":8277,"allowRowMaxWidth":8280,"customClass":8281},{"value":30},{"value":8276},{"hideDesktop":33,"hideMobile":33},{"value":8278},{"url":37,"opacity":38,"options":8279,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},"full-center",{"value":40},{"value":8282},[],"footer for geston",[8285],{"label":8286,"value":8287,"name":8288},"color-lyrjldj8","rgba(255,255,255,0.40)","My Custom Color 55",[8290],"Abel",{"id":8265,"type":52,"child":8292,"class":8294,"styles":8299,"extra":8301,"tagName":78,"meta":52,"title":79,"classStr":80},[8293],"col-YMvj5HCxnWP",{"alignRow":8295,"borders":8296,"borderRadius":8297,"radiusEdge":8298},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":8300},{"value":66,"unit":67},{"visibility":8302,"bgImage":8304,"rowWidth":8306,"customClass":8308},{"value":8303},{"hideDesktop":33,"hideMobile":33},{"value":8305},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":8307,"unit":75},"70",{"value":8309},[],{"id":8293,"type":82,"child":8311,"class":8314,"styles":8318,"extra":8320,"tagName":107,"meta":82,"title":108,"classStr":110},[8312,8313],"divider-yANWshFHPA1","paragraph-yI6IHbm9TYl",{"borders":8315,"borderRadius":8316,"radiusEdge":8317},{"value":59},{"value":61},{"value":63},{"borderWidth":8319},{"value":66,"unit":67},{"visibility":8321,"bgImage":8323,"columnLayout":8325,"justifyContentColumnLayout":8326,"alignContentColumnLayout":8327,"forceColumnLayoutForMobile":8328,"customClass":8329,"elementVersion":8331},{"value":8322},{"hideDesktop":33,"hideMobile":33},{"value":8324},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":99},{"value":101},{"value":40},{"value":8330},[],{"value":106},{"extra":8333,"id":8313,"tagName":344,"class":8341,"meta":356},{"visibility":8334,"text":8336,"nodeId":8338,"customClass":8339},{"value":8335},{"hideMobile":37,"hideDesktop":37},{"value":8337},"\u003Cp>© 2026 Gestion TB. Tous droits réservés.\u003C\u002Fp>","cparagraph-yI6IHbm9TYl",{"value":8340},[],{"borders":8342,"borderRadius":8343,"radiusEdge":8344,"entranceAnimation":8345},{"value":59},{"value":61},{"value":63},{"value":350},{"extra":8347,"id":8312,"meta":8353,"tagName":8354,"class":8355},{"visibility":8348,"customClass":8350,"nodeId":8352},{"value":8349},{"hideMobile":37,"hideDesktop":37},{"value":8351},[],"cdivider-yANWshFHPA1","divider","c-divider",{},{"id":8264,"type":52,"child":8357,"class":8362,"styles":8367,"extra":8369,"tagName":78,"meta":52,"title":8377,"classStr":80},[8358,8359,8360,8361],"col-tMvNyJ-L9Ju","col-DBnd_lSUsZ9","col-YKHe7qBT1UY","col-x9ZcEl7pLga",{"alignRow":8363,"borders":8364,"borderRadius":8365,"radiusEdge":8366},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":8368},{"value":66,"unit":67},{"visibility":8370,"bgImage":8372,"rowWidth":8374,"customClass":8375},{"value":8371},{"hideDesktop":33,"hideMobile":33},{"value":8373},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":8307,"unit":75},{"value":8376},[],"5 Column Row",{"id":8361,"type":82,"child":8379,"class":8381,"styles":8386,"extra":8388,"tagName":107,"meta":82,"title":8401,"classStr":110},[8380],"social-icons-EBXnnGmxzp",{"borders":8382,"borderRadius":8383,"radiusEdge":8384,"nestedColumn":8385},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":8387},{"value":66,"unit":67},{"visibility":8389,"bgImage":8391,"columnLayout":8393,"justifyContentColumnLayout":8394,"alignContentColumnLayout":8396,"forceColumnLayoutForMobile":8397,"customClass":8398,"elementVersion":8400},{"value":8390},{"hideDesktop":33,"hideMobile":33},{"value":8392},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":8395},"flex-start",{"value":101},{"value":40},{"value":8399},[],{"value":106},"4th Column",{"extra":8403,"class":8434,"mobileExtra":8435,"customCss":8436,"id":8380,"version":106,"type":712,"child":8437,"meta":8438,"tagName":8439,"title":8440,"tag":37},{"nodeId":8404,"socials":8405,"displayType":8422,"theme":8424,"align":8426,"iconSize":8427,"customClass":8430,"visibility":8432},"csocial-icons-1UhMR1bjZS",{"value":8406},[8407,8412,8417],{"id":8408,"label":8409,"link":8410,"newWindow":40,"nofollow":33,"icon":8411},"facebook","Facebook","www.facebook.com\u002Fgestiontbappartementstb","https:\u002F\u002Fstcdn.leadconnectorhq.com\u002Ffunnel\u002Ficons\u002Fbrand\u002Ffacebook-brand.svg",{"id":8413,"label":8414,"link":8415,"newWindow":40,"nofollow":33,"icon":8416},"instagram","Instagram","www.instagram.com\u002Fappartementstb\u002F","https:\u002F\u002Fstcdn.leadconnectorhq.com\u002Ffunnel\u002Ficons\u002Fbrand\u002Finstagram-brand.svg",{"id":8418,"label":8419,"link":8420,"newWindow":40,"nofollow":33,"icon":8421},"youtube","Youtube","www.youtube.com\u002F@GestionTB","https:\u002F\u002Fstcdn.leadconnectorhq.com\u002Ffunnel\u002Ficons\u002Fbrand\u002Fyoutube-brand.svg",{"value":8423},"icon",{"value":8425},"brand",{"value":99},{"value":8428},{"height":8429,"width":8429},20,{"value":8431},[],{"value":8433},{"hideDesktop":33,"hideMobile":33},{},{},[],[],"social-icons","c-social-icons","Social Icons",{"id":8360,"type":82,"child":8442,"class":8448,"styles":8453,"extra":8455,"tagName":107,"meta":82,"title":8467,"classStr":110},[8443,8444,8445,8446,8447],"sub-heading-7bs5riSgjo","sub-heading-dVVEuJvZsQ","sub-heading-BP5H83BdIK","sub-heading-Cw2Jk_Gi_2","paragraph-VrwK_S3Hfc",{"borders":8449,"borderRadius":8450,"radiusEdge":8451,"nestedColumn":8452},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":8454},{"value":66,"unit":67},{"visibility":8456,"bgImage":8458,"columnLayout":8460,"justifyContentColumnLayout":8461,"alignContentColumnLayout":8462,"forceColumnLayoutForMobile":8463,"customClass":8464,"elementVersion":8466},{"value":8457},{"hideDesktop":33,"hideMobile":33},{"value":8459},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":8395},{"value":101},{"value":40},{"value":8465},[],{"value":106},"5th Column",{"extra":8469,"id":8446,"tagName":532,"class":8477,"meta":542},{"visibility":8470,"text":8472,"nodeId":8474,"customClass":8475},{"value":8471},{"hideMobile":37,"hideDesktop":37},{"value":8473},"\u003Ch2>445 rue Lindsay, Local 25 Drummondville, QC J2B 1G9\u003C\u002Fh2>","csub-heading-Cw2Jk_Gi_2",{"value":8476},[],{"borders":8478,"borderRadius":8479,"radiusEdge":8480,"entranceAnimation":8481,"animationScale":8482,"animationDuration":8483,"animationDelay":8484,"animationEasing":8485},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":8487,"id":8445,"tagName":532,"class":8495,"meta":542},{"visibility":8488,"text":8490,"nodeId":8492,"customClass":8493},{"value":8489},{"hideMobile":37,"hideDesktop":37},{"value":8491},"\u003Ch2>\u003Cstrong>Général\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>info@gestiontb.ca\u003Cbr>+1 819 817-8486\u003C\u002Fh2>","csub-heading-BP5H83BdIK",{"value":8494},[],{"borders":8496,"borderRadius":8497,"radiusEdge":8498,"entranceAnimation":8499,"animationScale":8500,"animationDuration":8501,"animationDelay":8502,"animationEasing":8503},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":8505,"id":8444,"tagName":532,"class":8513,"meta":542},{"visibility":8506,"text":8508,"nodeId":8510,"customClass":8511},{"value":8507},{"hideMobile":37,"hideDesktop":37},{"value":8509},"\u003Ch2>\u003Cstrong>Location\u003C\u002Fstrong>\u003C\u002Fh2>\u003Ch2>location@gestiontb.ca\u003C\u002Fh2>","csub-heading-dVVEuJvZsQ",{"value":8512},[],{"borders":8514,"borderRadius":8515,"radiusEdge":8516,"entranceAnimation":8517,"animationScale":8518,"animationDuration":8519,"animationDelay":8520,"animationEasing":8521},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":8523,"id":8443,"tagName":532,"class":8531,"meta":542},{"visibility":8524,"text":8526,"nodeId":8528,"customClass":8529},{"value":8525},{"hideMobile":37,"hideDesktop":37},{"value":8527},"\u003Ch2>\u003Cstrong>Nous joindre\u003C\u002Fstrong>\u003C\u002Fh2>","csub-heading-7bs5riSgjo",{"value":8530},[],{"borders":8532,"borderRadius":8533,"radiusEdge":8534,"entranceAnimation":8535,"animationScale":8536,"animationDuration":8537,"animationDelay":8538,"animationEasing":8539},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"id":8359,"type":82,"child":8541,"class":8547,"styles":8552,"extra":8554,"tagName":107,"meta":82,"title":8566,"classStr":110},[8542,8543,8544,8545,8546],"sub-heading-wjvcQDmzRDX","button-KKQhbBqBVwC","button-nc0dXTGe9Oq","button-FqjMf4ioVjK","button-DF5mXdwCw7",{"borders":8548,"borderRadius":8549,"radiusEdge":8550,"nestedColumn":8551},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":8553},{"value":66,"unit":67},{"visibility":8555,"bgImage":8557,"columnLayout":8559,"justifyContentColumnLayout":8560,"alignContentColumnLayout":8561,"forceColumnLayoutForMobile":8562,"customClass":8563,"elementVersion":8565},{"value":8556},{"hideDesktop":33,"hideMobile":33},{"value":8558},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":8395},{"value":101},{"value":40},{"value":8564},[],{"value":106},"3rd Column",{"extra":8568,"id":8546,"tagName":944,"meta":945,"class":8596},{"visibility":8569,"text":8571,"subText":8573,"productId":8574,"action":8576,"visitWebsite":8577,"downloadFile":8578,"hideElements":8579,"showElements":8580,"scrollToElement":8581,"stepPath":8582,"saleAction":8583,"phoneNumber":8584,"emailAddress":8585,"popupId":8586,"storeProductId":8587,"storeProductPriceId":8589,"storeCollectionId":8591,"customClass":8593,"nodeId":8595},{"value":8570},{"hideMobile":37,"hideDesktop":37},{"value":8572},"Espace locataire",{},{"value":8575},{},{"value":121},{},{},{},{},{},{"value":185},{},{},{},{"value":934},{"value":8588},{},{"value":8590},{},{"value":8592},{},{"value":8594},[],"cbutton-DF5mXdwCw7",{"buttonBgStyle":8597,"buttonVp":8598,"buttonHp":8599,"hoverAnimation":8600,"borders":8601,"borderRadius":8602,"radiusEdge":8603,"entranceAnimation":8604},{"value":948},{"value":1318},{"value":1320},{"value":350},{"value":59},{"value":61},{"value":63},{"value":350},{"extra":8606,"id":8545,"tagName":944,"meta":945,"class":8634},{"visibility":8607,"text":8609,"subText":8611,"productId":8612,"action":8614,"visitWebsite":8615,"downloadFile":8616,"hideElements":8617,"showElements":8618,"scrollToElement":8619,"stepPath":8620,"saleAction":8621,"phoneNumber":8622,"emailAddress":8623,"popupId":8624,"storeProductId":8625,"storeProductPriceId":8627,"storeCollectionId":8629,"customClass":8631,"nodeId":8633},{"value":8608},{"hideMobile":37,"hideDesktop":37},{"value":8610},"Achat d'immeuble",{},{"value":8613},{},{"value":121},{},{},{},{},{},{"value":169},{},{},{},{"value":934},{"value":8626},{},{"value":8628},{},{"value":8630},{},{"value":8632},[],"cbutton-FqjMf4ioVjK",{"buttonBgStyle":8635,"buttonVp":8636,"buttonHp":8637,"hoverAnimation":8638,"borders":8639,"borderRadius":8640,"radiusEdge":8641,"entranceAnimation":8642},{"value":948},{"value":1318},{"value":1320},{"value":350},{"value":59},{"value":61},{"value":63},{"value":350},{"extra":8644,"id":8544,"tagName":944,"meta":945,"class":8672},{"visibility":8645,"text":8647,"subText":8649,"productId":8650,"action":8652,"visitWebsite":8653,"downloadFile":8654,"hideElements":8655,"showElements":8656,"scrollToElement":8657,"stepPath":8658,"saleAction":8659,"phoneNumber":8660,"emailAddress":8661,"popupId":8662,"storeProductId":8663,"storeProductPriceId":8665,"storeCollectionId":8667,"customClass":8669,"nodeId":8671},{"value":8646},{"hideMobile":37,"hideDesktop":37},{"value":8648},"Logements à louer",{},{"value":8651},{},{"value":121},{},{},{},{},{},{"value":123},{},{},{},{"value":934},{"value":8664},{},{"value":8666},{},{"value":8668},{},{"value":8670},[],"cbutton-nc0dXTGe9Oq",{"buttonBgStyle":8673,"buttonVp":8674,"buttonHp":8675,"hoverAnimation":8676,"borders":8677,"borderRadius":8678,"radiusEdge":8679,"entranceAnimation":8680},{"value":948},{"value":1318},{"value":1320},{"value":350},{"value":59},{"value":61},{"value":63},{"value":350},{"extra":8682,"id":8543,"tagName":944,"meta":945,"class":8710},{"visibility":8683,"text":8685,"subText":8687,"productId":8688,"action":8690,"visitWebsite":8691,"downloadFile":8692,"hideElements":8693,"showElements":8694,"scrollToElement":8695,"stepPath":8696,"saleAction":8697,"phoneNumber":8698,"emailAddress":8699,"popupId":8700,"storeProductId":8701,"storeProductPriceId":8703,"storeCollectionId":8705,"customClass":8707,"nodeId":8709},{"value":8684},{"hideMobile":37,"hideDesktop":37},{"value":8686},"Accueil",{},{"value":8689},{},{"value":121},{},{},{},{},{},{"value":130},{},{},{},{"value":934},{"value":8702},{},{"value":8704},{},{"value":8706},{},{"value":8708},[],"cbutton-KKQhbBqBVwC",{"buttonBgStyle":8711,"buttonVp":8712,"buttonHp":8713,"hoverAnimation":8714,"borders":8715,"borderRadius":8716,"radiusEdge":8717,"entranceAnimation":8718},{"value":948},{"value":1318},{"value":1320},{"value":350},{"value":59},{"value":61},{"value":63},{"value":350},{"extra":8720,"id":8542,"tagName":532,"class":8728,"meta":542},{"visibility":8721,"text":8723,"nodeId":8725,"customClass":8726},{"value":8722},{"hideMobile":37,"hideDesktop":37},{"value":8724},"\u003Ch2>\u003Cspan style=\"color: var(--white)\">Navigation\u003C\u002Fspan>\u003C\u002Fh2>","csub-heading-wjvcQDmzRDX",{"value":8727},[],{"borders":8729,"borderRadius":8730,"radiusEdge":8731,"entranceAnimation":8732},{"value":59},{"value":61},{"value":63},{"value":350},{"id":8358,"type":82,"child":8734,"class":8737,"styles":8742,"extra":8744,"tagName":107,"meta":82,"title":108,"classStr":110},[8735,8736],"image-LXRJzU4eiXY","paragraph-pAtK8CJ2gUP",{"borders":8738,"borderRadius":8739,"radiusEdge":8740,"nestedColumn":8741},{"value":59},{"value":61},{"value":63},{"value":37},{"borderWidth":8743},{"value":66,"unit":67},{"visibility":8745,"bgImage":8747,"columnLayout":8749,"justifyContentColumnLayout":8750,"alignContentColumnLayout":8751,"forceColumnLayoutForMobile":8752,"customClass":8753,"elementVersion":8755},{"value":8746},{"hideDesktop":33,"hideMobile":33},{"value":8748},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":8395},{"value":101},{"value":40},{"value":8754},[],{"value":106},{"extra":8757,"id":8736,"tagName":344,"class":8765,"meta":356},{"visibility":8758,"text":8760,"nodeId":8762,"customClass":8763},{"value":8759},{"hideMobile":37,"hideDesktop":37},{"value":8761},"\u003Cp>\u003Cspan style=\"color: var(--white)\">Votre partenaire de confiance pour la gestion, la location et l'achat de vos biens immobiliers.\u003C\u002Fspan>\u003C\u002Fp>","cparagraph-pAtK8CJ2gUP",{"value":8764},[],{"borders":8766,"borderRadius":8767,"radiusEdge":8768,"entranceAnimation":8769,"animationScale":8770,"animationDuration":8771,"animationDelay":8772,"animationEasing":8773},{"value":59},{"value":61},{"value":63},{"value":350},{"value":109},{"value":109},{"value":268},{"value":355},{"extra":8775,"id":8735,"meta":36,"tagName":8796,"class":8797},{"nodeId":8776,"visibility":8777,"imageActions":8779,"visitWebsite":8780,"imageProperties":8782,"customClass":8785,"hideElements":8787,"showElements":8789,"scrollToElement":8791,"phoneNumber":8792,"emailAddress":8793,"stepPath":8794,"elementVersion":8795,"downloadFile":37},"cimage-LXRJzU4eiXY",{"value":8778},{"hideDesktop":37,"hideMobile":37},{"value":63},{"value":8781},{"url":37,"newTab":33},{"value":8783},{"url":8784,"compression":40},"https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F695a068605b511613e14dc84.png",{"value":8786},[],{"value":8788},[],{"value":8790},[],{},{},{},{},{"value":106},"c-image",{"imageRadius":8798,"imageBorder":8800,"imageEffects":8802,"entranceAnimation":8804},{"value":8799},"img-none",{"value":8801},"img-border-none",{"value":8803},"img-effects-none",{"value":350},[],"https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=Inter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CInter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CRoboto:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap",[],{"author":8809,"canonicalMeta":8810,"customMeta":8813,"description":8817,"imageUrl":8818,"keywords":8819,"language":8820,"title":8821,"isPreviewUrl":33},"Gestion TB \u002F Appartement TB",[8811],{"content":8812},"https:\u002F\u002Fgestiontb.ca\u002Flogements-a-louer",[8814],{"content":8815,"name":8816},"index, follow","robots","Consultez nos logements à louer à Drummondville. Des appartements propres, bien situés et gérés par des professionnels. Trouvez votre prochain chez-vous !","https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6961fae5f8a93b39cf67575e.png","logements a louer drummondville, appartements a louer drummondville, location logement drummondville, 3\u002F2 a louer, 4\u002F2 a louer drummondville, 5\u002F2 drummondville","fr-ca","Logements et appartements à louer à Drummondville | Gestion TB","appartementstb.ca","\u002F","guJZMG6JeJTKuXq9LuOf","9ubT2smip23BapsK3KeE",[8827],{"id":934,"elements":8828,"activeElementId":934},[8829,8858,8876,8897],{"extra":8830,"class":8845,"styles":8850,"customCss":8853,"id":934,"child":8854,"meta":8856,"title":8857,"tag":37},{"bgImage":8831,"overlayColor":8833,"left":8835,"popupDisabled":8837,"popupHide":8838,"minWidth":8839,"showPopupOnMouseOut":8841,"customClass":8842,"position":8844},{"value":8832},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":8834},"var(--overlay)",{"value":8836,"unit":75},50,{"value":33},{"value":33},{"value":8840},"medium-page",{"value":63,"delay":109},{"value":8843},[],{"value":99},{"borders":8846,"borderRadius":8847,"radiusEdge":8849},{"value":500},{"value":8848},"radius2",{"value":63},{"borderWidth":8851},{"value":8852,"unit":67},"10",[],[8855],"row-215Nt-0XPg","hl_main_popup","Popup location cours",{"id":8855,"type":52,"child":8859,"class":8861,"styles":8866,"extra":8868,"tagName":78,"meta":52,"title":79,"classStr":80},[8860],"col-yW4xiVr8NL",{"alignRow":8862,"borders":8863,"borderRadius":8864,"radiusEdge":8865},{"value":57},{"value":59},{"value":61},{"value":63},{"borderWidth":8867},{"value":66,"unit":67},{"visibility":8869,"bgImage":8871,"rowWidth":8873,"customClass":8874},{"value":8870},{"hideDesktop":33,"hideMobile":33},{"value":8872},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":74,"unit":75},{"value":8875},[],{"id":8860,"type":82,"child":8877,"class":8879,"styles":8883,"extra":8885,"tagName":107,"meta":82,"title":108,"noOfColumns":109,"classStr":110},[8878],"form-CNBum27-XR",{"borders":8880,"borderRadius":8881,"radiusEdge":8882},{"value":59},{"value":61},{"value":63},{"borderWidth":8884},{"value":66,"unit":67},{"visibility":8886,"bgImage":8888,"columnLayout":8890,"justifyContentColumnLayout":8891,"alignContentColumnLayout":8892,"forceColumnLayoutForMobile":8893,"customClass":8894,"elementVersion":8896},{"value":8887},{"hideDesktop":33,"hideMobile":33},{"value":8889},{"mediaType":36,"url":37,"opacity":38,"options":39,"svgCode":37,"videoUrl":37,"videoThumbnail":37,"videoLoop":40},{"value":97},{"value":99},{"value":101},{"value":40},{"value":8895},[],{"value":106},{"extra":8898,"class":8910,"customCss":8911,"id":8878,"type":712,"child":8912,"meta":8913,"tagName":8914,"title":8915,"tag":37,"formData":8916},{"nodeId":8899,"visibility":8900,"formId":8902,"action":8905,"visitWebsite":8906,"customClass":8908},"cform-CNBum27-XR",{"value":8901},{"hideDesktop":33,"hideMobile":33},{"value":8903,"text":8904},"txKGUt5lUnuEaM9GX4HW","Form Contact Location cours",{"value":63},{"value":8907},{"url":37,"newTab":33},{"value":8909},[],{},[],[],"form","c-form","Form",{"name":8904,"autoResponder":33,"emailNotifications":33,"form":8917,"language":9056,"parentFolderId":9057,"parentFolderName":9058,"recurringProductCurrency":9059,"recurringProductId":350,"recurringProducts":9060,"lastUpdatedAt":9061,"locationId":8825,"country":9062,"companyId":9063},{"address":8918,"autoResponderConfig":350,"company":8933,"conditionalLogic":350,"contactAssociationSettings":350,"currentThemeId":8936,"customStyle":37,"emailNotificationsConfig":350,"enableTimezone":40,"fbPixelId":8937,"fieldCSS":8938,"fieldStyle":8939,"fields":8958,"formAction":9032,"formLabelVisible":40,"formSubmissionEvent":9034,"fullScreenMode":40,"height":9035,"inputStyleType":9036,"isGDPRCompliant":33,"layout":109,"mobileFieldCSS":8938,"mobileLayout":109,"opportunitySettings":350,"pageViewEvent":9037,"payment":350,"stickyContact":40,"style":9038,"submitMessageStyle":9049,"width":9055},{"autoCompleteEnabled":33,"children":8919,"label":8923,"placeholder":8932,"required":40},[8920,8926,8929],{"hiddenFieldQueryKey":8921,"hideInLeftSideBar":40,"label":8922,"placeholder":8923,"required":33,"standard":40,"tag":8921,"title":8923,"type":8924,"typeLabel":8925},"address","Adresse de la rue","Adresse","text","Text",{"hiddenFieldQueryKey":8927,"label":8928,"placeholder":8928,"required":33,"standard":40,"tag":8927,"title":8928,"type":8924,"typeLabel":8925},"city","Ville",{"hiddenFieldQueryKey":8930,"label":8931,"placeholder":8931,"required":33,"standard":40,"tag":8930,"title":8931,"type":8924,"typeLabel":8925},"postal_code","Code postal","Recherchez une adresse",{"logoURL":8934,"name":8935},"https:\u002F\u002Fmsgsndr-private.storage.googleapis.com\u002FcompanyPhotos\u002F9451ead8-12c3-45d7-bd5a-2cc8665f6b16.png","Benvya","6526b8c3b412c83e9edb9c6f","1232828705513921","@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=Inter:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i|Inter:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');\n\n #_builder-form .form-builder--item input[type=text][class=form-control],#_builder-form .form-builder--item .date-picker-custom-style,#_builder-form .form-builder--item input[type=number]{\n background-color: #FFFFFFFF !important;\n color: #2c3345FF !important;\n border: 1px solid #ACACACFF !important;\n border-radius: 5px !important;\n padding: 8px 15px 8px 15px !important;\n box-shadow: 0px 0px 0px 0px #FFFFFF;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n background-clip: inherit !important;\n }\n #_builder-form textarea {\n background-color: #FFFFFFFF !important;\n color: #2c3345FF !important;\n border: 1px solid #ACACACFF !important;\n border-radius: 5px !important;\n padding: 8px 15px 8px 15px !important;\n box-shadow: 0px 0px 0px 0px #FFFFFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n background-clip: inherit !important;\n }\n #_builder-form input[type=tel],#_builder-form input[type=email],#_builder-form .multiselect .multiselect__tags{\n background-color: #FFFFFFFF !important;\n color: #2c3345FF !important;\n border: 1px solid #ACACACFF !important;\n border: 1px solid #ACACACFF !important;\n border-radius: 5px !important;\n padding: 8px 15px 8px 15px !important;\n box-shadow: 0px 0px 0px 0px #FFFFFF;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n background-clip: inherit !important;\n }\n #_builder-form .multi_select_form {\n border-radius: 5px !important;\n }\n #_builder-form .iti--allow-dropdown input, .iti--allow-dropdown input[type=tel]{\n padding-left: 45px !important;\n }\n #_builder-form .countryphone {\n height: inherit;\n }\n\n\n #_builder-form .form-builder--item .date-picker-custom-style input[type=text], #_builder-form .form-builder--item .multiselect .multiselect__placeholder {\n padding:0;\n background-color: #FFFFFFFF;\n color: #2c3345FF;\n font-size: 12px;\n }\n #_builder-form .form-builder--item .multiselect .multiselect__input{\n background-color: #FFFFFFFF !important;\n }\n #_builder-form .form-builder--item .multiselect .multiselect__select{\n background: transparent;\n z-index:10;\n }\n #_builder-form .form-builder--item .multiselect ,.multiselect__single{\n padding:0 !important;\n margin:0 !important;\n min-height: 24px;\n color: #2c3345FF !important;\n background-color: #FFFFFFFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n }\n #_builder-form .form-builder--item .multiselect__placeholder {\n padding:0 !important;\n margin:0 !important;\n min-height: 24px;\n color: #8c8c8cFF !important;\n background-color: #FFFFFFFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n }\n #_builder-form .field-container{\n width:100%;\n max-width: 900px;\n }\n #_builder-form ::-webkit-input-placeholder { \u002F* Chrome, Firefox, Opera, Safari 10.1+ *\u002F\n color: #8c8c8cFF;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n opacity: 1; \u002F* Firefox *\u002F\n }\n #_builder-form ::placeholder {\n color: #8c8c8cFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n }\n #_builder-form :-ms-input-placeholder { \u002F* Internet Explorer 10-11 *\u002F\n color: #8c8c8cFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n }\n #_builder-form ::-ms-input-placeholder { \u002F* Microsoft Edge *\u002F\n color: #8c8c8cFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n }\n\n #_builder-form label{\n color: #2c3345FF;\n font-family: 'Inter';\n font-size: 14px;\n font-weight: 500;\n }\n #_builder-form label * {\n color: #2c3345FF;\n font-family: 'Inter';\n }\n #_builder-form .text-element * {\n color: inherit;\n font-family: 'Inter';\n }\n #_builder-form .short-label{\n color: #2c3345FF;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n -webkit-font-smoothing: auto;\n }\n #_builder-form .form-builder--item .payment-suggestion-tag-container {\n background-color: #FFFFFFFF;\n color: #2c3345FF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n box-shadow: 0px 0px 0px 0px #FFFFFF;\n }\n #_builder-form .product-summary-amount-large, #order-confirmation .product-summary-amount-large {\n color: #2c3345FF;\n font-size: 18px;\n font-weight: 700;\n font-family: Inter;\n line-height: 1.5rem;\n }\n #_builder-form .product-summary-amount-normal, #order-confirmation .product-summary-amount-normal {\n color: #2c3345FF;\n font-size: 14px;\n font-weight: 600;\n font-family: Inter;\n line-height: 1.5rem;\n }\n #_builder-form .product-summary-label-bold, #order-confirmation .product-summary-label-bold{\n color: #2c3345FF;\n font-size: 14px;\n font-weight: 700;\n font-family: Inter;\n line-height: 1.5rem;\n }\n #_builder-form .crossed-amount {\n color: #2c3345FF;\n font-size: 16px;\n font-weight: 600;\n font-family: Inter;\n line-height: 1.5rem;\n }\n #_builder-form .product-summary-label-large, #order-confirmation .product-summary-label-large{\n color: #2c3345FF;\n font-size: 16px;\n font-weight: 600;\n font-family: Inter;\n line-height: 1.575rem;\n }\n #_builder-form .product-summary-label-normal, #order-confirmation .product-summary-label-normal{\n color: #2c3345FF;\n font-size: 14px;\n font-weight: 500;\n font-family: Inter;\n line-height: 1.575rem;\n }\n #_builder-form .product-summary-label-small, #order-confirmation .product-summary-label-small{\n color: #2c3345FF;\n font-size: 12px;\n font-weight: 500;\n font-family: Inter;\n line-height: 1.575rem;\n }\n #_builder-form .variant-tag {\n color: #2c3345FF;\n font-size: 13px;\n font-weight: 500;\n font-family: Inter;\n line-height: 1.5rem;\n }\n #_builder-form .selected-tag {\n background-color: #009EF426 !important;\n }\n #_builder-form .payment-tag, #_builder-form .quantity-container-counter {\n box-shadow: 0px 0px 0px 0px #FFFFFF;\n background-color : #FFFFFFFF;\n }\n #_builder-form .quantity-container-counter {\n padding-top: 6px !important;\n padding-bottom: 6px !important;\n }\n #_builder-form .quantity-text {\n font-size: 12px !important;\n }\n .bubble-label, .bubble-checkbox-label {\n background-color: #FFFFFFFF !important;\n color: #8c8c8cFF !important;\n font-family: 'Inter' !important;\n font-size: 12px !important;\n font-weight: 300 !important;\n }\n .bubble-container, .bubble-checkbox-container {\n border: 1px solid #ACACACFF !important;\n border-radius: 12px !important;\n \u002F* Small horizontal gap between bubbles *\u002F\n margin-left: 2px !important;\n margin-right: 2px !important;\n padding: 8px 15px 8px 15px !important;\n box-shadow: 0px 0px 0px 0px #FFFFFF;\n font-family: 'Inter';\n font-size: 14px;\n font-weight: 500;\n background-clip: inherit !important;\n }\n .vdpHeadCellContent {\n word-wrap: normal;\n }\n \n ",{"activeTagBgColor":8940,"bgColor":8941,"border":8942,"fontColor":8945,"labelAlignment":8946,"labelColor":8945,"labelFontFamily":8947,"labelFontSize":257,"labelFontWeight":8948,"labelWidth":8949,"mapPrimaryColorToButtonColor":33,"padding":8950,"placeholderColor":8952,"placeholderFontFamily":8947,"placeholderFontSize":8953,"placeholderFontWeight":691,"shadow":8954,"shortLabel":8956,"width":8957},"009EF426","FFFFFFFF",{"border":109,"color":8943,"radius":703,"type":8944},"ACACACFF","solid","2c3345FF","top","Inter",500,200,{"bottom":6295,"left":8951,"right":8951,"top":6295},15,"8c8c8cFF",12,{"blur":268,"color":8955,"horizontal":268,"spread":268,"vertical":268},"FFFFFF",{"color":8945,"fontFamily":8947,"fontSize":8953,"fontWeight":691},900,[8959,8962,8965,8969,8972,8999,9022],{"fieldWidthPercentage":74,"hiddenFieldQueryKey":8960,"label":8961,"placeholder":8961,"required":40,"standard":40,"tag":8960,"type":8924,"typeLabel":8925},"first_name","Prénom",{"fieldWidthPercentage":74,"hiddenFieldQueryKey":8963,"label":8964,"placeholder":8964,"required":40,"standard":40,"tag":8963,"type":8924,"typeLabel":8925},"last_name","Nom",{"enableCountryPicker":33,"fieldWidthPercentage":74,"hiddenFieldQueryKey":8966,"label":8967,"placeholder":8967,"required":40,"standard":40,"tag":8966,"type":8924,"typeLabel":8968},"phone","Téléphone","Phone",{"fieldWidthPercentage":74,"hiddenFieldQueryKey":8970,"label":8971,"placeholder":8971,"required":40,"standard":40,"tag":8970,"type":8970,"typeLabel":8971},"email","Email",{"__pendingClone":33,"active":33,"category":8973,"custom":40,"customEdited":40,"customFieldLabel":8974,"dataType":8975,"dateAdded":8976,"documentType":8977,"fieldKey":8978,"fieldWidthPercentage":74,"hiddenFieldQueryKey":8979,"id":8980,"label":8974,"locationId":8825,"model":8981,"name":8974,"parentId":8982,"picklistOptions":8983,"placeholder":37,"position":8996,"required":40,"standard":33,"tag":8980,"type":8997,"typeLabel":8998},"choiceElements","Pour quel mois cherchez-vous un logement?","SINGLE_OPTIONS","2026-01-13T16:50:42.782Z","field","contact.pour_quel_mois_cherchezvous_un_logement","single_dropdown_5rwr","cXUtGmOxZ0FxVMjvJctu","contact","KDwAmAW6Q0iBxm9WbkXZ",[8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995],"Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre",150,"single_options","Single Dropdown",{"__pendingClone":33,"active":33,"calculatedOptions":9000,"category":8973,"custom":40,"customEdited":40,"customFieldLabel":9016,"dataType":8975,"dateAdded":9017,"documentType":8977,"fieldKey":9018,"fieldWidthPercentage":74,"hiddenFieldQueryKey":9019,"id":9020,"label":9016,"locationId":8825,"model":8981,"name":9016,"parentId":8982,"picklistOptions":9021,"placeholder":37,"position":8996,"required":40,"standard":33,"tag":9020,"type":8997,"typeLabel":8998},[9001,9002,9004,9006,9008,9010,9012,9014],{"calculatedValue":37,"label":154},{"calculatedValue":37,"label":9003},"1 1\u002F2",{"calculatedValue":37,"label":9005},"2 1\u002F2",{"calculatedValue":37,"label":9007},"3 1\u002F2",{"calculatedValue":37,"label":9009},"4 1\u002F2",{"calculatedValue":37,"label":9011},"5 1\u002F2",{"calculatedValue":37,"label":9013},"6 1\u002F2",{"calculatedValue":37,"label":9015},"Maison","Grandeur de logement recherché","2026-01-13T16:50:42.779Z","contact.grandeur_de_logement_recherch","single_dropdown_4lmj","FFGCfZTPIm8R6WhihTrf",[154,9003,9005,9007,9009,9011,9013,9015],{"active":33,"align":99,"bgColor":9023,"border":268,"borderColor":8955,"borderRadius":993,"borderType":63,"color":8955,"fieldWidthPercentage":74,"fontFamily":8947,"fontSize":8951,"fullwidth":40,"hiddenFieldQueryKey":945,"label":9024,"padding":9025,"placeholder":9027,"radius":703,"shadow":9028,"standard":40,"subTextColor":9029,"subTextFontFamily":8947,"subTextFontSize":257,"subTextWeight":8949,"submitSubText":37,"tag":945,"type":9030,"weight":9031},"163760FF","\u003Cp style=\"text-align: center;padding-left: 0px!important;\">Soumettre\u003C\u002Fp>",{"bottom":9026,"left":8836,"right":8836,"top":9026},9,"Button",{"blur":268,"color":8955,"horizontal":268,"spread":268,"vertical":268},"000000","submit",400,{"actionType":66,"headerImageSrc":37,"mobileHeaderImageSrc":37,"redirectUrl":37,"thankyouText":9033},"\u003Cp style=\"text-align: center;line-height: 28px;padding-left: 0px!important;font-family: Inter, sans-serif;font-size: 18px;font-weight: 600;margin: 0;\">\u003Cstrong>😊\u003C\u002Fstrong>\u003C\u002Fp>\u003Cp style=\"text-align: center;line-height: 24px;padding-left: 0px!important;font-family: Inter, sans-serif;font-size: 16px;font-weight: 600;margin: 4px 0 0;color: #101828;\">\u003Cstrong>Merci d'avoir remplie la demande!\u003C\u002Fstrong>\u003C\u002Fp>\u003Cp style=\"text-align: center;line-height: 18px;padding-left: 0px!important;font-family: Inter, sans-serif;font-size: 12px;font-weight: 400;margin: 4px 0 0;color: #101828;\">Nous allons vous revenir dans les plus bref délais.\u003C\u002Fp>","SubmitApplication",537,"box","PageView",{"acBranding":33,"background":8941,"bgImage":37,"border":9039,"fieldSpacing":9040,"margin":9041,"mobileBgImage":37,"mobileMargin":9043,"padding":9044,"shadow":9047},{"border":109,"color":8941,"radius":521,"style":8944},16,{"bottom":9042,"left":9042,"right":9042,"top":9042},"auto",{"bottom":9042,"left":9042,"right":9042,"top":9042},{"bottom":268,"left":9045,"right":9045,"top":9046},40,30,{"blur":687,"color":9048,"horizontal":268,"spread":268,"vertical":687},"57647e36",{"bgColor":8955,"cornerRadius":697,"fontWeight":9031,"isEnabled":40,"margin":9050,"mobileBgColor":8955,"mobileFontWeight":9031,"mobileMargin":9051,"mobilePadding":9052,"padding":9054},{"bottom":9042,"left":9042,"right":9042,"top":9042},{"bottom":9042,"left":9042,"right":9042,"top":9042},{"bottom":9053,"left":9053,"right":9053,"top":9053},48,{"bottom":9053,"left":9053,"right":9053,"top":9053},650,"en-US","jKKA7Omasz04AOu9Y5fO","Form | Form Contact Gestion d'immeuble","USD",[],"2026-02-10T22:28:47.049Z","CA","gsmSOGFGVlIR85CVfduW","https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6963d6ed98efbdd270eb5bac.png","\u003Cmeta name=\"facebook-domain-verification\" content=\"1mqw2orse1jc8zk8g9xnhm1s17u4s0\" \u002F>","KFXG8HVMgkGzIMbi2zb8","Gestion TB",{"funnelId":9066,"version":106,"bgColor":9069,"textColor":696,"customiseBtnText":9070,"acceptAllBtnText":9071,"acceptEssentialBtnText":9072,"primaryTextColor":9073,"okBtnText":9074,"secondaryTextColor":696,"customiseTextColor":696,"linkColor":696,"primaryColor":9075,"secondaryColor":9076,"customiseColor":9073,"isOwnPolicyLink":33,"policyLink":37,"policyLinkText":9077,"selectedFont":8947,"fontSize":9040,"essentialCookies":9078,"complianceType":9079,"showCustomise":33,"msgDescription":9080,"consentExpiration":257,"cookieListSettings":9081,"cookieList":9094,"layoutSettings":9123,"regionSettings":9127,"style":9130,"isCookieEnabled":40,"pageId":9131,"signature":9132},"#FFFFFFFF","Customize","Accepter","Accepter l'essentiel","#ffffff","Ok","#00007BFF","#F1F1F1FF","Learn more",[],"ask-opt-in","Nous utilisons des cookies pour améliorer votre expérience sur notre site. En utilisant notre site, vous consentez à l’utilisation des cookies. Le refus des cookies empêchera le chargement des cookies non essentiels.",{"title":9082,"description":9083,"bgColor":9073,"titleTextColor":9084,"descriptionTextColor":9085,"savePreferencesBgColor":9086,"savePreferencesTextColor":9073,"cancelBgColor":9073,"cancelTextColor":9087,"rejectBgColor":9088,"rejectTextColor":9089,"switchColor":9090,"rejectBtnText":9091,"savePreferencesBtnText":9092,"cancelBtnText":9093},"Personnaliser les préférences de consentement","Nous utilisons des cookies pour assurer le bon fonctionnement du site web et améliorer votre expérience en ligne. Vous pouvez, à tout moment, choisir d’accepter ou de refuser chaque catégorie de cookies. Pour plus d’informations sur les cookies et leur utilisation, consultez la politique complète relative aux cookies.","#101828","#344054","#145eef","#354054","#fef3f2","#b42418","#155EEF","Rejeter","Enregistrer les réglages","Annuel",[9095,9100,9105,9110,9115,9119],{"category":9096,"title":9097,"description":9098,"cookies":9099,"isEnabled":40,"isDisabled":40,"userEnabled":40},"essential","Essential","Essential cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.",[],{"category":9101,"title":9102,"description":9103,"cookies":9104,"isEnabled":40,"isDisabled":33,"userEnabled":40},"functional","Functional","Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.",[],{"category":9106,"title":9107,"description":9108,"cookies":9109,"isEnabled":40,"isDisabled":33,"userEnabled":40},"analytics","Analytics","Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.",[],{"category":9111,"title":9112,"description":9113,"cookies":9114,"isEnabled":40,"isDisabled":33,"userEnabled":40},"performance","Performance","to be filled",[],{"category":9116,"title":9117,"description":9113,"cookies":9118,"isEnabled":40,"isDisabled":33,"userEnabled":40},"advertising","Advertising",[],{"category":9120,"title":9121,"description":9113,"cookies":9122,"isEnabled":40,"isDisabled":33,"userEnabled":40},"uncategorized","Uncategorized",[],{"position":9124,"floatingCookie":33,"floaterPosition":9125,"bgColor":9126,"borderColor":9073,"iconColor":9073},"popup-banner position-center","right","#fef0c7",{"type":9128,"countries":9129},"worldwide",[],".hl-cookie-consent-banner{background-color:#ffffffff}.hl-cookie-consent-banner .banner-text,.hl-cookie-consent-banner .learn-more{color:#000;font-family:Inter;font-size:16px}.hl-cookie-consent-banner .button.primary{color:#fff;background-color:#00007bff;font-family:Inter;font-size:16px}.hl-cookie-consent-banner .button.secondary{color:#000;background-color:#f1f1f1ff;font-family:Inter;font-size:16px}.hl-cookie-consent-banner .button.customize{color:#000;background-color:#fff;font-family:Inter;font-size:16px}.hl-cc-preference-popup{background-color:#fff;font-family:Inter}.hl-cc-preference-popup .hl-cc-preference-popup-title{color:#101828;font-size:18px}.hl-cc-preference-popup .hl-cc-preference-popup-description{color:#344054;font-size:14px}.hl-cc-preference-popup-footer .cancel{color:#354054;background-color:#fff}.hl-cc-preference-popup-footer .save{color:#fff;background-color:#145eef}.hl-cc-preference-popup-footer .reject{color:#b42418;background-color:#fef3f2}.hl-cc-switch input:checked+.hl-slider{background-color:#155eef}.hl-cc-preference-popup-content .hl-cc-preference-category-header{color:#101828}","vZsru6STSUdvX8ctCcl2","eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiI4aW1Icm8wOEdQZ0hQa2dKdFNVMCIsImFncmVlZCI6dHJ1ZSwibWVzc2FnZSI6Ik5vdXMgdXRpbGlzb25zIGRlcyBjb29raWVzIHBvdXIgYW3DqWxpb3JlciB2b3RyZSBleHDDqXJpZW5jZSBzdXIgbm90cmUgc2l0ZS4gRW4gdXRpbGlzYW50IG5vdHJlIHNpdGUsIHZvdXMgY29uc2VudGV6IMOgIGzigJl1dGlsaXNhdGlvbiBkZXMgY29va2llcy4gTGUgcmVmdXMgZGVzIGNvb2tpZXMgZW1ww6pjaGVyYSBsZSBjaGFyZ2VtZW50IGRlcyBjb29raWVzIG5vbiBlc3NlbnRpZWxzLiIsInRpbWVzdGFtcCI6MTc2ODMyOTU5MDA2NSwiaWF0IjoxNzY4MzI5NTkwfQ.gNoUy-BIda0RImq3kaoCpyn-ylOIrKKoVrwk1tkmTK4",[],{"@context":9135,"@graph":9136},"https:\u002F\u002Fschema.org",[9137],{"@context":9135,"@type":9138,"name":9067,"image":9139,"@id":8812,"url":9140,"telephone":9141,"address":9142,"geo":9148,"description":9152,"openingHoursSpecification":9153,"potentialAction":9163},"LocalBusiness","https:\u002F\u002Fgestiontb.ca\u002Fimages\u002Flogo.png","https:\u002F\u002Fgestiontb.ca\u002F","819-817-8486",{"@type":9143,"streetAddress":9144,"addressLocality":9145,"addressRegion":9146,"postalCode":9147,"addressCountry":9062},"PostalAddress","445 Rue Lindsay Local 25","Drummondville","QC","J2B 1G9",{"@type":9149,"latitude":9150,"longitude":9151},"GeoCoordinates",45.8833,-72.4833,"Gestion TB est spécialisée dans la location de logements et la gestion immobilière résidentielle à Drummondville.",{"@type":9154,"dayOfWeek":9155,"opens":9161,"closes":9162},"OpeningHoursSpecification",[9156,9157,9158,9159,9160],"Monday","Tuesday","Wednesday","Thursday","Friday","09:00","17:00",{"@type":9164,"target":9165,"query-input":9166},"SearchAction","https:\u002F\u002Fgestiontb.ca\u002F?s={search_term_string}","required name=search_term_string",["Reactive",9168],{"$snuxt-i18n-meta":9169,"$spreviewState":9170,"$smetaPixelOptions":9382,"$stracking-providers":9385,"$stracking-initialized":33},{},{"defaultSettings":9171,"mobileDevice":33,"funnelId":9066,"funnelDomain":9252,"stepId":123,"locationId":8825,"funnelPageId":8824,"locationCode":9062,"funnelNextStep":9253,"fingerprint":37,"funnelNextPageId":9254,"stripePublishableKey":-1,"enablePaymentElement":-1,"merchantLoginId":37,"paypalPublishableKey":37,"merchantAccountId":-1,"stripeAccountId":-1,"isLivePaymentMode":40,"version":687,"funnelSteps":9255,"cartItems":9366,"funnelName":9067,"orderFormVersion":106,"currency":9367,"businessCurrency":9367,"blogSlug":37,"domain":8822,"pageUrl":8823,"pageName":8648,"pageSeo":9368,"affiliateId":-1,"videoExistsInPage":33,"pageType":9369,"contactId":-1,"email":-1,"phone":37,"categoryId":37,"blogSearchTerm":37,"categoryUrlSlug":37,"authorSlug":37,"tagSlug":37,"authorId":37,"defaultPaymentProvider":37,"productCollections":9370,"ecomSelectedCollection":37,"imageOptimizationEnabled":40,"nmiMerchantGatewayId":37,"squareMerchantGatewayId":37,"mercadoPagoUserId":37,"fontsToLoad":9371,"ecomProductId":37,"isGdprCompliant":33,"isOptimisePageLoad":40,"ecommercePage":109,"isBlogActive":33,"blogData":9372,"blogPaths":-1,"blogId":9066,"allowedCookies":9373,"paymentProviderDetails":-1,"events":9374,"searchTerm":37,"countryList":9375,"pixelToInit":9133,"formAction":37,"ecomProduct":9376,"requireCreditCard":40,"haveBlogWidget":33,"isFacebookIAB":33,"userAgent":37,"companyId":9063,"customerLoginToken":37,"cookieConsentList":9377,"cookieConsentExpiry":9378,"mediaFormats":9379,"adyenMerchantGatewayId":37,"webinarProperties":350,"webinarSession":350,"userWebinarSession":350,"mobileVisibilityDelays":9381,"productDetailPageStyles":350,"geoCountry":350,"isCurrencyFormattingEnabled":33},{"typography":9172,"background":9190,"percentWidth":9195,"offsetColor":9229,"progressBarSize":9242},{"fonts":9173,"colors":9183},{"headlineFont":9174,"contentFont":9179},{"id":9175,"text":9176,"value":9177},"headlinefont","Police de titre",{"text":8947,"value":9178},"var(--inter)",{"id":9180,"text":9181,"value":9182},"contentfont","Police du contenu",{"text":8947,"value":9178},{"textColor":9184,"linkColor":9186},{"value":9185},{"label":251,"value":696},{"value":9187},{"label":9188,"value":9189},"var(--blue)","#188bf6",{"bgImage":9191,"backgroundColor":9193},{"value":9192},{"url":37,"options":39},{"value":9194},"var(--white)",[9196,9199,9202,9205,9208,9211,9214,9217,9220,9223,9226],{"text":9197,"value":9198},"0 pourcent","progress0",{"text":9200,"value":9201},"10 pourcent","progress10",{"text":9203,"value":9204},"20 pourcent","progress20",{"text":9206,"value":9207},"30 pour cent","progress30",{"text":9209,"value":9210},"40 pour cent","progress40",{"text":9212,"value":9213},"50 pour cent","progress50",{"text":9215,"value":9216},"60 pourcent","progress60",{"text":9218,"value":9219},"70 pourcent","progress70",{"text":9221,"value":9222},"80 pourcent","progress80",{"text":9224,"value":9225},"90 pourcent","progress90",{"text":9227,"value":9228},"100 pourcent","progress100",[9230,9233,9236,9239],{"text":9231,"value":9232},"Blanc","progressbarOffsetWhite",{"text":9234,"value":9235},"Blanc transparent","progressbarOffsetTransparentWhite",{"text":9237,"value":9238},"Noir","progressbarOffsetBlack",{"text":9240,"value":9241},"Noir transparent","progressbarOffsetTransparentBlack",[9243,9246,9249],{"text":9244,"value":9245},"Petit","progressbarSmall",{"text":9247,"value":9248},"Moyen","progressbarMedium",{"text":9250,"value":9251},"Large","progressbarLarge","gestiontb.ca","\u002Fgestiondimmeuble","m0Snx4RlXn1RRc16DtpA",[9256,9260,9262,9265,9268,9271,9274,9278,9283,9288,9295,9302,9308,9315,9321,9326,9331,9335,9340,9344,9349,9355,9361],{"url":9257,"value":130,"type":9258,"sequence":109,"id":9131,"name":9259,"split":33},"\u002Fpage-dacceuil","optin_funnel_page","Page d'acceuil",{"url":9261,"value":123,"type":9258,"sequence":106,"id":8824,"name":8648},"\u002Flogements-a-louer",{"url":9253,"value":9263,"type":9258,"sequence":521,"id":9254,"name":9264},"90d2f9c0-c86a-431b-aa74-71b3269adce3","Gestion d'immeublebre",{"url":9266,"value":169,"type":9258,"sequence":687,"id":9267,"name":8610},"\u002Fachat-dimmeuble","T4APV68L1dMVJDQ1K75I",{"url":9269,"value":174,"type":9258,"sequence":703,"id":9270,"name":172},"\u002Fa-propos","SGfnXGUZcJDX2HU9HI1c",{"url":9272,"value":180,"type":9258,"sequence":993,"id":9273,"name":8185},"\u002Fnous-contacter","JH6fP4jTQThmQzKZFRx6",{"url":9275,"value":164,"type":9258,"sequence":3274,"id":9276,"name":9277},"\u002Fformlocation","a1vL7SvHZg4tP7m3NfUj","Formulaire de location",{"url":9279,"value":9280,"type":9258,"sequence":6295,"id":9281,"name":9282},"\u002Fpolitiqueconfidentialite","cc19806f-3485-4690-8a00-f70a5c22a21b","19pUO0ETZSrWhEsdpIh1","Politique de confidentialité",{"url":9284,"value":9285,"type":9258,"sequence":9026,"id":9286,"name":9287},"\u002Ftermeetcondition","9cbd9b88-1870-4184-ab92-35b118e08b3d","kzQIqRer7EUOklbuaYiN","Terme et conditions",{"url":9289,"value":9290,"key":9291,"type":9292,"sequence":697,"id":9293,"name":9294},"\u002Fliste-de-produits","964cf1ec-1181-4a9a-8583-41a6f1ac09ff","store-product-list","store","UhaMdNXXfAnnL3mFGYbv","Liste de produits",{"url":9296,"value":9297,"key":9298,"type":9292,"sequence":9299,"id":9300,"name":9301},"\u002Fdtails-du-produit","69f801b1-44f0-4a3f-9fc1-92e98cf74da5","store-product-detail",11,"QJTiA4nlMBIFyvCQr6Wd","Détails du produit",{"url":9303,"value":9304,"key":9305,"type":9292,"sequence":8953,"id":9306,"name":9307},"\u002Fpanier","dd2f9245-0ccd-4c25-9b22-6db3ec1e21ce","store-cart","S9iHsQL3QlbrcDrO9t8L","Panier",{"url":9309,"value":9310,"key":9311,"type":9292,"sequence":9312,"id":9313,"name":9314},"\u002Fsortie-de-caisse","21d32000-3332-40a6-a484-92fba0b74752","store-checkout",13,"MRPvseZQiTi1w1mTCwZj","Sortie de caisse",{"url":9316,"value":9317,"key":9318,"type":9292,"sequence":257,"id":9319,"name":9320},"\u002Fmerci-beaucoup","1f20c216-1867-43b9-a522-54a1cf313466","store-thank-you","gPnoRfjYPcUF3BWt7DC9","Merci beaucoup.",{"url":9322,"value":9323,"type":9258,"sequence":8951,"id":9324,"name":9325},"\u002Fformgestion-684629","98c0814c-1661-457e-8121-a6bb5bd8e180","dA1zkveHFH7ZgfUu3MZs","Formulaire de gestion",{"url":9327,"value":9328,"type":9258,"sequence":9040,"id":9329,"name":9330},"\u002Fformachat-234340","49afff8a-8e07-45b9-95f3-03ee7b1d9f83","ybV2nkGrLNSLp0yd71Bf","Formulaire d'achat",{"url":9332,"value":185,"type":9258,"sequence":9333,"id":9334,"name":189},"\u002Fmaintenance",17,"irwrznZ4XRkCvLIUTVkp",{"url":9336,"value":194,"type":9258,"sequence":9337,"id":9338,"name":9339},"\u002Ffaq-locataire",18,"rgT2cCdorzF5GMizhwpo","FAQ Locataire",{"url":9341,"value":199,"type":9258,"sequence":9342,"id":9343,"name":198},"\u002Fdocuments",19,"d4pVM4LWUI2YcisweswQ",{"url":9345,"value":9346,"type":9258,"sequence":8429,"id":9347,"name":9348},"\u002Fformulaire-de-cession","bd9c9c47-fba8-491a-8b90-23304c60abdd","gnzqY4rSJKzMFRgOTUYd","Cession de bail",{"url":9350,"value":9351,"type":9258,"sequence":9352,"id":9353,"name":9354},"\u002Fdons-commandites","1f5815f0-3d09-40f9-a9f8-c1af480d1a25",21,"CKKgMbQi0vtZkQDsHCQc","Don et Commandite",{"url":9356,"value":9357,"type":9258,"sequence":9358,"id":9359,"name":9360},"\u002F404","8cc1afc9-225e-4138-a33e-8a61909969b6",22,"frrtZTwbpniqytFtvZ0i","Page 404",{"url":9362,"value":929,"type":9258,"sequence":9363,"id":9364,"name":9365,"split":33},"\u002F4623-4625-bd-st-joseph",23,"C7Mo1kPaFwKPxtIOePcQ","4623-4625 Bd St-Joseph",[],"CAD",{"title":8821,"description":8817,"imageUrl":8818},"website",[],[8947,8947],{},[],[],[],{},[9095,9100,9105,9110,9115,9119],["Date","2026-08-22T23:42:03.513Z"],{"formats":9380},[],["Map"],{"pixelID":350,"disabled":33,"track":9037,"version":9383,"isEnabled":40,"pixelLoaded":33,"manualMode":40,"userData":350,"eventsQueue":9384},"2.0",[],[],["Set"],["ShallowReactive",9388],{"pageData":-1}]</script></body></html>
\ No newline at end of file
129 +}</script></head><body><div id="__nuxt"><!--[--><div></div><!--[--><div class="bgCover bg-fixed"></div><div><!--[--><div><!--[--><!----><div class="hl-cookie-consent-banner popup-banner position-center" style="display:none;"><div class="banner-text-container"><p class="banner-text">Nous utilisons des cookies pour améliorer votre expérience sur notre site. En utilisant notre site, vous consentez à l’utilisation des cookies. Le refus des cookies empêchera le chargement des cookies non essentiels. <!----></p></div><div class="banner-actions-container flex"><!----><button class="button primary" id="accept-all">Accepter</button><button class="button secondary">Accepter l&#39;essentiel</button></div></div><!--]--><!----><div><div id="nav-menu-popup" style="display:none;" class="hide"><div class="nav-menu-body"><i class="close-menu fas fa-times"></i><ul class="nav-menu"><!--[--><!--]--></ul></div></div></div><!----><!--[--><!----><!--]--><div id="preview-container" class="preview-container hl_page-preview--content"><div><!----><!--[--><!--[--><div id="section-JEnfcw8zO5" data-animation-class data-entrance-clip="1" style="" class="fullSection noBorder radius0 none c-section c-wrapper section-JEnfcw8zO5 desktop-only mobile-only tablet-hide"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-ufVUOO75V_" data-animation-class data-entrance-clip="1" style="" class="row-align-center noBorder radius0 none c-row c-wrapper row-ufVUOO75V_"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-KIf4Ql0phl" data-animation-class data-entrance-clip="1" style="" class="noBorder radius0 none c-column c-wrapper col-KIf4Ql0phl"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="heading-3uWiOQESsM" data-animation-class style="" class="c-heading c-wrapper"><!----><!----><!----><div class="heading-3uWiOQESsM text-output cheading-3uWiOQESsM noBorder radius0 none" data-animation-class style=""><div><h1>3 <strong>½</strong> À LOUER</h1></div></div><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="section-647pwPWczD" data-animation-class data-entrance-clip="1" style="" class="fullSection true c-section c-wrapper section-647pwPWczD"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-WdC-9fjO44" data-animation-class data-entrance-clip="1" style="" class="row-align-center true c-row c-wrapper row-WdC-9fjO44"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-uqg239Xywm" data-animation-class data-entrance-clip="1" style="" class="true c-column c-wrapper col-uqg239Xywm"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="custom-code-Vsh0VbcMEx" data-animation-class style="" class="c-custom-code c-wrapper custom-code-Vsh0VbcMEx"><!----><!----><!----><!----><!----><!----><!----><span></span><div id="custom-code-Vsh0VbcMEx__custom-code" class="custom-code-container ccustom-code-Vsh0VbcMEx"><!--
130 + GESTION TB — HEADER UNIVERSEL GOHIGHLEVEL
131 + Les URL sont centralisées au début du JavaScript, dans GTB_HEADER_URLS.
132 + Le logo public officiel est configuré directement dans le fragment.
133 +-->
134 +<style>
135 +@font-face {
136 + font-family: "Allura";
137 + font-style: normal;
138 + font-weight: 400;
139 + font-display: swap;
140 + src: url("https://fonts.gstatic.com/s/allura/v23/9oRPNYsQpS4zjuA_iwgWHNn7GQ.woff2") format("woff2");
141 +}
142 +
143 +#gestiontb-header-universel {
144 + position: sticky;
145 + z-index: 1000;
146 + top: 0;
147 + width: 100vw !important;
148 + max-width: none !important;
149 + margin: 0 calc(50% - 50vw) !important;
150 + overflow: visible;
151 + box-sizing: border-box;
152 + border-bottom: 1px solid transparent;
153 + color: #10243d;
154 + background: rgba(255,255,255,.94);
155 + font-family: "Avenir Next World", "Avenir Next", Avenir, "Segoe UI", sans-serif;
156 + font-size: 16px;
157 + line-height: 1.55;
158 + text-align: left;
159 + backdrop-filter: blur(14px);
160 + transition: box-shadow .25s ease, border-color .25s ease;
161 + --gtb-header-berkeley: #163760;
162 + --gtb-header-denim: #005fb5;
163 + --gtb-header-white: #ffffff;
164 + --gtb-header-sky: #f2f7fc;
165 + --gtb-header-line: #d8e3ee;
166 + --gtb-header-shell: 1200px;
167 + --gtb-header-radius: .3rem;
168 + --gtb-header-shadow: 0 14px 36px rgba(22,55,96,.08);
169 +}
170 +#gestiontb-header-universel,
171 +#gestiontb-header-universel *,
172 +#gestiontb-header-universel *::before,
173 +#gestiontb-header-universel *::after { box-sizing: border-box; }
174 +#gestiontb-header-universel.gtb-header-is-scrolled { border-color: var(--gtb-header-line); box-shadow: 0 8px 30px rgba(22,55,96,.07); }
175 +#gestiontb-header-universel .gtb-header-shell { width: min(calc(100% - 3rem), var(--gtb-header-shell)); margin-inline: auto; }
176 +#gestiontb-header-universel .gtb-header-inner { position: relative; display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 2rem; }
177 +#gestiontb-header-universel .gtb-header-brand { display: flex; min-width: 155px; align-items: center; color: inherit; text-decoration: none; }
178 +#gestiontb-header-universel .gtb-header-logo-frame { display: block; width: 192px; height: 55px; }
179 +#gestiontb-header-universel .gtb-header-logo { display: block; width: 192px; height: 55px; max-width: 100%; border: 0; outline: 0; object-fit: contain; pointer-events: none; }
180 +#gestiontb-header-universel .gtb-header-nav,
181 +#gestiontb-header-universel .gtb-header-links { display: flex; align-items: center; }
182 +#gestiontb-header-universel .gtb-header-nav { gap: 1.25rem; }
183 +#gestiontb-header-universel .gtb-header-links { gap: .15rem; margin: 0; padding: 0; list-style: none; }
184 +#gestiontb-header-universel .gtb-header-links a { display: flex; min-height: 44px; align-items: center; padding: .45rem .65rem; border-radius: .35rem; color: #334a63; font-size: .88rem; font-weight: 650; text-decoration: none; }
185 +#gestiontb-header-universel .gtb-header-links a:hover,
186 +#gestiontb-header-universel .gtb-header-links a[aria-current="page"] { color: var(--gtb-header-denim); background: var(--gtb-header-sky); }
187 +#gestiontb-header-universel .gtb-header-links a[data-gtb-header-url="achat"] {
188 + position: relative;
189 +}
190 +#gestiontb-header-universel .gtb-header-links a[data-gtb-header-url="achat"]::after {
191 + position: absolute;
192 + top: 50%;
193 + left: 50%;
194 + color: #005fb5;
195 + content: "Sans commission";
196 + font-family: "Allura", "Snell Roundhand", cursive;
197 + font-size: 1.32rem;
198 + font-weight: 400;
199 + letter-spacing: 0;
200 + line-height: .8;
201 + pointer-events: none;
202 + -webkit-text-stroke: 1.2px #fff;
203 + paint-order: stroke fill;
204 + transform: translate(-50%, 12%);
205 + transform-origin: center;
206 + white-space: nowrap;
207 +}
208 +#gestiontb-header-universel .gtb-header-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .8rem 1.25rem; border: 1px solid transparent; border-radius: var(--gtb-header-radius); color: var(--gtb-header-white); background: var(--gtb-header-berkeley); box-shadow: 0 8px 22px rgba(22,55,96,.2); font-size: .94rem; font-weight: 750; text-decoration: none; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
209 +#gestiontb-header-universel .gtb-header-button:hover { color: var(--gtb-header-white); background: #0d2949; transform: translateY(-2px); }
210 +#gestiontb-header-universel .gtb-header-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--gtb-header-line); border-radius: var(--gtb-header-radius); background: var(--gtb-header-white); }
211 +#gestiontb-header-universel .gtb-header-toggle > span:not(.gtb-header-sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--gtb-header-berkeley); transition: transform .2s ease, opacity .2s ease; }
212 +#gestiontb-header-universel .gtb-header-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
213 +#gestiontb-header-universel :focus-visible { outline: 3px solid #7fc5ff; outline-offset: 3px; border-radius: .2rem; }
214 +@media (max-width: 1100px) {
215 + #gestiontb-header-universel .gtb-header-inner { align-items: flex-start; flex-wrap: wrap; padding-block: .65rem; }
216 + #gestiontb-header-universel .gtb-header-nav { width: 100%; align-items: stretch; flex-direction: column; gap: .7rem; padding: .35rem 0 .75rem; }
217 + #gestiontb-header-universel .gtb-header-links { display: block; width: 100%; }
218 + #gestiontb-header-universel .gtb-header-links a { padding-inline: .8rem; }
219 + #gestiontb-header-universel .gtb-header-links a[data-gtb-header-url="achat"]::after { left: calc(.8rem + 3px); transform: translateY(12%); }
220 + #gestiontb-header-universel .gtb-header-button { width: 100%; }
221 + #gestiontb-header-universel.gtb-header-js .gtb-header-inner { min-height: 78px; align-items: center; flex-wrap: nowrap; padding-block: 0; }
222 + #gestiontb-header-universel.gtb-header-js .gtb-header-toggle { display: block; }
223 + #gestiontb-header-universel.gtb-header-js .gtb-header-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; width: auto; padding: 1rem; border: 1px solid var(--gtb-header-line); border-radius: 0 0 .55rem .55rem; background: var(--gtb-header-white); box-shadow: var(--gtb-header-shadow); }
224 + #gestiontb-header-universel.gtb-header-js .gtb-header-nav.gtb-header-is-open { display: block; }
225 + #gestiontb-header-universel.gtb-header-js .gtb-header-button { margin-top: .7rem; }
226 + #gestiontb-header-universel .gtb-header-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
227 + #gestiontb-header-universel .gtb-header-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
228 + #gestiontb-header-universel .gtb-header-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
229 +}
230 +@media (max-width: 768px) {
231 + #gestiontb-header-universel .gtb-header-shell { width: min(calc(100% - 2rem), var(--gtb-header-shell)); }
232 + #gestiontb-header-universel.gtb-header-js .gtb-header-inner { min-height: 66px; }
233 +}
234 +@media (max-width: 480px) {
235 + #gestiontb-header-universel.gtb-header-js .gtb-header-nav { right: -.25rem; left: -.25rem; }
236 +}
237 +@media (prefers-reduced-motion: reduce) {
238 + #gestiontb-header-universel,
239 + #gestiontb-header-universel * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
240 +}
241 +</style>
242 +
243 +<header id="gestiontb-header-universel">
244 + <div class="gtb-header-shell gtb-header-inner">
245 + <a class="gtb-header-brand" data-gtb-header-url="accueil" href="https://gestiontb.ca/page-dacceuil" aria-label="Retour à l'accueil">
246 + <span class="gtb-header-logo-frame"><img class="gtb-header-logo" src="https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a90cc969a0fb7c669968870.png" alt="Gestion TB" width="3417" height="991"></span>
247 + </a>
248 + <button class="gtb-header-toggle" type="button" aria-expanded="false" aria-controls="gtb-header-navigation" data-gtb-header-menu-button>
249 + <span class="gtb-header-sr-only" data-gtb-header-menu-label>Ouvrir le menu</span><span></span><span></span><span></span>
250 + </button>
251 + <nav class="gtb-header-nav" id="gtb-header-navigation" aria-label="Navigation principale" data-gtb-header-menu>
252 + <ul class="gtb-header-links">
253 + <!-- LIEN NOS PROJETS À AJOUTER -->
254 + <li><a data-gtb-header-url="projets">Nos Projets</a></li>
255 + <li><a data-gtb-header-url="achat" data-gtb-header-page="achat">Achat d’immeuble</a></li>
256 + <li><a data-gtb-header-url="apropos" data-gtb-header-page="apropos">À propos</a></li>
257 + <li><a data-gtb-header-url="contact" data-gtb-header-page="contact">Nous Joindre</a></li>
258 + <li><a data-gtb-header-url="locataire" data-gtb-header-page="locataire">Espace Locataire</a></li>
259 + </ul>
260 + <a class="gtb-header-button" data-gtb-header-url="logements" data-gtb-header-page="logements">Voir les logements</a>
261 + </nav>
262 + </div>
263 +</header>
264 +
265 +<script>
266 +(function () {
267 + "use strict";
268 +
269 + /* URL À MODIFIER ICI UNIQUEMENT */
270 + var GTB_HEADER_URLS = {
271 + accueil: "https://gestiontb.ca/page-dacceuil",
272 + projets: "#", /* LIEN NOS PROJETS À AJOUTER */
273 + achat: "https://gestiontb.ca/achat-dimmeuble",
274 + apropos: "https://gestiontb.ca/a-propos",
275 + contact: "https://gestiontb.ca/nous-contacter",
276 + locataire: "https://gestiontb.ca/maintenance",
277 + logements: "https://gestiontb.ca/logements-a-louer"
278 + };
279 +
280 + var root = document.getElementById("gestiontb-header-universel");
281 + if (!root || root.getAttribute("data-gtb-header-initialized") === "true") return;
282 + root.setAttribute("data-gtb-header-initialized", "true");
283 + root.classList.add("gtb-header-js");
284 +
285 + var links = Array.prototype.slice.call(root.querySelectorAll("[data-gtb-header-url]"));
286 + links.forEach(function (link) {
287 + var key = link.getAttribute("data-gtb-header-url");
288 + var url = GTB_HEADER_URLS[key];
289 + if (!url) return;
290 + link.setAttribute("href", url);
291 + if (url === "#") link.setAttribute("aria-disabled", "true");
292 + });
293 +
294 + root.addEventListener("click", function (event) {
295 + var link = event.target.closest("[data-gtb-header-url]");
296 + if (!link || !root.contains(link)) return;
297 + var url = GTB_HEADER_URLS[link.getAttribute("data-gtb-header-url")];
298 + if (url === "#") event.preventDefault();
299 + });
300 +
301 + var detectActivePage = function () {
302 + var currentPage = null;
303 + if (document.getElementById("gestiontb-a-propos-contenu")) currentPage = "apropos";
304 + else if (document.getElementById("gestiontb-achat-immeuble")) currentPage = "achat";
305 + else if (document.getElementById("gtb-nous-joindre")) currentPage = "contact";
306 + else if (document.getElementById("gtb-espace-locataire")) currentPage = "locataire";
307 + else if (document.getElementById("gestiontb-logements-a-louer")) currentPage = "logements";
308 + else {
309 + var current = window.location.href.toLowerCase();
310 + if (/\/achat-dimmeuble(?:[/?#]|$)/.test(current)) currentPage = "achat";
311 + else if (/\/a-propos(?:[/?#]|$)/.test(current)) currentPage = "apropos";
312 + else if (/\/nous-contacter(?:[/?#]|$)/.test(current)) currentPage = "contact";
313 + else if (/\/maintenance(?:[/?#]|$)/.test(current)) currentPage = "locataire";
314 + else if (/\/logements-a-louer(?:[/?#]|$)/.test(current)) currentPage = "logements";
315 + }
316 + Array.prototype.slice.call(root.querySelectorAll("[data-gtb-header-page]")).forEach(function (link) {
317 + if (link.getAttribute("data-gtb-header-page") === currentPage) link.setAttribute("aria-current", "page");
318 + else link.removeAttribute("aria-current");
319 + });
320 + };
321 + if (document.readyState === "loading") document.addEventListener("DOMContentLoaded", detectActivePage, { once: true });
322 + else detectActivePage();
323 +
324 + var button = root.querySelector("[data-gtb-header-menu-button]");
325 + var menu = root.querySelector("[data-gtb-header-menu]");
326 + if (button && menu) {
327 + var label = button.querySelector("[data-gtb-header-menu-label]");
328 + var isOpen = function () { return button.getAttribute("aria-expanded") === "true"; };
329 + var close = function (focusButton) {
330 + if (!isOpen()) return;
331 + button.setAttribute("aria-expanded", "false");
332 + menu.classList.remove("gtb-header-is-open");
333 + if (label) label.textContent = "Ouvrir le menu";
334 + if (focusButton) button.focus();
335 + };
336 + button.addEventListener("click", function () {
337 + var open = !isOpen();
338 + button.setAttribute("aria-expanded", String(open));
339 + menu.classList.toggle("gtb-header-is-open", open);
340 + if (label) label.textContent = open ? "Fermer le menu" : "Ouvrir le menu";
341 + });
342 + menu.addEventListener("click", function (event) { if (event.target.closest("a")) close(false); });
343 + document.addEventListener("click", function (event) { if (isOpen() && !root.contains(event.target)) close(false); });
344 + document.addEventListener("keydown", function (event) { if (event.key === "Escape") close(true); });
345 + window.addEventListener("resize", function () { if (window.innerWidth > 1100) close(false); });
346 + }
347 +
348 + var updateHeader = function () { root.classList.toggle("gtb-header-is-scrolled", window.scrollY > 10); };
349 + window.addEventListener("scroll", updateHeader, { passive: true });
350 + updateHeader();
351 +})();
352 +</script>
353 +</div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="section-0kjgjk3DFX" data-animation-class data-entrance-clip="1" style="" class="fullSection true c-section c-wrapper section-0kjgjk3DFX"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-DRyw8jyBEZ" data-animation-class data-entrance-clip="1" style="" class="row-align-center true c-row c-wrapper row-DRyw8jyBEZ"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-_QFqrowOWR" data-animation-class data-entrance-clip="1" style="" class="true c-column c-wrapper col-_QFqrowOWR"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="custom-code-WC4M1By6OW" data-animation-class style="" class="c-custom-code c-wrapper custom-code-WC4M1By6OW"><!----><!----><!----><!----><!----><!----><!----><span></span><div id="custom-code-WC4M1By6OW__custom-code" class="custom-code-container ccustom-code-WC4M1By6OW"><!--
354 + GESTION TB — LOGEMENTS À LOUER — CONTENU GOHIGHLEVEL
355 + Fragment autonome : aucun header, aucun footer, aucun fetch et aucun chemin local.
356 + NE PAS MODIFIER LES LOGEMENTS ICI.
357 + Source maître : contenu/logements.js
358 + Régénération : node scripts/generer-exports-logements.js
359 +-->
360 +<style>
361 +/* Composant partagé : cartes, fiche logement et formulaire de location. */
362 +#gestiontb-logements-a-louer button { cursor: pointer; font: inherit; }
363 +#gestiontb-logements-a-louer [hidden] { display: none !important; }
364 +#gestiontb-logements-a-louer :focus-visible { outline: 3px solid #7fc5ff; outline-offset: 3px; }
365 +
366 +/* Même langage visuel que styles/logements.css sur l’Accueil. */
367 +#gestiontb-logements-a-louer .gtb-property { display: flex; height: 100%; overflow: hidden; flex-direction: column; border: 1px solid var(--gtb-rentals-line); border-radius: .55rem; background: var(--gtb-rentals-white); box-shadow: 0 8px 30px rgba(22,55,96,.055); transition: opacity .3s ease, transform .25s ease, box-shadow .25s ease; }
368 +#gestiontb-logements-a-louer .gtb-property.gtb-rentals-card-enter { opacity: 0; transform: translateY(12px); }
369 +#gestiontb-logements-a-louer .gtb-property:hover { transform: translateY(-4px); box-shadow: var(--gtb-rentals-shadow); }
370 +#gestiontb-logements-a-louer .gtb-property__image { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; flex: 0 0 auto; background: var(--gtb-rentals-sky); }
371 +#gestiontb-logements-a-louer .gtb-property__image > img { width: 100%; height: 100%; object-fit: cover; object-position: var(--gtb-image-position, 50% 50%); }
372 +#gestiontb-logements-a-louer .gtb-property__status { position: relative; z-index: 2; display: inline-block; margin: 1rem .25rem 0 1rem; padding: .35rem .55rem; border: 1px solid var(--gtb-rentals-line); border-radius: .2rem; color: var(--gtb-rentals-berkeley); background: var(--gtb-rentals-white); font-size: .72rem; font-weight: 800; }
373 +#gestiontb-logements-a-louer .gtb-property__image > .gtb-property__status { position: relative; }
374 +#gestiontb-logements-a-louer .gtb-property__status--internet { color: #fff; border-color: #005fb5; border-radius: 999px; background: #005fb5; }
375 +#gestiontb-logements-a-louer .gtb-property__photo,
376 +#gestiontb-logements-a-louer .gtb-property__placeholder { position: absolute; inset: 0; }
377 +#gestiontb-logements-a-louer .gtb-property__placeholder { display: grid; place-content: center; padding: 2rem; color: var(--gtb-rentals-berkeley); text-align: center; background: var(--gtb-rentals-sky); }
378 +#gestiontb-logements-a-louer .gtb-property__placeholder::before { position: absolute; inset: 0 18%; border-right: 1px solid rgba(0,95,181,.08); border-left: 1px solid rgba(0,95,181,.08); box-shadow: 80px 0 rgba(0,95,181,.06), -80px 0 rgba(0,95,181,.06); content: ""; }
379 +#gestiontb-logements-a-louer .gtb-property__placeholder > * { position: relative; z-index: 1; }
380 +#gestiontb-logements-a-louer .gtb-property__placeholder span { width: 72px; height: 2px; margin: 0 auto 1rem; background: var(--gtb-rentals-denim); }
381 +#gestiontb-logements-a-louer .gtb-property__placeholder strong { font-size: .95rem; }
382 +#gestiontb-logements-a-louer .gtb-property__body { display: flex; flex: 1; flex-direction: column; padding: 1rem; }
383 +#gestiontb-logements-a-louer .gtb-property__topline { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
384 +#gestiontb-logements-a-louer .gtb-property__type { color: var(--gtb-rentals-denim); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
385 +#gestiontb-logements-a-louer .gtb-property__price { color: var(--gtb-rentals-berkeley); font-size: 1.08rem; font-weight: 850; text-align: right; }
386 +#gestiontb-logements-a-louer .gtb-property h3 { display: -webkit-box; overflow: hidden; margin: .55rem 0 .18rem; color: var(--gtb-rentals-berkeley); font-size: 1.08rem; line-height: 1.2; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
387 +#gestiontb-logements-a-louer .gtb-property__location { overflow: hidden; margin-bottom: .55rem; color: var(--gtb-rentals-muted); font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }
388 +#gestiontb-logements-a-louer .gtb-property__availability { margin: 0 0 .75rem; color: var(--gtb-rentals-denim); font-size: .78rem; font-weight: 700; }
389 +#gestiontb-logements-a-louer .gtb-property__facts { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin: 0 0 1rem; padding: .9rem 0; border-block: 1px solid var(--gtb-rentals-line); color: #314962; font-size: .82rem; }
390 +#gestiontb-logements-a-louer .gtb-property__features { display: flex; min-height: 46px; flex-wrap: wrap; gap: .3rem .45rem; margin: 0 0 1rem; padding: 0; color: #3e566e; list-style: none; }
391 +#gestiontb-logements-a-louer .gtb-property__features li { height: max-content; padding: 0; font-size: .78rem; }
392 +#gestiontb-logements-a-louer .gtb-property__features li + li::before { margin-right: .45rem; color: #91a6ba; content: "·"; }
393 +
394 +#gestiontb-logements-a-louer .gtb-rentals-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .8rem 1.25rem; border: 1px solid transparent; border-radius: .3rem; font-size: .94rem; font-weight: 750; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
395 +#gestiontb-logements-a-louer .gtb-rentals-button:hover { transform: translateY(-2px); }
396 +#gestiontb-logements-a-louer .gtb-rentals-button--primary { color: var(--gtb-rentals-white); background: var(--gtb-rentals-berkeley); box-shadow: 0 8px 22px rgba(22,55,96,.2); }
397 +#gestiontb-logements-a-louer .gtb-rentals-button--secondary { color: var(--gtb-rentals-berkeley); border-color: #a9bdd1; background: var(--gtb-rentals-white); }
398 +#gestiontb-logements-a-louer .gtb-property .gtb-rentals-button { width: 100%; margin-top: auto; }
399 +
400 +body.gtb-property-modal-open { overflow: hidden; }
401 +#gestiontb-logements-a-louer .gtb-property-modal { position: fixed; z-index: 10000; inset: 0; display: grid; place-items: center; padding: 1rem; }
402 +#gestiontb-logements-a-louer .gtb-property-modal__overlay { position: absolute; inset: 0; opacity: 0; background: rgba(7, 24, 43, .72); backdrop-filter: blur(3px); transition: opacity .22s ease; }
403 +#gestiontb-logements-a-louer .gtb-property-modal__dialog { position: relative; z-index: 1; width: min(1120px, calc(100vw - 2rem)); max-height: calc(100dvh - 2rem); overflow-x: hidden; overflow-y: auto; opacity: 0; border: 1px solid rgba(216, 227, 238, .9); border-radius: .8rem; background: var(--gtb-rentals-white); box-shadow: 0 30px 90px rgba(7, 24, 43, .3); transform: translateY(18px); transition: opacity .22s ease, transform .22s ease; overscroll-behavior: contain; }
404 +#gestiontb-logements-a-louer .gtb-property-modal.gtb-is-open .gtb-property-modal__overlay,
405 +#gestiontb-logements-a-louer .gtb-property-modal.gtb-is-open .gtb-property-modal__dialog { opacity: 1; }
406 +#gestiontb-logements-a-louer .gtb-property-modal.gtb-is-open .gtb-property-modal__dialog { transform: translateY(0); }
407 +#gestiontb-logements-a-louer .gtb-property-modal__close { position: absolute; z-index: 5; top: .9rem; right: .9rem; display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid var(--gtb-rentals-line); border-radius: 50%; color: var(--gtb-rentals-berkeley); background: rgba(255,255,255,.96); box-shadow: 0 7px 24px rgba(7,24,43,.14); font-size: 1.8rem; font-weight: 400; line-height: 1; }
408 +#gestiontb-logements-a-louer .gtb-property-modal__top { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); min-height: 550px; }
409 +#gestiontb-logements-a-louer .gtb-property-modal__gallery { min-width: 0; padding: 1.25rem; background: var(--gtb-rentals-sky); }
410 +#gestiontb-logements-a-louer .gtb-property-modal__stage { position: relative; display: grid; min-height: 470px; overflow: hidden; place-items: center; border-radius: .55rem; background: #e8f0f7; touch-action: pan-y; }
411 +#gestiontb-logements-a-louer .gtb-property-modal__stage > img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; object-position: var(--gtb-modal-image-position, 50% 50%); }
412 +#gestiontb-logements-a-louer .gtb-property-modal__placeholder { position: absolute; inset: 0; display: grid; place-content: center; gap: 1rem; color: var(--gtb-rentals-berkeley); text-align: center; }
413 +#gestiontb-logements-a-louer .gtb-property-modal__placeholder span { width: 82px; height: 2px; margin-inline: auto; background: var(--gtb-rentals-denim); }
414 +#gestiontb-logements-a-louer .gtb-property-modal__gallery-button { position: absolute; z-index: 2; top: 50%; display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; color: var(--gtb-rentals-berkeley); background: rgba(255,255,255,.94); box-shadow: 0 5px 18px rgba(7,24,43,.16); font-size: 1.4rem; transform: translateY(-50%); }
415 +#gestiontb-logements-a-louer .gtb-property-modal__gallery-button--prev { left: .8rem; }
416 +#gestiontb-logements-a-louer .gtb-property-modal__gallery-button--next { right: .8rem; }
417 +#gestiontb-logements-a-louer .gtb-property-modal__counter { position: absolute; right: .8rem; bottom: .8rem; margin: 0; padding: .35rem .6rem; border-radius: 999px; color: #fff; background: rgba(7,24,43,.76); font-size: .76rem; font-weight: 750; }
418 +#gestiontb-logements-a-louer .gtb-property-modal__thumbs { display: grid; grid-auto-columns: 76px; grid-auto-flow: column; gap: .55rem; overflow-x: auto; margin-top: .75rem; padding: .1rem .1rem .4rem; }
419 +#gestiontb-logements-a-louer .gtb-property-modal__thumb { width: 76px; height: 62px; overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: .35rem; background: #dce8f2; opacity: .68; }
420 +#gestiontb-logements-a-louer .gtb-property-modal__thumb[aria-current="true"] { border-color: var(--gtb-rentals-denim); opacity: 1; }
421 +#gestiontb-logements-a-louer .gtb-property-modal__thumb img { width: 100%; height: 100%; object-fit: cover; }
422 +#gestiontb-logements-a-louer .gtb-property-modal__summary { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(2rem, 4vw, 3.5rem); }
423 +#gestiontb-logements-a-louer .gtb-property-modal__type { margin-bottom: .7rem; color: var(--gtb-rentals-denim); font-size: .78rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
424 +#gestiontb-logements-a-louer .gtb-property-modal__price { margin-bottom: .85rem; color: var(--gtb-rentals-berkeley); font-size: clamp(1.8rem, 3.4vw, 2.65rem); font-weight: 850; line-height: 1.05; letter-spacing: -.035em; }
425 +#gestiontb-logements-a-louer .gtb-property-modal__summary h2 { margin-bottom: .5rem; color: var(--gtb-rentals-berkeley); font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.08; letter-spacing: -.03em; }
426 +#gestiontb-logements-a-louer .gtb-property-modal__location { margin-bottom: .45rem; color: var(--gtb-rentals-muted); }
427 +#gestiontb-logements-a-louer .gtb-property-modal__availability { margin-bottom: 1.4rem; color: var(--gtb-rentals-denim); font-weight: 750; }
428 +#gestiontb-logements-a-louer .gtb-property-modal__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; margin-bottom: 1.5rem; }
429 +#gestiontb-logements-a-louer .gtb-property-modal__fact { display: flex; min-width: 0; align-items: center; gap: .65rem; padding: .7rem; border: 1px solid var(--gtb-rentals-line); border-radius: .4rem; color: #314962; background: #fbfdff; font-size: .82rem; }
430 +#gestiontb-logements-a-louer .gtb-property-modal__fact svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--gtb-rentals-denim); }
431 +#gestiontb-logements-a-louer .gtb-property-modal__actions { display: grid; gap: .7rem; margin-top: auto; }
432 +#gestiontb-logements-a-louer .gtb-property-modal__actions .gtb-rentals-button { width: 100%; }
433 +#gestiontb-logements-a-louer .gtb-property-modal__contacts { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
434 +#gestiontb-logements-a-louer .gtb-property-modal__contact { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; border: 1px solid var(--gtb-rentals-line); border-radius: .3rem; color: var(--gtb-rentals-berkeley); font-size: .84rem; font-weight: 750; }
435 +#gestiontb-logements-a-louer .gtb-property-modal__details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 2.5rem; padding: clamp(2rem, 4vw, 3.5rem); border-top: 1px solid var(--gtb-rentals-line); }
436 +#gestiontb-logements-a-louer .gtb-property-modal__section { padding: 1.4rem 0; border-bottom: 1px solid var(--gtb-rentals-line); }
437 +#gestiontb-logements-a-louer .gtb-property-modal__section--wide { grid-column: 1 / -1; }
438 +#gestiontb-logements-a-louer .gtb-property-modal__section h3 { margin-bottom: .85rem; color: var(--gtb-rentals-berkeley); font-size: 1.2rem; }
439 +#gestiontb-logements-a-louer .gtb-property-modal__section p { margin-bottom: 0; color: var(--gtb-rentals-muted); }
440 +#gestiontb-logements-a-louer .gtb-property-modal__features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem 1rem; margin: 0; padding: 0; color: #314962; list-style: none; }
441 +#gestiontb-logements-a-louer .gtb-property-modal__features li { position: relative; padding-left: 1rem; }
442 +#gestiontb-logements-a-louer .gtb-property-modal__features li::before { position: absolute; left: 0; color: var(--gtb-rentals-denim); content: "•"; }
443 +#gestiontb-logements-a-louer .gtb-property-modal__address { font-style: normal; color: var(--gtb-rentals-muted); }
444 +
445 +/* Formulaire de location — second modal superposé à la fiche du logement. */
446 +#gestiontb-logements-a-louer .gtb-property-modal.gtb-has-application-open .gtb-property-modal__dialog { overflow: hidden; }
447 +#gestiontb-logements-a-louer .gtb-application-modal { position: fixed; z-index: 10020; inset: 0; display: grid; overflow: hidden; place-items: center; padding: 24px; }
448 +#gestiontb-logements-a-louer .gtb-application-modal__overlay { position: absolute; inset: 0; opacity: 0; background: rgba(7, 24, 43, .64); backdrop-filter: blur(3px); transition: opacity .22s ease; }
449 +#gestiontb-logements-a-louer .gtb-application-modal__dialog { position: relative; z-index: 1; display: flex; width: min(900px, calc(100vw - 48px)); height: calc(100dvh - 48px); max-height: calc(100dvh - 48px); overflow: hidden; flex-direction: column; opacity: 0; border: 1px solid rgba(216, 227, 238, .9); border-radius: 14px; background: var(--gtb-rentals-white); box-shadow: 0 24px 72px rgba(7, 24, 43, .34); transform: translateY(18px); transition: opacity .22s ease, transform .22s ease; overscroll-behavior: contain; }
450 +#gestiontb-logements-a-louer .gtb-application-modal.gtb-is-open .gtb-application-modal__overlay,
451 +#gestiontb-logements-a-louer .gtb-application-modal.gtb-is-open .gtb-application-modal__dialog { opacity: 1; }
452 +#gestiontb-logements-a-louer .gtb-application-modal.gtb-is-open .gtb-application-modal__dialog { transform: translateY(0); }
453 +#gestiontb-logements-a-louer .gtb-application-modal__header { position: sticky; z-index: 3; top: 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.5rem 1.5rem 1.25rem; border-bottom: 1px solid var(--gtb-rentals-line); background: rgba(255, 255, 255, .98); }
454 +#gestiontb-logements-a-louer .gtb-application-modal__header h2 { margin: 0 3rem .35rem 0; color: var(--gtb-rentals-berkeley); font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.1; letter-spacing: -.025em; }
455 +#gestiontb-logements-a-louer .gtb-application-modal__header p { margin: 0; color: var(--gtb-rentals-muted); font-size: .92rem; }
456 +#gestiontb-logements-a-louer .gtb-application-modal__close { position: absolute; top: 1rem; right: 1rem; display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; padding: 0; border: 1px solid var(--gtb-rentals-line); border-radius: 50%; color: var(--gtb-rentals-berkeley); background: #fff; box-shadow: 0 6px 20px rgba(7, 24, 43, .13); font-size: 1.8rem; font-weight: 400; line-height: 1; }
457 +#gestiontb-logements-a-louer .gtb-application-modal__body { width: 100%; min-width: 0; min-height: 0; overflow: hidden; flex: 1 1 auto; padding: .5rem; background: #fff; }
458 +#gestiontb-logements-a-louer .gtb-application-modal__body iframe { display: block; width: 100% !important; height: 100% !important; max-width: 100%; min-height: 0; overflow-y: auto; margin: 0; border: 0; touch-action: pan-y; }
459 +
460 +@media (max-width: 768px) {
461 + #gestiontb-logements-a-louer .gtb-property-modal { overflow-y: auto; place-items: start center; padding: 16px; }
462 + #gestiontb-logements-a-louer .gtb-property-modal__dialog { width: min(100%, 720px); height: auto; max-height: calc(100dvh - 32px); overflow-x: hidden; overflow-y: auto; border: 1px solid rgba(216, 227, 238, .9); border-radius: 14px; box-shadow: 0 18px 55px rgba(7, 24, 43, .28); overscroll-behavior: contain; }
463 + #gestiontb-logements-a-louer .gtb-property-modal__close { position: sticky; top: .65rem; float: right; margin: .65rem .65rem -3.4rem 0; }
464 + #gestiontb-logements-a-louer .gtb-property-modal__top { display: block; min-height: 0; }
465 + #gestiontb-logements-a-louer .gtb-property-modal__gallery { padding: 0; }
466 + #gestiontb-logements-a-louer .gtb-property-modal__stage,
467 + #gestiontb-logements-a-louer .gtb-property-modal__stage > img { min-height: 0; height: min(72vw, 390px); border-radius: 0; }
468 + #gestiontb-logements-a-louer .gtb-property-modal__thumbs { margin: .65rem 1rem 0; }
469 + #gestiontb-logements-a-louer .gtb-property-modal__summary { padding: 2rem 1.25rem; }
470 + #gestiontb-logements-a-louer .gtb-property-modal__details { display: block; padding: 0 1.25rem 2rem; }
471 + #gestiontb-logements-a-louer .gtb-application-modal { place-items: start center; padding: 16px; }
472 + #gestiontb-logements-a-louer .gtb-application-modal__dialog { width: 100%; height: calc(100dvh - 32px); max-height: calc(100dvh - 32px); }
473 + #gestiontb-logements-a-louer .gtb-application-modal__header { padding: 1.2rem 1rem 1rem; }
474 + #gestiontb-logements-a-louer .gtb-application-modal__header h2 { margin-right: 3rem; font-size: 1.35rem; }
475 + #gestiontb-logements-a-louer .gtb-application-modal__header p { font-size: .84rem; }
476 + #gestiontb-logements-a-louer .gtb-application-modal__close { top: .75rem; right: .75rem; }
477 + #gestiontb-logements-a-louer .gtb-application-modal__body { padding: .25rem; }
478 +}
479 +@media (max-width: 560px) {
480 + #gestiontb-logements-a-louer .gtb-property__body { padding: .72rem; }
481 + #gestiontb-logements-a-louer .gtb-property__topline { align-items: flex-start; gap: .4rem; }
482 + #gestiontb-logements-a-louer .gtb-property__type { font-size: .64rem; letter-spacing: .05em; }
483 + #gestiontb-logements-a-louer .gtb-property__price { font-size: .82rem; line-height: 1.15; }
484 + #gestiontb-logements-a-louer .gtb-property h3 { margin-top: .42rem; font-size: .9rem; }
485 + #gestiontb-logements-a-louer .gtb-property__location { margin-bottom: .4rem; font-size: .7rem; }
486 + #gestiontb-logements-a-louer .gtb-property__availability { margin-bottom: .55rem; font-size: .68rem; line-height: 1.25; }
487 + #gestiontb-logements-a-louer .gtb-property .gtb-rentals-button { min-height: 40px; padding: .5rem .55rem; font-size: .74rem; }
488 + #gestiontb-logements-a-louer .gtb-property__status { margin: .55rem .1rem 0 .55rem; padding: .25rem .4rem; font-size: .6rem; }
489 + #gestiontb-logements-a-louer .gtb-property-modal__facts,
490 + #gestiontb-logements-a-louer .gtb-property-modal__features { grid-template-columns: 1fr; }
491 +}
492 +@media (hover: none) {
493 + #gestiontb-logements-a-louer .gtb-property:hover { transform: none; box-shadow: 0 8px 30px rgba(22,55,96,.055); }
494 +}
495 +@media (prefers-reduced-motion: reduce) {
496 + #gestiontb-logements-a-louer .gtb-property,
497 + #gestiontb-logements-a-louer .gtb-property-modal__overlay,
498 + #gestiontb-logements-a-louer .gtb-property-modal__dialog,
499 + #gestiontb-logements-a-louer .gtb-application-modal__overlay,
500 + #gestiontb-logements-a-louer .gtb-application-modal__dialog { opacity: 1 !important; transform: none !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
501 +}
502 +
503 +/* PAGE LOGEMENTS À LOUER — styles isolés et cartes fidèles à l’Accueil */
504 +#gestiontb-logements-a-louer {
505 + position: relative;
506 + width: 100vw;
507 + max-width: none;
508 + margin-right: calc(50% - 50vw);
509 + margin-left: calc(50% - 50vw);
510 + overflow-x: clip;
511 + color: #10243d;
512 + background: #fff;
513 + font-family: "Avenir Next World", "Avenir Next", Avenir, "Segoe UI", sans-serif;
514 + font-size: 16px;
515 + line-height: 1.55;
516 + text-align: left;
517 + --gtb-rentals-berkeley: #163760;
518 + --gtb-rentals-denim: #005fb5;
519 + --gtb-rentals-white: #fff;
520 + --gtb-rentals-ink: #10243d;
521 + --gtb-rentals-muted: #526579;
522 + --gtb-rentals-sky: #f2f7fc;
523 + --gtb-rentals-line: #d8e3ee;
524 + --gtb-rentals-shadow: 0 14px 36px rgba(22,55,96,.08);
525 +}
526 +#gestiontb-logements-a-louer,
527 +#gestiontb-logements-a-louer *,
528 +#gestiontb-logements-a-louer *::before,
529 +#gestiontb-logements-a-louer *::after { box-sizing: border-box; }
530 +#gestiontb-logements-a-louer h1,
531 +#gestiontb-logements-a-louer h2,
532 +#gestiontb-logements-a-louer h3,
533 +#gestiontb-logements-a-louer p { margin-top: 0; }
534 +#gestiontb-logements-a-louer h1,
535 +#gestiontb-logements-a-louer h2,
536 +#gestiontb-logements-a-louer h3 { font-weight: 700; }
537 +#gestiontb-logements-a-louer a { color: inherit; text-decoration: none; }
538 +#gestiontb-logements-a-louer img { display: block; max-width: 100%; }
539 +#gestiontb-logements-a-louer button,
540 +#gestiontb-logements-a-louer input,
541 +#gestiontb-logements-a-louer select { font: inherit; }
542 +#gestiontb-logements-a-louer button { cursor: pointer; }
543 +#gestiontb-logements-a-louer [hidden] { display: none !important; }
544 +#gestiontb-logements-a-louer :focus-visible { outline: 3px solid #7fc5ff; outline-offset: 3px; }
545 +
546 +#gestiontb-logements-a-louer .gtb-rentals-shell { width: min(calc(100% - 3rem), 1200px); margin-inline: auto; }
547 +#gestiontb-logements-a-louer .gtb-rentals-eyebrow { margin-bottom: .8rem; color: var(--gtb-rentals-denim); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
548 +#gestiontb-logements-a-louer .gtb-rentals-eyebrow--light { color: #9fd0ff; }
549 +
550 +#gestiontb-logements-a-louer .gtb-rentals-hero { padding: clamp(3.25rem, 6vw, 5.5rem) 0 clamp(2.75rem, 5vw, 4.25rem); background: var(--gtb-rentals-white); }
551 +#gestiontb-logements-a-louer .gtb-rentals-hero h1 { max-width: 920px; margin-bottom: 1.25rem; color: var(--gtb-rentals-berkeley); font-size: clamp(2.55rem, 5vw, 4.65rem); line-height: 1.02; letter-spacing: -.045em; }
552 +#gestiontb-logements-a-louer .gtb-rentals-hero__lead { max-width: 760px; margin-bottom: 0; color: var(--gtb-rentals-muted); font-size: clamp(1rem, 1.4vw, 1.15rem); }
553 +
554 +#gestiontb-logements-a-louer .gtb-rentals-search { padding-bottom: clamp(3.5rem, 6vw, 5.5rem); background: var(--gtb-rentals-white); }
555 +#gestiontb-logements-a-louer .gtb-rentals-filter-card { padding: clamp(1.35rem, 3vw, 2.25rem); border: 1px solid var(--gtb-rentals-line); border-radius: .75rem; background: var(--gtb-rentals-sky); box-shadow: var(--gtb-rentals-shadow); }
556 +#gestiontb-logements-a-louer .gtb-rentals-filter-heading { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.75rem; }
557 +#gestiontb-logements-a-louer .gtb-rentals-filter-heading h2 { margin-bottom: 0; color: var(--gtb-rentals-berkeley); font-size: clamp(1.55rem, 3vw, 2.2rem); line-height: 1.1; letter-spacing: -.025em; }
558 +#gestiontb-logements-a-louer .gtb-rentals-reset { min-height: 44px; padding: .35rem 0; border: 0; color: var(--gtb-rentals-denim); background: transparent; font-size: .86rem; font-weight: 750; text-decoration: underline; text-underline-offset: .2rem; }
559 +#gestiontb-logements-a-louer .gtb-rentals-form { display: grid; grid-template-columns: minmax(0, 18fr) minmax(0, 24fr) minmax(0, 15fr) minmax(0, 28fr) minmax(0, 15fr); gap: 1.25rem; align-items: start; }
560 +#gestiontb-logements-a-louer .gtb-rentals-field,
561 +#gestiontb-logements-a-louer .gtb-rentals-options { display: flex; min-width: 0; flex-direction: column; }
562 +#gestiontb-logements-a-louer .gtb-rentals-field label,
563 +#gestiontb-logements-a-louer .gtb-rentals-options legend { display: block; width: 100%; min-height: 1.25rem; margin: 0 0 .5rem; padding: 0; color: #314962; font-size: .78rem; font-weight: 750; line-height: 1.25rem; }
564 +#gestiontb-logements-a-louer .gtb-rentals-field input,
565 +#gestiontb-logements-a-louer .gtb-rentals-field select,
566 +#gestiontb-logements-a-louer .gtb-rentals-sort select { width: 100%; min-height: 48px; padding: .7rem .78rem; border: 1px solid #b9cad9; border-radius: .35rem; color: var(--gtb-rentals-ink); background: var(--gtb-rentals-white); }
567 +#gestiontb-logements-a-louer .gtb-rentals-options { margin: 0; padding: 0; border: 0; }
568 +#gestiontb-logements-a-louer .gtb-rentals-pill-list { display: flex; min-height: 48px; flex-wrap: wrap; align-content: flex-start; align-items: flex-start; gap: .4rem; padding: 0; }
569 +#gestiontb-logements-a-louer .gtb-rentals-options--pills label { position: relative; display: block; min-width: 0; cursor: pointer; }
570 +#gestiontb-logements-a-louer .gtb-rentals-options--pills input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
571 +#gestiontb-logements-a-louer .gtb-rentals-options--pills span { display: inline-flex; min-height: 30px; align-items: center; justify-content: center; padding: .34rem .44rem; border: 1px solid #bfd0df; border-radius: 999px; color: #314962; background: #f8fbfe; font-size: .7rem; font-weight: 750; line-height: 1; white-space: nowrap; transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease; }
572 +#gestiontb-logements-a-louer .gtb-rentals-options--pills label:hover span { color: var(--gtb-rentals-berkeley); border-color: #8ba9c3; background: #fff; }
573 +#gestiontb-logements-a-louer .gtb-rentals-options--pills input:checked + span { color: #fff; border-color: var(--gtb-rentals-denim); background: var(--gtb-rentals-denim); box-shadow: 0 4px 12px rgba(0,95,181,.18); }
574 +#gestiontb-logements-a-louer .gtb-rentals-options--pills label:hover input:checked + span { color: #fff; border-color: var(--gtb-rentals-berkeley); background: var(--gtb-rentals-berkeley); }
575 +#gestiontb-logements-a-louer .gtb-rentals-options--pills input:focus-visible + span { outline: 3px solid #7fc5ff; outline-offset: 2px; }
576 +#gestiontb-logements-a-louer .gtb-rentals-field select:focus-visible { outline: 3px solid #7fc5ff; outline-offset: 2px; }
577 +
578 +#gestiontb-logements-a-louer .gtb-rentals-results { min-height: 440px; padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(4.5rem, 8vw, 7.5rem); background: var(--gtb-rentals-white); border-top: 1px solid #edf2f6; }
579 +#gestiontb-logements-a-louer .gtb-rentals-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
580 +#gestiontb-logements-a-louer .gtb-rentals-count { margin-bottom: 0; color: var(--gtb-rentals-berkeley); font-size: clamp(1.45rem, 2.5vw, 2rem); letter-spacing: -.025em; }
581 +#gestiontb-logements-a-louer .gtb-rentals-sort { display: flex; align-items: center; gap: .7rem; }
582 +#gestiontb-logements-a-louer .gtb-rentals-sort label { color: var(--gtb-rentals-muted); font-size: .84rem; font-weight: 700; white-space: nowrap; }
583 +#gestiontb-logements-a-louer .gtb-rentals-sort select { min-width: 180px; }
584 +#gestiontb-logements-a-louer .gtb-rentals-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }
585 +
586 +#gestiontb-logements-a-louer .gtb-rentals-empty { max-width: 720px; margin: 2rem auto 0; padding: clamp(2rem, 5vw, 4rem); border: 1px solid var(--gtb-rentals-line); border-radius: .75rem; text-align: center; background: var(--gtb-rentals-sky); }
587 +#gestiontb-logements-a-louer .gtb-rentals-empty h2 { margin-bottom: 1rem; color: var(--gtb-rentals-berkeley); font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.12; }
588 +#gestiontb-logements-a-louer .gtb-rentals-empty > p:not(.gtb-rentals-eyebrow) { color: var(--gtb-rentals-muted); }
589 +#gestiontb-logements-a-louer .gtb-rentals-empty__actions { display: flex; justify-content: center; gap: .75rem; margin-top: 1.5rem; }
590 +
591 +#gestiontb-logements-a-louer .gtb-rentals-cta { padding: clamp(4rem, 7vw, 6.5rem) 0; color: var(--gtb-rentals-white); background: var(--gtb-rentals-berkeley); }
592 +#gestiontb-logements-a-louer .gtb-rentals-cta__card { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
593 +#gestiontb-logements-a-louer .gtb-rentals-cta h2 { max-width: 700px; margin-bottom: 1rem; color: var(--gtb-rentals-white); font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: -.035em; }
594 +#gestiontb-logements-a-louer .gtb-rentals-cta p:last-child { max-width: 650px; margin-bottom: 0; color: #d6e4f2; }
595 +#gestiontb-logements-a-louer .gtb-rentals-button--light { color: var(--gtb-rentals-berkeley); background: var(--gtb-rentals-white); }
596 +
597 +/* Fiche logement dynamique — un seul composant pour toutes les cartes. */
598 +.gtb-rentals-js #gestiontb-logements-a-louer [data-gtb-rentals-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 560ms cubic-bezier(.22,.61,.36,1), transform 560ms cubic-bezier(.22,.61,.36,1); transition-delay: var(--gtb-rentals-delay, 0ms); }
599 +.gtb-rentals-js #gestiontb-logements-a-louer [data-gtb-rentals-reveal].gtb-is-revealed { opacity: 1; transform: none; }
600 +
601 +@media (max-width: 1100px) {
602 + #gestiontb-logements-a-louer .gtb-rentals-form { grid-template-columns: repeat(3, minmax(0, 1fr)); }
603 + #gestiontb-logements-a-louer .gtb-rentals-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
604 +}
605 +@media (max-width: 820px) {
606 + #gestiontb-logements-a-louer .gtb-rentals-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
607 + #gestiontb-logements-a-louer .gtb-rentals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
608 +}
609 +@media (max-width: 768px) {
610 + #gestiontb-logements-a-louer .gtb-rentals-shell { width: min(calc(100% - 2rem), 1200px); }
611 + #gestiontb-logements-a-louer .gtb-rentals-hero { padding-top: 2.75rem; }
612 + #gestiontb-logements-a-louer .gtb-rentals-filter-heading,
613 + #gestiontb-logements-a-louer .gtb-rentals-toolbar,
614 + #gestiontb-logements-a-louer .gtb-rentals-cta__card { align-items: stretch; flex-direction: column; }
615 + #gestiontb-logements-a-louer .gtb-rentals-filter-heading { display: flex; }
616 + #gestiontb-logements-a-louer .gtb-rentals-reset { align-self: flex-start; }
617 + #gestiontb-logements-a-louer .gtb-rentals-toolbar { display: flex; }
618 + #gestiontb-logements-a-louer .gtb-rentals-sort { justify-content: space-between; }
619 + #gestiontb-logements-a-louer .gtb-rentals-sort select { min-width: 0; }
620 + #gestiontb-logements-a-louer .gtb-rentals-cta__card { display: flex; }
621 + #gestiontb-logements-a-louer .gtb-rentals-button--light { align-self: flex-start; }
622 +}
623 +@media (max-width: 560px) {
624 + #gestiontb-logements-a-louer .gtb-rentals-form { grid-template-columns: 1fr; }
625 + #gestiontb-logements-a-louer .gtb-rentals-empty__actions { align-items: stretch; flex-direction: column; }
626 + #gestiontb-logements-a-louer .gtb-rentals-button--light { width: 100%; }
627 + #gestiontb-logements-a-louer .gtb-rentals-grid { gap: .7rem; }
628 +}
629 +@media (prefers-reduced-motion: reduce) {
630 + .gtb-rentals-js #gestiontb-logements-a-louer [data-gtb-rentals-reveal] { opacity: 1 !important; transform: none !important; transition-duration: .01ms !important; }
631 +}
632 +
633 +
634 +</style>
635 +<main id="gestiontb-logements-a-louer" data-gtb-rentals-root data-gtb-contact-url="/nous-contacter" data-gtb-application-url="/nous-contacter">
636 + <section class="gtb-rentals-hero" aria-labelledby="gtb-rentals-title">
637 + <div class="gtb-rentals-shell">
638 + <p class="gtb-rentals-eyebrow" data-gtb-rentals-reveal>Logements à louer</p>
639 + <h1 id="gtb-rentals-title" data-gtb-rentals-reveal>Logements à louer à Drummondville et les environs</h1>
640 + <p class="gtb-rentals-hero__lead" data-gtb-rentals-reveal>Parcourez nos logements actuellement disponibles à Drummondville et dans les environs. Utilisez les filtres pour trouver plus rapidement une option adaptée à vos besoins.</p>
641 + </div>
642 + </section>
643 +
644 + <section class="gtb-rentals-search" aria-labelledby="gtb-rentals-search-title">
645 + <div class="gtb-rentals-shell">
646 + <div class="gtb-rentals-filter-card" data-gtb-rentals-reveal>
647 + <div class="gtb-rentals-filter-heading">
648 + <div><p class="gtb-rentals-eyebrow">Votre recherche</p><h2 id="gtb-rentals-search-title">Trouvez votre prochain logement.</h2></div>
649 + <button class="gtb-rentals-reset" type="button" data-gtb-reset>Réinitialiser les filtres</button>
650 + </div>
651 +
652 + <form class="gtb-rentals-form" data-gtb-filters>
653 + <div class="gtb-rentals-field">
654 + <label for="gtb-rentals-sector">Secteur</label>
655 + <select id="gtb-rentals-sector" name="sector"><option value="">Tous les secteurs</option></select>
656 + </div>
657 + <fieldset class="gtb-rentals-options gtb-rentals-options--pills">
658 + <legend>Type de logement</legend>
659 + <div class="gtb-rentals-pill-list">
660 + <label><input type="checkbox" name="type" value="2 1/2"><span>2 1/2</span></label>
661 + <label><input type="checkbox" name="type" value="3 1/2"><span>3 1/2</span></label>
662 + <label><input type="checkbox" name="type" value="4 1/2"><span>4 1/2</span></label>
663 + <label><input type="checkbox" name="type" value="5 1/2"><span>5 1/2</span></label>
664 + <label><input type="checkbox" name="type" value="6 1/2"><span>6 1/2</span></label>
665 + </div>
666 + </fieldset>
667 + <div class="gtb-rentals-field">
668 + <label for="gtb-rentals-budget">Budget maximum</label>
669 + <select id="gtb-rentals-budget" name="budget"><option value="">Tous les budgets</option></select>
670 + </div>
671 + <fieldset class="gtb-rentals-options gtb-rentals-options--pills">
672 + <legend>Étage</legend>
673 + <div class="gtb-rentals-pill-list">
674 + <label><input type="checkbox" name="floor" value="Demi sous-sol"><span>Demi sous-sol</span></label>
675 + <label><input type="checkbox" name="floor" value="Rez-de-chaussée"><span>Rez-de-chaussée</span></label>
676 + <label><input type="checkbox" name="floor" value="1er étage"><span>1er étage</span></label>
677 + <label><input type="checkbox" name="floor" value="2e étage"><span>2e étage</span></label>
678 + <label><input type="checkbox" name="floor" value="3e étage"><span>3e étage</span></label>
679 + </div>
680 + </fieldset>
681 + <fieldset class="gtb-rentals-options gtb-rentals-options--pills gtb-rentals-options--animals">
682 + <legend>Animaux</legend>
683 + <div class="gtb-rentals-pill-list"><label><input type="checkbox" name="dog"><span>Chien</span></label><label><input type="checkbox" name="cat"><span>Chat</span></label></div>
684 + </fieldset>
685 + </form>
686 + </div>
687 + </div>
688 + </section>
689 +
690 + <section class="gtb-rentals-results" aria-labelledby="gtb-rentals-results-title">
691 + <div class="gtb-rentals-shell">
692 + <div class="gtb-rentals-toolbar" data-gtb-rentals-reveal>
693 + <h2 class="gtb-rentals-count" id="gtb-rentals-results-title" data-gtb-count aria-live="polite">18 logements trouvés</h2>
694 + <div class="gtb-rentals-sort"><label for="gtb-rentals-sort">Trier par</label><select id="gtb-rentals-sort" data-gtb-sort><option value="recommended">Recommandés</option><option value="price-asc" selected>Prix croissant</option><option value="price-desc">Prix décroissant</option><option value="newest">Nouveautés</option><option value="availability">Disponibilité</option></select></div>
695 + </div>
696 + <div class="gtb-rentals-grid" data-gtb-results><article class="gtb-property" data-gtb-property-id="rue-lindsay-850-01" style="--gtb-image-position:50% 50%">
697 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a846a7e96d2b224d34c0b15.png" alt="Photo du 2 ½ sur rue Lindsay à Drummondville" width="1200" height="900" loading="eager" decoding="async" fetchpriority="high"></div>
698 + <div class="gtb-property__body">
699 + <div class="gtb-property__topline"><span class="gtb-property__type">2 ½</span><span class="gtb-property__price">850 $ / mois</span></div>
700 + <h3>Rue Lindsay</h3>
701 + <p class="gtb-property__location">Centre-ville · Drummondville</p>
702 + <p class="gtb-property__availability">Disponible maintenant</p>
703 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="rue-lindsay-850-01">Voir le logement</button>
704 + </div>
705 +</article>
706 +<article class="gtb-property" data-gtb-property-id="rue-principale-945-24" style="--gtb-image-position:50% 50%">
707 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b456ec94680bcf1b29f8c.png" alt="Photo du 5 ½ sur rue Principale à Saint-Léonard-d’Aston" width="1200" height="900" loading="eager" decoding="async" fetchpriority="high"></div>
708 + <div class="gtb-property__body">
709 + <div class="gtb-property__topline"><span class="gtb-property__type">5 ½</span><span class="gtb-property__price">945 $ / mois</span></div>
710 + <h3>Rue Principale</h3>
711 + <p class="gtb-property__location">Saint-Léonard d&#039;Aston · Saint-Léonard-d’Aston</p>
712 + <p class="gtb-property__availability">Disponible maintenant</p>
713 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="rue-principale-945-24">Voir le logement</button>
714 + </div>
715 +</article>
716 +<article class="gtb-property" data-gtb-property-id="bd-st-joseph-1050-03" style="--gtb-image-position:50% 50%">
717 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb7fe5a8e31f5c776.png" alt="Photo du 4 ½ sur Bd St-Joseph à Drummondville" width="1200" height="900" loading="eager" decoding="async" fetchpriority="high"></div>
718 + <div class="gtb-property__body">
719 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 050 $ / mois</span></div>
720 + <h3>Bd St-Joseph</h3>
721 + <p class="gtb-property__location">Centre-ville · Drummondville</p>
722 + <p class="gtb-property__availability">Disponible le 1er Septembre</p>
723 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="bd-st-joseph-1050-03">Voir le logement</button>
724 + </div>
725 +</article>
726 +<article class="gtb-property" data-gtb-property-id="bd-st-joseph-1095-04" style="--gtb-image-position:50% 50%">
727 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ca7ee68555d6d5f06fc9.png" alt="Photo du 4 ½ sur Bd St-Joseph à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
728 + <div class="gtb-property__body">
729 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 095 $ / mois</span></div>
730 + <h3>Bd St-Joseph</h3>
731 + <p class="gtb-property__location">Centre-ville · Drummondville</p>
732 + <p class="gtb-property__availability">Disponible maintenant</p>
733 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="bd-st-joseph-1095-04">Voir le logement</button>
734 + </div>
735 +</article>
736 +<article class="gtb-property" data-gtb-property-id="bd-st-joseph-1095-05" style="--gtb-image-position:50% 50%">
737 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ccd202832ae8617bac90.png" alt="Photo du 4 ½ sur Bd St-Joseph à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
738 + <div class="gtb-property__body">
739 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 095 $ / mois</span></div>
740 + <h3>Bd St-Joseph</h3>
741 + <p class="gtb-property__location">Centre-ville · Drummondville</p>
742 + <p class="gtb-property__availability">Disponible maintenant</p>
743 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="bd-st-joseph-1095-05">Voir le logement</button>
744 + </div>
745 +</article>
746 +<article class="gtb-property" data-gtb-property-id="boul-st-joseph-1095-14" style="--gtb-image-position:50% 50%">
747 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg" alt="Photo du 4 ½ sur Boul. St-Joseph à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
748 + <div class="gtb-property__body">
749 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 095 $ / mois</span></div>
750 + <h3>Boul. St-Joseph</h3>
751 + <p class="gtb-property__location">Boul. St-Joseph · Drummondville</p>
752 + <p class="gtb-property__availability">Disponible maintenant</p>
753 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="boul-st-joseph-1095-14">Voir le logement</button>
754 + </div>
755 +</article>
756 +<article class="gtb-property" data-gtb-property-id="boul-st-joseph-1095-17" style="--gtb-image-position:50% 50%">
757 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a8c881067bb7ac3516e5330.png" alt="Photo du 4 ½ sur Boul. St-Joseph à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
758 + <div class="gtb-property__body">
759 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 095 $ / mois</span></div>
760 + <h3>Boul. St-Joseph</h3>
761 + <p class="gtb-property__location">Boul. St-Joseph · Drummondville</p>
762 + <p class="gtb-property__availability">Disponible maintenant</p>
763 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="boul-st-joseph-1095-17">Voir le logement</button>
764 + </div>
765 +</article>
766 +<article class="gtb-property" data-gtb-property-id="bd-st-joseph-1100-06" style="--gtb-image-position:50% 50%">
767 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da4.png" alt="Photo du 4 ½ sur Bd St-Joseph à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
768 + <div class="gtb-property__body">
769 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 100 $ / mois</span></div>
770 + <h3>Bd St-Joseph</h3>
771 + <p class="gtb-property__location">Centre-ville · Drummondville</p>
772 + <p class="gtb-property__availability">Disponible maintenant</p>
773 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="bd-st-joseph-1100-06">Voir le logement</button>
774 + </div>
775 +</article>
776 +<article class="gtb-property" data-gtb-property-id="bd-st-joseph-1150-07" style="--gtb-image-position:50% 50%">
777 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7a3a025a64f2b5678d7a8c.png" alt="Photo du 4 ½ sur Bd St-Joseph à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
778 + <div class="gtb-property__body">
779 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 150 $ / mois</span></div>
780 + <h3>Bd St-Joseph</h3>
781 + <p class="gtb-property__location">Centre-ville · Drummondville</p>
782 + <p class="gtb-property__availability">Disponible maintenant</p>
783 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="bd-st-joseph-1150-07">Voir le logement</button>
784 + </div>
785 +</article>
786 +<article class="gtb-property" data-gtb-property-id="boul-st-joseph-1150-12" style="--gtb-image-position:50% 50%">
787 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b3d7f1eb55bdfc319e798.png" alt="Photo du 4 ½ sur Boul. St-Joseph à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
788 + <div class="gtb-property__body">
789 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 150 $ / mois</span></div>
790 + <h3>Boul. St-Joseph</h3>
791 + <p class="gtb-property__location">Boul. St-Joseph · Drummondville</p>
792 + <p class="gtb-property__availability">Disponible maintenant</p>
793 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="boul-st-joseph-1150-12">Voir le logement</button>
794 + </div>
795 +</article>
796 +<article class="gtb-property" data-gtb-property-id="rue-des-ecoles-1155-13" style="--gtb-image-position:50% 50%">
797 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg" alt="Photo du 4 ½ sur rue Des Écoles à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
798 + <div class="gtb-property__body">
799 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 155 $ / mois</span></div>
800 + <h3>Rue Des Écoles</h3>
801 + <p class="gtb-property__location">Centre-ville · Drummondville</p>
802 + <p class="gtb-property__availability">Disponible maintenant</p>
803 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="rue-des-ecoles-1155-13">Voir le logement</button>
804 + </div>
805 +</article>
806 +<article class="gtb-property" data-gtb-property-id="rue-st-henri-1295-27" style="--gtb-image-position:50% 50%">
807 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg" alt="Photo du 5 ½ sur rue St-Henri à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
808 + <div class="gtb-property__body">
809 + <div class="gtb-property__topline"><span class="gtb-property__type">5 ½</span><span class="gtb-property__price">1 295 $ / mois</span></div>
810 + <h3>Rue St-Henri</h3>
811 + <p class="gtb-property__location">St-Pierre · Drummondville</p>
812 + <p class="gtb-property__availability">Disponible immédiatement</p>
813 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="rue-st-henri-1295-27">Voir le logement</button>
814 + </div>
815 +</article>
816 +<article class="gtb-property" data-gtb-property-id="rue-melancon-1335-20" style="--gtb-image-position:50% 50%">
817 + <div class="gtb-property__image"><span class="gtb-property__status gtb-property__status--internet">Internet inclus</span><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b24db10ea24692eaff71a.jpeg" alt="Photo du 4 ½ sur rue Melançon à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
818 + <div class="gtb-property__body">
819 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 335 $ / mois</span></div>
820 + <h3>Rue Melançon</h3>
821 + <p class="gtb-property__location">Centre-ville · Drummondville</p>
822 + <p class="gtb-property__availability">Disponible le 1er Décembre</p>
823 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="rue-melancon-1335-20">Voir le logement</button>
824 + </div>
825 +</article>
826 +<article class="gtb-property" data-gtb-property-id="boul-st-joseph-1350-22" style="--gtb-image-position:50% 50%">
827 + <div class="gtb-property__image"><span class="gtb-property__status gtb-property__status--internet">Internet inclus</span><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg" alt="Photo du 4 ½ sur Boul. St-Joseph à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
828 + <div class="gtb-property__body">
829 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 350 $ / mois</span></div>
830 + <h3>Boul. St-Joseph</h3>
831 + <p class="gtb-property__location">Boul. St-Joseph · Drummondville</p>
832 + <p class="gtb-property__availability">1 logement disponible immédiatement</p>
833 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="boul-st-joseph-1350-22">Voir le logement</button>
834 + </div>
835 +</article>
836 +<article class="gtb-property" data-gtb-property-id="rue-de-l-exposition-1395-28" style="--gtb-image-position:50% 50%">
837 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png" alt="Photo du 5 ½ sur rue de l&#039;Exposition à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
838 + <div class="gtb-property__body">
839 + <div class="gtb-property__topline"><span class="gtb-property__type">5 ½</span><span class="gtb-property__price">1 395 $ / mois</span></div>
840 + <h3>Rue de l&#039;Exposition</h3>
841 + <p class="gtb-property__location">St-Léonard d&#039;Aston · Drummondville</p>
842 + <p class="gtb-property__availability">Disponible immédiatement</p>
843 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="rue-de-l-exposition-1395-28">Voir le logement</button>
844 + </div>
845 +</article>
846 +<article class="gtb-property" data-gtb-property-id="boul-lemire-1405-19" style="--gtb-image-position:50% 50%">
847 + <div class="gtb-property__image"><span class="gtb-property__status gtb-property__status--internet">Internet inclus</span><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png" alt="Photo du 4 ½ sur Boul. Lemire à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
848 + <div class="gtb-property__body">
849 + <div class="gtb-property__topline"><span class="gtb-property__type">4 ½</span><span class="gtb-property__price">1 405 $ / mois</span></div>
850 + <h3>Boul. Lemire</h3>
851 + <p class="gtb-property__location">Boul. Lemire · Drummondville</p>
852 + <p class="gtb-property__availability">Disponible maintenant</p>
853 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="boul-lemire-1405-19">Voir le logement</button>
854 + </div>
855 +</article>
856 +<article class="gtb-property" data-gtb-property-id="boul-foucault-1425-29" style="--gtb-image-position:50% 50%">
857 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b41f2e7701be67b499e67.png" alt="Photo du 5 ½ sur Boul Foucault à Drummondville" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
858 + <div class="gtb-property__body">
859 + <div class="gtb-property__topline"><span class="gtb-property__type">5 ½</span><span class="gtb-property__price">1 425 $ / mois</span></div>
860 + <h3>Boul Foucault</h3>
861 + <p class="gtb-property__location">St-Charles · Drummondville</p>
862 + <p class="gtb-property__availability">Disponible immédiatement</p>
863 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="boul-foucault-1425-29">Voir le logement</button>
864 + </div>
865 +</article>
866 +<article class="gtb-property" data-gtb-property-id="rue-de-l-exposition-1550-32" style="--gtb-image-position:50% 50%">
867 + <div class="gtb-property__image"><img class="gtb-property__photo" src="https://images.leadconnectorhq.com/image/f_webp/q_78/r_900/u_https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg" alt="Photo du 6 ½ sur Rue de l&#039;Exposition à Saint-Léonard-d’Aston" width="1200" height="900" loading="lazy" decoding="async" fetchpriority="auto"></div>
868 + <div class="gtb-property__body">
869 + <div class="gtb-property__topline"><span class="gtb-property__type">6 ½</span><span class="gtb-property__price">1 550 $ / mois</span></div>
870 + <h3>Rue de l&#039;Exposition</h3>
871 + <p class="gtb-property__location">St-Leonard d&#039;Aston · Saint-Léonard-d’Aston</p>
872 + <p class="gtb-property__availability">Disponible maintenant</p>
873 + <button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="rue-de-l-exposition-1550-32">Voir le logement</button>
874 + </div>
875 +</article></div>
876 + <div class="gtb-rentals-empty" data-gtb-empty hidden>
877 + <p class="gtb-rentals-eyebrow">Aucun résultat</p>
878 + <h2>Aucun logement ne correspond à vos critères pour le moment.</h2>
879 + <p>Essayez de modifier vos filtres ou communiquez avec notre équipe.</p>
880 + <div class="gtb-rentals-empty__actions"><button type="button" class="gtb-rentals-button gtb-rentals-button--primary" data-gtb-empty-reset>Réinitialiser les filtres</button><a class="gtb-rentals-button gtb-rentals-button--secondary" data-gtb-contact-link href="nous-joindre.html">Nous joindre</a></div>
881 + </div>
882 + </div>
883 + </section>
884 +
885 + <section class="gtb-rentals-cta" aria-labelledby="gtb-rentals-cta-title">
886 + <div class="gtb-rentals-shell"><div class="gtb-rentals-cta__card" data-gtb-rentals-reveal><div><p class="gtb-rentals-eyebrow gtb-rentals-eyebrow--light">Une question?</p><h2 id="gtb-rentals-cta-title">Parlez-nous du logement que vous recherchez.</h2><p>Notre équipe locale peut répondre à vos questions et vous aider à planifier une visite.</p></div><a class="gtb-rentals-button gtb-rentals-button--light" data-gtb-contact-link href="nous-joindre.html">Nous joindre</a></div></div>
887 + </section>
888 +
889 + <div class="gtb-property-modal" data-gtb-property-modal hidden>
890 + <div class="gtb-property-modal__overlay" data-gtb-modal-overlay></div>
891 + <section class="gtb-property-modal__dialog" role="dialog" aria-modal="true" aria-labelledby="gtb-property-modal-title" tabindex="-1" data-gtb-modal-dialog>
892 + <button class="gtb-property-modal__close" type="button" aria-label="Fermer la fiche du logement" data-gtb-modal-close>×</button>
893 + <div class="gtb-property-modal__content" data-gtb-modal-content></div>
894 + </section>
895 + </div>
896 +
897 + <div class="gtb-application-modal" data-gtb-application-modal hidden>
898 + <div class="gtb-application-modal__overlay" data-gtb-application-overlay></div>
899 + <section class="gtb-application-modal__dialog" role="dialog" aria-modal="true" aria-labelledby="gtb-application-modal-title" tabindex="-1" data-gtb-application-dialog>
900 + <header class="gtb-application-modal__header">
901 + <div>
902 + <h2 id="gtb-application-modal-title">Je suis intéressé par ce logement</h2>
903 + <p>Remplissez le formulaire ci-dessous pour nous transmettre votre demande.</p>
904 + </div>
905 + <button class="gtb-application-modal__close" type="button" aria-label="Fermer le formulaire de location" data-gtb-application-close>×</button>
906 + </header>
907 + <div class="gtb-application-modal__body">
908 + <script type="text/javascript" src="https://form.jotform.com/jsform/241765841204051"></script>
909 + </div>
910 + </section>
911 + </div>
912 + </main>
913 +<script>
914 +window.GTB_LOGEMENTS = [
915 + {
916 + "id": "rue-lindsay-850-01",
917 + "actif": true,
918 + "vedette": true,
919 + "ordre": 10,
920 + "titre": "2 ½ à louer",
921 + "type": "2 1/2",
922 + "typeAffiche": "2 ½",
923 + "prix": 850,
924 + "adresse": "Rue Lindsay",
925 + "ville": "Drummondville",
926 + "secteur": "Drummondville",
927 + "secteurAffiche": "Centre-ville",
928 + "disponibilite": {
929 + "categorie": "maintenant",
930 + "libelle": "Disponible maintenant",
931 + "date": null
932 + },
933 + "etage": "Demi sous-sol",
934 + "chambres": 1,
935 + "sallesDeBain": 1,
936 + "stationnements": null,
937 + "animaux": {
938 + "chat": true,
939 + "chien": true
940 + },
941 + "caracteristiques": [
942 + "Chauffage et électricité à vos frais",
943 + "Près des services"
944 + ],
945 + "badges": [],
946 + "dateAjout": null,
947 + "description": "",
948 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a846a7e96d2b224d34c0b15.png",
949 + "photos": [
950 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a846a7efcf70e56095704d8.png",
951 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a846a7ed1abe28fc9531ec0.png",
952 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a846a7ed1abe28fc9531ec4.png",
953 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a846a7e62d4d706d4c54be8.png"
954 + ],
955 + "imageAlt": "Photo du 2 ½ sur rue Lindsay à Drummondville",
956 + "imagePosition": "50% 50%",
957 + "imageLargeur": 1200,
958 + "imageHauteur": 900,
959 + "urlCandidature": "",
960 + "url": ""
961 + },
962 + {
963 + "id": "rue-principale-945-24",
964 + "actif": true,
965 + "vedette": false,
966 + "ordre": 240,
967 + "titre": "5 ½ à louer",
968 + "type": "5 1/2",
969 + "typeAffiche": "5 ½",
970 + "prix": 945,
971 + "adresse": "Rue Principale",
972 + "ville": "Saint-Léonard-d’Aston",
973 + "secteur": "Saint-Léonard-d'Aston",
974 + "secteurAffiche": "Saint-Léonard d'Aston",
975 + "disponibilite": {
976 + "categorie": "maintenant",
977 + "libelle": "Disponible maintenant",
978 + "date": null
979 + },
980 + "etage": "2e étage",
981 + "chambres": 3,
982 + "sallesDeBain": 1,
983 + "stationnements": 1,
984 + "animaux": {
985 + "chat": true,
986 + "chien": true
987 + },
988 + "caracteristiques": [
989 + "Chauffage et électricité à vos frais",
990 + "Près de tous les services",
991 + "Locker sur balcon"
992 + ],
993 + "badges": [],
994 + "dateAjout": null,
995 + "description": "",
996 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b456ec94680bcf1b29f8c.png",
997 + "photos": [
998 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b456efe4291bd10c62792.png",
999 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b456e1eb55bdfc32f8759.png",
1000 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b456e746f53c63dcca9bc.png",
1001 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b456e9115899f030fd022.png"
1002 + ],
1003 + "imageAlt": "Photo du 5 ½ sur rue Principale à Saint-Léonard-d’Aston",
1004 + "imagePosition": "50% 50%",
1005 + "imageLargeur": 1200,
1006 + "imageHauteur": 900,
1007 + "urlCandidature": "",
1008 + "url": ""
1009 + },
1010 + {
1011 + "id": "bd-st-joseph-1050-03",
1012 + "actif": true,
1013 + "vedette": false,
1014 + "ordre": 30,
1015 + "titre": "4 ½ à louer",
1016 + "type": "4 1/2",
1017 + "typeAffiche": "4 ½",
1018 + "prix": 1050,
1019 + "adresse": "Bd St-Joseph",
1020 + "ville": "Drummondville",
1021 + "secteur": "Drummondville",
1022 + "secteurAffiche": "Centre-ville",
1023 + "disponibilite": {
1024 + "categorie": "date",
1025 + "libelle": "Disponible le 1er Septembre",
1026 + "date": null
1027 + },
1028 + "etage": "Rez-de-chaussée",
1029 + "chambres": 2,
1030 + "sallesDeBain": 1,
1031 + "stationnements": 1,
1032 + "animaux": {
1033 + "chat": true,
1034 + "chien": true
1035 + },
1036 + "caracteristiques": [
1037 + "Chauffage et électricité à vos frais",
1038 + "Près de tous les services",
1039 + "Locker au sous-sol"
1040 + ],
1041 + "badges": [],
1042 + "dateAjout": null,
1043 + "description": "",
1044 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb7fe5a8e31f5c776.png",
1045 + "photos": [
1046 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709e.png",
1047 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6aeb4176d37275a709a.png",
1048 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae3520888034fc86fc.png",
1049 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae609da4cf581c2eda.png",
1050 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a68f6ae8219a56ed33a0796.png"
1051 + ],
1052 + "imageAlt": "Photo du 4 ½ sur Bd St-Joseph à Drummondville",
1053 + "imagePosition": "50% 50%",
1054 + "imageLargeur": 1200,
1055 + "imageHauteur": 900,
1056 + "urlCandidature": "",
1057 + "url": ""
1058 + },
1059 + {
1060 + "id": "bd-st-joseph-1095-04",
1061 + "actif": true,
1062 + "vedette": false,
1063 + "ordre": 40,
1064 + "titre": "4 ½ à louer",
1065 + "type": "4 1/2",
1066 + "typeAffiche": "4 ½",
1067 + "prix": 1095,
1068 + "adresse": "Bd St-Joseph",
1069 + "ville": "Drummondville",
1070 + "secteur": "Drummondville",
1071 + "secteurAffiche": "Centre-ville",
1072 + "disponibilite": {
1073 + "categorie": "maintenant",
1074 + "libelle": "Disponible maintenant",
1075 + "date": null
1076 + },
1077 + "etage": "Demi sous-sol",
1078 + "chambres": 2,
1079 + "sallesDeBain": 1,
1080 + "stationnements": 1,
1081 + "animaux": {
1082 + "chat": true,
1083 + "chien": true
1084 + },
1085 + "caracteristiques": [
1086 + "Chauffage et électricité à vos frais",
1087 + "Locker",
1088 + "Près de tous les services"
1089 + ],
1090 + "badges": [],
1091 + "dateAjout": null,
1092 + "description": "",
1093 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ca7ee68555d6d5f06fc9.png",
1094 + "photos": [
1095 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ca7e70fc5d91f5b3723f.png",
1096 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ca7e648f56e7e4364214.png",
1097 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ca7ee68555d6d5f06fc0.png",
1098 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ca7e276f28ee5392c6ce.png"
1099 + ],
1100 + "imageAlt": "Photo du 4 ½ sur Bd St-Joseph à Drummondville",
1101 + "imagePosition": "50% 50%",
1102 + "imageLargeur": 1200,
1103 + "imageHauteur": 900,
1104 + "urlCandidature": "",
1105 + "url": ""
1106 + },
1107 + {
1108 + "id": "bd-st-joseph-1095-05",
1109 + "actif": true,
1110 + "vedette": false,
1111 + "ordre": 50,
1112 + "titre": "4 ½ à louer",
1113 + "type": "4 1/2",
1114 + "typeAffiche": "4 ½",
1115 + "prix": 1095,
1116 + "adresse": "Bd St-Joseph",
1117 + "ville": "Drummondville",
1118 + "secteur": "Drummondville",
1119 + "secteurAffiche": "Centre-ville",
1120 + "disponibilite": {
1121 + "categorie": "maintenant",
1122 + "libelle": "Disponible maintenant",
1123 + "date": null
1124 + },
1125 + "etage": "Rez-de-chaussée",
1126 + "chambres": 2,
1127 + "sallesDeBain": 1,
1128 + "stationnements": 1,
1129 + "animaux": {
1130 + "chat": true,
1131 + "chien": true
1132 + },
1133 + "caracteristiques": [
1134 + "Chauffage et électricité à vos frais",
1135 + "Grand sous-sol",
1136 + "Près de tous les services"
1137 + ],
1138 + "badges": [],
1139 + "dateAjout": null,
1140 + "description": "",
1141 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ccd202832ae8617bac90.png",
1142 + "photos": [
1143 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ccd23f5a7cedaaf38954.png",
1144 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ccd202832ae8617bac99.png",
1145 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ccd22abe62a97cf5b611.png",
1146 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a95ccd2d931dc07514536be.png"
1147 + ],
1148 + "imageAlt": "Photo du 4 ½ sur Bd St-Joseph à Drummondville",
1149 + "imagePosition": "50% 50%",
1150 + "imageLargeur": 1200,
1151 + "imageHauteur": 900,
1152 + "urlCandidature": "",
1153 + "url": ""
1154 + },
1155 + {
1156 + "id": "boul-st-joseph-1095-14",
1157 + "actif": true,
1158 + "vedette": false,
1159 + "ordre": 140,
1160 + "titre": "4 ½ à louer",
1161 + "type": "4 1/2",
1162 + "typeAffiche": "4 ½",
1163 + "prix": 1095,
1164 + "adresse": "Boul. St-Joseph",
1165 + "ville": "Drummondville",
1166 + "secteur": "Drummondville",
1167 + "secteurAffiche": "Boul. St-Joseph",
1168 + "disponibilite": {
1169 + "categorie": "maintenant",
1170 + "libelle": "Disponible maintenant",
1171 + "date": null
1172 + },
1173 + "etage": "Demi sous-sol",
1174 + "chambres": 2,
1175 + "sallesDeBain": 1,
1176 + "stationnements": 1,
1177 + "animaux": {
1178 + "chat": true,
1179 + "chien": true
1180 + },
1181 + "caracteristiques": [
1182 + "Chauffage et électricité inclus",
1183 + "Près de tous les services"
1184 + ],
1185 + "badges": [],
1186 + "dateAjout": null,
1187 + "description": "",
1188 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b337b27bbbe919cc6.jpg",
1189 + "photos": [
1190 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b4c3d544bf1a50bb4.jpg",
1191 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668bd29234e16dc1c04d.jpg",
1192 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69cd668b02c31a7784478311.jpg"
1193 + ],
1194 + "imageAlt": "Photo du 4 ½ sur Boul. St-Joseph à Drummondville",
1195 + "imagePosition": "50% 50%",
1196 + "imageLargeur": 1200,
1197 + "imageHauteur": 900,
1198 + "urlCandidature": "",
1199 + "url": ""
1200 + },
1201 + {
1202 + "id": "boul-st-joseph-1095-17",
1203 + "actif": true,
1204 + "vedette": false,
1205 + "ordre": 170,
1206 + "titre": "4 ½ à louer",
1207 + "type": "4 1/2",
1208 + "typeAffiche": "4 ½",
1209 + "prix": 1095,
1210 + "adresse": "Boul. St-Joseph",
1211 + "ville": "Drummondville",
1212 + "secteur": "Drummondville",
1213 + "secteurAffiche": "Boul. St-Joseph",
1214 + "disponibilite": {
1215 + "categorie": "maintenant",
1216 + "libelle": "Disponible maintenant",
1217 + "date": null
1218 + },
1219 + "etage": "3e étage",
1220 + "chambres": 2,
1221 + "sallesDeBain": 1,
1222 + "stationnements": 1,
1223 + "animaux": {
1224 + "chat": true,
1225 + "chien": true
1226 + },
1227 + "caracteristiques": [
1228 + "Chauffage et électricité à vos frais",
1229 + "Près de tous les services"
1230 + ],
1231 + "badges": [],
1232 + "dateAjout": null,
1233 + "description": "",
1234 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a8c881067bb7ac3516e5330.png",
1235 + "photos": [
1236 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a8c881bbbd5ecc97fbf0694.png",
1237 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a8c881b67bb7ac3516e5475.png",
1238 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a8c88101ef69607796a33eb.png",
1239 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a8c88101ef69607796a33f0.png",
1240 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a8c8810ad59e6cfed6c280d.png",
1241 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a8c8811cdd4b797a373d6cf.png"
1242 + ],
1243 + "imageAlt": "Photo du 4 ½ sur Boul. St-Joseph à Drummondville",
1244 + "imagePosition": "50% 50%",
1245 + "imageLargeur": 1200,
1246 + "imageHauteur": 900,
1247 + "urlCandidature": "",
1248 + "url": ""
1249 + },
1250 + {
1251 + "id": "bd-st-joseph-1100-06",
1252 + "actif": true,
1253 + "vedette": false,
1254 + "ordre": 60,
1255 + "titre": "4 ½ à louer",
1256 + "type": "4 1/2",
1257 + "typeAffiche": "4 ½",
1258 + "prix": 1100,
1259 + "adresse": "Bd St-Joseph",
1260 + "ville": "Drummondville",
1261 + "secteur": "Drummondville",
1262 + "secteurAffiche": "Centre-ville",
1263 + "disponibilite": {
1264 + "categorie": "maintenant",
1265 + "libelle": "Disponible maintenant",
1266 + "date": null
1267 + },
1268 + "etage": "Rez-de-chaussée",
1269 + "chambres": 2,
1270 + "sallesDeBain": 1,
1271 + "stationnements": 1,
1272 + "animaux": {
1273 + "chat": true,
1274 + "chien": true
1275 + },
1276 + "caracteristiques": [
1277 + "Chauffage et électricité à vos frais",
1278 + "Près de tous les services",
1279 + "Locker au sous-sol"
1280 + ],
1281 + "badges": [],
1282 + "dateAjout": null,
1283 + "description": "",
1284 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da4.png",
1285 + "photos": [
1286 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09dae.png",
1287 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68eab5cbf799a011b03.png",
1288 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e1dd882f807a09da9.png",
1289 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68e5e892103d4821ec7.png",
1290 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60f68ede69375f6a65816f.png"
1291 + ],
1292 + "imageAlt": "Photo du 4 ½ sur Bd St-Joseph à Drummondville",
1293 + "imagePosition": "50% 50%",
1294 + "imageLargeur": 1200,
1295 + "imageHauteur": 900,
1296 + "urlCandidature": "",
1297 + "url": ""
1298 + },
1299 + {
1300 + "id": "bd-st-joseph-1150-07",
1301 + "actif": true,
1302 + "vedette": false,
1303 + "ordre": 70,
1304 + "titre": "4 ½ à louer",
1305 + "type": "4 1/2",
1306 + "typeAffiche": "4 ½",
1307 + "prix": 1150,
1308 + "adresse": "Bd St-Joseph",
1309 + "ville": "Drummondville",
1310 + "secteur": "Drummondville",
1311 + "secteurAffiche": "Centre-ville",
1312 + "disponibilite": {
1313 + "categorie": "maintenant",
1314 + "libelle": "Disponible maintenant",
1315 + "date": null
1316 + },
1317 + "etage": "2e étage",
1318 + "chambres": 2,
1319 + "sallesDeBain": 1,
1320 + "stationnements": 1,
1321 + "animaux": {
1322 + "chat": true,
1323 + "chien": true
1324 + },
1325 + "caracteristiques": [
1326 + "Chauffage et électricité à vos frais",
1327 + "Locker sur balcon",
1328 + "Près de tous les services"
1329 + ],
1330 + "badges": [],
1331 + "dateAjout": null,
1332 + "description": "",
1333 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7a3a025a64f2b5678d7a8c.png",
1334 + "photos": [
1335 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7a3a025a64f2b5678d7a91.png",
1336 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7a3a029a9c7792eaf7f99c.png",
1337 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7a3a025a64f2b5678d7a87.png",
1338 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7a3a02157190b359e4df01.png",
1339 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7a3a025c7fc4f61f41d5fa.png"
1340 + ],
1341 + "imageAlt": "Photo du 4 ½ sur Bd St-Joseph à Drummondville",
1342 + "imagePosition": "50% 50%",
1343 + "imageLargeur": 1200,
1344 + "imageHauteur": 900,
1345 + "urlCandidature": "",
1346 + "url": ""
1347 + },
1348 + {
1349 + "id": "boul-st-joseph-1150-12",
1350 + "actif": true,
1351 + "vedette": false,
1352 + "ordre": 120,
1353 + "titre": "4 ½ à louer",
1354 + "type": "4 1/2",
1355 + "typeAffiche": "4 ½",
1356 + "prix": 1150,
1357 + "adresse": "Boul. St-Joseph",
1358 + "ville": "Drummondville",
1359 + "secteur": "Drummondville",
1360 + "secteurAffiche": "Boul. St-Joseph",
1361 + "disponibilite": {
1362 + "categorie": "maintenant",
1363 + "libelle": "Disponible maintenant",
1364 + "date": null
1365 + },
1366 + "etage": "2e étage",
1367 + "chambres": 2,
1368 + "sallesDeBain": 1,
1369 + "stationnements": 2,
1370 + "animaux": {
1371 + "chat": true,
1372 + "chien": true
1373 + },
1374 + "caracteristiques": [
1375 + "Chauffage et électricité inclus",
1376 + "Près de tous les services",
1377 + "Remise"
1378 + ],
1379 + "badges": [],
1380 + "dateAjout": null,
1381 + "description": "",
1382 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b3d7f1eb55bdfc319e798.png",
1383 + "photos": [
1384 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b3d7f746f53c63db9b584.png",
1385 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b3d7f72de28e6e8457cd2.png",
1386 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b3d7f1eb55bdfc319e793.png",
1387 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b3d7f4e002388f44a67f1.png"
1388 + ],
1389 + "imageAlt": "Photo du 4 ½ sur Boul. St-Joseph à Drummondville",
1390 + "imagePosition": "50% 50%",
1391 + "imageLargeur": 1200,
1392 + "imageHauteur": 900,
1393 + "urlCandidature": "",
1394 + "url": ""
1395 + },
1396 + {
1397 + "id": "rue-des-ecoles-1155-13",
1398 + "actif": true,
1399 + "vedette": false,
1400 + "ordre": 130,
1401 + "titre": "4 ½ à louer",
1402 + "type": "4 1/2",
1403 + "typeAffiche": "4 ½",
1404 + "prix": 1155,
1405 + "adresse": "Rue Des Écoles",
1406 + "ville": "Drummondville",
1407 + "secteur": "Drummondville",
1408 + "secteurAffiche": "Centre-ville",
1409 + "disponibilite": {
1410 + "categorie": "maintenant",
1411 + "libelle": "Disponible maintenant",
1412 + "date": null
1413 + },
1414 + "etage": "3e étage",
1415 + "chambres": 2,
1416 + "sallesDeBain": 1,
1417 + "stationnements": 1,
1418 + "animaux": {
1419 + "chat": true,
1420 + "chien": true
1421 + },
1422 + "caracteristiques": [
1423 + "Chauffage et électricité à vos frais",
1424 + "Locker sur balcon",
1425 + "Près de tous les services"
1426 + ],
1427 + "badges": [],
1428 + "dateAjout": null,
1429 + "description": "",
1430 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f6fa658c730bf2bcf.jpeg",
1431 + "photos": [
1432 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2fc7e71f52c4d3ecb2.jpeg",
1433 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f1cdebbc37d.jpeg",
1434 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f7bdf389290424619.jpeg",
1435 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f36702f2ce1bbc37e.jpeg",
1436 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a87c2f4dd428d6a997568d.jpeg"
1437 + ],
1438 + "imageAlt": "Photo du 4 ½ sur rue Des Écoles à Drummondville",
1439 + "imagePosition": "50% 50%",
1440 + "imageLargeur": 1200,
1441 + "imageHauteur": 900,
1442 + "urlCandidature": "",
1443 + "url": ""
1444 + },
1445 + {
1446 + "id": "rue-st-henri-1295-27",
1447 + "actif": true,
1448 + "vedette": false,
1449 + "ordre": 270,
1450 + "titre": "5 ½ à louer",
1451 + "type": "5 1/2",
1452 + "typeAffiche": "5 ½",
1453 + "prix": 1295,
1454 + "adresse": "Rue St-Henri",
1455 + "ville": "Drummondville",
1456 + "secteur": "Drummondville",
1457 + "secteurAffiche": "St-Pierre",
1458 + "disponibilite": {
1459 + "categorie": "maintenant",
1460 + "libelle": "Disponible immédiatement",
1461 + "date": null
1462 + },
1463 + "etage": "3e étage",
1464 + "chambres": 3,
1465 + "sallesDeBain": 1,
1466 + "stationnements": 1,
1467 + "animaux": {
1468 + "chat": true,
1469 + "chien": true
1470 + },
1471 + "caracteristiques": [
1472 + "Chauffage et électricité à vos frais",
1473 + "Locker sur balcon",
1474 + "Secteur familial"
1475 + ],
1476 + "badges": [],
1477 + "dateAjout": null,
1478 + "description": "",
1479 + "photoPrincipale": "https://storage.googleapis.com/msgsndr/9ubT2smip23BapsK3KeE/media/696691e39a690c2e02f2ed06.jpeg",
1480 + "photos": [
1481 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee0523955e9e78.jpeg",
1482 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29dcb75ee054ae85e9751.jpeg",
1483 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df181b3746dcda3c17c.jpeg",
1484 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df1ad1400575a3f78ca.jpeg",
1485 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69c29df175ee05acb35e9e79.jpeg"
1486 + ],
1487 + "imageAlt": "Photo du 5 ½ sur rue St-Henri à Drummondville",
1488 + "imagePosition": "50% 50%",
1489 + "imageLargeur": 1200,
1490 + "imageHauteur": 900,
1491 + "urlCandidature": "",
1492 + "url": ""
1493 + },
1494 + {
1495 + "id": "rue-melancon-1335-20",
1496 + "actif": true,
1497 + "vedette": false,
1498 + "ordre": 200,
1499 + "titre": "4 ½ à louer",
1500 + "type": "4 1/2",
1501 + "typeAffiche": "4 ½",
1502 + "prix": 1335,
1503 + "adresse": "Rue Melançon",
1504 + "ville": "Drummondville",
1505 + "secteur": "Drummondville",
1506 + "secteurAffiche": "Centre-ville",
1507 + "disponibilite": {
1508 + "categorie": "date",
1509 + "libelle": "Disponible le 1er Décembre",
1510 + "date": null
1511 + },
1512 + "etage": "Demi sous-sol",
1513 + "chambres": 2,
1514 + "sallesDeBain": 1,
1515 + "stationnements": 1,
1516 + "animaux": {
1517 + "chat": true,
1518 + "chien": true
1519 + },
1520 + "caracteristiques": [
1521 + "Chauffage et électricité à vos frais",
1522 + "Internet compris",
1523 + "Thermopompe et échangeur d’air",
1524 + "Immeuble neuf"
1525 + ],
1526 + "badges": [],
1527 + "dateAjout": null,
1528 + "description": "",
1529 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b24db10ea24692eaff71a.jpeg",
1530 + "photos": [
1531 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b24dbe143fb16e610e93c.jpeg",
1532 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b24db1eb55bdfc3b9513f.jpeg",
1533 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b24db1eb55bdfc3b9513a.jpeg",
1534 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b24db9115899f03a733a5.jpeg",
1535 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b24dbbf7d6aa93910363b.jpeg"
1536 + ],
1537 + "imageAlt": "Photo du 4 ½ sur rue Melançon à Drummondville",
1538 + "imagePosition": "50% 50%",
1539 + "imageLargeur": 1200,
1540 + "imageHauteur": 900,
1541 + "urlCandidature": "",
1542 + "url": ""
1543 + },
1544 + {
1545 + "id": "boul-st-joseph-1350-22",
1546 + "actif": true,
1547 + "vedette": true,
1548 + "ordre": 220,
1549 + "titre": "4 ½ à louer",
1550 + "type": "4 1/2",
1551 + "typeAffiche": "4 ½",
1552 + "prix": 1350,
1553 + "adresse": "Boul. St-Joseph",
1554 + "ville": "Drummondville",
1555 + "secteur": "Drummondville",
1556 + "secteurAffiche": "Boul. St-Joseph",
1557 + "disponibilite": {
1558 + "categorie": "maintenant",
1559 + "libelle": "1 logement disponible immédiatement",
1560 + "date": null
1561 + },
1562 + "etage": "",
1563 + "etageAffiche": "Demi sous-sol et 3e étage",
1564 + "chambres": 2,
1565 + "sallesDeBain": 1,
1566 + "stationnements": 1,
1567 + "animaux": {
1568 + "chat": true,
1569 + "chien": true
1570 + },
1571 + "caracteristiques": [
1572 + "Chauffage et électricité à vos frais",
1573 + "Internet compris",
1574 + "Thermopompe et échangeur d’air",
1575 + "Immeuble neuf",
1576 + "Locker intérieur"
1577 + ],
1578 + "badges": [],
1579 + "dateAjout": null,
1580 + "description": "",
1581 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d22141b10653184b5.jpg",
1582 + "photos": [
1583 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d0196d39145.jpg",
1584 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d36702fa8fbc32f55.jpg",
1585 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d7bdf384f6d49d010.jpg",
1586 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d618c8d4b0ed39146.jpg",
1587 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a89b6d6fa658449cc6dadc.jpg"
1588 + ],
1589 + "imageAlt": "Photo du 4 ½ sur Boul. St-Joseph à Drummondville",
1590 + "imagePosition": "50% 50%",
1591 + "imageLargeur": 1200,
1592 + "imageHauteur": 900,
1593 + "urlCandidature": "",
1594 + "url": ""
1595 + },
1596 + {
1597 + "id": "rue-de-l-exposition-1395-28",
1598 + "actif": true,
1599 + "vedette": false,
1600 + "ordre": 280,
1601 + "titre": "5 ½ à louer",
1602 + "type": "5 1/2",
1603 + "typeAffiche": "5 ½",
1604 + "prix": 1395,
1605 + "adresse": "Rue de l'Exposition",
1606 + "ville": "Drummondville",
1607 + "secteur": "Saint-Léonard-d'Aston",
1608 + "secteurAffiche": "St-Léonard d'Aston",
1609 + "disponibilite": {
1610 + "categorie": "maintenant",
1611 + "libelle": "Disponible immédiatement",
1612 + "date": null
1613 + },
1614 + "etage": "3e étage",
1615 + "chambres": 3,
1616 + "sallesDeBain": 1,
1617 + "stationnements": 1,
1618 + "animaux": {
1619 + "chat": true,
1620 + "chien": true
1621 + },
1622 + "caracteristiques": [
1623 + "Chauffage et électricité à vos frais",
1624 + "Remise",
1625 + "Thermopompe et échangeur d’air"
1626 + ],
1627 + "badges": [],
1628 + "dateAjout": null,
1629 + "description": "",
1630 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6c1.png",
1631 + "photos": [
1632 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2544497f2c4a631b7a.png",
1633 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea25de69375f6a5c5f96.png",
1634 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea255e892103d47af021.png",
1635 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2c03e461bae0ade792.png",
1636 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2581877afd27bd4b1e.png",
1637 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a60ea2503e461bae0ade6bc.png"
1638 + ],
1639 + "imageAlt": "Photo du 5 ½ sur rue de l'Exposition à Drummondville",
1640 + "imagePosition": "50% 50%",
1641 + "imageLargeur": 1200,
1642 + "imageHauteur": 900,
1643 + "urlCandidature": "",
1644 + "url": ""
1645 + },
1646 + {
1647 + "id": "boul-lemire-1405-19",
1648 + "actif": true,
1649 + "vedette": true,
1650 + "ordre": 190,
1651 + "titre": "4 ½ à louer",
1652 + "type": "4 1/2",
1653 + "typeAffiche": "4 ½",
1654 + "prix": 1405,
1655 + "adresse": "Boul. Lemire",
1656 + "ville": "Drummondville",
1657 + "secteur": "Drummondville",
1658 + "secteurAffiche": "Boul. Lemire",
1659 + "disponibilite": {
1660 + "categorie": "maintenant",
1661 + "libelle": "Disponible maintenant",
1662 + "date": null
1663 + },
1664 + "etage": "",
1665 + "etageAffiche": "Étages variés",
1666 + "chambres": 2,
1667 + "sallesDeBain": 1,
1668 + "stationnements": 1,
1669 + "animaux": {
1670 + "chat": true,
1671 + "chien": true
1672 + },
1673 + "caracteristiques": [
1674 + "Chauffage et électricité à vos frais",
1675 + "Internet compris",
1676 + "Thermopompe et échangeur d’air",
1677 + "Immeuble récent"
1678 + ],
1679 + "badges": [],
1680 + "dateAjout": null,
1681 + "description": "",
1682 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a87bdf3881a947965d.png",
1683 + "photos": [
1684 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a822141b0c4c2f3dd0.png",
1685 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a8edd087a4ba1d9de5.png",
1686 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf00ef8316b0.png",
1687 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadfde998316db.png",
1688 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a9bffadf43b28316bd.png",
1689 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69a890a836702f3857c10c06.png"
1690 + ],
1691 + "imageAlt": "Photo du 4 ½ sur Boul. Lemire à Drummondville",
1692 + "imagePosition": "50% 50%",
1693 + "imageLargeur": 1200,
1694 + "imageHauteur": 900,
1695 + "urlCandidature": "",
1696 + "url": ""
1697 + },
1698 + {
1699 + "id": "boul-foucault-1425-29",
1700 + "actif": true,
1701 + "vedette": false,
1702 + "ordre": 290,
1703 + "titre": "5 ½ à louer",
1704 + "type": "5 1/2",
1705 + "typeAffiche": "5 ½",
1706 + "prix": 1425,
1707 + "adresse": "Boul Foucault",
1708 + "ville": "Drummondville",
1709 + "secteur": "Drummondville",
1710 + "secteurAffiche": "St-Charles",
1711 + "disponibilite": {
1712 + "categorie": "maintenant",
1713 + "libelle": "Disponible immédiatement",
1714 + "date": null
1715 + },
1716 + "etage": "3e étage",
1717 + "chambres": 3,
1718 + "sallesDeBain": 1,
1719 + "stationnements": 1,
1720 + "animaux": {
1721 + "chat": true,
1722 + "chien": true
1723 + },
1724 + "caracteristiques": [
1725 + "Chauffage et électricité à vos frais",
1726 + "Thermopompe et échangeur d’air"
1727 + ],
1728 + "badges": [],
1729 + "dateAjout": null,
1730 + "description": "",
1731 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b41f2e7701be67b499e67.png",
1732 + "photos": [
1733 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b41f20faacaac56168282.png",
1734 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b41f2746f53c63dc25b5b.png",
1735 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b41f20faacaac56168298.png",
1736 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b41f9fe4291bd10bb601d.png",
1737 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b41f91eb55bdfc321ef69.png",
1738 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b41f24e002388f44f1e45.png",
1739 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a7b41f2746f53c63dc25b56.png"
1740 + ],
1741 + "imageAlt": "Photo du 5 ½ sur Boul Foucault à Drummondville",
1742 + "imagePosition": "50% 50%",
1743 + "imageLargeur": 1200,
1744 + "imageHauteur": 900,
1745 + "urlCandidature": "",
1746 + "url": ""
1747 + },
1748 + {
1749 + "id": "rue-de-l-exposition-1550-32",
1750 + "actif": true,
1751 + "vedette": false,
1752 + "ordre": 320,
1753 + "titre": "6 ½ à louer",
1754 + "type": "6 1/2",
1755 + "typeAffiche": "6 ½",
1756 + "prix": 1550,
1757 + "adresse": "Rue de l'Exposition",
1758 + "ville": "Saint-Léonard-d’Aston",
1759 + "secteur": "Saint-Léonard-d'Aston",
1760 + "secteurAffiche": "St-Leonard d'Aston",
1761 + "disponibilite": {
1762 + "categorie": "maintenant",
1763 + "libelle": "Disponible maintenant",
1764 + "date": null
1765 + },
1766 + "etage": "Demi sous-sol",
1767 + "chambres": null,
1768 + "sallesDeBain": 1,
1769 + "stationnements": 1,
1770 + "animaux": {
1771 + "chat": true,
1772 + "chien": true
1773 + },
1774 + "caracteristiques": [
1775 + "Chauffage et électricité à vos frais",
1776 + "Remise",
1777 + "Thermopompe et échangeur d’air"
1778 + ],
1779 + "badges": [],
1780 + "dateAjout": null,
1781 + "description": "",
1782 + "photoPrincipale": "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d4.jpg",
1783 + "photos": [
1784 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464fb9074ae0357d678.jpg",
1785 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf6218a.jpg",
1786 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd4645f98a4e47bf621a3.jpg",
1787 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464bc1f77cc35c2c2d3.jpg",
1788 + "https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/69fcd464a3dd25aa2a620c1b.jpg"
1789 + ],
1790 + "imageAlt": "Photo du 6 ½ sur Rue de l'Exposition à Saint-Léonard-d’Aston",
1791 + "imagePosition": "50% 50%",
1792 + "imageLargeur": 1200,
1793 + "imageHauteur": 900,
1794 + "urlCandidature": "",
1795 + "url": ""
1796 + }
1797 +];
1798 +</script>
1799 +<script>
1800 +(function () {
1801 + "use strict";
1802 +
1803 + if (window.GTB_LOGEMENTS_COMPOSANT) return;
1804 +
1805 + const choisir = (selecteur, racine = document) => racine ? racine.querySelector(selecteur) : null;
1806 + const choisirTous = (selecteur, racine = document) => racine ? Array.from(racine.querySelectorAll(selecteur)) : [];
1807 + const formatPrix = new Intl.NumberFormat("fr-CA", { maximumFractionDigits: 0 });
1808 +
1809 + function echapperHTML(valeur) {
1810 + return String(valeur ?? "")
1811 + .replaceAll("&", "&amp;")
1812 + .replaceAll("<", "&lt;")
1813 + .replaceAll(">", "&gt;")
1814 + .replaceAll('"', "&quot;")
1815 + .replaceAll("'", "&#039;");
1816 + }
1817 +
1818 + function normaliser(valeur) {
1819 + return String(valeur ?? "").normalize("NFD").replace(/[\u0300-\u036f]/g, "").toLowerCase().trim();
1820 + }
1821 +
1822 + function urlImageOptimisee(source, largeur = 900, qualite = 78) {
1823 + const url = String(source || "");
1824 + if (!/^https?:\/\//i.test(url) || /^https:\/\/images\.leadconnectorhq\.com\/image\//i.test(url)) return url;
1825 + return `https://images.leadconnectorhq.com/image/f_webp/q_${qualite}/r_${largeur}/u_${url}`;
1826 + }
1827 +
1828 + function carteLogement(logement, index = Infinity) {
1829 + const caracteristiques = Array.isArray(logement.caracteristiques) ? logement.caracteristiques.filter(Boolean) : [];
1830 + const internetInclus = caracteristiques.some((item) => ["internet inclus", "internet compris"].includes(normaliser(item)));
1831 + const badgesDonnees = Array.isArray(logement.badges) ? logement.badges.filter(Boolean).filter((badge) => normaliser(badge) !== "internet inclus") : [];
1832 + const badges = badgesDonnees.slice(0, internetInclus ? 1 : 2).map((texte) => ({ texte, internet: false }));
1833 + if (internetInclus) badges.push({ texte: "Internet inclus", internet: true });
1834 + const source = urlImageOptimisee(logement.photoPrincipale, 900, 78);
1835 + const prioritaire = index < 3;
1836 + const alt = logement.imageAlt || [logement.type, logement.adresse, logement.ville].filter(Boolean).join(" à ");
1837 + const visuel = source
1838 + ? `<img class="gtb-property__photo" src="${echapperHTML(source)}" alt="${echapperHTML(alt)}" width="${echapperHTML(logement.imageLargeur || 900)}" height="${echapperHTML(logement.imageHauteur || 600)}" loading="${prioritaire ? "eager" : "lazy"}" decoding="async" fetchpriority="${prioritaire ? "high" : "auto"}">`
1839 + : `<div class="gtb-property__placeholder" role="img" aria-label="${echapperHTML(alt || "Photo officielle du logement à ajouter")}"><span></span><strong>Photo officielle à ajouter</strong></div>`;
1840 + const lieu = [logement.secteurAffiche || logement.secteur, logement.ville]
1841 + .filter(Boolean)
1842 + .filter((item, index, liste) => liste.findIndex((autre) => normaliser(autre) === normaliser(item)) === index)
1843 + .join(" · ");
1844 + const titre = logement.adresse || logement.titre || logement.type || "Logement à louer";
1845 + const prix = Number.isFinite(logement.prix) ? `${formatPrix.format(logement.prix)} $ / mois` : "";
1846 + const disponibilite = logement.disponibilite && logement.disponibilite.libelle ? logement.disponibilite.libelle : "";
1847 + return `<article class="gtb-property gtb-rentals-card-enter" data-gtb-property-id="${echapperHTML(logement.id)}" style="--gtb-image-position:${echapperHTML(logement.imagePosition || "50% 50%")}\"><div class="gtb-property__image">${badges.map((badge) => `<span class="gtb-property__status${badge.internet ? " gtb-property__status--internet" : ""}">${echapperHTML(badge.texte)}</span>`).join("")}${visuel}</div><div class="gtb-property__body"><div class="gtb-property__topline">${logement.type ? `<span class="gtb-property__type">${echapperHTML(logement.typeAffiche || logement.type)}</span>` : ""}${prix ? `<span class="gtb-property__price">${echapperHTML(prix)}</span>` : ""}</div><h3>${echapperHTML(titre)}</h3>${lieu ? `<p class="gtb-property__location">${echapperHTML(lieu)}</p>` : ""}${disponibilite ? `<p class="gtb-property__availability">${echapperHTML(disponibilite)}</p>` : ""}<button class="gtb-rentals-button gtb-rentals-button--secondary" type="button" data-gtb-open-property data-logement-id="${echapperHTML(logement.id)}">Voir le logement</button></div></article>`;
1848 + }
1849 +
1850 + function iconeFait(type) {
1851 + const formes = {
1852 + chambres: '<path d="M3 12h18v7H3zM5 12V8h6a3 3 0 0 1 3 3v1M3 19v2M21 19v2"/>',
1853 + bain: '<path d="M4 13h16v2a5 5 0 0 1-5 5H9a5 5 0 0 1-5-5v-2ZM7 13V6a3 3 0 0 1 5-2l1 1M5 20l-1 2M19 20l1 2"/>',
1854 + etage: '<path d="m4 16 8 4 8-4M4 12l8 4 8-4M4 8l8 4 8-4-8-4-8 4Z"/>',
1855 + stationnement: '<circle cx="12" cy="12" r="9"/><path d="M10 17V7h3a3 3 0 0 1 0 6h-3"/>',
1856 + animaux: '<path d="M8.5 11.5c-2.5 1.2-4 3.1-3.3 5.1.8 2.2 3.4 2.3 6.8.8 3.4 1.5 6 1.4 6.8-.8.7-2-1-4-3.3-5.1-2.1-1-4.9-1-7 0ZM7 8.5c-1.2.4-2.4-.7-2.6-2.1-.2-1.4.7-2.6 1.9-2.7 1.2-.1 2.1 1 2.2 2.3.1 1.2-.4 2.1-1.5 2.5ZM17 8.5c1.2.4 2.4-.7 2.6-2.1.2-1.4-.7-2.6-1.9-2.7-1.2-.1-2.1 1-2.2 2.3-.1 1.2.4 2.1 1.5 2.5ZM11 7.5c-1.2.2-2.2-.9-2.2-2.3 0-1.4.9-2.5 2.1-2.5s2 1.1 2 2.4c0 1.3-.7 2.2-1.9 2.4ZM14.5 8c-1.1-.1-1.8-1.2-1.6-2.5.2-1.3 1.1-2.2 2.2-2 1.1.2 1.7 1.3 1.5 2.6-.2 1.2-1 2-2.1 1.9Z"/>'
1857 + };
1858 + return `<svg viewBox="0 0 24 24" aria-hidden="true" fill="none" stroke="currentColor" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round">${formes[type] || formes.etage}</svg>`;
1859 + }
1860 +
1861 + function photosDuLogement(logement) {
1862 + const sources = [logement.photoPrincipale].concat(Array.isArray(logement.photos) ? logement.photos : []).filter(Boolean);
1863 + return sources.filter((source, index) => sources.indexOf(source) === index);
1864 + }
1865 +
1866 + function contenuFiche(logement, urlCandidature, courrielLocation) {
1867 + const photos = photosDuLogement(logement).map((photo, index) => urlImageOptimisee(photo, index === 0 ? 900 : 1600, index === 0 ? 78 : 82));
1868 + const type = logement.typeAffiche || logement.type || "";
1869 + const titre = logement.adresse || logement.titre || type || "Logement à louer";
1870 + const prix = Number.isFinite(logement.prix) ? `${formatPrix.format(logement.prix)} $ / mois` : "";
1871 + const disponibilite = logement.disponibilite && logement.disponibilite.libelle ? logement.disponibilite.libelle : "";
1872 + const lieu = [logement.ville, logement.secteur].filter(Boolean).filter((item, index, liste) => liste.findIndex((autre) => normaliser(autre) === normaliser(item)) === index).join(" · ");
1873 + const localisation = [logement.adresse, logement.ville, logement.secteur].filter(Boolean).filter((item, index, liste) => liste.findIndex((autre) => normaliser(autre) === normaliser(item)) === index);
1874 + const caracteristiques = Array.isArray(logement.caracteristiques) ? logement.caracteristiques.filter(Boolean) : [];
1875 + const faits = [];
1876 + if (Number.isFinite(logement.chambres)) faits.push({ type: "chambres", texte: `${logement.chambres} chambre${logement.chambres > 1 ? "s" : ""}` });
1877 + if (Number.isFinite(logement.sallesDeBain)) faits.push({ type: "bain", texte: `${logement.sallesDeBain} salle${logement.sallesDeBain > 1 ? "s" : ""} de bain` });
1878 + if (logement.etageAffiche || logement.etage) faits.push({ type: "etage", texte: logement.etageAffiche || logement.etage });
1879 + if (Number.isFinite(logement.stationnements)) faits.push({ type: "stationnement", texte: `${logement.stationnements} stationnement${logement.stationnements > 1 ? "s" : ""}` });
1880 + if (logement.animaux && logement.animaux.chat === true) faits.push({ type: "animaux", texte: "Chat accepté" });
1881 + if (logement.animaux && logement.animaux.chien === true) faits.push({ type: "animaux", texte: "Chien accepté" });
1882 + const alt = logement.imageAlt || `Photo de ${titre}`;
1883 + const galerie = photos.length
1884 + ? `<div class="gtb-property-modal__stage" data-gtb-gallery-stage style="--gtb-modal-image-position:${echapperHTML(logement.imagePosition || "50% 50%")}"><img src="${echapperHTML(photos[0])}" alt="${echapperHTML(alt)}" width="${echapperHTML(logement.imageLargeur || 1200)}" height="${echapperHTML(logement.imageHauteur || 900)}" data-gtb-gallery-image>${photos.length > 1 ? '<button class="gtb-property-modal__gallery-button gtb-property-modal__gallery-button--prev" type="button" aria-label="Photo précédente" data-gtb-gallery-prev>‹</button><button class="gtb-property-modal__gallery-button gtb-property-modal__gallery-button--next" type="button" aria-label="Photo suivante" data-gtb-gallery-next>›</button><p class="gtb-property-modal__counter" aria-live="polite" data-gtb-gallery-counter>1 / ' + photos.length + '</p>' : ""}</div>${photos.length > 1 ? `<div class="gtb-property-modal__thumbs" aria-label="Choisir une photo">${photos.map((photo, index) => `<button class="gtb-property-modal__thumb" type="button" aria-label="Afficher la photo ${index + 1}" aria-current="${index === 0 ? "true" : "false"}" data-gtb-gallery-thumb="${index}"><img src="${echapperHTML(photo)}" alt="" loading="lazy"></button>`).join("")}</div>` : ""}`
1885 + : '<div class="gtb-property-modal__stage"><div class="gtb-property-modal__placeholder" role="img" aria-label="Photo officielle du logement à ajouter"><span></span><strong>Photo officielle à ajouter</strong></div></div>';
1886 + const details = [
1887 + logement.description ? `<section class="gtb-property-modal__section gtb-property-modal__section--wide"><h3>À propos du logement</h3><p>${echapperHTML(logement.description)}</p></section>` : "",
1888 + caracteristiques.length ? `<section class="gtb-property-modal__section"><h3>Inclusions et caractéristiques</h3><ul class="gtb-property-modal__features">${caracteristiques.map((item) => `<li>${echapperHTML(item)}</li>`).join("")}</ul></section>` : "",
1889 + localisation.length ? `<section class="gtb-property-modal__section"><h3>Localisation</h3><address class="gtb-property-modal__address">${localisation.map(echapperHTML).join("<br>")}</address></section>` : ""
1890 + ].filter(Boolean).join("");
1891 + return `<div class="gtb-property-modal__top"><div class="gtb-property-modal__gallery">${galerie}</div><div class="gtb-property-modal__summary">${type ? `<p class="gtb-property-modal__type">${echapperHTML(type)}</p>` : ""}${prix ? `<p class="gtb-property-modal__price">${echapperHTML(prix)}</p>` : ""}<h2 id="gtb-property-modal-title">${echapperHTML(titre)}</h2>${lieu ? `<p class="gtb-property-modal__location">${echapperHTML(lieu)}</p>` : ""}${disponibilite ? `<p class="gtb-property-modal__availability">${echapperHTML(disponibilite)}</p>` : ""}${faits.length ? `<div class="gtb-property-modal__facts">${faits.map((fait) => `<div class="gtb-property-modal__fact">${iconeFait(fait.type)}<span>${echapperHTML(fait.texte)}</span></div>`).join("")}</div>` : ""}<div class="gtb-property-modal__actions"><button class="gtb-rentals-button gtb-rentals-button--primary" type="button" data-gtb-open-application>Je suis intéressé</button><div class="gtb-property-modal__contacts"><a class="gtb-property-modal__contact" href="tel:+18198178486">Appeler</a><a class="gtb-property-modal__contact" href="mailto:${echapperHTML(courrielLocation)}">Courriel</a></div></div></div></div>${details ? `<div class="gtb-property-modal__details">${details}</div>` : ""}`;
1892 + }
1893 +
1894 + function initialiserFiches(racine, logements) {
1895 + const modal = choisir("[data-gtb-property-modal]", racine);
1896 + if (!modal || modal.dataset.gtbModalInitialized === "true") return;
1897 + modal.dataset.gtbModalInitialized = "true";
1898 + const dialogue = choisir("[data-gtb-modal-dialog]", modal);
1899 + const contenu = choisir("[data-gtb-modal-content]", modal);
1900 + const fermerBouton = choisir("[data-gtb-modal-close]", modal);
1901 + const overlay = choisir("[data-gtb-modal-overlay]", modal);
1902 + const modalCandidature = choisir("[data-gtb-application-modal]", racine);
1903 + const dialogueCandidature = choisir("[data-gtb-application-dialog]", modalCandidature);
1904 + const fermerCandidatureBouton = choisir("[data-gtb-application-close]", modalCandidature);
1905 + const overlayCandidature = choisir("[data-gtb-application-overlay]", modalCandidature);
1906 + const urlCandidatureParDefaut = racine.dataset.gtbApplicationUrl || racine.dataset.gtbContactUrl || "/nous-contacter"; // Destination temporaire tant qu'aucun urlCandidature n'est défini.
1907 + const courrielLocation = racine.dataset.gtbLocationEmail || "info@gestiontb.ca";
1908 + let logementOuvert = null;
1909 + let declencheur = null;
1910 + let indexPhoto = 0;
1911 + let photos = [];
1912 + let positionTactile = null;
1913 + let positionDefilement = 0;
1914 + let stylesBody = null;
1915 + let minuterieFermeture = null;
1916 + let declencheurCandidature = null;
1917 + let minuterieCandidature = null;
1918 +
1919 + const trouver = (id) => logements.find((logement) => logement.id === id);
1920 + const idDepuisHash = () => {
1921 + const correspondance = window.location.hash.match(/^#logement=(.+)$/);
1922 + if (!correspondance) return "";
1923 + try { return decodeURIComponent(correspondance[1]); } catch (erreur) { return ""; }
1924 + };
1925 +
1926 + function verrouillerPage() {
1927 + positionDefilement = window.scrollY;
1928 + stylesBody = { position: document.body.style.position, top: document.body.style.top, left: document.body.style.left, right: document.body.style.right, width: document.body.style.width };
1929 + document.body.classList.add("gtb-property-modal-open");
1930 + document.body.style.position = "fixed";
1931 + document.body.style.top = `-${positionDefilement}px`;
1932 + document.body.style.left = "0";
1933 + document.body.style.right = "0";
1934 + document.body.style.width = "100%";
1935 + }
1936 +
1937 + function deverrouillerPage() {
1938 + if (!stylesBody) return;
1939 + document.body.classList.remove("gtb-property-modal-open");
1940 + Object.entries(stylesBody).forEach(([propriete, valeur]) => { document.body.style[propriete] = valeur; });
1941 + stylesBody = null;
1942 + window.scrollTo(0, positionDefilement);
1943 + }
1944 +
1945 + function afficherPhoto(nouvelIndex) {
1946 + if (photos.length < 2) return;
1947 + indexPhoto = (nouvelIndex + photos.length) % photos.length;
1948 + const image = choisir("[data-gtb-gallery-image]", modal);
1949 + const compteur = choisir("[data-gtb-gallery-counter]", modal);
1950 + if (image) image.src = urlImageOptimisee(photos[indexPhoto], 1600, 82);
1951 + if (compteur) compteur.textContent = `${indexPhoto + 1} / ${photos.length}`;
1952 + choisirTous("[data-gtb-gallery-thumb]", modal).forEach((bouton, index) => bouton.setAttribute("aria-current", String(index === indexPhoto)));
1953 + }
1954 +
1955 + function brancherGalerie() {
1956 + choisir("[data-gtb-gallery-prev]", modal)?.addEventListener("click", () => afficherPhoto(indexPhoto - 1));
1957 + choisir("[data-gtb-gallery-next]", modal)?.addEventListener("click", () => afficherPhoto(indexPhoto + 1));
1958 + choisirTous("[data-gtb-gallery-thumb]", modal).forEach((bouton) => bouton.addEventListener("click", () => afficherPhoto(Number(bouton.dataset.gtbGalleryThumb))));
1959 + const scene = choisir("[data-gtb-gallery-stage]", modal);
1960 + if (!scene || photos.length < 2) return;
1961 + scene.addEventListener("touchstart", (event) => { positionTactile = event.changedTouches[0].clientX; }, { passive: true });
1962 + scene.addEventListener("touchend", (event) => {
1963 + if (positionTactile === null) return;
1964 + const distance = event.changedTouches[0].clientX - positionTactile;
1965 + if (Math.abs(distance) > 45) afficherPhoto(indexPhoto + (distance < 0 ? 1 : -1));
1966 + positionTactile = null;
1967 + }, { passive: true });
1968 + }
1969 +
1970 + function candidatureOuverte() {
1971 + return Boolean(modalCandidature && modalCandidature.classList.contains("gtb-is-open"));
1972 + }
1973 +
1974 + function ouvrirCandidature(bouton) {
1975 + if (!modalCandidature || !dialogueCandidature || !fermerCandidatureBouton) return;
1976 + window.clearTimeout(minuterieCandidature);
1977 + declencheurCandidature = bouton;
1978 + dialogueCandidature.scrollTop = 0;
1979 + modalCandidature.hidden = false;
1980 + modal.classList.add("gtb-has-application-open");
1981 + window.requestAnimationFrame(() => {
1982 + const cadreCandidature = choisir(".gtb-application-modal__body iframe", modalCandidature);
1983 + if (cadreCandidature) cadreCandidature.setAttribute("scrolling", "yes");
1984 + modalCandidature.classList.add("gtb-is-open");
1985 + dialogue.inert = true;
1986 + dialogue.setAttribute("aria-hidden", "true");
1987 + fermerCandidatureBouton.focus();
1988 + });
1989 + }
1990 +
1991 + function fermerCandidature(restaurerFocus = true, immediat = false) {
1992 + if (!candidatureOuverte()) return;
1993 + const retourFocus = declencheurCandidature;
1994 + declencheurCandidature = null;
1995 + modalCandidature.classList.remove("gtb-is-open");
1996 + modal.classList.remove("gtb-has-application-open");
1997 + dialogue.inert = false;
1998 + dialogue.removeAttribute("aria-hidden");
1999 + const duree = immediat || window.matchMedia("(prefers-reduced-motion: reduce)").matches ? 0 : 230;
2000 + minuterieCandidature = window.setTimeout(() => { modalCandidature.hidden = true; }, duree);
2001 + if (restaurerFocus && retourFocus && document.contains(retourFocus)) retourFocus.focus();
2002 + }
2003 +
2004 + function ouvrir(id, bouton, ajouterHistorique = true) {
2005 + const logement = trouver(id);
2006 + if (!logement) return;
2007 + window.clearTimeout(minuterieFermeture);
2008 + logementOuvert = logement;
2009 + declencheur = bouton || null;
2010 + photos = photosDuLogement(logement);
2011 + indexPhoto = 0;
2012 + contenu.innerHTML = contenuFiche(logement, urlCandidatureParDefaut, courrielLocation);
2013 + choisirTous("[data-gtb-gallery-thumb] img", contenu).forEach((image, index) => {
2014 + image.src = urlImageOptimisee(photos[index], 320, 72);
2015 + });
2016 + choisirTous("img", contenu).forEach((image) => { image.decoding = "async"; });
2017 + brancherGalerie();
2018 + dialogue.scrollTop = 0;
2019 + modal.hidden = false;
2020 + verrouillerPage();
2021 + window.requestAnimationFrame(() => {
2022 + modal.classList.add("gtb-is-open");
2023 + fermerBouton.focus();
2024 + });
2025 + if (ajouterHistorique) {
2026 + const url = new URL(window.location.href);
2027 + url.hash = `logement=${encodeURIComponent(logement.id)}`;
2028 + window.history.pushState({ gtbLogement: logement.id }, "", url);
2029 + }
2030 + }
2031 +
2032 + function fermer(gererHistorique = true) {
2033 + if (!logementOuvert) return;
2034 + fermerCandidature(false, true);
2035 + const id = logementOuvert.id;
2036 + const retourFocus = declencheur;
2037 + logementOuvert = null;
2038 + declencheur = null;
2039 + modal.classList.remove("gtb-is-open");
2040 + deverrouillerPage();
2041 + const duree = window.matchMedia("(prefers-reduced-motion: reduce)").matches ? 0 : 230;
2042 + minuterieFermeture = window.setTimeout(() => { modal.hidden = true; contenu.innerHTML = ""; }, duree);
2043 + if (retourFocus && document.contains(retourFocus)) retourFocus.focus();
2044 + if (gererHistorique) {
2045 + if (window.history.state && window.history.state.gtbLogement === id) window.history.back();
2046 + else {
2047 + const url = new URL(window.location.href);
2048 + url.hash = "";
2049 + window.history.replaceState(null, "", url);
2050 + }
2051 + }
2052 + }
2053 +
2054 + racine.addEventListener("click", (event) => {
2055 + const boutonCandidature = event.target.closest("[data-gtb-open-application]");
2056 + if (boutonCandidature && racine.contains(boutonCandidature)) {
2057 + event.preventDefault();
2058 + ouvrirCandidature(boutonCandidature);
2059 + return;
2060 + }
2061 + const bouton = event.target.closest("[data-gtb-open-property]");
2062 + if (bouton && racine.contains(bouton)) {
2063 + event.preventDefault();
2064 + ouvrir(bouton.dataset.logementId, bouton, true);
2065 + return;
2066 + }
2067 + if (event.target.closest("a, button, input, select, textarea")) return;
2068 + const carte = event.target.closest("[data-gtb-property-id]");
2069 + if (!carte || !racine.contains(carte)) return;
2070 + ouvrir(carte.dataset.gtbPropertyId, choisir("[data-gtb-open-property]", carte), true);
2071 + });
2072 + fermerBouton.addEventListener("click", () => fermer(true));
2073 + overlay.addEventListener("click", () => fermer(true));
2074 + modal.addEventListener("click", (event) => { if (event.target === modal) fermer(true); });
2075 + fermerCandidatureBouton?.addEventListener("click", () => fermerCandidature(true));
2076 + overlayCandidature?.addEventListener("click", () => fermerCandidature(true));
2077 + modalCandidature?.addEventListener("click", (event) => { if (event.target === modalCandidature) fermerCandidature(true); });
2078 + document.addEventListener("keydown", (event) => {
2079 + if (!logementOuvert) return;
2080 + if (candidatureOuverte()) {
2081 + if (event.key === "Escape") {
2082 + event.preventDefault();
2083 + fermerCandidature(true);
2084 + return;
2085 + }
2086 + if (event.key !== "Tab") return;
2087 + const elementsCandidature = choisirTous('a[href], button:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), iframe, [tabindex]:not([tabindex="-1"])', dialogueCandidature).filter((element) => !element.hidden && element.offsetParent !== null);
2088 + if (!elementsCandidature.length) return;
2089 + const premierCandidature = elementsCandidature[0];
2090 + const dernierCandidature = elementsCandidature[elementsCandidature.length - 1];
2091 + if (event.shiftKey && document.activeElement === premierCandidature) { event.preventDefault(); dernierCandidature.focus(); }
2092 + else if (!event.shiftKey && document.activeElement === dernierCandidature) { event.preventDefault(); premierCandidature.focus(); }
2093 + return;
2094 + }
2095 + if (event.key === "Escape") {
2096 + event.preventDefault();
2097 + fermer(true);
2098 + return;
2099 + }
2100 + if (event.key !== "Tab") return;
2101 + const elements = choisirTous('a[href], button:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"])', dialogue).filter((element) => !element.hidden && element.offsetParent !== null);
2102 + if (!elements.length) return;
2103 + const premier = elements[0];
2104 + const dernier = elements[elements.length - 1];
2105 + if (event.shiftKey && document.activeElement === premier) { event.preventDefault(); dernier.focus(); }
2106 + else if (!event.shiftKey && document.activeElement === dernier) { event.preventDefault(); premier.focus(); }
2107 + });
2108 + window.addEventListener("popstate", () => {
2109 + const id = idDepuisHash();
2110 + if (id && trouver(id)) {
2111 + if (!logementOuvert || logementOuvert.id !== id) ouvrir(id, null, false);
2112 + } else fermer(false);
2113 + });
2114 + const idInitial = idDepuisHash();
2115 + if (idInitial && trouver(idInitial)) ouvrir(idInitial, null, false);
2116 + window.GTB_OUVRIR_LOGEMENT = (id) => ouvrir(id, null, true);
2117 + }
2118 +
2119 + window.GTB_LOGEMENTS_COMPOSANT = {
2120 + carteLogement,
2121 + initialiserFiches
2122 + };
2123 +})();
2124 +
2125 +/* PAGE LOGEMENTS À LOUER — rendu, filtres, tri et contenu partagé */
2126 +(function () {
2127 + "use strict";
2128 +
2129 + document.documentElement.classList.add("gtb-rentals-js");
2130 +
2131 + const choisir = (selecteur, racine = document) => racine.querySelector(selecteur);
2132 + const choisirTous = (selecteur, racine = document) => Array.from(racine.querySelectorAll(selecteur));
2133 + const formatPrix = new Intl.NumberFormat("fr-CA", { maximumFractionDigits: 0 });
2134 + const secteursFiltres = ["Drummondville", "Saint-Cyrille", "Notre-Dame-du-Bon-Conseil", "Saint-Léonard-d'Aston", "Wickham", "Richmond"];
2135 +
2136 + function echapperHTML(valeur) {
2137 + return String(valeur ?? "")
2138 + .replaceAll("&", "&amp;")
2139 + .replaceAll("<", "&lt;")
2140 + .replaceAll(">", "&gt;")
2141 + .replaceAll('"', "&quot;")
2142 + .replaceAll("'", "&#039;");
2143 + }
2144 +
2145 + function normaliser(valeur) {
2146 + return String(valeur ?? "").normalize("NFD").replace(/[\u0300-\u036f]/g, "").toLowerCase().trim();
2147 + }
2148 +
2149 + function valeurDepuisChemin(objet, chemin) {
2150 + return chemin.split(".").reduce((valeur, cle) => valeur && valeur[cle], objet);
2151 + }
2152 +
2153 + function ajouterOptions(select, valeurs, libelle) {
2154 + if (!select) return;
2155 + valeurs.forEach((valeur) => {
2156 + const option = document.createElement("option");
2157 + option.value = valeur;
2158 + option.textContent = libelle ? libelle(valeur) : valeur;
2159 + select.append(option);
2160 + });
2161 + }
2162 +
2163 +
2164 +
2165 + const composantLogements = window.GTB_LOGEMENTS_COMPOSANT;
2166 + if (!composantLogements) throw new Error("Le composant partagé des logements doit être chargé avant logements-a-louer.js.");
2167 +
2168 + function initialiserCatalogue(racine, donnees) {
2169 + if (!racine || racine.dataset.gtbCatalogueInitialized === "true") return;
2170 + racine.dataset.gtbCatalogueInitialized = "true";
2171 + const logements = (Array.isArray(donnees) ? donnees : []).filter((logement) => logement && logement.actif === true);
2172 + const formulaire = choisir("[data-gtb-filters]", racine);
2173 + const grille = choisir("[data-gtb-results]", racine);
2174 + const vide = choisir("[data-gtb-empty]", racine);
2175 + const compteur = choisir("[data-gtb-count]", racine);
2176 + const tri = choisir("[data-gtb-sort]", racine);
2177 + const contactUrl = racine.dataset.gtbContactUrl || "/nous-contacter";
2178 + choisirTous("[data-gtb-contact-link]", racine).forEach((lien) => lien.setAttribute("href", contactUrl));
2179 +
2180 + const selectSecteur = choisir('[name="sector"]', formulaire);
2181 + const selectBudget = choisir('[name="budget"]', formulaire);
2182 + ajouterOptions(selectSecteur, secteursFiltres);
2183 +
2184 + const prixConnus = logements.map((logement) => logement.prix).filter(Number.isFinite);
2185 + if (prixConnus.length) {
2186 + const plafond = Math.ceil(Math.max(...prixConnus) / 100) * 100;
2187 + const depart = Math.max(900, Math.floor(Math.min(...prixConnus) / 100) * 100);
2188 + const budgets = [];
2189 + for (let montant = depart; montant <= plafond; montant += 100) budgets.push(montant);
2190 + ajouterOptions(selectBudget, budgets, (montant) => `${formatPrix.format(montant)} $`);
2191 + }
2192 +
2193 + function lireEtat() {
2194 + const donneesFormulaire = new FormData(formulaire);
2195 + return {
2196 + sector: donneesFormulaire.get("sector") || "",
2197 + types: donneesFormulaire.getAll("type"),
2198 + budget: Number(donneesFormulaire.get("budget")) || null,
2199 + floors: donneesFormulaire.getAll("floor"),
2200 + cat: donneesFormulaire.get("cat") === "on",
2201 + dog: donneesFormulaire.get("dog") === "on"
2202 + };
2203 + }
2204 +
2205 + function filtrer(logement, etat) {
2206 + return (!etat.sector || logement.secteur === etat.sector)
2207 + && (!etat.types.length || etat.types.includes(logement.type))
2208 + && (!etat.budget || (Number.isFinite(logement.prix) && logement.prix <= etat.budget))
2209 + && (!etat.floors.length || etat.floors.includes(logement.etage))
2210 + && (!etat.cat || Boolean(logement.animaux && logement.animaux.chat === true))
2211 + && (!etat.dog || Boolean(logement.animaux && logement.animaux.chien === true));
2212 + }
2213 +
2214 + function trier(liste, mode) {
2215 + const copie = liste.slice();
2216 + const ordre = (logement) => Number(logement.ordre) || 0;
2217 + const prix = (logement, defaut) => Number.isFinite(logement.prix) ? logement.prix : defaut;
2218 + const disponibiliteOrdre = { maintenant: 0, bientot: 1, date: 2, "a-confirmer": 3 };
2219 + copie.sort((a, b) => {
2220 + if (mode === "price-asc") return prix(a, Infinity) - prix(b, Infinity) || ordre(a) - ordre(b);
2221 + if (mode === "price-desc") return prix(b, -Infinity) - prix(a, -Infinity) || ordre(a) - ordre(b);
2222 + if (mode === "newest") return String(b.dateAjout || "").localeCompare(String(a.dateAjout || "")) || ordre(a) - ordre(b);
2223 + if (mode === "availability") {
2224 + const categorieA = a.disponibilite && a.disponibilite.categorie;
2225 + const categorieB = b.disponibilite && b.disponibilite.categorie;
2226 + const rangA = Object.prototype.hasOwnProperty.call(disponibiliteOrdre, categorieA) ? disponibiliteOrdre[categorieA] : 9;
2227 + const rangB = Object.prototype.hasOwnProperty.call(disponibiliteOrdre, categorieB) ? disponibiliteOrdre[categorieB] : 9;
2228 + return rangA - rangB || String((a.disponibilite && a.disponibilite.date) || "9999").localeCompare(String((b.disponibilite && b.disponibilite.date) || "9999")) || ordre(a) - ordre(b);
2229 + }
2230 + return ordre(a) - ordre(b);
2231 + });
2232 + return copie;
2233 + }
2234 +
2235 + function afficher() {
2236 + const resultat = trier(logements.filter((logement) => filtrer(logement, lireEtat())), tri.value);
2237 + compteur.textContent = `${resultat.length} logement${resultat.length === 1 ? "" : "s"} trouvé${resultat.length === 1 ? "" : "s"}`;
2238 + grille.innerHTML = resultat.map((logement, index) => composantLogements.carteLogement(logement, index)).join("");
2239 + grille.hidden = resultat.length === 0;
2240 + vide.hidden = resultat.length !== 0;
2241 + if (!window.matchMedia("(prefers-reduced-motion: reduce)").matches) {
2242 + window.requestAnimationFrame(() => window.requestAnimationFrame(() => choisirTous(".gtb-rentals-card-enter", grille).forEach((carte) => carte.classList.remove("gtb-rentals-card-enter"))));
2243 + } else choisirTous(".gtb-rentals-card-enter", grille).forEach((carte) => carte.classList.remove("gtb-rentals-card-enter"));
2244 + }
2245 +
2246 + function reinitialiser() {
2247 + formulaire.reset();
2248 + tri.value = "price-asc";
2249 + afficher();
2250 + }
2251 +
2252 + formulaire.addEventListener("input", afficher);
2253 + formulaire.addEventListener("change", afficher);
2254 + tri.addEventListener("change", afficher);
2255 + choisir("[data-gtb-reset]", racine).addEventListener("click", reinitialiser);
2256 + choisir("[data-gtb-empty-reset]", racine).addEventListener("click", reinitialiser);
2257 + afficher();
2258 + composantLogements.initialiserFiches(racine, logements);
2259 + }
2260 +
2261 + function initialiserAnimations(racine) {
2262 + const elements = choisirTous("[data-gtb-rentals-reveal]", racine);
2263 + if (window.matchMedia("(prefers-reduced-motion: reduce)").matches || !("IntersectionObserver" in window)) {
2264 + elements.forEach((element) => element.classList.add("gtb-is-revealed"));
2265 + return;
2266 + }
2267 + elements.forEach((element, index) => element.style.setProperty("--gtb-rentals-delay", `${Math.min(index * 75, 300)}ms`));
2268 + const observateur = new IntersectionObserver((entrees) => {
2269 + entrees.forEach((entree) => {
2270 + if (!entree.isIntersecting) return;
2271 + entree.target.classList.add("gtb-is-revealed");
2272 + observateur.unobserve(entree.target);
2273 + });
2274 + }, { threshold: .12, rootMargin: "0px 0px -6% 0px" });
2275 + elements.forEach((element) => observateur.observe(element));
2276 + }
2277 +
2278 + async function demarrer() {
2279 + const etat = choisir("[data-gtb-status]");
2280 + try {
2281 +
2282 + const racine = choisir("[data-gtb-rentals-root]");
2283 + if (!racine) return;
2284 +
2285 +
2286 + initialiserCatalogue(racine, window.GTB_LOGEMENTS);
2287 + initialiserAnimations(racine);
2288 + document.documentElement.classList.add("gtb-ready");
2289 + if (etat) etat.textContent = "Aperçu chargé";
2290 + } catch (erreur) {
2291 + console.error("Gestion TB — impossible de charger les logements", erreur);
2292 + document.documentElement.classList.remove("gtb-rentals-js");
2293 + if (etat) etat.textContent = "L’aperçu doit être ouvert depuis un serveur local. Consultez le README.";
2294 + }
2295 + }
2296 +
2297 + window.GTB_INITIALISER_LOGEMENTS = initialiserCatalogue;
2298 + if (document.readyState === "loading") document.addEventListener("DOMContentLoaded", demarrer, { once: true });
2299 + else demarrer();
2300 +})();
2301 +
2302 +</script>
2303 +</div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--[--><div id="section-wmdTSyykT8" data-animation-class data-entrance-clip="1" style="" class="fullSection true c-section c-wrapper section-wmdTSyykT8"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="row-FK4sJ5Q_F3" data-animation-class data-entrance-clip="1" style="" class="row-align-center true c-row c-wrapper row-FK4sJ5Q_F3"><!----><!----><div class="inner"><!----><!--[--><!--[--><div id="col-XWdryjtNAM" data-animation-class data-entrance-clip="1" style="" class="true c-column c-wrapper col-XWdryjtNAM"><!----><!----><div class="vertical inner"><!----><!--[--><!--[--><div id="custom-code-4tobEgNGMa" data-animation-class style="" class="c-custom-code c-wrapper custom-code-4tobEgNGMa"><!----><!----><!----><!----><!----><!----><!----><span></span><div id="custom-code-4tobEgNGMa__custom-code" class="custom-code-container ccustom-code-4tobEgNGMa"><!--
2304 + GESTION TB — FOOTER UNIVERSEL GOHIGHLEVEL
2305 +
2306 + INFORMATIONS FACILES À MODIFIER :
2307 + - Logo blanc : https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a90cc96747464c6b3a3de9d.png
2308 + - Général : info@gestiontb.ca / 819-817-8486
2309 + - Location : location@gestiontb.ca / 819-817-8486 poste 1
2310 + - Les destinations temporaires sont clairement commentées dans le HTML.
2311 +-->
2312 +<style>
2313 +#gestiontb-footer-universel {
2314 + width: 100vw !important;
2315 + max-width: none !important;
2316 + margin: 0 calc(50% - 50vw) !important;
2317 + overflow-x: clip;
2318 + box-sizing: border-box;
2319 + padding-top: 4.5rem;
2320 + color: #d7e5f1;
2321 + background: #0d2949;
2322 + font-family: "Avenir Next World", "Avenir Next", Avenir, "Segoe UI", sans-serif;
2323 + font-size: 16px;
2324 + line-height: 1.55;
2325 + text-align: left;
2326 + --gtb-footer-white: #ffffff;
2327 + --gtb-footer-shell: 1200px;
2328 +}
2329 +#gestiontb-footer-universel,
2330 +#gestiontb-footer-universel *,
2331 +#gestiontb-footer-universel *::before,
2332 +#gestiontb-footer-universel *::after { box-sizing: border-box; }
2333 +#gestiontb-footer-universel h2,
2334 +#gestiontb-footer-universel h3,
2335 +#gestiontb-footer-universel p { margin-top: 0; }
2336 +#gestiontb-footer-universel a { color: inherit; text-decoration: none; }
2337 +#gestiontb-footer-universel img { display: block; max-width: 100%; }
2338 +#gestiontb-footer-universel .gtb-footer-shell { width: min(calc(100% - 3rem), var(--gtb-footer-shell)); margin-inline: auto; }
2339 +#gestiontb-footer-universel .gtb-footer-grid { display: grid; grid-template-columns: 1.35fr .9fr 1.15fr .9fr .75fr; gap: clamp(1.5rem, 3vw, 3rem); padding-bottom: 3.5rem; }
2340 +#gestiontb-footer-universel .gtb-footer-about p { max-width: 24rem; margin: 1.25rem 0 0; color: #b8cbdd; }
2341 +#gestiontb-footer-universel .gtb-footer-brand { display: inline-flex; }
2342 +#gestiontb-footer-universel .gtb-footer-logo-frame { display: block; width: 192px; height: 55px; }
2343 +#gestiontb-footer-universel .gtb-footer-logo { width: 192px; height: 55px; border: 0; outline: 0; object-fit: contain; pointer-events: none; }
2344 +#gestiontb-footer-universel h2 { margin-bottom: 1.1rem; color: var(--gtb-footer-white); font-size: .8rem; line-height: 1.2; letter-spacing: .12em; text-transform: uppercase; }
2345 +#gestiontb-footer-universel h3 { margin-bottom: .25rem; color: var(--gtb-footer-white); font-size: .86rem; font-weight: 700; }
2346 +#gestiontb-footer-universel ul { margin: 0; padding: 0; list-style: none; }
2347 +#gestiontb-footer-universel li + li { margin-top: .45rem; }
2348 +#gestiontb-footer-universel li a { display: inline-flex; min-height: 40px; align-items: center; }
2349 +#gestiontb-footer-universel a:hover { color: var(--gtb-footer-white); text-decoration: underline; text-underline-offset: .2rem; }
2350 +#gestiontb-footer-universel .gtb-footer-brand:hover { text-decoration: none; }
2351 +#gestiontb-footer-universel .gtb-footer-contact-group { color: #b8cbdd; }
2352 +#gestiontb-footer-universel .gtb-footer-contact-group + .gtb-footer-contact-group { margin-top: 1rem; }
2353 +#gestiontb-footer-universel .gtb-footer-contact a { overflow-wrap: anywhere; }
2354 +#gestiontb-footer-universel .gtb-footer-socials { display: flex; align-items: center; gap: .35rem; flex-wrap: nowrap; }
2355 +#gestiontb-footer-universel .gtb-footer-socials li + li { margin-top: 0; }
2356 +#gestiontb-footer-universel .gtb-footer-socials a { width: 44px; height: 44px; justify-content: center; border-radius: 50%; transition: color .2s ease, background .2s ease, transform .2s ease; }
2357 +#gestiontb-footer-universel .gtb-footer-socials a:hover { background: rgba(255,255,255,.1); text-decoration: none; transform: translateY(-2px); }
2358 +#gestiontb-footer-universel .gtb-footer-socials svg { width: 21px; height: 21px; overflow: visible; fill: currentColor; stroke: none; }
2359 +#gestiontb-footer-universel .gtb-footer-socials [aria-label="Instagram"] svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
2360 +#gestiontb-footer-universel .gtb-footer-social-dot { fill: currentColor; stroke: none; }
2361 +#gestiontb-footer-universel .gtb-footer-socials [aria-label="TikTok"] svg { fill: currentColor; stroke: currentColor; stroke-width: .7; stroke-linecap: round; stroke-linejoin: round; }
2362 +#gestiontb-footer-universel .gtb-footer-social-play { fill: #0d2949; }
2363 +#gestiontb-footer-universel .gtb-footer-bottom { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 1rem 2rem; border-top: 1px solid rgba(255,255,255,.15); color: #9fb5ca; font-size: .78rem; }
2364 +#gestiontb-footer-universel .gtb-footer-legal { display: flex; align-items: center; justify-content: flex-end; gap: .55rem; flex-wrap: wrap; }
2365 +#gestiontb-footer-universel .gtb-footer-legal a { display: inline-flex; min-height: 36px; align-items: center; }
2366 +#gestiontb-footer-universel :focus-visible { outline: 3px solid #7fc5ff; outline-offset: 3px; border-radius: .2rem; }
2367 +@media (max-width: 1100px) {
2368 + #gestiontb-footer-universel .gtb-footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
2369 + #gestiontb-footer-universel .gtb-footer-about { grid-column: 1 / -1; }
2370 + #gestiontb-footer-universel .gtb-footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 1rem; }
2371 + #gestiontb-footer-universel .gtb-footer-legal { justify-content: flex-start; }
2372 +}
2373 +@media (max-width: 768px) {
2374 + #gestiontb-footer-universel .gtb-footer-shell { width: min(calc(100% - 2rem), var(--gtb-footer-shell)); }
2375 + #gestiontb-footer-universel .gtb-footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
2376 +}
2377 +@media (max-width: 480px) {
2378 + #gestiontb-footer-universel .gtb-footer-grid { grid-template-columns: 1fr; }
2379 +}
2380 +@media (prefers-reduced-motion: reduce) {
2381 + #gestiontb-footer-universel,
2382 + #gestiontb-footer-universel * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
2383 +}
2384 +</style>
2385 +
2386 +<footer id="gestiontb-footer-universel">
2387 + <div class="gtb-footer-shell gtb-footer-grid">
2388 + <div class="gtb-footer-about">
2389 + <a class="gtb-footer-brand" href="https://gestiontb.ca/page-dacceuil" aria-label="Retour à l'accueil"><span class="gtb-footer-logo-frame"><img class="gtb-footer-logo" src="https://assets.cdn.filesafe.space/9ubT2smip23BapsK3KeE/media/6a90cc96747464c6b3a3de9d.png" alt="Gestion TB" width="3417" height="991"></span></a>
2390 + <p>Votre partenaire local pour la location, la gestion et l’achat d’immeubles à Drummondville et dans les environs.</p>
2391 + </div>
2392 +
2393 + <div class="gtb-footer-section">
2394 + <h2>Navigation</h2>
2395 + <ul>
2396 + <!-- LIEN NOS PROJETS À AJOUTER -->
2397 + <li><a href="#" data-gtb-footer-placeholder>Nos projets</a></li>
2398 + <li><a href="https://gestiontb.ca/achat-dimmeuble">Achat d’immeuble</a></li>
2399 + <li><a href="https://gestiontb.ca/a-propos">À propos</a></li>
2400 + <li><a href="https://gestiontb.ca/nous-contacter">Nous joindre</a></li>
2401 + <li><a href="https://gestiontb.ca/maintenance">Espace locataire</a></li>
2402 + </ul>
2403 + </div>
2404 +
2405 + <div class="gtb-footer-section gtb-footer-contact">
2406 + <h2>Nous joindre</h2>
2407 + <div class="gtb-footer-contact-group">
2408 + <h3>Général</h3>
2409 + <ul><li><a href="/cdn-cgi/l/email-protection#dbb2b5bdb49bbcbea8afb2b4b5afb9f5b8ba"><span class="__cf_email__" data-cfemail="bcd5d2dad3fcdbd9cfc8d5d3d2c8de92dfdd">[email&#160;protected]</span></a></li><li><a href="tel:+18198178486">819-817-8486</a></li></ul>
2410 + </div>
2411 + <div class="gtb-footer-contact-group">
2412 + <h3>Location</h3>
2413 + <ul><li><a href="/cdn-cgi/l/email-protection#234f4c4042574a4c4d63444650574a4c4d57410d4042"><span class="__cf_email__" data-cfemail="35595a5654415c5a5b75525046415c5a5b41571b5654">[email&#160;protected]</span></a></li><li><a href="tel:+18198178486;ext=1">819-817-8486 poste 1</a></li></ul>
2414 + </div>
2415 + </div>
2416 +
2417 + <div class="gtb-footer-section">
2418 + <h2>Liens utiles</h2>
2419 + <ul>
2420 + <li><a href="https://gestiontb.ca/maintenance#demande-service">Demande de service</a></li>
2421 + <!-- LIEN BLOGUE À AJOUTER -->
2422 + <li><a href="#" data-gtb-footer-placeholder>Blogue</a></li>
2423 + <li><a href="https://gestiontb.ca/logements-a-louer">Logements à louer</a></li>
2424 + </ul>
2425 + </div>
2426 +
2427 + <div class="gtb-footer-section">
2428 + <h2>Suivez-nous</h2>
2429 + <ul class="gtb-footer-socials">
2430 + <!-- URL FACEBOOK À AJOUTER -->
2431 + <li><a href="#" data-gtb-footer-placeholder aria-label="Facebook"><svg viewBox="0 0 24 24" aria-hidden="true"><path d="M14 8h3V4h-3c-3 0-5 2-5 5v3H6v4h3v8h4v-8h3.5l.5-4h-4V9c0-.6.4-1 1-1Z"/></svg></a></li>
2432 + <!-- URL INSTAGRAM À AJOUTER -->
2433 + <li><a href="#" data-gtb-footer-placeholder aria-label="Instagram"><svg viewBox="0 0 24 24" aria-hidden="true"><rect x="3" y="3" width="18" height="18" rx="5"/><circle cx="12" cy="12" r="4.25"/><circle cx="17.5" cy="6.5" r="1" class="gtb-footer-social-dot"/></svg></a></li>
2434 + <!-- URL TIKTOK À AJOUTER -->
2435 + <li><a href="#" data-gtb-footer-placeholder aria-label="TikTok"><svg viewBox="0 0 24 24" aria-hidden="true"><path d="M15 3v11.1a5.1 5.1 0 1 1-4-5V13a2 2 0 1 0 1 1.7V3h3Zm0 0c.4 2.3 1.8 3.7 4 4v3c-1.5-.1-2.8-.6-4-1.4"/></svg></a></li>
2436 + <!-- URL YOUTUBE À AJOUTER -->
2437 + <li><a href="#" data-gtb-footer-placeholder aria-label="YouTube"><svg viewBox="0 0 24 24" aria-hidden="true"><path d="M21 7.2a2.8 2.8 0 0 0-2-2C17.3 4.7 12 4.7 12 4.7s-5.3 0-7 .5a2.8 2.8 0 0 0-2 2A29 29 0 0 0 2.5 12 29 29 0 0 0 3 16.8a2.8 2.8 0 0 0 2 2c1.7.5 7 .5 7 .5s5.3 0 7-.5a2.8 2.8 0 0 0 2-2 29 29 0 0 0 .5-4.8 29 29 0 0 0-.5-4.8Z"/><path d="m10 15.5 5-3.5-5-3.5Z" class="gtb-footer-social-play"/></svg></a></li>
2438 + </ul>
2439 + </div>
2440 + </div>
2441 +
2442 + <div class="gtb-footer-shell gtb-footer-bottom">
2443 + <span>© 2026 Gestion TB. Tous droits réservés.</span>
2444 + <nav class="gtb-footer-legal" aria-label="Liens légaux"><a href="https://gestiontb.ca/politiqueconfidentialite">Politique de confidentialité</a><span aria-hidden="true">·</span><a href="https://gestiontb.ca/termeetcondition">Conditions d’utilisation</a></nav>
2445 + </div>
2446 +</footer>
2447 +
2448 +<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
2449 +(function () {
2450 + "use strict";
2451 + var root = document.getElementById("gestiontb-footer-universel");
2452 + if (!root) return;
2453 + root.addEventListener("click", function (event) {
2454 + var link = event.target.closest("[data-gtb-footer-placeholder]");
2455 + if (link && root.contains(link)) event.preventDefault();
2456 + });
2457 +})();
2458 +</script>
2459 +</div><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div><!----><!----><!----><!----><span></span><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></div><!--]--><!--]--></div></div><!----><!----><!----></div><!--]--></div><!--]--><!--]--></div><div id="teleports"></div><script>window.__NUXT__={};window.__NUXT__.config={public:{baseUrl:"https://apisystem.tech",newBaseURL:"https://backend.leadconnectorhq.com/appengine",serverBaseUrl:"https://apisystem.tech",NODE_ENV:"production",OLD_STORAGE_API_URL1_CDN:"https://cdn.msgsndr.com",OLD_STORAGE_API_URL2_CDN:"https://assets.cdn.msgsndr.com",STORAGE_API_URL1_CDN:"https://cdn.filesafe.space",STORAGE_API_URL2_CDN:"https://assets.cdn.filesafe.space",REVIEW_WIDGET_URL:"https://backend.leadconnectorhq.com/appengine/reviews/get_widget/",REST_API_URLS:"https://backend.leadconnectorhq.com",STATS_API_URL:"https://backend.leadconnectorhq.com",paymentsServiceUrl:"https://backend.leadconnectorhq.com",HLS_URL:"https://content.apisystem.tech",IMAGE_CDN:"https://images.leadconnectorhq.com",IMAGE_CDN_WHITELIST:["assets.cdn.msgsndr.com","cdn.msgsndr.com","cdn.filesafe.space","assets.cdn.filesafe.space","storage.googleapis.com","firebasestorage.googleapis.com"],authorizeAcceptJsUrlTestMode:"https://jstest.authorize.net/v1/Accept.js",authorizeAcceptJsUrlLiveMode:"https://js.authorize.net/v1/Accept.js",nmiPaymentProviderScriptUrl:"https://secure.safewebservices.com/token/Collect.js",FORMS_SERVICE_URL:"https://backend.leadconnectorhq.com",SURVEYS_SERVICE_URL:"https://backend.leadconnectorhq.com",QR_CODE_SERVICE_URL:"https://backend.leadconnectorhq.com",GOOGLE_API_SERVICE_URL:"https://services.leadconnectorhq.com/common-google",ECOMMERCE_SERVICE_URL:"https://backend.leadconnectorhq.com/ecommerce",HL_HOMEPAGE_STEPID:"6dcfb06b-9734-44bd-bbcc-8bd4b7fec976",STRIPE_BNPL_CONFIGURATION_TEST:"pmc_1OaAR1FpU9DlKp7RH0HHU4xH",STRIPE_BNPL_CONFIGURATION_LIVE:"pmc_1OlnyOFpU9DlKp7R4tTHuihw",STRIPE_PMC_KEY_TEST:"pmc_1Ps2bTFpU9DlKp7RmgTzmJUL",STRIPE_PMC_KEY_LIVE:"pmc_1PzYYpFpU9DlKp7RcgxVmcvS",STRIPE_DEFAULT_CONFIGURATION_TEST:"pmc_1M95aRFpU9DlKp7ReIqqY0PP",STRIPE_DEFAULT_CONFIGURATION_LIVE:"pmc_1NYilsFpU9DlKp7RkMiUNrKE",STRIPE_DEFAULT_CONFIGURATION_TEST_SURVEY:"pmc_1QrvB7FpU9DlKp7RcL9L2idV",STRIPE_DEFAULT_CONFIGURATION_LIVE_SURVEY:"pmc_1Qwds7FpU9DlKp7RMCBlclQ0",STRIPE_DEFAULT_CONFIGURATION_TEST_FORM:"pmc_1Qodu1FpU9DlKp7RoWHB8Txx",STRIPE_DEFAULT_CONFIGURATION_LIVE_FORM:"pmc_1QwcV0FpU9DlKp7RORUHPK8B",STRIPE_CARD_ONLY_TEST_PMC:"pmc_1PVvmcFpU9DlKp7RFsjX5G7G",STRIPE_CARD_ONLY_LIVE_PMC:"pmc_1PVvogFpU9DlKp7Rj8F0ITLV",ENTERPRISE_RECAPTCHA_SITE_KEY:"6LeDBFwpAAAAAJe8ux9-imrqZ2ueRsEtdiWoDDpX",ENTERPRISE_RECAPTCHA_CHECKBOX_SITE_KEY:"6Lfjxx4sAAAAAIsnmlR5mKNS7QwIWqDjABW2SUu7",STRIPE_ONE_STEP_PMC_ID_TEST:"pmc_1QodqYFpU9DlKp7R8EIapiwE",STRIPE_TWO_STEP_PMC_ID_TEST:"pmc_1QodsEFpU9DlKp7RHRyay2KC",STRIPE_ONE_STEP_PMC_ID_LIVE:"pmc_1QwcLrFpU9DlKp7Rl9zb07x1",STRIPE_TWO_STEP_PMC_ID_LIVE:"pmc_1QwcP4FpU9DlKp7R4L0ytWkJ",RECAPTCHA_SITE_KEY:"6LfcbMseAAAAAI-EJoB-lUh7_TJaYloLbcbmnhEO",TURNSTILE_INVISIBLE_SITE_KEY:"0x4AAAAAACCpVlau-4k7cJ33",TURNSTILE_VISIBLE_SITE_KEY:"0x4AAAAAACDfuwSBQ2sYO1VD",TURNSTILE_INVISIBLE_TEST_SITE_KEY:"1x00000000000000000000BB",TURNSTILE_VISIBLE_TEST_SITE_KEY:"1x00000000000000000000AA",ENCRYPTED_STORAGE_SECRET_KEY:"daffd34c5f824e455827b0c87cbbf64f8b0cd32b79b6d73100fc4bdf41f095ea",formFunnelWrapperEnabled:true,formCalendarWrapperEnabled:true,formNativeWrapperEnabled:true,formCalendarServiceWrapperEnabled:true,formCalendarRentalWrapperEnabled:true,surveyFunnelWrapperEnabled:true,surveyNativeWrapperEnabled:true,quizNativeWrapperEnabled:true,i18n:{baseUrl:"",defaultLocale:"en",defaultDirection:"ltr",strategy:"no_prefix",lazy:true,rootRedirect:"",routesNameSeparator:"___",defaultLocaleRouteNameSuffix:"default",skipSettingLocaleOnNavigate:true,differentDomains:false,trailingSlash:false,detectBrowserLanguage:{alwaysRedirect:false,cookieCrossOrigin:false,cookieDomain:"",cookieKey:"i18n_redirected",cookieSecure:false,fallbackLocale:"",redirectOn:"root",useCookie:true},experimental:{localeDetector:"",switchLocalePathLinkSSR:false,autoImportTranslationFunctions:false,typedPages:true,typedOptionsAndMessages:false,generatedLocaleFilePathFormat:"absolute",alternateLinkCanonicalQueries:false,hmr:true},multiDomainLocales:false,domainLocales:{da:{domain:""},de:{domain:""},en:{domain:""},es:{domain:""},fi:{domain:""},"fr-ca":{domain:""},fr:{domain:""},hu:{domain:""},it:{domain:""},nl:{domain:""},no:{domain:""},pl:{domain:""},"pt-br":{domain:""},pt:{domain:""},sv:{domain:""}}}},app:{baseURL:"/",buildId:"0679174f-ece6-48b3-8829-7974c06496d7",buildAssetsDir:"/_preview/",cdnURL:"https://stcdn.leadconnectorhq.com/"}}</script><script type="application/json" data-nuxt-data="nuxt-app" data-ssr="true" id="__NUXT_DATA__">[["ShallowReactive",1],{"data":2,"state":781,"once":1002,"_errors":1003,"serverRendered":35},["ShallowReactive",3],{"pageData":4},{"elements":5,"popup":403,"fontsToLoad":404,"customFonts":405,"meta":406,"domainName":420,"pageUrl":421,"pageId":422,"pageName":423,"locationId":424,"headerCode":39,"footerCode":39,"popupsList":425,"favicon":676,"globalHeadTrackingCode":677,"globalBodyTrackingCode":39,"funnelId":678,"funnelName":679,"stepId":680,"affiliateId":-1,"cookieConsent":681,"disablePageLevelCookieConsent":43,"pixelToInit":747,"isOptimisePageLoad":35,"backgroundSettingsClass":41,"schemaMarkup":748,"isGeolocationNeeded":35},[6,13,51,76,107,130,162,185,212,225,252,275,301,313,342,365,392],{"id":7,"child":8},"hl_main",[9,10,11,12],"section-JEnfcw8zO5","section-647pwPWczD","section-0kjgjk3DFX","section-wmdTSyykT8",{"id":9,"type":14,"child":15,"class":17,"styles":26,"extra":30,"meta":14,"tagName":48,"title":49,"_id":9,"classStr":50},"section",[16],"row-ufVUOO75V_",{"width":18,"borders":20,"borderRadius":22,"radiusEdge":24},{"value":19},"fullSection",{"value":21},"noBorder",{"value":23},"radius0",{"value":25},"none",{"borderWidth":27},{"value":28,"unit":29},"2","px",{"sticky":31,"visibility":33,"bgImage":36,"allowRowMaxWidth":42,"customClass":44,"elementScreenshot":46},{"value":32},"noneSticky",{"value":34},{"hideDesktop":35,"hideMobile":35,"hideTablet":35},true,{"value":37},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},"image","","1","bgCover",{"value":43},false,{"value":45},[],{"value":47},[],"c-section","Section 3 1\u002F2","fullSection noBorder radius0 none",{"id":16,"type":52,"child":53,"class":55,"styles":61,"extra":63,"tagName":73,"meta":52,"title":74,"classStr":75},"row",[54],"col-KIf4Ql0phl",{"alignRow":56,"borders":58,"borderRadius":59,"radiusEdge":60},{"value":57},"row-align-center",{"value":21},{"value":23},{"value":25},{"borderWidth":62},{"value":28,"unit":29},{"visibility":64,"bgImage":66,"rowWidth":68,"customClass":71},{"value":65},{"hideDesktop":43,"hideMobile":43},{"value":67},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":69,"unit":70},100,"%",{"value":72},[],"c-row","1 Column Row","row-align-center noBorder radius0 none",{"id":54,"type":77,"child":78,"class":80,"styles":85,"extra":87,"tagName":103,"meta":77,"title":104,"noOfColumns":105,"classStr":106},"col",[79],"heading-3uWiOQESsM",{"borders":81,"borderRadius":82,"radiusEdge":83,"nestedColumn":84},{"value":21},{"value":23},{"value":25},{"value":39},{"borderWidth":86},{"value":28,"unit":29},{"visibility":88,"bgImage":90,"columnLayout":92,"justifyContentColumnLayout":94,"alignContentColumnLayout":96,"forceColumnLayoutForMobile":98,"customClass":99,"elementVersion":101},{"value":89},{"hideDesktop":43,"hideMobile":43},{"value":91},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":93},"column",{"value":95},"center",{"value":97},"inherit",{"value":35},{"value":100},[],{"value":102},2,"c-column","1st Column",1,"noBorder radius0 none",{"extra":108,"id":79,"tagName":116,"class":117,"meta":129},{"visibility":109,"text":111,"nodeId":113,"customClass":114},{"value":110},{"hideMobile":39,"hideDesktop":39},{"value":112},"\u003Ch1>3 \u003Cstrong>½\u003C\u002Fstrong> À LOUER\u003C\u002Fh1>","cheading-3uWiOQESsM",{"value":115},[],"c-heading",{"borders":118,"borderRadius":119,"radiusEdge":120,"entranceAnimation":121,"animationScale":123,"animationDuration":124,"animationDelay":125,"animationEasing":127},{"value":21},{"value":23},{"value":25},{"value":122},null,{"value":105},{"value":105},{"value":126},0,{"value":128},"linear","heading",{"id":10,"type":14,"child":131,"class":133,"styles":141,"extra":144,"meta":14,"tagName":48,"title":156,"tabletStyles":157,"tabletWrapper":158,"classStr":19,"_id":10,"prebuiltSectionTemplate":159},[132],"row-WdC-9fjO44",{"width":134,"entranceAnimation":135,"animationScale":136,"animationDuration":137,"animationDelay":138,"animationEasing":139,"disableAnimationsOnMobile":140},{"value":19},{"value":122},{"value":105},{"value":105},{"value":126},{"value":128},{"value":35},{"borderWidth":142},{"value":143},"0px",{"sticky":145,"visibility":147,"bgImage":149,"allowRowMaxWidth":151,"customClass":152,"elementScreenshot":154},{"value":146},"stickyTop",{"value":148},{"hideDesktop":43,"hideTablet":43,"hideMobile":43},{"value":150},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":43},{"value":153},[],{"value":155},[],"header-refonte-2026",{},{},{"_id":160,"name":156,"prebuiltSectionTemplateType":161,"deleted":43},"6a91ace5b781d8e29b8097f5","sync",{"id":132,"type":52,"child":163,"class":165,"styles":173,"extra":175,"tagName":73,"meta":52,"tabletStyles":183,"tabletWrapper":184,"title":74,"classStr":57},[164],"col-uqg239Xywm",{"alignRow":166,"entranceAnimation":167,"animationScale":168,"animationDuration":169,"animationDelay":170,"animationEasing":171,"disableAnimationsOnMobile":172},{"value":57},{"value":122},{"value":105},{"value":105},{"value":126},{"value":128},{"value":35},{"borderWidth":174},{"value":143},{"visibility":176,"bgImage":178,"rowWidth":180,"customClass":181},{"value":177},{"hideDesktop":43,"hideTablet":43,"hideMobile":43},{"value":179},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":69,"unit":70},{"value":182},[],{},{},{"id":164,"type":77,"child":186,"class":188,"styles":196,"extra":198,"tagName":103,"meta":77,"tabletStyles":210,"tabletWrapper":211,"title":104,"noOfColumns":105},[187],"custom-code-Vsh0VbcMEx",{"entranceAnimation":189,"animationScale":190,"animationDuration":191,"animationDelay":192,"animationEasing":193,"disableAnimationsOnMobile":194,"nestedColumn":195},{"value":122},{"value":105},{"value":105},{"value":126},{"value":128},{"value":35},{"value":39},{"borderWidth":197},{"value":143},{"visibility":199,"bgImage":201,"columnLayout":203,"justifyContentColumnLayout":204,"alignContentColumnLayout":205,"forceColumnLayoutForMobile":206,"customClass":207,"elementVersion":209},{"value":200},{"hideDesktop":43,"hideTablet":43,"hideMobile":43},{"value":202},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":93},{"value":95},{"value":97},{"value":35},{"value":208},[],{"value":102},{},{},{"extra":213,"id":187,"meta":222,"tagName":223,"class":224},{"visibility":214,"customCode":216,"customClass":219,"nodeId":221},{"value":215},{"hideMobile":39,"hideDesktop":39,"hideTablet":43},{"value":217},{"rawCustomCode":218},"\u003C!--\n GESTION TB — HEADER UNIVERSEL GOHIGHLEVEL\n Les URL sont centralisées au début du JavaScript, dans GTB_HEADER_URLS.\n Le logo public officiel est configuré directement dans le fragment.\n-->\n\u003Cstyle>\n@font-face {\n font-family: \"Allura\";\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n src: url(\"https:\u002F\u002Ffonts.gstatic.com\u002Fs\u002Fallura\u002Fv23\u002F9oRPNYsQpS4zjuA_iwgWHNn7GQ.woff2\") format(\"woff2\");\n}\n\n#gestiontb-header-universel {\n position: sticky;\n z-index: 1000;\n top: 0;\n width: 100vw !important;\n max-width: none !important;\n margin: 0 calc(50% - 50vw) !important;\n overflow: visible;\n box-sizing: border-box;\n border-bottom: 1px solid transparent;\n color: #10243d;\n background: rgba(255,255,255,.94);\n font-family: \"Avenir Next World\", \"Avenir Next\", Avenir, \"Segoe UI\", sans-serif;\n font-size: 16px;\n line-height: 1.55;\n text-align: left;\n backdrop-filter: blur(14px);\n transition: box-shadow .25s ease, border-color .25s ease;\n --gtb-header-berkeley: #163760;\n --gtb-header-denim: #005fb5;\n --gtb-header-white: #ffffff;\n --gtb-header-sky: #f2f7fc;\n --gtb-header-line: #d8e3ee;\n --gtb-header-shell: 1200px;\n --gtb-header-radius: .3rem;\n --gtb-header-shadow: 0 14px 36px rgba(22,55,96,.08);\n}\n#gestiontb-header-universel,\n#gestiontb-header-universel *,\n#gestiontb-header-universel *::before,\n#gestiontb-header-universel *::after { box-sizing: border-box; }\n#gestiontb-header-universel.gtb-header-is-scrolled { border-color: var(--gtb-header-line); box-shadow: 0 8px 30px rgba(22,55,96,.07); }\n#gestiontb-header-universel .gtb-header-shell { width: min(calc(100% - 3rem), var(--gtb-header-shell)); margin-inline: auto; }\n#gestiontb-header-universel .gtb-header-inner { position: relative; display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 2rem; }\n#gestiontb-header-universel .gtb-header-brand { display: flex; min-width: 155px; align-items: center; color: inherit; text-decoration: none; }\n#gestiontb-header-universel .gtb-header-logo-frame { display: block; width: 192px; height: 55px; }\n#gestiontb-header-universel .gtb-header-logo { display: block; width: 192px; height: 55px; max-width: 100%; border: 0; outline: 0; object-fit: contain; pointer-events: none; }\n#gestiontb-header-universel .gtb-header-nav,\n#gestiontb-header-universel .gtb-header-links { display: flex; align-items: center; }\n#gestiontb-header-universel .gtb-header-nav { gap: 1.25rem; }\n#gestiontb-header-universel .gtb-header-links { gap: .15rem; margin: 0; padding: 0; list-style: none; }\n#gestiontb-header-universel .gtb-header-links a { display: flex; min-height: 44px; align-items: center; padding: .45rem .65rem; border-radius: .35rem; color: #334a63; font-size: .88rem; font-weight: 650; text-decoration: none; }\n#gestiontb-header-universel .gtb-header-links a:hover,\n#gestiontb-header-universel .gtb-header-links a[aria-current=\"page\"] { color: var(--gtb-header-denim); background: var(--gtb-header-sky); }\n#gestiontb-header-universel .gtb-header-links a[data-gtb-header-url=\"achat\"] {\n position: relative;\n}\n#gestiontb-header-universel .gtb-header-links a[data-gtb-header-url=\"achat\"]::after {\n position: absolute;\n top: 50%;\n left: 50%;\n color: #005fb5;\n content: \"Sans commission\";\n font-family: \"Allura\", \"Snell Roundhand\", cursive;\n font-size: 1.32rem;\n font-weight: 400;\n letter-spacing: 0;\n line-height: .8;\n pointer-events: none;\n -webkit-text-stroke: 1.2px #fff;\n paint-order: stroke fill;\n transform: translate(-50%, 12%);\n transform-origin: center;\n white-space: nowrap;\n}\n#gestiontb-header-universel .gtb-header-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .8rem 1.25rem; border: 1px solid transparent; border-radius: var(--gtb-header-radius); color: var(--gtb-header-white); background: var(--gtb-header-berkeley); box-shadow: 0 8px 22px rgba(22,55,96,.2); font-size: .94rem; font-weight: 750; text-decoration: none; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }\n#gestiontb-header-universel .gtb-header-button:hover { color: var(--gtb-header-white); background: #0d2949; transform: translateY(-2px); }\n#gestiontb-header-universel .gtb-header-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--gtb-header-line); border-radius: var(--gtb-header-radius); background: var(--gtb-header-white); }\n#gestiontb-header-universel .gtb-header-toggle > span:not(.gtb-header-sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--gtb-header-berkeley); transition: transform .2s ease, opacity .2s ease; }\n#gestiontb-header-universel .gtb-header-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }\n#gestiontb-header-universel :focus-visible { outline: 3px solid #7fc5ff; outline-offset: 3px; border-radius: .2rem; }\n@media (max-width: 1100px) {\n #gestiontb-header-universel .gtb-header-inner { align-items: flex-start; flex-wrap: wrap; padding-block: .65rem; }\n #gestiontb-header-universel .gtb-header-nav { width: 100%; align-items: stretch; flex-direction: column; gap: .7rem; padding: .35rem 0 .75rem; }\n #gestiontb-header-universel .gtb-header-links { display: block; width: 100%; }\n #gestiontb-header-universel .gtb-header-links a { padding-inline: .8rem; }\n #gestiontb-header-universel .gtb-header-links a[data-gtb-header-url=\"achat\"]::after { left: calc(.8rem + 3px); transform: translateY(12%); }\n #gestiontb-header-universel .gtb-header-button { width: 100%; }\n #gestiontb-header-universel.gtb-header-js .gtb-header-inner { min-height: 78px; align-items: center; flex-wrap: nowrap; padding-block: 0; }\n #gestiontb-header-universel.gtb-header-js .gtb-header-toggle { display: block; }\n #gestiontb-header-universel.gtb-header-js .gtb-header-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; width: auto; padding: 1rem; border: 1px solid var(--gtb-header-line); border-radius: 0 0 .55rem .55rem; background: var(--gtb-header-white); box-shadow: var(--gtb-header-shadow); }\n #gestiontb-header-universel.gtb-header-js .gtb-header-nav.gtb-header-is-open { display: block; }\n #gestiontb-header-universel.gtb-header-js .gtb-header-button { margin-top: .7rem; }\n #gestiontb-header-universel .gtb-header-toggle[aria-expanded=\"true\"] > span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }\n #gestiontb-header-universel .gtb-header-toggle[aria-expanded=\"true\"] > span:nth-of-type(3) { opacity: 0; }\n #gestiontb-header-universel .gtb-header-toggle[aria-expanded=\"true\"] > span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }\n}\n@media (max-width: 768px) {\n #gestiontb-header-universel .gtb-header-shell { width: min(calc(100% - 2rem), var(--gtb-header-shell)); }\n #gestiontb-header-universel.gtb-header-js .gtb-header-inner { min-height: 66px; }\n}\n@media (max-width: 480px) {\n #gestiontb-header-universel.gtb-header-js .gtb-header-nav { right: -.25rem; left: -.25rem; }\n}\n@media (prefers-reduced-motion: reduce) {\n #gestiontb-header-universel,\n #gestiontb-header-universel * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }\n}\n\u003C\u002Fstyle>\n\n\u003Cheader id=\"gestiontb-header-universel\">\n \u003Cdiv class=\"gtb-header-shell gtb-header-inner\">\n \u003Ca class=\"gtb-header-brand\" data-gtb-header-url=\"accueil\" href=\"https:\u002F\u002Fgestiontb.ca\u002Fpage-dacceuil\" aria-label=\"Retour à l'accueil\">\n \u003Cspan class=\"gtb-header-logo-frame\">\u003Cimg class=\"gtb-header-logo\" src=\"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a90cc969a0fb7c669968870.png\" alt=\"Gestion TB\" width=\"3417\" height=\"991\">\u003C\u002Fspan>\n \u003C\u002Fa>\n \u003Cbutton class=\"gtb-header-toggle\" type=\"button\" aria-expanded=\"false\" aria-controls=\"gtb-header-navigation\" data-gtb-header-menu-button>\n \u003Cspan class=\"gtb-header-sr-only\" data-gtb-header-menu-label>Ouvrir le menu\u003C\u002Fspan>\u003Cspan>\u003C\u002Fspan>\u003Cspan>\u003C\u002Fspan>\u003Cspan>\u003C\u002Fspan>\n \u003C\u002Fbutton>\n \u003Cnav class=\"gtb-header-nav\" id=\"gtb-header-navigation\" aria-label=\"Navigation principale\" data-gtb-header-menu>\n \u003Cul class=\"gtb-header-links\">\n \u003C!-- LIEN NOS PROJETS À AJOUTER -->\n \u003Cli>\u003Ca data-gtb-header-url=\"projets\">Nos Projets\u003C\u002Fa>\u003C\u002Fli>\n \u003Cli>\u003Ca data-gtb-header-url=\"achat\" data-gtb-header-page=\"achat\">Achat d’immeuble\u003C\u002Fa>\u003C\u002Fli>\n \u003Cli>\u003Ca data-gtb-header-url=\"apropos\" data-gtb-header-page=\"apropos\">À propos\u003C\u002Fa>\u003C\u002Fli>\n \u003Cli>\u003Ca data-gtb-header-url=\"contact\" data-gtb-header-page=\"contact\">Nous Joindre\u003C\u002Fa>\u003C\u002Fli>\n \u003Cli>\u003Ca data-gtb-header-url=\"locataire\" data-gtb-header-page=\"locataire\">Espace Locataire\u003C\u002Fa>\u003C\u002Fli>\n \u003C\u002Ful>\n \u003Ca class=\"gtb-header-button\" data-gtb-header-url=\"logements\" data-gtb-header-page=\"logements\">Voir les logements\u003C\u002Fa>\n \u003C\u002Fnav>\n \u003C\u002Fdiv>\n\u003C\u002Fheader>\n\n\u003Cscript>\n(function () {\n \"use strict\";\n\n \u002F* URL À MODIFIER ICI UNIQUEMENT *\u002F\n var GTB_HEADER_URLS = {\n accueil: \"https:\u002F\u002Fgestiontb.ca\u002Fpage-dacceuil\",\n projets: \"#\", \u002F* LIEN NOS PROJETS À AJOUTER *\u002F\n achat: \"https:\u002F\u002Fgestiontb.ca\u002Fachat-dimmeuble\",\n apropos: \"https:\u002F\u002Fgestiontb.ca\u002Fa-propos\",\n contact: \"https:\u002F\u002Fgestiontb.ca\u002Fnous-contacter\",\n locataire: \"https:\u002F\u002Fgestiontb.ca\u002Fmaintenance\",\n logements: \"https:\u002F\u002Fgestiontb.ca\u002Flogements-a-louer\"\n };\n\n var root = document.getElementById(\"gestiontb-header-universel\");\n if (!root || root.getAttribute(\"data-gtb-header-initialized\") === \"true\") return;\n root.setAttribute(\"data-gtb-header-initialized\", \"true\");\n root.classList.add(\"gtb-header-js\");\n\n var links = Array.prototype.slice.call(root.querySelectorAll(\"[data-gtb-header-url]\"));\n links.forEach(function (link) {\n var key = link.getAttribute(\"data-gtb-header-url\");\n var url = GTB_HEADER_URLS[key];\n if (!url) return;\n link.setAttribute(\"href\", url);\n if (url === \"#\") link.setAttribute(\"aria-disabled\", \"true\");\n });\n\n root.addEventListener(\"click\", function (event) {\n var link = event.target.closest(\"[data-gtb-header-url]\");\n if (!link || !root.contains(link)) return;\n var url = GTB_HEADER_URLS[link.getAttribute(\"data-gtb-header-url\")];\n if (url === \"#\") event.preventDefault();\n });\n\n var detectActivePage = function () {\n var currentPage = null;\n if (document.getElementById(\"gestiontb-a-propos-contenu\")) currentPage = \"apropos\";\n else if (document.getElementById(\"gestiontb-achat-immeuble\")) currentPage = \"achat\";\n else if (document.getElementById(\"gtb-nous-joindre\")) currentPage = \"contact\";\n else if (document.getElementById(\"gtb-espace-locataire\")) currentPage = \"locataire\";\n else if (document.getElementById(\"gestiontb-logements-a-louer\")) currentPage = \"logements\";\n else {\n var current = window.location.href.toLowerCase();\n if (\u002F\\\u002Fachat-dimmeuble(?:[\u002F?#]|$)\u002F.test(current)) currentPage = \"achat\";\n else if (\u002F\\\u002Fa-propos(?:[\u002F?#]|$)\u002F.test(current)) currentPage = \"apropos\";\n else if (\u002F\\\u002Fnous-contacter(?:[\u002F?#]|$)\u002F.test(current)) currentPage = \"contact\";\n else if (\u002F\\\u002Fmaintenance(?:[\u002F?#]|$)\u002F.test(current)) currentPage = \"locataire\";\n else if (\u002F\\\u002Flogements-a-louer(?:[\u002F?#]|$)\u002F.test(current)) currentPage = \"logements\";\n }\n Array.prototype.slice.call(root.querySelectorAll(\"[data-gtb-header-page]\")).forEach(function (link) {\n if (link.getAttribute(\"data-gtb-header-page\") === currentPage) link.setAttribute(\"aria-current\", \"page\");\n else link.removeAttribute(\"aria-current\");\n });\n };\n if (document.readyState === \"loading\") document.addEventListener(\"DOMContentLoaded\", detectActivePage, { once: true });\n else detectActivePage();\n\n var button = root.querySelector(\"[data-gtb-header-menu-button]\");\n var menu = root.querySelector(\"[data-gtb-header-menu]\");\n if (button && menu) {\n var label = button.querySelector(\"[data-gtb-header-menu-label]\");\n var isOpen = function () { return button.getAttribute(\"aria-expanded\") === \"true\"; };\n var close = function (focusButton) {\n if (!isOpen()) return;\n button.setAttribute(\"aria-expanded\", \"false\");\n menu.classList.remove(\"gtb-header-is-open\");\n if (label) label.textContent = \"Ouvrir le menu\";\n if (focusButton) button.focus();\n };\n button.addEventListener(\"click\", function () {\n var open = !isOpen();\n button.setAttribute(\"aria-expanded\", String(open));\n menu.classList.toggle(\"gtb-header-is-open\", open);\n if (label) label.textContent = open ? \"Fermer le menu\" : \"Ouvrir le menu\";\n });\n menu.addEventListener(\"click\", function (event) { if (event.target.closest(\"a\")) close(false); });\n document.addEventListener(\"click\", function (event) { if (isOpen() && !root.contains(event.target)) close(false); });\n document.addEventListener(\"keydown\", function (event) { if (event.key === \"Escape\") close(true); });\n window.addEventListener(\"resize\", function () { if (window.innerWidth > 1100) close(false); });\n }\n\n var updateHeader = function () { root.classList.toggle(\"gtb-header-is-scrolled\", window.scrollY > 10); };\n window.addEventListener(\"scroll\", updateHeader, { passive: true });\n updateHeader();\n})();\n\u003C\u002Fscript>\n",{"value":220},[],"ccustom-code-Vsh0VbcMEx","custom-code","c-custom-code",{},{"id":11,"type":14,"child":226,"class":228,"styles":236,"extra":238,"meta":14,"tagName":48,"title":249,"tabletStyles":250,"tabletWrapper":251,"classStr":19,"_id":11},[227],"row-DRyw8jyBEZ",{"width":229,"entranceAnimation":230,"animationScale":231,"animationDuration":232,"animationDelay":233,"animationEasing":234,"disableAnimationsOnMobile":235},{"value":19},{"value":122},{"value":105},{"value":105},{"value":126},{"value":128},{"value":35},{"borderWidth":237},{"value":143},{"sticky":239,"visibility":240,"bgImage":242,"allowRowMaxWidth":244,"customClass":245,"elementScreenshot":247},{"value":32},{"value":241},{"hideDesktop":43,"hideTablet":43,"hideMobile":43},{"value":243},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":43},{"value":246},[],{"value":248},[],"Section",{},{},{"id":227,"type":52,"child":253,"class":255,"styles":263,"extra":265,"tagName":73,"meta":52,"tabletStyles":273,"tabletWrapper":274,"title":74,"classStr":57},[254],"col-_QFqrowOWR",{"alignRow":256,"entranceAnimation":257,"animationScale":258,"animationDuration":259,"animationDelay":260,"animationEasing":261,"disableAnimationsOnMobile":262},{"value":57},{"value":122},{"value":105},{"value":105},{"value":126},{"value":128},{"value":35},{"borderWidth":264},{"value":143},{"visibility":266,"bgImage":268,"rowWidth":270,"customClass":271},{"value":267},{"hideDesktop":43,"hideTablet":43,"hideMobile":43},{"value":269},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":69,"unit":70},{"value":272},[],{},{},{"id":254,"type":77,"child":276,"class":278,"styles":285,"extra":287,"tagName":103,"meta":77,"tabletStyles":299,"tabletWrapper":300,"title":104,"noOfColumns":105},[277],"custom-code-WC4M1By6OW",{"entranceAnimation":279,"animationScale":280,"animationDuration":281,"animationDelay":282,"animationEasing":283,"disableAnimationsOnMobile":284},{"value":122},{"value":105},{"value":105},{"value":126},{"value":128},{"value":35},{"borderWidth":286},{"value":143},{"visibility":288,"bgImage":290,"columnLayout":292,"justifyContentColumnLayout":293,"alignContentColumnLayout":294,"forceColumnLayoutForMobile":295,"customClass":296,"elementVersion":298},{"value":289},{"hideDesktop":43,"hideTablet":43,"hideMobile":43},{"value":291},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":93},{"value":95},{"value":97},{"value":35},{"value":297},[],{"value":102},{},{},{"extra":302,"id":277,"meta":222,"tagName":223,"class":312},{"visibility":303,"customCode":305,"customClass":309,"nodeId":311},{"value":304},{"hideMobile":39,"hideDesktop":39,"hideTablet":43},{"value":306,"thirdPartyPlatform":308},{"rawCustomCode":307},"\u003C!--\n GESTION TB — LOGEMENTS À LOUER — CONTENU GOHIGHLEVEL\n Fragment autonome : aucun header, aucun footer, aucun fetch et aucun chemin local.\n NE PAS MODIFIER LES LOGEMENTS ICI.\n Source maître : contenu\u002Flogements.js\n Régénération : node scripts\u002Fgenerer-exports-logements.js\n-->\n\u003Cstyle>\n\u002F* Composant partagé : cartes, fiche logement et formulaire de location. *\u002F\n#gestiontb-logements-a-louer button { cursor: pointer; font: inherit; }\n#gestiontb-logements-a-louer [hidden] { display: none !important; }\n#gestiontb-logements-a-louer :focus-visible { outline: 3px solid #7fc5ff; outline-offset: 3px; }\n\n\u002F* Même langage visuel que styles\u002Flogements.css sur l’Accueil. *\u002F\n#gestiontb-logements-a-louer .gtb-property { display: flex; height: 100%; overflow: hidden; flex-direction: column; border: 1px solid var(--gtb-rentals-line); border-radius: .55rem; background: var(--gtb-rentals-white); box-shadow: 0 8px 30px rgba(22,55,96,.055); transition: opacity .3s ease, transform .25s ease, box-shadow .25s ease; }\n#gestiontb-logements-a-louer .gtb-property.gtb-rentals-card-enter { opacity: 0; transform: translateY(12px); }\n#gestiontb-logements-a-louer .gtb-property:hover { transform: translateY(-4px); box-shadow: var(--gtb-rentals-shadow); }\n#gestiontb-logements-a-louer .gtb-property__image { position: relative; width: 100%; aspect-ratio: 4 \u002F 3; overflow: hidden; flex: 0 0 auto; background: var(--gtb-rentals-sky); }\n#gestiontb-logements-a-louer .gtb-property__image > img { width: 100%; height: 100%; object-fit: cover; object-position: var(--gtb-image-position, 50% 50%); }\n#gestiontb-logements-a-louer .gtb-property__status { position: relative; z-index: 2; display: inline-block; margin: 1rem .25rem 0 1rem; padding: .35rem .55rem; border: 1px solid var(--gtb-rentals-line); border-radius: .2rem; color: var(--gtb-rentals-berkeley); background: var(--gtb-rentals-white); font-size: .72rem; font-weight: 800; }\n#gestiontb-logements-a-louer .gtb-property__image > .gtb-property__status { position: relative; }\n#gestiontb-logements-a-louer .gtb-property__status--internet { color: #fff; border-color: #005fb5; border-radius: 999px; background: #005fb5; }\n#gestiontb-logements-a-louer .gtb-property__photo,\n#gestiontb-logements-a-louer .gtb-property__placeholder { position: absolute; inset: 0; }\n#gestiontb-logements-a-louer .gtb-property__placeholder { display: grid; place-content: center; padding: 2rem; color: var(--gtb-rentals-berkeley); text-align: center; background: var(--gtb-rentals-sky); }\n#gestiontb-logements-a-louer .gtb-property__placeholder::before { position: absolute; inset: 0 18%; border-right: 1px solid rgba(0,95,181,.08); border-left: 1px solid rgba(0,95,181,.08); box-shadow: 80px 0 rgba(0,95,181,.06), -80px 0 rgba(0,95,181,.06); content: \"\"; }\n#gestiontb-logements-a-louer .gtb-property__placeholder > * { position: relative; z-index: 1; }\n#gestiontb-logements-a-louer .gtb-property__placeholder span { width: 72px; height: 2px; margin: 0 auto 1rem; background: var(--gtb-rentals-denim); }\n#gestiontb-logements-a-louer .gtb-property__placeholder strong { font-size: .95rem; }\n#gestiontb-logements-a-louer .gtb-property__body { display: flex; flex: 1; flex-direction: column; padding: 1rem; }\n#gestiontb-logements-a-louer .gtb-property__topline { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }\n#gestiontb-logements-a-louer .gtb-property__type { color: var(--gtb-rentals-denim); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }\n#gestiontb-logements-a-louer .gtb-property__price { color: var(--gtb-rentals-berkeley); font-size: 1.08rem; font-weight: 850; text-align: right; }\n#gestiontb-logements-a-louer .gtb-property h3 { display: -webkit-box; overflow: hidden; margin: .55rem 0 .18rem; color: var(--gtb-rentals-berkeley); font-size: 1.08rem; line-height: 1.2; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }\n#gestiontb-logements-a-louer .gtb-property__location { overflow: hidden; margin-bottom: .55rem; color: var(--gtb-rentals-muted); font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }\n#gestiontb-logements-a-louer .gtb-property__availability { margin: 0 0 .75rem; color: var(--gtb-rentals-denim); font-size: .78rem; font-weight: 700; }\n#gestiontb-logements-a-louer .gtb-property__facts { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin: 0 0 1rem; padding: .9rem 0; border-block: 1px solid var(--gtb-rentals-line); color: #314962; font-size: .82rem; }\n#gestiontb-logements-a-louer .gtb-property__features { display: flex; min-height: 46px; flex-wrap: wrap; gap: .3rem .45rem; margin: 0 0 1rem; padding: 0; color: #3e566e; list-style: none; }\n#gestiontb-logements-a-louer .gtb-property__features li { height: max-content; padding: 0; font-size: .78rem; }\n#gestiontb-logements-a-louer .gtb-property__features li + li::before { margin-right: .45rem; color: #91a6ba; content: \"·\"; }\n\n#gestiontb-logements-a-louer .gtb-rentals-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .8rem 1.25rem; border: 1px solid transparent; border-radius: .3rem; font-size: .94rem; font-weight: 750; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }\n#gestiontb-logements-a-louer .gtb-rentals-button:hover { transform: translateY(-2px); }\n#gestiontb-logements-a-louer .gtb-rentals-button--primary { color: var(--gtb-rentals-white); background: var(--gtb-rentals-berkeley); box-shadow: 0 8px 22px rgba(22,55,96,.2); }\n#gestiontb-logements-a-louer .gtb-rentals-button--secondary { color: var(--gtb-rentals-berkeley); border-color: #a9bdd1; background: var(--gtb-rentals-white); }\n#gestiontb-logements-a-louer .gtb-property .gtb-rentals-button { width: 100%; margin-top: auto; }\n\nbody.gtb-property-modal-open { overflow: hidden; }\n#gestiontb-logements-a-louer .gtb-property-modal { position: fixed; z-index: 10000; inset: 0; display: grid; place-items: center; padding: 1rem; }\n#gestiontb-logements-a-louer .gtb-property-modal__overlay { position: absolute; inset: 0; opacity: 0; background: rgba(7, 24, 43, .72); backdrop-filter: blur(3px); transition: opacity .22s ease; }\n#gestiontb-logements-a-louer .gtb-property-modal__dialog { position: relative; z-index: 1; width: min(1120px, calc(100vw - 2rem)); max-height: calc(100dvh - 2rem); overflow-x: hidden; overflow-y: auto; opacity: 0; border: 1px solid rgba(216, 227, 238, .9); border-radius: .8rem; background: var(--gtb-rentals-white); box-shadow: 0 30px 90px rgba(7, 24, 43, .3); transform: translateY(18px); transition: opacity .22s ease, transform .22s ease; overscroll-behavior: contain; }\n#gestiontb-logements-a-louer .gtb-property-modal.gtb-is-open .gtb-property-modal__overlay,\n#gestiontb-logements-a-louer .gtb-property-modal.gtb-is-open .gtb-property-modal__dialog { opacity: 1; }\n#gestiontb-logements-a-louer .gtb-property-modal.gtb-is-open .gtb-property-modal__dialog { transform: translateY(0); }\n#gestiontb-logements-a-louer .gtb-property-modal__close { position: absolute; z-index: 5; top: .9rem; right: .9rem; display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid var(--gtb-rentals-line); border-radius: 50%; color: var(--gtb-rentals-berkeley); background: rgba(255,255,255,.96); box-shadow: 0 7px 24px rgba(7,24,43,.14); font-size: 1.8rem; font-weight: 400; line-height: 1; }\n#gestiontb-logements-a-louer .gtb-property-modal__top { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr); min-height: 550px; }\n#gestiontb-logements-a-louer .gtb-property-modal__gallery { min-width: 0; padding: 1.25rem; background: var(--gtb-rentals-sky); }\n#gestiontb-logements-a-louer .gtb-property-modal__stage { position: relative; display: grid; min-height: 470px; overflow: hidden; place-items: center; border-radius: .55rem; background: #e8f0f7; touch-action: pan-y; }\n#gestiontb-logements-a-louer .gtb-property-modal__stage > img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; object-position: var(--gtb-modal-image-position, 50% 50%); }\n#gestiontb-logements-a-louer .gtb-property-modal__placeholder { position: absolute; inset: 0; display: grid; place-content: center; gap: 1rem; color: var(--gtb-rentals-berkeley); text-align: center; }\n#gestiontb-logements-a-louer .gtb-property-modal__placeholder span { width: 82px; height: 2px; margin-inline: auto; background: var(--gtb-rentals-denim); }\n#gestiontb-logements-a-louer .gtb-property-modal__gallery-button { position: absolute; z-index: 2; top: 50%; display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; color: var(--gtb-rentals-berkeley); background: rgba(255,255,255,.94); box-shadow: 0 5px 18px rgba(7,24,43,.16); font-size: 1.4rem; transform: translateY(-50%); }\n#gestiontb-logements-a-louer .gtb-property-modal__gallery-button--prev { left: .8rem; }\n#gestiontb-logements-a-louer .gtb-property-modal__gallery-button--next { right: .8rem; }\n#gestiontb-logements-a-louer .gtb-property-modal__counter { position: absolute; right: .8rem; bottom: .8rem; margin: 0; padding: .35rem .6rem; border-radius: 999px; color: #fff; background: rgba(7,24,43,.76); font-size: .76rem; font-weight: 750; }\n#gestiontb-logements-a-louer .gtb-property-modal__thumbs { display: grid; grid-auto-columns: 76px; grid-auto-flow: column; gap: .55rem; overflow-x: auto; margin-top: .75rem; padding: .1rem .1rem .4rem; }\n#gestiontb-logements-a-louer .gtb-property-modal__thumb { width: 76px; height: 62px; overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: .35rem; background: #dce8f2; opacity: .68; }\n#gestiontb-logements-a-louer .gtb-property-modal__thumb[aria-current=\"true\"] { border-color: var(--gtb-rentals-denim); opacity: 1; }\n#gestiontb-logements-a-louer .gtb-property-modal__thumb img { width: 100%; height: 100%; object-fit: cover; }\n#gestiontb-logements-a-louer .gtb-property-modal__summary { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(2rem, 4vw, 3.5rem); }\n#gestiontb-logements-a-louer .gtb-property-modal__type { margin-bottom: .7rem; color: var(--gtb-rentals-denim); font-size: .78rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }\n#gestiontb-logements-a-louer .gtb-property-modal__price { margin-bottom: .85rem; color: var(--gtb-rentals-berkeley); font-size: clamp(1.8rem, 3.4vw, 2.65rem); font-weight: 850; line-height: 1.05; letter-spacing: -.035em; }\n#gestiontb-logements-a-louer .gtb-property-modal__summary h2 { margin-bottom: .5rem; color: var(--gtb-rentals-berkeley); font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.08; letter-spacing: -.03em; }\n#gestiontb-logements-a-louer .gtb-property-modal__location { margin-bottom: .45rem; color: var(--gtb-rentals-muted); }\n#gestiontb-logements-a-louer .gtb-property-modal__availability { margin-bottom: 1.4rem; color: var(--gtb-rentals-denim); font-weight: 750; }\n#gestiontb-logements-a-louer .gtb-property-modal__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; margin-bottom: 1.5rem; }\n#gestiontb-logements-a-louer .gtb-property-modal__fact { display: flex; min-width: 0; align-items: center; gap: .65rem; padding: .7rem; border: 1px solid var(--gtb-rentals-line); border-radius: .4rem; color: #314962; background: #fbfdff; font-size: .82rem; }\n#gestiontb-logements-a-louer .gtb-property-modal__fact svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--gtb-rentals-denim); }\n#gestiontb-logements-a-louer .gtb-property-modal__actions { display: grid; gap: .7rem; margin-top: auto; }\n#gestiontb-logements-a-louer .gtb-property-modal__actions .gtb-rentals-button { width: 100%; }\n#gestiontb-logements-a-louer .gtb-property-modal__contacts { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }\n#gestiontb-logements-a-louer .gtb-property-modal__contact { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; border: 1px solid var(--gtb-rentals-line); border-radius: .3rem; color: var(--gtb-rentals-berkeley); font-size: .84rem; font-weight: 750; }\n#gestiontb-logements-a-louer .gtb-property-modal__details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 2.5rem; padding: clamp(2rem, 4vw, 3.5rem); border-top: 1px solid var(--gtb-rentals-line); }\n#gestiontb-logements-a-louer .gtb-property-modal__section { padding: 1.4rem 0; border-bottom: 1px solid var(--gtb-rentals-line); }\n#gestiontb-logements-a-louer .gtb-property-modal__section--wide { grid-column: 1 \u002F -1; }\n#gestiontb-logements-a-louer .gtb-property-modal__section h3 { margin-bottom: .85rem; color: var(--gtb-rentals-berkeley); font-size: 1.2rem; }\n#gestiontb-logements-a-louer .gtb-property-modal__section p { margin-bottom: 0; color: var(--gtb-rentals-muted); }\n#gestiontb-logements-a-louer .gtb-property-modal__features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem 1rem; margin: 0; padding: 0; color: #314962; list-style: none; }\n#gestiontb-logements-a-louer .gtb-property-modal__features li { position: relative; padding-left: 1rem; }\n#gestiontb-logements-a-louer .gtb-property-modal__features li::before { position: absolute; left: 0; color: var(--gtb-rentals-denim); content: \"•\"; }\n#gestiontb-logements-a-louer .gtb-property-modal__address { font-style: normal; color: var(--gtb-rentals-muted); }\n\n\u002F* Formulaire de location — second modal superposé à la fiche du logement. *\u002F\n#gestiontb-logements-a-louer .gtb-property-modal.gtb-has-application-open .gtb-property-modal__dialog { overflow: hidden; }\n#gestiontb-logements-a-louer .gtb-application-modal { position: fixed; z-index: 10020; inset: 0; display: grid; overflow: hidden; place-items: center; padding: 24px; }\n#gestiontb-logements-a-louer .gtb-application-modal__overlay { position: absolute; inset: 0; opacity: 0; background: rgba(7, 24, 43, .64); backdrop-filter: blur(3px); transition: opacity .22s ease; }\n#gestiontb-logements-a-louer .gtb-application-modal__dialog { position: relative; z-index: 1; display: flex; width: min(900px, calc(100vw - 48px)); height: calc(100dvh - 48px); max-height: calc(100dvh - 48px); overflow: hidden; flex-direction: column; opacity: 0; border: 1px solid rgba(216, 227, 238, .9); border-radius: 14px; background: var(--gtb-rentals-white); box-shadow: 0 24px 72px rgba(7, 24, 43, .34); transform: translateY(18px); transition: opacity .22s ease, transform .22s ease; overscroll-behavior: contain; }\n#gestiontb-logements-a-louer .gtb-application-modal.gtb-is-open .gtb-application-modal__overlay,\n#gestiontb-logements-a-louer .gtb-application-modal.gtb-is-open .gtb-application-modal__dialog { opacity: 1; }\n#gestiontb-logements-a-louer .gtb-application-modal.gtb-is-open .gtb-application-modal__dialog { transform: translateY(0); }\n#gestiontb-logements-a-louer .gtb-application-modal__header { position: sticky; z-index: 3; top: 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.5rem 1.5rem 1.25rem; border-bottom: 1px solid var(--gtb-rentals-line); background: rgba(255, 255, 255, .98); }\n#gestiontb-logements-a-louer .gtb-application-modal__header h2 { margin: 0 3rem .35rem 0; color: var(--gtb-rentals-berkeley); font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.1; letter-spacing: -.025em; }\n#gestiontb-logements-a-louer .gtb-application-modal__header p { margin: 0; color: var(--gtb-rentals-muted); font-size: .92rem; }\n#gestiontb-logements-a-louer .gtb-application-modal__close { position: absolute; top: 1rem; right: 1rem; display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; padding: 0; border: 1px solid var(--gtb-rentals-line); border-radius: 50%; color: var(--gtb-rentals-berkeley); background: #fff; box-shadow: 0 6px 20px rgba(7, 24, 43, .13); font-size: 1.8rem; font-weight: 400; line-height: 1; }\n#gestiontb-logements-a-louer .gtb-application-modal__body { width: 100%; min-width: 0; min-height: 0; overflow: hidden; flex: 1 1 auto; padding: .5rem; background: #fff; }\n#gestiontb-logements-a-louer .gtb-application-modal__body iframe { display: block; width: 100% !important; height: 100% !important; max-width: 100%; min-height: 0; overflow-y: auto; margin: 0; border: 0; touch-action: pan-y; }\n\n@media (max-width: 768px) {\n #gestiontb-logements-a-louer .gtb-property-modal { overflow-y: auto; place-items: start center; padding: 16px; }\n #gestiontb-logements-a-louer .gtb-property-modal__dialog { width: min(100%, 720px); height: auto; max-height: calc(100dvh - 32px); overflow-x: hidden; overflow-y: auto; border: 1px solid rgba(216, 227, 238, .9); border-radius: 14px; box-shadow: 0 18px 55px rgba(7, 24, 43, .28); overscroll-behavior: contain; }\n #gestiontb-logements-a-louer .gtb-property-modal__close { position: sticky; top: .65rem; float: right; margin: .65rem .65rem -3.4rem 0; }\n #gestiontb-logements-a-louer .gtb-property-modal__top { display: block; min-height: 0; }\n #gestiontb-logements-a-louer .gtb-property-modal__gallery { padding: 0; }\n #gestiontb-logements-a-louer .gtb-property-modal__stage,\n #gestiontb-logements-a-louer .gtb-property-modal__stage > img { min-height: 0; height: min(72vw, 390px); border-radius: 0; }\n #gestiontb-logements-a-louer .gtb-property-modal__thumbs { margin: .65rem 1rem 0; }\n #gestiontb-logements-a-louer .gtb-property-modal__summary { padding: 2rem 1.25rem; }\n #gestiontb-logements-a-louer .gtb-property-modal__details { display: block; padding: 0 1.25rem 2rem; }\n #gestiontb-logements-a-louer .gtb-application-modal { place-items: start center; padding: 16px; }\n #gestiontb-logements-a-louer .gtb-application-modal__dialog { width: 100%; height: calc(100dvh - 32px); max-height: calc(100dvh - 32px); }\n #gestiontb-logements-a-louer .gtb-application-modal__header { padding: 1.2rem 1rem 1rem; }\n #gestiontb-logements-a-louer .gtb-application-modal__header h2 { margin-right: 3rem; font-size: 1.35rem; }\n #gestiontb-logements-a-louer .gtb-application-modal__header p { font-size: .84rem; }\n #gestiontb-logements-a-louer .gtb-application-modal__close { top: .75rem; right: .75rem; }\n #gestiontb-logements-a-louer .gtb-application-modal__body { padding: .25rem; }\n}\n@media (max-width: 560px) {\n #gestiontb-logements-a-louer .gtb-property__body { padding: .72rem; }\n #gestiontb-logements-a-louer .gtb-property__topline { align-items: flex-start; gap: .4rem; }\n #gestiontb-logements-a-louer .gtb-property__type { font-size: .64rem; letter-spacing: .05em; }\n #gestiontb-logements-a-louer .gtb-property__price { font-size: .82rem; line-height: 1.15; }\n #gestiontb-logements-a-louer .gtb-property h3 { margin-top: .42rem; font-size: .9rem; }\n #gestiontb-logements-a-louer .gtb-property__location { margin-bottom: .4rem; font-size: .7rem; }\n #gestiontb-logements-a-louer .gtb-property__availability { margin-bottom: .55rem; font-size: .68rem; line-height: 1.25; }\n #gestiontb-logements-a-louer .gtb-property .gtb-rentals-button { min-height: 40px; padding: .5rem .55rem; font-size: .74rem; }\n #gestiontb-logements-a-louer .gtb-property__status { margin: .55rem .1rem 0 .55rem; padding: .25rem .4rem; font-size: .6rem; }\n #gestiontb-logements-a-louer .gtb-property-modal__facts,\n #gestiontb-logements-a-louer .gtb-property-modal__features { grid-template-columns: 1fr; }\n}\n@media (hover: none) {\n #gestiontb-logements-a-louer .gtb-property:hover { transform: none; box-shadow: 0 8px 30px rgba(22,55,96,.055); }\n}\n@media (prefers-reduced-motion: reduce) {\n #gestiontb-logements-a-louer .gtb-property,\n #gestiontb-logements-a-louer .gtb-property-modal__overlay,\n #gestiontb-logements-a-louer .gtb-property-modal__dialog,\n #gestiontb-logements-a-louer .gtb-application-modal__overlay,\n #gestiontb-logements-a-louer .gtb-application-modal__dialog { opacity: 1 !important; transform: none !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }\n}\n\n\u002F* PAGE LOGEMENTS À LOUER — styles isolés et cartes fidèles à l’Accueil *\u002F\n#gestiontb-logements-a-louer {\n position: relative;\n width: 100vw;\n max-width: none;\n margin-right: calc(50% - 50vw);\n margin-left: calc(50% - 50vw);\n overflow-x: clip;\n color: #10243d;\n background: #fff;\n font-family: \"Avenir Next World\", \"Avenir Next\", Avenir, \"Segoe UI\", sans-serif;\n font-size: 16px;\n line-height: 1.55;\n text-align: left;\n --gtb-rentals-berkeley: #163760;\n --gtb-rentals-denim: #005fb5;\n --gtb-rentals-white: #fff;\n --gtb-rentals-ink: #10243d;\n --gtb-rentals-muted: #526579;\n --gtb-rentals-sky: #f2f7fc;\n --gtb-rentals-line: #d8e3ee;\n --gtb-rentals-shadow: 0 14px 36px rgba(22,55,96,.08);\n}\n#gestiontb-logements-a-louer,\n#gestiontb-logements-a-louer *,\n#gestiontb-logements-a-louer *::before,\n#gestiontb-logements-a-louer *::after { box-sizing: border-box; }\n#gestiontb-logements-a-louer h1,\n#gestiontb-logements-a-louer h2,\n#gestiontb-logements-a-louer h3,\n#gestiontb-logements-a-louer p { margin-top: 0; }\n#gestiontb-logements-a-louer h1,\n#gestiontb-logements-a-louer h2,\n#gestiontb-logements-a-louer h3 { font-weight: 700; }\n#gestiontb-logements-a-louer a { color: inherit; text-decoration: none; }\n#gestiontb-logements-a-louer img { display: block; max-width: 100%; }\n#gestiontb-logements-a-louer button,\n#gestiontb-logements-a-louer input,\n#gestiontb-logements-a-louer select { font: inherit; }\n#gestiontb-logements-a-louer button { cursor: pointer; }\n#gestiontb-logements-a-louer [hidden] { display: none !important; }\n#gestiontb-logements-a-louer :focus-visible { outline: 3px solid #7fc5ff; outline-offset: 3px; }\n\n#gestiontb-logements-a-louer .gtb-rentals-shell { width: min(calc(100% - 3rem), 1200px); margin-inline: auto; }\n#gestiontb-logements-a-louer .gtb-rentals-eyebrow { margin-bottom: .8rem; color: var(--gtb-rentals-denim); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }\n#gestiontb-logements-a-louer .gtb-rentals-eyebrow--light { color: #9fd0ff; }\n\n#gestiontb-logements-a-louer .gtb-rentals-hero { padding: clamp(3.25rem, 6vw, 5.5rem) 0 clamp(2.75rem, 5vw, 4.25rem); background: var(--gtb-rentals-white); }\n#gestiontb-logements-a-louer .gtb-rentals-hero h1 { max-width: 920px; margin-bottom: 1.25rem; color: var(--gtb-rentals-berkeley); font-size: clamp(2.55rem, 5vw, 4.65rem); line-height: 1.02; letter-spacing: -.045em; }\n#gestiontb-logements-a-louer .gtb-rentals-hero__lead { max-width: 760px; margin-bottom: 0; color: var(--gtb-rentals-muted); font-size: clamp(1rem, 1.4vw, 1.15rem); }\n\n#gestiontb-logements-a-louer .gtb-rentals-search { padding-bottom: clamp(3.5rem, 6vw, 5.5rem); background: var(--gtb-rentals-white); }\n#gestiontb-logements-a-louer .gtb-rentals-filter-card { padding: clamp(1.35rem, 3vw, 2.25rem); border: 1px solid var(--gtb-rentals-line); border-radius: .75rem; background: var(--gtb-rentals-sky); box-shadow: var(--gtb-rentals-shadow); }\n#gestiontb-logements-a-louer .gtb-rentals-filter-heading { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.75rem; }\n#gestiontb-logements-a-louer .gtb-rentals-filter-heading h2 { margin-bottom: 0; color: var(--gtb-rentals-berkeley); font-size: clamp(1.55rem, 3vw, 2.2rem); line-height: 1.1; letter-spacing: -.025em; }\n#gestiontb-logements-a-louer .gtb-rentals-reset { min-height: 44px; padding: .35rem 0; border: 0; color: var(--gtb-rentals-denim); background: transparent; font-size: .86rem; font-weight: 750; text-decoration: underline; text-underline-offset: .2rem; }\n#gestiontb-logements-a-louer .gtb-rentals-form { display: grid; grid-template-columns: minmax(0, 18fr) minmax(0, 24fr) minmax(0, 15fr) minmax(0, 28fr) minmax(0, 15fr); gap: 1.25rem; align-items: start; }\n#gestiontb-logements-a-louer .gtb-rentals-field,\n#gestiontb-logements-a-louer .gtb-rentals-options { display: flex; min-width: 0; flex-direction: column; }\n#gestiontb-logements-a-louer .gtb-rentals-field label,\n#gestiontb-logements-a-louer .gtb-rentals-options legend { display: block; width: 100%; min-height: 1.25rem; margin: 0 0 .5rem; padding: 0; color: #314962; font-size: .78rem; font-weight: 750; line-height: 1.25rem; }\n#gestiontb-logements-a-louer .gtb-rentals-field input,\n#gestiontb-logements-a-louer .gtb-rentals-field select,\n#gestiontb-logements-a-louer .gtb-rentals-sort select { width: 100%; min-height: 48px; padding: .7rem .78rem; border: 1px solid #b9cad9; border-radius: .35rem; color: var(--gtb-rentals-ink); background: var(--gtb-rentals-white); }\n#gestiontb-logements-a-louer .gtb-rentals-options { margin: 0; padding: 0; border: 0; }\n#gestiontb-logements-a-louer .gtb-rentals-pill-list { display: flex; min-height: 48px; flex-wrap: wrap; align-content: flex-start; align-items: flex-start; gap: .4rem; padding: 0; }\n#gestiontb-logements-a-louer .gtb-rentals-options--pills label { position: relative; display: block; min-width: 0; cursor: pointer; }\n#gestiontb-logements-a-louer .gtb-rentals-options--pills input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }\n#gestiontb-logements-a-louer .gtb-rentals-options--pills span { display: inline-flex; min-height: 30px; align-items: center; justify-content: center; padding: .34rem .44rem; border: 1px solid #bfd0df; border-radius: 999px; color: #314962; background: #f8fbfe; font-size: .7rem; font-weight: 750; line-height: 1; white-space: nowrap; transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease; }\n#gestiontb-logements-a-louer .gtb-rentals-options--pills label:hover span { color: var(--gtb-rentals-berkeley); border-color: #8ba9c3; background: #fff; }\n#gestiontb-logements-a-louer .gtb-rentals-options--pills input:checked + span { color: #fff; border-color: var(--gtb-rentals-denim); background: var(--gtb-rentals-denim); box-shadow: 0 4px 12px rgba(0,95,181,.18); }\n#gestiontb-logements-a-louer .gtb-rentals-options--pills label:hover input:checked + span { color: #fff; border-color: var(--gtb-rentals-berkeley); background: var(--gtb-rentals-berkeley); }\n#gestiontb-logements-a-louer .gtb-rentals-options--pills input:focus-visible + span { outline: 3px solid #7fc5ff; outline-offset: 2px; }\n#gestiontb-logements-a-louer .gtb-rentals-field select:focus-visible { outline: 3px solid #7fc5ff; outline-offset: 2px; }\n\n#gestiontb-logements-a-louer .gtb-rentals-results { min-height: 440px; padding: clamp(3.5rem, 6vw, 5.5rem) 0 clamp(4.5rem, 8vw, 7.5rem); background: var(--gtb-rentals-white); border-top: 1px solid #edf2f6; }\n#gestiontb-logements-a-louer .gtb-rentals-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }\n#gestiontb-logements-a-louer .gtb-rentals-count { margin-bottom: 0; color: var(--gtb-rentals-berkeley); font-size: clamp(1.45rem, 2.5vw, 2rem); letter-spacing: -.025em; }\n#gestiontb-logements-a-louer .gtb-rentals-sort { display: flex; align-items: center; gap: .7rem; }\n#gestiontb-logements-a-louer .gtb-rentals-sort label { color: var(--gtb-rentals-muted); font-size: .84rem; font-weight: 700; white-space: nowrap; }\n#gestiontb-logements-a-louer .gtb-rentals-sort select { min-width: 180px; }\n#gestiontb-logements-a-louer .gtb-rentals-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: stretch; }\n\n#gestiontb-logements-a-louer .gtb-rentals-empty { max-width: 720px; margin: 2rem auto 0; padding: clamp(2rem, 5vw, 4rem); border: 1px solid var(--gtb-rentals-line); border-radius: .75rem; text-align: center; background: var(--gtb-rentals-sky); }\n#gestiontb-logements-a-louer .gtb-rentals-empty h2 { margin-bottom: 1rem; color: var(--gtb-rentals-berkeley); font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.12; }\n#gestiontb-logements-a-louer .gtb-rentals-empty > p:not(.gtb-rentals-eyebrow) { color: var(--gtb-rentals-muted); }\n#gestiontb-logements-a-louer .gtb-rentals-empty__actions { display: flex; justify-content: center; gap: .75rem; margin-top: 1.5rem; }\n\n#gestiontb-logements-a-louer .gtb-rentals-cta { padding: clamp(4rem, 7vw, 6.5rem) 0; color: var(--gtb-rentals-white); background: var(--gtb-rentals-berkeley); }\n#gestiontb-logements-a-louer .gtb-rentals-cta__card { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }\n#gestiontb-logements-a-louer .gtb-rentals-cta h2 { max-width: 700px; margin-bottom: 1rem; color: var(--gtb-rentals-white); font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: -.035em; }\n#gestiontb-logements-a-louer .gtb-rentals-cta p:last-child { max-width: 650px; margin-bottom: 0; color: #d6e4f2; }\n#gestiontb-logements-a-louer .gtb-rentals-button--light { color: var(--gtb-rentals-berkeley); background: var(--gtb-rentals-white); }\n\n\u002F* Fiche logement dynamique — un seul composant pour toutes les cartes. *\u002F\n.gtb-rentals-js #gestiontb-logements-a-louer [data-gtb-rentals-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 560ms cubic-bezier(.22,.61,.36,1), transform 560ms cubic-bezier(.22,.61,.36,1); transition-delay: var(--gtb-rentals-delay, 0ms); }\n.gtb-rentals-js #gestiontb-logements-a-louer [data-gtb-rentals-reveal].gtb-is-revealed { opacity: 1; transform: none; }\n\n@media (max-width: 1100px) {\n #gestiontb-logements-a-louer .gtb-rentals-form { grid-template-columns: repeat(3, minmax(0, 1fr)); }\n #gestiontb-logements-a-louer .gtb-rentals-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }\n}\n@media (max-width: 820px) {\n #gestiontb-logements-a-louer .gtb-rentals-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }\n #gestiontb-logements-a-louer .gtb-rentals-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }\n}\n@media (max-width: 768px) {\n #gestiontb-logements-a-louer .gtb-rentals-shell { width: min(calc(100% - 2rem), 1200px); }\n #gestiontb-logements-a-louer .gtb-rentals-hero { padding-top: 2.75rem; }\n #gestiontb-logements-a-louer .gtb-rentals-filter-heading,\n #gestiontb-logements-a-louer .gtb-rentals-toolbar,\n #gestiontb-logements-a-louer .gtb-rentals-cta__card { align-items: stretch; flex-direction: column; }\n #gestiontb-logements-a-louer .gtb-rentals-filter-heading { display: flex; }\n #gestiontb-logements-a-louer .gtb-rentals-reset { align-self: flex-start; }\n #gestiontb-logements-a-louer .gtb-rentals-toolbar { display: flex; }\n #gestiontb-logements-a-louer .gtb-rentals-sort { justify-content: space-between; }\n #gestiontb-logements-a-louer .gtb-rentals-sort select { min-width: 0; }\n #gestiontb-logements-a-louer .gtb-rentals-cta__card { display: flex; }\n #gestiontb-logements-a-louer .gtb-rentals-button--light { align-self: flex-start; }\n}\n@media (max-width: 560px) {\n #gestiontb-logements-a-louer .gtb-rentals-form { grid-template-columns: 1fr; }\n #gestiontb-logements-a-louer .gtb-rentals-empty__actions { align-items: stretch; flex-direction: column; }\n #gestiontb-logements-a-louer .gtb-rentals-button--light { width: 100%; }\n #gestiontb-logements-a-louer .gtb-rentals-grid { gap: .7rem; }\n}\n@media (prefers-reduced-motion: reduce) {\n .gtb-rentals-js #gestiontb-logements-a-louer [data-gtb-rentals-reveal] { opacity: 1 !important; transform: none !important; transition-duration: .01ms !important; }\n}\n\n\n\u003C\u002Fstyle>\n\u003Cmain id=\"gestiontb-logements-a-louer\" data-gtb-rentals-root data-gtb-contact-url=\"\u002Fnous-contacter\" data-gtb-application-url=\"\u002Fnous-contacter\">\n \u003Csection class=\"gtb-rentals-hero\" aria-labelledby=\"gtb-rentals-title\">\n \u003Cdiv class=\"gtb-rentals-shell\">\n \u003Cp class=\"gtb-rentals-eyebrow\" data-gtb-rentals-reveal>Logements à louer\u003C\u002Fp>\n \u003Ch1 id=\"gtb-rentals-title\" data-gtb-rentals-reveal>Logements à louer à Drummondville et les environs\u003C\u002Fh1>\n \u003Cp class=\"gtb-rentals-hero__lead\" data-gtb-rentals-reveal>Parcourez nos logements actuellement disponibles à Drummondville et dans les environs. Utilisez les filtres pour trouver plus rapidement une option adaptée à vos besoins.\u003C\u002Fp>\n \u003C\u002Fdiv>\n \u003C\u002Fsection>\n\n \u003Csection class=\"gtb-rentals-search\" aria-labelledby=\"gtb-rentals-search-title\">\n \u003Cdiv class=\"gtb-rentals-shell\">\n \u003Cdiv class=\"gtb-rentals-filter-card\" data-gtb-rentals-reveal>\n \u003Cdiv class=\"gtb-rentals-filter-heading\">\n \u003Cdiv>\u003Cp class=\"gtb-rentals-eyebrow\">Votre recherche\u003C\u002Fp>\u003Ch2 id=\"gtb-rentals-search-title\">Trouvez votre prochain logement.\u003C\u002Fh2>\u003C\u002Fdiv>\n \u003Cbutton class=\"gtb-rentals-reset\" type=\"button\" data-gtb-reset>Réinitialiser les filtres\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\n \u003Cform class=\"gtb-rentals-form\" data-gtb-filters>\n \u003Cdiv class=\"gtb-rentals-field\">\n \u003Clabel for=\"gtb-rentals-sector\">Secteur\u003C\u002Flabel>\n \u003Cselect id=\"gtb-rentals-sector\" name=\"sector\">\u003Coption value=\"\">Tous les secteurs\u003C\u002Foption>\u003C\u002Fselect>\n \u003C\u002Fdiv>\n \u003Cfieldset class=\"gtb-rentals-options gtb-rentals-options--pills\">\n \u003Clegend>Type de logement\u003C\u002Flegend>\n \u003Cdiv class=\"gtb-rentals-pill-list\">\n \u003Clabel>\u003Cinput type=\"checkbox\" name=\"type\" value=\"2 1\u002F2\">\u003Cspan>2 1\u002F2\u003C\u002Fspan>\u003C\u002Flabel>\n \u003Clabel>\u003Cinput type=\"checkbox\" name=\"type\" value=\"3 1\u002F2\">\u003Cspan>3 1\u002F2\u003C\u002Fspan>\u003C\u002Flabel>\n \u003Clabel>\u003Cinput type=\"checkbox\" name=\"type\" value=\"4 1\u002F2\">\u003Cspan>4 1\u002F2\u003C\u002Fspan>\u003C\u002Flabel>\n \u003Clabel>\u003Cinput type=\"checkbox\" name=\"type\" value=\"5 1\u002F2\">\u003Cspan>5 1\u002F2\u003C\u002Fspan>\u003C\u002Flabel>\n \u003Clabel>\u003Cinput type=\"checkbox\" name=\"type\" value=\"6 1\u002F2\">\u003Cspan>6 1\u002F2\u003C\u002Fspan>\u003C\u002Flabel>\n \u003C\u002Fdiv>\n \u003C\u002Ffieldset>\n \u003Cdiv class=\"gtb-rentals-field\">\n \u003Clabel for=\"gtb-rentals-budget\">Budget maximum\u003C\u002Flabel>\n \u003Cselect id=\"gtb-rentals-budget\" name=\"budget\">\u003Coption value=\"\">Tous les budgets\u003C\u002Foption>\u003C\u002Fselect>\n \u003C\u002Fdiv>\n \u003Cfieldset class=\"gtb-rentals-options gtb-rentals-options--pills\">\n \u003Clegend>Étage\u003C\u002Flegend>\n \u003Cdiv class=\"gtb-rentals-pill-list\">\n \u003Clabel>\u003Cinput type=\"checkbox\" name=\"floor\" value=\"Demi sous-sol\">\u003Cspan>Demi sous-sol\u003C\u002Fspan>\u003C\u002Flabel>\n \u003Clabel>\u003Cinput type=\"checkbox\" name=\"floor\" value=\"Rez-de-chaussée\">\u003Cspan>Rez-de-chaussée\u003C\u002Fspan>\u003C\u002Flabel>\n \u003Clabel>\u003Cinput type=\"checkbox\" name=\"floor\" value=\"1er étage\">\u003Cspan>1er étage\u003C\u002Fspan>\u003C\u002Flabel>\n \u003Clabel>\u003Cinput type=\"checkbox\" name=\"floor\" value=\"2e étage\">\u003Cspan>2e étage\u003C\u002Fspan>\u003C\u002Flabel>\n \u003Clabel>\u003Cinput type=\"checkbox\" name=\"floor\" value=\"3e étage\">\u003Cspan>3e étage\u003C\u002Fspan>\u003C\u002Flabel>\n \u003C\u002Fdiv>\n \u003C\u002Ffieldset>\n \u003Cfieldset class=\"gtb-rentals-options gtb-rentals-options--pills gtb-rentals-options--animals\">\n \u003Clegend>Animaux\u003C\u002Flegend>\n \u003Cdiv class=\"gtb-rentals-pill-list\">\u003Clabel>\u003Cinput type=\"checkbox\" name=\"dog\">\u003Cspan>Chien\u003C\u002Fspan>\u003C\u002Flabel>\u003Clabel>\u003Cinput type=\"checkbox\" name=\"cat\">\u003Cspan>Chat\u003C\u002Fspan>\u003C\u002Flabel>\u003C\u002Fdiv>\n \u003C\u002Ffieldset>\n \u003C\u002Fform>\n \u003C\u002Fdiv>\n \u003C\u002Fdiv>\n \u003C\u002Fsection>\n\n \u003Csection class=\"gtb-rentals-results\" aria-labelledby=\"gtb-rentals-results-title\">\n \u003Cdiv class=\"gtb-rentals-shell\">\n \u003Cdiv class=\"gtb-rentals-toolbar\" data-gtb-rentals-reveal>\n \u003Ch2 class=\"gtb-rentals-count\" id=\"gtb-rentals-results-title\" data-gtb-count aria-live=\"polite\">18 logements trouvés\u003C\u002Fh2>\n \u003Cdiv class=\"gtb-rentals-sort\">\u003Clabel for=\"gtb-rentals-sort\">Trier par\u003C\u002Flabel>\u003Cselect id=\"gtb-rentals-sort\" data-gtb-sort>\u003Coption value=\"recommended\">Recommandés\u003C\u002Foption>\u003Coption value=\"price-asc\" selected>Prix croissant\u003C\u002Foption>\u003Coption value=\"price-desc\">Prix décroissant\u003C\u002Foption>\u003Coption value=\"newest\">Nouveautés\u003C\u002Foption>\u003Coption value=\"availability\">Disponibilité\u003C\u002Foption>\u003C\u002Fselect>\u003C\u002Fdiv>\n \u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-rentals-grid\" data-gtb-results>\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"rue-lindsay-850-01\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a846a7e96d2b224d34c0b15.png\" alt=\"Photo du 2 ½ sur rue Lindsay à Drummondville\" width=\"1200\" height=\"900\" loading=\"eager\" decoding=\"async\" fetchpriority=\"high\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">2 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">850 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Rue Lindsay\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Centre-ville · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"rue-lindsay-850-01\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"rue-principale-945-24\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b456ec94680bcf1b29f8c.png\" alt=\"Photo du 5 ½ sur rue Principale à Saint-Léonard-d’Aston\" width=\"1200\" height=\"900\" loading=\"eager\" decoding=\"async\" fetchpriority=\"high\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">5 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">945 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Rue Principale\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Saint-Léonard d&#039;Aston · Saint-Léonard-d’Aston\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"rue-principale-945-24\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"bd-st-joseph-1050-03\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6aeb7fe5a8e31f5c776.png\" alt=\"Photo du 4 ½ sur Bd St-Joseph à Drummondville\" width=\"1200\" height=\"900\" loading=\"eager\" decoding=\"async\" fetchpriority=\"high\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 050 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Bd St-Joseph\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Centre-ville · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible le 1er Septembre\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"bd-st-joseph-1050-03\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"bd-st-joseph-1095-04\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ca7ee68555d6d5f06fc9.png\" alt=\"Photo du 4 ½ sur Bd St-Joseph à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 095 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Bd St-Joseph\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Centre-ville · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"bd-st-joseph-1095-04\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"bd-st-joseph-1095-05\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ccd202832ae8617bac90.png\" alt=\"Photo du 4 ½ sur Bd St-Joseph à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 095 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Bd St-Joseph\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Centre-ville · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"bd-st-joseph-1095-05\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"boul-st-joseph-1095-14\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd668b337b27bbbe919cc6.jpg\" alt=\"Photo du 4 ½ sur Boul. St-Joseph à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 095 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Boul. St-Joseph\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Boul. St-Joseph · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"boul-st-joseph-1095-14\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"boul-st-joseph-1095-17\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a8c881067bb7ac3516e5330.png\" alt=\"Photo du 4 ½ sur Boul. St-Joseph à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 095 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Boul. St-Joseph\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Boul. St-Joseph · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"boul-st-joseph-1095-17\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"bd-st-joseph-1100-06\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68e1dd882f807a09da4.png\" alt=\"Photo du 4 ½ sur Bd St-Joseph à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 100 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Bd St-Joseph\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Centre-ville · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"bd-st-joseph-1100-06\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"bd-st-joseph-1150-07\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7a3a025a64f2b5678d7a8c.png\" alt=\"Photo du 4 ½ sur Bd St-Joseph à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 150 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Bd St-Joseph\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Centre-ville · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"bd-st-joseph-1150-07\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"boul-st-joseph-1150-12\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b3d7f1eb55bdfc319e798.png\" alt=\"Photo du 4 ½ sur Boul. St-Joseph à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 150 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Boul. St-Joseph\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Boul. St-Joseph · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"boul-st-joseph-1150-12\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"rue-des-ecoles-1155-13\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2f6fa658c730bf2bcf.jpeg\" alt=\"Photo du 4 ½ sur rue Des Écoles à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 155 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Rue Des Écoles\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Centre-ville · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"rue-des-ecoles-1155-13\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"rue-st-henri-1295-27\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F696691e39a690c2e02f2ed06.jpeg\" alt=\"Photo du 5 ½ sur rue St-Henri à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">5 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 295 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Rue St-Henri\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">St-Pierre · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible immédiatement\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"rue-st-henri-1295-27\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"rue-melancon-1335-20\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cspan class=\"gtb-property__status gtb-property__status--internet\">Internet inclus\u003C\u002Fspan>\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b24db10ea24692eaff71a.jpeg\" alt=\"Photo du 4 ½ sur rue Melançon à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 335 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Rue Melançon\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Centre-ville · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible le 1er Décembre\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"rue-melancon-1335-20\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"boul-st-joseph-1350-22\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cspan class=\"gtb-property__status gtb-property__status--internet\">Internet inclus\u003C\u002Fspan>\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d22141b10653184b5.jpg\" alt=\"Photo du 4 ½ sur Boul. St-Joseph à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 350 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Boul. St-Joseph\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Boul. St-Joseph · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">1 logement disponible immédiatement\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"boul-st-joseph-1350-22\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"rue-de-l-exposition-1395-28\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea2503e461bae0ade6c1.png\" alt=\"Photo du 5 ½ sur rue de l&#039;Exposition à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">5 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 395 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Rue de l&#039;Exposition\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">St-Léonard d&#039;Aston · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible immédiatement\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"rue-de-l-exposition-1395-28\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"boul-lemire-1405-19\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cspan class=\"gtb-property__status gtb-property__status--internet\">Internet inclus\u003C\u002Fspan>\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a87bdf3881a947965d.png\" alt=\"Photo du 4 ½ sur Boul. Lemire à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">4 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 405 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Boul. Lemire\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">Boul. Lemire · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"boul-lemire-1405-19\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"boul-foucault-1425-29\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b41f2e7701be67b499e67.png\" alt=\"Photo du 5 ½ sur Boul Foucault à Drummondville\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">5 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 425 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Boul Foucault\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">St-Charles · Drummondville\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible immédiatement\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"boul-foucault-1425-29\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\n\u003Carticle class=\"gtb-property\" data-gtb-property-id=\"rue-de-l-exposition-1550-32\" style=\"--gtb-image-position:50% 50%\">\n \u003Cdiv class=\"gtb-property__image\">\u003Cimg class=\"gtb-property__photo\" src=\"https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_78\u002Fr_900\u002Fu_https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd464bc1f77cc35c2c2d4.jpg\" alt=\"Photo du 6 ½ sur Rue de l&#039;Exposition à Saint-Léonard-d’Aston\" width=\"1200\" height=\"900\" loading=\"lazy\" decoding=\"async\" fetchpriority=\"auto\">\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-property__body\">\n \u003Cdiv class=\"gtb-property__topline\">\u003Cspan class=\"gtb-property__type\">6 ½\u003C\u002Fspan>\u003Cspan class=\"gtb-property__price\">1 550 $ \u002F mois\u003C\u002Fspan>\u003C\u002Fdiv>\n \u003Ch3>Rue de l&#039;Exposition\u003C\u002Fh3>\n \u003Cp class=\"gtb-property__location\">St-Leonard d&#039;Aston · Saint-Léonard-d’Aston\u003C\u002Fp>\n \u003Cp class=\"gtb-property__availability\">Disponible maintenant\u003C\u002Fp>\n \u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"rue-de-l-exposition-1550-32\">Voir le logement\u003C\u002Fbutton>\n \u003C\u002Fdiv>\n\u003C\u002Farticle>\u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-rentals-empty\" data-gtb-empty hidden>\n \u003Cp class=\"gtb-rentals-eyebrow\">Aucun résultat\u003C\u002Fp>\n \u003Ch2>Aucun logement ne correspond à vos critères pour le moment.\u003C\u002Fh2>\n \u003Cp>Essayez de modifier vos filtres ou communiquez avec notre équipe.\u003C\u002Fp>\n \u003Cdiv class=\"gtb-rentals-empty__actions\">\u003Cbutton type=\"button\" class=\"gtb-rentals-button gtb-rentals-button--primary\" data-gtb-empty-reset>Réinitialiser les filtres\u003C\u002Fbutton>\u003Ca class=\"gtb-rentals-button gtb-rentals-button--secondary\" data-gtb-contact-link href=\"nous-joindre.html\">Nous joindre\u003C\u002Fa>\u003C\u002Fdiv>\n \u003C\u002Fdiv>\n \u003C\u002Fdiv>\n \u003C\u002Fsection>\n\n \u003Csection class=\"gtb-rentals-cta\" aria-labelledby=\"gtb-rentals-cta-title\">\n \u003Cdiv class=\"gtb-rentals-shell\">\u003Cdiv class=\"gtb-rentals-cta__card\" data-gtb-rentals-reveal>\u003Cdiv>\u003Cp class=\"gtb-rentals-eyebrow gtb-rentals-eyebrow--light\">Une question?\u003C\u002Fp>\u003Ch2 id=\"gtb-rentals-cta-title\">Parlez-nous du logement que vous recherchez.\u003C\u002Fh2>\u003Cp>Notre équipe locale peut répondre à vos questions et vous aider à planifier une visite.\u003C\u002Fp>\u003C\u002Fdiv>\u003Ca class=\"gtb-rentals-button gtb-rentals-button--light\" data-gtb-contact-link href=\"nous-joindre.html\">Nous joindre\u003C\u002Fa>\u003C\u002Fdiv>\u003C\u002Fdiv>\n \u003C\u002Fsection>\n\n \u003Cdiv class=\"gtb-property-modal\" data-gtb-property-modal hidden>\n \u003Cdiv class=\"gtb-property-modal__overlay\" data-gtb-modal-overlay>\u003C\u002Fdiv>\n \u003Csection class=\"gtb-property-modal__dialog\" role=\"dialog\" aria-modal=\"true\" aria-labelledby=\"gtb-property-modal-title\" tabindex=\"-1\" data-gtb-modal-dialog>\n \u003Cbutton class=\"gtb-property-modal__close\" type=\"button\" aria-label=\"Fermer la fiche du logement\" data-gtb-modal-close>×\u003C\u002Fbutton>\n \u003Cdiv class=\"gtb-property-modal__content\" data-gtb-modal-content>\u003C\u002Fdiv>\n \u003C\u002Fsection>\n \u003C\u002Fdiv>\n\n \u003Cdiv class=\"gtb-application-modal\" data-gtb-application-modal hidden>\n \u003Cdiv class=\"gtb-application-modal__overlay\" data-gtb-application-overlay>\u003C\u002Fdiv>\n \u003Csection class=\"gtb-application-modal__dialog\" role=\"dialog\" aria-modal=\"true\" aria-labelledby=\"gtb-application-modal-title\" tabindex=\"-1\" data-gtb-application-dialog>\n \u003Cheader class=\"gtb-application-modal__header\">\n \u003Cdiv>\n \u003Ch2 id=\"gtb-application-modal-title\">Je suis intéressé par ce logement\u003C\u002Fh2>\n \u003Cp>Remplissez le formulaire ci-dessous pour nous transmettre votre demande.\u003C\u002Fp>\n \u003C\u002Fdiv>\n \u003Cbutton class=\"gtb-application-modal__close\" type=\"button\" aria-label=\"Fermer le formulaire de location\" data-gtb-application-close>×\u003C\u002Fbutton>\n \u003C\u002Fheader>\n \u003Cdiv class=\"gtb-application-modal__body\">\n \u003Cscript type=\"text\u002Fjavascript\" src=\"https:\u002F\u002Fform.jotform.com\u002Fjsform\u002F241765841204051\">\u003C\u002Fscript>\n \u003C\u002Fdiv>\n \u003C\u002Fsection>\n \u003C\u002Fdiv>\n \u003C\u002Fmain>\n\u003Cscript>\nwindow.GTB_LOGEMENTS = [\n {\n \"id\": \"rue-lindsay-850-01\",\n \"actif\": true,\n \"vedette\": true,\n \"ordre\": 10,\n \"titre\": \"2 ½ à louer\",\n \"type\": \"2 1\u002F2\",\n \"typeAffiche\": \"2 ½\",\n \"prix\": 850,\n \"adresse\": \"Rue Lindsay\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Centre-ville\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"Demi sous-sol\",\n \"chambres\": 1,\n \"sallesDeBain\": 1,\n \"stationnements\": null,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Près des services\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a846a7e96d2b224d34c0b15.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a846a7efcf70e56095704d8.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a846a7ed1abe28fc9531ec0.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a846a7ed1abe28fc9531ec4.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a846a7e62d4d706d4c54be8.png\"\n ],\n \"imageAlt\": \"Photo du 2 ½ sur rue Lindsay à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"rue-principale-945-24\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 240,\n \"titre\": \"5 ½ à louer\",\n \"type\": \"5 1\u002F2\",\n \"typeAffiche\": \"5 ½\",\n \"prix\": 945,\n \"adresse\": \"Rue Principale\",\n \"ville\": \"Saint-Léonard-d’Aston\",\n \"secteur\": \"Saint-Léonard-d'Aston\",\n \"secteurAffiche\": \"Saint-Léonard d'Aston\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"2e étage\",\n \"chambres\": 3,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Près de tous les services\",\n \"Locker sur balcon\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b456ec94680bcf1b29f8c.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b456efe4291bd10c62792.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b456e1eb55bdfc32f8759.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b456e746f53c63dcca9bc.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b456e9115899f030fd022.png\"\n ],\n \"imageAlt\": \"Photo du 5 ½ sur rue Principale à Saint-Léonard-d’Aston\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"bd-st-joseph-1050-03\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 30,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1050,\n \"adresse\": \"Bd St-Joseph\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Centre-ville\",\n \"disponibilite\": {\n \"categorie\": \"date\",\n \"libelle\": \"Disponible le 1er Septembre\",\n \"date\": null\n },\n \"etage\": \"Rez-de-chaussée\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Près de tous les services\",\n \"Locker au sous-sol\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6aeb7fe5a8e31f5c776.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6aeb4176d37275a709e.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6aeb4176d37275a709a.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6ae3520888034fc86fc.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6ae609da4cf581c2eda.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a68f6ae8219a56ed33a0796.png\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur Bd St-Joseph à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"bd-st-joseph-1095-04\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 40,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1095,\n \"adresse\": \"Bd St-Joseph\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Centre-ville\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"Demi sous-sol\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Locker\",\n \"Près de tous les services\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ca7ee68555d6d5f06fc9.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ca7e70fc5d91f5b3723f.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ca7e648f56e7e4364214.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ca7ee68555d6d5f06fc0.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ca7e276f28ee5392c6ce.png\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur Bd St-Joseph à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"bd-st-joseph-1095-05\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 50,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1095,\n \"adresse\": \"Bd St-Joseph\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Centre-ville\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"Rez-de-chaussée\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Grand sous-sol\",\n \"Près de tous les services\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ccd202832ae8617bac90.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ccd23f5a7cedaaf38954.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ccd202832ae8617bac99.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ccd22abe62a97cf5b611.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a95ccd2d931dc07514536be.png\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur Bd St-Joseph à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"boul-st-joseph-1095-14\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 140,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1095,\n \"adresse\": \"Boul. St-Joseph\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Boul. St-Joseph\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"Demi sous-sol\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité inclus\",\n \"Près de tous les services\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd668b337b27bbbe919cc6.jpg\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd668b4c3d544bf1a50bb4.jpg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd668bd29234e16dc1c04d.jpg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69cd668b02c31a7784478311.jpg\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur Boul. St-Joseph à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"boul-st-joseph-1095-17\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 170,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1095,\n \"adresse\": \"Boul. St-Joseph\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Boul. St-Joseph\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"3e étage\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Près de tous les services\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a8c881067bb7ac3516e5330.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a8c881bbbd5ecc97fbf0694.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a8c881b67bb7ac3516e5475.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a8c88101ef69607796a33eb.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a8c88101ef69607796a33f0.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a8c8810ad59e6cfed6c280d.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a8c8811cdd4b797a373d6cf.png\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur Boul. St-Joseph à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"bd-st-joseph-1100-06\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 60,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1100,\n \"adresse\": \"Bd St-Joseph\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Centre-ville\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"Rez-de-chaussée\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Près de tous les services\",\n \"Locker au sous-sol\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68e1dd882f807a09da4.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68e1dd882f807a09dae.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68eab5cbf799a011b03.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68e1dd882f807a09da9.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68e5e892103d4821ec7.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60f68ede69375f6a65816f.png\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur Bd St-Joseph à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"bd-st-joseph-1150-07\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 70,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1150,\n \"adresse\": \"Bd St-Joseph\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Centre-ville\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"2e étage\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Locker sur balcon\",\n \"Près de tous les services\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7a3a025a64f2b5678d7a8c.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7a3a025a64f2b5678d7a91.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7a3a029a9c7792eaf7f99c.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7a3a025a64f2b5678d7a87.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7a3a02157190b359e4df01.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7a3a025c7fc4f61f41d5fa.png\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur Bd St-Joseph à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"boul-st-joseph-1150-12\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 120,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1150,\n \"adresse\": \"Boul. St-Joseph\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Boul. St-Joseph\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"2e étage\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 2,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité inclus\",\n \"Près de tous les services\",\n \"Remise\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b3d7f1eb55bdfc319e798.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b3d7f746f53c63db9b584.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b3d7f72de28e6e8457cd2.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b3d7f1eb55bdfc319e793.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b3d7f4e002388f44a67f1.png\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur Boul. St-Joseph à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"rue-des-ecoles-1155-13\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 130,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1155,\n \"adresse\": \"Rue Des Écoles\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Centre-ville\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"3e étage\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Locker sur balcon\",\n \"Près de tous les services\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2f6fa658c730bf2bcf.jpeg\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2fc7e71f52c4d3ecb2.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2f36702f1cdebbc37d.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2f7bdf389290424619.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2f36702f2ce1bbc37e.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a87c2f4dd428d6a997568d.jpeg\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur rue Des Écoles à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"rue-st-henri-1295-27\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 270,\n \"titre\": \"5 ½ à louer\",\n \"type\": \"5 1\u002F2\",\n \"typeAffiche\": \"5 ½\",\n \"prix\": 1295,\n \"adresse\": \"Rue St-Henri\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"St-Pierre\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible immédiatement\",\n \"date\": null\n },\n \"etage\": \"3e étage\",\n \"chambres\": 3,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Locker sur balcon\",\n \"Secteur familial\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F696691e39a690c2e02f2ed06.jpeg\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69c29df175ee0523955e9e78.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69c29dcb75ee054ae85e9751.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69c29df181b3746dcda3c17c.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69c29df1ad1400575a3f78ca.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69c29df175ee05acb35e9e79.jpeg\"\n ],\n \"imageAlt\": \"Photo du 5 ½ sur rue St-Henri à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"rue-melancon-1335-20\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 200,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1335,\n \"adresse\": \"Rue Melançon\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Centre-ville\",\n \"disponibilite\": {\n \"categorie\": \"date\",\n \"libelle\": \"Disponible le 1er Décembre\",\n \"date\": null\n },\n \"etage\": \"Demi sous-sol\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Internet compris\",\n \"Thermopompe et échangeur d’air\",\n \"Immeuble neuf\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b24db10ea24692eaff71a.jpeg\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b24dbe143fb16e610e93c.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b24db1eb55bdfc3b9513f.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b24db1eb55bdfc3b9513a.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b24db9115899f03a733a5.jpeg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b24dbbf7d6aa93910363b.jpeg\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur rue Melançon à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"boul-st-joseph-1350-22\",\n \"actif\": true,\n \"vedette\": true,\n \"ordre\": 220,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1350,\n \"adresse\": \"Boul. St-Joseph\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Boul. St-Joseph\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"1 logement disponible immédiatement\",\n \"date\": null\n },\n \"etage\": \"\",\n \"etageAffiche\": \"Demi sous-sol et 3e étage\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Internet compris\",\n \"Thermopompe et échangeur d’air\",\n \"Immeuble neuf\",\n \"Locker intérieur\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d22141b10653184b5.jpg\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d618c8d0196d39145.jpg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d36702fa8fbc32f55.jpg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d7bdf384f6d49d010.jpg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d618c8d4b0ed39146.jpg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a89b6d6fa658449cc6dadc.jpg\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur Boul. St-Joseph à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"rue-de-l-exposition-1395-28\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 280,\n \"titre\": \"5 ½ à louer\",\n \"type\": \"5 1\u002F2\",\n \"typeAffiche\": \"5 ½\",\n \"prix\": 1395,\n \"adresse\": \"Rue de l'Exposition\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Saint-Léonard-d'Aston\",\n \"secteurAffiche\": \"St-Léonard d'Aston\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible immédiatement\",\n \"date\": null\n },\n \"etage\": \"3e étage\",\n \"chambres\": 3,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Remise\",\n \"Thermopompe et échangeur d’air\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea2503e461bae0ade6c1.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea2544497f2c4a631b7a.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea25de69375f6a5c5f96.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea255e892103d47af021.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea2c03e461bae0ade792.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea2581877afd27bd4b1e.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a60ea2503e461bae0ade6bc.png\"\n ],\n \"imageAlt\": \"Photo du 5 ½ sur rue de l'Exposition à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"boul-lemire-1405-19\",\n \"actif\": true,\n \"vedette\": true,\n \"ordre\": 190,\n \"titre\": \"4 ½ à louer\",\n \"type\": \"4 1\u002F2\",\n \"typeAffiche\": \"4 ½\",\n \"prix\": 1405,\n \"adresse\": \"Boul. Lemire\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"Boul. Lemire\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"\",\n \"etageAffiche\": \"Étages variés\",\n \"chambres\": 2,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Internet compris\",\n \"Thermopompe et échangeur d’air\",\n \"Immeuble récent\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a87bdf3881a947965d.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a822141b0c4c2f3dd0.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a8edd087a4ba1d9de5.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a9bffadf00ef8316b0.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a9bffadfde998316db.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a9bffadf43b28316bd.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69a890a836702f3857c10c06.png\"\n ],\n \"imageAlt\": \"Photo du 4 ½ sur Boul. Lemire à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"boul-foucault-1425-29\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 290,\n \"titre\": \"5 ½ à louer\",\n \"type\": \"5 1\u002F2\",\n \"typeAffiche\": \"5 ½\",\n \"prix\": 1425,\n \"adresse\": \"Boul Foucault\",\n \"ville\": \"Drummondville\",\n \"secteur\": \"Drummondville\",\n \"secteurAffiche\": \"St-Charles\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible immédiatement\",\n \"date\": null\n },\n \"etage\": \"3e étage\",\n \"chambres\": 3,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Thermopompe et échangeur d’air\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b41f2e7701be67b499e67.png\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b41f20faacaac56168282.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b41f2746f53c63dc25b5b.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b41f20faacaac56168298.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b41f9fe4291bd10bb601d.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b41f91eb55bdfc321ef69.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b41f24e002388f44f1e45.png\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a7b41f2746f53c63dc25b56.png\"\n ],\n \"imageAlt\": \"Photo du 5 ½ sur Boul Foucault à Drummondville\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n },\n {\n \"id\": \"rue-de-l-exposition-1550-32\",\n \"actif\": true,\n \"vedette\": false,\n \"ordre\": 320,\n \"titre\": \"6 ½ à louer\",\n \"type\": \"6 1\u002F2\",\n \"typeAffiche\": \"6 ½\",\n \"prix\": 1550,\n \"adresse\": \"Rue de l'Exposition\",\n \"ville\": \"Saint-Léonard-d’Aston\",\n \"secteur\": \"Saint-Léonard-d'Aston\",\n \"secteurAffiche\": \"St-Leonard d'Aston\",\n \"disponibilite\": {\n \"categorie\": \"maintenant\",\n \"libelle\": \"Disponible maintenant\",\n \"date\": null\n },\n \"etage\": \"Demi sous-sol\",\n \"chambres\": null,\n \"sallesDeBain\": 1,\n \"stationnements\": 1,\n \"animaux\": {\n \"chat\": true,\n \"chien\": true\n },\n \"caracteristiques\": [\n \"Chauffage et électricité à vos frais\",\n \"Remise\",\n \"Thermopompe et échangeur d’air\"\n ],\n \"badges\": [],\n \"dateAjout\": null,\n \"description\": \"\",\n \"photoPrincipale\": \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd464bc1f77cc35c2c2d4.jpg\",\n \"photos\": [\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd464fb9074ae0357d678.jpg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd4645f98a4e47bf6218a.jpg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd4645f98a4e47bf621a3.jpg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd464bc1f77cc35c2c2d3.jpg\",\n \"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F69fcd464a3dd25aa2a620c1b.jpg\"\n ],\n \"imageAlt\": \"Photo du 6 ½ sur Rue de l'Exposition à Saint-Léonard-d’Aston\",\n \"imagePosition\": \"50% 50%\",\n \"imageLargeur\": 1200,\n \"imageHauteur\": 900,\n \"urlCandidature\": \"\",\n \"url\": \"\"\n }\n];\n\u003C\u002Fscript>\n\u003Cscript>\n(function () {\n \"use strict\";\n\n if (window.GTB_LOGEMENTS_COMPOSANT) return;\n\n const choisir = (selecteur, racine = document) => racine ? racine.querySelector(selecteur) : null;\n const choisirTous = (selecteur, racine = document) => racine ? Array.from(racine.querySelectorAll(selecteur)) : [];\n const formatPrix = new Intl.NumberFormat(\"fr-CA\", { maximumFractionDigits: 0 });\n\n function echapperHTML(valeur) {\n return String(valeur ?? \"\")\n .replaceAll(\"&\", \"&amp;\")\n .replaceAll(\"\u003C\", \"&lt;\")\n .replaceAll(\">\", \"&gt;\")\n .replaceAll('\"', \"&quot;\")\n .replaceAll(\"'\", \"&#039;\");\n }\n\n function normaliser(valeur) {\n return String(valeur ?? \"\").normalize(\"NFD\").replace(\u002F[\\u0300-\\u036f]\u002Fg, \"\").toLowerCase().trim();\n }\n\n function urlImageOptimisee(source, largeur = 900, qualite = 78) {\n const url = String(source || \"\");\n if (!\u002F^https?:\\\u002F\\\u002F\u002Fi.test(url) || \u002F^https:\\\u002F\\\u002Fimages\\.leadconnectorhq\\.com\\\u002Fimage\\\u002F\u002Fi.test(url)) return url;\n return `https:\u002F\u002Fimages.leadconnectorhq.com\u002Fimage\u002Ff_webp\u002Fq_${qualite}\u002Fr_${largeur}\u002Fu_${url}`;\n }\n\n function carteLogement(logement, index = Infinity) {\n const caracteristiques = Array.isArray(logement.caracteristiques) ? logement.caracteristiques.filter(Boolean) : [];\n const internetInclus = caracteristiques.some((item) => [\"internet inclus\", \"internet compris\"].includes(normaliser(item)));\n const badgesDonnees = Array.isArray(logement.badges) ? logement.badges.filter(Boolean).filter((badge) => normaliser(badge) !== \"internet inclus\") : [];\n const badges = badgesDonnees.slice(0, internetInclus ? 1 : 2).map((texte) => ({ texte, internet: false }));\n if (internetInclus) badges.push({ texte: \"Internet inclus\", internet: true });\n const source = urlImageOptimisee(logement.photoPrincipale, 900, 78);\n const prioritaire = index \u003C 3;\n const alt = logement.imageAlt || [logement.type, logement.adresse, logement.ville].filter(Boolean).join(\" à \");\n const visuel = source\n ? `\u003Cimg class=\"gtb-property__photo\" src=\"${echapperHTML(source)}\" alt=\"${echapperHTML(alt)}\" width=\"${echapperHTML(logement.imageLargeur || 900)}\" height=\"${echapperHTML(logement.imageHauteur || 600)}\" loading=\"${prioritaire ? \"eager\" : \"lazy\"}\" decoding=\"async\" fetchpriority=\"${prioritaire ? \"high\" : \"auto\"}\">`\n : `\u003Cdiv class=\"gtb-property__placeholder\" role=\"img\" aria-label=\"${echapperHTML(alt || \"Photo officielle du logement à ajouter\")}\">\u003Cspan>\u003C\u002Fspan>\u003Cstrong>Photo officielle à ajouter\u003C\u002Fstrong>\u003C\u002Fdiv>`;\n const lieu = [logement.secteurAffiche || logement.secteur, logement.ville]\n .filter(Boolean)\n .filter((item, index, liste) => liste.findIndex((autre) => normaliser(autre) === normaliser(item)) === index)\n .join(\" · \");\n const titre = logement.adresse || logement.titre || logement.type || \"Logement à louer\";\n const prix = Number.isFinite(logement.prix) ? `${formatPrix.format(logement.prix)} $ \u002F mois` : \"\";\n const disponibilite = logement.disponibilite && logement.disponibilite.libelle ? logement.disponibilite.libelle : \"\";\n return `\u003Carticle class=\"gtb-property gtb-rentals-card-enter\" data-gtb-property-id=\"${echapperHTML(logement.id)}\" style=\"--gtb-image-position:${echapperHTML(logement.imagePosition || \"50% 50%\")}\\\">\u003Cdiv class=\"gtb-property__image\">${badges.map((badge) => `\u003Cspan class=\"gtb-property__status${badge.internet ? \" gtb-property__status--internet\" : \"\"}\">${echapperHTML(badge.texte)}\u003C\u002Fspan>`).join(\"\")}${visuel}\u003C\u002Fdiv>\u003Cdiv class=\"gtb-property__body\">\u003Cdiv class=\"gtb-property__topline\">${logement.type ? `\u003Cspan class=\"gtb-property__type\">${echapperHTML(logement.typeAffiche || logement.type)}\u003C\u002Fspan>` : \"\"}${prix ? `\u003Cspan class=\"gtb-property__price\">${echapperHTML(prix)}\u003C\u002Fspan>` : \"\"}\u003C\u002Fdiv>\u003Ch3>${echapperHTML(titre)}\u003C\u002Fh3>${lieu ? `\u003Cp class=\"gtb-property__location\">${echapperHTML(lieu)}\u003C\u002Fp>` : \"\"}${disponibilite ? `\u003Cp class=\"gtb-property__availability\">${echapperHTML(disponibilite)}\u003C\u002Fp>` : \"\"}\u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--secondary\" type=\"button\" data-gtb-open-property data-logement-id=\"${echapperHTML(logement.id)}\">Voir le logement\u003C\u002Fbutton>\u003C\u002Fdiv>\u003C\u002Farticle>`;\n }\n\n function iconeFait(type) {\n const formes = {\n chambres: '\u003Cpath d=\"M3 12h18v7H3zM5 12V8h6a3 3 0 0 1 3 3v1M3 19v2M21 19v2\"\u002F>',\n bain: '\u003Cpath d=\"M4 13h16v2a5 5 0 0 1-5 5H9a5 5 0 0 1-5-5v-2ZM7 13V6a3 3 0 0 1 5-2l1 1M5 20l-1 2M19 20l1 2\"\u002F>',\n etage: '\u003Cpath d=\"m4 16 8 4 8-4M4 12l8 4 8-4M4 8l8 4 8-4-8-4-8 4Z\"\u002F>',\n stationnement: '\u003Ccircle cx=\"12\" cy=\"12\" r=\"9\"\u002F>\u003Cpath d=\"M10 17V7h3a3 3 0 0 1 0 6h-3\"\u002F>',\n animaux: '\u003Cpath d=\"M8.5 11.5c-2.5 1.2-4 3.1-3.3 5.1.8 2.2 3.4 2.3 6.8.8 3.4 1.5 6 1.4 6.8-.8.7-2-1-4-3.3-5.1-2.1-1-4.9-1-7 0ZM7 8.5c-1.2.4-2.4-.7-2.6-2.1-.2-1.4.7-2.6 1.9-2.7 1.2-.1 2.1 1 2.2 2.3.1 1.2-.4 2.1-1.5 2.5ZM17 8.5c1.2.4 2.4-.7 2.6-2.1.2-1.4-.7-2.6-1.9-2.7-1.2-.1-2.1 1-2.2 2.3-.1 1.2.4 2.1 1.5 2.5ZM11 7.5c-1.2.2-2.2-.9-2.2-2.3 0-1.4.9-2.5 2.1-2.5s2 1.1 2 2.4c0 1.3-.7 2.2-1.9 2.4ZM14.5 8c-1.1-.1-1.8-1.2-1.6-2.5.2-1.3 1.1-2.2 2.2-2 1.1.2 1.7 1.3 1.5 2.6-.2 1.2-1 2-2.1 1.9Z\"\u002F>'\n };\n return `\u003Csvg viewBox=\"0 0 24 24\" aria-hidden=\"true\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.7\" stroke-linecap=\"round\" stroke-linejoin=\"round\">${formes[type] || formes.etage}\u003C\u002Fsvg>`;\n }\n\n function photosDuLogement(logement) {\n const sources = [logement.photoPrincipale].concat(Array.isArray(logement.photos) ? logement.photos : []).filter(Boolean);\n return sources.filter((source, index) => sources.indexOf(source) === index);\n }\n\n function contenuFiche(logement, urlCandidature, courrielLocation) {\n const photos = photosDuLogement(logement).map((photo, index) => urlImageOptimisee(photo, index === 0 ? 900 : 1600, index === 0 ? 78 : 82));\n const type = logement.typeAffiche || logement.type || \"\";\n const titre = logement.adresse || logement.titre || type || \"Logement à louer\";\n const prix = Number.isFinite(logement.prix) ? `${formatPrix.format(logement.prix)} $ \u002F mois` : \"\";\n const disponibilite = logement.disponibilite && logement.disponibilite.libelle ? logement.disponibilite.libelle : \"\";\n const lieu = [logement.ville, logement.secteur].filter(Boolean).filter((item, index, liste) => liste.findIndex((autre) => normaliser(autre) === normaliser(item)) === index).join(\" · \");\n const localisation = [logement.adresse, logement.ville, logement.secteur].filter(Boolean).filter((item, index, liste) => liste.findIndex((autre) => normaliser(autre) === normaliser(item)) === index);\n const caracteristiques = Array.isArray(logement.caracteristiques) ? logement.caracteristiques.filter(Boolean) : [];\n const faits = [];\n if (Number.isFinite(logement.chambres)) faits.push({ type: \"chambres\", texte: `${logement.chambres} chambre${logement.chambres > 1 ? \"s\" : \"\"}` });\n if (Number.isFinite(logement.sallesDeBain)) faits.push({ type: \"bain\", texte: `${logement.sallesDeBain} salle${logement.sallesDeBain > 1 ? \"s\" : \"\"} de bain` });\n if (logement.etageAffiche || logement.etage) faits.push({ type: \"etage\", texte: logement.etageAffiche || logement.etage });\n if (Number.isFinite(logement.stationnements)) faits.push({ type: \"stationnement\", texte: `${logement.stationnements} stationnement${logement.stationnements > 1 ? \"s\" : \"\"}` });\n if (logement.animaux && logement.animaux.chat === true) faits.push({ type: \"animaux\", texte: \"Chat accepté\" });\n if (logement.animaux && logement.animaux.chien === true) faits.push({ type: \"animaux\", texte: \"Chien accepté\" });\n const alt = logement.imageAlt || `Photo de ${titre}`;\n const galerie = photos.length\n ? `\u003Cdiv class=\"gtb-property-modal__stage\" data-gtb-gallery-stage style=\"--gtb-modal-image-position:${echapperHTML(logement.imagePosition || \"50% 50%\")}\">\u003Cimg src=\"${echapperHTML(photos[0])}\" alt=\"${echapperHTML(alt)}\" width=\"${echapperHTML(logement.imageLargeur || 1200)}\" height=\"${echapperHTML(logement.imageHauteur || 900)}\" data-gtb-gallery-image>${photos.length > 1 ? '\u003Cbutton class=\"gtb-property-modal__gallery-button gtb-property-modal__gallery-button--prev\" type=\"button\" aria-label=\"Photo précédente\" data-gtb-gallery-prev>‹\u003C\u002Fbutton>\u003Cbutton class=\"gtb-property-modal__gallery-button gtb-property-modal__gallery-button--next\" type=\"button\" aria-label=\"Photo suivante\" data-gtb-gallery-next>›\u003C\u002Fbutton>\u003Cp class=\"gtb-property-modal__counter\" aria-live=\"polite\" data-gtb-gallery-counter>1 \u002F ' + photos.length + '\u003C\u002Fp>' : \"\"}\u003C\u002Fdiv>${photos.length > 1 ? `\u003Cdiv class=\"gtb-property-modal__thumbs\" aria-label=\"Choisir une photo\">${photos.map((photo, index) => `\u003Cbutton class=\"gtb-property-modal__thumb\" type=\"button\" aria-label=\"Afficher la photo ${index + 1}\" aria-current=\"${index === 0 ? \"true\" : \"false\"}\" data-gtb-gallery-thumb=\"${index}\">\u003Cimg src=\"${echapperHTML(photo)}\" alt=\"\" loading=\"lazy\">\u003C\u002Fbutton>`).join(\"\")}\u003C\u002Fdiv>` : \"\"}`\n : '\u003Cdiv class=\"gtb-property-modal__stage\">\u003Cdiv class=\"gtb-property-modal__placeholder\" role=\"img\" aria-label=\"Photo officielle du logement à ajouter\">\u003Cspan>\u003C\u002Fspan>\u003Cstrong>Photo officielle à ajouter\u003C\u002Fstrong>\u003C\u002Fdiv>\u003C\u002Fdiv>';\n const details = [\n logement.description ? `\u003Csection class=\"gtb-property-modal__section gtb-property-modal__section--wide\">\u003Ch3>À propos du logement\u003C\u002Fh3>\u003Cp>${echapperHTML(logement.description)}\u003C\u002Fp>\u003C\u002Fsection>` : \"\",\n caracteristiques.length ? `\u003Csection class=\"gtb-property-modal__section\">\u003Ch3>Inclusions et caractéristiques\u003C\u002Fh3>\u003Cul class=\"gtb-property-modal__features\">${caracteristiques.map((item) => `\u003Cli>${echapperHTML(item)}\u003C\u002Fli>`).join(\"\")}\u003C\u002Ful>\u003C\u002Fsection>` : \"\",\n localisation.length ? `\u003Csection class=\"gtb-property-modal__section\">\u003Ch3>Localisation\u003C\u002Fh3>\u003Caddress class=\"gtb-property-modal__address\">${localisation.map(echapperHTML).join(\"\u003Cbr>\")}\u003C\u002Faddress>\u003C\u002Fsection>` : \"\"\n ].filter(Boolean).join(\"\");\n return `\u003Cdiv class=\"gtb-property-modal__top\">\u003Cdiv class=\"gtb-property-modal__gallery\">${galerie}\u003C\u002Fdiv>\u003Cdiv class=\"gtb-property-modal__summary\">${type ? `\u003Cp class=\"gtb-property-modal__type\">${echapperHTML(type)}\u003C\u002Fp>` : \"\"}${prix ? `\u003Cp class=\"gtb-property-modal__price\">${echapperHTML(prix)}\u003C\u002Fp>` : \"\"}\u003Ch2 id=\"gtb-property-modal-title\">${echapperHTML(titre)}\u003C\u002Fh2>${lieu ? `\u003Cp class=\"gtb-property-modal__location\">${echapperHTML(lieu)}\u003C\u002Fp>` : \"\"}${disponibilite ? `\u003Cp class=\"gtb-property-modal__availability\">${echapperHTML(disponibilite)}\u003C\u002Fp>` : \"\"}${faits.length ? `\u003Cdiv class=\"gtb-property-modal__facts\">${faits.map((fait) => `\u003Cdiv class=\"gtb-property-modal__fact\">${iconeFait(fait.type)}\u003Cspan>${echapperHTML(fait.texte)}\u003C\u002Fspan>\u003C\u002Fdiv>`).join(\"\")}\u003C\u002Fdiv>` : \"\"}\u003Cdiv class=\"gtb-property-modal__actions\">\u003Cbutton class=\"gtb-rentals-button gtb-rentals-button--primary\" type=\"button\" data-gtb-open-application>Je suis intéressé\u003C\u002Fbutton>\u003Cdiv class=\"gtb-property-modal__contacts\">\u003Ca class=\"gtb-property-modal__contact\" href=\"tel:+18198178486\">Appeler\u003C\u002Fa>\u003Ca class=\"gtb-property-modal__contact\" href=\"mailto:${echapperHTML(courrielLocation)}\">Courriel\u003C\u002Fa>\u003C\u002Fdiv>\u003C\u002Fdiv>\u003C\u002Fdiv>\u003C\u002Fdiv>${details ? `\u003Cdiv class=\"gtb-property-modal__details\">${details}\u003C\u002Fdiv>` : \"\"}`;\n }\n\n function initialiserFiches(racine, logements) {\n const modal = choisir(\"[data-gtb-property-modal]\", racine);\n if (!modal || modal.dataset.gtbModalInitialized === \"true\") return;\n modal.dataset.gtbModalInitialized = \"true\";\n const dialogue = choisir(\"[data-gtb-modal-dialog]\", modal);\n const contenu = choisir(\"[data-gtb-modal-content]\", modal);\n const fermerBouton = choisir(\"[data-gtb-modal-close]\", modal);\n const overlay = choisir(\"[data-gtb-modal-overlay]\", modal);\n const modalCandidature = choisir(\"[data-gtb-application-modal]\", racine);\n const dialogueCandidature = choisir(\"[data-gtb-application-dialog]\", modalCandidature);\n const fermerCandidatureBouton = choisir(\"[data-gtb-application-close]\", modalCandidature);\n const overlayCandidature = choisir(\"[data-gtb-application-overlay]\", modalCandidature);\n const urlCandidatureParDefaut = racine.dataset.gtbApplicationUrl || racine.dataset.gtbContactUrl || \"\u002Fnous-contacter\"; \u002F\u002F Destination temporaire tant qu'aucun urlCandidature n'est défini.\n const courrielLocation = racine.dataset.gtbLocationEmail || \"info@gestiontb.ca\";\n let logementOuvert = null;\n let declencheur = null;\n let indexPhoto = 0;\n let photos = [];\n let positionTactile = null;\n let positionDefilement = 0;\n let stylesBody = null;\n let minuterieFermeture = null;\n let declencheurCandidature = null;\n let minuterieCandidature = null;\n\n const trouver = (id) => logements.find((logement) => logement.id === id);\n const idDepuisHash = () => {\n const correspondance = window.location.hash.match(\u002F^#logement=(.+)$\u002F);\n if (!correspondance) return \"\";\n try { return decodeURIComponent(correspondance[1]); } catch (erreur) { return \"\"; }\n };\n\n function verrouillerPage() {\n positionDefilement = window.scrollY;\n stylesBody = { position: document.body.style.position, top: document.body.style.top, left: document.body.style.left, right: document.body.style.right, width: document.body.style.width };\n document.body.classList.add(\"gtb-property-modal-open\");\n document.body.style.position = \"fixed\";\n document.body.style.top = `-${positionDefilement}px`;\n document.body.style.left = \"0\";\n document.body.style.right = \"0\";\n document.body.style.width = \"100%\";\n }\n\n function deverrouillerPage() {\n if (!stylesBody) return;\n document.body.classList.remove(\"gtb-property-modal-open\");\n Object.entries(stylesBody).forEach(([propriete, valeur]) => { document.body.style[propriete] = valeur; });\n stylesBody = null;\n window.scrollTo(0, positionDefilement);\n }\n\n function afficherPhoto(nouvelIndex) {\n if (photos.length \u003C 2) return;\n indexPhoto = (nouvelIndex + photos.length) % photos.length;\n const image = choisir(\"[data-gtb-gallery-image]\", modal);\n const compteur = choisir(\"[data-gtb-gallery-counter]\", modal);\n if (image) image.src = urlImageOptimisee(photos[indexPhoto], 1600, 82);\n if (compteur) compteur.textContent = `${indexPhoto + 1} \u002F ${photos.length}`;\n choisirTous(\"[data-gtb-gallery-thumb]\", modal).forEach((bouton, index) => bouton.setAttribute(\"aria-current\", String(index === indexPhoto)));\n }\n\n function brancherGalerie() {\n choisir(\"[data-gtb-gallery-prev]\", modal)?.addEventListener(\"click\", () => afficherPhoto(indexPhoto - 1));\n choisir(\"[data-gtb-gallery-next]\", modal)?.addEventListener(\"click\", () => afficherPhoto(indexPhoto + 1));\n choisirTous(\"[data-gtb-gallery-thumb]\", modal).forEach((bouton) => bouton.addEventListener(\"click\", () => afficherPhoto(Number(bouton.dataset.gtbGalleryThumb))));\n const scene = choisir(\"[data-gtb-gallery-stage]\", modal);\n if (!scene || photos.length \u003C 2) return;\n scene.addEventListener(\"touchstart\", (event) => { positionTactile = event.changedTouches[0].clientX; }, { passive: true });\n scene.addEventListener(\"touchend\", (event) => {\n if (positionTactile === null) return;\n const distance = event.changedTouches[0].clientX - positionTactile;\n if (Math.abs(distance) > 45) afficherPhoto(indexPhoto + (distance \u003C 0 ? 1 : -1));\n positionTactile = null;\n }, { passive: true });\n }\n\n function candidatureOuverte() {\n return Boolean(modalCandidature && modalCandidature.classList.contains(\"gtb-is-open\"));\n }\n\n function ouvrirCandidature(bouton) {\n if (!modalCandidature || !dialogueCandidature || !fermerCandidatureBouton) return;\n window.clearTimeout(minuterieCandidature);\n declencheurCandidature = bouton;\n dialogueCandidature.scrollTop = 0;\n modalCandidature.hidden = false;\n modal.classList.add(\"gtb-has-application-open\");\n window.requestAnimationFrame(() => {\n const cadreCandidature = choisir(\".gtb-application-modal__body iframe\", modalCandidature);\n if (cadreCandidature) cadreCandidature.setAttribute(\"scrolling\", \"yes\");\n modalCandidature.classList.add(\"gtb-is-open\");\n dialogue.inert = true;\n dialogue.setAttribute(\"aria-hidden\", \"true\");\n fermerCandidatureBouton.focus();\n });\n }\n\n function fermerCandidature(restaurerFocus = true, immediat = false) {\n if (!candidatureOuverte()) return;\n const retourFocus = declencheurCandidature;\n declencheurCandidature = null;\n modalCandidature.classList.remove(\"gtb-is-open\");\n modal.classList.remove(\"gtb-has-application-open\");\n dialogue.inert = false;\n dialogue.removeAttribute(\"aria-hidden\");\n const duree = immediat || window.matchMedia(\"(prefers-reduced-motion: reduce)\").matches ? 0 : 230;\n minuterieCandidature = window.setTimeout(() => { modalCandidature.hidden = true; }, duree);\n if (restaurerFocus && retourFocus && document.contains(retourFocus)) retourFocus.focus();\n }\n\n function ouvrir(id, bouton, ajouterHistorique = true) {\n const logement = trouver(id);\n if (!logement) return;\n window.clearTimeout(minuterieFermeture);\n logementOuvert = logement;\n declencheur = bouton || null;\n photos = photosDuLogement(logement);\n indexPhoto = 0;\n contenu.innerHTML = contenuFiche(logement, urlCandidatureParDefaut, courrielLocation);\n choisirTous(\"[data-gtb-gallery-thumb] img\", contenu).forEach((image, index) => {\n image.src = urlImageOptimisee(photos[index], 320, 72);\n });\n choisirTous(\"img\", contenu).forEach((image) => { image.decoding = \"async\"; });\n brancherGalerie();\n dialogue.scrollTop = 0;\n modal.hidden = false;\n verrouillerPage();\n window.requestAnimationFrame(() => {\n modal.classList.add(\"gtb-is-open\");\n fermerBouton.focus();\n });\n if (ajouterHistorique) {\n const url = new URL(window.location.href);\n url.hash = `logement=${encodeURIComponent(logement.id)}`;\n window.history.pushState({ gtbLogement: logement.id }, \"\", url);\n }\n }\n\n function fermer(gererHistorique = true) {\n if (!logementOuvert) return;\n fermerCandidature(false, true);\n const id = logementOuvert.id;\n const retourFocus = declencheur;\n logementOuvert = null;\n declencheur = null;\n modal.classList.remove(\"gtb-is-open\");\n deverrouillerPage();\n const duree = window.matchMedia(\"(prefers-reduced-motion: reduce)\").matches ? 0 : 230;\n minuterieFermeture = window.setTimeout(() => { modal.hidden = true; contenu.innerHTML = \"\"; }, duree);\n if (retourFocus && document.contains(retourFocus)) retourFocus.focus();\n if (gererHistorique) {\n if (window.history.state && window.history.state.gtbLogement === id) window.history.back();\n else {\n const url = new URL(window.location.href);\n url.hash = \"\";\n window.history.replaceState(null, \"\", url);\n }\n }\n }\n\n racine.addEventListener(\"click\", (event) => {\n const boutonCandidature = event.target.closest(\"[data-gtb-open-application]\");\n if (boutonCandidature && racine.contains(boutonCandidature)) {\n event.preventDefault();\n ouvrirCandidature(boutonCandidature);\n return;\n }\n const bouton = event.target.closest(\"[data-gtb-open-property]\");\n if (bouton && racine.contains(bouton)) {\n event.preventDefault();\n ouvrir(bouton.dataset.logementId, bouton, true);\n return;\n }\n if (event.target.closest(\"a, button, input, select, textarea\")) return;\n const carte = event.target.closest(\"[data-gtb-property-id]\");\n if (!carte || !racine.contains(carte)) return;\n ouvrir(carte.dataset.gtbPropertyId, choisir(\"[data-gtb-open-property]\", carte), true);\n });\n fermerBouton.addEventListener(\"click\", () => fermer(true));\n overlay.addEventListener(\"click\", () => fermer(true));\n modal.addEventListener(\"click\", (event) => { if (event.target === modal) fermer(true); });\n fermerCandidatureBouton?.addEventListener(\"click\", () => fermerCandidature(true));\n overlayCandidature?.addEventListener(\"click\", () => fermerCandidature(true));\n modalCandidature?.addEventListener(\"click\", (event) => { if (event.target === modalCandidature) fermerCandidature(true); });\n document.addEventListener(\"keydown\", (event) => {\n if (!logementOuvert) return;\n if (candidatureOuverte()) {\n if (event.key === \"Escape\") {\n event.preventDefault();\n fermerCandidature(true);\n return;\n }\n if (event.key !== \"Tab\") return;\n const elementsCandidature = choisirTous('a[href], button:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), iframe, [tabindex]:not([tabindex=\"-1\"])', dialogueCandidature).filter((element) => !element.hidden && element.offsetParent !== null);\n if (!elementsCandidature.length) return;\n const premierCandidature = elementsCandidature[0];\n const dernierCandidature = elementsCandidature[elementsCandidature.length - 1];\n if (event.shiftKey && document.activeElement === premierCandidature) { event.preventDefault(); dernierCandidature.focus(); }\n else if (!event.shiftKey && document.activeElement === dernierCandidature) { event.preventDefault(); premierCandidature.focus(); }\n return;\n }\n if (event.key === \"Escape\") {\n event.preventDefault();\n fermer(true);\n return;\n }\n if (event.key !== \"Tab\") return;\n const elements = choisirTous('a[href], button:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex=\"-1\"])', dialogue).filter((element) => !element.hidden && element.offsetParent !== null);\n if (!elements.length) return;\n const premier = elements[0];\n const dernier = elements[elements.length - 1];\n if (event.shiftKey && document.activeElement === premier) { event.preventDefault(); dernier.focus(); }\n else if (!event.shiftKey && document.activeElement === dernier) { event.preventDefault(); premier.focus(); }\n });\n window.addEventListener(\"popstate\", () => {\n const id = idDepuisHash();\n if (id && trouver(id)) {\n if (!logementOuvert || logementOuvert.id !== id) ouvrir(id, null, false);\n } else fermer(false);\n });\n const idInitial = idDepuisHash();\n if (idInitial && trouver(idInitial)) ouvrir(idInitial, null, false);\n window.GTB_OUVRIR_LOGEMENT = (id) => ouvrir(id, null, true);\n }\n\n window.GTB_LOGEMENTS_COMPOSANT = {\n carteLogement,\n initialiserFiches\n };\n})();\n\n\u002F* PAGE LOGEMENTS À LOUER — rendu, filtres, tri et contenu partagé *\u002F\n(function () {\n \"use strict\";\n\n document.documentElement.classList.add(\"gtb-rentals-js\");\n\n const choisir = (selecteur, racine = document) => racine.querySelector(selecteur);\n const choisirTous = (selecteur, racine = document) => Array.from(racine.querySelectorAll(selecteur));\n const formatPrix = new Intl.NumberFormat(\"fr-CA\", { maximumFractionDigits: 0 });\n const secteursFiltres = [\"Drummondville\", \"Saint-Cyrille\", \"Notre-Dame-du-Bon-Conseil\", \"Saint-Léonard-d'Aston\", \"Wickham\", \"Richmond\"];\n\n function echapperHTML(valeur) {\n return String(valeur ?? \"\")\n .replaceAll(\"&\", \"&amp;\")\n .replaceAll(\"\u003C\", \"&lt;\")\n .replaceAll(\">\", \"&gt;\")\n .replaceAll('\"', \"&quot;\")\n .replaceAll(\"'\", \"&#039;\");\n }\n\n function normaliser(valeur) {\n return String(valeur ?? \"\").normalize(\"NFD\").replace(\u002F[\\u0300-\\u036f]\u002Fg, \"\").toLowerCase().trim();\n }\n\n function valeurDepuisChemin(objet, chemin) {\n return chemin.split(\".\").reduce((valeur, cle) => valeur && valeur[cle], objet);\n }\n\n function ajouterOptions(select, valeurs, libelle) {\n if (!select) return;\n valeurs.forEach((valeur) => {\n const option = document.createElement(\"option\");\n option.value = valeur;\n option.textContent = libelle ? libelle(valeur) : valeur;\n select.append(option);\n });\n }\n\n \n\n const composantLogements = window.GTB_LOGEMENTS_COMPOSANT;\n if (!composantLogements) throw new Error(\"Le composant partagé des logements doit être chargé avant logements-a-louer.js.\");\n\n function initialiserCatalogue(racine, donnees) {\n if (!racine || racine.dataset.gtbCatalogueInitialized === \"true\") return;\n racine.dataset.gtbCatalogueInitialized = \"true\";\n const logements = (Array.isArray(donnees) ? donnees : []).filter((logement) => logement && logement.actif === true);\n const formulaire = choisir(\"[data-gtb-filters]\", racine);\n const grille = choisir(\"[data-gtb-results]\", racine);\n const vide = choisir(\"[data-gtb-empty]\", racine);\n const compteur = choisir(\"[data-gtb-count]\", racine);\n const tri = choisir(\"[data-gtb-sort]\", racine);\n const contactUrl = racine.dataset.gtbContactUrl || \"\u002Fnous-contacter\";\n choisirTous(\"[data-gtb-contact-link]\", racine).forEach((lien) => lien.setAttribute(\"href\", contactUrl));\n\n const selectSecteur = choisir('[name=\"sector\"]', formulaire);\n const selectBudget = choisir('[name=\"budget\"]', formulaire);\n ajouterOptions(selectSecteur, secteursFiltres);\n\n const prixConnus = logements.map((logement) => logement.prix).filter(Number.isFinite);\n if (prixConnus.length) {\n const plafond = Math.ceil(Math.max(...prixConnus) \u002F 100) * 100;\n const depart = Math.max(900, Math.floor(Math.min(...prixConnus) \u002F 100) * 100);\n const budgets = [];\n for (let montant = depart; montant \u003C= plafond; montant += 100) budgets.push(montant);\n ajouterOptions(selectBudget, budgets, (montant) => `${formatPrix.format(montant)} $`);\n }\n\n function lireEtat() {\n const donneesFormulaire = new FormData(formulaire);\n return {\n sector: donneesFormulaire.get(\"sector\") || \"\",\n types: donneesFormulaire.getAll(\"type\"),\n budget: Number(donneesFormulaire.get(\"budget\")) || null,\n floors: donneesFormulaire.getAll(\"floor\"),\n cat: donneesFormulaire.get(\"cat\") === \"on\",\n dog: donneesFormulaire.get(\"dog\") === \"on\"\n };\n }\n\n function filtrer(logement, etat) {\n return (!etat.sector || logement.secteur === etat.sector)\n && (!etat.types.length || etat.types.includes(logement.type))\n && (!etat.budget || (Number.isFinite(logement.prix) && logement.prix \u003C= etat.budget))\n && (!etat.floors.length || etat.floors.includes(logement.etage))\n && (!etat.cat || Boolean(logement.animaux && logement.animaux.chat === true))\n && (!etat.dog || Boolean(logement.animaux && logement.animaux.chien === true));\n }\n\n function trier(liste, mode) {\n const copie = liste.slice();\n const ordre = (logement) => Number(logement.ordre) || 0;\n const prix = (logement, defaut) => Number.isFinite(logement.prix) ? logement.prix : defaut;\n const disponibiliteOrdre = { maintenant: 0, bientot: 1, date: 2, \"a-confirmer\": 3 };\n copie.sort((a, b) => {\n if (mode === \"price-asc\") return prix(a, Infinity) - prix(b, Infinity) || ordre(a) - ordre(b);\n if (mode === \"price-desc\") return prix(b, -Infinity) - prix(a, -Infinity) || ordre(a) - ordre(b);\n if (mode === \"newest\") return String(b.dateAjout || \"\").localeCompare(String(a.dateAjout || \"\")) || ordre(a) - ordre(b);\n if (mode === \"availability\") {\n const categorieA = a.disponibilite && a.disponibilite.categorie;\n const categorieB = b.disponibilite && b.disponibilite.categorie;\n const rangA = Object.prototype.hasOwnProperty.call(disponibiliteOrdre, categorieA) ? disponibiliteOrdre[categorieA] : 9;\n const rangB = Object.prototype.hasOwnProperty.call(disponibiliteOrdre, categorieB) ? disponibiliteOrdre[categorieB] : 9;\n return rangA - rangB || String((a.disponibilite && a.disponibilite.date) || \"9999\").localeCompare(String((b.disponibilite && b.disponibilite.date) || \"9999\")) || ordre(a) - ordre(b);\n }\n return ordre(a) - ordre(b);\n });\n return copie;\n }\n\n function afficher() {\n const resultat = trier(logements.filter((logement) => filtrer(logement, lireEtat())), tri.value);\n compteur.textContent = `${resultat.length} logement${resultat.length === 1 ? \"\" : \"s\"} trouvé${resultat.length === 1 ? \"\" : \"s\"}`;\n grille.innerHTML = resultat.map((logement, index) => composantLogements.carteLogement(logement, index)).join(\"\");\n grille.hidden = resultat.length === 0;\n vide.hidden = resultat.length !== 0;\n if (!window.matchMedia(\"(prefers-reduced-motion: reduce)\").matches) {\n window.requestAnimationFrame(() => window.requestAnimationFrame(() => choisirTous(\".gtb-rentals-card-enter\", grille).forEach((carte) => carte.classList.remove(\"gtb-rentals-card-enter\"))));\n } else choisirTous(\".gtb-rentals-card-enter\", grille).forEach((carte) => carte.classList.remove(\"gtb-rentals-card-enter\"));\n }\n\n function reinitialiser() {\n formulaire.reset();\n tri.value = \"price-asc\";\n afficher();\n }\n\n formulaire.addEventListener(\"input\", afficher);\n formulaire.addEventListener(\"change\", afficher);\n tri.addEventListener(\"change\", afficher);\n choisir(\"[data-gtb-reset]\", racine).addEventListener(\"click\", reinitialiser);\n choisir(\"[data-gtb-empty-reset]\", racine).addEventListener(\"click\", reinitialiser);\n afficher();\n composantLogements.initialiserFiches(racine, logements);\n }\n\n function initialiserAnimations(racine) {\n const elements = choisirTous(\"[data-gtb-rentals-reveal]\", racine);\n if (window.matchMedia(\"(prefers-reduced-motion: reduce)\").matches || !(\"IntersectionObserver\" in window)) {\n elements.forEach((element) => element.classList.add(\"gtb-is-revealed\"));\n return;\n }\n elements.forEach((element, index) => element.style.setProperty(\"--gtb-rentals-delay\", `${Math.min(index * 75, 300)}ms`));\n const observateur = new IntersectionObserver((entrees) => {\n entrees.forEach((entree) => {\n if (!entree.isIntersecting) return;\n entree.target.classList.add(\"gtb-is-revealed\");\n observateur.unobserve(entree.target);\n });\n }, { threshold: .12, rootMargin: \"0px 0px -6% 0px\" });\n elements.forEach((element) => observateur.observe(element));\n }\n\n async function demarrer() {\n const etat = choisir(\"[data-gtb-status]\");\n try {\n\n const racine = choisir(\"[data-gtb-rentals-root]\");\n if (!racine) return;\n\n\n initialiserCatalogue(racine, window.GTB_LOGEMENTS);\n initialiserAnimations(racine);\n document.documentElement.classList.add(\"gtb-ready\");\n if (etat) etat.textContent = \"Aperçu chargé\";\n } catch (erreur) {\n console.error(\"Gestion TB — impossible de charger les logements\", erreur);\n document.documentElement.classList.remove(\"gtb-rentals-js\");\n if (etat) etat.textContent = \"L’aperçu doit être ouvert depuis un serveur local. Consultez le README.\";\n }\n }\n\n window.GTB_INITIALISER_LOGEMENTS = initialiserCatalogue;\n if (document.readyState === \"loading\") document.addEventListener(\"DOMContentLoaded\", demarrer, { once: true });\n else demarrer();\n})();\n\n\u003C\u002Fscript>\n","Jotform",{"value":310},[],"ccustom-code-WC4M1By6OW",{},{"id":12,"type":14,"child":314,"class":316,"styles":324,"extra":326,"meta":14,"tagName":48,"title":337,"tabletStyles":338,"tabletWrapper":339,"prebuiltSectionTemplate":340,"classStr":19,"_id":12},[315],"row-FK4sJ5Q_F3",{"width":317,"entranceAnimation":318,"animationScale":319,"animationDuration":320,"animationDelay":321,"animationEasing":322,"disableAnimationsOnMobile":323},{"value":19},{"value":122},{"value":105},{"value":105},{"value":126},{"value":128},{"value":35},{"borderWidth":325},{"value":143},{"sticky":327,"visibility":328,"bgImage":330,"allowRowMaxWidth":332,"customClass":333,"elementScreenshot":335},{"value":32},{"value":329},{"hideDesktop":43,"hideTablet":43,"hideMobile":43},{"value":331},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":43},{"value":334},[],{"value":336},[],"footer-refonte 2026",{},{},{"_id":341,"name":337,"prebuiltSectionTemplateType":161,"deleted":43},"6a91acc7d19b6c5d9af3171f",{"id":315,"type":52,"child":343,"class":345,"styles":353,"extra":355,"tagName":73,"meta":52,"tabletStyles":363,"tabletWrapper":364,"title":74,"classStr":57},[344],"col-XWdryjtNAM",{"alignRow":346,"entranceAnimation":347,"animationScale":348,"animationDuration":349,"animationDelay":350,"animationEasing":351,"disableAnimationsOnMobile":352},{"value":57},{"value":122},{"value":105},{"value":105},{"value":126},{"value":128},{"value":35},{"borderWidth":354},{"value":143},{"visibility":356,"bgImage":358,"rowWidth":360,"customClass":361},{"value":357},{"hideDesktop":43,"hideTablet":43,"hideMobile":43},{"value":359},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":69,"unit":70},{"value":362},[],{},{},{"id":344,"type":77,"child":366,"class":368,"styles":376,"extra":378,"tagName":103,"meta":77,"tabletStyles":390,"tabletWrapper":391,"title":104,"noOfColumns":105},[367],"custom-code-4tobEgNGMa",{"entranceAnimation":369,"animationScale":370,"animationDuration":371,"animationDelay":372,"animationEasing":373,"disableAnimationsOnMobile":374,"nestedColumn":375},{"value":122},{"value":105},{"value":105},{"value":126},{"value":128},{"value":35},{"value":39},{"borderWidth":377},{"value":143},{"visibility":379,"bgImage":381,"columnLayout":383,"justifyContentColumnLayout":384,"alignContentColumnLayout":385,"forceColumnLayoutForMobile":386,"customClass":387,"elementVersion":389},{"value":380},{"hideDesktop":43,"hideTablet":43,"hideMobile":43},{"value":382},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":93},{"value":95},{"value":97},{"value":35},{"value":388},[],{"value":102},{},{},{"extra":393,"id":367,"meta":222,"tagName":223,"class":402},{"visibility":394,"customCode":396,"customClass":399,"nodeId":401},{"value":395},{"hideMobile":39,"hideDesktop":39,"hideTablet":43},{"value":397},{"rawCustomCode":398},"\u003C!--\n GESTION TB — FOOTER UNIVERSEL GOHIGHLEVEL\n\n INFORMATIONS FACILES À MODIFIER :\n - Logo blanc : https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a90cc96747464c6b3a3de9d.png\n - Général : info@gestiontb.ca \u002F 819-817-8486\n - Location : location@gestiontb.ca \u002F 819-817-8486 poste 1\n - Les destinations temporaires sont clairement commentées dans le HTML.\n-->\n\u003Cstyle>\n#gestiontb-footer-universel {\n width: 100vw !important;\n max-width: none !important;\n margin: 0 calc(50% - 50vw) !important;\n overflow-x: clip;\n box-sizing: border-box;\n padding-top: 4.5rem;\n color: #d7e5f1;\n background: #0d2949;\n font-family: \"Avenir Next World\", \"Avenir Next\", Avenir, \"Segoe UI\", sans-serif;\n font-size: 16px;\n line-height: 1.55;\n text-align: left;\n --gtb-footer-white: #ffffff;\n --gtb-footer-shell: 1200px;\n}\n#gestiontb-footer-universel,\n#gestiontb-footer-universel *,\n#gestiontb-footer-universel *::before,\n#gestiontb-footer-universel *::after { box-sizing: border-box; }\n#gestiontb-footer-universel h2,\n#gestiontb-footer-universel h3,\n#gestiontb-footer-universel p { margin-top: 0; }\n#gestiontb-footer-universel a { color: inherit; text-decoration: none; }\n#gestiontb-footer-universel img { display: block; max-width: 100%; }\n#gestiontb-footer-universel .gtb-footer-shell { width: min(calc(100% - 3rem), var(--gtb-footer-shell)); margin-inline: auto; }\n#gestiontb-footer-universel .gtb-footer-grid { display: grid; grid-template-columns: 1.35fr .9fr 1.15fr .9fr .75fr; gap: clamp(1.5rem, 3vw, 3rem); padding-bottom: 3.5rem; }\n#gestiontb-footer-universel .gtb-footer-about p { max-width: 24rem; margin: 1.25rem 0 0; color: #b8cbdd; }\n#gestiontb-footer-universel .gtb-footer-brand { display: inline-flex; }\n#gestiontb-footer-universel .gtb-footer-logo-frame { display: block; width: 192px; height: 55px; }\n#gestiontb-footer-universel .gtb-footer-logo { width: 192px; height: 55px; border: 0; outline: 0; object-fit: contain; pointer-events: none; }\n#gestiontb-footer-universel h2 { margin-bottom: 1.1rem; color: var(--gtb-footer-white); font-size: .8rem; line-height: 1.2; letter-spacing: .12em; text-transform: uppercase; }\n#gestiontb-footer-universel h3 { margin-bottom: .25rem; color: var(--gtb-footer-white); font-size: .86rem; font-weight: 700; }\n#gestiontb-footer-universel ul { margin: 0; padding: 0; list-style: none; }\n#gestiontb-footer-universel li + li { margin-top: .45rem; }\n#gestiontb-footer-universel li a { display: inline-flex; min-height: 40px; align-items: center; }\n#gestiontb-footer-universel a:hover { color: var(--gtb-footer-white); text-decoration: underline; text-underline-offset: .2rem; }\n#gestiontb-footer-universel .gtb-footer-brand:hover { text-decoration: none; }\n#gestiontb-footer-universel .gtb-footer-contact-group { color: #b8cbdd; }\n#gestiontb-footer-universel .gtb-footer-contact-group + .gtb-footer-contact-group { margin-top: 1rem; }\n#gestiontb-footer-universel .gtb-footer-contact a { overflow-wrap: anywhere; }\n#gestiontb-footer-universel .gtb-footer-socials { display: flex; align-items: center; gap: .35rem; flex-wrap: nowrap; }\n#gestiontb-footer-universel .gtb-footer-socials li + li { margin-top: 0; }\n#gestiontb-footer-universel .gtb-footer-socials a { width: 44px; height: 44px; justify-content: center; border-radius: 50%; transition: color .2s ease, background .2s ease, transform .2s ease; }\n#gestiontb-footer-universel .gtb-footer-socials a:hover { background: rgba(255,255,255,.1); text-decoration: none; transform: translateY(-2px); }\n#gestiontb-footer-universel .gtb-footer-socials svg { width: 21px; height: 21px; overflow: visible; fill: currentColor; stroke: none; }\n#gestiontb-footer-universel .gtb-footer-socials [aria-label=\"Instagram\"] svg { fill: none; stroke: currentColor; stroke-width: 1.8; }\n#gestiontb-footer-universel .gtb-footer-social-dot { fill: currentColor; stroke: none; }\n#gestiontb-footer-universel .gtb-footer-socials [aria-label=\"TikTok\"] svg { fill: currentColor; stroke: currentColor; stroke-width: .7; stroke-linecap: round; stroke-linejoin: round; }\n#gestiontb-footer-universel .gtb-footer-social-play { fill: #0d2949; }\n#gestiontb-footer-universel .gtb-footer-bottom { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 1rem 2rem; border-top: 1px solid rgba(255,255,255,.15); color: #9fb5ca; font-size: .78rem; }\n#gestiontb-footer-universel .gtb-footer-legal { display: flex; align-items: center; justify-content: flex-end; gap: .55rem; flex-wrap: wrap; }\n#gestiontb-footer-universel .gtb-footer-legal a { display: inline-flex; min-height: 36px; align-items: center; }\n#gestiontb-footer-universel :focus-visible { outline: 3px solid #7fc5ff; outline-offset: 3px; border-radius: .2rem; }\n@media (max-width: 1100px) {\n #gestiontb-footer-universel .gtb-footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }\n #gestiontb-footer-universel .gtb-footer-about { grid-column: 1 \u002F -1; }\n #gestiontb-footer-universel .gtb-footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 1rem; }\n #gestiontb-footer-universel .gtb-footer-legal { justify-content: flex-start; }\n}\n@media (max-width: 768px) {\n #gestiontb-footer-universel .gtb-footer-shell { width: min(calc(100% - 2rem), var(--gtb-footer-shell)); }\n #gestiontb-footer-universel .gtb-footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }\n}\n@media (max-width: 480px) {\n #gestiontb-footer-universel .gtb-footer-grid { grid-template-columns: 1fr; }\n}\n@media (prefers-reduced-motion: reduce) {\n #gestiontb-footer-universel,\n #gestiontb-footer-universel * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }\n}\n\u003C\u002Fstyle>\n\n\u003Cfooter id=\"gestiontb-footer-universel\">\n \u003Cdiv class=\"gtb-footer-shell gtb-footer-grid\">\n \u003Cdiv class=\"gtb-footer-about\">\n \u003Ca class=\"gtb-footer-brand\" href=\"https:\u002F\u002Fgestiontb.ca\u002Fpage-dacceuil\" aria-label=\"Retour à l'accueil\">\u003Cspan class=\"gtb-footer-logo-frame\">\u003Cimg class=\"gtb-footer-logo\" src=\"https:\u002F\u002Fassets.cdn.filesafe.space\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6a90cc96747464c6b3a3de9d.png\" alt=\"Gestion TB\" width=\"3417\" height=\"991\">\u003C\u002Fspan>\u003C\u002Fa>\n \u003Cp>Votre partenaire local pour la location, la gestion et l’achat d’immeubles à Drummondville et dans les environs.\u003C\u002Fp>\n \u003C\u002Fdiv>\n\n \u003Cdiv class=\"gtb-footer-section\">\n \u003Ch2>Navigation\u003C\u002Fh2>\n \u003Cul>\n \u003C!-- LIEN NOS PROJETS À AJOUTER -->\n \u003Cli>\u003Ca href=\"#\" data-gtb-footer-placeholder>Nos projets\u003C\u002Fa>\u003C\u002Fli>\n \u003Cli>\u003Ca href=\"https:\u002F\u002Fgestiontb.ca\u002Fachat-dimmeuble\">Achat d’immeuble\u003C\u002Fa>\u003C\u002Fli>\n \u003Cli>\u003Ca href=\"https:\u002F\u002Fgestiontb.ca\u002Fa-propos\">À propos\u003C\u002Fa>\u003C\u002Fli>\n \u003Cli>\u003Ca href=\"https:\u002F\u002Fgestiontb.ca\u002Fnous-contacter\">Nous joindre\u003C\u002Fa>\u003C\u002Fli>\n \u003Cli>\u003Ca href=\"https:\u002F\u002Fgestiontb.ca\u002Fmaintenance\">Espace locataire\u003C\u002Fa>\u003C\u002Fli>\n \u003C\u002Ful>\n \u003C\u002Fdiv>\n\n \u003Cdiv class=\"gtb-footer-section gtb-footer-contact\">\n \u003Ch2>Nous joindre\u003C\u002Fh2>\n \u003Cdiv class=\"gtb-footer-contact-group\">\n \u003Ch3>Général\u003C\u002Fh3>\n \u003Cul>\u003Cli>\u003Ca href=\"mailto:info@gestiontb.ca\">info@gestiontb.ca\u003C\u002Fa>\u003C\u002Fli>\u003Cli>\u003Ca href=\"tel:+18198178486\">819-817-8486\u003C\u002Fa>\u003C\u002Fli>\u003C\u002Ful>\n \u003C\u002Fdiv>\n \u003Cdiv class=\"gtb-footer-contact-group\">\n \u003Ch3>Location\u003C\u002Fh3>\n \u003Cul>\u003Cli>\u003Ca href=\"mailto:location@gestiontb.ca\">location@gestiontb.ca\u003C\u002Fa>\u003C\u002Fli>\u003Cli>\u003Ca href=\"tel:+18198178486;ext=1\">819-817-8486 poste 1\u003C\u002Fa>\u003C\u002Fli>\u003C\u002Ful>\n \u003C\u002Fdiv>\n \u003C\u002Fdiv>\n\n \u003Cdiv class=\"gtb-footer-section\">\n \u003Ch2>Liens utiles\u003C\u002Fh2>\n \u003Cul>\n \u003Cli>\u003Ca href=\"https:\u002F\u002Fgestiontb.ca\u002Fmaintenance#demande-service\">Demande de service\u003C\u002Fa>\u003C\u002Fli>\n \u003C!-- LIEN BLOGUE À AJOUTER -->\n \u003Cli>\u003Ca href=\"#\" data-gtb-footer-placeholder>Blogue\u003C\u002Fa>\u003C\u002Fli>\n \u003Cli>\u003Ca href=\"https:\u002F\u002Fgestiontb.ca\u002Flogements-a-louer\">Logements à louer\u003C\u002Fa>\u003C\u002Fli>\n \u003C\u002Ful>\n \u003C\u002Fdiv>\n\n \u003Cdiv class=\"gtb-footer-section\">\n \u003Ch2>Suivez-nous\u003C\u002Fh2>\n \u003Cul class=\"gtb-footer-socials\">\n \u003C!-- URL FACEBOOK À AJOUTER -->\n \u003Cli>\u003Ca href=\"#\" data-gtb-footer-placeholder aria-label=\"Facebook\">\u003Csvg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\u003Cpath d=\"M14 8h3V4h-3c-3 0-5 2-5 5v3H6v4h3v8h4v-8h3.5l.5-4h-4V9c0-.6.4-1 1-1Z\"\u002F>\u003C\u002Fsvg>\u003C\u002Fa>\u003C\u002Fli>\n \u003C!-- URL INSTAGRAM À AJOUTER -->\n \u003Cli>\u003Ca href=\"#\" data-gtb-footer-placeholder aria-label=\"Instagram\">\u003Csvg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\u003Crect x=\"3\" y=\"3\" width=\"18\" height=\"18\" rx=\"5\"\u002F>\u003Ccircle cx=\"12\" cy=\"12\" r=\"4.25\"\u002F>\u003Ccircle cx=\"17.5\" cy=\"6.5\" r=\"1\" class=\"gtb-footer-social-dot\"\u002F>\u003C\u002Fsvg>\u003C\u002Fa>\u003C\u002Fli>\n \u003C!-- URL TIKTOK À AJOUTER -->\n \u003Cli>\u003Ca href=\"#\" data-gtb-footer-placeholder aria-label=\"TikTok\">\u003Csvg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\u003Cpath d=\"M15 3v11.1a5.1 5.1 0 1 1-4-5V13a2 2 0 1 0 1 1.7V3h3Zm0 0c.4 2.3 1.8 3.7 4 4v3c-1.5-.1-2.8-.6-4-1.4\"\u002F>\u003C\u002Fsvg>\u003C\u002Fa>\u003C\u002Fli>\n \u003C!-- URL YOUTUBE À AJOUTER -->\n \u003Cli>\u003Ca href=\"#\" data-gtb-footer-placeholder aria-label=\"YouTube\">\u003Csvg viewBox=\"0 0 24 24\" aria-hidden=\"true\">\u003Cpath d=\"M21 7.2a2.8 2.8 0 0 0-2-2C17.3 4.7 12 4.7 12 4.7s-5.3 0-7 .5a2.8 2.8 0 0 0-2 2A29 29 0 0 0 2.5 12 29 29 0 0 0 3 16.8a2.8 2.8 0 0 0 2 2c1.7.5 7 .5 7 .5s5.3 0 7-.5a2.8 2.8 0 0 0 2-2 29 29 0 0 0 .5-4.8 29 29 0 0 0-.5-4.8Z\"\u002F>\u003Cpath d=\"m10 15.5 5-3.5-5-3.5Z\" class=\"gtb-footer-social-play\"\u002F>\u003C\u002Fsvg>\u003C\u002Fa>\u003C\u002Fli>\n \u003C\u002Ful>\n \u003C\u002Fdiv>\n \u003C\u002Fdiv>\n\n \u003Cdiv class=\"gtb-footer-shell gtb-footer-bottom\">\n \u003Cspan>© 2026 Gestion TB. Tous droits réservés.\u003C\u002Fspan>\n \u003Cnav class=\"gtb-footer-legal\" aria-label=\"Liens légaux\">\u003Ca href=\"https:\u002F\u002Fgestiontb.ca\u002Fpolitiqueconfidentialite\">Politique de confidentialité\u003C\u002Fa>\u003Cspan aria-hidden=\"true\">·\u003C\u002Fspan>\u003Ca href=\"https:\u002F\u002Fgestiontb.ca\u002Ftermeetcondition\">Conditions d’utilisation\u003C\u002Fa>\u003C\u002Fnav>\n \u003C\u002Fdiv>\n\u003C\u002Ffooter>\n\n\u003Cscript>\n(function () {\n \"use strict\";\n var root = document.getElementById(\"gestiontb-footer-universel\");\n if (!root) return;\n root.addEventListener(\"click\", function (event) {\n var link = event.target.closest(\"[data-gtb-footer-placeholder]\");\n if (link && root.contains(link)) event.preventDefault();\n });\n})();\n\u003C\u002Fscript>\n",{"value":400},[],"ccustom-code-4tobEgNGMa",{},[],"https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=Inter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CInter:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i%7CRoboto:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap",[],{"author":407,"canonicalMeta":408,"customMeta":411,"description":415,"imageUrl":416,"keywords":417,"language":418,"title":419,"isPreviewUrl":43},"Gestion TB \u002F Appartement TB",[409],{"content":410},"https:\u002F\u002Fgestiontb.ca\u002Flogements-a-louer",[412],{"content":413,"name":414},"index, follow","robots","Consultez nos logements à louer à Drummondville. Des appartements propres, bien situés et gérés par des professionnels. Trouvez votre prochain chez-vous !","https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6961fae5f8a93b39cf67575e.png","logements a louer drummondville, appartements a louer drummondville, location logement drummondville, 3\u002F2 a louer, 4\u002F2 a louer drummondville, 5\u002F2 drummondville","fr-ca","Logements et appartements à louer à Drummondville | Gestion TB","appartementstb.ca","\u002F","guJZMG6JeJTKuXq9LuOf","Logements à louer","9ubT2smip23BapsK3KeE",[426],{"id":427,"elements":428,"activeElementId":427},"hl_main_popup-gcJTzp6WbG",[429,459,477,498],{"extra":430,"class":445,"styles":451,"customCss":454,"id":427,"child":455,"meta":457,"title":458,"tag":39},{"bgImage":431,"overlayColor":433,"left":435,"popupDisabled":437,"popupHide":438,"minWidth":439,"showPopupOnMouseOut":441,"customClass":442,"position":444},{"value":432},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":434},"var(--overlay)",{"value":436,"unit":70},50,{"value":43},{"value":43},{"value":440},"medium-page",{"value":25,"delay":105},{"value":443},[],{"value":95},{"borders":446,"borderRadius":448,"radiusEdge":450},{"value":447},"borderFull",{"value":449},"radius2",{"value":25},{"borderWidth":452},{"value":453,"unit":29},"10",[],[456],"row-215Nt-0XPg","hl_main_popup","Popup location cours",{"id":456,"type":52,"child":460,"class":462,"styles":467,"extra":469,"tagName":73,"meta":52,"title":74,"classStr":75},[461],"col-yW4xiVr8NL",{"alignRow":463,"borders":464,"borderRadius":465,"radiusEdge":466},{"value":57},{"value":21},{"value":23},{"value":25},{"borderWidth":468},{"value":28,"unit":29},{"visibility":470,"bgImage":472,"rowWidth":474,"customClass":475},{"value":471},{"hideDesktop":43,"hideMobile":43},{"value":473},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":69,"unit":70},{"value":476},[],{"id":461,"type":77,"child":478,"class":480,"styles":484,"extra":486,"tagName":103,"meta":77,"title":104,"noOfColumns":105,"classStr":106},[479],"form-CNBum27-XR",{"borders":481,"borderRadius":482,"radiusEdge":483},{"value":21},{"value":23},{"value":25},{"borderWidth":485},{"value":28,"unit":29},{"visibility":487,"bgImage":489,"columnLayout":491,"justifyContentColumnLayout":492,"alignContentColumnLayout":493,"forceColumnLayoutForMobile":494,"customClass":495,"elementVersion":497},{"value":488},{"hideDesktop":43,"hideMobile":43},{"value":490},{"mediaType":38,"url":39,"opacity":40,"options":41,"svgCode":39,"videoUrl":39,"videoThumbnail":39,"videoLoop":35},{"value":93},{"value":95},{"value":97},{"value":35},{"value":496},[],{"value":102},{"extra":499,"class":511,"customCss":512,"id":479,"type":513,"child":514,"meta":515,"tagName":516,"title":517,"tag":39,"formData":518},{"nodeId":500,"visibility":501,"formId":503,"action":506,"visitWebsite":507,"customClass":509},"cform-CNBum27-XR",{"value":502},{"hideDesktop":43,"hideMobile":43},{"value":504,"text":505},"txKGUt5lUnuEaM9GX4HW","Form Contact Location cours",{"value":25},{"value":508},{"url":39,"newTab":43},{"value":510},[],{},[],"element",[],"form","c-form","Form",{"name":505,"autoResponder":43,"emailNotifications":43,"form":519,"language":668,"parentFolderId":669,"parentFolderName":670,"recurringProductCurrency":671,"recurringProductId":122,"recurringProducts":672,"lastUpdatedAt":673,"locationId":424,"country":674,"companyId":675},{"address":520,"autoResponderConfig":122,"company":535,"conditionalLogic":122,"contactAssociationSettings":122,"currentThemeId":538,"customStyle":39,"emailNotificationsConfig":122,"enableTimezone":35,"fbPixelId":539,"fieldCSS":540,"fieldStyle":541,"fields":564,"formAction":641,"formLabelVisible":35,"formSubmissionEvent":643,"fullScreenMode":35,"height":644,"inputStyleType":645,"isGDPRCompliant":43,"layout":105,"mobileFieldCSS":540,"mobileLayout":105,"opportunitySettings":122,"pageViewEvent":646,"payment":122,"stickyContact":35,"style":647,"submitMessageStyle":660,"width":667},{"autoCompleteEnabled":43,"children":521,"label":525,"placeholder":534,"required":35},[522,528,531],{"hiddenFieldQueryKey":523,"hideInLeftSideBar":35,"label":524,"placeholder":525,"required":43,"standard":35,"tag":523,"title":525,"type":526,"typeLabel":527},"address","Adresse de la rue","Adresse","text","Text",{"hiddenFieldQueryKey":529,"label":530,"placeholder":530,"required":43,"standard":35,"tag":529,"title":530,"type":526,"typeLabel":527},"city","Ville",{"hiddenFieldQueryKey":532,"label":533,"placeholder":533,"required":43,"standard":35,"tag":532,"title":533,"type":526,"typeLabel":527},"postal_code","Code postal","Recherchez une adresse",{"logoURL":536,"name":537},"https:\u002F\u002Fmsgsndr-private.storage.googleapis.com\u002FcompanyPhotos\u002F9451ead8-12c3-45d7-bd5a-2cc8665f6b16.png","Benvya","6526b8c3b412c83e9edb9c6f","1232828705513921","@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=Inter:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i|Inter:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');\n\n #_builder-form .form-builder--item input[type=text][class=form-control],#_builder-form .form-builder--item .date-picker-custom-style,#_builder-form .form-builder--item input[type=number]{\n background-color: #FFFFFFFF !important;\n color: #2c3345FF !important;\n border: 1px solid #ACACACFF !important;\n border-radius: 5px !important;\n padding: 8px 15px 8px 15px !important;\n box-shadow: 0px 0px 0px 0px #FFFFFF;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n background-clip: inherit !important;\n }\n #_builder-form textarea {\n background-color: #FFFFFFFF !important;\n color: #2c3345FF !important;\n border: 1px solid #ACACACFF !important;\n border-radius: 5px !important;\n padding: 8px 15px 8px 15px !important;\n box-shadow: 0px 0px 0px 0px #FFFFFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n background-clip: inherit !important;\n }\n #_builder-form input[type=tel],#_builder-form input[type=email],#_builder-form .multiselect .multiselect__tags{\n background-color: #FFFFFFFF !important;\n color: #2c3345FF !important;\n border: 1px solid #ACACACFF !important;\n border: 1px solid #ACACACFF !important;\n border-radius: 5px !important;\n padding: 8px 15px 8px 15px !important;\n box-shadow: 0px 0px 0px 0px #FFFFFF;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n background-clip: inherit !important;\n }\n #_builder-form .multi_select_form {\n border-radius: 5px !important;\n }\n #_builder-form .iti--allow-dropdown input, .iti--allow-dropdown input[type=tel]{\n padding-left: 45px !important;\n }\n #_builder-form .countryphone {\n height: inherit;\n }\n\n\n #_builder-form .form-builder--item .date-picker-custom-style input[type=text], #_builder-form .form-builder--item .multiselect .multiselect__placeholder {\n padding:0;\n background-color: #FFFFFFFF;\n color: #2c3345FF;\n font-size: 12px;\n }\n #_builder-form .form-builder--item .multiselect .multiselect__input{\n background-color: #FFFFFFFF !important;\n }\n #_builder-form .form-builder--item .multiselect .multiselect__select{\n background: transparent;\n z-index:10;\n }\n #_builder-form .form-builder--item .multiselect ,.multiselect__single{\n padding:0 !important;\n margin:0 !important;\n min-height: 24px;\n color: #2c3345FF !important;\n background-color: #FFFFFFFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n }\n #_builder-form .form-builder--item .multiselect__placeholder {\n padding:0 !important;\n margin:0 !important;\n min-height: 24px;\n color: #8c8c8cFF !important;\n background-color: #FFFFFFFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n }\n #_builder-form .field-container{\n width:100%;\n max-width: 900px;\n }\n #_builder-form ::-webkit-input-placeholder { \u002F* Chrome, Firefox, Opera, Safari 10.1+ *\u002F\n color: #8c8c8cFF;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n opacity: 1; \u002F* Firefox *\u002F\n }\n #_builder-form ::placeholder {\n color: #8c8c8cFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n }\n #_builder-form :-ms-input-placeholder { \u002F* Internet Explorer 10-11 *\u002F\n color: #8c8c8cFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n }\n #_builder-form ::-ms-input-placeholder { \u002F* Microsoft Edge *\u002F\n color: #8c8c8cFF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n }\n\n #_builder-form label{\n color: #2c3345FF;\n font-family: 'Inter';\n font-size: 14px;\n font-weight: 500;\n }\n #_builder-form label * {\n color: #2c3345FF;\n font-family: 'Inter';\n }\n #_builder-form .text-element * {\n color: inherit;\n font-family: 'Inter';\n }\n #_builder-form .short-label{\n color: #2c3345FF;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n -webkit-font-smoothing: auto;\n }\n #_builder-form .form-builder--item .payment-suggestion-tag-container {\n background-color: #FFFFFFFF;\n color: #2c3345FF !important;\n font-family: 'Inter';\n font-size: 12px;\n font-weight: 300;\n box-shadow: 0px 0px 0px 0px #FFFFFF;\n }\n #_builder-form .product-summary-amount-large, #order-confirmation .product-summary-amount-large {\n color: #2c3345FF;\n font-size: 18px;\n font-weight: 700;\n font-family: Inter;\n line-height: 1.5rem;\n }\n #_builder-form .product-summary-amount-normal, #order-confirmation .product-summary-amount-normal {\n color: #2c3345FF;\n font-size: 14px;\n font-weight: 600;\n font-family: Inter;\n line-height: 1.5rem;\n }\n #_builder-form .product-summary-label-bold, #order-confirmation .product-summary-label-bold{\n color: #2c3345FF;\n font-size: 14px;\n font-weight: 700;\n font-family: Inter;\n line-height: 1.5rem;\n }\n #_builder-form .crossed-amount {\n color: #2c3345FF;\n font-size: 16px;\n font-weight: 600;\n font-family: Inter;\n line-height: 1.5rem;\n }\n #_builder-form .product-summary-label-large, #order-confirmation .product-summary-label-large{\n color: #2c3345FF;\n font-size: 16px;\n font-weight: 600;\n font-family: Inter;\n line-height: 1.575rem;\n }\n #_builder-form .product-summary-label-normal, #order-confirmation .product-summary-label-normal{\n color: #2c3345FF;\n font-size: 14px;\n font-weight: 500;\n font-family: Inter;\n line-height: 1.575rem;\n }\n #_builder-form .product-summary-label-small, #order-confirmation .product-summary-label-small{\n color: #2c3345FF;\n font-size: 12px;\n font-weight: 500;\n font-family: Inter;\n line-height: 1.575rem;\n }\n #_builder-form .variant-tag {\n color: #2c3345FF;\n font-size: 13px;\n font-weight: 500;\n font-family: Inter;\n line-height: 1.5rem;\n }\n #_builder-form .selected-tag {\n background-color: #009EF426 !important;\n }\n #_builder-form .payment-tag, #_builder-form .quantity-container-counter {\n box-shadow: 0px 0px 0px 0px #FFFFFF;\n background-color : #FFFFFFFF;\n }\n #_builder-form .quantity-container-counter {\n padding-top: 6px !important;\n padding-bottom: 6px !important;\n }\n #_builder-form .quantity-text {\n font-size: 12px !important;\n }\n .bubble-label, .bubble-checkbox-label {\n background-color: #FFFFFFFF !important;\n color: #8c8c8cFF !important;\n font-family: 'Inter' !important;\n font-size: 12px !important;\n font-weight: 300 !important;\n }\n .bubble-container, .bubble-checkbox-container {\n border: 1px solid #ACACACFF !important;\n border-radius: 12px !important;\n \u002F* Small horizontal gap between bubbles *\u002F\n margin-left: 2px !important;\n margin-right: 2px !important;\n padding: 8px 15px 8px 15px !important;\n box-shadow: 0px 0px 0px 0px #FFFFFF;\n font-family: 'Inter';\n font-size: 14px;\n font-weight: 500;\n background-clip: inherit !important;\n }\n .vdpHeadCellContent {\n word-wrap: normal;\n }\n \n ",{"activeTagBgColor":542,"bgColor":543,"border":544,"fontColor":548,"labelAlignment":549,"labelColor":548,"labelFontFamily":550,"labelFontSize":551,"labelFontWeight":552,"labelWidth":553,"mapPrimaryColorToButtonColor":43,"padding":554,"placeholderColor":557,"placeholderFontFamily":550,"placeholderFontSize":558,"placeholderFontWeight":559,"shadow":560,"shortLabel":562,"width":563},"009EF426","FFFFFFFF",{"border":105,"color":545,"radius":546,"type":547},"ACACACFF",5,"solid","2c3345FF","top","Inter",14,500,200,{"bottom":555,"left":556,"right":556,"top":555},8,15,"8c8c8cFF",12,300,{"blur":126,"color":561,"horizontal":126,"spread":126,"vertical":126},"FFFFFF",{"color":548,"fontFamily":550,"fontSize":558,"fontWeight":559},900,[565,568,571,575,578,605,629],{"fieldWidthPercentage":69,"hiddenFieldQueryKey":566,"label":567,"placeholder":567,"required":35,"standard":35,"tag":566,"type":526,"typeLabel":527},"first_name","Prénom",{"fieldWidthPercentage":69,"hiddenFieldQueryKey":569,"label":570,"placeholder":570,"required":35,"standard":35,"tag":569,"type":526,"typeLabel":527},"last_name","Nom",{"enableCountryPicker":43,"fieldWidthPercentage":69,"hiddenFieldQueryKey":572,"label":573,"placeholder":573,"required":35,"standard":35,"tag":572,"type":526,"typeLabel":574},"phone","Téléphone","Phone",{"fieldWidthPercentage":69,"hiddenFieldQueryKey":576,"label":577,"placeholder":577,"required":35,"standard":35,"tag":576,"type":576,"typeLabel":577},"email","Email",{"__pendingClone":43,"active":43,"category":579,"custom":35,"customEdited":35,"customFieldLabel":580,"dataType":581,"dateAdded":582,"documentType":583,"fieldKey":584,"fieldWidthPercentage":69,"hiddenFieldQueryKey":585,"id":586,"label":580,"locationId":424,"model":587,"name":580,"parentId":588,"picklistOptions":589,"placeholder":39,"position":602,"required":35,"standard":43,"tag":586,"type":603,"typeLabel":604},"choiceElements","Pour quel mois cherchez-vous un logement?","SINGLE_OPTIONS","2026-01-13T16:50:42.782Z","field","contact.pour_quel_mois_cherchezvous_un_logement","single_dropdown_5rwr","cXUtGmOxZ0FxVMjvJctu","contact","KDwAmAW6Q0iBxm9WbkXZ",[590,591,592,593,594,595,596,597,598,599,600,601],"Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre",150,"single_options","Single Dropdown",{"__pendingClone":43,"active":43,"calculatedOptions":606,"category":579,"custom":35,"customEdited":35,"customFieldLabel":623,"dataType":581,"dateAdded":624,"documentType":583,"fieldKey":625,"fieldWidthPercentage":69,"hiddenFieldQueryKey":626,"id":627,"label":623,"locationId":424,"model":587,"name":623,"parentId":588,"picklistOptions":628,"placeholder":39,"position":602,"required":35,"standard":43,"tag":627,"type":603,"typeLabel":604},[607,609,611,613,615,617,619,621],{"calculatedValue":39,"label":608},"Studio",{"calculatedValue":39,"label":610},"1 1\u002F2",{"calculatedValue":39,"label":612},"2 1\u002F2",{"calculatedValue":39,"label":614},"3 1\u002F2",{"calculatedValue":39,"label":616},"4 1\u002F2",{"calculatedValue":39,"label":618},"5 1\u002F2",{"calculatedValue":39,"label":620},"6 1\u002F2",{"calculatedValue":39,"label":622},"Maison","Grandeur de logement recherché","2026-01-13T16:50:42.779Z","contact.grandeur_de_logement_recherch","single_dropdown_4lmj","FFGCfZTPIm8R6WhihTrf",[608,610,612,614,616,618,620,622],{"active":43,"align":95,"bgColor":630,"border":126,"borderColor":561,"borderRadius":631,"borderType":25,"color":561,"fieldWidthPercentage":69,"fontFamily":550,"fontSize":556,"fullwidth":35,"hiddenFieldQueryKey":632,"label":633,"padding":634,"placeholder":636,"radius":546,"shadow":637,"standard":35,"subTextColor":638,"subTextFontFamily":550,"subTextFontSize":551,"subTextWeight":553,"submitSubText":39,"tag":632,"type":639,"weight":640},"163760FF",6,"button","\u003Cp style=\"text-align: center;padding-left: 0px!important;\">Soumettre\u003C\u002Fp>",{"bottom":635,"left":436,"right":436,"top":635},9,"Button",{"blur":126,"color":561,"horizontal":126,"spread":126,"vertical":126},"000000","submit",400,{"actionType":28,"headerImageSrc":39,"mobileHeaderImageSrc":39,"redirectUrl":39,"thankyouText":642},"\u003Cp style=\"text-align: center;line-height: 28px;padding-left: 0px!important;font-family: Inter, sans-serif;font-size: 18px;font-weight: 600;margin: 0;\">\u003Cstrong>😊\u003C\u002Fstrong>\u003C\u002Fp>\u003Cp style=\"text-align: center;line-height: 24px;padding-left: 0px!important;font-family: Inter, sans-serif;font-size: 16px;font-weight: 600;margin: 4px 0 0;color: #101828;\">\u003Cstrong>Merci d'avoir remplie la demande!\u003C\u002Fstrong>\u003C\u002Fp>\u003Cp style=\"text-align: center;line-height: 18px;padding-left: 0px!important;font-family: Inter, sans-serif;font-size: 12px;font-weight: 400;margin: 4px 0 0;color: #101828;\">Nous allons vous revenir dans les plus bref délais.\u003C\u002Fp>","SubmitApplication",537,"box","PageView",{"acBranding":43,"background":543,"bgImage":39,"border":648,"fieldSpacing":650,"margin":651,"mobileBgImage":39,"mobileMargin":653,"padding":654,"shadow":657},{"border":105,"color":543,"radius":649,"style":547},3,16,{"bottom":652,"left":652,"right":652,"top":652},"auto",{"bottom":652,"left":652,"right":652,"top":652},{"bottom":126,"left":655,"right":655,"top":656},40,30,{"blur":658,"color":659,"horizontal":126,"spread":126,"vertical":658},4,"57647e36",{"bgColor":561,"cornerRadius":661,"fontWeight":640,"isEnabled":35,"margin":662,"mobileBgColor":561,"mobileFontWeight":640,"mobileMargin":663,"mobilePadding":664,"padding":666},10,{"bottom":652,"left":652,"right":652,"top":652},{"bottom":652,"left":652,"right":652,"top":652},{"bottom":665,"left":665,"right":665,"top":665},48,{"bottom":665,"left":665,"right":665,"top":665},650,"en-US","jKKA7Omasz04AOu9Y5fO","Form | Form Contact Gestion d'immeuble","USD",[],"2026-02-10T22:28:47.049Z","CA","gsmSOGFGVlIR85CVfduW","https:\u002F\u002Fstorage.googleapis.com\u002Fmsgsndr\u002F9ubT2smip23BapsK3KeE\u002Fmedia\u002F6963d6ed98efbdd270eb5bac.png","\u003Cmeta name=\"facebook-domain-verification\" content=\"1mqw2orse1jc8zk8g9xnhm1s17u4s0\" \u002F>","KFXG8HVMgkGzIMbi2zb8","Gestion TB","614ea89a-7e41-43f6-89a2-220de7f1fc18",{"funnelId":678,"version":102,"bgColor":682,"textColor":683,"customiseBtnText":684,"acceptAllBtnText":685,"acceptEssentialBtnText":686,"primaryTextColor":687,"okBtnText":688,"secondaryTextColor":683,"customiseTextColor":683,"linkColor":683,"primaryColor":689,"secondaryColor":690,"customiseColor":687,"isOwnPolicyLink":43,"policyLink":39,"policyLinkText":691,"selectedFont":550,"fontSize":650,"essentialCookies":692,"complianceType":693,"showCustomise":43,"msgDescription":694,"consentExpiration":551,"cookieListSettings":695,"cookieList":708,"layoutSettings":737,"regionSettings":741,"style":744,"isCookieEnabled":35,"pageId":745,"signature":746},"#FFFFFFFF","#000000","Customize","Accepter","Accepter l'essentiel","#ffffff","Ok","#00007BFF","#F1F1F1FF","Learn more",[],"ask-opt-in","Nous utilisons des cookies pour améliorer votre expérience sur notre site. En utilisant notre site, vous consentez à l’utilisation des cookies. Le refus des cookies empêchera le chargement des cookies non essentiels.",{"title":696,"description":697,"bgColor":687,"titleTextColor":698,"descriptionTextColor":699,"savePreferencesBgColor":700,"savePreferencesTextColor":687,"cancelBgColor":687,"cancelTextColor":701,"rejectBgColor":702,"rejectTextColor":703,"switchColor":704,"rejectBtnText":705,"savePreferencesBtnText":706,"cancelBtnText":707},"Personnaliser les préférences de consentement","Nous utilisons des cookies pour assurer le bon fonctionnement du site web et améliorer votre expérience en ligne. Vous pouvez, à tout moment, choisir d’accepter ou de refuser chaque catégorie de cookies. Pour plus d’informations sur les cookies et leur utilisation, consultez la politique complète relative aux cookies.","#101828","#344054","#145eef","#354054","#fef3f2","#b42418","#155EEF","Rejeter","Enregistrer les réglages","Annuel",[709,714,719,724,729,733],{"category":710,"title":711,"description":712,"cookies":713,"isEnabled":35,"isDisabled":35,"userEnabled":35},"essential","Essential","Essential cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.",[],{"category":715,"title":716,"description":717,"cookies":718,"isEnabled":35,"isDisabled":43,"userEnabled":35},"functional","Functional","Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.",[],{"category":720,"title":721,"description":722,"cookies":723,"isEnabled":35,"isDisabled":43,"userEnabled":35},"analytics","Analytics","Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.",[],{"category":725,"title":726,"description":727,"cookies":728,"isEnabled":35,"isDisabled":43,"userEnabled":35},"performance","Performance","to be filled",[],{"category":730,"title":731,"description":727,"cookies":732,"isEnabled":35,"isDisabled":43,"userEnabled":35},"advertising","Advertising",[],{"category":734,"title":735,"description":727,"cookies":736,"isEnabled":35,"isDisabled":43,"userEnabled":35},"uncategorized","Uncategorized",[],{"position":738,"floatingCookie":43,"floaterPosition":739,"bgColor":740,"borderColor":687,"iconColor":687},"popup-banner position-center","right","#fef0c7",{"type":742,"countries":743},"worldwide",[],".hl-cookie-consent-banner{background-color:#ffffffff}.hl-cookie-consent-banner .banner-text,.hl-cookie-consent-banner .learn-more{color:#000;font-family:Inter;font-size:16px}.hl-cookie-consent-banner .button.primary{color:#fff;background-color:#00007bff;font-family:Inter;font-size:16px}.hl-cookie-consent-banner .button.secondary{color:#000;background-color:#f1f1f1ff;font-family:Inter;font-size:16px}.hl-cookie-consent-banner .button.customize{color:#000;background-color:#fff;font-family:Inter;font-size:16px}.hl-cc-preference-popup{background-color:#fff;font-family:Inter}.hl-cc-preference-popup .hl-cc-preference-popup-title{color:#101828;font-size:18px}.hl-cc-preference-popup .hl-cc-preference-popup-description{color:#344054;font-size:14px}.hl-cc-preference-popup-footer .cancel{color:#354054;background-color:#fff}.hl-cc-preference-popup-footer .save{color:#fff;background-color:#145eef}.hl-cc-preference-popup-footer .reject{color:#b42418;background-color:#fef3f2}.hl-cc-switch input:checked+.hl-slider{background-color:#155eef}.hl-cc-preference-popup-content .hl-cc-preference-category-header{color:#101828}","vZsru6STSUdvX8ctCcl2","eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiI4aW1Icm8wOEdQZ0hQa2dKdFNVMCIsImFncmVlZCI6dHJ1ZSwibWVzc2FnZSI6Ik5vdXMgdXRpbGlzb25zIGRlcyBjb29raWVzIHBvdXIgYW3DqWxpb3JlciB2b3RyZSBleHDDqXJpZW5jZSBzdXIgbm90cmUgc2l0ZS4gRW4gdXRpbGlzYW50IG5vdHJlIHNpdGUsIHZvdXMgY29uc2VudGV6IMOgIGzigJl1dGlsaXNhdGlvbiBkZXMgY29va2llcy4gTGUgcmVmdXMgZGVzIGNvb2tpZXMgZW1ww6pjaGVyYSBsZSBjaGFyZ2VtZW50IGRlcyBjb29raWVzIG5vbiBlc3NlbnRpZWxzLiIsInRpbWVzdGFtcCI6MTc2ODMyOTU5MDA2NSwiaWF0IjoxNzY4MzI5NTkwfQ.gNoUy-BIda0RImq3kaoCpyn-ylOIrKKoVrwk1tkmTK4",[],{"@context":749,"@graph":750},"https:\u002F\u002Fschema.org",[751],{"@context":749,"@type":752,"name":679,"image":753,"@id":410,"url":754,"telephone":755,"address":756,"geo":762,"description":766,"openingHoursSpecification":767,"potentialAction":777},"LocalBusiness","https:\u002F\u002Fgestiontb.ca\u002Fimages\u002Flogo.png","https:\u002F\u002Fgestiontb.ca\u002F","819-817-8486",{"@type":757,"streetAddress":758,"addressLocality":759,"addressRegion":760,"postalCode":761,"addressCountry":674},"PostalAddress","445 Rue Lindsay Local 25","Drummondville","QC","J2B 1G9",{"@type":763,"latitude":764,"longitude":765},"GeoCoordinates",45.8833,-72.4833,"Gestion TB est spécialisée dans la location de logements et la gestion immobilière résidentielle à Drummondville.",{"@type":768,"dayOfWeek":769,"opens":775,"closes":776},"OpeningHoursSpecification",[770,771,772,773,774],"Monday","Tuesday","Wednesday","Thursday","Friday","09:00","17:00",{"@type":778,"target":779,"query-input":780},"SearchAction","https:\u002F\u002Fgestiontb.ca\u002F?s={search_term_string}","required name=search_term_string",["Reactive",782],{"$snuxt-i18n-meta":783,"$spreviewState":784,"$smetaPixelOptions":999},{},{"defaultSettings":785,"mobileDevice":43,"tabletDevice":43,"funnelId":678,"funnelDomain":867,"stepId":680,"locationId":424,"funnelPageId":422,"locationCode":674,"funnelNextStep":868,"fingerprint":39,"funnelNextPageId":869,"stripePublishableKey":-1,"enablePaymentElement":-1,"merchantLoginId":39,"paypalPublishableKey":39,"merchantAccountId":-1,"stripeAccountId":-1,"isLivePaymentMode":35,"version":658,"funnelSteps":870,"cartItems":979,"funnelName":679,"orderFormVersion":102,"currency":980,"businessCurrency":980,"blogSlug":39,"domain":420,"pageUrl":421,"pageName":423,"pageSeo":981,"affiliateId":-1,"videoExistsInPage":43,"pageType":982,"contactId":-1,"email":-1,"phone":39,"categoryId":39,"blogSearchTerm":39,"categoryUrlSlug":39,"authorSlug":39,"tagSlug":39,"authorId":39,"defaultPaymentProvider":39,"productCollections":983,"ecomSelectedCollection":39,"imageOptimizationEnabled":35,"nmiMerchantGatewayId":39,"squareMerchantGatewayId":39,"mercadoPagoUserId":39,"fontsToLoad":984,"ecomProductId":39,"isGdprCompliant":43,"isOptimisePageLoad":35,"ecommercePage":105,"isBlogActive":43,"blogData":985,"blogPaths":-1,"blogId":678,"allowedCookies":986,"paymentProviderDetails":-1,"events":987,"searchTerm":39,"countryList":988,"pixelToInit":747,"formAction":39,"ecomProduct":989,"requireCreditCard":35,"haveBlogWidget":43,"isFacebookIAB":43,"companyId":675,"customerLoginToken":39,"cookieConsentList":990,"cookieConsentExpiry":991,"hostCookieConsentData":122,"isHostCookieConsentExpected":43,"mediaFormats":992,"adyenMerchantGatewayId":39,"webinarProperties":122,"webinarSession":122,"userWebinarSession":122,"turnstileToken":39,"turnstileType":994,"turnstileSiteKeys":995,"upsellInFlight":43,"mobileVisibilityDelays":998,"productDetailPageStyles":122,"geoCountry":122,"isCurrencyFormattingEnabled":43},{"typography":786,"background":805,"percentWidth":810,"offsetColor":844,"progressBarSize":857},{"fonts":787,"colors":797},{"headlineFont":788,"contentFont":793},{"id":789,"text":790,"value":791},"headlinefont","Police de titre",{"text":550,"value":792},"var(--inter)",{"id":794,"text":795,"value":796},"contentfont","Police du contenu",{"text":550,"value":792},{"textColor":798,"linkColor":801},{"value":799},{"label":800,"value":683},"var(--black)",{"value":802},{"label":803,"value":804},"var(--blue)","#188bf6",{"bgImage":806,"backgroundColor":808},{"value":807},{"url":39,"options":41},{"value":809},"var(--white)",[811,814,817,820,823,826,829,832,835,838,841],{"text":812,"value":813},"0 pourcent","progress0",{"text":815,"value":816},"10 pourcent","progress10",{"text":818,"value":819},"20 pourcent","progress20",{"text":821,"value":822},"30 pour cent","progress30",{"text":824,"value":825},"40 pour cent","progress40",{"text":827,"value":828},"50 pour cent","progress50",{"text":830,"value":831},"60 pourcent","progress60",{"text":833,"value":834},"70 pourcent","progress70",{"text":836,"value":837},"80 pourcent","progress80",{"text":839,"value":840},"90 pourcent","progress90",{"text":842,"value":843},"100 pourcent","progress100",[845,848,851,854],{"text":846,"value":847},"Blanc","progressbarOffsetWhite",{"text":849,"value":850},"Blanc transparent","progressbarOffsetTransparentWhite",{"text":852,"value":853},"Noir","progressbarOffsetBlack",{"text":855,"value":856},"Noir transparent","progressbarOffsetTransparentBlack",[858,861,864],{"text":859,"value":860},"Petit","progressbarSmall",{"text":862,"value":863},"Moyen","progressbarMedium",{"text":865,"value":866},"Large","progressbarLarge","gestiontb.ca","\u002Fgestiondimmeuble","m0Snx4RlXn1RRc16DtpA",[871,876,878,881,886,891,896,902,907,912,919,926,932,939,945,950,955,961,967,973],{"url":872,"value":873,"type":874,"sequence":105,"id":745,"name":875,"split":43},"\u002Fpage-dacceuil","9e868619-d834-4f38-b8f0-ea389ca59b09","optin_funnel_page","Page d'acceuil",{"url":877,"value":680,"type":874,"sequence":102,"id":422,"name":423},"\u002Flogements-a-louer",{"url":868,"value":879,"type":874,"sequence":649,"id":869,"name":880},"90d2f9c0-c86a-431b-aa74-71b3269adce3","Gestion d'immeublebre",{"url":882,"value":883,"type":874,"sequence":658,"id":884,"name":885},"\u002Fachat-dimmeuble","6b8e6702-78a2-48d8-a8f3-1b9ab59754c4","T4APV68L1dMVJDQ1K75I","Achat d'immeuble",{"url":887,"value":888,"type":874,"sequence":546,"id":889,"name":890},"\u002Fa-propos","e32e7f7e-9de5-4bea-af69-3221480baad9","SGfnXGUZcJDX2HU9HI1c","À propos",{"url":892,"value":893,"type":874,"sequence":631,"id":894,"name":895},"\u002Fnous-contacter","718cf4e1-3982-4b6c-98a6-98d876d71f80","JH6fP4jTQThmQzKZFRx6","Nous contacter",{"url":897,"value":898,"type":874,"sequence":899,"id":900,"name":901},"\u002Fformlocation","aaab1c6a-b6ab-4930-9c28-aa8b51d472d2",7,"a1vL7SvHZg4tP7m3NfUj","Formulaire de location",{"url":903,"value":904,"type":874,"sequence":555,"id":905,"name":906},"\u002Fpolitiqueconfidentialite","cc19806f-3485-4690-8a00-f70a5c22a21b","19pUO0ETZSrWhEsdpIh1","Politique de confidentialité",{"url":908,"value":909,"type":874,"sequence":635,"id":910,"name":911},"\u002Ftermeetcondition","9cbd9b88-1870-4184-ab92-35b118e08b3d","kzQIqRer7EUOklbuaYiN","Conditions d'utilisation",{"url":913,"value":914,"key":915,"type":916,"sequence":661,"id":917,"name":918},"\u002Fliste-de-produits","964cf1ec-1181-4a9a-8583-41a6f1ac09ff","store-product-list","store","UhaMdNXXfAnnL3mFGYbv","Liste de produits",{"url":920,"value":921,"key":922,"type":916,"sequence":923,"id":924,"name":925},"\u002Fdtails-du-produit","69f801b1-44f0-4a3f-9fc1-92e98cf74da5","store-product-detail",11,"QJTiA4nlMBIFyvCQr6Wd","Détails du produit",{"url":927,"value":928,"key":929,"type":916,"sequence":558,"id":930,"name":931},"\u002Fpanier","dd2f9245-0ccd-4c25-9b22-6db3ec1e21ce","store-cart","S9iHsQL3QlbrcDrO9t8L","Panier",{"url":933,"value":934,"key":935,"type":916,"sequence":936,"id":937,"name":938},"\u002Fsortie-de-caisse","21d32000-3332-40a6-a484-92fba0b74752","store-checkout",13,"MRPvseZQiTi1w1mTCwZj","Sortie de caisse",{"url":940,"value":941,"key":942,"type":916,"sequence":551,"id":943,"name":944},"\u002Fmerci-beaucoup","1f20c216-1867-43b9-a522-54a1cf313466","store-thank-you","gPnoRfjYPcUF3BWt7DC9","Merci beaucoup.",{"url":946,"value":947,"type":874,"sequence":556,"id":948,"name":949},"\u002Fformgestion-684629","98c0814c-1661-457e-8121-a6bb5bd8e180","dA1zkveHFH7ZgfUu3MZs","Formulaire de gestion",{"url":951,"value":952,"type":874,"sequence":650,"id":953,"name":954},"\u002Fformachat-234340","49afff8a-8e07-45b9-95f3-03ee7b1d9f83","ybV2nkGrLNSLp0yd71Bf","Formulaire d'achat",{"url":956,"value":957,"type":874,"sequence":958,"id":959,"name":960},"\u002Fmaintenance","19740a7a-627f-4cc2-9c6c-2bc4dc775310",17,"irwrznZ4XRkCvLIUTVkp","Maintenance",{"url":962,"value":963,"type":874,"sequence":964,"id":965,"name":966},"\u002Fformulaire-de-cession","bd9c9c47-fba8-491a-8b90-23304c60abdd",18,"gnzqY4rSJKzMFRgOTUYd","Cession de bail",{"url":968,"value":969,"type":874,"sequence":970,"id":971,"name":972},"\u002Fdons-commandites","1f5815f0-3d09-40f9-a9f8-c1af480d1a25",19,"CKKgMbQi0vtZkQDsHCQc","Don et Commandite",{"url":974,"value":975,"type":874,"sequence":976,"id":977,"name":978},"\u002F404","8cc1afc9-225e-4138-a33e-8a61909969b6",20,"frrtZTwbpniqytFtvZ0i","Page 404",[],"CAD",{"title":419,"description":415,"imageUrl":416},"website",[],[550,550],{},[],[],[],{},[709,714,719,724,729,733],["Date","2026-09-18T15:32:41.859Z"],{"formats":993},[],"invisible",{"invisibleSiteKey":996,"visibleSiteKey":997},"0x4AAAAAACCpVlau-4k7cJ33","0x4AAAAAACDfuwSBQ2sYO1VD",["Map"],{"pixelID":122,"disabled":43,"track":646,"version":1000,"isEnabled":35,"pixelLoaded":43,"manualMode":35,"userData":122,"eventsQueue":1001},"2.0",[],["Set"],["ShallowReactive",1004],{"pageData":-1}]</script></body></html>
\ No newline at end of file
modified tests/fixtures/gestion_tb/expected.json +168 −294
@@ -1,383 +1,257 @@
1 1 {
2 − "count": 27,
2 + "count": 18,
3 3 "listings": [
4 4 {
5 − "uid": "gestion_tb:-6VywJqT4n",
6 − "url": "https://appartementstb.ca/#col--6VywJqT4n",
7 − "title": "5 ½ rue St-Alphonse à 1 200$",
8 − "address": "",
9 − "sector": "St-Joseph",
5 + "uid": "gestion_tb:bd-st-joseph-1050-03",
6 + "url": "https://appartementstb.ca/#logement=bd-st-joseph-1050-03",
7 + "title": "4 ½ Bd St-Joseph à 1050$",
8 + "address": "Bd St-Joseph",
9 + "sector": "Centre-ville",
10 10 "city": "Drummondville",
11 − "unit_type": "5½",
12 − "price": null,
13 − "availability": "Disponible MAINTENANT !!",
11 + "unit_type": "4 ½",
12 + "price": 1050.0,
13 + "availability": "Disponible le 1er Septembre",
14 14 "area_sqft": null,
15 − "n_images": 7,
16 − "n_amenities": 0
15 + "n_images": 6,
16 + "n_amenities": 3
17 17 },
18 18 {
19 − "uid": "gestion_tb:0BdY2ssDlw",
20 − "url": "https://appartementstb.ca/#col-0BdY2ssDlw",
21 − "title": "4 ½ rue Toupin à 1 150$",
22 − "address": "",
23 − "sector": "St-Pierre",
19 + "uid": "gestion_tb:bd-st-joseph-1095-04",
20 + "url": "https://appartementstb.ca/#logement=bd-st-joseph-1095-04",
21 + "title": "4 ½ Bd St-Joseph à 1095$",
22 + "address": "Bd St-Joseph",
23 + "sector": "Centre-ville",
24 24 "city": "Drummondville",
25 − "unit_type": "4½",
26 − "price": null,
27 − "availability": "Disponible 1er Mars !!",
25 + "unit_type": "4 ½",
26 + "price": 1095.0,
27 + "availability": "Disponible maintenant",
28 28 "area_sqft": null,
29 29 "n_images": 5,
30 − "n_amenities": 0
30 + "n_amenities": 3
31 31 },
32 32 {
33 − "uid": "gestion_tb:4BWvVkisHn",
34 − "url": "https://appartementstb.ca/#col-4BWvVkisHn",
35 − "title": "4 ½ Boul. Foucault à 1 365$",
36 − "address": "",
37 − "sector": "St-Charles",
33 + "uid": "gestion_tb:bd-st-joseph-1095-05",
34 + "url": "https://appartementstb.ca/#logement=bd-st-joseph-1095-05",
35 + "title": "4 ½ Bd St-Joseph à 1095$",
36 + "address": "Bd St-Joseph",
37 + "sector": "Centre-ville",
38 38 "city": "Drummondville",
39 − "unit_type": "4½",
40 − "price": null,
41 − "availability": "Disponible IMMÉDIATEMENT",
39 + "unit_type": "4 ½",
40 + "price": 1095.0,
41 + "availability": "Disponible maintenant",
42 42 "area_sqft": null,
43 43 "n_images": 5,
44 − "n_amenities": 0
44 + "n_amenities": 3
45 45 },
46 46 {
47 − "uid": "gestion_tb:5BSbroV8HW",
48 − "url": "https://appartementstb.ca/#col-5BSbroV8HW",
49 − "title": "3 ½ Notre-dame à 1 130$",
50 − "address": "",
51 − "sector": "",
52 − "city": "Notre-Dame-du-Bon-Conseil",
53 − "unit_type": "3½",
54 − "price": null,
55 − "availability": "Disponible MAINTENANT !!",
47 + "uid": "gestion_tb:bd-st-joseph-1100-06",
48 + "url": "https://appartementstb.ca/#logement=bd-st-joseph-1100-06",
49 + "title": "4 ½ Bd St-Joseph à 1100$",
50 + "address": "Bd St-Joseph",
51 + "sector": "Centre-ville",
52 + "city": "Drummondville",
53 + "unit_type": "4 ½",
54 + "price": 1100.0,
55 + "availability": "Disponible maintenant",
56 56 "area_sqft": null,
57 − "n_images": 4,
58 − "n_amenities": 0
57 + "n_images": 6,
58 + "n_amenities": 3
59 59 },
60 60 {
61 − "uid": "gestion_tb:5sScusTRxm",
62 − "url": "https://appartementstb.ca/#col-5sScusTRxm",
63 − "title": "3 ½ rue Melançon à 1 130$",
64 − "address": "",
65 − "sector": "du cégep",
61 + "uid": "gestion_tb:bd-st-joseph-1150-07",
62 + "url": "https://appartementstb.ca/#logement=bd-st-joseph-1150-07",
63 + "title": "4 ½ Bd St-Joseph à 1150$",
64 + "address": "Bd St-Joseph",
65 + "sector": "Centre-ville",
66 66 "city": "Drummondville",
67 − "unit_type": "3½",
68 − "price": null,
69 − "availability": "Disponible Août !!",
67 + "unit_type": "4 ½",
68 + "price": 1150.0,
69 + "availability": "Disponible maintenant",
70 70 "area_sqft": null,
71 71 "n_images": 6,
72 − "n_amenities": 0
72 + "n_amenities": 3
73 73 },
74 74 {
75 − "uid": "gestion_tb:D7l9_3bXCN",
76 − "url": "https://appartementstb.ca/#col-D7l9_3bXCN",
77 − "title": "4 ½ rue Laurier à 995$",
78 − "address": "",
79 − "sector": "",
80 − "city": "Richmond",
81 − "unit_type": "4½",
82 − "price": null,
83 − "availability": "Disponible 1er Septembre !!",
75 + "uid": "gestion_tb:boul-foucault-1425-29",
76 + "url": "https://appartementstb.ca/#logement=boul-foucault-1425-29",
77 + "title": "5 ½ Boul Foucault à 1425$",
78 + "address": "Boul Foucault",
79 + "sector": "St-Charles",
80 + "city": "Drummondville",
81 + "unit_type": "5 ½",
82 + "price": 1425.0,
83 + "availability": "Disponible immédiatement",
84 84 "area_sqft": null,
85 − "n_images": 5,
86 − "n_amenities": 0
85 + "n_images": 8,
86 + "n_amenities": 2
87 87 },
88 88 {
89 − "uid": "gestion_tb:GydWbufL23",
90 − "url": "https://appartementstb.ca/#col-GydWbufL23",
91 − "title": "4 ½ Boul. Lemire à 1 325$",
92 − "address": "",
89 + "uid": "gestion_tb:boul-lemire-1405-19",
90 + "url": "https://appartementstb.ca/#logement=boul-lemire-1405-19",
91 + "title": "4 ½ Boul. Lemire à 1405$",
92 + "address": "Boul. Lemire",
93 93 "sector": "Boul. Lemire",
94 94 "city": "Drummondville",
95 − "unit_type": "4½",
96 − "price": null,
97 − "availability": "Disponible MAINTENANT !!",
95 + "unit_type": "4 ½",
96 + "price": 1405.0,
97 + "availability": "Disponible maintenant",
98 98 "area_sqft": null,
99 99 "n_images": 7,
100 − "n_amenities": 0
100 + "n_amenities": 4
101 101 },
102 102 {
103 − "uid": "gestion_tb:Hx1m6Q308r",
104 − "url": "https://appartementstb.ca/#col-Hx1m6Q308r",
105 − "title": "4 ½ Boul. St-Joseph à 1 495$",
106 − "address": "",
103 + "uid": "gestion_tb:boul-st-joseph-1095-14",
104 + "url": "https://appartementstb.ca/#logement=boul-st-joseph-1095-14",
105 + "title": "4 ½ Boul. St-Joseph à 1095$",
106 + "address": "Boul. St-Joseph",
107 107 "sector": "Boul. St-Joseph",
108 108 "city": "Drummondville",
109 − "unit_type": "4½",
110 − "price": null,
111 − "availability": "Disponible MAINTENANT !!",
109 + "unit_type": "4 ½",
110 + "price": 1095.0,
111 + "availability": "Disponible maintenant",
112 112 "area_sqft": null,
113 − "n_images": 5,
114 − "n_amenities": 0
113 + "n_images": 4,
114 + "n_amenities": 2
115 115 },
116 116 {
117 − "uid": "gestion_tb:IeMQJtd4Vs",
118 − "url": "https://appartementstb.ca/#col-IeMQJtd4Vs",
119 − "title": "4 ½ Boul. St-Joseph à 1 415$",
120 − "address": "",
117 + "uid": "gestion_tb:boul-st-joseph-1095-17",
118 + "url": "https://appartementstb.ca/#logement=boul-st-joseph-1095-17",
119 + "title": "4 ½ Boul. St-Joseph à 1095$",
120 + "address": "Boul. St-Joseph",
121 121 "sector": "Boul. St-Joseph",
122 122 "city": "Drummondville",
123 − "unit_type": "4½",
124 − "price": null,
125 − "availability": "Disponible MAINTENANT !!",
126 − "area_sqft": null,
127 − "n_images": 6,
128 − "n_amenities": 0
129 − },
130 − {
131 − "uid": "gestion_tb:L8zAeZtaIl",
132 − "url": "https://appartementstb.ca/#col-L8zAeZtaIl",
133 − "title": "4 ½ rue Toupin à 1 225$",
134 − "address": "",
135 − "sector": "St-Pierre",
136 − "city": "Drummondville",
137 − "unit_type": "4½",
138 − "price": null,
139 − "availability": "Disponible 1er Juillet !!",
123 + "unit_type": "4 ½",
124 + "price": 1095.0,
125 + "availability": "Disponible maintenant",
140 126 "area_sqft": null,
141 − "n_images": 2,
142 − "n_amenities": 0
127 + "n_images": 7,
128 + "n_amenities": 2
143 129 },
144 130 {
145 − "uid": "gestion_tb:M012EiU4jM",
146 − "url": "https://appartementstb.ca/#col-M012EiU4jM",
147 − "title": "4 ½ Boul. St-Joseph à 1 415$",
148 − "address": "",
131 + "uid": "gestion_tb:boul-st-joseph-1150-12",
132 + "url": "https://appartementstb.ca/#logement=boul-st-joseph-1150-12",
133 + "title": "4 ½ Boul. St-Joseph à 1150$",
134 + "address": "Boul. St-Joseph",
149 135 "sector": "Boul. St-Joseph",
150 136 "city": "Drummondville",
151 − "unit_type": "4½",
152 − "price": null,
153 − "availability": "1 Disponible IMMÉDIATEMENT !!",
154 − "area_sqft": null,
155 − "n_images": 6,
156 − "n_amenities": 0
157 − },
158 − {
159 − "uid": "gestion_tb:NsIdpn9Vp0",
160 − "url": "https://appartementstb.ca/#col-NsIdpn9Vp0",
161 − "title": "5 ½ Boul Mercure à 1 425$",
162 − "address": "",
163 − "sector": "Boul. Mercure",
164 − "city": "Drummondville",
165 − "unit_type": "5½",
166 − "price": null,
167 − "availability": "Disponible 1er mai !!",
168 − "area_sqft": null,
169 − "n_images": 2,
170 − "n_amenities": 0
171 − },
172 − {
173 − "uid": "gestion_tb:OHL99Fr2yl",
174 − "url": "https://appartementstb.ca/#col-OHL99Fr2yl",
175 − "title": "4 ½ rue Melançon à 1 295$",
176 − "address": "",
177 − "sector": "près du Centre-Ville",
178 − "city": "Drummondville",
179 − "unit_type": "4½",
180 − "price": null,
181 − "availability": "Disponible 1er Juillet !!",
182 − "area_sqft": null,
183 − "n_images": 6,
184 − "n_amenities": 0
185 − },
186 − {
187 − "uid": "gestion_tb:PDRiNvrIye",
188 − "url": "https://appartementstb.ca/#col-PDRiNvrIye",
189 − "title": "4 ½ rue Melançon à 1 295$",
190 − "address": "",
191 − "sector": "près du Centre-Ville",
192 − "city": "Drummondville",
193 − "unit_type": "4½",
194 − "price": null,
195 − "availability": "Disponible 1er Juillet !!",
137 + "unit_type": "4 ½",
138 + "price": 1150.0,
139 + "availability": "Disponible maintenant",
196 140 "area_sqft": null,
197 141 "n_images": 5,
198 − "n_amenities": 0
142 + "n_amenities": 3
199 143 },
200 144 {
201 − "uid": "gestion_tb:Q4wU3xhreo",
202 − "url": "https://appartementstb.ca/#col-Q4wU3xhreo",
203 − "title": "4 ½ Boul. St-Joseph à 1 195$",
204 − "address": "",
145 + "uid": "gestion_tb:boul-st-joseph-1350-22",
146 + "url": "https://appartementstb.ca/#logement=boul-st-joseph-1350-22",
147 + "title": "4 ½ Boul. St-Joseph à 1350$",
148 + "address": "Boul. St-Joseph",
205 149 "sector": "Boul. St-Joseph",
206 150 "city": "Drummondville",
207 − "unit_type": "4½",
208 − "price": null,
209 − "availability": "Disponible MAINTENANT !!",
210 − "area_sqft": null,
211 − "n_images": 4,
212 − "n_amenities": 0
213 − },
214 − {
215 − "uid": "gestion_tb:Rg3Gr4MzBf",
216 − "url": "https://appartementstb.ca/#col-Rg3Gr4MzBf",
217 − "title": "3 ½ rue Alexandre à 900$",
218 − "address": "",
219 − "sector": "St-Pierre",
220 − "city": "Drummondville",
221 − "unit_type": "3½",
222 − "price": null,
223 − "availability": "Disponible MAINTENANT !!",
224 − "area_sqft": null,
225 − "n_images": 4,
226 − "n_amenities": 0
227 − },
228 − {
229 − "uid": "gestion_tb:Vo1fx4hJqF",
230 − "url": "https://appartementstb.ca/#col-Vo1fx4hJqF",
231 − "title": "5 ½ rue Lindsay à 1 095$",
232 − "address": "",
233 − "sector": "Centre ville",
234 − "city": "Drummondville",
235 − "unit_type": "5½",
236 − "price": null,
237 − "availability": "Disponible 1er Août !!",
238 − "area_sqft": null,
239 − "n_images": 7,
240 − "n_amenities": 0
241 − },
242 − {
243 − "uid": "gestion_tb:W39DtM6M4H",
244 − "url": "https://appartementstb.ca/#col-W39DtM6M4H",
245 − "title": "4 ½ rue Des Écoles à 1 155$",
246 − "address": "",
247 − "sector": "Centre-Ville",
248 − "city": "Drummondville",
249 − "unit_type": "4½",
250 − "price": null,
251 − "availability": "Disponible MAINTENANT !!",
151 + "unit_type": "4 ½",
152 + "price": 1350.0,
153 + "availability": "1 logement disponible immédiatement",
252 154 "area_sqft": null,
253 155 "n_images": 6,
254 − "n_amenities": 0
156 + "n_amenities": 5
255 157 },
256 158 {
257 − "uid": "gestion_tb:eZcUywOtoD",
258 − "url": "https://appartementstb.ca/#col-eZcUywOtoD",
259 − "title": "4 ½ rue Des Écoles à 1 155$",
260 − "address": "",
261 − "sector": "Centre-Ville",
159 + "uid": "gestion_tb:rue-de-l-exposition-1395-28",
160 + "url": "https://appartementstb.ca/#logement=rue-de-l-exposition-1395-28",
161 + "title": "5 ½ Rue de l'Exposition à 1395$",
162 + "address": "Rue de l'Exposition",
163 + "sector": "St-Léonard d'Aston",
262 164 "city": "Drummondville",
263 − "unit_type": "4½",
264 − "price": null,
265 − "availability": "Disponible 1er Juillet !!",
165 + "unit_type": "5 ½",
166 + "price": 1395.0,
167 + "availability": "Disponible immédiatement",
266 168 "area_sqft": null,
267 169 "n_images": 7,
268 − "n_amenities": 0
269 − },
270 − {
271 − "uid": "gestion_tb:gXGaYC3mUA",
272 − "url": "https://appartementstb.ca/#col-gXGaYC3mUA",
273 − "title": "4 ½ Bd St-Joseph à 1 050$",
274 − "address": "",
275 − "sector": "Centre-Ville",
276 − "city": "Drummondville",
277 − "unit_type": "4½",
278 − "price": null,
279 − "availability": "Disponible 1er Septembre !!",
280 − "area_sqft": null,
281 − "n_images": 6,
282 − "n_amenities": 0
170 + "n_amenities": 3
283 171 },
284 172 {
285 − "uid": "gestion_tb:jGkxQisDii",
286 − "url": "https://appartementstb.ca/#col-jGkxQisDii",
287 − "title": "6 ½ Rue de l'Exposition à 1 550$",
288 − "address": "",
289 − "sector": "St-Leonard d'Aston",
173 + "uid": "gestion_tb:rue-de-l-exposition-1550-32",
174 + "url": "https://appartementstb.ca/#logement=rue-de-l-exposition-1550-32",
175 + "title": "6 ½ Rue de l'Exposition à 1550$",
176 + "address": "Rue de l'Exposition",
177 + "sector": "",
290 178 "city": "Saint-Léonard-d'Aston",
291 − "unit_type": "6½",
292 − "price": null,
293 − "availability": "Disponible MAINTENANT !!",
179 + "unit_type": "6 ½",
180 + "price": 1550.0,
181 + "availability": "Disponible maintenant",
294 182 "area_sqft": null,
295 183 "n_images": 6,
296 − "n_amenities": 0
184 + "n_amenities": 3
297 185 },
298 186 {
299 − "uid": "gestion_tb:maREh0vwPA",
300 − "url": "https://appartementstb.ca/#col-maREh0vwPA",
301 − "title": "4 ½ Bd St-Joseph à 1 100$",
302 − "address": "",
303 − "sector": "Centre-Ville",
187 + "uid": "gestion_tb:rue-des-ecoles-1155-13",
188 + "url": "https://appartementstb.ca/#logement=rue-des-ecoles-1155-13",
189 + "title": "4 ½ Rue Des Écoles à 1155$",
190 + "address": "Rue Des Écoles",
191 + "sector": "Centre-ville",
304 192 "city": "Drummondville",
305 − "unit_type": "4½",
306 − "price": null,
307 − "availability": "Disponible MAINTENANT !!",
193 + "unit_type": "4 ½",
194 + "price": 1155.0,
195 + "availability": "Disponible maintenant",
308 196 "area_sqft": null,
309 197 "n_images": 6,
310 − "n_amenities": 0
198 + "n_amenities": 3
311 199 },
312 200 {
313 − "uid": "gestion_tb:ogCVk9UCXh",
314 − "url": "https://appartementstb.ca/#col-ogCVk9UCXh",
315 − "title": "5 ½ rue St-Henri à 1 295$",
316 − "address": "",
317 − "sector": "St-Pierre",
201 + "uid": "gestion_tb:rue-lindsay-850-01",
202 + "url": "https://appartementstb.ca/#logement=rue-lindsay-850-01",
203 + "title": "2 ½ Rue Lindsay à 850$",
204 + "address": "Rue Lindsay",
205 + "sector": "Centre-ville",
318 206 "city": "Drummondville",
319 − "unit_type": "5½",
320 − "price": null,
321 − "availability": "Disponible IMMÉDIATEMENT !!",
322 − "area_sqft": null,
323 − "n_images": 6,
324 − "n_amenities": 0
325 − },
326 − {
327 − "uid": "gestion_tb:sP29GM9ciq",
328 − "url": "https://appartementstb.ca/#col-sP29GM9ciq",
329 − "title": "4 ½ Rue Melançon à 1 295$",
330 − "address": "",
331 − "sector": "du Cegep",
332 − "city": "Drummondville",
333 − "unit_type": "4½",
334 − "price": null,
335 − "availability": "Disponible IMMÉDIATEMENT",
207 + "unit_type": "2 ½",
208 + "price": 850.0,
209 + "availability": "Disponible maintenant",
336 210 "area_sqft": null,
337 211 "n_images": 5,
338 − "n_amenities": 0
212 + "n_amenities": 2
339 213 },
340 214 {
341 − "uid": "gestion_tb:tN2w8jSThI",
342 − "url": "https://appartementstb.ca/#col-tN2w8jSThI",
343 − "title": "4 ½ Boul. St-Joseph à 1 395$",
344 − "address": "",
345 − "sector": "Boul. St-Joseph",
215 + "uid": "gestion_tb:rue-melancon-1335-20",
216 + "url": "https://appartementstb.ca/#logement=rue-melancon-1335-20",
217 + "title": "4 ½ Rue Melançon à 1335$",
218 + "address": "Rue Melançon",
219 + "sector": "Centre-ville",
346 220 "city": "Drummondville",
347 − "unit_type": "4½",
348 − "price": null,
349 − "availability": "Disponible MAINTENANT !!",
221 + "unit_type": "4 ½",
222 + "price": 1335.0,
223 + "availability": "Disponible le 1er Décembre",
350 224 "area_sqft": null,
351 − "n_images": 5,
352 − "n_amenities": 0
225 + "n_images": 6,
226 + "n_amenities": 4
353 227 },
354 228 {
355 − "uid": "gestion_tb:yhvBaHjiB6",
356 − "url": "https://appartementstb.ca/#col-yhvBaHjiB6",
357 − "title": "5 ½ rue de l'Exposition à 1 395$",
358 − "address": "",
359 − "sector": "St-Léonard d'Aston",
360 − "city": "Drummondville",
361 − "unit_type": "5½",
362 − "price": null,
363 − "availability": "Disponible IMMÉDIATEMENT !!",
229 + "uid": "gestion_tb:rue-principale-945-24",
230 + "url": "https://appartementstb.ca/#logement=rue-principale-945-24",
231 + "title": "5 ½ Rue Principale à 945$",
232 + "address": "Rue Principale",
233 + "sector": "",
234 + "city": "Saint-Léonard-d'Aston",
235 + "unit_type": "5 ½",
236 + "price": 945.0,
237 + "availability": "Disponible maintenant",
364 238 "area_sqft": null,
365 − "n_images": 7,
366 − "n_amenities": 0
239 + "n_images": 5,
240 + "n_amenities": 3
367 241 },
368 242 {
369 − "uid": "gestion_tb:zQ1-bO4G0X",
370 − "url": "https://appartementstb.ca/#col-zQ1-bO4G0X",
371 − "title": "Boul. St-Joseph à partir de 1 125$",
372 − "address": "",
373 − "sector": "",
243 + "uid": "gestion_tb:rue-st-henri-1295-27",
244 + "url": "https://appartementstb.ca/#logement=rue-st-henri-1295-27",
245 + "title": "5 ½ Rue St-Henri à 1295$",
246 + "address": "Rue St-Henri",
247 + "sector": "St-Pierre",
374 248 "city": "Drummondville",
375 − "unit_type": "3½",
376 − "price": null,
377 − "availability": "Disponible MAINTENANT !!",
249 + "unit_type": "5 ½",
250 + "price": 1295.0,
251 + "availability": "Disponible immédiatement",
378 252 "area_sqft": null,
379 253 "n_images": 6,
380 − "n_amenities": 0
254 + "n_amenities": 3
381 255 }
382 256 ]
383 257 }
\ No newline at end of file
384 258