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 sotramont: erreur franche + retry sur le GET du portfolio — fini le « 0 trouvé ok » silencieux sur hoquet réseau. Les syncs du 2026-09-21 11:42 et 19:07 rapportaient found=0 ok (médiane 8, dérive déclenchée, retraits suspendus → stale) alors que le site est parfaitement sain : les seuls autres zéros de l'historique (2×09-10, 1×09-18, seconds: 0.0) tombent PILE dans les vagues DNS systémiques du nœud — le `except Exception: return listings` de fetch() avalait l'échec transitoire du GET de liste et le transformait en zéro silencieux. Vérifié live : curl 3/3 → 200, 130 Ko ; requests venv 8/8 → 200, 76 cartes ; Apache/Ubuntu direct sur DigitalOcean, aucun WAF ; aucun autre connecteur en échec dans les fenêtres des zéros du 09-21 (pas systémique app). Fix minimal, pattern devimco (edd968e) : le GET du portfolio tente 3 fois (backoff 3/6 s) puis lève une erreur FRANCHE au lieu de retourner [] ; erreur franche aussi si la soupe ne contient AUCUNE carte article.c--article-project (gabarit remanié ≠ vrai zéro — le vrai zéro reste possible : cartes présentes mais toutes « Vendu »/« En construction »). Fixture enregistrée pour la première fois (run.py record sotramont, 8 requêtes). Testé : fetch() venv → 8 annonces (Liveo Pointe-Claire 3 1 620 $, Curtiss Charlie Saint-Laurent 1 460 $, 8-10 photos — médiane 6.0 couverte), pytest sotramont 2 passed, run.py sync sotramont → found=8 ok (8,3 s), pm2 restart lou-ka-sync, site :8095 → 200.

Simon-Pierre Boucher committed 3 days ago (Sep 22, 2026) parent 08906e2

11 changed files +6,931 −5

modified louka/connectors/sotramont.py +27 −5
@@ -17,6 +17,7 @@ from __future__ import annotations
17 17
18 18 import hashlib
19 19 import re
20 +import time
20 21
21 22 from bs4 import BeautifulSoup
22 23
@@ -51,14 +52,35 @@ class SotramontConnector(BaseConnector):
51 52
52 53 def fetch(self) -> list[Listing]:
53 54 listings: list[Listing] = []
54 − try:
55 − html = self.get(LIST_URL).text
56 − except Exception:
57 − return listings
55 + # Hoquets réseau transitoires (vagues DNS du nœud 09-10/09-18, resets
56 + # du VPS) : retry court, puis échec FRANC — un `return []` silencieux
57 + # devenait « 0 trouvé ok » et déclenchait la dérive/stale à tort.
58 + html = ""
59 + last_err: Exception | None = None
60 + for attempt in range(3):
61 + try:
62 + html = self.get(LIST_URL).text
63 + break
64 + except Exception as e: # noqa: BLE001 — retry puis erreur franche
65 + last_err = e
66 + if attempt < 2:
67 + time.sleep(3 * (attempt + 1))
68 + else:
69 + raise RuntimeError(
70 + f"sotramont : portfolio inaccessible après 3 tentatives "
71 + f"({last_err!r}) — {LIST_URL}")
58 72 soup = BeautifulSoup(html, "html.parser")
59 73
74 + arts = soup.select("article.c--article-project")
75 + if not arts:
76 + # Vrai zéro = cartes présentes mais aucune locative active ;
77 + # AUCUNE carte = gabarit remanié ou page vide → erreur franche.
78 + raise RuntimeError(
79 + "sotramont : aucune carte projet dans le portfolio — "
80 + f"site remanié ? — {LIST_URL}")
81 +
60 82 seen: set[str] = set()
61 − for art in soup.select("article.c--article-project"):
83 + for art in arts:
62 84 try:
63 85 if "project-category-locatifs" not in (art.get("class") or []):
64 86 continue
added tests/fixtures/sotramont/08ff8b1a73c0fd3c6e48.html +1114 −0
@@ -0,0 +1,1114 @@
1 +
2 +
3 +
4 +
5 +
6 +
7 +
8 +
9 +
10 +
11 +
12 +
13 +
14 +
15 +
16 +
17 +
18 +
19 +
20 +
21 +
22 +
23 +
24 +
25 +
26 +
27 +
28 +
29 +
30 +
31 +
32 +
33 +
34 +
35 +
36 +
37 +
38 +
39 +
40 +
41 +
42 +
43 +
44 +
45 +
46 +
47 +
48 +
49 +
50 +<!doctype html>
51 +<html lang="fr-FR">
52 +<head>
53 + <meta charset="UTF-8">
54 + <meta name="viewport" content="width=device-width, initial-scale=1">
55 +
56 +
57 + <!-- Global site tag (gtag.js) - Google Analytics -->
58 + <script async src="https://www.googletagmanager.com/gtag/js?id=UA-35177730-1"></script>
59 + <script>
60 + window.dataLayer = window.dataLayer || [];
61 + function gtag(){dataLayer.push(arguments);}
62 + gtag('js', new Date());
63 + gtag('config', 'UA-35177730-1');
64 + </script>
65 + <!-- END Global site tag -->
66 +
67 + <!-- Google Tag Manager -->
68 + <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
69 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
70 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
71 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
72 + })(window,document,'script','dataLayer','GTM-KQGBN56');</script>
73 + <!-- End Google Tag Manager —>
74 +
75 + <!-- ScrollMagic -->
76 + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js" integrity="sha256-2p2tRZlPowp3P/04Pw2rqVCSbhyV/IB7ZEVUglrDS/c=" crossorigin="anonymous"></script>
77 + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/plugins/animation.gsap.min.js" integrity="sha256-+9YNuItWuR4sbqeaNiJOxG0BvptYz4fbUXbIZoH5Jwo=" crossorigin="anonymous"></script>
78 + <!-- END ScrollMagic -->
79 +
80 + <style type="text/css">
81 + .heateor_sss_button_instagram span.heateor_sss_svg,a.heateor_sss_instagram span.heateor_sss_svg{background:radial-gradient(circle at 30% 107%,#fdf497 0,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%)}
82 + .heateor_sss_horizontal_sharing .heateor_sss_svg,.heateor_sss_standard_follow_icons_container .heateor_sss_svg{
83 + color: #fff;
84 + border-width: 0px;
85 + border-style: solid;
86 + border-color: transparent;
87 + }
88 + .heateor_sss_horizontal_sharing .heateorSssTCBackground{
89 + color:#666;
90 + }
91 + .heateor_sss_horizontal_sharing span.heateor_sss_svg:hover,.heateor_sss_standard_follow_icons_container span.heateor_sss_svg:hover{
92 + border-color: transparent;
93 + }
94 + .heateor_sss_vertical_sharing span.heateor_sss_svg,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg{
95 + color: #fff;
96 + border-width: 0px;
97 + border-style: solid;
98 + border-color: transparent;
99 + }
100 + .heateor_sss_vertical_sharing .heateorSssTCBackground{
101 + color:#666;
102 + }
103 + .heateor_sss_vertical_sharing span.heateor_sss_svg:hover,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg:hover{
104 + border-color: transparent;
105 + }
106 + @media screen and (max-width:783px) {.heateor_sss_vertical_sharing{display:none!important}} </style>
107 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
108 +<link rel="alternate" hreflang="en" href="https://sotramont.com/en/curtiss-charlie-condos-for-sale-saint-laurent/" />
109 +<link rel="alternate" hreflang="fr" href="https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/" />
110 +<link rel="alternate" hreflang="x-default" href="https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/" />
111 +
112 + <!-- This site is optimized with the Yoast SEO plugin v20.11 - https://yoast.com/wordpress/plugins/seo/ -->
113 + <title>Condos à vendre | Saint-Laurent | Curtiss Charlie | Sotramont</title>
114 + <meta name="description" content="Découvrez nos condos à vendre à Saint-Laurent. Le projet Curtiss Charlie est réalisé par le promoteur et constructeur immobilier Sotramont." />
115 + <link rel="canonical" href="https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/" />
116 + <meta property="og:locale" content="fr_FR" />
117 + <meta property="og:type" content="article" />
118 + <meta property="og:title" content="Condos à vendre | Saint-Laurent | Curtiss Charlie | Sotramont" />
119 + <meta property="og:description" content="Découvrez nos condos à vendre à Saint-Laurent. Le projet Curtiss Charlie est réalisé par le promoteur et constructeur immobilier Sotramont." />
120 + <meta property="og:url" content="https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/" />
121 + <meta property="og:site_name" content="Sotramont" />
122 + <meta property="article:modified_time" content="2023-05-06T05:39:31+00:00" />
123 + <meta property="og:image" content="https://sotramont.com/wp-content/uploads/2021/11/CURT-C-perspective-scaled.jpg" />
124 + <meta property="og:image:width" content="2560" />
125 + <meta property="og:image:height" content="1706" />
126 + <meta property="og:image:type" content="image/jpeg" />
127 + <meta name="twitter:card" content="summary_large_image" />
128 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/","url":"https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/","name":"Condos à vendre | Saint-Laurent | Curtiss Charlie | Sotramont","isPartOf":{"@id":"https://sotramont.com/?lang=en/#website"},"primaryImageOfPage":{"@id":"https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/#primaryimage"},"image":{"@id":"https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/#primaryimage"},"thumbnailUrl":"https://sotramont.com/wp-content/uploads/2021/11/CURT-C-perspective-scaled.jpg","datePublished":"2021-12-06T20:27:59+00:00","dateModified":"2023-05-06T05:39:31+00:00","description":"Découvrez nos condos à vendre à Saint-Laurent. Le projet Curtiss Charlie est réalisé par le promoteur et constructeur immobilier Sotramont.","breadcrumb":{"@id":"https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/#primaryimage","url":"https://sotramont.com/wp-content/uploads/2021/11/CURT-C-perspective-scaled.jpg","contentUrl":"https://sotramont.com/wp-content/uploads/2021/11/CURT-C-perspective-scaled.jpg","width":2560,"height":1706},{"@type":"BreadcrumbList","@id":"https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://sotramont.com/"},{"@type":"ListItem","position":2,"name":"Curtiss Charlie"}]},{"@type":"WebSite","@id":"https://sotramont.com/?lang=en/#website","url":"https://sotramont.com/?lang=en/","name":"Sotramont","description":"Montreal real-estate developer, builder and promoter.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://sotramont.com/?lang=en/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"}]}</script>
129 + <!-- / Yoast SEO plugin. -->
130 +
131 +
132 +<link rel="alternate" type="application/rss+xml" title="Sotramont &raquo; Feed" href="https://sotramont.com/feed/" />
133 +<link rel="alternate" type="application/rss+xml" title="Sotramont &raquo; Comments Feed" href="https://sotramont.com/comments/feed/" />
134 +<script type="text/javascript">
135 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/sotramont.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.2.2"}};
136 +/*! This file is auto-generated */
137 +!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){p.clearRect(0,0,i.width,i.height),p.fillText(e,0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(t,0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s("\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!s("\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!s("\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!s("\ud83e\udef1\ud83c\udffb\u200d\ud83e\udef2\ud83c\udfff","\ud83e\udef1\ud83c\udffb\u200b\ud83e\udef2\ud83c\udfff")}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
138 +</script>
139 +<style type="text/css">
140 +img.wp-smiley,
141 +img.emoji {
142 + display: inline !important;
143 + border: none !important;
144 + box-shadow: none !important;
145 + height: 1em !important;
146 + width: 1em !important;
147 + margin: 0 0.07em !important;
148 + vertical-align: -0.1em !important;
149 + background: none !important;
150 + padding: 0 !important;
151 +}
152 +</style>
153 + <link rel='stylesheet' id='wp-block-library-css' href='https://sotramont.com/wp-includes/css/dist/block-library/style.min.css?ver=6.2.2' type='text/css' media='all' />
154 +<style id='safe-svg-svg-icon-style-inline-css' type='text/css'>
155 +.safe-svg-cover .safe-svg-inside{display:inline-block;max-width:100%}.safe-svg-cover svg{height:100%;max-height:100%;max-width:100%;width:100%}
156 +
157 +</style>
158 +<link rel='stylesheet' id='classic-theme-styles-css' href='https://sotramont.com/wp-includes/css/classic-themes.min.css?ver=6.2.2' type='text/css' media='all' />
159 +<style id='global-styles-inline-css' type='text/css'>
160 +body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
161 +.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
162 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}
163 +.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
164 +</style>
165 +<link rel='stylesheet' id='wpml-blocks-css' href='https://sotramont.com/wp-content/plugins/sitepress-multilingual-cms/dist/css/blocks/styles.css?ver=4.6.4' type='text/css' media='all' />
166 +<link rel='stylesheet' id='contact-form-7-css' href='https://sotramont.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.7.7' type='text/css' media='all' />
167 +<link rel='stylesheet' id='mainStylesheet-css' href='https://sotramont.com/wp-content/themes/custom/dist/css/main.css?v=6.8&#038;ver=6.2.2' type='text/css' media='all' />
168 +<link rel='stylesheet' id='heateor_sss_frontend_css-css' href='https://sotramont.com/wp-content/plugins/sassy-social-share/public/css/sassy-social-share-public.css?ver=3.3.52' type='text/css' media='all' />
169 +<script type='text/javascript' src='https://sotramont.com/wp-includes/js/jquery/jquery.min.js?ver=3.6.4' id='jquery-core-js'></script>
170 +<script type='text/javascript' src='https://sotramont.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.0' id='jquery-migrate-js'></script>
171 +<script type='text/javascript' id='wpml-cookie-js-extra'>
172 +/* <![CDATA[ */
173 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"\/"}};
174 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"\/"}};
175 +/* ]]> */
176 +</script>
177 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/sitepress-multilingual-cms/res/js/cookies/language-cookie.js?ver=4.6.4' id='wpml-cookie-js'></script>
178 +<script type='text/javascript' src='https://sotramont.com/wp-content/themes/custom/dist/js/main.js?v=1.6&#038;ver=6.2.2' id='custom-js-js'></script>
179 +<script type='text/javascript' id='awhitepixel-ajaxscript-js-extra'>
180 +/* <![CDATA[ */
181 +var Theme_Variables = {"ajax_url":"https:\/\/sotramont.com\/wp-admin\/admin-ajax.php"};
182 +/* ]]> */
183 +</script>
184 +<script type='text/javascript' src='https://sotramont.com/wp-content/themes/custom/ajax/ajax-project-filter.js?ver=6.2.2' id='awhitepixel-ajaxscript-js'></script>
185 +<link rel="https://api.w.org/" href="https://sotramont.com/wp-json/" /><link rel="alternate" type="application/json" href="https://sotramont.com/wp-json/wp/v2/pages/9432" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://sotramont.com/xmlrpc.php?rsd" />
186 +<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://sotramont.com/wp-includes/wlwmanifest.xml" />
187 +<meta name="generator" content="WordPress 6.2.2" />
188 +<link rel='shortlink' href='https://sotramont.com/?p=9432' />
189 +<link rel="alternate" type="application/json+oembed" href="https://sotramont.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsotramont.com%2Fcurtiss-charlie-condos-vendre-saint-laurent%2F" />
190 +<link rel="alternate" type="text/xml+oembed" href="https://sotramont.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsotramont.com%2Fcurtiss-charlie-condos-vendre-saint-laurent%2F&#038;format=xml" />
191 +<meta name="generator" content="WPML ver:4.6.4 stt:1,4;" />
192 +<link rel="icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-32x32.png" sizes="32x32" />
193 +<link rel="icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-192x192.png" sizes="192x192" />
194 +<link rel="apple-touch-icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-180x180.png" />
195 +<meta name="msapplication-TileImage" content="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-270x270.png" />
196 + <script>
197 + function resizeIframe(obj) {
198 + obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
199 + }
200 + </script>
201 +</head>
202 +
203 +<body class="page-template-default page page-id-9432 page-parent">
204 +
205 +<!-- Google Tag Manager (noscript) -->
206 +<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KQGBN56"
207 +height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
208 +<!-- End Google Tag Manager (noscript) -->
209 +
210 +
211 +<header class="block--header sm--pin-top" data-sm-duration-dependancy=".block--project-submenu">
212 + <div class="row content-inner-header">
213 + <div class="col col-logo col-xl-4 col-lg-6 col-md-7 col-sm-8 col-12 offset-1">
214 + <a href="https://sotramont.com"><img class="global-logo" src="https://sotramont.com/wp-content/uploads/2020/08/logo-sotramont.png"></a>
215 + </div>
216 + <div class="col col-menu col-xl-18 col-lg-16 col-md-14 col-24">
217 + <nav class="sub-navigation">
218 + <ul id="sub-menu" class="menu"><li id="menu-item-3940" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3940"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
219 +<li id="menu-item-3941" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3941"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
220 +<li id="menu-item-3942" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3942"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
221 +</ul> <div class='c--language-switcher'><a href="https://sotramont.com/en/curtiss-charlie-condos-for-sale-saint-laurent/">en</a></div> </nav>
222 + <div class="content-main-nav">
223 + <nav class="main-navigation">
224 + <div class="menu-menu-header-fr-container"><ul id="primary-menu" class="menu"><li id="menu-item-3938" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3938"><a href="https://sotramont.com/la-difference-sotramont-a-propos/">La différence Sotramont</a></li>
225 +<li id="menu-item-3939" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3939"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
226 +<li id="menu-item-809" class="js--submenu-condos menu-item menu-item-type-custom menu-item-object-custom menu-item-809"><a title="js&#8211;submenu-condo">Curtiss Locatifs</a></li>
227 +<li id="menu-item-810" class="js--submenu-locatifs menu-item menu-item-type-custom menu-item-object-custom menu-item-810"><a title="js&#8211;submenu-rental">Liveo Locatifs</a></li>
228 +</ul></div> </nav>
229 + <div class="content-btn">
230 +
231 + <a href="https://sotramont.com/condo-maison-ville-vendre-louer/" class="btn btn--icon btn--icon__left">
232 + Recherche de propriétés
233 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.3 31.8"><path d="M17.4 0l-6.8 5.7V2.5H4.2V11L0 14.6l1.3 1.5 5-4.1V4.5h2.3V10l8.8-7.4L34 16.1l1.3-1.6z"/><path d="M27.8 19.8c0-4.3-3.5-7.7-7.7-7.7-4.3 0-7.7 3.5-7.7 7.7s3.5 7.7 7.7 7.7c1.8 0 3.6-.6 4.9-1.8l6.1 6.1 1.3-1.3-6.1-6.1c1-1.3 1.5-2.9 1.5-4.6zm-1.8 0c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6 6 2.7 6 6zM6.3 16.7H4.2v14.9h11.2v-2H6.3z"/></svg>
234 + </a>
235 + </div>
236 + </div>
237 + </div>
238 + </div>
239 +
240 + <div class="show-menu-open">
241 + <div class='c--language-switcher'><a href="https://sotramont.com/en/curtiss-charlie-condos-for-sale-saint-laurent/">en</a></div> </div>
242 +
243 + <div class="c--hamburger-menu">
244 + <div class="content-border content-open">
245 + <div class="border border-1"></div>
246 + <div class="border border-2"></div>
247 + <div class="border border-3"></div>
248 + </div>
249 + <div class="content-border content-close">
250 + <div class="border border-1"></div>
251 + <div class="border border-2"></div>
252 + </div>
253 + </div>
254 +
255 +
256 + <!-- SUBMENU -->
257 + <section class="block block--header-submenu js--submenu js--submenu-maisons">
258 + <div class="row big-row">
259 + <div class="col col-22">
260 + <div class="content-inner">
261 +
262 + <div class="content-title">
263 + <h3 class="text-lg">Notre Complémentaire </h3>
264 + </div>
265 + <div class="row">
266 + <div class="col col-10 col-typo">
267 + <p></p>
268 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons">
269 + Voir tout Complémentaire dans notre portfolio
270 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
271 + </a>
272 + </div>
273 +
274 + </div>
275 + </div>
276 + </div>
277 + </div>
278 + </section>
279 +
280 + <section class="block block--header-submenu js--submenu js--submenu-condos">
281 + <div class="row big-row">
282 + <div class="col col-22">
283 + <div class="content-inner">
284 +
285 + <div class="content-title">
286 + <h3 class="text-lg">Notre Condos </h3>
287 + </div>
288 + <div class="row">
289 + <div class="col col-6 col-list">
290 + <a href="https://sotramont.com/curtiss-condos/" target="">
291 + <figure>
292 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Curtiss-1920x904.png'>
293 + </figure>
294 + <!--<h4 class="text-md">Curtiss Condos</h4>-->
295 + <h5 class="text-sm">Saint-Laurent</h5>
296 + </a>
297 + </div>
298 +
299 + <div class="col col-10 col-typo">
300 + <p>Les condos Sotramont sont toujours dans des emplacements de premier choix et s'intègrent harmonieusement à leur environnement. Ces condos très appréciés attirent un équilibre sain entre les résidents et les investisseurs.</p>
301 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=condos">
302 + Voir tout Condos dans notre portfolio
303 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
304 + </a>
305 + </div>
306 +
307 + </div>
308 + </div>
309 + </div>
310 + </div>
311 + </section>
312 +
313 + <section class="block block--header-submenu js--submenu js--submenu-locatifs">
314 + <div class="row big-row">
315 + <div class="col col-22">
316 + <div class="content-inner">
317 +
318 + <div class="content-title">
319 + <h3 class="text-lg">Notre Locatifs </h3>
320 + </div>
321 + <div class="row">
322 + <div class="col col-6 col-list">
323 + <figure>
324 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Liveo-1920x904.png'>
325 + </figure>
326 + </div>
327 +
328 + <div class="col col-6 col-locations">
329 + <div>
330 + <span><a href="https://sotramont.com/liveo-bois-franc/" target=""><h5 class="text-sm">Saint-Laurent</h5></a></span><span><a href="https://sotramont.com/liveo-mascouche/" target=""><h5 class="text-sm">Mascouche</h5></a></span><span><a href="https://sotramont.com/liveo-pointe-claire/" target=""><h5 class="text-sm">Pointe-Claire</h5></a></span><span><a href="https://sotramont.com/liveo-repentigny/" target=""><h5 class="text-sm">Repentigny</h5></a></span>
331 + </div>
332 + </div>
333 +
334 + <div class="col col-10 col-typo">
335 + <p>Les condos locatifs Sotramont sont soigneusement conçus pour offrir aux résidents un niveau de vie élevé, quel que soit le budget.</p>
336 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=locatifs">
337 + Voir tout Locatifs dans notre portfolio
338 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
339 + </a>
340 + </div>
341 +
342 + </div>
343 + </div>
344 + </div>
345 + </div>
346 + </section>
347 +
348 + <section class="block block--header-submenu js--submenu js--submenu-maisons-de-ville">
349 + <div class="row big-row">
350 + <div class="col col-22">
351 + <div class="content-inner">
352 +
353 + <div class="content-title">
354 + <h3 class="text-lg">Notre Maisons de ville </h3>
355 + </div>
356 + <div class="row">
357 + <div class="col col-10 col-typo">
358 + <p>Les maisons de ville de Sotramont sont toujours situées dans des endroits recherchés et construites dans un souci de longévité. Ces maisons de ville fiables attirent un équilibre sain entre plusieurs générations.</p>
359 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons-de-ville">
360 + Voir tout Maisons de ville dans notre portfolio
361 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
362 + </a>
363 + </div>
364 +
365 + </div>
366 + </div>
367 + </div>
368 + </div>
369 + </section>
370 +
371 +
372 +</header>
373 +
374 +
375 +<div class="c--toggle-hamburger-menu">
376 + <div class="big-row row">
377 + <div class="col-md-18 col-sm-20 col-22">
378 + <nav id="site-navigation" class="main-navigation">
379 + <div class="content-btn">
380 +
381 + <a href="https://sotramont.com/condo-maison-ville-vendre-louer/" class="btn btn--icon btn--icon__left">
382 + Recherche de propriétés
383 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.3 31.8"><path d="M17.4 0l-6.8 5.7V2.5H4.2V11L0 14.6l1.3 1.5 5-4.1V4.5h2.3V10l8.8-7.4L34 16.1l1.3-1.6z"/><path d="M27.8 19.8c0-4.3-3.5-7.7-7.7-7.7-4.3 0-7.7 3.5-7.7 7.7s3.5 7.7 7.7 7.7c1.8 0 3.6-.6 4.9-1.8l6.1 6.1 1.3-1.3-6.1-6.1c1-1.3 1.5-2.9 1.5-4.6zm-1.8 0c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6 6 2.7 6 6zM6.3 16.7H4.2v14.9h11.2v-2H6.3z"/></svg>
384 + </a>
385 + </div>
386 +
387 + <div class="menu-menu-header-fr-container"><ul id="primary-menu" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3938"><a href="https://sotramont.com/la-difference-sotramont-a-propos/">La différence Sotramont</a></li>
388 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3939"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
389 +<li class="js--submenu-condos menu-item menu-item-type-custom menu-item-object-custom menu-item-809"><a title="js&#8211;submenu-condo">Curtiss Locatifs</a></li>
390 +<li class="js--submenu-locatifs menu-item menu-item-type-custom menu-item-object-custom menu-item-810"><a title="js&#8211;submenu-rental">Liveo Locatifs</a></li>
391 +</ul></div>
392 + <div class="content-list-submenu">
393 +
394 + <div class="content-title">
395 + <h3 class="text-lg">Notre Complémentaire </h3>
396 + </div>
397 + <div class="row">
398 + <div class="col col-10 col-typo">
399 + <p></p>
400 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons">
401 + Voir tout Complémentaire dans notre portfolio
402 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
403 + </a>
404 + </div>
405 +
406 + </div>
407 +
408 + <div class="content-title">
409 + <h3 class="text-lg">Notre Condos </h3>
410 + </div>
411 + <div class="row">
412 + <div class="col col-6 col-list">
413 + <a href="https://sotramont.com/curtiss-condos/" target="">
414 + <figure>
415 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Curtiss-1920x904.png'>
416 + </figure>
417 + <!--<h4 class="text-md">Curtiss Condos</h4>-->
418 + <h5 class="text-sm">Saint-Laurent</h5>
419 + </a>
420 + </div>
421 +
422 + <div class="col col-10 col-typo">
423 + <p>Les condos Sotramont sont toujours dans des emplacements de premier choix et s'intègrent harmonieusement à leur environnement. Ces condos très appréciés attirent un équilibre sain entre les résidents et les investisseurs.</p>
424 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=condos">
425 + Voir tout Condos dans notre portfolio
426 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
427 + </a>
428 + </div>
429 +
430 + </div>
431 +
432 + <div class="content-title">
433 + <h3 class="text-lg">Notre Locatifs </h3>
434 + </div>
435 + <div class="row">
436 + <div class="col col-6 col-list">
437 + <figure>
438 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Liveo-1920x904.png'>
439 + </figure>
440 + </div>
441 +
442 + <div class="col col-6 col-locations">
443 + <div>
444 + <span><a href="https://sotramont.com/liveo-bois-franc/" target=""><h5 class="text-sm">Saint-Laurent</h5></a></span><span><a href="https://sotramont.com/liveo-mascouche/" target=""><h5 class="text-sm">Mascouche</h5></a></span><span><a href="https://sotramont.com/liveo-pointe-claire/" target=""><h5 class="text-sm">Pointe-Claire</h5></a></span><span><a href="https://sotramont.com/liveo-repentigny/" target=""><h5 class="text-sm">Repentigny</h5></a></span>
445 + </div>
446 + </div>
447 +
448 + <div class="col col-10 col-typo">
449 + <p>Les condos locatifs Sotramont sont soigneusement conçus pour offrir aux résidents un niveau de vie élevé, quel que soit le budget.</p>
450 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=locatifs">
451 + Voir tout Locatifs dans notre portfolio
452 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
453 + </a>
454 + </div>
455 +
456 + </div>
457 +
458 + <div class="content-title">
459 + <h3 class="text-lg">Notre Maisons de ville </h3>
460 + </div>
461 + <div class="row">
462 + <div class="col col-10 col-typo">
463 + <p>Les maisons de ville de Sotramont sont toujours situées dans des endroits recherchés et construites dans un souci de longévité. Ces maisons de ville fiables attirent un équilibre sain entre plusieurs générations.</p>
464 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons-de-ville">
465 + Voir tout Maisons de ville dans notre portfolio
466 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
467 + </a>
468 + </div>
469 +
470 + </div>
471 + </div>
472 +
473 + </nav>
474 + </div>
475 + </div>
476 +
477 + <div class="content-subnav">
478 + <ul id="sub-menu" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3940"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
479 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3941"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
480 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3942"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
481 +</ul> </div>
482 +
483 + <div class="content-animate"></div>
484 +
485 +
486 +</div>
487 +
488 +
489 +
490 +
491 + <style>
492 + ::selection{
493 + background:#255850;
494 +
495 + svg{
496 + background-color:#255850;
497 + }
498 + }
499 +
500 + ::-moz-selection{
501 + background:#255850;
502 +
503 + svg{
504 + background-color:#255850;
505 + }
506 + }
507 +
508 + .block .btn{
509 + background-color:#255850 !important;
510 + border-color:#255850 !important;
511 + }
512 +
513 + .block--form .content-box{
514 + background:#255850;
515 + }
516 +
517 + .c--form input[type="submit"]{
518 + background-color:#fff !important;
519 + border-color:#fff !important;
520 + color:#000;
521 + }
522 +
523 + .c--toggle-click .text-lg{
524 + background-color:#255850 !important;
525 + border-color:#255850 !important;
526 + }
527 +
528 + .block .swiper-button-prev{
529 + background-color:#255850E0;
530 + }
531 +
532 + .block .swiper-button-next{
533 + background-color:#255850;
534 + }
535 +
536 + .block--features .content-list .single-item.item-active .text-md{
537 + color:#255850 !important;
538 + }
539 +
540 + .block--features .content-list .single-item.item-active svg{
541 + fill:#255850 !important;
542 + }
543 +
544 + .block--units .content-icon-plus svg{
545 + fill:#255850;
546 + }
547 +
548 + .block--promo .content-inner{
549 + background:#25585015;
550 + }
551 +
552 + .block:not(.block--footer) .btn--underscore{
553 + color:#255850 !important;
554 + }
555 +
556 + .block:not(.block--footer) .btn--underscore:before, .block:not(.block--footer) .btn--underscore:after{
557 + background:#255850 !important;
558 + }
559 +
560 + .block--banner .text-sm:before{
561 + background:#255850;
562 + }
563 +
564 + .block--project-submenu{
565 + background:#255850;
566 + }
567 +
568 + .sticky-button-form .icon-close{
569 + background:#255850;
570 + }
571 +
572 + .sticky-button-form .inner-btn{
573 + background:#255850;
574 + border-color:#255850;
575 + }
576 + </style>
577 +
578 +
579 +
580 +
581 +<section id="block--banner" class="block block--banner" >
582 + <div class="content-inner">
583 + <div class="row">
584 + <div class="col col-typo col-xl-12 offset-xl-3 offset-md-2 col-sm-14 col-22 offset-1">
585 + <div>
586 + <span class="text-sm">Saint-Laurent</span>
587 + </div>
588 + <h1 class="text-lg">Curtiss Charlie Locatifs</h1>
589 + <p class="text-p">Curtiss Charlie est la troisième phase de 7 condos reliés entre eux par des espaces verts. Il s&#8217;agit du dernier projet de plan directeur au sein de Bois-Franc.</p>
590 + </div>
591 + <div class="col col-image col-sm-14 col-24 offset-0">
592 +
593 + <figure class='c--image-bg'>
594 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/11/CURT-C-perspective-1024x683.jpg);'></div>
595 + </figure>
596 + </div>
597 + </div>
598 + </div>
599 +</section>
600 +
601 +
602 +<section id="block--project-submenu" class="block block--project-submenu sm--pin-top">
603 + <div class="content-inner">
604 + <div class="row">
605 + <div class="col col-lg-20 col-22">
606 +
607 +
608 + <ul>
609 + <li class="content-logo"><a href="https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/"><img decoding="async" src="https://sotramont.com/wp-content/uploads/2020/07/Curtiss-W-480x226.png"></a></li>
610 + <li class='active'><a href='https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/'>Détails du projet</a></li> <li class="page_item page-item-9465"><a href="https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/interior-design/">Design d&#8217;intérieur</a></li>
611 +<li class="page_item page-item-9481"><a href="https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/galerie-des-medias/">Galerie des médias</a></li>
612 +<li class="page_item page-item-9455"><a href="https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/contact/">Contact</a></li>
613 + </ul>
614 + </div>
615 + </div>
616 + </div>
617 +</section>
618 +
619 +
620 +<section id="block--project-about" class="block block--project-about" style="background-color:#ffffff;">
621 + <div class="row">
622 + <div class="col col-xl-10 offset-xl-2 offset-md-2 col-md-11 col-22 offset-1">
623 + <h2 class="text-lg">VIVRE BOIS-FRANC</h2>
624 +
625 + <div class="content-wysiwyg">
626 + <p>Curtiss Condos est la dernière communauté planifiée à Bois-Franc, promettant d’être une évasion paisible en pleine nature avec 50% du terrain dédié aux espaces verts et un parc spacieux de l’autre côté de la rue. monde des commerces et services au Faubourg Bois-Franc, dont des restaurants et cafés, une Première Moisson, un IGA avec jardin sur le toit, une pharmacie Jean Coutu, une banque, un cabinet médical, une clinique dentaire, une garderie, un marché fermier local et la future station REM de Bois-Franc.</p>
627 + </div>
628 +
629 +
630 + </div>
631 + <div class="col col-md-8 offset-md-2 col-22 offset-1">
632 +
633 + <div class="content-tag">
634 + <div class="row">
635 + <div class="single-tag col col-12">
636 +
637 + <div class="single-tag-image">
638 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-09.png'> </div>
639 + <h4 class="text-md">construction </br> terminée</h4>
640 + </div>
641 + <div class="single-tag col col-12">
642 +
643 + <div class="single-tag-image">
644 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-31.png'> </div>
645 + <h4 class="text-md">OCCUPATION </br> immédiate</h4>
646 + </div>
647 + <div class="single-tag col col-12">
648 +
649 + <div class="single-tag-image">
650 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-22.png'> </div>
651 + <h4 class="text-md">PLANS DE </br> 1-2 CHAMBRES</h4>
652 + </div>
653 + <div class="single-tag col col-12">
654 +
655 + <div class="single-tag-image">
656 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-29.png'> </div>
657 + <h4 class="text-md">DE 1 405 $ </br> par mois</h4>
658 + </div>
659 + </div>
660 + </div>
661 + </div>
662 + </div>
663 +</section>
664 +
665 +
666 +<section id="block--image-slider" class="block block--image-slider size-lg">
667 +
668 + <div class='c--image'>
669 + <figure class='c--image-bg'>
670 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2020/10/CURT-master-site-plan-V2-1920x1280.jpg);'></div>
671 + </figure>
672 + </div>
673 +</section>
674 +
675 +
676 +<section id="block--project-about" class="block block--project-about" style="background-color:#ffffff;">
677 + <div class="row">
678 + <div class="col col-xl-10 offset-xl-2 offset-md-2 col-md-11 col-22 offset-1">
679 + <h2 class="text-lg">BÉNÉFICIEZ DE PLUS DE COMMODITÉS</h2>
680 +
681 + <div class="content-wysiwyg">
682 + <p>Vraiment conçu comme une communauté. Curtiss offre une variété de façons de dialoguer avec vos proches et, surtout, de retrouver votre sérénité personnelle. Ce nouveau projet passionnant comprend plus de 20000 pieds carrés de commodités, dont une immense piscine intérieure, une terrasse sur le toit avec un jardin comestible et vue sur le mont Royal, une salle d’exercice entièrement équipée par des professionnels, une salle de divertissement pour se détendre avec un livre ou votre ordinateur portable , avec un potentiel pour des événements privés – tout ce dont vous avez besoin pour vous sentir comme chez vous.</p>
683 +<p>&nbsp;</p>
684 +<h2>FONCTIONNALITÉS PRATIQUES</h2>
685 +<p>Nous mettons notre équipe au travail après avoir demandé aux résidents potentiels comment nous pourrions rendre la vie en copropriété plus attrayante. La commodité était une nécessité évidente! En commençant par le sous-sol, Curtiss Charlie comprend un lave-auto et un lave-animaux, un local à vélos sécurisé, des casiers de rangement individuels dans des pièces chauffées et des espaces de stationnement dédiés pour la recharge. voiture électrique. Aux étages supérieurs, vous trouverez deux ascenseurs à grande vitesse, des caméras de sécurité, une goulotte d’élimination des déchets à chaque étage et des couloirs éclairés par LED.</p>
686 + </div>
687 +
688 +
689 + </div>
690 + <div class="col col-md-8 offset-md-2 col-22 offset-1">
691 +
692 + <div class="content-tag">
693 + <div class="row">
694 + <div class="single-tag col col-12">
695 +
696 + <div class="single-tag-image">
697 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-01.png'> </div>
698 + <h4 class="text-md">PISCINE </br> INTÉRIEURE</h4>
699 + </div>
700 + <div class="single-tag col col-12">
701 +
702 + <div class="single-tag-image">
703 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-14.png'> </div>
704 + <h4 class="text-md">TERRASSE </br> SUR LE TOIT</h4>
705 + </div>
706 + <div class="single-tag col col-12">
707 +
708 + <div class="single-tag-image">
709 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-20.png'> </div>
710 + <h4 class="text-md">TERRASSE </br> PISCINE</h4>
711 + </div>
712 + <div class="single-tag col col-12">
713 +
714 + <div class="single-tag-image">
715 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-08.png'> </div>
716 + <h4 class="text-md">SALLE </br> D&#8217;EXERCICE</h4>
717 + </div>
718 + <div class="single-tag col col-12">
719 +
720 + <div class="single-tag-image">
721 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-26.png'> </div>
722 + <h4 class="text-md">SALLE </br> COMMUNAUTAIRE</h4>
723 + </div>
724 + <div class="single-tag col col-12">
725 +
726 + <div class="single-tag-image">
727 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-06.png'> </div>
728 + <h4 class="text-md">TERRASSE </br> COMMUNAUTAIRE</h4>
729 + </div>
730 + <div class="single-tag col col-12">
731 +
732 + <div class="single-tag-image">
733 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-02.png'> </div>
734 + <h4 class="text-md">JARDIN </br>COMESTIBLE</h4>
735 + </div>
736 + <div class="single-tag col col-12">
737 +
738 + <div class="single-tag-image">
739 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-18.png'> </div>
740 + <h4 class="text-md">STATIONNEMENT </br> INTÉRIEUR</h4>
741 + </div>
742 + <div class="single-tag col col-12">
743 +
744 + <div class="single-tag-image">
745 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-04.png'> </div>
746 + <h4 class="text-md">STATION </br> DE CHARGE</h4>
747 + </div>
748 + <div class="single-tag col col-12">
749 +
750 + <div class="single-tag-image">
751 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-17.png'> </div>
752 + <h4 class="text-md">STATION </br> DE LAVAGE</h4>
753 + </div>
754 + <div class="single-tag col col-12">
755 +
756 + <div class="single-tag-image">
757 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-34.png'> </div>
758 + <h4 class="text-md">CASIERS DE </br> RANGEMENT</h4>
759 + </div>
760 + <div class="single-tag col col-12">
761 +
762 + <div class="single-tag-image">
763 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-15.png'> </div>
764 + <h4 class="text-md">RANGEMENT </br> À VÉLOS</h4>
765 + </div>
766 + </div>
767 + </div>
768 + </div>
769 + </div>
770 +</section>
771 +
772 +
773 +<section id="block--image-slider" class="block block--image-slider size-lg">
774 +
775 +
776 + <div class='js--slider'>
777 + <div class='swiper-container'>
778 + <div class='swiper-wrapper'><div class='swiper-slide'>
779 + <figure class='c--image-bg'>
780 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2022/04/CURT-pool-new-1920x1280.jpg);'></div>
781 + </figure>
782 + </div><div class='swiper-slide'>
783 + <figure class='c--image-bg'>
784 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/05/CURT-B-rooftop-1920x1280.jpg);'></div>
785 + </figure>
786 + </div><div class='swiper-slide'>
787 + <figure class='c--image-bg'>
788 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2022/04/CURT-B-gym-new-1920x818.jpg);'></div>
789 + </figure>
790 + </div>
791 + </div>
792 + <div class='swiper-button-next'>
793 + <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 845'><path d='M87.5 845c-22.9 0-45.7-8.9-62.9-26.6-33.6-34.7-32.7-90.1 2-123.7l280.3-271.3L26.5 150.2C-8.2 116.5-8.9 61.1 24.8 26.5c33.7-34.6 89.1-35.4 123.7-1.6l345 336c16.9 16.5 26.5 39.2 26.5 62.8 0 23.6-9.6 46.3-26.6 62.7l-345 334c-17 16.4-39 24.6-60.9 24.6z'></path></svg>
794 + </div>
795 + <div class='swiper-button-prev'>
796 + <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 845'><path d='M87.5 845c-22.9 0-45.7-8.9-62.9-26.6-33.6-34.7-32.7-90.1 2-123.7l280.3-271.3L26.5 150.2C-8.2 116.5-8.9 61.1 24.8 26.5c33.7-34.6 89.1-35.4 123.7-1.6l345 336c16.9 16.5 26.5 39.2 26.5 62.8 0 23.6-9.6 46.3-26.6 62.7l-345 334c-17 16.4-39 24.6-60.9 24.6z'></path></svg>
797 + </div>
798 + </div>
799 + </div>
800 +
801 +</section>
802 +
803 +
804 +<section id="block--features" class="block block--features" style="background-color:#ffffff;">
805 +
806 + <div class="content-text">
807 + <div class="row">
808 + <div class="col col-lg-12 col-sm-14 col-22">
809 + <h3 class="text-lg">CARACTÉRISTIQUES UNIQUES</h3> <div class="content-wysiwyg">
810 + <p>Voici quelques éléments à considérer à propos de Curtiss Charlie lorsque vous comparez des projets de condos. Notre objectif est de livrer des condos confortables qui profiteront aux résidents au quotidien. Tout aussi important, nous les construisons pour durer des générations.</p>
811 + </div>
812 + </div>
813 + </div>
814 + </div>
815 +
816 + <div class="content-list">
817 + <div class="row">
818 +
819 + <div class="col col-list col-lg-10 offset-lg-2 col-sm-11 col-22 offset-1">
820 + <div class="single-item single-item-0 item-active" data-id="0">
821 + <h4 class="text-md">MÉCANIQUE</h4> <!-- Icon Arrow -->
822 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.4 22" style="enable-background:new 0 0 12.4 22"><path d="M1 22c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4L9.6 11 .3 1.7C-.1 1.3-.1.7.3.3s1-.4 1.4 0L12.4 11 1.7 21.7c-.2.2-.4.3-.7.3z"/></svg>
823 + </div>
824 + <div class="single-item single-item-1 " data-id="1">
825 + <h4 class="text-md">MATÉRIAUX</h4> <!-- Icon Arrow -->
826 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.4 22" style="enable-background:new 0 0 12.4 22"><path d="M1 22c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4L9.6 11 .3 1.7C-.1 1.3-.1.7.3.3s1-.4 1.4 0L12.4 11 1.7 21.7c-.2.2-.4.3-.7.3z"/></svg>
827 + </div>
828 + <div class="single-item single-item-2 " data-id="2">
829 + <h4 class="text-md">EMPLACEMENT</h4> <!-- Icon Arrow -->
830 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.4 22" style="enable-background:new 0 0 12.4 22"><path d="M1 22c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4L9.6 11 .3 1.7C-.1 1.3-.1.7.3.3s1-.4 1.4 0L12.4 11 1.7 21.7c-.2.2-.4.3-.7.3z"/></svg>
831 + </div>
832 + </div>
833 +
834 + <div class="col col-content col-lg-8 offset-sm-2 col-sm-9 col-22 offset-1">
835 + <div class="single-item-content single-item-0 item-active">
836 + <ul>
837 +<li>eau chauffée au gaz naturel (pas de réservoir dans les unités)</li>
838 +<li>garage chauffé par aérothermes au gaz naturel</li>
839 +<li>plinthes électriques avec thermostats individuels</li>
840 +<li>climatiseurs muraux</li>
841 +<li>2 ascenseurs à grande vitesse</li>
842 +<li>2 escaliers de sortie de secours</li>
843 +<li>chutes de déchets par étage</li>
844 +<li>toutes les entrées contrôlées par des télécommandes</li>
845 +<li>caméras de sécurité d’entrée</li>
846 +</ul>
847 + </div>
848 + <div class="single-item-content single-item-1 ">
849 + <ul>
850 +<li>fondation en béton et enveloppe en brique</li>
851 +<li>Fenêtres à battant homologuées E-Star</li>
852 +<li>lumières encastrées dans la cuisine et les couloirs</li>
853 +<li>armoires de cuisine du sol au plafond</li>
854 +<li>armoires de cuisine à fermeture douce</li>
855 +<li>comptoirs de cuisine en quartz</li>
856 +<li>espace pour les appareils de buanderie pleine grandeur</li>
857 +<li>comptoirs de salle de bain en quartz</li>
858 +<li>verre de douche trempé</li>
859 +<li>lumière encastrée dans chaque douche</li>
860 +</ul>
861 + </div>
862 + <div class="single-item-content single-item-2 ">
863 + <p>Le quartier Bois-Franc bénéficie d’un emplacement de premier choix à Montréal, à Saint-Laurent, où la nature et les habitations s’intègrent en parfaite harmonie depuis plus de 25 ans. Les résidents peuvent profiter d’une qualité de vie exceptionnelle en plus de profiter de ses nombreux attraits.</p>
864 +<div class='c--buttons'><a href="https://www.boisfranc.com/en/location/" class="btn" target="_blank">Découvrez Bois-Franc</a></div> </div>
865 +
866 + <div class="content-bg-inner" ></div>
867 + </div>
868 +
869 + </div>
870 + </div>
871 +</section>
872 +
873 +<script>
874 +jQuery(document).ready(function(){
875 + jQuery(document).on("click", ".block--features .single-item", function(){
876 + var valueId = jQuery(this).data("id");
877 +
878 + jQuery('.block--features .single-item, .block--features .single-item-content').removeClass('item-active');
879 + jQuery('.block--features .single-item-'+valueId).addClass('item-active');
880 + });
881 +});
882 +</script>
883 +
884 +
885 +
886 +
887 + <section id="block--calendly" class="block block--calendly" style="background-color:#e5e5e5;">
888 +
889 + <link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
890 + <script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript"></script>
891 +
892 + <div class="row big-row">
893 + <div class="col col-xl-20 col-22">
894 + <div class="content-inner" style="background-color:#ffffff;">
895 + <div class="row">
896 + <div class="col col-md-12 col-24">
897 +
898 + <figure class='c--image-bg'>
899 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2022/12/genevievex-1-1920x1920.jpg);'></div>
900 + </figure>
901 + <h3 class="text-lg">Genevieve Sevigny</h3>
902 + <h4 class="text-md">Réservez un moment avec Genevieve à notre espace de location pour trouver votre prochain condo locatif.</h4>
903 + <div class="content-btn">
904 + <!-- Calendly link widget begin -->
905 + <a class="btn" href="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/sotramont-gsevigny/rencontre-visite-curtiss-charlie'});return false;">Réservez une réunion</a>
906 + <!-- Calendly link widget end -->
907 + </div>
908 + </div>
909 + </div>
910 + </div>
911 + </div>
912 + </div>
913 +
914 + </section>
915 +
916 +
917 +
918 +
919 + <section id="block--form" class="block block--form" style="background-color:#255850;">
920 + <div class="row">
921 + <div class="col col-lg-20 col-22">
922 +
923 + <div class="content-box" >
924 + <h3 class='text-lg'>REJOIGNEZ CURTISS CHARLIE</h3>
925 + <h4 class='text-md'>RECEVOIR LES MISES À JOUR DU PROJET ET AVOIR UN ACCÈS PRIORITAIRE AUX NOUVELLES UNITÉS.</h4>
926 +
927 + <div class="c--form c--mailchimp-form">
928 + <div class="c--mailchimp-form c--form">
929 +
930 + <!-- Begin Mailchimp Signup Form -->
931 +
932 +<style type="text/css">
933 + #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
934 + /* Add your own Mailchimp form style overrides in your site stylesheet or in this style block.
935 + We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
936 +</style>
937 +<div id="mc_embed_signup">
938 +<form action="https://sotramont.us11.list-manage.com/subscribe/post?u=72dd37a7d8c7bb8b4515bf948&amp;id=4b8c334330" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
939 + <div id="mc_embed_signup_scroll">
940 +
941 +<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
942 +<div class="mc-field-group">
943 + <label for="mce-EMAIL">Courriel <span class="asterisk">*</span>
944 +</label>
945 + <input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
946 +</div>
947 +<div class="mc-field-group">
948 + <label for="mce-FNAME">Prénom <span class="asterisk">*</span>
949 +</label>
950 + <input type="text" value="" name="FNAME" class="required" id="mce-FNAME">
951 +</div>
952 +<div class="mc-field-group">
953 + <label for="mce-LNAME">Nom <span class="asterisk">*</span>
954 +</label>
955 + <input type="text" value="" name="LNAME" class="required" id="mce-LNAME">
956 +</div>
957 +<div class="mc-field-group size1of2">
958 + <label for="mce-PHONE">Téléphone </label>
959 + <input type="text" name="PHONE" class="" value="" id="mce-PHONE">
960 +</div>
961 + <div id="mce-responses" class="clear">
962 + <div class="response" id="mce-error-response" style="display:none"></div>
963 + <div class="response" id="mce-success-response" style="display:none"></div>
964 + </div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
965 + <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_72dd37a7d8c7bb8b4515bf948_4b8c334330" tabindex="-1" value=""></div>
966 + <div class="clear"><input type="submit" value="S'ABONNEZ" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
967 + </div>
968 +</form>
969 +</div>
970 +<script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';fnames[3]='ADDRESS';ftypes[3]='address';fnames[4]='PHONE';ftypes[4]='phone';fnames[5]='MMERGE5';ftypes[5]='text';}(jQuery));var $mcj = jQuery.noConflict(true);</script>
971 +<!--End mc_embed_signup-->
972 + <!--<iframe loading="lazy" src="http://eepurl.com/g58LRv" width="100%" height="auto" style="width:100%; height:auto;" onload="resizeIframe(this)">-->
973 + </div>
974 + </div>
975 +
976 + </div>
977 +
978 + </div>
979 + </div>
980 + </section>
981 +
982 +
983 +
984 +<!--<section id="block--mailchimp-form" class="block--mailchimp-form">
985 +
986 + <div class="row">
987 + <div class="col col-14 offset-5">
988 +
989 + <div class="c--mailchimp-form c--form">
990 + <div class="js--project-list-actual"></div>
991 + <div class="js--input-project-in" style="display:none;">Curtiss Charlie</div>
992 + </div>
993 +
994 + </div>
995 + </div>
996 +
997 +</section>-->
998 +
999 + <button class="sticky-button-form">
1000 + <span class="icon-close">
1001 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512.7 512.7" xml:space="preserve"><path d="m512.7 424.3-168-168 168-167.9L424.3 0l-168 167.9L88.4 0 0 88.4l167.9 167.9L0 424.3l88.4 88.4 167.9-168 168 168z"/></svg>
1002 + </span>
1003 + <span class="inner-btn js--scroll-to" data-scroll-to=".block--form">Abonnez-vous</span>
1004 + </button>
1005 +
1006 +
1007 +
1008 +<footer class="block block--footer">
1009 +
1010 + <div class="big-row row">
1011 + <div class="col col-lg-20 col-md-22 col-20">
1012 +
1013 + <!-- Row 1 -->
1014 + <div class="row row-1">
1015 + <div class="col col-text-1 col-md-9 col-24">
1016 + <div class="content-logo">
1017 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/08/logo-sotramont.png'> </div>
1018 +
1019 +
1020 +
1021 + <p>Basé à Montréal, un développeur immobilier, constructeur et promoteur de maisons neuves, condos et locatifs depuis 1968.</p>
1022 +
1023 + </div>
1024 +
1025 + <!-- - - - - - Loop Category Project && Project associated with the category - - - - - -->
1026 + <div class="col col-md-5 col-sm-8 offset-sm-0 col-18 offset-3 content-list-project">
1027 + <h3 class="text-lg sm--toggle-class">Condos</h3>
1028 + <ul>
1029 + <li>
1030 + <a href="https://sotramont.com/curtiss-condos/" target="">
1031 + Curtiss Condos </a>
1032 + </li>
1033 + </ul>
1034 + </div>
1035 + <div class="col col-md-5 col-sm-8 offset-sm-0 col-18 offset-3 content-list-project">
1036 + <h3 class="text-lg sm--toggle-class">Locatifs</h3>
1037 + <ul>
1038 + <li>
1039 + <a href="https://sotramont.com/liveo-bois-franc/" target="">
1040 + Liveo Bois-Franc </a>
1041 + </li>
1042 + <li>
1043 + <a href="https://sotramont.com/liveo-mascouche/" target="">
1044 + Liveo Mascouche </a>
1045 + </li>
1046 + <li>
1047 + <a href="https://sotramont.com/liveo-pointe-claire/" target="">
1048 + Liveo Pointe-Claire </a>
1049 + </li>
1050 + <li>
1051 + <a href="https://sotramont.com/liveo-repentigny/" target="">
1052 + Liveo Repentigny </a>
1053 + </li>
1054 + </ul>
1055 + </div>
1056 + <!-- - - - - - END LOOP - - - - - -->
1057 +
1058 + </div>
1059 +
1060 + <!-- Row 2 -->
1061 + <div class="row row-2 sm--toggle-class">
1062 + <div class="col col-md-12 col-24">
1063 + <h4 class="text-sm">Bureau Chef</h4>
1064 +
1065 + <p>55, rue de Louvain Ouest, Suite 350<br />
1066 +Montréal, QC, H2N 1A4, Canada</p>
1067 + </div>
1068 + <div class="col col-md-12 col-24 col-right">
1069 + <nav class="footer-navigation">
1070 + <ul id="footer-nav" class="menu"><li id="menu-item-3943" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3943"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
1071 +<li id="menu-item-3944" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3944"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
1072 +<li id="menu-item-3945" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3945"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
1073 +<li id="menu-item-3946" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3946"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
1074 +</ul> </nav>
1075 + </div>
1076 + </div>
1077 +
1078 + <!-- Row 3 -->
1079 + <div class="row row-3">
1080 + <div class="col col-md-18 col-24">
1081 + <p>&copy;2026 Sotramont. Tous droits réservés.</p>
1082 + <nav class="second-nav">
1083 + </nav>
1084 + </div>
1085 + <div class="col col-md-6 col-24 col-right">
1086 + <ul class='list--social js--hover-parent'><li><a href="https://www.instagram.com/sotramont/" target="_blank">
1087 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M352 0H160C71.648 0 0 71.648 0 160v192c0 88.352 71.648 160 160 160h192c88.352 0 160-71.648 160-160V160C512 71.648 440.352 0 352 0zm112 352c0 61.76-50.24 112-112 112H160c-61.76 0-112-50.24-112-112V160C48 98.24 98.24 48 160 48h192c61.76 0 112 50.24 112 112v192z"/><path d="M256 128c-70.688 0-128 57.312-128 128s57.312 128 128 128 128-57.312 128-128-57.312-128-128-128zm0 208c-44.096 0-80-35.904-80-80 0-44.128 35.904-80 80-80s80 35.872 80 80c0 44.096-35.904 80-80 80z"/><circle cx="393.6" cy="118.4" r="17.056"/></svg>
1088 + </a></li><li><a href="https://www.facebook.com/Sotramont/" target="_blank">
1089 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 310 310"><path d="M81.703 165.106h33.981V305a5 5 0 005 5H178.3a5 5 0 005-5V165.765h39.064a5 5 0 004.967-4.429l5.933-51.502a5 5 0 00-4.966-5.572h-44.996V71.978c0-9.732 5.24-14.667 15.576-14.667h29.42a5 5 0 005-5V5.037a5 5 0 00-5-5h-40.545A39.746 39.746 0 00185.896 0c-7.035 0-31.488 1.381-50.804 19.151-21.402 19.692-18.427 43.27-17.716 47.358v37.752H81.703a5 5 0 00-5 5v50.844a5 5 0 005 5.001z"/></svg>
1090 + </a></li><li><a href="https://www.linkedin.com/company/sotramont/" target="_blank">
1091 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 295.8 297.8"><path d="M80.6 272.1c0 4.9-4 8.9-8.9 8.9h-38c-4.9 0-8.9-4-8.9-8.9V112.9c0-4.9 4-8.9 8.9-8.9h38c4.9 0 8.9 4 8.9 8.9v159.2zM52.7 88.9c-19.9 0-36.1-16.2-36.1-36.1s16.2-36.1 36.1-36.1 36.1 16.2 36.1 36.1-16.1 36.1-36.1 36.1zm226.5 184c0 4.5-3.7 8.2-8.2 8.2h-40.8c-4.5 0-8.2-3.7-8.2-8.2v-74.7c0-11.1 3.3-48.8-29.1-48.8-25.1 0-30.2 25.8-31.2 37.4V273c0 4.5-3.7 8.2-8.2 8.2H114c-4.5 0-8.2-3.7-8.2-8.2V112.1c0-4.5 3.7-8.2 8.2-8.2h39.4c4.5 0 8.2 3.7 8.2 8.2V126c9.3-14 23.2-24.8 52.6-24.8 65.3 0 64.9 61 64.9 94.5l.1 77.2z"/></svg>
1092 + </a></li></ul> </div>
1093 + </div>
1094 +
1095 + </div>
1096 + </div>
1097 +
1098 +</footer>
1099 +
1100 +
1101 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=5.7.7' id='swv-js'></script>
1102 +<script type='text/javascript' id='contact-form-7-js-extra'>
1103 +/* <![CDATA[ */
1104 +var wpcf7 = {"api":{"root":"https:\/\/sotramont.com\/wp-json\/","namespace":"contact-form-7\/v1"}};
1105 +/* ]]> */
1106 +</script>
1107 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.7.7' id='contact-form-7-js'></script>
1108 +<script type='text/javascript' id='heateor_sss_sharing_js-js-before'>
1109 +function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}}; var heateorSssSharingAjaxUrl = 'https://sotramont.com/wp-admin/admin-ajax.php', heateorSssCloseIconPath = 'https://sotramont.com/wp-content/plugins/sassy-social-share/public/../images/close.png', heateorSssPluginIconPath = 'https://sotramont.com/wp-content/plugins/sassy-social-share/public/../images/logo.png', heateorSssHorizontalSharingCountEnable = 0, heateorSssVerticalSharingCountEnable = 0, heateorSssSharingOffset = -10; var heateorSssMobileStickySharingEnabled = 0;var heateorSssCopyLinkMessage = "Link copied.";var heateorSssUrlCountFetched = [], heateorSssSharesText = 'Shares', heateorSssShareText = 'Share';function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}
1110 +</script>
1111 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/sassy-social-share/public/js/sassy-social-share-public.js?ver=3.3.52' id='heateor_sss_sharing_js-js'></script>
1112 +
1113 +</body>
1114 +</html>
added tests/fixtures/sotramont/0c3fa463a2a46f9027d0.html +1164 −0
@@ -0,0 +1,1164 @@
1 +
2 +
3 +
4 +
5 +
6 +
7 +
8 +
9 +
10 +
11 +
12 +
13 +
14 +
15 +
16 +
17 +
18 +
19 +
20 +
21 +
22 +
23 +
24 +
25 +
26 +
27 +
28 +
29 +
30 +
31 +
32 +
33 +
34 +
35 +
36 +
37 +
38 +
39 +
40 +
41 +
42 +
43 +
44 +
45 +
46 +
47 +
48 +
49 +
50 +<!doctype html>
51 +<html lang="fr-FR">
52 +<head>
53 + <meta charset="UTF-8">
54 + <meta name="viewport" content="width=device-width, initial-scale=1">
55 +
56 +
57 + <!-- Global site tag (gtag.js) - Google Analytics -->
58 + <script async src="https://www.googletagmanager.com/gtag/js?id=UA-35177730-1"></script>
59 + <script>
60 + window.dataLayer = window.dataLayer || [];
61 + function gtag(){dataLayer.push(arguments);}
62 + gtag('js', new Date());
63 + gtag('config', 'UA-35177730-1');
64 + </script>
65 + <!-- END Global site tag -->
66 +
67 + <!-- Google Tag Manager -->
68 + <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
69 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
70 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
71 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
72 + })(window,document,'script','dataLayer','GTM-KQGBN56');</script>
73 + <!-- End Google Tag Manager —>
74 +
75 + <!-- ScrollMagic -->
76 + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js" integrity="sha256-2p2tRZlPowp3P/04Pw2rqVCSbhyV/IB7ZEVUglrDS/c=" crossorigin="anonymous"></script>
77 + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/plugins/animation.gsap.min.js" integrity="sha256-+9YNuItWuR4sbqeaNiJOxG0BvptYz4fbUXbIZoH5Jwo=" crossorigin="anonymous"></script>
78 + <!-- END ScrollMagic -->
79 +
80 + <style type="text/css">
81 + .heateor_sss_button_instagram span.heateor_sss_svg,a.heateor_sss_instagram span.heateor_sss_svg{background:radial-gradient(circle at 30% 107%,#fdf497 0,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%)}
82 + .heateor_sss_horizontal_sharing .heateor_sss_svg,.heateor_sss_standard_follow_icons_container .heateor_sss_svg{
83 + color: #fff;
84 + border-width: 0px;
85 + border-style: solid;
86 + border-color: transparent;
87 + }
88 + .heateor_sss_horizontal_sharing .heateorSssTCBackground{
89 + color:#666;
90 + }
91 + .heateor_sss_horizontal_sharing span.heateor_sss_svg:hover,.heateor_sss_standard_follow_icons_container span.heateor_sss_svg:hover{
92 + border-color: transparent;
93 + }
94 + .heateor_sss_vertical_sharing span.heateor_sss_svg,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg{
95 + color: #fff;
96 + border-width: 0px;
97 + border-style: solid;
98 + border-color: transparent;
99 + }
100 + .heateor_sss_vertical_sharing .heateorSssTCBackground{
101 + color:#666;
102 + }
103 + .heateor_sss_vertical_sharing span.heateor_sss_svg:hover,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg:hover{
104 + border-color: transparent;
105 + }
106 + @media screen and (max-width:783px) {.heateor_sss_vertical_sharing{display:none!important}} </style>
107 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
108 +<link rel="alternate" hreflang="en" href="https://sotramont.com/en/liveo-pointe-claire-2-condos-for-rent-pointe-claire/" />
109 +<link rel="alternate" hreflang="fr" href="https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/" />
110 +<link rel="alternate" hreflang="x-default" href="https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/" />
111 +
112 + <!-- This site is optimized with the Yoast SEO plugin v20.11 - https://yoast.com/wordpress/plugins/seo/ -->
113 + <title>Condos à louer | Pointe-Claire | Liveo Pointe-Claire | Sotramont</title>
114 + <meta name="description" content="Découvrez nos condos à louer à Pointe-Claire. Le projet Liveo Pointe-Claire est réalisé par le promoteur et constructeur immobilier Sotramont." />
115 + <link rel="canonical" href="https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/" />
116 + <meta property="og:locale" content="fr_FR" />
117 + <meta property="og:type" content="article" />
118 + <meta property="og:title" content="Condos à louer | Pointe-Claire | Liveo Pointe-Claire | Sotramont" />
119 + <meta property="og:description" content="Découvrez nos condos à louer à Pointe-Claire. Le projet Liveo Pointe-Claire est réalisé par le promoteur et constructeur immobilier Sotramont." />
120 + <meta property="og:url" content="https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/" />
121 + <meta property="og:site_name" content="Sotramont" />
122 + <meta property="article:modified_time" content="2024-07-17T12:12:24+00:00" />
123 + <meta property="og:image" content="https://sotramont.com/wp-content/uploads/2021/11/LPC2-scaled.jpg" />
124 + <meta property="og:image:width" content="2560" />
125 + <meta property="og:image:height" content="1706" />
126 + <meta property="og:image:type" content="image/jpeg" />
127 + <meta name="twitter:card" content="summary_large_image" />
128 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/","url":"https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/","name":"Condos à louer | Pointe-Claire | Liveo Pointe-Claire | Sotramont","isPartOf":{"@id":"https://sotramont.com/?lang=en/#website"},"primaryImageOfPage":{"@id":"https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/#primaryimage"},"image":{"@id":"https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/#primaryimage"},"thumbnailUrl":"https://sotramont.com/wp-content/uploads/2021/11/LPC2-scaled.jpg","datePublished":"2021-12-02T21:14:17+00:00","dateModified":"2024-07-17T12:12:24+00:00","description":"Découvrez nos condos à louer à Pointe-Claire. Le projet Liveo Pointe-Claire est réalisé par le promoteur et constructeur immobilier Sotramont.","breadcrumb":{"@id":"https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/#primaryimage","url":"https://sotramont.com/wp-content/uploads/2021/11/LPC2-scaled.jpg","contentUrl":"https://sotramont.com/wp-content/uploads/2021/11/LPC2-scaled.jpg","width":2560,"height":1706},{"@type":"BreadcrumbList","@id":"https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://sotramont.com/"},{"@type":"ListItem","position":2,"name":"Liveo Pointe-Claire 2"}]},{"@type":"WebSite","@id":"https://sotramont.com/?lang=en/#website","url":"https://sotramont.com/?lang=en/","name":"Sotramont","description":"Montreal real-estate developer, builder and promoter.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://sotramont.com/?lang=en/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"}]}</script>
129 + <!-- / Yoast SEO plugin. -->
130 +
131 +
132 +<link rel="alternate" type="application/rss+xml" title="Sotramont &raquo; Feed" href="https://sotramont.com/feed/" />
133 +<link rel="alternate" type="application/rss+xml" title="Sotramont &raquo; Comments Feed" href="https://sotramont.com/comments/feed/" />
134 +<script type="text/javascript">
135 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/sotramont.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.2.2"}};
136 +/*! This file is auto-generated */
137 +!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){p.clearRect(0,0,i.width,i.height),p.fillText(e,0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(t,0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s("\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!s("\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!s("\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!s("\ud83e\udef1\ud83c\udffb\u200d\ud83e\udef2\ud83c\udfff","\ud83e\udef1\ud83c\udffb\u200b\ud83e\udef2\ud83c\udfff")}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
138 +</script>
139 +<style type="text/css">
140 +img.wp-smiley,
141 +img.emoji {
142 + display: inline !important;
143 + border: none !important;
144 + box-shadow: none !important;
145 + height: 1em !important;
146 + width: 1em !important;
147 + margin: 0 0.07em !important;
148 + vertical-align: -0.1em !important;
149 + background: none !important;
150 + padding: 0 !important;
151 +}
152 +</style>
153 + <link rel='stylesheet' id='wp-block-library-css' href='https://sotramont.com/wp-includes/css/dist/block-library/style.min.css?ver=6.2.2' type='text/css' media='all' />
154 +<style id='safe-svg-svg-icon-style-inline-css' type='text/css'>
155 +.safe-svg-cover .safe-svg-inside{display:inline-block;max-width:100%}.safe-svg-cover svg{height:100%;max-height:100%;max-width:100%;width:100%}
156 +
157 +</style>
158 +<link rel='stylesheet' id='classic-theme-styles-css' href='https://sotramont.com/wp-includes/css/classic-themes.min.css?ver=6.2.2' type='text/css' media='all' />
159 +<style id='global-styles-inline-css' type='text/css'>
160 +body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
161 +.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
162 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}
163 +.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
164 +</style>
165 +<link rel='stylesheet' id='wpml-blocks-css' href='https://sotramont.com/wp-content/plugins/sitepress-multilingual-cms/dist/css/blocks/styles.css?ver=4.6.4' type='text/css' media='all' />
166 +<link rel='stylesheet' id='contact-form-7-css' href='https://sotramont.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.7.7' type='text/css' media='all' />
167 +<link rel='stylesheet' id='mainStylesheet-css' href='https://sotramont.com/wp-content/themes/custom/dist/css/main.css?v=6.8&#038;ver=6.2.2' type='text/css' media='all' />
168 +<link rel='stylesheet' id='heateor_sss_frontend_css-css' href='https://sotramont.com/wp-content/plugins/sassy-social-share/public/css/sassy-social-share-public.css?ver=3.3.52' type='text/css' media='all' />
169 +<script type='text/javascript' src='https://sotramont.com/wp-includes/js/jquery/jquery.min.js?ver=3.6.4' id='jquery-core-js'></script>
170 +<script type='text/javascript' src='https://sotramont.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.0' id='jquery-migrate-js'></script>
171 +<script type='text/javascript' id='wpml-cookie-js-extra'>
172 +/* <![CDATA[ */
173 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"\/"}};
174 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"\/"}};
175 +/* ]]> */
176 +</script>
177 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/sitepress-multilingual-cms/res/js/cookies/language-cookie.js?ver=4.6.4' id='wpml-cookie-js'></script>
178 +<script type='text/javascript' src='https://sotramont.com/wp-content/themes/custom/dist/js/main.js?v=1.6&#038;ver=6.2.2' id='custom-js-js'></script>
179 +<script type='text/javascript' id='awhitepixel-ajaxscript-js-extra'>
180 +/* <![CDATA[ */
181 +var Theme_Variables = {"ajax_url":"https:\/\/sotramont.com\/wp-admin\/admin-ajax.php"};
182 +/* ]]> */
183 +</script>
184 +<script type='text/javascript' src='https://sotramont.com/wp-content/themes/custom/ajax/ajax-project-filter.js?ver=6.2.2' id='awhitepixel-ajaxscript-js'></script>
185 +<link rel="https://api.w.org/" href="https://sotramont.com/wp-json/" /><link rel="alternate" type="application/json" href="https://sotramont.com/wp-json/wp/v2/pages/9224" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://sotramont.com/xmlrpc.php?rsd" />
186 +<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://sotramont.com/wp-includes/wlwmanifest.xml" />
187 +<meta name="generator" content="WordPress 6.2.2" />
188 +<link rel='shortlink' href='https://sotramont.com/?p=9224' />
189 +<link rel="alternate" type="application/json+oembed" href="https://sotramont.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsotramont.com%2Fliveo-pointe-claire-2-condos-locatifs-louer-pointe-claire%2F" />
190 +<link rel="alternate" type="text/xml+oembed" href="https://sotramont.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsotramont.com%2Fliveo-pointe-claire-2-condos-locatifs-louer-pointe-claire%2F&#038;format=xml" />
191 +<meta name="generator" content="WPML ver:4.6.4 stt:1,4;" />
192 +<link rel="icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-32x32.png" sizes="32x32" />
193 +<link rel="icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-192x192.png" sizes="192x192" />
194 +<link rel="apple-touch-icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-180x180.png" />
195 +<meta name="msapplication-TileImage" content="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-270x270.png" />
196 + <script>
197 + function resizeIframe(obj) {
198 + obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
199 + }
200 + </script>
201 +</head>
202 +
203 +<body class="page-template-default page page-id-9224 page-parent">
204 +
205 +<!-- Google Tag Manager (noscript) -->
206 +<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KQGBN56"
207 +height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
208 +<!-- End Google Tag Manager (noscript) -->
209 +
210 +
211 +<header class="block--header sm--pin-top" data-sm-duration-dependancy=".block--project-submenu">
212 + <div class="row content-inner-header">
213 + <div class="col col-logo col-xl-4 col-lg-6 col-md-7 col-sm-8 col-12 offset-1">
214 + <a href="https://sotramont.com"><img class="global-logo" src="https://sotramont.com/wp-content/uploads/2020/08/logo-sotramont.png"></a>
215 + </div>
216 + <div class="col col-menu col-xl-18 col-lg-16 col-md-14 col-24">
217 + <nav class="sub-navigation">
218 + <ul id="sub-menu" class="menu"><li id="menu-item-3940" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3940"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
219 +<li id="menu-item-3941" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3941"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
220 +<li id="menu-item-3942" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3942"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
221 +</ul> <div class='c--language-switcher'><a href="https://sotramont.com/en/liveo-pointe-claire-2-condos-for-rent-pointe-claire/">en</a></div> </nav>
222 + <div class="content-main-nav">
223 + <nav class="main-navigation">
224 + <div class="menu-menu-header-fr-container"><ul id="primary-menu" class="menu"><li id="menu-item-3938" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3938"><a href="https://sotramont.com/la-difference-sotramont-a-propos/">La différence Sotramont</a></li>
225 +<li id="menu-item-3939" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3939"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
226 +<li id="menu-item-809" class="js--submenu-condos menu-item menu-item-type-custom menu-item-object-custom menu-item-809"><a title="js&#8211;submenu-condo">Curtiss Locatifs</a></li>
227 +<li id="menu-item-810" class="js--submenu-locatifs menu-item menu-item-type-custom menu-item-object-custom menu-item-810"><a title="js&#8211;submenu-rental">Liveo Locatifs</a></li>
228 +</ul></div> </nav>
229 + <div class="content-btn">
230 +
231 + <a href="https://sotramont.com/condo-maison-ville-vendre-louer/" class="btn btn--icon btn--icon__left">
232 + Recherche de propriétés
233 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.3 31.8"><path d="M17.4 0l-6.8 5.7V2.5H4.2V11L0 14.6l1.3 1.5 5-4.1V4.5h2.3V10l8.8-7.4L34 16.1l1.3-1.6z"/><path d="M27.8 19.8c0-4.3-3.5-7.7-7.7-7.7-4.3 0-7.7 3.5-7.7 7.7s3.5 7.7 7.7 7.7c1.8 0 3.6-.6 4.9-1.8l6.1 6.1 1.3-1.3-6.1-6.1c1-1.3 1.5-2.9 1.5-4.6zm-1.8 0c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6 6 2.7 6 6zM6.3 16.7H4.2v14.9h11.2v-2H6.3z"/></svg>
234 + </a>
235 + </div>
236 + </div>
237 + </div>
238 + </div>
239 +
240 + <div class="show-menu-open">
241 + <div class='c--language-switcher'><a href="https://sotramont.com/en/liveo-pointe-claire-2-condos-for-rent-pointe-claire/">en</a></div> </div>
242 +
243 + <div class="c--hamburger-menu">
244 + <div class="content-border content-open">
245 + <div class="border border-1"></div>
246 + <div class="border border-2"></div>
247 + <div class="border border-3"></div>
248 + </div>
249 + <div class="content-border content-close">
250 + <div class="border border-1"></div>
251 + <div class="border border-2"></div>
252 + </div>
253 + </div>
254 +
255 +
256 + <!-- SUBMENU -->
257 + <section class="block block--header-submenu js--submenu js--submenu-maisons">
258 + <div class="row big-row">
259 + <div class="col col-22">
260 + <div class="content-inner">
261 +
262 + <div class="content-title">
263 + <h3 class="text-lg">Notre Complémentaire </h3>
264 + </div>
265 + <div class="row">
266 + <div class="col col-10 col-typo">
267 + <p></p>
268 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons">
269 + Voir tout Complémentaire dans notre portfolio
270 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
271 + </a>
272 + </div>
273 +
274 + </div>
275 + </div>
276 + </div>
277 + </div>
278 + </section>
279 +
280 + <section class="block block--header-submenu js--submenu js--submenu-condos">
281 + <div class="row big-row">
282 + <div class="col col-22">
283 + <div class="content-inner">
284 +
285 + <div class="content-title">
286 + <h3 class="text-lg">Notre Condos </h3>
287 + </div>
288 + <div class="row">
289 + <div class="col col-6 col-list">
290 + <a href="https://sotramont.com/curtiss-condos/" target="">
291 + <figure>
292 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Curtiss-1920x904.png'>
293 + </figure>
294 + <!--<h4 class="text-md">Curtiss Condos</h4>-->
295 + <h5 class="text-sm">Saint-Laurent</h5>
296 + </a>
297 + </div>
298 +
299 + <div class="col col-10 col-typo">
300 + <p>Les condos Sotramont sont toujours dans des emplacements de premier choix et s'intègrent harmonieusement à leur environnement. Ces condos très appréciés attirent un équilibre sain entre les résidents et les investisseurs.</p>
301 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=condos">
302 + Voir tout Condos dans notre portfolio
303 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
304 + </a>
305 + </div>
306 +
307 + </div>
308 + </div>
309 + </div>
310 + </div>
311 + </section>
312 +
313 + <section class="block block--header-submenu js--submenu js--submenu-locatifs">
314 + <div class="row big-row">
315 + <div class="col col-22">
316 + <div class="content-inner">
317 +
318 + <div class="content-title">
319 + <h3 class="text-lg">Notre Locatifs </h3>
320 + </div>
321 + <div class="row">
322 + <div class="col col-6 col-list">
323 + <figure>
324 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Liveo-1920x904.png'>
325 + </figure>
326 + </div>
327 +
328 + <div class="col col-6 col-locations">
329 + <div>
330 + <span><a href="https://sotramont.com/liveo-bois-franc/" target=""><h5 class="text-sm">Saint-Laurent</h5></a></span><span><a href="https://sotramont.com/liveo-mascouche/" target=""><h5 class="text-sm">Mascouche</h5></a></span><span><a href="https://sotramont.com/liveo-pointe-claire/" target=""><h5 class="text-sm">Pointe-Claire</h5></a></span><span><a href="https://sotramont.com/liveo-repentigny/" target=""><h5 class="text-sm">Repentigny</h5></a></span>
331 + </div>
332 + </div>
333 +
334 + <div class="col col-10 col-typo">
335 + <p>Les condos locatifs Sotramont sont soigneusement conçus pour offrir aux résidents un niveau de vie élevé, quel que soit le budget.</p>
336 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=locatifs">
337 + Voir tout Locatifs dans notre portfolio
338 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
339 + </a>
340 + </div>
341 +
342 + </div>
343 + </div>
344 + </div>
345 + </div>
346 + </section>
347 +
348 + <section class="block block--header-submenu js--submenu js--submenu-maisons-de-ville">
349 + <div class="row big-row">
350 + <div class="col col-22">
351 + <div class="content-inner">
352 +
353 + <div class="content-title">
354 + <h3 class="text-lg">Notre Maisons de ville </h3>
355 + </div>
356 + <div class="row">
357 + <div class="col col-10 col-typo">
358 + <p>Les maisons de ville de Sotramont sont toujours situées dans des endroits recherchés et construites dans un souci de longévité. Ces maisons de ville fiables attirent un équilibre sain entre plusieurs générations.</p>
359 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons-de-ville">
360 + Voir tout Maisons de ville dans notre portfolio
361 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
362 + </a>
363 + </div>
364 +
365 + </div>
366 + </div>
367 + </div>
368 + </div>
369 + </section>
370 +
371 +
372 +</header>
373 +
374 +
375 +<div class="c--toggle-hamburger-menu">
376 + <div class="big-row row">
377 + <div class="col-md-18 col-sm-20 col-22">
378 + <nav id="site-navigation" class="main-navigation">
379 + <div class="content-btn">
380 +
381 + <a href="https://sotramont.com/condo-maison-ville-vendre-louer/" class="btn btn--icon btn--icon__left">
382 + Recherche de propriétés
383 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.3 31.8"><path d="M17.4 0l-6.8 5.7V2.5H4.2V11L0 14.6l1.3 1.5 5-4.1V4.5h2.3V10l8.8-7.4L34 16.1l1.3-1.6z"/><path d="M27.8 19.8c0-4.3-3.5-7.7-7.7-7.7-4.3 0-7.7 3.5-7.7 7.7s3.5 7.7 7.7 7.7c1.8 0 3.6-.6 4.9-1.8l6.1 6.1 1.3-1.3-6.1-6.1c1-1.3 1.5-2.9 1.5-4.6zm-1.8 0c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6 6 2.7 6 6zM6.3 16.7H4.2v14.9h11.2v-2H6.3z"/></svg>
384 + </a>
385 + </div>
386 +
387 + <div class="menu-menu-header-fr-container"><ul id="primary-menu" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3938"><a href="https://sotramont.com/la-difference-sotramont-a-propos/">La différence Sotramont</a></li>
388 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3939"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
389 +<li class="js--submenu-condos menu-item menu-item-type-custom menu-item-object-custom menu-item-809"><a title="js&#8211;submenu-condo">Curtiss Locatifs</a></li>
390 +<li class="js--submenu-locatifs menu-item menu-item-type-custom menu-item-object-custom menu-item-810"><a title="js&#8211;submenu-rental">Liveo Locatifs</a></li>
391 +</ul></div>
392 + <div class="content-list-submenu">
393 +
394 + <div class="content-title">
395 + <h3 class="text-lg">Notre Complémentaire </h3>
396 + </div>
397 + <div class="row">
398 + <div class="col col-10 col-typo">
399 + <p></p>
400 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons">
401 + Voir tout Complémentaire dans notre portfolio
402 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
403 + </a>
404 + </div>
405 +
406 + </div>
407 +
408 + <div class="content-title">
409 + <h3 class="text-lg">Notre Condos </h3>
410 + </div>
411 + <div class="row">
412 + <div class="col col-6 col-list">
413 + <a href="https://sotramont.com/curtiss-condos/" target="">
414 + <figure>
415 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Curtiss-1920x904.png'>
416 + </figure>
417 + <!--<h4 class="text-md">Curtiss Condos</h4>-->
418 + <h5 class="text-sm">Saint-Laurent</h5>
419 + </a>
420 + </div>
421 +
422 + <div class="col col-10 col-typo">
423 + <p>Les condos Sotramont sont toujours dans des emplacements de premier choix et s'intègrent harmonieusement à leur environnement. Ces condos très appréciés attirent un équilibre sain entre les résidents et les investisseurs.</p>
424 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=condos">
425 + Voir tout Condos dans notre portfolio
426 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
427 + </a>
428 + </div>
429 +
430 + </div>
431 +
432 + <div class="content-title">
433 + <h3 class="text-lg">Notre Locatifs </h3>
434 + </div>
435 + <div class="row">
436 + <div class="col col-6 col-list">
437 + <figure>
438 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Liveo-1920x904.png'>
439 + </figure>
440 + </div>
441 +
442 + <div class="col col-6 col-locations">
443 + <div>
444 + <span><a href="https://sotramont.com/liveo-bois-franc/" target=""><h5 class="text-sm">Saint-Laurent</h5></a></span><span><a href="https://sotramont.com/liveo-mascouche/" target=""><h5 class="text-sm">Mascouche</h5></a></span><span><a href="https://sotramont.com/liveo-pointe-claire/" target=""><h5 class="text-sm">Pointe-Claire</h5></a></span><span><a href="https://sotramont.com/liveo-repentigny/" target=""><h5 class="text-sm">Repentigny</h5></a></span>
445 + </div>
446 + </div>
447 +
448 + <div class="col col-10 col-typo">
449 + <p>Les condos locatifs Sotramont sont soigneusement conçus pour offrir aux résidents un niveau de vie élevé, quel que soit le budget.</p>
450 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=locatifs">
451 + Voir tout Locatifs dans notre portfolio
452 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
453 + </a>
454 + </div>
455 +
456 + </div>
457 +
458 + <div class="content-title">
459 + <h3 class="text-lg">Notre Maisons de ville </h3>
460 + </div>
461 + <div class="row">
462 + <div class="col col-10 col-typo">
463 + <p>Les maisons de ville de Sotramont sont toujours situées dans des endroits recherchés et construites dans un souci de longévité. Ces maisons de ville fiables attirent un équilibre sain entre plusieurs générations.</p>
464 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons-de-ville">
465 + Voir tout Maisons de ville dans notre portfolio
466 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
467 + </a>
468 + </div>
469 +
470 + </div>
471 + </div>
472 +
473 + </nav>
474 + </div>
475 + </div>
476 +
477 + <div class="content-subnav">
478 + <ul id="sub-menu" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3940"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
479 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3941"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
480 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3942"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
481 +</ul> </div>
482 +
483 + <div class="content-animate"></div>
484 +
485 +
486 +</div>
487 +
488 +
489 +
490 +
491 + <style>
492 + ::selection{
493 + background:#002e5d;
494 +
495 + svg{
496 + background-color:#002e5d;
497 + }
498 + }
499 +
500 + ::-moz-selection{
501 + background:#002e5d;
502 +
503 + svg{
504 + background-color:#002e5d;
505 + }
506 + }
507 +
508 + .block .btn{
509 + background-color:#002e5d !important;
510 + border-color:#002e5d !important;
511 + }
512 +
513 + .block--form .content-box{
514 + background:#002e5d;
515 + }
516 +
517 + .c--form input[type="submit"]{
518 + background-color:#fff !important;
519 + border-color:#fff !important;
520 + color:#000;
521 + }
522 +
523 + .c--toggle-click .text-lg{
524 + background-color:#002e5d !important;
525 + border-color:#002e5d !important;
526 + }
527 +
528 + .block .swiper-button-prev{
529 + background-color:#002e5dE0;
530 + }
531 +
532 + .block .swiper-button-next{
533 + background-color:#002e5d;
534 + }
535 +
536 + .block--features .content-list .single-item.item-active .text-md{
537 + color:#002e5d !important;
538 + }
539 +
540 + .block--features .content-list .single-item.item-active svg{
541 + fill:#002e5d !important;
542 + }
543 +
544 + .block--units .content-icon-plus svg{
545 + fill:#002e5d;
546 + }
547 +
548 + .block--promo .content-inner{
549 + background:#002e5d15;
550 + }
551 +
552 + .block:not(.block--footer) .btn--underscore{
553 + color:#002e5d !important;
554 + }
555 +
556 + .block:not(.block--footer) .btn--underscore:before, .block:not(.block--footer) .btn--underscore:after{
557 + background:#002e5d !important;
558 + }
559 +
560 + .block--banner .text-sm:before{
561 + background:#002e5d;
562 + }
563 +
564 + .block--project-submenu{
565 + background:#002e5d;
566 + }
567 +
568 + .sticky-button-form .icon-close{
569 + background:#002e5d;
570 + }
571 +
572 + .sticky-button-form .inner-btn{
573 + background:#002e5d;
574 + border-color:#002e5d;
575 + }
576 + </style>
577 +
578 +
579 +
580 +
581 +<section id="block--banner" class="block block--banner" >
582 + <div class="content-inner">
583 + <div class="row">
584 + <div class="col col-typo col-xl-12 offset-xl-3 offset-md-2 col-sm-14 col-22 offset-1">
585 + <div>
586 + <span class="text-sm">Pointe-Claire</span>
587 + </div>
588 + <h1 class="text-lg">Liveo Pointe-Claire Phase 2</h1>
589 + <p class="text-p">Nous avons demandé aux résidents potentiels ce qui leur importait le plus et avons combiné leurs idées avec nos décennies d’expérience dans la construction pour concevoir une propriété locative axée sur la tranquillité d’esprit et la qualité de vie.</p>
590 + </div>
591 + <div class="col col-image col-sm-14 col-24 offset-0">
592 +
593 + <figure class='c--image-bg'>
594 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/11/LPC2-1024x683.jpg);'></div>
595 + </figure>
596 + </div>
597 + </div>
598 + </div>
599 +</section>
600 +
601 +
602 +<section id="block--project-submenu" class="block block--project-submenu sm--pin-top">
603 + <div class="content-inner">
604 + <div class="row">
605 + <div class="col col-lg-20 col-22">
606 +
607 +
608 + <ul>
609 + <li class="content-logo"><a href="https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/"><img decoding="async" src="https://sotramont.com/wp-content/uploads/2020/07/Liveo-PC-white-480x175.png"></a></li>
610 + <li class='active'><a href='https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/'>Détails du projet</a></li> <li class="page_item page-item-9344"><a href="https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/plans-dunite/">Plans d&#8217;unité</a></li>
611 +<li class="page_item page-item-9240"><a href="https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/design-dinterieur/">Design d&#8217;intérieur</a></li>
612 +<li class="page_item page-item-9243"><a href="https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/galerie-des-medias/">Galerie des médias</a></li>
613 +<li class="page_item page-item-9245"><a href="https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/visite-virtuelle/">Visite virtuelle</a></li>
614 +<li class="page_item page-item-9244"><a href="https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/contact/">Contact</a></li>
615 + </ul>
616 + </div>
617 + </div>
618 + </div>
619 +</section>
620 +
621 +
622 +<section id="block--project-about" class="block block--project-about" style="background-color:#ffffff;">
623 + <div class="row">
624 + <div class="col col-xl-10 offset-xl-2 offset-md-2 col-md-11 col-22 offset-1">
625 + <h2 class="text-lg">VIVRE POINTE-CLAIRE</h2>
626 +
627 + <div class="content-wysiwyg">
628 + <p>Nous nous occupons du fondamental afin que vous puissiez consacrer votre temps et énergie à ce qui compte le plus pour vous. Liveo offre un ensemble d’avantages qui simplifient la vie de condo. L’eau chaude, la climatisation, l’internet, la télévision par câble, les appareils de blanchisserie et les appareils de cuisine sont tous inclus dans le tarif de location.</p>
629 +<p>Nous pensons que l’emplacement est tout aussi important. Liveo est le dernier ajout au Quartier Greenwich, un quartier tranquille récemment développé par Sotramont,  à Pointe-Claire avec des entrées sur le boulevard St-Jean et l’avenue Paprican.</p>
630 +<p>L’emplacement a été choisi pour de nombreuses raisons positives. Accédez facilement à des services tels que l’épicerie, la pharmacie et les soins dentaires. La bibliothèque municipale, le centre commercial Fairview, le golf Beaconsfield et le centre aquatique de Pointe-Claire sont à seulement quelques pâtés de maisons.</p>
631 +<p>Dans le quartier, il y a un parc de 2 acres avec des arbres centenaires et un sentier pédestre entretenu. En 2020, un nouveau terrain de jeu impressionnant a également été ajouté. Le projet Liveo lui-même dispose d’une piste cyclable dédiée longeant des arbres matures.</p>
632 +<p>Pour ceux qui aiment explorer l’île de Montréal, accédez rapidement à la future station REM, à l’autoroute 40 ou à l’autoroute 20 et aux arrêts d’autobus publics.</p>
633 + </div>
634 +
635 +
636 + </div>
637 + <div class="col col-md-8 offset-md-2 col-22 offset-1">
638 +
639 + <div class="content-tag">
640 + <div class="row">
641 + <div class="single-tag col col-12">
642 +
643 + <div class="single-tag-image">
644 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-09.png'> </div>
645 + <h4 class="text-md">CONSTRUCTION</br> TERMINÉE</h4>
646 + </div>
647 + <div class="single-tag col col-12">
648 +
649 + <div class="single-tag-image">
650 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-31.png'> </div>
651 + <h4 class="text-md">OCCUPATION </br>IMMÉDIATE</h4>
652 + </div>
653 + <div class="single-tag col col-12">
654 +
655 + <div class="single-tag-image">
656 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-22.png'> </div>
657 + <h4 class="text-md">PLANS DE </br> 1-2 CHAMBRES</h4>
658 + </div>
659 + <div class="single-tag col col-12">
660 +
661 + <div class="single-tag-image">
662 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-29.png'> </div>
663 + <h4 class="text-md">DE 1 575$ </br> PAR MOIS</h4>
664 + </div>
665 + <div class="single-tag col col-12">
666 +
667 + <div class="single-tag-image">
668 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-24.png'> </div>
669 + <h4 class="text-md">ÉLECTROMÉNAGERS </br> INCLUS</h4>
670 + </div>
671 + <div class="single-tag col col-12">
672 +
673 + <div class="single-tag-image">
674 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-36.png'> </div>
675 + <h4 class="text-md">BUANDERIE </br> PRIVÉE</h4>
676 + </div>
677 + <div class="single-tag col col-12">
678 +
679 + <div class="single-tag-image">
680 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-23.png'> </div>
681 + <h4 class="text-md">CLIMATISATION </br> INDIVIDUELLE</h4>
682 + </div>
683 + <div class="single-tag col col-12">
684 +
685 + <div class="single-tag-image">
686 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-13.png'> </div>
687 + <h4 class="text-md">ANIMAUX </br> ACCEPTÉS</h4>
688 + </div>
689 + <div class="single-tag col col-12">
690 +
691 + <div class="single-tag-image">
692 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-28.png'> </div>
693 + <h4 class="text-md">CONNECTION </br> INTERNET</h4>
694 + </div>
695 + <div class="single-tag col col-12">
696 +
697 + <div class="single-tag-image">
698 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-35.png'> </div>
699 + <h4 class="text-md">TÉLÉVISION </br> PAR CÂBLE</h4>
700 + </div>
701 + </div>
702 + </div>
703 + </div>
704 + </div>
705 +</section>
706 +
707 +
708 +<section id="block--image-slider" class="block block--image-slider size-lg">
709 +
710 +
711 + <div class='js--slider'>
712 + <div class='swiper-container'>
713 + <div class='swiper-wrapper'><div class='swiper-slide'>
714 + <figure class='c--image-bg'>
715 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/05/LPC-rooftop-1920x1280.jpg);'></div>
716 + </figure>
717 + </div><div class='swiper-slide'>
718 + <figure class='c--image-bg'>
719 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/03/Liveo-PC-siteplan-1920x1280.jpg);'></div>
720 + </figure>
721 + </div>
722 + </div>
723 + <div class='swiper-button-next'>
724 + <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 845'><path d='M87.5 845c-22.9 0-45.7-8.9-62.9-26.6-33.6-34.7-32.7-90.1 2-123.7l280.3-271.3L26.5 150.2C-8.2 116.5-8.9 61.1 24.8 26.5c33.7-34.6 89.1-35.4 123.7-1.6l345 336c16.9 16.5 26.5 39.2 26.5 62.8 0 23.6-9.6 46.3-26.6 62.7l-345 334c-17 16.4-39 24.6-60.9 24.6z'></path></svg>
725 + </div>
726 + <div class='swiper-button-prev'>
727 + <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 845'><path d='M87.5 845c-22.9 0-45.7-8.9-62.9-26.6-33.6-34.7-32.7-90.1 2-123.7l280.3-271.3L26.5 150.2C-8.2 116.5-8.9 61.1 24.8 26.5c33.7-34.6 89.1-35.4 123.7-1.6l345 336c16.9 16.5 26.5 39.2 26.5 62.8 0 23.6-9.6 46.3-26.6 62.7l-345 334c-17 16.4-39 24.6-60.9 24.6z'></path></svg>
728 + </div>
729 + </div>
730 + </div>
731 +
732 +</section>
733 +
734 +
735 +<section id="block--project-about" class="block block--project-about" style="background-color:#ffffff;">
736 + <div class="row">
737 + <div class="col col-xl-10 offset-xl-2 offset-md-2 col-md-11 col-22 offset-1">
738 + <h2 class="text-lg">UN STYLE DE VIE QUI NE VIEILLIT JAMAIS</h2>
739 +
740 + <div class="content-wysiwyg">
741 + <p>Liveo propose un style de vie difficile à battre. Le bâtiment est conçu avec une multitude d’attributs à fin de valoriser votre tranquillité d’esprit.</p>
742 +<p>Pour célébrer la tradition de Pointe-Claire en tant que producteur de nageurs de classe mondiale, Liveo dispose d’une piscine intérieure de 70 pieds de long, parfaite pour l’exercice quotidien et la détente en toute saison. Pour ceux qui ont un style de vie plus actif, profitez également d’une salle d’exercice professionnelle et de supports dédiés aux vélos.</p>
743 +<p>Vous avez le choix entre trois terrasses extérieures. Avec l’un des bâtiments les plus hauts de Pointe-Claire, vous pouvez profiter des vues les plus impressionnantes à 360 degrés de l’île de Montréal depuis la terrasse sur le toit. Au rez-de-chaussée, retrouvez une terrasse ensoleillée accessible depuis la piscine et une autre terrasse reliée à la salle communautaire.</p>
744 +<p>La salle communautaire est un espace flexible préparé pour une gamme d’activités, telles que la lecture paisible, les parties de cartes entre amis, les sports télévisés ou accueillir des événements avec traiteur.</p>
745 +<p>Il convient également de mentionner que Liveo Pointe-Claire aura une conciergerie à temps plein qui réside dans le bâtiment, et en plus des boîtes postales régulières, il y a un espace qui dédié aux colis réfrigérés et de plus gros volume,  afin que vous n’ayez pas à vous soucier de manquer vos livraisons .</p>
746 +<p>Si vous êtes nouveau dans la vie en copropriété, vous apprécierez peut-être que nous avons un parking souterrain sécurisé, une zone de lavage de voiture, deux ascenseurs efficaces, des caméras de sécurité et chaque porte d’entrée est accessible uniquement par des porte-clés électroniques remis aux résidents.</p>
747 + </div>
748 +
749 +
750 + </div>
751 + <div class="col col-md-8 offset-md-2 col-22 offset-1">
752 +
753 + <div class="content-tag">
754 + <div class="row">
755 + <div class="single-tag col col-12">
756 +
757 + <div class="single-tag-image">
758 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-01.png'> </div>
759 + <h4 class="text-md">PISCINE </br> INTÉRIEURE</h4>
760 + </div>
761 + <div class="single-tag col col-12">
762 +
763 + <div class="single-tag-image">
764 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-20.png'> </div>
765 + <h4 class="text-md">TERRASSE </br> PISCINE</h4>
766 + </div>
767 + <div class="single-tag col col-12">
768 +
769 + <div class="single-tag-image">
770 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-08.png'> </div>
771 + <h4 class="text-md">SALLE </br> D’ENTRAÎNEMENT</h4>
772 + </div>
773 + <div class="single-tag col col-12">
774 +
775 + <div class="single-tag-image">
776 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-14.png'> </div>
777 + <h4 class="text-md">TERRASSE </br> SUR LE TOIT</h4>
778 + </div>
779 + <div class="single-tag col col-12">
780 +
781 + <div class="single-tag-image">
782 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-26.png'> </div>
783 + <h4 class="text-md">SALLE </br> COMMUNAUTAIRE</h4>
784 + </div>
785 + <div class="single-tag col col-12">
786 +
787 + <div class="single-tag-image">
788 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-06.png'> </div>
789 + <h4 class="text-md">TERRASSE </br> COMMUNAUTAIRE</h4>
790 + </div>
791 + <div class="single-tag col col-12">
792 +
793 + <div class="single-tag-image">
794 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-21.png'> </div>
795 + <h4 class="text-md">LIVRAISON </br> DE COLIS</h4>
796 + </div>
797 + <div class="single-tag col col-12">
798 +
799 + <div class="single-tag-image">
800 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-19.png'> </div>
801 + <h4 class="text-md">DEUX </br> ASCENSEURS</h4>
802 + </div>
803 + <div class="single-tag col col-12">
804 +
805 + <div class="single-tag-image">
806 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-30.png'> </div>
807 + <h4 class="text-md">RÉSIDENT </br> GARDIEN</h4>
808 + </div>
809 + <div class="single-tag col col-12">
810 +
811 + <div class="single-tag-image">
812 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-18.png'> </div>
813 + <h4 class="text-md">STATIONNEMENT </br> INTÉRIEUR</h4>
814 + </div>
815 + <div class="single-tag col col-12">
816 +
817 + <div class="single-tag-image">
818 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-17.png'> </div>
819 + <h4 class="text-md">STATION </br> DE LAVAGE</h4>
820 + </div>
821 + <div class="single-tag col col-12">
822 +
823 + <div class="single-tag-image">
824 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-04.png'> </div>
825 + <h4 class="text-md">STATION </br> DE CHARGE</h4>
826 + </div>
827 + <div class="single-tag col col-12">
828 +
829 + <div class="single-tag-image">
830 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-15.png'> </div>
831 + <h4 class="text-md">RANGEMENT </br> À VÉLOS</h4>
832 + </div>
833 + <div class="single-tag col col-12">
834 +
835 + <div class="single-tag-image">
836 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-34.png'> </div>
837 + <h4 class="text-md">CASIERS DE </br> RANGEMENT</h4>
838 + </div>
839 + </div>
840 + </div>
841 + </div>
842 + </div>
843 +</section>
844 +
845 +
846 +<section id="block--image-slider" class="block block--image-slider size-lg">
847 +
848 +
849 + <div class='js--slider'>
850 + <div class='swiper-container'>
851 + <div class='swiper-wrapper'><div class='swiper-slide'>
852 + <figure class='c--image-bg'>
853 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/03/Liveo-PC-pool-1920x1280.jpg);'></div>
854 + </figure>
855 + </div><div class='swiper-slide'>
856 + <figure class='c--image-bg'>
857 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/03/Liveo-PC-gym-1920x960.jpg);'></div>
858 + </figure>
859 + </div><div class='swiper-slide'>
860 + <figure class='c--image-bg'>
861 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/03/Liveo-PC-community-room-1920x867.jpg);'></div>
862 + </figure>
863 + </div>
864 + </div>
865 + <div class='swiper-button-next'>
866 + <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 845'><path d='M87.5 845c-22.9 0-45.7-8.9-62.9-26.6-33.6-34.7-32.7-90.1 2-123.7l280.3-271.3L26.5 150.2C-8.2 116.5-8.9 61.1 24.8 26.5c33.7-34.6 89.1-35.4 123.7-1.6l345 336c16.9 16.5 26.5 39.2 26.5 62.8 0 23.6-9.6 46.3-26.6 62.7l-345 334c-17 16.4-39 24.6-60.9 24.6z'></path></svg>
867 + </div>
868 + <div class='swiper-button-prev'>
869 + <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 845'><path d='M87.5 845c-22.9 0-45.7-8.9-62.9-26.6-33.6-34.7-32.7-90.1 2-123.7l280.3-271.3L26.5 150.2C-8.2 116.5-8.9 61.1 24.8 26.5c33.7-34.6 89.1-35.4 123.7-1.6l345 336c16.9 16.5 26.5 39.2 26.5 62.8 0 23.6-9.6 46.3-26.6 62.7l-345 334c-17 16.4-39 24.6-60.9 24.6z'></path></svg>
870 + </div>
871 + </div>
872 + </div>
873 +
874 +</section>
875 +
876 +
877 +<section id="block--features" class="block block--features" style="background-color:#ffffff;">
878 +
879 + <div class="content-text">
880 + <div class="row">
881 + <div class="col col-lg-12 col-sm-14 col-22">
882 + <h3 class="text-lg">NOUS GARDONS VOTRE CONFORT À L’ESPRIT</h3> <div class="content-wysiwyg">
883 + <p>En tant que constructeur, nous avons à cœur  l’importance des performances acoustiques et le contrôle de la température, sur le bien-être de votre quotidien.</p>
884 + </div>
885 + </div>
886 + </div>
887 + </div>
888 +
889 + <div class="content-list">
890 + <div class="row">
891 +
892 + <div class="col col-list col-lg-10 offset-lg-2 col-sm-11 col-22 offset-1">
893 + <div class="single-item single-item-0 item-active" data-id="0">
894 + <h4 class="text-md">CONTRÔLE DE LA TEMPÉRATURE</h4> <!-- Icon Arrow -->
895 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.4 22" style="enable-background:new 0 0 12.4 22"><path d="M1 22c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4L9.6 11 .3 1.7C-.1 1.3-.1.7.3.3s1-.4 1.4 0L12.4 11 1.7 21.7c-.2.2-.4.3-.7.3z"/></svg>
896 + </div>
897 + <div class="single-item single-item-1 " data-id="1">
898 + <h4 class="text-md">PERFORMANCE ACOUSTIQUE</h4> <!-- Icon Arrow -->
899 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.4 22" style="enable-background:new 0 0 12.4 22"><path d="M1 22c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4L9.6 11 .3 1.7C-.1 1.3-.1.7.3.3s1-.4 1.4 0L12.4 11 1.7 21.7c-.2.2-.4.3-.7.3z"/></svg>
900 + </div>
901 + </div>
902 +
903 + <div class="col col-content col-lg-8 offset-sm-2 col-sm-9 col-22 offset-1">
904 + <div class="single-item-content single-item-0 item-active">
905 + <div class="single-item-content single-item-0 item-active">
906 +<p>En tant que Montréalais, nous aimons nos saisons. Les condos de location Liveo sont préparés pour ce que Mère Nature nous propose.</p>
907 +<p>Atteignez la température ambiante désirez grâce au chauffage électrique par plinthe, contrôlé individuellement par pièce.</p>
908 +<p>Pour les jours les plus chauds, chaque condo comprend une unité de climatisation avec des paramètres multifonctionnels.</p>
909 +</div>
910 + </div>
911 + <div class="single-item-content single-item-1 ">
912 + <div class="single-item-content single-item-1 item-active">
913 +<p>Les condos locatifs Liveo sont des structures en béton recouvertes de façades en briques. Combinée à une couche d’isolation très étanche et des fenêtres Energy Star scellées, l’enveloppe de bâtiment primée de Sotramont, offre une barrière paisible contre le bruit extérieur.</p>
914 +<p>De plus, chaque condo a des portes d’entrée épaisses et des murs de séparation pour réduire le bruit et la sécurité incendie. C’est quelque chose à considérer lors de la recherche de votre prochaine résidence!</p>
915 +</div>
916 + </div>
917 +
918 + <div class="content-bg-inner" style="background-color:#ffffff;"></div>
919 + </div>
920 +
921 + </div>
922 + </div>
923 +</section>
924 +
925 +<script>
926 +jQuery(document).ready(function(){
927 + jQuery(document).on("click", ".block--features .single-item", function(){
928 + var valueId = jQuery(this).data("id");
929 +
930 + jQuery('.block--features .single-item, .block--features .single-item-content').removeClass('item-active');
931 + jQuery('.block--features .single-item-'+valueId).addClass('item-active');
932 + });
933 +});
934 +</script>
935 +
936 +
937 +
938 +
939 + <section id="block--calendly" class="block block--calendly" style="background-color:#e5e5e5;">
940 +
941 + <link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
942 + <script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript"></script>
943 +
944 + <div class="row big-row">
945 + <div class="col col-xl-20 col-22">
946 + <div class="content-inner" style="background-color:#ffffff;">
947 + <div class="row">
948 + <div class="col col-md-12 col-24">
949 +
950 + <figure class='c--image-bg'>
951 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2022/12/IMG_7679.jpeg);'></div>
952 + </figure>
953 + <h3 class="text-lg">Armel Rugero</h3>
954 + <h4 class="text-md">Visitez notre espace de location avec Armel pour trouver votre prochain condo à louer.</h4>
955 + <div class="content-btn">
956 + <!-- Calendly link widget begin -->
957 + <a class="btn" href="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/armel-liveo/30min?back=1&#038;month=2026-04'});return false;">RÉSERVER UNE RÉUNION</a>
958 + <!-- Calendly link widget end -->
959 + </div>
960 + </div>
961 + </div>
962 + </div>
963 + </div>
964 + </div>
965 +
966 + </section>
967 +
968 +
969 +
970 +
971 + <section id="block--form" class="block block--form" style="background-color:#082c5c;">
972 + <div class="row">
973 + <div class="col col-lg-20 col-22">
974 +
975 + <div class="content-box" >
976 + <h3 class='text-lg'>Rejoinez <br/> Liveo Pointe-Claire</h3>
977 + <h4 class='text-md'>RECEVEZ LES MISES À JOUR DU PROJET ET AVOIR UN ACCÈS PRIORITAIRE À DE NOUVELLES FONCTIONNALITÉS.</h4>
978 +
979 + <div class="c--form c--mailchimp-form">
980 + <div class="c--mailchimp-form c--form">
981 +
982 + <!-- Begin Mailchimp Signup Form -->
983 +
984 +<style type="text/css">
985 + #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
986 + /* Add your own Mailchimp form style overrides in your site stylesheet or in this style block.
987 + We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
988 +</style>
989 +<div id="mc_embed_signup">
990 +<form action="https://quartiergreenwich.us11.list-manage.com/subscribe/post?u=72dd37a7d8c7bb8b4515bf948&amp;id=f4a7fe9b7a" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
991 + <div id="mc_embed_signup_scroll">
992 +
993 +<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
994 +<div class="mc-field-group">
995 + <label for="mce-EMAIL">Courriel <span class="asterisk">*</span>
996 +</label>
997 + <input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
998 +</div>
999 +<div class="mc-field-group">
1000 + <label for="mce-FNAME">Prénom <span class="asterisk">*</span>
1001 + <input type="text" value="" name="FNAME" class="required fname" id="mce-FNAME">
1002 +</div>
1003 +<div class="mc-field-group">
1004 + <label for="mce-LNAME">Nom <span class="asterisk">*</span>
1005 + <input type="text" value="" name="LNAME" class="required lname" id="mce-LNAME">
1006 +</div>
1007 +<div class="mc-field-group size1of2">
1008 + <label for="mce-PHONE">Téléphone </label>
1009 + <input type="text" name="PHONE" class="" value="" id="mce-PHONE">
1010 +</div>
1011 + <div id="mce-responses" class="clear">
1012 + <div class="response" id="mce-error-response" style="display:none"></div>
1013 + <div class="response" id="mce-success-response" style="display:none"></div>
1014 + </div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
1015 + <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_72dd37a7d8c7bb8b4515bf948_f4a7fe9b7a" tabindex="-1" value=""></div>
1016 + <div class="clear"><input type="submit" value="S'abonner" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
1017 + </div>
1018 +</form>
1019 +</div>
1020 +
1021 +<!--End mc_embed_signup-->
1022 + <!--<iframe loading="lazy" src="http://eepurl.com/g58LRv" width="100%" height="auto" style="width:100%; height:auto;" onload="resizeIframe(this)">-->
1023 + </div>
1024 + </div>
1025 +
1026 + </div>
1027 +
1028 + </div>
1029 + </div>
1030 + </section>
1031 +
1032 +
1033 +
1034 +<!--<section id="block--mailchimp-form" class="block--mailchimp-form">
1035 +
1036 + <div class="row">
1037 + <div class="col col-14 offset-5">
1038 +
1039 + <div class="c--mailchimp-form c--form">
1040 + <div class="js--project-list-actual"></div>
1041 + <div class="js--input-project-in" style="display:none;">Liveo Pointe-Claire 2</div>
1042 + </div>
1043 +
1044 + </div>
1045 + </div>
1046 +
1047 +</section>-->
1048 +
1049 + <button class="sticky-button-form">
1050 + <span class="icon-close">
1051 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512.7 512.7" xml:space="preserve"><path d="m512.7 424.3-168-168 168-167.9L424.3 0l-168 167.9L88.4 0 0 88.4l167.9 167.9L0 424.3l88.4 88.4 167.9-168 168 168z"/></svg>
1052 + </span>
1053 + <span class="inner-btn js--scroll-to" data-scroll-to=".block--form">Abonnez-vous</span>
1054 + </button>
1055 +
1056 +
1057 +
1058 +<footer class="block block--footer">
1059 +
1060 + <div class="big-row row">
1061 + <div class="col col-lg-20 col-md-22 col-20">
1062 +
1063 + <!-- Row 1 -->
1064 + <div class="row row-1">
1065 + <div class="col col-text-1 col-md-9 col-24">
1066 + <div class="content-logo">
1067 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/08/logo-sotramont.png'> </div>
1068 +
1069 +
1070 +
1071 + <p>Basé à Montréal, un développeur immobilier, constructeur et promoteur de maisons neuves, condos et locatifs depuis 1968.</p>
1072 +
1073 + </div>
1074 +
1075 + <!-- - - - - - Loop Category Project && Project associated with the category - - - - - -->
1076 + <div class="col col-md-5 col-sm-8 offset-sm-0 col-18 offset-3 content-list-project">
1077 + <h3 class="text-lg sm--toggle-class">Condos</h3>
1078 + <ul>
1079 + <li>
1080 + <a href="https://sotramont.com/curtiss-condos/" target="">
1081 + Curtiss Condos </a>
1082 + </li>
1083 + </ul>
1084 + </div>
1085 + <div class="col col-md-5 col-sm-8 offset-sm-0 col-18 offset-3 content-list-project">
1086 + <h3 class="text-lg sm--toggle-class">Locatifs</h3>
1087 + <ul>
1088 + <li>
1089 + <a href="https://sotramont.com/liveo-bois-franc/" target="">
1090 + Liveo Bois-Franc </a>
1091 + </li>
1092 + <li>
1093 + <a href="https://sotramont.com/liveo-mascouche/" target="">
1094 + Liveo Mascouche </a>
1095 + </li>
1096 + <li>
1097 + <a href="https://sotramont.com/liveo-pointe-claire/" target="">
1098 + Liveo Pointe-Claire </a>
1099 + </li>
1100 + <li>
1101 + <a href="https://sotramont.com/liveo-repentigny/" target="">
1102 + Liveo Repentigny </a>
1103 + </li>
1104 + </ul>
1105 + </div>
1106 + <!-- - - - - - END LOOP - - - - - -->
1107 +
1108 + </div>
1109 +
1110 + <!-- Row 2 -->
1111 + <div class="row row-2 sm--toggle-class">
1112 + <div class="col col-md-12 col-24">
1113 + <h4 class="text-sm">Bureau Chef</h4>
1114 +
1115 + <p>55, rue de Louvain Ouest, Suite 350<br />
1116 +Montréal, QC, H2N 1A4, Canada</p>
1117 + </div>
1118 + <div class="col col-md-12 col-24 col-right">
1119 + <nav class="footer-navigation">
1120 + <ul id="footer-nav" class="menu"><li id="menu-item-3943" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3943"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
1121 +<li id="menu-item-3944" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3944"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
1122 +<li id="menu-item-3945" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3945"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
1123 +<li id="menu-item-3946" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3946"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
1124 +</ul> </nav>
1125 + </div>
1126 + </div>
1127 +
1128 + <!-- Row 3 -->
1129 + <div class="row row-3">
1130 + <div class="col col-md-18 col-24">
1131 + <p>&copy;2026 Sotramont. Tous droits réservés.</p>
1132 + <nav class="second-nav">
1133 + </nav>
1134 + </div>
1135 + <div class="col col-md-6 col-24 col-right">
1136 + <ul class='list--social js--hover-parent'><li><a href="https://www.instagram.com/sotramont/" target="_blank">
1137 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M352 0H160C71.648 0 0 71.648 0 160v192c0 88.352 71.648 160 160 160h192c88.352 0 160-71.648 160-160V160C512 71.648 440.352 0 352 0zm112 352c0 61.76-50.24 112-112 112H160c-61.76 0-112-50.24-112-112V160C48 98.24 98.24 48 160 48h192c61.76 0 112 50.24 112 112v192z"/><path d="M256 128c-70.688 0-128 57.312-128 128s57.312 128 128 128 128-57.312 128-128-57.312-128-128-128zm0 208c-44.096 0-80-35.904-80-80 0-44.128 35.904-80 80-80s80 35.872 80 80c0 44.096-35.904 80-80 80z"/><circle cx="393.6" cy="118.4" r="17.056"/></svg>
1138 + </a></li><li><a href="https://www.facebook.com/Sotramont/" target="_blank">
1139 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 310 310"><path d="M81.703 165.106h33.981V305a5 5 0 005 5H178.3a5 5 0 005-5V165.765h39.064a5 5 0 004.967-4.429l5.933-51.502a5 5 0 00-4.966-5.572h-44.996V71.978c0-9.732 5.24-14.667 15.576-14.667h29.42a5 5 0 005-5V5.037a5 5 0 00-5-5h-40.545A39.746 39.746 0 00185.896 0c-7.035 0-31.488 1.381-50.804 19.151-21.402 19.692-18.427 43.27-17.716 47.358v37.752H81.703a5 5 0 00-5 5v50.844a5 5 0 005 5.001z"/></svg>
1140 + </a></li><li><a href="https://www.linkedin.com/company/sotramont/" target="_blank">
1141 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 295.8 297.8"><path d="M80.6 272.1c0 4.9-4 8.9-8.9 8.9h-38c-4.9 0-8.9-4-8.9-8.9V112.9c0-4.9 4-8.9 8.9-8.9h38c4.9 0 8.9 4 8.9 8.9v159.2zM52.7 88.9c-19.9 0-36.1-16.2-36.1-36.1s16.2-36.1 36.1-36.1 36.1 16.2 36.1 36.1-16.1 36.1-36.1 36.1zm226.5 184c0 4.5-3.7 8.2-8.2 8.2h-40.8c-4.5 0-8.2-3.7-8.2-8.2v-74.7c0-11.1 3.3-48.8-29.1-48.8-25.1 0-30.2 25.8-31.2 37.4V273c0 4.5-3.7 8.2-8.2 8.2H114c-4.5 0-8.2-3.7-8.2-8.2V112.1c0-4.5 3.7-8.2 8.2-8.2h39.4c4.5 0 8.2 3.7 8.2 8.2V126c9.3-14 23.2-24.8 52.6-24.8 65.3 0 64.9 61 64.9 94.5l.1 77.2z"/></svg>
1142 + </a></li></ul> </div>
1143 + </div>
1144 +
1145 + </div>
1146 + </div>
1147 +
1148 +</footer>
1149 +
1150 +
1151 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=5.7.7' id='swv-js'></script>
1152 +<script type='text/javascript' id='contact-form-7-js-extra'>
1153 +/* <![CDATA[ */
1154 +var wpcf7 = {"api":{"root":"https:\/\/sotramont.com\/wp-json\/","namespace":"contact-form-7\/v1"}};
1155 +/* ]]> */
1156 +</script>
1157 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.7.7' id='contact-form-7-js'></script>
1158 +<script type='text/javascript' id='heateor_sss_sharing_js-js-before'>
1159 +function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}}; var heateorSssSharingAjaxUrl = 'https://sotramont.com/wp-admin/admin-ajax.php', heateorSssCloseIconPath = 'https://sotramont.com/wp-content/plugins/sassy-social-share/public/../images/close.png', heateorSssPluginIconPath = 'https://sotramont.com/wp-content/plugins/sassy-social-share/public/../images/logo.png', heateorSssHorizontalSharingCountEnable = 0, heateorSssVerticalSharingCountEnable = 0, heateorSssSharingOffset = -10; var heateorSssMobileStickySharingEnabled = 0;var heateorSssCopyLinkMessage = "Link copied.";var heateorSssUrlCountFetched = [], heateorSssSharesText = 'Shares', heateorSssShareText = 'Share';function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}
1160 +</script>
1161 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/sassy-social-share/public/js/sassy-social-share-public.js?ver=3.3.52' id='heateor_sss_sharing_js-js'></script>
1162 +
1163 +</body>
1164 +</html>
added tests/fixtures/sotramont/52687ec138763507ab1f.html +9 −0
@@ -0,0 +1,9 @@
1 +<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
2 +<html><head>
3 +<title>301 Moved Permanently</title>
4 +</head><body>
5 +<h1>Moved Permanently</h1>
6 +<p>The document has moved <a href="https://www.liveomascouche.com">here</a>.</p>
7 +<hr>
8 +<address>Apache/2.4.41 (Ubuntu) Server at sotramont.com Port 443</address>
9 +</body></html>
added tests/fixtures/sotramont/6e771faf708813be3a2f.html +1138 −0
@@ -0,0 +1,1138 @@
1 +
2 +
3 +
4 +
5 +
6 +
7 +
8 +
9 +
10 +
11 +
12 +
13 +
14 +
15 +
16 +
17 +
18 +
19 +
20 +
21 +
22 +
23 +
24 +
25 +
26 +
27 +
28 +
29 +
30 +
31 +
32 +
33 +
34 +
35 +
36 +
37 +
38 +
39 +
40 +
41 +
42 +
43 +
44 +
45 +
46 +
47 +
48 +
49 +
50 +<!doctype html>
51 +<html lang="fr-FR">
52 +<head>
53 + <meta charset="UTF-8">
54 + <meta name="viewport" content="width=device-width, initial-scale=1">
55 +
56 +
57 + <!-- Global site tag (gtag.js) - Google Analytics -->
58 + <script async src="https://www.googletagmanager.com/gtag/js?id=UA-35177730-1"></script>
59 + <script>
60 + window.dataLayer = window.dataLayer || [];
61 + function gtag(){dataLayer.push(arguments);}
62 + gtag('js', new Date());
63 + gtag('config', 'UA-35177730-1');
64 + </script>
65 + <!-- END Global site tag -->
66 +
67 + <!-- Google Tag Manager -->
68 + <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
69 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
70 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
71 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
72 + })(window,document,'script','dataLayer','GTM-KQGBN56');</script>
73 + <!-- End Google Tag Manager —>
74 +
75 + <!-- ScrollMagic -->
76 + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js" integrity="sha256-2p2tRZlPowp3P/04Pw2rqVCSbhyV/IB7ZEVUglrDS/c=" crossorigin="anonymous"></script>
77 + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/plugins/animation.gsap.min.js" integrity="sha256-+9YNuItWuR4sbqeaNiJOxG0BvptYz4fbUXbIZoH5Jwo=" crossorigin="anonymous"></script>
78 + <!-- END ScrollMagic -->
79 +
80 + <style type="text/css">
81 + .heateor_sss_button_instagram span.heateor_sss_svg,a.heateor_sss_instagram span.heateor_sss_svg{background:radial-gradient(circle at 30% 107%,#fdf497 0,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%)}
82 + .heateor_sss_horizontal_sharing .heateor_sss_svg,.heateor_sss_standard_follow_icons_container .heateor_sss_svg{
83 + color: #fff;
84 + border-width: 0px;
85 + border-style: solid;
86 + border-color: transparent;
87 + }
88 + .heateor_sss_horizontal_sharing .heateorSssTCBackground{
89 + color:#666;
90 + }
91 + .heateor_sss_horizontal_sharing span.heateor_sss_svg:hover,.heateor_sss_standard_follow_icons_container span.heateor_sss_svg:hover{
92 + border-color: transparent;
93 + }
94 + .heateor_sss_vertical_sharing span.heateor_sss_svg,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg{
95 + color: #fff;
96 + border-width: 0px;
97 + border-style: solid;
98 + border-color: transparent;
99 + }
100 + .heateor_sss_vertical_sharing .heateorSssTCBackground{
101 + color:#666;
102 + }
103 + .heateor_sss_vertical_sharing span.heateor_sss_svg:hover,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg:hover{
104 + border-color: transparent;
105 + }
106 + @media screen and (max-width:783px) {.heateor_sss_vertical_sharing{display:none!important}} </style>
107 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
108 +<link rel="alternate" hreflang="en" href="https://sotramont.com/en/liveo-pointe-claire-3/" />
109 +<link rel="alternate" hreflang="fr" href="https://sotramont.com/liveo-pointe-claire-3/" />
110 +<link rel="alternate" hreflang="x-default" href="https://sotramont.com/liveo-pointe-claire-3/" />
111 +
112 + <!-- This site is optimized with the Yoast SEO plugin v20.11 - https://yoast.com/wordpress/plugins/seo/ -->
113 + <title>Condos for rent | Pointe-Claire | Liveo Pointe-Claire | Sotramont</title>
114 + <meta name="description" content="Discover our condos for rent in Pointe-Claire. The Liveo Pointe-Claire project is realized by real estate developer and builder, Sotramont." />
115 + <link rel="canonical" href="https://sotramont.com/liveo-pointe-claire-3/" />
116 + <meta property="og:locale" content="fr_FR" />
117 + <meta property="og:type" content="article" />
118 + <meta property="og:title" content="Condos for rent | Pointe-Claire | Liveo Pointe-Claire | Sotramont" />
119 + <meta property="og:description" content="Discover our condos for rent in Pointe-Claire. The Liveo Pointe-Claire project is realized by real estate developer and builder, Sotramont." />
120 + <meta property="og:url" content="https://sotramont.com/liveo-pointe-claire-3/" />
121 + <meta property="og:site_name" content="Sotramont" />
122 + <meta property="article:modified_time" content="2024-07-17T12:12:22+00:00" />
123 + <meta property="og:image" content="https://sotramont.com/wp-content/uploads/2022/12/My-project-1.jpg" />
124 + <meta property="og:image:width" content="1100" />
125 + <meta property="og:image:height" content="827" />
126 + <meta property="og:image:type" content="image/jpeg" />
127 + <meta name="twitter:card" content="summary_large_image" />
128 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://sotramont.com/liveo-pointe-claire-3/","url":"https://sotramont.com/liveo-pointe-claire-3/","name":"Condos for rent | Pointe-Claire | Liveo Pointe-Claire | Sotramont","isPartOf":{"@id":"https://sotramont.com/?lang=en/#website"},"primaryImageOfPage":{"@id":"https://sotramont.com/liveo-pointe-claire-3/#primaryimage"},"image":{"@id":"https://sotramont.com/liveo-pointe-claire-3/#primaryimage"},"thumbnailUrl":"https://sotramont.com/wp-content/uploads/2022/12/My-project-1.jpg","datePublished":"2023-05-06T04:27:19+00:00","dateModified":"2024-07-17T12:12:22+00:00","description":"Discover our condos for rent in Pointe-Claire. The Liveo Pointe-Claire project is realized by real estate developer and builder, Sotramont.","breadcrumb":{"@id":"https://sotramont.com/liveo-pointe-claire-3/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://sotramont.com/liveo-pointe-claire-3/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://sotramont.com/liveo-pointe-claire-3/#primaryimage","url":"https://sotramont.com/wp-content/uploads/2022/12/My-project-1.jpg","contentUrl":"https://sotramont.com/wp-content/uploads/2022/12/My-project-1.jpg","width":1100,"height":827},{"@type":"BreadcrumbList","@id":"https://sotramont.com/liveo-pointe-claire-3/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://sotramont.com/"},{"@type":"ListItem","position":2,"name":"Liveo Pointe-Claire 3"}]},{"@type":"WebSite","@id":"https://sotramont.com/?lang=en/#website","url":"https://sotramont.com/?lang=en/","name":"Sotramont","description":"Montreal real-estate developer, builder and promoter.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://sotramont.com/?lang=en/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"}]}</script>
129 + <!-- / Yoast SEO plugin. -->
130 +
131 +
132 +<link rel="alternate" type="application/rss+xml" title="Sotramont &raquo; Feed" href="https://sotramont.com/feed/" />
133 +<link rel="alternate" type="application/rss+xml" title="Sotramont &raquo; Comments Feed" href="https://sotramont.com/comments/feed/" />
134 +<script type="text/javascript">
135 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/sotramont.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.2.2"}};
136 +/*! This file is auto-generated */
137 +!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){p.clearRect(0,0,i.width,i.height),p.fillText(e,0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(t,0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s("\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!s("\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!s("\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!s("\ud83e\udef1\ud83c\udffb\u200d\ud83e\udef2\ud83c\udfff","\ud83e\udef1\ud83c\udffb\u200b\ud83e\udef2\ud83c\udfff")}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
138 +</script>
139 +<style type="text/css">
140 +img.wp-smiley,
141 +img.emoji {
142 + display: inline !important;
143 + border: none !important;
144 + box-shadow: none !important;
145 + height: 1em !important;
146 + width: 1em !important;
147 + margin: 0 0.07em !important;
148 + vertical-align: -0.1em !important;
149 + background: none !important;
150 + padding: 0 !important;
151 +}
152 +</style>
153 + <link rel='stylesheet' id='wp-block-library-css' href='https://sotramont.com/wp-includes/css/dist/block-library/style.min.css?ver=6.2.2' type='text/css' media='all' />
154 +<style id='safe-svg-svg-icon-style-inline-css' type='text/css'>
155 +.safe-svg-cover .safe-svg-inside{display:inline-block;max-width:100%}.safe-svg-cover svg{height:100%;max-height:100%;max-width:100%;width:100%}
156 +
157 +</style>
158 +<link rel='stylesheet' id='classic-theme-styles-css' href='https://sotramont.com/wp-includes/css/classic-themes.min.css?ver=6.2.2' type='text/css' media='all' />
159 +<style id='global-styles-inline-css' type='text/css'>
160 +body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
161 +.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
162 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}
163 +.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
164 +</style>
165 +<link rel='stylesheet' id='wpml-blocks-css' href='https://sotramont.com/wp-content/plugins/sitepress-multilingual-cms/dist/css/blocks/styles.css?ver=4.6.4' type='text/css' media='all' />
166 +<link rel='stylesheet' id='contact-form-7-css' href='https://sotramont.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.7.7' type='text/css' media='all' />
167 +<link rel='stylesheet' id='mainStylesheet-css' href='https://sotramont.com/wp-content/themes/custom/dist/css/main.css?v=6.8&#038;ver=6.2.2' type='text/css' media='all' />
168 +<link rel='stylesheet' id='heateor_sss_frontend_css-css' href='https://sotramont.com/wp-content/plugins/sassy-social-share/public/css/sassy-social-share-public.css?ver=3.3.52' type='text/css' media='all' />
169 +<script type='text/javascript' src='https://sotramont.com/wp-includes/js/jquery/jquery.min.js?ver=3.6.4' id='jquery-core-js'></script>
170 +<script type='text/javascript' src='https://sotramont.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.0' id='jquery-migrate-js'></script>
171 +<script type='text/javascript' id='wpml-cookie-js-extra'>
172 +/* <![CDATA[ */
173 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"\/"}};
174 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"\/"}};
175 +/* ]]> */
176 +</script>
177 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/sitepress-multilingual-cms/res/js/cookies/language-cookie.js?ver=4.6.4' id='wpml-cookie-js'></script>
178 +<script type='text/javascript' src='https://sotramont.com/wp-content/themes/custom/dist/js/main.js?v=1.6&#038;ver=6.2.2' id='custom-js-js'></script>
179 +<script type='text/javascript' id='awhitepixel-ajaxscript-js-extra'>
180 +/* <![CDATA[ */
181 +var Theme_Variables = {"ajax_url":"https:\/\/sotramont.com\/wp-admin\/admin-ajax.php"};
182 +/* ]]> */
183 +</script>
184 +<script type='text/javascript' src='https://sotramont.com/wp-content/themes/custom/ajax/ajax-project-filter.js?ver=6.2.2' id='awhitepixel-ajaxscript-js'></script>
185 +<link rel="https://api.w.org/" href="https://sotramont.com/wp-json/" /><link rel="alternate" type="application/json" href="https://sotramont.com/wp-json/wp/v2/pages/10687" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://sotramont.com/xmlrpc.php?rsd" />
186 +<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://sotramont.com/wp-includes/wlwmanifest.xml" />
187 +<meta name="generator" content="WordPress 6.2.2" />
188 +<link rel='shortlink' href='https://sotramont.com/?p=10687' />
189 +<link rel="alternate" type="application/json+oembed" href="https://sotramont.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsotramont.com%2Fliveo-pointe-claire-3%2F" />
190 +<link rel="alternate" type="text/xml+oembed" href="https://sotramont.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsotramont.com%2Fliveo-pointe-claire-3%2F&#038;format=xml" />
191 +<meta name="generator" content="WPML ver:4.6.4 stt:1,4;" />
192 +<link rel="icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-32x32.png" sizes="32x32" />
193 +<link rel="icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-192x192.png" sizes="192x192" />
194 +<link rel="apple-touch-icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-180x180.png" />
195 +<meta name="msapplication-TileImage" content="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-270x270.png" />
196 + <script>
197 + function resizeIframe(obj) {
198 + obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
199 + }
200 + </script>
201 +</head>
202 +
203 +<body class="page-template-default page page-id-10687 page-parent">
204 +
205 +<!-- Google Tag Manager (noscript) -->
206 +<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KQGBN56"
207 +height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
208 +<!-- End Google Tag Manager (noscript) -->
209 +
210 +
211 +<header class="block--header sm--pin-top" data-sm-duration-dependancy=".block--project-submenu">
212 + <div class="row content-inner-header">
213 + <div class="col col-logo col-xl-4 col-lg-6 col-md-7 col-sm-8 col-12 offset-1">
214 + <a href="https://sotramont.com"><img class="global-logo" src="https://sotramont.com/wp-content/uploads/2020/08/logo-sotramont.png"></a>
215 + </div>
216 + <div class="col col-menu col-xl-18 col-lg-16 col-md-14 col-24">
217 + <nav class="sub-navigation">
218 + <ul id="sub-menu" class="menu"><li id="menu-item-3940" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3940"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
219 +<li id="menu-item-3941" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3941"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
220 +<li id="menu-item-3942" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3942"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
221 +</ul> <div class='c--language-switcher'><a href="https://sotramont.com/en/liveo-pointe-claire-3/">en</a></div> </nav>
222 + <div class="content-main-nav">
223 + <nav class="main-navigation">
224 + <div class="menu-menu-header-fr-container"><ul id="primary-menu" class="menu"><li id="menu-item-3938" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3938"><a href="https://sotramont.com/la-difference-sotramont-a-propos/">La différence Sotramont</a></li>
225 +<li id="menu-item-3939" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3939"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
226 +<li id="menu-item-809" class="js--submenu-condos menu-item menu-item-type-custom menu-item-object-custom menu-item-809"><a title="js&#8211;submenu-condo">Curtiss Locatifs</a></li>
227 +<li id="menu-item-810" class="js--submenu-locatifs menu-item menu-item-type-custom menu-item-object-custom menu-item-810"><a title="js&#8211;submenu-rental">Liveo Locatifs</a></li>
228 +</ul></div> </nav>
229 + <div class="content-btn">
230 +
231 + <a href="https://sotramont.com/condo-maison-ville-vendre-louer/" class="btn btn--icon btn--icon__left">
232 + Recherche de propriétés
233 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.3 31.8"><path d="M17.4 0l-6.8 5.7V2.5H4.2V11L0 14.6l1.3 1.5 5-4.1V4.5h2.3V10l8.8-7.4L34 16.1l1.3-1.6z"/><path d="M27.8 19.8c0-4.3-3.5-7.7-7.7-7.7-4.3 0-7.7 3.5-7.7 7.7s3.5 7.7 7.7 7.7c1.8 0 3.6-.6 4.9-1.8l6.1 6.1 1.3-1.3-6.1-6.1c1-1.3 1.5-2.9 1.5-4.6zm-1.8 0c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6 6 2.7 6 6zM6.3 16.7H4.2v14.9h11.2v-2H6.3z"/></svg>
234 + </a>
235 + </div>
236 + </div>
237 + </div>
238 + </div>
239 +
240 + <div class="show-menu-open">
241 + <div class='c--language-switcher'><a href="https://sotramont.com/en/liveo-pointe-claire-3/">en</a></div> </div>
242 +
243 + <div class="c--hamburger-menu">
244 + <div class="content-border content-open">
245 + <div class="border border-1"></div>
246 + <div class="border border-2"></div>
247 + <div class="border border-3"></div>
248 + </div>
249 + <div class="content-border content-close">
250 + <div class="border border-1"></div>
251 + <div class="border border-2"></div>
252 + </div>
253 + </div>
254 +
255 +
256 + <!-- SUBMENU -->
257 + <section class="block block--header-submenu js--submenu js--submenu-maisons">
258 + <div class="row big-row">
259 + <div class="col col-22">
260 + <div class="content-inner">
261 +
262 + <div class="content-title">
263 + <h3 class="text-lg">Notre Complémentaire </h3>
264 + </div>
265 + <div class="row">
266 + <div class="col col-10 col-typo">
267 + <p></p>
268 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons">
269 + Voir tout Complémentaire dans notre portfolio
270 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
271 + </a>
272 + </div>
273 +
274 + </div>
275 + </div>
276 + </div>
277 + </div>
278 + </section>
279 +
280 + <section class="block block--header-submenu js--submenu js--submenu-condos">
281 + <div class="row big-row">
282 + <div class="col col-22">
283 + <div class="content-inner">
284 +
285 + <div class="content-title">
286 + <h3 class="text-lg">Notre Condos </h3>
287 + </div>
288 + <div class="row">
289 + <div class="col col-6 col-list">
290 + <a href="https://sotramont.com/curtiss-condos/" target="">
291 + <figure>
292 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Curtiss-1920x904.png'>
293 + </figure>
294 + <!--<h4 class="text-md">Curtiss Condos</h4>-->
295 + <h5 class="text-sm">Saint-Laurent</h5>
296 + </a>
297 + </div>
298 +
299 + <div class="col col-10 col-typo">
300 + <p>Les condos Sotramont sont toujours dans des emplacements de premier choix et s'intègrent harmonieusement à leur environnement. Ces condos très appréciés attirent un équilibre sain entre les résidents et les investisseurs.</p>
301 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=condos">
302 + Voir tout Condos dans notre portfolio
303 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
304 + </a>
305 + </div>
306 +
307 + </div>
308 + </div>
309 + </div>
310 + </div>
311 + </section>
312 +
313 + <section class="block block--header-submenu js--submenu js--submenu-locatifs">
314 + <div class="row big-row">
315 + <div class="col col-22">
316 + <div class="content-inner">
317 +
318 + <div class="content-title">
319 + <h3 class="text-lg">Notre Locatifs </h3>
320 + </div>
321 + <div class="row">
322 + <div class="col col-6 col-list">
323 + <figure>
324 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Liveo-1920x904.png'>
325 + </figure>
326 + </div>
327 +
328 + <div class="col col-6 col-locations">
329 + <div>
330 + <span><a href="https://sotramont.com/liveo-bois-franc/" target=""><h5 class="text-sm">Saint-Laurent</h5></a></span><span><a href="https://sotramont.com/liveo-mascouche/" target=""><h5 class="text-sm">Mascouche</h5></a></span><span><a href="https://sotramont.com/liveo-pointe-claire/" target=""><h5 class="text-sm">Pointe-Claire</h5></a></span><span><a href="https://sotramont.com/liveo-repentigny/" target=""><h5 class="text-sm">Repentigny</h5></a></span>
331 + </div>
332 + </div>
333 +
334 + <div class="col col-10 col-typo">
335 + <p>Les condos locatifs Sotramont sont soigneusement conçus pour offrir aux résidents un niveau de vie élevé, quel que soit le budget.</p>
336 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=locatifs">
337 + Voir tout Locatifs dans notre portfolio
338 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
339 + </a>
340 + </div>
341 +
342 + </div>
343 + </div>
344 + </div>
345 + </div>
346 + </section>
347 +
348 + <section class="block block--header-submenu js--submenu js--submenu-maisons-de-ville">
349 + <div class="row big-row">
350 + <div class="col col-22">
351 + <div class="content-inner">
352 +
353 + <div class="content-title">
354 + <h3 class="text-lg">Notre Maisons de ville </h3>
355 + </div>
356 + <div class="row">
357 + <div class="col col-10 col-typo">
358 + <p>Les maisons de ville de Sotramont sont toujours situées dans des endroits recherchés et construites dans un souci de longévité. Ces maisons de ville fiables attirent un équilibre sain entre plusieurs générations.</p>
359 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons-de-ville">
360 + Voir tout Maisons de ville dans notre portfolio
361 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
362 + </a>
363 + </div>
364 +
365 + </div>
366 + </div>
367 + </div>
368 + </div>
369 + </section>
370 +
371 +
372 +</header>
373 +
374 +
375 +<div class="c--toggle-hamburger-menu">
376 + <div class="big-row row">
377 + <div class="col-md-18 col-sm-20 col-22">
378 + <nav id="site-navigation" class="main-navigation">
379 + <div class="content-btn">
380 +
381 + <a href="https://sotramont.com/condo-maison-ville-vendre-louer/" class="btn btn--icon btn--icon__left">
382 + Recherche de propriétés
383 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.3 31.8"><path d="M17.4 0l-6.8 5.7V2.5H4.2V11L0 14.6l1.3 1.5 5-4.1V4.5h2.3V10l8.8-7.4L34 16.1l1.3-1.6z"/><path d="M27.8 19.8c0-4.3-3.5-7.7-7.7-7.7-4.3 0-7.7 3.5-7.7 7.7s3.5 7.7 7.7 7.7c1.8 0 3.6-.6 4.9-1.8l6.1 6.1 1.3-1.3-6.1-6.1c1-1.3 1.5-2.9 1.5-4.6zm-1.8 0c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6 6 2.7 6 6zM6.3 16.7H4.2v14.9h11.2v-2H6.3z"/></svg>
384 + </a>
385 + </div>
386 +
387 + <div class="menu-menu-header-fr-container"><ul id="primary-menu" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3938"><a href="https://sotramont.com/la-difference-sotramont-a-propos/">La différence Sotramont</a></li>
388 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3939"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
389 +<li class="js--submenu-condos menu-item menu-item-type-custom menu-item-object-custom menu-item-809"><a title="js&#8211;submenu-condo">Curtiss Locatifs</a></li>
390 +<li class="js--submenu-locatifs menu-item menu-item-type-custom menu-item-object-custom menu-item-810"><a title="js&#8211;submenu-rental">Liveo Locatifs</a></li>
391 +</ul></div>
392 + <div class="content-list-submenu">
393 +
394 + <div class="content-title">
395 + <h3 class="text-lg">Notre Complémentaire </h3>
396 + </div>
397 + <div class="row">
398 + <div class="col col-10 col-typo">
399 + <p></p>
400 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons">
401 + Voir tout Complémentaire dans notre portfolio
402 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
403 + </a>
404 + </div>
405 +
406 + </div>
407 +
408 + <div class="content-title">
409 + <h3 class="text-lg">Notre Condos </h3>
410 + </div>
411 + <div class="row">
412 + <div class="col col-6 col-list">
413 + <a href="https://sotramont.com/curtiss-condos/" target="">
414 + <figure>
415 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Curtiss-1920x904.png'>
416 + </figure>
417 + <!--<h4 class="text-md">Curtiss Condos</h4>-->
418 + <h5 class="text-sm">Saint-Laurent</h5>
419 + </a>
420 + </div>
421 +
422 + <div class="col col-10 col-typo">
423 + <p>Les condos Sotramont sont toujours dans des emplacements de premier choix et s'intègrent harmonieusement à leur environnement. Ces condos très appréciés attirent un équilibre sain entre les résidents et les investisseurs.</p>
424 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=condos">
425 + Voir tout Condos dans notre portfolio
426 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
427 + </a>
428 + </div>
429 +
430 + </div>
431 +
432 + <div class="content-title">
433 + <h3 class="text-lg">Notre Locatifs </h3>
434 + </div>
435 + <div class="row">
436 + <div class="col col-6 col-list">
437 + <figure>
438 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Liveo-1920x904.png'>
439 + </figure>
440 + </div>
441 +
442 + <div class="col col-6 col-locations">
443 + <div>
444 + <span><a href="https://sotramont.com/liveo-bois-franc/" target=""><h5 class="text-sm">Saint-Laurent</h5></a></span><span><a href="https://sotramont.com/liveo-mascouche/" target=""><h5 class="text-sm">Mascouche</h5></a></span><span><a href="https://sotramont.com/liveo-pointe-claire/" target=""><h5 class="text-sm">Pointe-Claire</h5></a></span><span><a href="https://sotramont.com/liveo-repentigny/" target=""><h5 class="text-sm">Repentigny</h5></a></span>
445 + </div>
446 + </div>
447 +
448 + <div class="col col-10 col-typo">
449 + <p>Les condos locatifs Sotramont sont soigneusement conçus pour offrir aux résidents un niveau de vie élevé, quel que soit le budget.</p>
450 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=locatifs">
451 + Voir tout Locatifs dans notre portfolio
452 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
453 + </a>
454 + </div>
455 +
456 + </div>
457 +
458 + <div class="content-title">
459 + <h3 class="text-lg">Notre Maisons de ville </h3>
460 + </div>
461 + <div class="row">
462 + <div class="col col-10 col-typo">
463 + <p>Les maisons de ville de Sotramont sont toujours situées dans des endroits recherchés et construites dans un souci de longévité. Ces maisons de ville fiables attirent un équilibre sain entre plusieurs générations.</p>
464 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons-de-ville">
465 + Voir tout Maisons de ville dans notre portfolio
466 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
467 + </a>
468 + </div>
469 +
470 + </div>
471 + </div>
472 +
473 + </nav>
474 + </div>
475 + </div>
476 +
477 + <div class="content-subnav">
478 + <ul id="sub-menu" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3940"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
479 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3941"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
480 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3942"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
481 +</ul> </div>
482 +
483 + <div class="content-animate"></div>
484 +
485 +
486 +</div>
487 +
488 +
489 +
490 +
491 + <style>
492 + ::selection{
493 + background:#002e5d;
494 +
495 + svg{
496 + background-color:#002e5d;
497 + }
498 + }
499 +
500 + ::-moz-selection{
501 + background:#002e5d;
502 +
503 + svg{
504 + background-color:#002e5d;
505 + }
506 + }
507 +
508 + .block .btn{
509 + background-color:#002e5d !important;
510 + border-color:#002e5d !important;
511 + }
512 +
513 + .block--form .content-box{
514 + background:#002e5d;
515 + }
516 +
517 + .c--form input[type="submit"]{
518 + background-color:#fff !important;
519 + border-color:#fff !important;
520 + color:#000;
521 + }
522 +
523 + .c--toggle-click .text-lg{
524 + background-color:#002e5d !important;
525 + border-color:#002e5d !important;
526 + }
527 +
528 + .block .swiper-button-prev{
529 + background-color:#002e5dE0;
530 + }
531 +
532 + .block .swiper-button-next{
533 + background-color:#002e5d;
534 + }
535 +
536 + .block--features .content-list .single-item.item-active .text-md{
537 + color:#002e5d !important;
538 + }
539 +
540 + .block--features .content-list .single-item.item-active svg{
541 + fill:#002e5d !important;
542 + }
543 +
544 + .block--units .content-icon-plus svg{
545 + fill:#002e5d;
546 + }
547 +
548 + .block--promo .content-inner{
549 + background:#002e5d15;
550 + }
551 +
552 + .block:not(.block--footer) .btn--underscore{
553 + color:#002e5d !important;
554 + }
555 +
556 + .block:not(.block--footer) .btn--underscore:before, .block:not(.block--footer) .btn--underscore:after{
557 + background:#002e5d !important;
558 + }
559 +
560 + .block--banner .text-sm:before{
561 + background:#002e5d;
562 + }
563 +
564 + .block--project-submenu{
565 + background:#002e5d;
566 + }
567 +
568 + .sticky-button-form .icon-close{
569 + background:#002e5d;
570 + }
571 +
572 + .sticky-button-form .inner-btn{
573 + background:#002e5d;
574 + border-color:#002e5d;
575 + }
576 + </style>
577 +
578 +
579 +
580 +
581 +<section id="block--banner" class="block block--banner" >
582 + <div class="content-inner">
583 + <div class="row">
584 + <div class="col col-typo col-xl-12 offset-xl-3 offset-md-2 col-sm-14 col-22 offset-1">
585 + <div>
586 + <span class="text-sm">Pointe-Claire</span>
587 + </div>
588 + <h1 class="text-lg">Liveo Pointe-Claire Phase 3</h1>
589 + <p class="text-p">Nous avons demandé aux résidents potentiels ce qui leur importait le plus et avons combiné leurs idées avec nos décennies d’expérience dans la construction pour concevoir une propriété locative axée sur la tranquillité d’esprit et la qualité de vie.</p>
590 + </div>
591 + <div class="col col-image col-sm-14 col-24 offset-0">
592 +
593 + <figure class='c--image-bg'>
594 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2022/12/My-project-1-1024x770.jpg);'></div>
595 + </figure>
596 + </div>
597 + </div>
598 + </div>
599 +</section>
600 +
601 +
602 +<section id="block--project-submenu" class="block block--project-submenu sm--pin-top">
603 + <div class="content-inner">
604 + <div class="row">
605 + <div class="col col-lg-20 col-22">
606 +
607 +
608 + <ul>
609 + <li class="content-logo"><a href="https://sotramont.com/liveo-pointe-claire-3/"><img decoding="async" src="https://sotramont.com/wp-content/uploads/2020/07/Liveo-PC-white-480x175.png"></a></li>
610 + <li class='active'><a href='https://sotramont.com/liveo-pointe-claire-3/'>Détails du projet</a></li> <li class="page_item page-item-11942"><a href="https://sotramont.com/liveo-pointe-claire-3/plans-dunite/">Plans d&#8217;unité</a></li>
611 +<li class="page_item page-item-11937"><a href="https://sotramont.com/liveo-pointe-claire-3/interior-design/">Design d&#8217;intérieur</a></li>
612 +<li class="page_item page-item-10744"><a href="https://sotramont.com/liveo-pointe-claire-3/galerie-des-medias/">Galerie des médias</a></li>
613 +<li class="page_item page-item-10729"><a href="https://sotramont.com/liveo-pointe-claire-3/contact/">Contact</a></li>
614 + </ul>
615 + </div>
616 + </div>
617 + </div>
618 +</section>
619 +
620 +
621 +<section id="block--project-about" class="block block--project-about" style="background-color:#ffffff;">
622 + <div class="row">
623 + <div class="col col-xl-10 offset-xl-2 offset-md-2 col-md-11 col-22 offset-1">
624 + <h2 class="text-lg">VIVRE POINTE-CLAIRE</h2>
625 +
626 + <div class="content-wysiwyg">
627 + <p>Nous nous occupons des fondamentaux afin que vous puissiez consacrer du temps et de l&#8217;énergie à ce qui compte le plus pour vous. Liveo Pointe-Claire offre un ensemble d&#8217;avantages qui simplifient la vie en condo. L&#8217;eau chaude, la climatisation, Internet, la télévision par câble, les appareils de buanderie et les appareils de cuisine sont tous inclus dans le tarif de location.</p>
628 +<p>Nous croyons que l&#8217;emplacement est tout aussi important. Liveo est le dernier né du Quartier Greenwich, un quartier paisible récemment développé à Pointe-Claire avec des entrées sur l&#8217;avenue Gendron. L&#8217;emplacement a été choisi pour de nombreuses raisons positives. Accédez facilement à des services tels que l&#8217;épicerie, la pharmacie et les soins dentaires. La bibliothèque publique, le centre commercial Fairview, le golf Beaconsfield et le centre aquatique de Pointe-Claire ne sont qu&#8217;à quelques pâtés de maisons.</p>
629 +<p>Dans le quartier, il y a un parc de 2 acres avec des arbres centenaires et un sentier pédestre bien entretenu. En 2020, un nouveau terrain de jeu impressionnant a également été ajouté. Le projet Liveo lui-même a une piste cyclable dédiée longeant des arbres matures.</p>
630 +<p>Pour ceux qui aiment explorer l&#8217;île de Montréal, accédez rapidement à la future gare du REM, aux autoroutes 40 ou 20 et aux arrêts d&#8217;autobus publics.</p>
631 + </div>
632 +
633 +
634 + </div>
635 + <div class="col col-md-8 offset-md-2 col-22 offset-1">
636 +
637 + <div class="content-tag">
638 + <div class="row">
639 + <div class="single-tag col col-12">
640 +
641 + <div class="single-tag-image">
642 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-09.png'> </div>
643 + <h4 class="text-md">CONSTRUCTION</br> TERMINÉE</h4>
644 + </div>
645 + <div class="single-tag col col-12">
646 +
647 + <div class="single-tag-image">
648 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-31.png'> </div>
649 + <h4 class="text-md">OCCUPATION </br>IMMÉDIATE</h4>
650 + </div>
651 + <div class="single-tag col col-12">
652 +
653 + <div class="single-tag-image">
654 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-22.png'> </div>
655 + <h4 class="text-md">PLANS DE <br/> 1-2 CHAMBRES</h4>
656 + </div>
657 + <div class="single-tag col col-12">
658 +
659 + <div class="single-tag-image">
660 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-29.png'> </div>
661 + <h4 class="text-md">DE 1 620$ <br/> PAR MOIS</h4>
662 + </div>
663 + <div class="single-tag col col-12">
664 +
665 + <div class="single-tag-image">
666 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-24.png'> </div>
667 + <h4 class="text-md">ÉLECTROMÉNAGERS <br/> INCLUS</h4>
668 + </div>
669 + <div class="single-tag col col-12">
670 +
671 + <div class="single-tag-image">
672 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-36.png'> </div>
673 + <h4 class="text-md">BUANDERIE <br/> PRIVÉE</h4>
674 + </div>
675 + <div class="single-tag col col-12">
676 +
677 + <div class="single-tag-image">
678 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-23.png'> </div>
679 + <h4 class="text-md">CLIMATISATION <br/> INDIVIDUELLE</h4>
680 + </div>
681 + <div class="single-tag col col-12">
682 +
683 + <div class="single-tag-image">
684 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-13.png'> </div>
685 + <h4 class="text-md">ANIMAUX <br/> ACCEPTÉS</h4>
686 + </div>
687 + <div class="single-tag col col-12">
688 +
689 + <div class="single-tag-image">
690 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-28.png'> </div>
691 + <h4 class="text-md">CONNECTION <br/> INTERNET</h4>
692 + </div>
693 + <div class="single-tag col col-12">
694 +
695 + <div class="single-tag-image">
696 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-35.png'> </div>
697 + <h4 class="text-md">TÉLÉVISION <br/> PAR CÂBLE</h4>
698 + </div>
699 + </div>
700 + </div>
701 + </div>
702 + </div>
703 +</section>
704 +
705 +
706 +<section id="block--image-slider" class="block block--image-slider size-lg">
707 +
708 + <div class='c--image'>
709 + <figure class='c--image-bg'>
710 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2023/05/My-project-2-1920x1280.jpg);'></div>
711 + </figure>
712 + </div>
713 +</section>
714 +
715 +
716 +<section id="block--project-about" class="block block--project-about" style="background-color:#ffffff;">
717 + <div class="row">
718 + <div class="col col-xl-10 offset-xl-2 offset-md-2 col-md-11 col-22 offset-1">
719 + <h2 class="text-lg">UN STYLE DE VIE QUI NE VIEILLIT JAMAIS</h2>
720 +
721 + <div class="content-wysiwyg">
722 + <p>Liveo offre un style de vie difficile à battre. Le bâtiment est conçu avec une abondance de façons de trouver votre propre sérénité personnelle.</p>
723 +<p>Pour célébrer l&#8217;histoire de Pointe-Claire de produire des nageurs de classe mondiale, Liveo dispose de deux longues piscines intérieures qui sont parfaites pour l&#8217;exercice quotidien et la détente en toute saison. Pour ceux qui ont un style de vie plus actif, profitez également de deux salles d&#8217;exercice équipées par des professionnels et d&#8217;un espace sécurisé pour les vélos.</p>
724 +<p>Vous avez le choix entre trois types de terrasses extérieures. Avec l&#8217;un des plus hauts édifices de Pointe-Claire, vous pourrez profiter des plus impressionnantes vues à 360 degrés de l&#8217;île de Montréal depuis la terrasse sur le toit. Au rez-de-chaussée, retrouvez une terrasse ensoleillée accessible depuis l&#8217;espace piscine et une autre terrasse reliée à la salle communautaire.</p>
725 +<p>La salle communautaire est un espace flexible préparé pour une gamme d&#8217;activités, telles que la lecture paisible, le jeu de cartes sociales, regarder des sports télévisés ou organiser des événements avec traiteur.</p>
726 +<p>Il convient également de mentionner que Liveo Pointe-Claire a des gardiens à temps plein qui résident dans les bâtiments et en plus des boîtes postales régulières, il y a un espace qui accepte les colis plus gros afin que vous n&#8217;ayez pas à vous soucier de manquer vos livraisons.</p>
727 +<p>Si vous êtes nouveau dans la vie en condo, vous apprécierez peut-être que nous ayons un parking souterrain sécurisé, une zone de lavage de voiture, 2 ascenseurs efficaces, des caméras de sécurité et chaque porte d&#8217;entrée est accessible uniquement par des porte-clés électroniques remis aux résidents.</p>
728 + </div>
729 +
730 +
731 + </div>
732 + <div class="col col-md-8 offset-md-2 col-22 offset-1">
733 +
734 + <div class="content-tag">
735 + <div class="row">
736 + <div class="single-tag col col-12">
737 +
738 + <div class="single-tag-image">
739 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-01.png'> </div>
740 + <h4 class="text-md">PISCINE <br/> INTÉRIEURE</h4>
741 + </div>
742 + <div class="single-tag col col-12">
743 +
744 + <div class="single-tag-image">
745 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-20.png'> </div>
746 + <h4 class="text-md">TERRASSE <br/>PISCINE</h4>
747 + </div>
748 + <div class="single-tag col col-12">
749 +
750 + <div class="single-tag-image">
751 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-08.png'> </div>
752 + <h4 class="text-md">SALLE <br/> D’ENTRAÎNEMENT</h4>
753 + </div>
754 + <div class="single-tag col col-12">
755 +
756 + <div class="single-tag-image">
757 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-14.png'> </div>
758 + <h4 class="text-md">TERRASSE <br/> SUR LE TOIT</h4>
759 + </div>
760 + <div class="single-tag col col-12">
761 +
762 + <div class="single-tag-image">
763 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-26.png'> </div>
764 + <h4 class="text-md">SALLE <br/> COMMUNAUTAIRE</h4>
765 + </div>
766 + <div class="single-tag col col-12">
767 +
768 + <div class="single-tag-image">
769 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-06.png'> </div>
770 + <h4 class="text-md">TERRASSE <br/> COMMUNAUTAIRE</h4>
771 + </div>
772 + <div class="single-tag col col-12">
773 +
774 + <div class="single-tag-image">
775 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-21.png'> </div>
776 + <h4 class="text-md">LIVRAISON <br/> DE COLIS</h4>
777 + </div>
778 + <div class="single-tag col col-12">
779 +
780 + <div class="single-tag-image">
781 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-19.png'> </div>
782 + <h4 class="text-md">DEUX <br/> ASCENSEURS</h4>
783 + </div>
784 + <div class="single-tag col col-12">
785 +
786 + <div class="single-tag-image">
787 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-30.png'> </div>
788 + <h4 class="text-md">RÉSIDENT <br/> GARDIEN</h4>
789 + </div>
790 + <div class="single-tag col col-12">
791 +
792 + <div class="single-tag-image">
793 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-18.png'> </div>
794 + <h4 class="text-md">STATIONNEMENT <br/> INTÉRIEUR</h4>
795 + </div>
796 + <div class="single-tag col col-12">
797 +
798 + <div class="single-tag-image">
799 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-17.png'> </div>
800 + <h4 class="text-md">STATION <br/> DE LAVAGE</h4>
801 + </div>
802 + <div class="single-tag col col-12">
803 +
804 + <div class="single-tag-image">
805 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-04.png'> </div>
806 + <h4 class="text-md">STATION <br/> DE CHARGE</h4>
807 + </div>
808 + <div class="single-tag col col-12">
809 +
810 + <div class="single-tag-image">
811 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-15.png'> </div>
812 + <h4 class="text-md">RANGEMENT <br/> À VÉLOS</h4>
813 + </div>
814 + <div class="single-tag col col-12">
815 +
816 + <div class="single-tag-image">
817 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-34.png'> </div>
818 + <h4 class="text-md">CASIERS DE <br/>RANGEMENT</h4>
819 + </div>
820 + </div>
821 + </div>
822 + </div>
823 + </div>
824 +</section>
825 +
826 +
827 +<section id="block--image-slider" class="block block--image-slider size-lg">
828 +
829 + <div class='c--image'>
830 + <figure class='c--image-bg'>
831 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2023/05/My-project-3-1920x1280.jpg);'></div>
832 + </figure>
833 + </div>
834 +</section>
835 +
836 +
837 +<section id="block--features" class="block block--features" style="background-color:#ffffff;">
838 +
839 + <div class="content-text">
840 + <div class="row">
841 + <div class="col col-lg-12 col-sm-14 col-22">
842 + <h3 class="text-lg">NOUS GARDONS VOTRE CONFORT À L’ESPRIT</h3> <div class="content-wysiwyg">
843 + <p>En tant que constructeur, nous avons à cœur  l’importance des performances acoustiques et le contrôle de la température, sur le bien-être de votre quotidien.</p>
844 + </div>
845 + </div>
846 + </div>
847 + </div>
848 +
849 + <div class="content-list">
850 + <div class="row">
851 +
852 + <div class="col col-list col-lg-10 offset-lg-2 col-sm-11 col-22 offset-1">
853 + <div class="single-item single-item-0 item-active" data-id="0">
854 + <h4 class="text-md">CONTRÔLE DE LA TEMPÉRATURE</h4> <!-- Icon Arrow -->
855 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.4 22" style="enable-background:new 0 0 12.4 22"><path d="M1 22c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4L9.6 11 .3 1.7C-.1 1.3-.1.7.3.3s1-.4 1.4 0L12.4 11 1.7 21.7c-.2.2-.4.3-.7.3z"/></svg>
856 + </div>
857 + <div class="single-item single-item-1 " data-id="1">
858 + <h4 class="text-md">PERFORMANCE ACOUSTIQUE</h4> <!-- Icon Arrow -->
859 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.4 22" style="enable-background:new 0 0 12.4 22"><path d="M1 22c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4L9.6 11 .3 1.7C-.1 1.3-.1.7.3.3s1-.4 1.4 0L12.4 11 1.7 21.7c-.2.2-.4.3-.7.3z"/></svg>
860 + </div>
861 + </div>
862 +
863 + <div class="col col-content col-lg-8 offset-sm-2 col-sm-9 col-22 offset-1">
864 + <div class="single-item-content single-item-0 item-active">
865 + <div class="single-item-content single-item-0 item-active">
866 +<div class="single-item-content single-item-0 item-active">
867 +<p>En tant que Montréalais, nous aimons nos saisons. Les condos de location Liveo sont préparés pour ce que Mère Nature nous propose.</p>
868 +<p>Atteignez la température ambiante désirez grâce au chauffage électrique par plinthe, contrôlé individuellement par pièce.</p>
869 +<p>Pour les jours les plus chauds, chaque condo comprend une unité de climatisation avec des paramètres multifonctionnels.</p>
870 +</div>
871 +</div>
872 + </div>
873 + <div class="single-item-content single-item-1 ">
874 + <div class="single-item-content single-item-1 item-active">
875 +<div class="single-item-content single-item-1 item-active">
876 +<p>Les condos locatifs Liveo sont des structures en béton recouvertes de façades en briques. Combinée à une couche d’isolation très étanche et des fenêtres Energy Star scellées, l’enveloppe de bâtiment primée de Sotramont, offre une barrière paisible contre le bruit extérieur.</p>
877 +<p>De plus, chaque condo a des portes d’entrée épaisses et des murs de séparation pour réduire le bruit et la sécurité incendie. C’est quelque chose à considérer lors de la recherche de votre prochaine résidence!</p>
878 +</div>
879 +</div>
880 + </div>
881 +
882 + <div class="content-bg-inner" style="background-color:#ffffff;"></div>
883 + </div>
884 +
885 + </div>
886 + </div>
887 +</section>
888 +
889 +<script>
890 +jQuery(document).ready(function(){
891 + jQuery(document).on("click", ".block--features .single-item", function(){
892 + var valueId = jQuery(this).data("id");
893 +
894 + jQuery('.block--features .single-item, .block--features .single-item-content').removeClass('item-active');
895 + jQuery('.block--features .single-item-'+valueId).addClass('item-active');
896 + });
897 +});
898 +</script>
899 +
900 +
901 +<section id="block--image-slider" class="block block--image-slider size-lg">
902 +
903 + <div class='c--image'>
904 + <figure class='c--image-bg'>
905 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2023/05/My-project-4-1920x1280.jpg);'></div>
906 + </figure>
907 + </div>
908 +</section>
909 +
910 +
911 +
912 +
913 + <section id="block--calendly" class="block block--calendly" style="background-color:#e5e5e5;">
914 +
915 + <link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
916 + <script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript"></script>
917 +
918 + <div class="row big-row">
919 + <div class="col col-xl-20 col-22">
920 + <div class="content-inner" style="background-color:#ffffff;">
921 + <div class="row">
922 + <div class="col col-md-12 col-24">
923 +
924 + <figure class='c--image-bg'>
925 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2022/12/IMG_7679.jpeg);'></div>
926 + </figure>
927 + <h3 class="text-lg">Armel Rugero</h3>
928 + <h4 class="text-md">Visitez notre espace location avec Armel pour trouver votre prochain condo locatif.</h4>
929 + <div class="content-btn">
930 + <!-- Calendly link widget begin -->
931 + <a class="btn" href="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/armel-liveo/30min?back=1&#038;month=2026-04'});return false;">RÉSERVER UNE RÉUNION</a>
932 + <!-- Calendly link widget end -->
933 + </div>
934 + </div>
935 + </div>
936 + </div>
937 + </div>
938 + </div>
939 +
940 + </section>
941 +
942 +
943 +
944 +
945 + <section id="block--form" class="block block--form" style="background-color:#082c5c;">
946 + <div class="row">
947 + <div class="col col-lg-20 col-22">
948 +
949 + <div class="content-box" >
950 + <h3 class='text-lg'>REJOINDRE LIVEO POINTE-CLAIRE</h3>
951 + <h4 class='text-md'>RECEVEZ LES MISES À JOUR DU PROJET ET AVEZ UN ACCÈS PRIORITAIRE AUX NOUVELLES FONCTIONNALITÉS.</h4>
952 +
953 + <div class="c--form c--mailchimp-form">
954 + <div class="c--mailchimp-form c--form">
955 +
956 + <!-- Begin Mailchimp Signup Form -->
957 +
958 +<style type="text/css">
959 + #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
960 + /* Add your own Mailchimp form style overrides in your site stylesheet or in this style block.
961 + We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
962 +</style>
963 +<div id="mc_embed_signup">
964 +<form action="https://quartiergreenwich.us11.list-manage.com/subscribe/post?u=72dd37a7d8c7bb8b4515bf948&amp;id=f4a7fe9b7a" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
965 + <div id="mc_embed_signup_scroll">
966 +
967 +<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
968 +<div class="mc-field-group">
969 + <label for="mce-EMAIL">Courriel <span class="asterisk">*</span>
970 +</label>
971 + <input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
972 +</div>
973 +<div class="mc-field-group">
974 + <label for="mce-FNAME">Prénom <span class="asterisk">*</span>
975 + <input type="text" value="" name="FNAME" class="required fname" id="mce-FNAME">
976 +</div>
977 +<div class="mc-field-group">
978 + <label for="mce-LNAME">Nom <span class="asterisk">*</span>
979 + <input type="text" value="" name="LNAME" class="required lname" id="mce-LNAME">
980 +</div>
981 +<div class="mc-field-group size1of2">
982 + <label for="mce-PHONE">Téléphone </label>
983 + <input type="text" name="PHONE" class="" value="" id="mce-PHONE">
984 +</div>
985 + <div id="mce-responses" class="clear">
986 + <div class="response" id="mce-error-response" style="display:none"></div>
987 + <div class="response" id="mce-success-response" style="display:none"></div>
988 + </div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
989 + <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_72dd37a7d8c7bb8b4515bf948_f4a7fe9b7a" tabindex="-1" value=""></div>
990 + <div class="clear"><input type="submit" value="S'abonner" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
991 + </div>
992 +</form>
993 +</div>
994 +
995 +<!--End mc_embed_signup-->
996 + <!--<iframe loading="lazy" src="http://eepurl.com/g58LRv" width="100%" height="auto" style="width:100%; height:auto;" onload="resizeIframe(this)">-->
997 + </div>
998 + </div>
999 +
1000 + </div>
1001 +
1002 + </div>
1003 + </div>
1004 + </section>
1005 +
1006 +
1007 +
1008 +<!--<section id="block--mailchimp-form" class="block--mailchimp-form">
1009 +
1010 + <div class="row">
1011 + <div class="col col-14 offset-5">
1012 +
1013 + <div class="c--mailchimp-form c--form">
1014 + <div class="js--project-list-actual"></div>
1015 + <div class="js--input-project-in" style="display:none;">Liveo Pointe-Claire 3</div>
1016 + </div>
1017 +
1018 + </div>
1019 + </div>
1020 +
1021 +</section>-->
1022 +
1023 + <button class="sticky-button-form">
1024 + <span class="icon-close">
1025 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512.7 512.7" xml:space="preserve"><path d="m512.7 424.3-168-168 168-167.9L424.3 0l-168 167.9L88.4 0 0 88.4l167.9 167.9L0 424.3l88.4 88.4 167.9-168 168 168z"/></svg>
1026 + </span>
1027 + <span class="inner-btn js--scroll-to" data-scroll-to=".block--form">Abonnez-vous</span>
1028 + </button>
1029 +
1030 +
1031 +
1032 +<footer class="block block--footer">
1033 +
1034 + <div class="big-row row">
1035 + <div class="col col-lg-20 col-md-22 col-20">
1036 +
1037 + <!-- Row 1 -->
1038 + <div class="row row-1">
1039 + <div class="col col-text-1 col-md-9 col-24">
1040 + <div class="content-logo">
1041 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/08/logo-sotramont.png'> </div>
1042 +
1043 +
1044 +
1045 + <p>Basé à Montréal, un développeur immobilier, constructeur et promoteur de maisons neuves, condos et locatifs depuis 1968.</p>
1046 +
1047 + </div>
1048 +
1049 + <!-- - - - - - Loop Category Project && Project associated with the category - - - - - -->
1050 + <div class="col col-md-5 col-sm-8 offset-sm-0 col-18 offset-3 content-list-project">
1051 + <h3 class="text-lg sm--toggle-class">Condos</h3>
1052 + <ul>
1053 + <li>
1054 + <a href="https://sotramont.com/curtiss-condos/" target="">
1055 + Curtiss Condos </a>
1056 + </li>
1057 + </ul>
1058 + </div>
1059 + <div class="col col-md-5 col-sm-8 offset-sm-0 col-18 offset-3 content-list-project">
1060 + <h3 class="text-lg sm--toggle-class">Locatifs</h3>
1061 + <ul>
1062 + <li>
1063 + <a href="https://sotramont.com/liveo-bois-franc/" target="">
1064 + Liveo Bois-Franc </a>
1065 + </li>
1066 + <li>
1067 + <a href="https://sotramont.com/liveo-mascouche/" target="">
1068 + Liveo Mascouche </a>
1069 + </li>
1070 + <li>
1071 + <a href="https://sotramont.com/liveo-pointe-claire/" target="">
1072 + Liveo Pointe-Claire </a>
1073 + </li>
1074 + <li>
1075 + <a href="https://sotramont.com/liveo-repentigny/" target="">
1076 + Liveo Repentigny </a>
1077 + </li>
1078 + </ul>
1079 + </div>
1080 + <!-- - - - - - END LOOP - - - - - -->
1081 +
1082 + </div>
1083 +
1084 + <!-- Row 2 -->
1085 + <div class="row row-2 sm--toggle-class">
1086 + <div class="col col-md-12 col-24">
1087 + <h4 class="text-sm">Bureau Chef</h4>
1088 +
1089 + <p>55, rue de Louvain Ouest, Suite 350<br />
1090 +Montréal, QC, H2N 1A4, Canada</p>
1091 + </div>
1092 + <div class="col col-md-12 col-24 col-right">
1093 + <nav class="footer-navigation">
1094 + <ul id="footer-nav" class="menu"><li id="menu-item-3943" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3943"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
1095 +<li id="menu-item-3944" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3944"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
1096 +<li id="menu-item-3945" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3945"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
1097 +<li id="menu-item-3946" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3946"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
1098 +</ul> </nav>
1099 + </div>
1100 + </div>
1101 +
1102 + <!-- Row 3 -->
1103 + <div class="row row-3">
1104 + <div class="col col-md-18 col-24">
1105 + <p>&copy;2026 Sotramont. Tous droits réservés.</p>
1106 + <nav class="second-nav">
1107 + </nav>
1108 + </div>
1109 + <div class="col col-md-6 col-24 col-right">
1110 + <ul class='list--social js--hover-parent'><li><a href="https://www.instagram.com/sotramont/" target="_blank">
1111 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M352 0H160C71.648 0 0 71.648 0 160v192c0 88.352 71.648 160 160 160h192c88.352 0 160-71.648 160-160V160C512 71.648 440.352 0 352 0zm112 352c0 61.76-50.24 112-112 112H160c-61.76 0-112-50.24-112-112V160C48 98.24 98.24 48 160 48h192c61.76 0 112 50.24 112 112v192z"/><path d="M256 128c-70.688 0-128 57.312-128 128s57.312 128 128 128 128-57.312 128-128-57.312-128-128-128zm0 208c-44.096 0-80-35.904-80-80 0-44.128 35.904-80 80-80s80 35.872 80 80c0 44.096-35.904 80-80 80z"/><circle cx="393.6" cy="118.4" r="17.056"/></svg>
1112 + </a></li><li><a href="https://www.facebook.com/Sotramont/" target="_blank">
1113 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 310 310"><path d="M81.703 165.106h33.981V305a5 5 0 005 5H178.3a5 5 0 005-5V165.765h39.064a5 5 0 004.967-4.429l5.933-51.502a5 5 0 00-4.966-5.572h-44.996V71.978c0-9.732 5.24-14.667 15.576-14.667h29.42a5 5 0 005-5V5.037a5 5 0 00-5-5h-40.545A39.746 39.746 0 00185.896 0c-7.035 0-31.488 1.381-50.804 19.151-21.402 19.692-18.427 43.27-17.716 47.358v37.752H81.703a5 5 0 00-5 5v50.844a5 5 0 005 5.001z"/></svg>
1114 + </a></li><li><a href="https://www.linkedin.com/company/sotramont/" target="_blank">
1115 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 295.8 297.8"><path d="M80.6 272.1c0 4.9-4 8.9-8.9 8.9h-38c-4.9 0-8.9-4-8.9-8.9V112.9c0-4.9 4-8.9 8.9-8.9h38c4.9 0 8.9 4 8.9 8.9v159.2zM52.7 88.9c-19.9 0-36.1-16.2-36.1-36.1s16.2-36.1 36.1-36.1 36.1 16.2 36.1 36.1-16.1 36.1-36.1 36.1zm226.5 184c0 4.5-3.7 8.2-8.2 8.2h-40.8c-4.5 0-8.2-3.7-8.2-8.2v-74.7c0-11.1 3.3-48.8-29.1-48.8-25.1 0-30.2 25.8-31.2 37.4V273c0 4.5-3.7 8.2-8.2 8.2H114c-4.5 0-8.2-3.7-8.2-8.2V112.1c0-4.5 3.7-8.2 8.2-8.2h39.4c4.5 0 8.2 3.7 8.2 8.2V126c9.3-14 23.2-24.8 52.6-24.8 65.3 0 64.9 61 64.9 94.5l.1 77.2z"/></svg>
1116 + </a></li></ul> </div>
1117 + </div>
1118 +
1119 + </div>
1120 + </div>
1121 +
1122 +</footer>
1123 +
1124 +
1125 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=5.7.7' id='swv-js'></script>
1126 +<script type='text/javascript' id='contact-form-7-js-extra'>
1127 +/* <![CDATA[ */
1128 +var wpcf7 = {"api":{"root":"https:\/\/sotramont.com\/wp-json\/","namespace":"contact-form-7\/v1"}};
1129 +/* ]]> */
1130 +</script>
1131 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.7.7' id='contact-form-7-js'></script>
1132 +<script type='text/javascript' id='heateor_sss_sharing_js-js-before'>
1133 +function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}}; var heateorSssSharingAjaxUrl = 'https://sotramont.com/wp-admin/admin-ajax.php', heateorSssCloseIconPath = 'https://sotramont.com/wp-content/plugins/sassy-social-share/public/../images/close.png', heateorSssPluginIconPath = 'https://sotramont.com/wp-content/plugins/sassy-social-share/public/../images/logo.png', heateorSssHorizontalSharingCountEnable = 0, heateorSssVerticalSharingCountEnable = 0, heateorSssSharingOffset = -10; var heateorSssMobileStickySharingEnabled = 0;var heateorSssCopyLinkMessage = "Link copied.";var heateorSssUrlCountFetched = [], heateorSssSharesText = 'Shares', heateorSssShareText = 'Share';function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}
1134 +</script>
1135 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/sassy-social-share/public/js/sassy-social-share-public.js?ver=3.3.52' id='heateor_sss_sharing_js-js'></script>
1136 +
1137 +</body>
1138 +</html>
added tests/fixtures/sotramont/7185031ae49efca8b81e.html +267 −0
@@ -0,0 +1,267 @@
1 +<!DOCTYPE html><!-- This site was created in Webflow. https://webflow.com --><!-- Last Published: Tue May 12 2026 12:46:14 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="www.liveomascouche.com" data-wf-page="6909521800ff45dd1f1ab8f8" data-wf-site="6909521800ff45dd1f1ab91f" lang="en"><head><meta charset="utf-8"/><link href="https://cdn.prod.website-files.com" rel="preconnect" crossorigin="anonymous"/><title>Liveo Mascouche | Condos locatifs modernes et lumineux</title><meta content="Découvrez Liveo Mascouche : des condos locatifs contemporains, baignés de lumière et pensés pour le confort, la tranquillité et la vie de quartier." name="description"/><meta content="Liveo Mascouche | Condos locatifs modernes et lumineux" property="og:title"/><meta content="Découvrez Liveo Mascouche : des condos locatifs contemporains, baignés de lumière et pensés pour le confort, la tranquillité et la vie de quartier." property="og:description"/><meta content="Liveo Mascouche | Condos locatifs modernes et lumineux" name="twitter:title"/><meta content="Découvrez Liveo Mascouche : des condos locatifs contemporains, baignés de lumière et pensés pour le confort, la tranquillité et la vie de quartier." name="twitter:description"/><meta property="og:type" content="website"/><meta content="summary_large_image" name="twitter:card"/><meta content="width=device-width, initial-scale=1" name="viewport"/><meta content="Webflow" name="generator"/><link href="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/css/onedegree-demo-site-cc3700d3b1360c5e2d8.webflow.shared.30b54ef65.css" rel="stylesheet" type="text/css" integrity="sha384-MLVO9l2rznQL59FwcC0Gdp0gTZWdazbslDyKoU82grhuVDGFSAoG9yZ55mbFELeM" crossorigin="anonymous"/><link href="https://fonts.googleapis.com" rel="preconnect"/><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous"/><script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script><script type="text/javascript">WebFont.load({ google: { families: ["Instrument Sans:300,400,500,600,700","Lora:300,400,500,600,700"] }});</script><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1aba37_liveo.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab9b8_Archscale-Webclip.png" rel="apple-touch-icon"/><!-- Google Tag Manager -->
2 +<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
3 +new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
4 +j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
5 +'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
6 +})(window,document,'script','dataLayer','GTM-PHZ4J7D9');</script>
7 +<!-- End Google Tag Manager --></head><body><div><div class="menu-wrapper"><div class="w-layout-grid grid-menu menu"><div id="w-node-_85f0aaff-dc7e-c724-adbb-61e37419566a-74195667" class="top-menu-wrap"><img loading="lazy" src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1aba21_LCG-Light.png" alt="" class="logo-3 menu-nav"/><img data-w-id="85f0aaff-dc7e-c724-adbb-61e37419566c" id="w-node-_85f0aaff-dc7e-c724-adbb-61e37419566c-74195667" alt="Close Icon" src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab947_X.svg" loading="lazy" class="_24px-icon"/></div><div id="w-node-_85f0aaff-dc7e-c724-adbb-61e37419566d-74195667" class="menu-wrap"><p class="white-60 bottom-margin">Navigation</p><div class="multi-layout-wrap-2"><h5 class="_0-25-rem-margin"><a href="/" aria-current="page" class="mobile-menu-link w--current">Accueil</a></h5></div><h5><a href="/vivre-liveo" class="mobile-menu-link">Vivre Liveo</a></h5><h5><a href="/project/espaces-communs" class="mobile-menu-link">Espaces communs</a></h5><h5><a href="/unites" class="mobile-menu-link">Les unités</a></h5></div><div id="w-node-_85f0aaff-dc7e-c724-adbb-61e3741956a0-74195667" class="menu-wrap _2"><p class="white-60 bottom-margin">Découvrir Liveo<br/></p><h5 class="menu"><a href="https://calendly.com/felix-liveo/new-meeting" class="mobile-menu-link">Réserver une visite</a></h5><h5 class="menu"><a href="/contact/contact-a" class="mobile-menu-link">Contact</a></h5></div></div></div><div class="navbar"><div class="navigation-wrapper"><div class="nav-logo-wrapper"><a href="/" aria-current="page" class="navbar-link-2 w-inline-block w--current"><img data-w-id="85f0aaff-dc7e-c724-adbb-61e3741956be" sizes="(max-width: 1072px) 100vw, 1072px" alt="" src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/690955a38e73255f8f1b5e1c_LM-DR-Web.png" loading="lazy" srcset="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/690955a38e73255f8f1b5e1c_LM-DR-Web-p-500.png 500w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/690955a38e73255f8f1b5e1c_LM-DR-Web.png 1072w" class="logo navigation"/></a></div><div class="navbar-navigation"><a href="/vivre-liveo" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Vivre Liveo</div><div class="button-interactive-mark">Vivre Liveo</div></div></a><a href="/unites" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Les unités</div><div class="button-interactive-mark">Les unités</div></div></a><a href="/project/espaces-communs" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Espaces communs</div><div class="button-interactive-mark">Espaces communs</div></div></a><a href="/contact/contact-a" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Contact</div><div class="button-interactive-mark">Contact</div></div></a></div><div class="button-wrapper navigation"><a data-w-id="85f0aaff-dc7e-c724-adbb-61e3741956e0" href="https://calendly.com/lyndabouchard/liveo-mascouche-reunion" class="button navigation w-inline-block"><div class="inside-button"><div class="button-interactive-mark">Réserver une visite</div><div class="button-interactive-mark">Réserver une visite</div></div><div class="button-arrow-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/><img loading="lazy" src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/></div></a><div data-w-id="85f0aaff-dc7e-c724-adbb-61e3741956e9" class="hamburger"><div class="hamburger-line"></div><div class="hamburger-line"></div></div></div></div><div class="dropdown-menu-wrapper"><div class="dropdown-menu"><div class="dropdown-menu-div"><div class="dropdown-menu-single-2"><div class="gray left-and-bottom-margin">Main Pages</div><a href="/" aria-current="page" class="button navlink w-inline-block w--current"><div class="inside-button navlink"><div class="button-interactive-mark">Home (A)</div><div class="button-interactive-mark">Home (A)</div></div></a><a href="/home/home-b" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Home (B)</div><div class="button-interactive-mark">Home (B)</div></div></a><a href="/home/home-c" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Home (C)</div><div class="button-interactive-mark">Home (C)</div></div></a></div></div><div class="dropdown-menu-div"><div class="dropdown-menu-single-2"><div class="gray left-and-bottom-margin">Contact Pages</div><a href="/contact/contact-a" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Contact (A)</div><div class="button-interactive-mark">Contact (A)</div></div></a><a href="/contact/tirage-2479284" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Contact (B)</div><div class="button-interactive-mark">Contact (B)</div></div></a><a href="/contact/portes-ouvertes" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Contact (C)</div><div class="button-interactive-mark">Contact (C)</div></div></a></div></div><div class="dropdown-menu-div"><div class="dropdown-menu-single-2"><div class="gray left-and-bottom-margin">Project Pages</div><a href="/project/espaces-communs" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Projects (A)</div><div class="button-interactive-mark">Projects (A)</div></div></a><a href="/project/projects-b" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Projects (B)</div><div class="button-interactive-mark">Projects (B)</div></div></a><a href="/project/projects-c" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Projects (C)</div><div class="button-interactive-mark">Projects (C)</div></div></a><a href="https://archscale.webflow.io/projects/ridgeway-house-retreat-in-the-hills" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Projects Article</div><div class="button-interactive-mark">Projects Article</div></div></a></div></div><div class="dropdown-menu-div"><div class="dropdown-menu-single-2"><div class="gray left-and-bottom-margin">Pages</div><a href="/vivre-liveo" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">About</div><div class="button-interactive-mark">About</div></div></a><a href="/unites" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Services</div><div class="button-interactive-mark">Services</div></div></a><a href="https://archscale.webflow.io/services/architectural-design" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Service Details</div><div class="button-interactive-mark">Service Details</div></div></a><a href="/blog" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Blog</div><div class="button-interactive-mark">Blog</div></div></a><a href="https://archscale.webflow.io/blog/the-green-space-revolution-is-the-living-building-the-future-2" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Blog Article</div><div class="button-interactive-mark">Blog Article</div></div></a></div></div><div class="dropdown-menu-div"><div class="dropdown-menu-single-2"><div class="gray left-and-bottom-margin">Template</div><a href="/template/licenses" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Licenses</div><div class="button-interactive-mark">Licenses</div></div></a><a href="/template/style-guide" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Style Guide</div><div class="button-interactive-mark">Style Guide</div></div></a><a href="/privacy-policy" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">Privacy Policy</div><div class="button-interactive-mark">Privacy Policy</div></div></a><a href="https://archscale.webflow.io/404" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">404</div><div class="button-interactive-mark">404</div></div></a><a href="https://archscale.webflow.io/401" class="button navlink w-inline-block"><div class="inside-button navlink"><div class="button-interactive-mark">401</div><div class="button-interactive-mark">401</div></div></a></div></div></div></div><div class="background-blur"></div></div><div class="dropdown-menu-background"></div></div><section class="section image-fullwide home"><div data-w-id="1c6ac6ad-c040-a7c5-c2df-8cc6b577b29a" style="opacity:0" class="background-image"><div class="image-gradient top-gradient"></div><div data-poster-url="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F6909521800ff45dd1f1aba1b_SOTR24_Liveo_Chateauguay-Ubi-Unit%20%283%29_1-poster-00001.jpg" data-video-urls="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F6909521800ff45dd1f1aba1b_SOTR24_Liveo_Chateauguay-Ubi-Unit%20%283%29_1-transcode.mp4,https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F6909521800ff45dd1f1aba1b_SOTR24_Liveo_Chateauguay-Ubi-Unit%20%283%29_1-transcode.webm" data-autoplay="true" data-loop="false" data-wf-ignore="true" class="background-video w-background-video w-background-video-atom"><video id="097c97fd-b381-9484-69a3-be657156e7a9-video" autoplay="" style="background-image:url(&quot;https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F6909521800ff45dd1f1aba1b_SOTR24_Liveo_Chateauguay-Ubi-Unit%20%283%29_1-poster-00001.jpg&quot;)" muted="" playsinline="" data-wf-ignore="true" data-object-fit="cover"><source src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F6909521800ff45dd1f1aba1b_SOTR24_Liveo_Chateauguay-Ubi-Unit%20%283%29_1-transcode.mp4" data-wf-ignore="true"/><source src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F6909521800ff45dd1f1aba1b_SOTR24_Liveo_Chateauguay-Ubi-Unit%20%283%29_1-transcode.webm" data-wf-ignore="true"/></video></div></div><div class="w-layout-blockcontainer container _100-height w-container"><div class="w-layout-grid grid _100-height"><div id="w-node-_5ce91189-2d90-3bcb-7a74-65b85bff7ab4-1f1ab8f8" class="heading-middle white"><div class="heading-and-label"><div data-w-id="5ce91189-2d90-3bcb-7a74-65b85bff7ab6" style="opacity:0" class="label white"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab925_Handshake%20White%20Icon.svg" loading="lazy" alt="Handshake Icon White" class="icon-20px"/><p>Maintenant disponible</p></div><h1 data-w-id="5ce91189-2d90-3bcb-7a74-65b85bff7aba" style="opacity:0" class="max-670px">des condos locatifs neufs, <span class="italic medium">tout inclus.</span></h1></div><div data-w-id="234e6048-29f0-3d8b-6f56-c0ee12f77bb9" style="opacity:0" class="button-wrapper _0-5-rem-top-margin"><a href="/unites" class="button white w-inline-block"><div class="button-text-wrapper"><div class="button-interactive-mark">Voir les unités</div><div class="button-interactive-mark">Voir les unités</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/></div></a></div></div></div></div></section><div class="line"></div><section class="section _9-75rem-padding"><div class="wrap"></div><div class="w-layout-blockcontainer container w-container"><div class="w-layout-grid grid"><div id="w-node-_3dc21af3-47f4-7911-647b-739e6ce956ca-1f1ab8f8" class="heading-middle"><div class="heading-and-label _1-5rem-gap"><div data-w-id="3dc21af3-47f4-7911-647b-739e6ce956cc" style="opacity:0" class="label"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab920_House%20Icon.svg" loading="lazy" alt="House Icon" class="icon-20px"/><p>L&#x27;éxperience  Liveo</p></div><p data-w-id="3dc21af3-47f4-7911-647b-739e6ce956d0" style="opacity:0" class="body-xl max-920px">Liveo Mascouche combine un design contemporain à une qualité de construction durable, pour créer un milieu de vie où il fait bon vivre — maintenant et pour longtemps.<br/><br/>Rien à penser.  Juste à emménager.</p></div><div class="button-wrapper _1-25-rem-top-margin"><a data-w-id="3dc21af3-47f4-7911-647b-739e6ce956d2" style="opacity:0" href="/vivre-liveo" class="button w-inline-block"><div class="button-text-wrapper"><div class="button-interactive-mark">Découvrir la vie chez Liveo</div><div class="button-interactive-mark">Découvrir la vie chez Liveo</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/></div></a></div></div></div></div></section><div class="line"></div><section class="section"><div class="w-layout-blockcontainer container w-container"><div class="w-layout-grid grid"><div id="w-node-be829563-5a33-d9b5-d3e5-b69b64a4b011-1f1ab8f8" class="numbers-wrapper"><div id="w-node-b9e85b16-2fc4-c172-e504-8f055b9d2edc-1f1ab8f8" data-w-id="b9e85b16-2fc4-c172-e504-8f055b9d2edc" style="opacity:0" class="number"><h3>100 % neuf</h3><p class="gray">Construite pour durer</p></div><div id="w-node-_25658ff9-61d3-be10-b306-89039e772d72-1f1ab8f8" data-w-id="25658ff9-61d3-be10-b306-89039e772d72" style="opacity:0" class="number"><h3>8 000 pi²</h3><p class="gray">D’espaces communs</p></div><div id="w-node-fdc05bee-916f-5959-1c87-af155c7989f3-1f1ab8f8" data-w-id="fdc05bee-916f-5959-1c87-af155c7989f3" style="opacity:0" class="number"><h3>15 mins</h3><p class="gray">Du centre-ville de Montréal</p></div><div id="w-node-_7e27d912-aac6-66c5-6884-ccc12d53b17b-1f1ab8f8" data-w-id="7e27d912-aac6-66c5-6884-ccc12d53b17b" style="opacity:0" class="number"><h3>2025</h3><p class="gray">Disponible maintenant</p></div></div></div></div></section><div class="line"></div><section class="section _9-75rem-padding"><div class="w-layout-blockcontainer container w-container"><div class="w-layout-grid grid"><div id="w-node-_42e2f9aa-ab8d-9a55-9f0e-455b926e3925-1f1ab8f8" class="heading-left-to-right _4-rem-bottom-margin"><div class="heading-and-label left"><div data-w-id="42e2f9aa-ab8d-9a55-9f0e-455b926e3927" style="opacity:0" class="label"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab984_Emer%20Icon.svg" loading="lazy" alt="Alert icon" class="icon-20px"/><p>Les unités</p></div><h1 data-w-id="42e2f9aa-ab8d-9a55-9f0e-455b926e392b" style="opacity:0" class="max-600px">Découvrez nos plans pensés<span class="italic"> pour vous</span></h1></div><div data-w-id="42e2f9aa-ab8d-9a55-9f0e-455b926e3930" style="opacity:0" class="paragraph-and-button"><p class="gray max-670px">Nos condos locatifs combinent design moderne, confort et luminosité. Découvrez les modèles disponibles et trouvez l’unité qui vous ressemble.</p><div class="button-wrapper"><a href="https://calendly.com/lyndabouchard/liveo-mascouche-reunion" class="button w-inline-block"><div class="button-text-wrapper"><div class="button-interactive-mark">Réserver une visite</div><div class="button-interactive-mark">Réserver une visite</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/></div></a><a href="/unites" class="button secondary w-inline-block"><div class="button-text-wrapper"><div class="button-interactive-mark">Voir les unités</div><div class="button-interactive-mark">Voir les unités</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/></div></a></div></div></div><div id="w-node-_6d77f653-40d4-ae2f-fc32-811bb50eeda0-1f1ab8f8" data-w-id="6d77f653-40d4-ae2f-fc32-811bb50eeda0" style="opacity:0" class="w-dyn-list"><div role="list" class="services-ver-a-collection-list w-dyn-items"><div role="listitem" class="w-dyn-item"><a href="/unites/type-a-inv" class="services-ver-a-link w-inline-block"><div class="services-ver-a-wrapper left"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab984_Emer%20Icon.svg" loading="lazy" alt="Alert icon" class="icon-32px"/><div class="paragraph-and-button _0-75-rem-gap"><p class="gray max-320px">À partir de 1 470 $/mois</p><h5>Type A-INV</h5><p class="gray max-320px">1 chambre • 1 salle de bain • 633 pi²</p><div class="button-wrapper _0-5-rem-top-margin"><div class="button secondary no-background"><div class="button-text-wrapper"><div class="button-interactive-mark">Découvrir l’unité</div><div class="button-interactive-mark">Découvrir l’unité</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/></div></div></div></div></div><div class="services-ver-a-wrapper image"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adf01c992d091e2380e39_LVM1%20-%20UNITE%CC%81%20A-INV.png" loading="lazy" alt="" sizes="61px" srcset="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adf01c992d091e2380e39_LVM1%20-%20UNITE%CC%81%20A-INV-p-500.png 500w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adf01c992d091e2380e39_LVM1%20-%20UNITE%CC%81%20A-INV-p-800.png 800w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adf01c992d091e2380e39_LVM1%20-%20UNITE%CC%81%20A-INV-p-1080.png 1080w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adf01c992d091e2380e39_LVM1%20-%20UNITE%CC%81%20A-INV.png 1201w" class="clickable-image"/></div></a></div><div role="listitem" class="w-dyn-item"><a href="/unites/type-a" class="services-ver-a-link w-inline-block"><div class="services-ver-a-wrapper left"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab984_Emer%20Icon.svg" loading="lazy" alt="Alert icon" class="icon-32px"/><div class="paragraph-and-button _0-75-rem-gap"><p class="gray max-320px">À partir de 1 425 $/mois</p><h5>Type A</h5><p class="gray max-320px">1 chambre • 1 salle de bain • 633 pi²</p><div class="button-wrapper _0-5-rem-top-margin"><div class="button secondary no-background"><div class="button-text-wrapper"><div class="button-interactive-mark">Découvrir l’unité</div><div class="button-interactive-mark">Découvrir l’unité</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/></div></div></div></div></div><div class="services-ver-a-wrapper image"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adf01c992d091e2380e39_LVM1%20-%20UNITE%CC%81%20A-INV.png" loading="lazy" alt="" sizes="61px" srcset="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adf01c992d091e2380e39_LVM1%20-%20UNITE%CC%81%20A-INV-p-500.png 500w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adf01c992d091e2380e39_LVM1%20-%20UNITE%CC%81%20A-INV-p-800.png 800w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adf01c992d091e2380e39_LVM1%20-%20UNITE%CC%81%20A-INV-p-1080.png 1080w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adf01c992d091e2380e39_LVM1%20-%20UNITE%CC%81%20A-INV.png 1201w" class="clickable-image"/></div></a></div><div role="listitem" class="w-dyn-item"><a href="/unites/type-e2-inv" class="services-ver-a-link w-inline-block"><div class="services-ver-a-wrapper left"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab984_Emer%20Icon.svg" loading="lazy" alt="Alert icon" class="icon-32px"/><div class="paragraph-and-button _0-75-rem-gap"><p class="gray max-320px">À partir de 1 895 $/mois</p><h5>Type E2-INV</h5><p class="gray max-320px">2 chambres • 1 salle de bain • 902 pi²</p><div class="button-wrapper _0-5-rem-top-margin"><div class="button secondary no-background"><div class="button-text-wrapper"><div class="button-interactive-mark">Découvrir l’unité</div><div class="button-interactive-mark">Découvrir l’unité</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/></div></div></div></div></div><div class="services-ver-a-wrapper image"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690ae1a9ed293990b269ea6d_LVM1%20-%20UNITE%CC%81%20E2-INV.png" loading="lazy" alt="" sizes="61px" srcset="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690ae1a9ed293990b269ea6d_LVM1%20-%20UNITE%CC%81%20E2-INV-p-500.png 500w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690ae1a9ed293990b269ea6d_LVM1%20-%20UNITE%CC%81%20E2-INV-p-800.png 800w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690ae1a9ed293990b269ea6d_LVM1%20-%20UNITE%CC%81%20E2-INV-p-1080.png 1080w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690ae1a9ed293990b269ea6d_LVM1%20-%20UNITE%CC%81%20E2-INV.png 1201w" class="clickable-image"/></div></a></div></div></div></div></div></section><div class="line"></div><section class="section _9-75rem-padding"><div class="w-layout-blockcontainer container w-container"><div class="w-layout-grid grid"><div id="w-node-_669c3bf1-7b02-b6e4-da22-6812cce71278-1f1ab8f8" class="heading-middle _5-rem-bottom-margin"><div class="heading-and-label"><div data-w-id="669c3bf1-7b02-b6e4-da22-6812cce7127a" style="opacity:0" class="label"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab94e_Article_Icon.svg" loading="lazy" alt="Slot Icon" class="icon-20px"/><p>Espaces communs</p></div><h1 data-w-id="669c3bf1-7b02-b6e4-da22-6812cce7127e" style="opacity:0" class="max-670px">Des espaces pensés<strong> </strong>pour <span class="italic">votre bien-être </span></h1></div><div data-w-id="89b13234-4185-6580-efc9-4dbb79c708ff" style="opacity:0"><p class="gray max-670px">Nos espaces ont été pensés pour offrir un quotidien fluide et inspirant — que ce soit pour vous détendre, socialiser ou simplement profiter de votre environnement.</p></div><div data-w-id="5e37521f-e456-b059-610f-c0fa7cee0bf6" style="opacity:0" class="button-wrapper _1-25-rem-top-margin"><a href="/vivre-liveo" class="button w-inline-block"><div class="button-text-wrapper"><div class="button-interactive-mark">Découvrir la vie chez Liveo</div><div class="button-interactive-mark">Découvrir la vie chez Liveo</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/></div></a><a href="/contact/contact-a" class="button secondary w-inline-block"><div class="button-text-wrapper"><div class="button-interactive-mark">Contact</div><div class="button-interactive-mark">Contact</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/></div></a></div></div><div id="w-node-_7114ad43-636d-65e2-51ef-fdc1212babd4-1f1ab8f8" data-w-id="7114ad43-636d-65e2-51ef-fdc1212babd4" style="opacity:0" class="project-first---left w-dyn-list"><div role="list" class="w-dyn-items"><div role="listitem" class="w-dyn-item"><a href="/espaces-communs/nova-market-plaza-redevelopment" class="projects-v1-link w-inline-block"><div class="image-wrapper _570px-height"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab95d_lcg-gym.webp" loading="lazy" alt="" sizes="(max-width: 991px) 38px, 56px" srcset="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab95d_lcg-gym-p-500.webp 500w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab95d_lcg-gym-p-800.webp 800w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab95d_lcg-gym-p-1080.webp 1080w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab95d_lcg-gym-p-1600.webp 1600w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab95d_lcg-gym-p-2000.webp 2000w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab95d_lcg-gym-p-2600.webp 2600w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab95d_lcg-gym-p-3200.webp 3200w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab95d_lcg-gym.webp 4400w" class="clickable-image"/></div><div class="projects-v1-info"><h6>Centre sportif</h6><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-24px"/></div></a></div></div></div><div id="w-node-_6ef9bd21-8366-a11b-79ed-c2b5ea18c5f4-1f1ab8f8" data-w-id="6ef9bd21-8366-a11b-79ed-c2b5ea18c5f4" style="opacity:0" class="project-first---right w-dyn-list"><div role="list" class="w-dyn-items"><div role="listitem" class="w-dyn-item"><a href="/espaces-communs/salle-commune" class="projects-v1-link w-inline-block"><div class="image-wrapper _570px-height"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adc217113e7cbba8cb808_SOTR24_Liveo_Mascouche_1_2_3-Cam_Salle%20Commune-min.jpg" loading="lazy" alt="" sizes="57px" srcset="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adc217113e7cbba8cb808_SOTR24_Liveo_Mascouche_1_2_3-Cam_Salle%20Commune-min-p-500.jpg 500w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adc217113e7cbba8cb808_SOTR24_Liveo_Mascouche_1_2_3-Cam_Salle%20Commune-min-p-800.jpg 800w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adc217113e7cbba8cb808_SOTR24_Liveo_Mascouche_1_2_3-Cam_Salle%20Commune-min-p-1080.jpg 1080w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adc217113e7cbba8cb808_SOTR24_Liveo_Mascouche_1_2_3-Cam_Salle%20Commune-min-p-1600.jpg 1600w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adc217113e7cbba8cb808_SOTR24_Liveo_Mascouche_1_2_3-Cam_Salle%20Commune-min-p-2000.jpg 2000w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adc217113e7cbba8cb808_SOTR24_Liveo_Mascouche_1_2_3-Cam_Salle%20Commune-min-p-2600.jpg 2600w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adc217113e7cbba8cb808_SOTR24_Liveo_Mascouche_1_2_3-Cam_Salle%20Commune-min-p-3200.jpg 3200w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/690adc217113e7cbba8cb808_SOTR24_Liveo_Mascouche_1_2_3-Cam_Salle%20Commune-min.jpg 4400w" class="clickable-image"/></div><div class="projects-v1-info"><h6>Salle commune</h6><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-24px"/></div></a></div></div></div><div id="w-node-cffd8943-5f61-89c1-6867-a0471a828237-1f1ab8f8" data-w-id="cffd8943-5f61-89c1-6867-a0471a828237" style="opacity:0" class="middle-project w-dyn-list"><div role="list" class="w-dyn-items"><div role="listitem" class="w-dyn-item"><a href="/espaces-communs/espace-cowork" class="projects-v1-link w-inline-block"><div class="image-wrapper _570px-height"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab97b_lcg-co_work.png" loading="lazy" alt="" sizes="(max-width: 991px) 42px, 56px" srcset="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab97b_lcg-co_work-p-500.png 500w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab97b_lcg-co_work-p-800.png 800w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab97b_lcg-co_work-p-1080.png 1080w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab97b_lcg-co_work.png 1172w" class="clickable-image"/></div><div class="projects-v1-info"><h6>Espace cowork</h6><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-24px"/></div></a></div></div></div><div id="w-node-_654c1cc1-572d-d01f-77fa-cec332341de1-1f1ab8f8" data-w-id="654c1cc1-572d-d01f-77fa-cec332341de1" style="opacity:0" class="project-first---right w-dyn-list"><div role="list" class="w-dyn-items"><div role="listitem" class="w-dyn-item"><a href="/espaces-communs/haven-co-creative-office-headquarters" class="projects-v1-link w-inline-block"><div class="image-wrapper _570px-height"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1ab935_lcg-piscine.avif" loading="lazy" alt="" class="clickable-image"/></div><div class="projects-v1-info"><h6>Piscine intérieure de 70 pieds</h6><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-24px"/></div></a></div></div></div><div id="w-node-ed9cff27-4521-76b2-e01d-6a5f147857d6-1f1ab8f8" data-w-id="ed9cff27-4521-76b2-e01d-6a5f147857d6" style="opacity:0" class="project-first---left w-dyn-list"><div role="list" class="w-dyn-items"><div role="listitem" class="w-dyn-item"><a href="/espaces-communs/salle-de-jeux" class="projects-v1-link w-inline-block"><div class="image-wrapper _570px-height"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1aba0f_Screenshot%202025-10-29%20at%2011.15.29%E2%80%AFPM.png" loading="lazy" alt="" sizes="(max-width: 479px) 28px, (max-width: 767px) 6vw, (max-width: 991px) 30px, 56px" srcset="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1aba0f_Screenshot%25202025-10-29%2520at%252011.15.29%25E2%2580%25AFPM-p-500.png 500w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1aba0f_Screenshot%25202025-10-29%2520at%252011.15.29%25E2%2580%25AFPM-p-800.png 800w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1aba0f_Screenshot%25202025-10-29%2520at%252011.15.29%25E2%2580%25AFPM-p-1080.png 1080w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1aba0f_Screenshot%25202025-10-29%2520at%252011.15.29%25E2%2580%25AFPM-p-1600.png 1600w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91d/6909521800ff45dd1f1aba0f_Screenshot%202025-10-29%20at%2011.15.29%E2%80%AFPM.png 1916w" class="clickable-image"/></div><div class="projects-v1-info"><h6>Salle de jeux</h6><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-24px"/></div></a></div></div></div></div></div></section><section class="section note"><div class="w-layout-blockcontainer container w-container"><div class="w-layout-grid grid"><div id="w-node-ba1add7b-223b-1316-0744-7dc749dc47a6-1f1ab8f8" data-w-id="ba1add7b-223b-1316-0744-7dc749dc47a6" style="opacity:0" class="black-block"><div class="w-layout-grid grid"><div id="w-node-db713b9a-255c-8a0a-cf42-cf9a28dfaab8-1f1ab8f8" class="heading-left-to-right white margin-6-rem"><div class="heading-and-label left _1-5rem-gap"><div class="label white"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab925_Handshake%20White%20Icon.svg" loading="lazy" alt="Handshake Icon White" class="icon-20px"/><p>Notre philosophie</p></div><p class="body-xl max-670px">Chez Liveo, notre mission est simple : créer des espaces où vous pouvez vraiment vous sentir chez vous. Des milieux de vie où confort, tranquillité et appartenance se rencontrent dans un équilibre parfait.</p></div><div class="paragraph-and-button max-35"><p class="gray normal">Nos projets sont conçus pour s’adapter à votre rythme, encourager les échanges et simplifier votre quotidien. Vivre chez Liveo, c’est choisir la sérénité d’un foyer durable et bien pensé.</p><div class="button-wrapper"><a href="/contact/contact-a" class="button secondary white w-inline-block"><div class="button-text-wrapper"><div class="button-interactive-mark">Contact</div><div class="button-interactive-mark">Contact</div></div><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right White" class="icon-20px"/></a></div></div></div></div></div></div></div></section><section class="section _9-75rem-padding overflow-hidden"><div class="w-layout-blockcontainer container w-container"><div class="w-layout-grid grid"><div id="w-node-cc3ff315-113c-e153-74c5-80b12a5fe0bd-1f1ab8f8" class="heading-left-to-right _4-rem-bottom-margin"><div class="heading-and-label left"><div data-w-id="cc3ff315-113c-e153-74c5-80b12a5fe0bf" style="opacity:0" class="label"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab980_Speak%20Icon.svg" loading="lazy" alt="Speak Icon" class="icon-20px"/><p>Témoignages - Google</p></div><h2 data-w-id="cc3ff315-113c-e153-74c5-80b12a5fe0c3" style="opacity:0" class="max-670px">Ils on trouvé leur <br/>futur<span class="italic"> chez-eux</span></h2></div></div><div data-delay="1000" data-animation="slide" class="slider w-slider" data-autoplay="false" data-easing="ease" style="opacity:0" data-hide-arrows="false" data-disable-swipe="true" data-w-id="18e5caaf-3770-df17-087c-01d0c0b180c7" data-autoplay-limit="0" data-nav-spacing="3" data-duration="500" data-infinite="false" id="w-node-_18e5caaf-3770-df17-087c-01d0c0b180c7-1f1ab8f8"><div class="mask w-slider-mask"><div class="slide w-slide"><div class="testimonial-text"><p class="body-l">“Ça fait 2 ans que demeure ici et je viens de signer un autre 2 ans aucun bruit dans le passage et des voisins super et on s’habitue au train 😊 et les espaces sont très propre”</p><p class="gray">Lise F.</p></div></div><div class="slide w-slide"><div class="testimonial-text"><p class="body-l">“Un immense merci a amro pour son aide et son service, cela fait 6 mois que je vis ici et je viens de resigner 2 ans grace a mon experience.<br/><br/>Meilleur place ou j’ai habiter a date, tres propre avec une magnifique vue et surtout silencieux avec garage souterrain.”</p><p class="gray">Mike</p></div></div><div class="slide w-slide"><div class="testimonial-text"><p class="body-l">&quot;J&#x27;adore notre nouveau condo aucun bruit des voisins, immeuble très prope les concierges sont première classe ! Réponses rapides à nos demandes&quot;</p><p class="gray">Alain D.</p></div></div><div class="slide w-slide"><div class="testimonial-text"><p class="body-l">&quot;Au delà de mes attentes, en plus d&#x27;un superbe service de Danny mon concierge attitré. Merci à toute l&#x27;équipe.&quot;</p><p class="gray">Bernard P.</p></div></div><div class="slide w-slide"><div class="testimonial-text"><p class="body-l">“Super endroit, Daniel est toujours a l’écoute des besoins, quoi que ce soit ne vous genez pas il va vous aider. 10/10🙏”</p><p class="gray">Olivier L.</p></div></div></div><div class="arrow w-slider-arrow-left"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab949_Arrow_Left.svg" loading="lazy" alt="Arrow Left" class="icon-24px _60-opacity"/></div><div class="arrow right w-slider-arrow-right"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab94a_Arrow_Right.svg" loading="lazy" alt="Arrow Right" class="icon-24px"/></div><div class="slide-nav w-slider-nav w-round w-num"></div></div></div></div></section><div class="line"></div><section class="section _9-75rem-padding"><div class="w-layout-blockcontainer container w-container"><div class="w-layout-grid grid"><div id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40b8f-22f40b8c" data-w-id="06f4c95b-24bb-ba32-29cb-3b8a22f40b8f" class="heading-left"><div class="heading-and-label left"><div class="label"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab984_Emer%20Icon.svg" loading="lazy" alt="Alert icon" class="icon-20px"/><p>FAQ</p></div><h2 class="max-670px">Vos questions, <br/>nos  <span class="italic">réponses</span>.</h2></div><div class="paragraph-and-button"><p class="gray max-670px">Nous comprenons que choisir votre futur chez-soi est une décision importante. Vous trouverez ci-dessous les réponses aux questions les plus fréquentes à propos de Liveo Mascouche.</p><div class="button-wrapper"><a href="https://calendly.com/lyndabouchard/liveo-mascouche-reunion" class="button w-inline-block"><div class="button-text-wrapper"><div class="button-interactive-mark">Réserver une visite</div><div class="button-interactive-mark">Réserver une visite</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/></div></a><a href="/contact/contact-a" class="button secondary w-inline-block"><div class="button-text-wrapper"><div class="button-interactive-mark">Contact</div><div class="button-interactive-mark">Contact</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/></div></a></div></div></div><div id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40ba5-22f40b8c" class="faq-wrapper"><div id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40ba6-22f40b8c" class="dropdown"><div id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40ba7-22f40b8c" class="dropdown-toggle"><div class="w-layout-grid dropdown-grid"><h6 id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40ba9-22f40b8c">Quand puis-je emménager?</h6><img id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bab-22f40b8c" loading="lazy" alt="Plus Icon" src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab943_Plus.svg" class="plus-faq"/></div></div><div class="dropdown-list"><div class="w-layout-grid dropdown-grid"><div id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bae-22f40b8c" class="faq-answer-wrapper"><p id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40baf-22f40b8c" class="gray">Les unités sont <strong>disponibles dès aujourd’hui</strong> ! Réservez votre visite pour découvrir l’appartement parfait pour vous.</p></div></div></div><div class="service-background"></div></div><div class="dropdown"><div id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bb3-22f40b8c" class="dropdown-toggle"><div class="w-layout-grid dropdown-grid"><h6 id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bb5-22f40b8c">Qu’est-ce qui est inclus dans le loyer?</h6><img id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bb7-22f40b8c" loading="lazy" alt="Plus Icon" src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab943_Plus.svg" class="plus-faq"/></div></div><div class="dropdown-list"><div class="w-layout-grid dropdown-grid"><div id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bba-22f40b8c" class="faq-answer-wrapper"><p id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bbb-22f40b8c" class="gray">Votre loyer inclut <strong>5 électroménagers neufs</strong>, <strong>le Wi-Fi haute vitesse</strong> et <strong>un forfait télé avec récepteur</strong>.Le <strong>stationnement intérieur</strong> et <strong>l’espace de rangement</strong> sont offerts en option, selon la disponibilité.</p></div></div></div><div class="service-background"></div></div><div class="dropdown"><div id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bcb-22f40b8c" class="dropdown-toggle"><div class="w-layout-grid dropdown-grid"><h6 id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bcd-22f40b8c">Les animaux sont-ils acceptés?</h6><img id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bcf-22f40b8c" loading="lazy" alt="Plus Icon" src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab943_Plus.svg" class="plus-faq"/></div></div><div class="dropdown-list"><div class="w-layout-grid dropdown-grid"><div id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bd2-22f40b8c" class="faq-answer-wrapper"><p id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bd3-22f40b8c" class="gray">Oui ! Les animaux sont <strong>les bienvenus et même encouragés</strong> — un seul animal de <strong>moins de 20 lb</strong> est permis par logement.</p></div></div></div><div class="service-background"></div></div><div class="dropdown"><div id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bd7-22f40b8c" class="dropdown-toggle"><div class="w-layout-grid dropdown-grid"><h6 id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bd9-22f40b8c">Comment puis-je visiter?</h6><img id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bdb-22f40b8c" loading="lazy" alt="Plus Icon" src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab943_Plus.svg" class="plus-faq"/></div></div><div class="dropdown-list"><div class="w-layout-grid dropdown-grid"><div id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bde-22f40b8c" class="faq-answer-wrapper"><p id="w-node-_06f4c95b-24bb-ba32-29cb-3b8a22f40bdf-22f40b8c" class="gray">Les visites se font sur rendez-vous avec Lynda Bouchard, agent de location. Réservez votre visite dès aujourd’hui pour découvrir les unités disponibles.</p></div></div></div><div class="service-background"></div></div></div></div></div></section><div class="footer-margin"><section class="section image-fullwide bottom-padding"><div class="background-image"><div class="image-gradient bottom-full-color"></div><div data-poster-url="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F69095486a3736aeeff0d05f9_SOTR24_Liveo_Mascouche_Ubi_PH2-Sunrise_1-poster-00001.jpg" data-video-urls="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F69095486a3736aeeff0d05f9_SOTR24_Liveo_Mascouche_Ubi_PH2-Sunrise_1-transcode.mp4,https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F69095486a3736aeeff0d05f9_SOTR24_Liveo_Mascouche_Ubi_PH2-Sunrise_1-transcode.webm" data-autoplay="true" data-loop="true" data-wf-ignore="true" class="background-video w-background-video w-background-video-atom"><video id="f4394bbd-dde5-7fe7-98d8-fafe3c5440e3-video" autoplay="" loop="" style="background-image:url(&quot;https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F69095486a3736aeeff0d05f9_SOTR24_Liveo_Mascouche_Ubi_PH2-Sunrise_1-poster-00001.jpg&quot;)" muted="" playsinline="" data-wf-ignore="true" data-object-fit="cover"><source src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F69095486a3736aeeff0d05f9_SOTR24_Liveo_Mascouche_Ubi_PH2-Sunrise_1-transcode.mp4" data-wf-ignore="true"/><source src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f%2F69095486a3736aeeff0d05f9_SOTR24_Liveo_Mascouche_Ubi_PH2-Sunrise_1-transcode.webm" data-wf-ignore="true"/></video></div></div><div class="w-layout-blockcontainer container _100-height w-container"><div class="w-layout-grid grid _100-height"><div id="w-node-ac2b25ea-c36f-2421-64bf-352b8b31d918-e0c8b98b" data-w-id="ac2b25ea-c36f-2421-64bf-352b8b31d918" class="heading-middle white"><div class="heading-and-label"><div class="label white"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab925_Handshake%20White%20Icon.svg" loading="lazy" alt="Handshake Icon White" class="icon-20px"/><p>Prêt à emménager?</p></div><h1 class="display max-670px">Appelez Liveo <br/>votre <span class="italic">chez-vous.</span> </h1></div><div class="button-wrapper _1-25-rem-top-margin"><a href="https://calendly.com/lyndabouchard/liveo-mascouche-reunion" class="button white w-inline-block"><div class="button-text-wrapper"><div class="button-interactive-mark">Réserver une visite</div><div class="button-interactive-mark">Réserver une visite</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab922_Green%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right" class="icon-20px button-interactive-mark---arrow"/></div></a><a href="/contact/contact-a" class="button secondary no-background white w-inline-block"><div class="button-text-wrapper"><div class="button-interactive-mark">Contact</div><div class="button-interactive-mark">Contact</div></div><div class="button-arrow-wrapper"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6909521800ff45dd1f1ab921_White%20Arrow%20Right.svg" loading="lazy" alt="Arrow Right White" class="icon-20px button-interactive-mark---arrow"/></div></a></div></div></div></div></section><div class="line white"></div><div class="w-embed w-script"><style>
8 + /* --- Portes ouvertes popup --- */
9 + #visit-popup-overlay {
10 + position: fixed;
11 + inset: 0;
12 + z-index: 9999;
13 + display: none;
14 + align-items: center;
15 + justify-content: center;
16 + padding: 1.5rem;
17 +
18 + background: rgba(0, 0, 0, 0.35);
19 + backdrop-filter: blur(5px);
20 + -webkit-backdrop-filter: blur(5px);
21 +
22 + opacity: 0;
23 + pointer-events: none;
24 + transition: opacity 0.35s ease-out;
25 + }
26 +
27 + #visit-popup-overlay.visible {
28 + opacity: 1;
29 + pointer-events: auto;
30 + }
31 +
32 + #visit-popup {
33 + background: #ffffff;
34 + border-radius: 1.5rem;
35 + max-width: 420px;
36 + width: 100%;
37 + box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
38 + overflow: hidden;
39 + display: flex;
40 + flex-direction: column;
41 + position: relative;
42 +
43 + transform: translateY(14px) scale(0.97);
44 + opacity: 0;
45 + transition:
46 + opacity 0.35s ease-out,
47 + transform 0.35s ease-out;
48 + }
49 +
50 + #visit-popup-overlay.visible #visit-popup {
51 + transform: translateY(0) scale(1);
52 + opacity: 1;
53 + }
54 +
55 + #visit-popup-image {
56 + width: 100%;
57 + height: 200px;
58 + object-fit: cover;
59 + display: block;
60 + }
61 +
62 + #visit-popup-content {
63 + padding: 1.5rem 1.75rem 1.75rem;
64 + display: flex;
65 + flex-direction: column;
66 + gap: 0.75rem;
67 + }
68 +
69 + #visit-popup-label {
70 + font-size: 0.75rem;
71 + letter-spacing: 0.1em;
72 + text-transform: uppercase;
73 + opacity: 0.7;
74 + font-weight: 600;
75 + }
76 +
77 + #visit-popup-title {
78 + font-size: 1.4rem;
79 + line-height: 1.25;
80 + margin: 0;
81 + }
82 +
83 + #visit-popup-text {
84 + font-size: 0.95rem;
85 + line-height: 1.5;
86 + opacity: 0.8;
87 + margin: 0;
88 + }
89 +
90 + #visit-popup-close {
91 + position: absolute;
92 + top: 0.6rem;
93 + right: 0.8rem;
94 + border: none;
95 + background: rgba(255, 255, 255, 0.85);
96 + border-radius: 999px;
97 + width: 32px;
98 + height: 32px;
99 + cursor: pointer;
100 + font-size: 1.4rem;
101 + line-height: 1;
102 + color: #111111;
103 + opacity: 0.9;
104 + display: flex;
105 + align-items: center;
106 + justify-content: center;
107 + }
108 +
109 + #visit-popup-close:hover {
110 + opacity: 1;
111 + }
112 +
113 + .visit-popup-button-wrapper {
114 + margin-top: 1rem;
115 + }
116 +
117 + .visit-popup-cta {
118 + display: inline-flex;
119 + align-items: center;
120 + justify-content: center;
121 + gap: 0.6rem;
122 + background: #111111;
123 + color: #ffffff;
124 + padding: 0.85rem 1.7rem;
125 + border-radius: 999px;
126 + text-decoration: none;
127 + font-size: 0.95rem;
128 + font-weight: 500;
129 + white-space: nowrap;
130 + }
131 +
132 + .visit-popup-cta:hover {
133 + opacity: 0.92;
134 + }
135 +
136 + .visit-popup-cta-arrow {
137 + width: 18px;
138 + height: 18px;
139 + display: block;
140 + }
141 +
142 + @media screen and (max-width: 479px) {
143 + #visit-popup {
144 + max-width: 100%;
145 + border-radius: 1.25rem;
146 + }
147 +
148 + #visit-popup-image {
149 + height: 170px;
150 + }
151 +
152 + .visit-popup-cta {
153 + width: 100%;
154 + }
155 + }
156 +</style>
157 +
158 +<script>
159 + (function () {
160 + var POPUP_KEY = 'liveoMascouchePortesOuvertesPopupLastShown';
161 + var EVENT_URL = 'https://calendly.com/lyndabouchard/portes-ouvertes';
162 +
163 + // Auto-disable the popup the day after the event
164 + var EVENT_CUTOFF = new Date('2026-05-24T00:00:00').getTime();
165 +
166 + // TODO: Upload the portes ouvertes creative to Webflow Assets
167 + // and paste the resulting CDN URL here.
168 + var IMAGE_URL = 'https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/6a031c3aa1114ed5f19125ac_Screenshot%202026-05-12%20at%208.25.22%E2%80%AFAM.png';
169 +
170 + function isOnEventPage() {
171 + var path = window.location.href.toLowerCase();
172 + return path.indexOf('portes-ouvertes') !== -1;
173 + }
174 +
175 + function shouldShowPopup() {
176 + if (Date.now() > EVENT_CUTOFF) return false;
177 + if (isOnEventPage()) return false;
178 +
179 + try {
180 + var last = localStorage.getItem(POPUP_KEY);
181 + if (!last) return true;
182 + var diff = Date.now() - parseInt(last, 10);
183 + var oneDay = 24 * 60 * 60 * 1000;
184 + return diff > oneDay;
185 + } catch (e) {
186 + return true;
187 + }
188 + }
189 +
190 + function markPopupShown() {
191 + try {
192 + localStorage.setItem(POPUP_KEY, Date.now().toString());
193 + } catch (e) {}
194 + }
195 +
196 + function createPopup() {
197 + var overlay = document.createElement('div');
198 + overlay.id = 'visit-popup-overlay';
199 + overlay.setAttribute('role', 'dialog');
200 + overlay.setAttribute('aria-modal', 'true');
201 +
202 + overlay.innerHTML =
203 + '<div id="visit-popup">' +
204 + '<button id="visit-popup-close" aria-label="Fermer la fenêtre">&times;</button>' +
205 + '<img id="visit-popup-image" src="' + IMAGE_URL + '" alt="Portes ouvertes Livéo Mascouche">' +
206 + '<div id="visit-popup-content">' +
207 + '<div id="visit-popup-label">23 mai &nbsp;·&nbsp; 11h à 15h</div>' +
208 + '<h2 id="visit-popup-title">Une journée <span style="font-style:italic;">portes ouvertes</span> chez Livéo Mascouche.</h2>' +
209 + '<p id="visit-popup-text">' +
210 + 'Venez visiter le projet, rencontrer l\u2019équipe et profiter d\u2019offres réservées aux invités présents. Un prix surprise sera dévoilé sur place.' +
211 + '</p>' +
212 + '<div class="visit-popup-button-wrapper">' +
213 + '<a href="' + EVENT_URL + '" target="_blank" rel="noopener" class="visit-popup-cta">' +
214 + '<span>Réserver ma place</span>' +
215 + '<img src="https://cdn.prod.website-files.com/69022ac6c4e608409cea7677/69022ac7c4e608409cea770c_White%20Arrow%20Right.svg" alt="Flèche vers la droite" class="visit-popup-cta-arrow">' +
216 + '</a>' +
217 + '</div>' +
218 + '</div>' +
219 + '</div>';
220 +
221 + document.body.appendChild(overlay);
222 +
223 + var closeBtn = document.getElementById('visit-popup-close');
224 + closeBtn.addEventListener('click', hidePopup);
225 +
226 + overlay.addEventListener('click', function (e) {
227 + if (e.target === overlay) hidePopup();
228 + });
229 +
230 + document.addEventListener('keydown', function (e) {
231 + if (e.key === 'Escape') hidePopup();
232 + });
233 +
234 + function hidePopup() {
235 + var ov = document.getElementById('visit-popup-overlay');
236 + if (!ov) return;
237 + ov.classList.remove('visible');
238 + setTimeout(function () {
239 + ov.style.display = 'none';
240 + }, 350);
241 + }
242 + }
243 +
244 + function showPopup() {
245 + var overlay = document.getElementById('visit-popup-overlay');
246 + if (!overlay) {
247 + createPopup();
248 + overlay = document.getElementById('visit-popup-overlay');
249 + }
250 + overlay.style.display = 'flex';
251 +
252 + setTimeout(function () {
253 + overlay.classList.add('visible');
254 + }, 20);
255 +
256 + markPopupShown();
257 + }
258 +
259 + document.addEventListener('DOMContentLoaded', function () {
260 + if (!shouldShowPopup()) return;
261 + setTimeout(showPopup, 1500);
262 + });
263 + })();
264 +</script></div><section class="section footer"><div class="w-layout-blockcontainer container w-container"><div class="w-layout-grid grid"><img src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/690956445252525feb331fb8_LM-LT-Web.png" loading="lazy" id="w-node-_85e1ad08-f5f9-6111-ad80-cba7f2091c76-f2091c73" sizes="(max-width: 479px) 76px, (max-width: 991px) 33px, 56px" alt="" srcset="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/690956445252525feb331fb8_LM-LT-Web-p-500.png 500w, https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/690956445252525feb331fb8_LM-LT-Web.png 1072w" class="logo _2-rem-margin"/><div id="w-node-_92f1a28e-9274-1be1-05ff-d7971f7d3876-f2091c73" class="footer-left"><div class="footer-div max-350px"><p class="normal gray">Bureau de location</p><h4>1435 Ave de la Gare<br/>Mascouche, QC<br/>J7K 0Y4 <br/></h4></div><div class="footer-div max-500px"><p class="normal gray">S’abonner au Liveo Mascouche</p><div class="w-form"><form id="wf-form-Newsletter" name="wf-form-Newsletter" data-name="Newsletter" method="get" class="form" data-wf-page-id="6909521800ff45dd1f1ab8f8" data-wf-element-id="06acbe28-d033-7ddc-9690-856d647dc217"><input class="text-field footer w-input" maxlength="256" name="email-3" data-name="Email 3" placeholder="allo@courriel.ca" type="email" id="email-3" required=""/><input type="submit" data-wait="Please wait..." class="button secondary semi-bold w-button" value="Soumettre"/></form><div class="success-message w-form-done"><div>Your submission has been received!</div></div><div class="error-message w-form-fail"><div>Oops! Something went wrong while submitting the form.</div></div></div><p class="normal gray">* <em>En vous inscrivant, vous acceptez de recevoir des nouvelles et des offres de Liveo. Vous pouvez vous désabonner en tout temps.</em></p></div></div><div id="w-node-c9a26f89-00e0-633e-a304-3fe00d2a2ec2-f2091c73" class="footer-div-wrapper"><div id="w-node-_85e1ad08-f5f9-6111-ad80-cba7f2091c77-f2091c73" class="footer-div"><p class="normal gray">Le Projet</p><a href="/vivre-liveo" class="footer-link">Vivre Liveo</a><a href="/project/espaces-communs" class="footer-link">Espaces communs</a></div><div id="w-node-_85e1ad08-f5f9-6111-ad80-cba7f2091c88-f2091c73" class="footer-div"><p class="normal gray">Les Unités</p><a href="/unites" class="footer-link">Voir les unités</a><a href="#https://calendly.com/felix-liveo/new-meeting" class="footer-link">Réserver</a></div><div id="w-node-_85e1ad08-f5f9-6111-ad80-cba7f2091c95-f2091c73" class="footer-div"><p class="normal gray">Contact</p><a href="/contact/contact-a" class="footer-link">Contact </a><a href="/contact/contact-a" class="footer-link">Accueil </a></div></div><div id="w-node-_21c78616-155e-6aad-e820-c0170d0322e6-f2091c73" class="bottom-footer"><p class="normal gray">Site web conçu avec<strong>  </strong>❤ en 2025  par One Degree Media</p><div class="utility-links"><p class="normal gray"><a href="https://www.facebook.com/profile.php?id=61577389205686#" class="text-link white">Facebook</a></p><p class="normal gray"><a href="https://www.youtube.com/watch?v=SxYZzh8Cmes" class="text-link white">YouTube</a></p></div></div></div></div></section></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=6909521800ff45dd1f1ab91f" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/js/webflow.schunk.36b8fb49256177c8.js" type="text/javascript" integrity="sha384-4abIlA5/v7XaW1HMXKBgnUuhnjBYJ/Z9C1OSg4OhmVw9O3QeHJ/qJqFBERCDPv7G" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/6909521800ff45dd1f1ab91f/js/webflow.442239e2.4a939e3c5e6158e6.js" type="text/javascript" integrity="sha384-OiVGiyoEZuG1w1vK9QZexJMMDQJYwLiiQZj9T6nQoMkdFB55r6oxMEk6iSUiVoQT" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/gsap/3.15.0/gsap.min.js" type="text/javascript"></script><script src="https://cdn.prod.website-files.com/gsap/3.15.0/ScrollTrigger.min.js" type="text/javascript"></script><!-- Google Tag Manager (noscript) -->
265 +<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PHZ4J7D9"
266 +height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
267 +<!-- End Google Tag Manager (noscript) --></body></html>
\ No newline at end of file
added tests/fixtures/sotramont/8a18d29660125e463de7.html +9 −0
@@ -0,0 +1,9 @@
1 +<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
2 +<html><head>
3 +<title>301 Moved Permanently</title>
4 +</head><body>
5 +<h1>Moved Permanently</h1>
6 +<p>The document has moved <a href="https://www.liveomascouche.com">here</a>.</p>
7 +<hr>
8 +<address>Apache/2.4.41 (Ubuntu) Server at sotramont.com Port 443</address>
9 +</body></html>
added tests/fixtures/sotramont/d827f038d31c9cd2248b.html +1201 −0
@@ -0,0 +1,1201 @@
1 +
2 +
3 +
4 +
5 +
6 +
7 +
8 +
9 +
10 +
11 +
12 +
13 +
14 +
15 +
16 +
17 +
18 +
19 +
20 +
21 +
22 +
23 +
24 +
25 +
26 +
27 +
28 +
29 +
30 +
31 +
32 +
33 +
34 +
35 +
36 +
37 +
38 +
39 +
40 +
41 +
42 +
43 +
44 +
45 +
46 +
47 +
48 +
49 +
50 +<!doctype html>
51 +<html lang="fr-FR">
52 +<head>
53 + <meta charset="UTF-8">
54 + <meta name="viewport" content="width=device-width, initial-scale=1">
55 +
56 +
57 + <!-- Global site tag (gtag.js) - Google Analytics -->
58 + <script async src="https://www.googletagmanager.com/gtag/js?id=UA-35177730-1"></script>
59 + <script>
60 + window.dataLayer = window.dataLayer || [];
61 + function gtag(){dataLayer.push(arguments);}
62 + gtag('js', new Date());
63 + gtag('config', 'UA-35177730-1');
64 + </script>
65 + <!-- END Global site tag -->
66 +
67 + <!-- Google Tag Manager -->
68 + <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
69 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
70 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
71 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
72 + })(window,document,'script','dataLayer','GTM-KQGBN56');</script>
73 + <!-- End Google Tag Manager —>
74 +
75 + <!-- ScrollMagic -->
76 + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js" integrity="sha256-2p2tRZlPowp3P/04Pw2rqVCSbhyV/IB7ZEVUglrDS/c=" crossorigin="anonymous"></script>
77 + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/plugins/animation.gsap.min.js" integrity="sha256-+9YNuItWuR4sbqeaNiJOxG0BvptYz4fbUXbIZoH5Jwo=" crossorigin="anonymous"></script>
78 + <!-- END ScrollMagic -->
79 +
80 + <style type="text/css">
81 + .heateor_sss_button_instagram span.heateor_sss_svg,a.heateor_sss_instagram span.heateor_sss_svg{background:radial-gradient(circle at 30% 107%,#fdf497 0,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%)}
82 + .heateor_sss_horizontal_sharing .heateor_sss_svg,.heateor_sss_standard_follow_icons_container .heateor_sss_svg{
83 + color: #fff;
84 + border-width: 0px;
85 + border-style: solid;
86 + border-color: transparent;
87 + }
88 + .heateor_sss_horizontal_sharing .heateorSssTCBackground{
89 + color:#666;
90 + }
91 + .heateor_sss_horizontal_sharing span.heateor_sss_svg:hover,.heateor_sss_standard_follow_icons_container span.heateor_sss_svg:hover{
92 + border-color: transparent;
93 + }
94 + .heateor_sss_vertical_sharing span.heateor_sss_svg,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg{
95 + color: #fff;
96 + border-width: 0px;
97 + border-style: solid;
98 + border-color: transparent;
99 + }
100 + .heateor_sss_vertical_sharing .heateorSssTCBackground{
101 + color:#666;
102 + }
103 + .heateor_sss_vertical_sharing span.heateor_sss_svg:hover,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg:hover{
104 + border-color: transparent;
105 + }
106 + @media screen and (max-width:783px) {.heateor_sss_vertical_sharing{display:none!important}} </style>
107 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
108 +<link rel="alternate" hreflang="en" href="https://sotramont.com/en/liveo-pointe-claire-1-condos-for-rent-pointe-claire/" />
109 +<link rel="alternate" hreflang="fr" href="https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/" />
110 +<link rel="alternate" hreflang="x-default" href="https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/" />
111 +
112 + <!-- This site is optimized with the Yoast SEO plugin v20.11 - https://yoast.com/wordpress/plugins/seo/ -->
113 + <title>Condos à louer | Pointe-Claire | Liveo Pointe-Claire | Sotramont</title>
114 + <meta name="description" content="Découvez nos condos locatifs à louer à Pointe-Claire. Le projet Liveo Pointe-Claire est réalisé par le promoteur et constructeur immobilier, Sotramont." />
115 + <link rel="canonical" href="https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/" />
116 + <meta property="og:locale" content="fr_FR" />
117 + <meta property="og:type" content="article" />
118 + <meta property="og:title" content="Condos à louer | Pointe-Claire | Liveo Pointe-Claire | Sotramont" />
119 + <meta property="og:description" content="Découvez nos condos locatifs à louer à Pointe-Claire. Le projet Liveo Pointe-Claire est réalisé par le promoteur et constructeur immobilier, Sotramont." />
120 + <meta property="og:url" content="https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/" />
121 + <meta property="og:site_name" content="Sotramont" />
122 + <meta property="article:modified_time" content="2023-06-28T18:36:37+00:00" />
123 + <meta property="og:image" content="https://sotramont.com/wp-content/uploads/2020/07/Webp.net-compress-image-1.jpg" />
124 + <meta property="og:image:width" content="1920" />
125 + <meta property="og:image:height" content="1280" />
126 + <meta property="og:image:type" content="image/jpeg" />
127 + <meta name="twitter:card" content="summary_large_image" />
128 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/","url":"https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/","name":"Condos à louer | Pointe-Claire | Liveo Pointe-Claire | Sotramont","isPartOf":{"@id":"https://sotramont.com/?lang=en/#website"},"primaryImageOfPage":{"@id":"https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/#primaryimage"},"image":{"@id":"https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/#primaryimage"},"thumbnailUrl":"https://sotramont.com/wp-content/uploads/2020/07/Webp.net-compress-image-1.jpg","datePublished":"2021-03-16T16:54:25+00:00","dateModified":"2023-06-28T18:36:37+00:00","description":"Découvez nos condos locatifs à louer à Pointe-Claire. Le projet Liveo Pointe-Claire est réalisé par le promoteur et constructeur immobilier, Sotramont.","breadcrumb":{"@id":"https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/#primaryimage","url":"https://sotramont.com/wp-content/uploads/2020/07/Webp.net-compress-image-1.jpg","contentUrl":"https://sotramont.com/wp-content/uploads/2020/07/Webp.net-compress-image-1.jpg","width":1920,"height":1280},{"@type":"BreadcrumbList","@id":"https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://sotramont.com/"},{"@type":"ListItem","position":2,"name":"Liveo Pointe-Claire 1"}]},{"@type":"WebSite","@id":"https://sotramont.com/?lang=en/#website","url":"https://sotramont.com/?lang=en/","name":"Sotramont","description":"Montreal real-estate developer, builder and promoter.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://sotramont.com/?lang=en/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"}]}</script>
129 + <!-- / Yoast SEO plugin. -->
130 +
131 +
132 +<link rel="alternate" type="application/rss+xml" title="Sotramont &raquo; Feed" href="https://sotramont.com/feed/" />
133 +<link rel="alternate" type="application/rss+xml" title="Sotramont &raquo; Comments Feed" href="https://sotramont.com/comments/feed/" />
134 +<script type="text/javascript">
135 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/sotramont.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.2.2"}};
136 +/*! This file is auto-generated */
137 +!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){p.clearRect(0,0,i.width,i.height),p.fillText(e,0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(t,0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s("\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!s("\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!s("\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!s("\ud83e\udef1\ud83c\udffb\u200d\ud83e\udef2\ud83c\udfff","\ud83e\udef1\ud83c\udffb\u200b\ud83e\udef2\ud83c\udfff")}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
138 +</script>
139 +<style type="text/css">
140 +img.wp-smiley,
141 +img.emoji {
142 + display: inline !important;
143 + border: none !important;
144 + box-shadow: none !important;
145 + height: 1em !important;
146 + width: 1em !important;
147 + margin: 0 0.07em !important;
148 + vertical-align: -0.1em !important;
149 + background: none !important;
150 + padding: 0 !important;
151 +}
152 +</style>
153 + <link rel='stylesheet' id='wp-block-library-css' href='https://sotramont.com/wp-includes/css/dist/block-library/style.min.css?ver=6.2.2' type='text/css' media='all' />
154 +<style id='safe-svg-svg-icon-style-inline-css' type='text/css'>
155 +.safe-svg-cover .safe-svg-inside{display:inline-block;max-width:100%}.safe-svg-cover svg{height:100%;max-height:100%;max-width:100%;width:100%}
156 +
157 +</style>
158 +<link rel='stylesheet' id='classic-theme-styles-css' href='https://sotramont.com/wp-includes/css/classic-themes.min.css?ver=6.2.2' type='text/css' media='all' />
159 +<style id='global-styles-inline-css' type='text/css'>
160 +body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
161 +.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
162 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}
163 +.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
164 +</style>
165 +<link rel='stylesheet' id='wpml-blocks-css' href='https://sotramont.com/wp-content/plugins/sitepress-multilingual-cms/dist/css/blocks/styles.css?ver=4.6.4' type='text/css' media='all' />
166 +<link rel='stylesheet' id='contact-form-7-css' href='https://sotramont.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.7.7' type='text/css' media='all' />
167 +<link rel='stylesheet' id='mainStylesheet-css' href='https://sotramont.com/wp-content/themes/custom/dist/css/main.css?v=6.8&#038;ver=6.2.2' type='text/css' media='all' />
168 +<link rel='stylesheet' id='heateor_sss_frontend_css-css' href='https://sotramont.com/wp-content/plugins/sassy-social-share/public/css/sassy-social-share-public.css?ver=3.3.52' type='text/css' media='all' />
169 +<script type='text/javascript' src='https://sotramont.com/wp-includes/js/jquery/jquery.min.js?ver=3.6.4' id='jquery-core-js'></script>
170 +<script type='text/javascript' src='https://sotramont.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.0' id='jquery-migrate-js'></script>
171 +<script type='text/javascript' id='wpml-cookie-js-extra'>
172 +/* <![CDATA[ */
173 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"\/"}};
174 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"\/"}};
175 +/* ]]> */
176 +</script>
177 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/sitepress-multilingual-cms/res/js/cookies/language-cookie.js?ver=4.6.4' id='wpml-cookie-js'></script>
178 +<script type='text/javascript' src='https://sotramont.com/wp-content/themes/custom/dist/js/main.js?v=1.6&#038;ver=6.2.2' id='custom-js-js'></script>
179 +<script type='text/javascript' id='awhitepixel-ajaxscript-js-extra'>
180 +/* <![CDATA[ */
181 +var Theme_Variables = {"ajax_url":"https:\/\/sotramont.com\/wp-admin\/admin-ajax.php"};
182 +/* ]]> */
183 +</script>
184 +<script type='text/javascript' src='https://sotramont.com/wp-content/themes/custom/ajax/ajax-project-filter.js?ver=6.2.2' id='awhitepixel-ajaxscript-js'></script>
185 +<link rel="https://api.w.org/" href="https://sotramont.com/wp-json/" /><link rel="alternate" type="application/json" href="https://sotramont.com/wp-json/wp/v2/pages/8165" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://sotramont.com/xmlrpc.php?rsd" />
186 +<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://sotramont.com/wp-includes/wlwmanifest.xml" />
187 +<meta name="generator" content="WordPress 6.2.2" />
188 +<link rel='shortlink' href='https://sotramont.com/?p=8165' />
189 +<link rel="alternate" type="application/json+oembed" href="https://sotramont.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsotramont.com%2Fliveo-pointe-claire-1-condos-locatifs-louer-pointe-claire%2F" />
190 +<link rel="alternate" type="text/xml+oembed" href="https://sotramont.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsotramont.com%2Fliveo-pointe-claire-1-condos-locatifs-louer-pointe-claire%2F&#038;format=xml" />
191 +<meta name="generator" content="WPML ver:4.6.4 stt:1,4;" />
192 +<link rel="icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-32x32.png" sizes="32x32" />
193 +<link rel="icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-192x192.png" sizes="192x192" />
194 +<link rel="apple-touch-icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-180x180.png" />
195 +<meta name="msapplication-TileImage" content="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-270x270.png" />
196 + <script>
197 + function resizeIframe(obj) {
198 + obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
199 + }
200 + </script>
201 +</head>
202 +
203 +<body class="page-template-default page page-id-8165 page-parent">
204 +
205 +<!-- Google Tag Manager (noscript) -->
206 +<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KQGBN56"
207 +height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
208 +<!-- End Google Tag Manager (noscript) -->
209 +
210 +
211 +<header class="block--header sm--pin-top" data-sm-duration-dependancy=".block--project-submenu">
212 + <div class="row content-inner-header">
213 + <div class="col col-logo col-xl-4 col-lg-6 col-md-7 col-sm-8 col-12 offset-1">
214 + <a href="https://sotramont.com"><img class="global-logo" src="https://sotramont.com/wp-content/uploads/2020/08/logo-sotramont.png"></a>
215 + </div>
216 + <div class="col col-menu col-xl-18 col-lg-16 col-md-14 col-24">
217 + <nav class="sub-navigation">
218 + <ul id="sub-menu" class="menu"><li id="menu-item-3940" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3940"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
219 +<li id="menu-item-3941" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3941"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
220 +<li id="menu-item-3942" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3942"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
221 +</ul> <div class='c--language-switcher'><a href="https://sotramont.com/en/liveo-pointe-claire-1-condos-for-rent-pointe-claire/">en</a></div> </nav>
222 + <div class="content-main-nav">
223 + <nav class="main-navigation">
224 + <div class="menu-menu-header-fr-container"><ul id="primary-menu" class="menu"><li id="menu-item-3938" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3938"><a href="https://sotramont.com/la-difference-sotramont-a-propos/">La différence Sotramont</a></li>
225 +<li id="menu-item-3939" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3939"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
226 +<li id="menu-item-809" class="js--submenu-condos menu-item menu-item-type-custom menu-item-object-custom menu-item-809"><a title="js&#8211;submenu-condo">Curtiss Locatifs</a></li>
227 +<li id="menu-item-810" class="js--submenu-locatifs menu-item menu-item-type-custom menu-item-object-custom menu-item-810"><a title="js&#8211;submenu-rental">Liveo Locatifs</a></li>
228 +</ul></div> </nav>
229 + <div class="content-btn">
230 +
231 + <a href="https://sotramont.com/condo-maison-ville-vendre-louer/" class="btn btn--icon btn--icon__left">
232 + Recherche de propriétés
233 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.3 31.8"><path d="M17.4 0l-6.8 5.7V2.5H4.2V11L0 14.6l1.3 1.5 5-4.1V4.5h2.3V10l8.8-7.4L34 16.1l1.3-1.6z"/><path d="M27.8 19.8c0-4.3-3.5-7.7-7.7-7.7-4.3 0-7.7 3.5-7.7 7.7s3.5 7.7 7.7 7.7c1.8 0 3.6-.6 4.9-1.8l6.1 6.1 1.3-1.3-6.1-6.1c1-1.3 1.5-2.9 1.5-4.6zm-1.8 0c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6 6 2.7 6 6zM6.3 16.7H4.2v14.9h11.2v-2H6.3z"/></svg>
234 + </a>
235 + </div>
236 + </div>
237 + </div>
238 + </div>
239 +
240 + <div class="show-menu-open">
241 + <div class='c--language-switcher'><a href="https://sotramont.com/en/liveo-pointe-claire-1-condos-for-rent-pointe-claire/">en</a></div> </div>
242 +
243 + <div class="c--hamburger-menu">
244 + <div class="content-border content-open">
245 + <div class="border border-1"></div>
246 + <div class="border border-2"></div>
247 + <div class="border border-3"></div>
248 + </div>
249 + <div class="content-border content-close">
250 + <div class="border border-1"></div>
251 + <div class="border border-2"></div>
252 + </div>
253 + </div>
254 +
255 +
256 + <!-- SUBMENU -->
257 + <section class="block block--header-submenu js--submenu js--submenu-maisons">
258 + <div class="row big-row">
259 + <div class="col col-22">
260 + <div class="content-inner">
261 +
262 + <div class="content-title">
263 + <h3 class="text-lg">Notre Complémentaire </h3>
264 + </div>
265 + <div class="row">
266 + <div class="col col-10 col-typo">
267 + <p></p>
268 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons">
269 + Voir tout Complémentaire dans notre portfolio
270 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
271 + </a>
272 + </div>
273 +
274 + </div>
275 + </div>
276 + </div>
277 + </div>
278 + </section>
279 +
280 + <section class="block block--header-submenu js--submenu js--submenu-condos">
281 + <div class="row big-row">
282 + <div class="col col-22">
283 + <div class="content-inner">
284 +
285 + <div class="content-title">
286 + <h3 class="text-lg">Notre Condos </h3>
287 + </div>
288 + <div class="row">
289 + <div class="col col-6 col-list">
290 + <a href="https://sotramont.com/curtiss-condos/" target="">
291 + <figure>
292 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Curtiss-1920x904.png'>
293 + </figure>
294 + <!--<h4 class="text-md">Curtiss Condos</h4>-->
295 + <h5 class="text-sm">Saint-Laurent</h5>
296 + </a>
297 + </div>
298 +
299 + <div class="col col-10 col-typo">
300 + <p>Les condos Sotramont sont toujours dans des emplacements de premier choix et s'intègrent harmonieusement à leur environnement. Ces condos très appréciés attirent un équilibre sain entre les résidents et les investisseurs.</p>
301 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=condos">
302 + Voir tout Condos dans notre portfolio
303 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
304 + </a>
305 + </div>
306 +
307 + </div>
308 + </div>
309 + </div>
310 + </div>
311 + </section>
312 +
313 + <section class="block block--header-submenu js--submenu js--submenu-locatifs">
314 + <div class="row big-row">
315 + <div class="col col-22">
316 + <div class="content-inner">
317 +
318 + <div class="content-title">
319 + <h3 class="text-lg">Notre Locatifs </h3>
320 + </div>
321 + <div class="row">
322 + <div class="col col-6 col-list">
323 + <figure>
324 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Liveo-1920x904.png'>
325 + </figure>
326 + </div>
327 +
328 + <div class="col col-6 col-locations">
329 + <div>
330 + <span><a href="https://sotramont.com/liveo-bois-franc/" target=""><h5 class="text-sm">Saint-Laurent</h5></a></span><span><a href="https://sotramont.com/liveo-mascouche/" target=""><h5 class="text-sm">Mascouche</h5></a></span><span><a href="https://sotramont.com/liveo-pointe-claire/" target=""><h5 class="text-sm">Pointe-Claire</h5></a></span><span><a href="https://sotramont.com/liveo-repentigny/" target=""><h5 class="text-sm">Repentigny</h5></a></span>
331 + </div>
332 + </div>
333 +
334 + <div class="col col-10 col-typo">
335 + <p>Les condos locatifs Sotramont sont soigneusement conçus pour offrir aux résidents un niveau de vie élevé, quel que soit le budget.</p>
336 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=locatifs">
337 + Voir tout Locatifs dans notre portfolio
338 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
339 + </a>
340 + </div>
341 +
342 + </div>
343 + </div>
344 + </div>
345 + </div>
346 + </section>
347 +
348 + <section class="block block--header-submenu js--submenu js--submenu-maisons-de-ville">
349 + <div class="row big-row">
350 + <div class="col col-22">
351 + <div class="content-inner">
352 +
353 + <div class="content-title">
354 + <h3 class="text-lg">Notre Maisons de ville </h3>
355 + </div>
356 + <div class="row">
357 + <div class="col col-10 col-typo">
358 + <p>Les maisons de ville de Sotramont sont toujours situées dans des endroits recherchés et construites dans un souci de longévité. Ces maisons de ville fiables attirent un équilibre sain entre plusieurs générations.</p>
359 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons-de-ville">
360 + Voir tout Maisons de ville dans notre portfolio
361 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
362 + </a>
363 + </div>
364 +
365 + </div>
366 + </div>
367 + </div>
368 + </div>
369 + </section>
370 +
371 +
372 +</header>
373 +
374 +
375 +<div class="c--toggle-hamburger-menu">
376 + <div class="big-row row">
377 + <div class="col-md-18 col-sm-20 col-22">
378 + <nav id="site-navigation" class="main-navigation">
379 + <div class="content-btn">
380 +
381 + <a href="https://sotramont.com/condo-maison-ville-vendre-louer/" class="btn btn--icon btn--icon__left">
382 + Recherche de propriétés
383 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.3 31.8"><path d="M17.4 0l-6.8 5.7V2.5H4.2V11L0 14.6l1.3 1.5 5-4.1V4.5h2.3V10l8.8-7.4L34 16.1l1.3-1.6z"/><path d="M27.8 19.8c0-4.3-3.5-7.7-7.7-7.7-4.3 0-7.7 3.5-7.7 7.7s3.5 7.7 7.7 7.7c1.8 0 3.6-.6 4.9-1.8l6.1 6.1 1.3-1.3-6.1-6.1c1-1.3 1.5-2.9 1.5-4.6zm-1.8 0c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6 6 2.7 6 6zM6.3 16.7H4.2v14.9h11.2v-2H6.3z"/></svg>
384 + </a>
385 + </div>
386 +
387 + <div class="menu-menu-header-fr-container"><ul id="primary-menu" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3938"><a href="https://sotramont.com/la-difference-sotramont-a-propos/">La différence Sotramont</a></li>
388 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3939"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
389 +<li class="js--submenu-condos menu-item menu-item-type-custom menu-item-object-custom menu-item-809"><a title="js&#8211;submenu-condo">Curtiss Locatifs</a></li>
390 +<li class="js--submenu-locatifs menu-item menu-item-type-custom menu-item-object-custom menu-item-810"><a title="js&#8211;submenu-rental">Liveo Locatifs</a></li>
391 +</ul></div>
392 + <div class="content-list-submenu">
393 +
394 + <div class="content-title">
395 + <h3 class="text-lg">Notre Complémentaire </h3>
396 + </div>
397 + <div class="row">
398 + <div class="col col-10 col-typo">
399 + <p></p>
400 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons">
401 + Voir tout Complémentaire dans notre portfolio
402 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
403 + </a>
404 + </div>
405 +
406 + </div>
407 +
408 + <div class="content-title">
409 + <h3 class="text-lg">Notre Condos </h3>
410 + </div>
411 + <div class="row">
412 + <div class="col col-6 col-list">
413 + <a href="https://sotramont.com/curtiss-condos/" target="">
414 + <figure>
415 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Curtiss-1920x904.png'>
416 + </figure>
417 + <!--<h4 class="text-md">Curtiss Condos</h4>-->
418 + <h5 class="text-sm">Saint-Laurent</h5>
419 + </a>
420 + </div>
421 +
422 + <div class="col col-10 col-typo">
423 + <p>Les condos Sotramont sont toujours dans des emplacements de premier choix et s'intègrent harmonieusement à leur environnement. Ces condos très appréciés attirent un équilibre sain entre les résidents et les investisseurs.</p>
424 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=condos">
425 + Voir tout Condos dans notre portfolio
426 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
427 + </a>
428 + </div>
429 +
430 + </div>
431 +
432 + <div class="content-title">
433 + <h3 class="text-lg">Notre Locatifs </h3>
434 + </div>
435 + <div class="row">
436 + <div class="col col-6 col-list">
437 + <figure>
438 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Liveo-1920x904.png'>
439 + </figure>
440 + </div>
441 +
442 + <div class="col col-6 col-locations">
443 + <div>
444 + <span><a href="https://sotramont.com/liveo-bois-franc/" target=""><h5 class="text-sm">Saint-Laurent</h5></a></span><span><a href="https://sotramont.com/liveo-mascouche/" target=""><h5 class="text-sm">Mascouche</h5></a></span><span><a href="https://sotramont.com/liveo-pointe-claire/" target=""><h5 class="text-sm">Pointe-Claire</h5></a></span><span><a href="https://sotramont.com/liveo-repentigny/" target=""><h5 class="text-sm">Repentigny</h5></a></span>
445 + </div>
446 + </div>
447 +
448 + <div class="col col-10 col-typo">
449 + <p>Les condos locatifs Sotramont sont soigneusement conçus pour offrir aux résidents un niveau de vie élevé, quel que soit le budget.</p>
450 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=locatifs">
451 + Voir tout Locatifs dans notre portfolio
452 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
453 + </a>
454 + </div>
455 +
456 + </div>
457 +
458 + <div class="content-title">
459 + <h3 class="text-lg">Notre Maisons de ville </h3>
460 + </div>
461 + <div class="row">
462 + <div class="col col-10 col-typo">
463 + <p>Les maisons de ville de Sotramont sont toujours situées dans des endroits recherchés et construites dans un souci de longévité. Ces maisons de ville fiables attirent un équilibre sain entre plusieurs générations.</p>
464 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons-de-ville">
465 + Voir tout Maisons de ville dans notre portfolio
466 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
467 + </a>
468 + </div>
469 +
470 + </div>
471 + </div>
472 +
473 + </nav>
474 + </div>
475 + </div>
476 +
477 + <div class="content-subnav">
478 + <ul id="sub-menu" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3940"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
479 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3941"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
480 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3942"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
481 +</ul> </div>
482 +
483 + <div class="content-animate"></div>
484 +
485 +
486 +</div>
487 +
488 +
489 +
490 +
491 + <style>
492 + ::selection{
493 + background:#002e5d;
494 +
495 + svg{
496 + background-color:#002e5d;
497 + }
498 + }
499 +
500 + ::-moz-selection{
501 + background:#002e5d;
502 +
503 + svg{
504 + background-color:#002e5d;
505 + }
506 + }
507 +
508 + .block .btn{
509 + background-color:#002e5d !important;
510 + border-color:#002e5d !important;
511 + }
512 +
513 + .block--form .content-box{
514 + background:#002e5d;
515 + }
516 +
517 + .c--form input[type="submit"]{
518 + background-color:#fff !important;
519 + border-color:#fff !important;
520 + color:#000;
521 + }
522 +
523 + .c--toggle-click .text-lg{
524 + background-color:#002e5d !important;
525 + border-color:#002e5d !important;
526 + }
527 +
528 + .block .swiper-button-prev{
529 + background-color:#002e5dE0;
530 + }
531 +
532 + .block .swiper-button-next{
533 + background-color:#002e5d;
534 + }
535 +
536 + .block--features .content-list .single-item.item-active .text-md{
537 + color:#002e5d !important;
538 + }
539 +
540 + .block--features .content-list .single-item.item-active svg{
541 + fill:#002e5d !important;
542 + }
543 +
544 + .block--units .content-icon-plus svg{
545 + fill:#002e5d;
546 + }
547 +
548 + .block--promo .content-inner{
549 + background:#002e5d15;
550 + }
551 +
552 + .block:not(.block--footer) .btn--underscore{
553 + color:#002e5d !important;
554 + }
555 +
556 + .block:not(.block--footer) .btn--underscore:before, .block:not(.block--footer) .btn--underscore:after{
557 + background:#002e5d !important;
558 + }
559 +
560 + .block--banner .text-sm:before{
561 + background:#002e5d;
562 + }
563 +
564 + .block--project-submenu{
565 + background:#002e5d;
566 + }
567 +
568 + .sticky-button-form .icon-close{
569 + background:#002e5d;
570 + }
571 +
572 + .sticky-button-form .inner-btn{
573 + background:#002e5d;
574 + border-color:#002e5d;
575 + }
576 + </style>
577 +
578 +
579 +
580 +
581 +<section id="block--banner-video" class="block block--banner-video js--video-filter-off" >
582 +
583 + <div class="row">
584 + <div class="col col-typo col-md-20 col-sm-21 col-22">
585 +
586 +
587 + <div class="content-title">
588 + <h1 class="text-xl"></h1>
589 + </div>
590 +
591 +
592 +
593 +
594 +
595 +
596 +
597 + </div>
598 + </div>
599 +
600 + <div class="sm--parallax" data-sm-parallax-y="30">
601 + <button class="c--arrow-down js--scroll-to" data-scroll-to="">
602 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28.3 17.3"><path d="M27.9.7c-.3-.4-.7-.6-1.2-.7-.5 0-1 .1-1.4.5l-.2.2-11 11.9L3.3.7C3 .3 2.5.1 2 0 1.5 0 1 .1.6.5c-.8.7-.9 1.9-.2 2.7l.2.2 12.3 13.4c.3.4.8.5 1.3.5s.9-.2 1.3-.6L27.7 3.3c.7-.7.8-1.8.2-2.6z"/></svg>
603 + </button>
604 + </div>
605 +
606 + <div class="js--video" data-video-width="560" data-video-height="315">
607 +
608 + <div class="js--video__image sm--parallax" data-sm-parallax-y="25vh">
609 + </div>
610 +
611 + <iframe style="width:100%; height:800px;" src="https://www.youtube.com/embed/BYNiJxqMVpg?controls=0&#038;showinfo=0&#038;rel=0&#038;modestbranding=1&#038;iv_load_policy=3&#038;autoplay=1&#038;mute=1&#038;loop=1&#038;playlist=BYNiJxqMVpg&#038;vq=hd1080" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
612 +
613 + </div>
614 +
615 +</section>
616 +
617 +
618 +<section id="block--banner" class="block block--banner" >
619 + <div class="content-inner">
620 + <div class="row">
621 + <div class="col col-typo col-xl-12 offset-xl-3 offset-md-2 col-sm-14 col-22 offset-1">
622 + <div>
623 + <span class="text-sm">Pointe-Claire</span>
624 + </div>
625 + <h1 class="text-lg">Liveo Pointe-Claire Phase 1</h1>
626 + <p class="text-p">Nous avons demandé aux résidents potentiels ce qui leur importait le plus et avons combiné leurs idées avec nos décennies d’expérience dans la construction pour concevoir une propriété locative axée sur la tranquillité d’esprit et la qualité de vie.</p>
627 + </div>
628 + <div class="col col-image col-sm-14 col-24 offset-0">
629 +
630 + <figure class='c--image-bg'>
631 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2020/07/Webp.net-compress-image-1-1024x683.jpg);'></div>
632 + </figure>
633 + </div>
634 + </div>
635 + </div>
636 +</section>
637 +
638 +
639 +<section id="block--project-submenu" class="block block--project-submenu sm--pin-top">
640 + <div class="content-inner">
641 + <div class="row">
642 + <div class="col col-lg-20 col-22">
643 +
644 +
645 + <ul>
646 + <li class="content-logo"><a href="https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/"><img decoding="async" src="https://sotramont.com/wp-content/uploads/2020/07/Liveo-PC-white-480x175.png"></a></li>
647 + <li class='active'><a href='https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/'>Détails du projet</a></li> <li class="page_item page-item-8177"><a href="https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/plans-unite/">Plans d&#8217;unité</a></li>
648 +<li class="page_item page-item-8056"><a href="https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/design-interieur/">Design d&#8217;intérieur</a></li>
649 +<li class="page_item page-item-8195"><a href="https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/media-gallery/">Galerie des médias</a></li>
650 +<li class="page_item page-item-8200"><a href="https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/visite-virtuelle/">Visite virtuelle</a></li>
651 +<li class="page_item page-item-8204"><a href="https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/contact/">Contact</a></li>
652 + </ul>
653 + </div>
654 + </div>
655 + </div>
656 +</section>
657 +
658 +
659 +<section id="block--project-about" class="block block--project-about" style="background-color:#ffffff;">
660 + <div class="row">
661 + <div class="col col-xl-10 offset-xl-2 offset-md-2 col-md-11 col-22 offset-1">
662 + <h2 class="text-lg">VIVRE POINTE-CLAIRE</h2>
663 +
664 + <div class="content-wysiwyg">
665 + <p>Nous nous occupons du fondamental afin que vous puissiez consacrer votre temps et énergie à ce qui compte le plus pour vous. Liveo offre un ensemble d’avantages qui simplifient la vie de condo. L’eau chaude, la climatisation, l’internet, la télévision par câble, les appareils de blanchisserie et les appareils de cuisine sont tous inclus dans le tarif de location.</p>
666 +<p>Nous pensons que l’emplacement est tout aussi important. Liveo est le dernier ajout au Quartier Greenwich, un quartier tranquille récemment développé par Sotramont,  à Pointe-Claire avec des entrées sur le boulevard St-Jean et l’avenue Paprican.</p>
667 +<p>L’emplacement a été choisi pour de nombreuses raisons positives. Accédez facilement à des services tels que l’épicerie, la pharmacie et les soins dentaires. La bibliothèque municipale, le centre commercial Fairview, le golf Beaconsfield et le centre aquatique de Pointe-Claire sont à seulement quelques pâtés de maisons.</p>
668 +<p>Dans le quartier, il y a un parc de 2 acres avec des arbres centenaires et un sentier pédestre entretenu. En 2020, un nouveau terrain de jeu impressionnant a également été ajouté. Le projet Liveo lui-même dispose d’une piste cyclable dédiée longeant des arbres matures.</p>
669 +<p>Pour ceux qui aiment explorer l’île de Montréal, accédez rapidement à la future station REM, à l’autoroute 40 ou à l’autoroute 20 et aux arrêts d’autobus publics.</p>
670 + </div>
671 +
672 +
673 + </div>
674 + <div class="col col-md-8 offset-md-2 col-22 offset-1">
675 +
676 + <div class="content-tag">
677 + <div class="row">
678 + <div class="single-tag col col-12">
679 +
680 + <div class="single-tag-image">
681 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-09.png'> </div>
682 + <h4 class="text-md">construction </br> terminé</h4>
683 + </div>
684 + <div class="single-tag col col-12">
685 +
686 + <div class="single-tag-image">
687 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-31.png'> </div>
688 + <h4 class="text-md">OCCUPATION </br> IMMEDIATE</h4>
689 + </div>
690 + <div class="single-tag col col-12">
691 +
692 + <div class="single-tag-image">
693 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-22.png'> </div>
694 + <h4 class="text-md">PLANS DE </br> 1-2 CHAMBRES</h4>
695 + </div>
696 + <div class="single-tag col col-12">
697 +
698 + <div class="single-tag-image">
699 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-29.png'> </div>
700 + <h4 class="text-md">DE 1 970$ </br> PAR MOIS</h4>
701 + </div>
702 + <div class="single-tag col col-12">
703 +
704 + <div class="single-tag-image">
705 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-24.png'> </div>
706 + <h4 class="text-md">ÉLECTROMÉNAGERS </br> INCLUS</h4>
707 + </div>
708 + <div class="single-tag col col-12">
709 +
710 + <div class="single-tag-image">
711 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-36.png'> </div>
712 + <h4 class="text-md">BUANDERIE </br> PRIVÉE</h4>
713 + </div>
714 + <div class="single-tag col col-12">
715 +
716 + <div class="single-tag-image">
717 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-23.png'> </div>
718 + <h4 class="text-md">CLIMATISATION </br> INDIVIDUELLE</h4>
719 + </div>
720 + <div class="single-tag col col-12">
721 +
722 + <div class="single-tag-image">
723 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-13.png'> </div>
724 + <h4 class="text-md">ANIMAUX </br> ACCEPTÉS</h4>
725 + </div>
726 + <div class="single-tag col col-12">
727 +
728 + <div class="single-tag-image">
729 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-28.png'> </div>
730 + <h4 class="text-md">CONNECTION </br> INTERNET</h4>
731 + </div>
732 + <div class="single-tag col col-12">
733 +
734 + <div class="single-tag-image">
735 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-35.png'> </div>
736 + <h4 class="text-md">TÉLÉVISION </br> PAR CÂBLE</h4>
737 + </div>
738 + </div>
739 + </div>
740 + </div>
741 + </div>
742 +</section>
743 +
744 +
745 +<section id="block--image-slider" class="block block--image-slider size-lg">
746 +
747 +
748 + <div class='js--slider'>
749 + <div class='swiper-container'>
750 + <div class='swiper-wrapper'><div class='swiper-slide'>
751 + <figure class='c--image-bg'>
752 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/05/LPC-rooftop-1920x1280.jpg);'></div>
753 + </figure>
754 + </div><div class='swiper-slide'>
755 + <figure class='c--image-bg'>
756 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/03/Liveo-PC-pool-terrace-1920x1280.jpg);'></div>
757 + </figure>
758 + </div><div class='swiper-slide'>
759 + <figure class='c--image-bg'>
760 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/03/Liveo-PC-siteplan-1920x1280.jpg);'></div>
761 + </figure>
762 + </div>
763 + </div>
764 + <div class='swiper-button-next'>
765 + <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 845'><path d='M87.5 845c-22.9 0-45.7-8.9-62.9-26.6-33.6-34.7-32.7-90.1 2-123.7l280.3-271.3L26.5 150.2C-8.2 116.5-8.9 61.1 24.8 26.5c33.7-34.6 89.1-35.4 123.7-1.6l345 336c16.9 16.5 26.5 39.2 26.5 62.8 0 23.6-9.6 46.3-26.6 62.7l-345 334c-17 16.4-39 24.6-60.9 24.6z'></path></svg>
766 + </div>
767 + <div class='swiper-button-prev'>
768 + <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 845'><path d='M87.5 845c-22.9 0-45.7-8.9-62.9-26.6-33.6-34.7-32.7-90.1 2-123.7l280.3-271.3L26.5 150.2C-8.2 116.5-8.9 61.1 24.8 26.5c33.7-34.6 89.1-35.4 123.7-1.6l345 336c16.9 16.5 26.5 39.2 26.5 62.8 0 23.6-9.6 46.3-26.6 62.7l-345 334c-17 16.4-39 24.6-60.9 24.6z'></path></svg>
769 + </div>
770 + </div>
771 + </div>
772 +
773 +</section>
774 +
775 +
776 +<section id="block--project-about" class="block block--project-about" style="background-color:#ffffff;">
777 + <div class="row">
778 + <div class="col col-xl-10 offset-xl-2 offset-md-2 col-md-11 col-22 offset-1">
779 + <h2 class="text-lg">UN STYLE DE VIE QUI NE VIEILLIT JAMAIS</h2>
780 +
781 + <div class="content-wysiwyg">
782 + <p>Liveo propose un style de vie difficile à battre. Le bâtiment est conçu avec une multitude d’attributs à fin de valoriser votre tranquillité d’esprit.</p>
783 +<p>Pour célébrer la tradition de Pointe-Claire en tant que producteur de nageurs de classe mondiale, Liveo dispose d’une piscine intérieure de 70 pieds de long, parfaite pour l’exercice quotidien et la détente en toute saison. Pour ceux qui ont un style de vie plus actif, profitez également d’une salle d’exercice professionnelle et de supports dédiés aux vélos.</p>
784 +<p>Vous avez le choix entre trois terrasses extérieures. Avec l’un des bâtiments les plus hauts de Pointe-Claire, vous pouvez profiter des vues les plus impressionnantes à 360 degrés de l’île de Montréal depuis la terrasse sur le toit. Au rez-de-chaussée, retrouvez une terrasse ensoleillée accessible depuis la piscine et une autre terrasse reliée à la salle communautaire.</p>
785 +<p>La salle communautaire est un espace flexible préparé pour une gamme d’activités, telles que la lecture paisible, les parties de cartes entre amis, les sports télévisés ou accueillir des événements avec traiteur.</p>
786 +<p>Il convient également de mentionner que Liveo Pointe-Claire aura une conciergerie à temps plein qui réside dans le bâtiment, et en plus des boîtes postales régulières, il y a un espace qui dédié aux colis réfrigérés et de plus gros volume,  afin que vous n’ayez pas à vous soucier de manquer vos livraisons .</p>
787 +<p>Si vous êtes nouveau dans la vie en copropriété, vous apprécierez peut-être que nous avons un parking souterrain sécurisé, une zone de lavage de voiture, deux ascenseurs efficaces, des caméras de sécurité et chaque porte d’entrée est accessible uniquement par des porte-clés électroniques remis aux résidents.</p>
788 + </div>
789 +
790 +
791 + </div>
792 + <div class="col col-md-8 offset-md-2 col-22 offset-1">
793 +
794 + <div class="content-tag">
795 + <div class="row">
796 + <div class="single-tag col col-12">
797 +
798 + <div class="single-tag-image">
799 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-01.png'> </div>
800 + <h4 class="text-md">PISCINE </br> INTÉRIEURE</h4>
801 + </div>
802 + <div class="single-tag col col-12">
803 +
804 + <div class="single-tag-image">
805 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-20.png'> </div>
806 + <h4 class="text-md">TERRASSE </br> PISCINE</h4>
807 + </div>
808 + <div class="single-tag col col-12">
809 +
810 + <div class="single-tag-image">
811 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-08.png'> </div>
812 + <h4 class="text-md">SALLE </br> D’ENTRAÎNEMENT</h4>
813 + </div>
814 + <div class="single-tag col col-12">
815 +
816 + <div class="single-tag-image">
817 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-14.png'> </div>
818 + <h4 class="text-md">TERRASSE </br> SUR LE TOIT</h4>
819 + </div>
820 + <div class="single-tag col col-12">
821 +
822 + <div class="single-tag-image">
823 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-26.png'> </div>
824 + <h4 class="text-md">SALLE </br> COMMUNAUTAIRE</h4>
825 + </div>
826 + <div class="single-tag col col-12">
827 +
828 + <div class="single-tag-image">
829 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-06.png'> </div>
830 + <h4 class="text-md">TERRASSE </br> COMMUNAUTAIRE</h4>
831 + </div>
832 + <div class="single-tag col col-12">
833 +
834 + <div class="single-tag-image">
835 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-21.png'> </div>
836 + <h4 class="text-md">LIVRAISON </br> DE COLIS</h4>
837 + </div>
838 + <div class="single-tag col col-12">
839 +
840 + <div class="single-tag-image">
841 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-19.png'> </div>
842 + <h4 class="text-md">DEUX </br> ASCENSEURS</h4>
843 + </div>
844 + <div class="single-tag col col-12">
845 +
846 + <div class="single-tag-image">
847 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-30.png'> </div>
848 + <h4 class="text-md">RÉSIDENT </br> GARDIEN</h4>
849 + </div>
850 + <div class="single-tag col col-12">
851 +
852 + <div class="single-tag-image">
853 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-18.png'> </div>
854 + <h4 class="text-md">STATIONNEMENT </br> INTÉRIEUR</h4>
855 + </div>
856 + <div class="single-tag col col-12">
857 +
858 + <div class="single-tag-image">
859 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-17.png'> </div>
860 + <h4 class="text-md">STATION </br> DE LAVAGE</h4>
861 + </div>
862 + <div class="single-tag col col-12">
863 +
864 + <div class="single-tag-image">
865 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-04.png'> </div>
866 + <h4 class="text-md">STATION </br> DE CHARGE</h4>
867 + </div>
868 + <div class="single-tag col col-12">
869 +
870 + <div class="single-tag-image">
871 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-15.png'> </div>
872 + <h4 class="text-md">RANGEMENT </br> À VÉLOS</h4>
873 + </div>
874 + <div class="single-tag col col-12">
875 +
876 + <div class="single-tag-image">
877 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/11/icon-34.png'> </div>
878 + <h4 class="text-md">CASIERS DE </br> RANGEMENT</h4>
879 + </div>
880 + </div>
881 + </div>
882 + </div>
883 + </div>
884 +</section>
885 +
886 +
887 +<section id="block--image-slider" class="block block--image-slider size-lg">
888 +
889 +
890 + <div class='js--slider'>
891 + <div class='swiper-container'>
892 + <div class='swiper-wrapper'><div class='swiper-slide'>
893 + <figure class='c--image-bg'>
894 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/03/Liveo-PC-pool-1920x1280.jpg);'></div>
895 + </figure>
896 + </div><div class='swiper-slide'>
897 + <figure class='c--image-bg'>
898 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/03/Liveo-PC-gym-1920x960.jpg);'></div>
899 + </figure>
900 + </div><div class='swiper-slide'>
901 + <figure class='c--image-bg'>
902 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2021/03/Liveo-PC-community-room-1920x867.jpg);'></div>
903 + </figure>
904 + </div>
905 + </div>
906 + <div class='swiper-button-next'>
907 + <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 845'><path d='M87.5 845c-22.9 0-45.7-8.9-62.9-26.6-33.6-34.7-32.7-90.1 2-123.7l280.3-271.3L26.5 150.2C-8.2 116.5-8.9 61.1 24.8 26.5c33.7-34.6 89.1-35.4 123.7-1.6l345 336c16.9 16.5 26.5 39.2 26.5 62.8 0 23.6-9.6 46.3-26.6 62.7l-345 334c-17 16.4-39 24.6-60.9 24.6z'></path></svg>
908 + </div>
909 + <div class='swiper-button-prev'>
910 + <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 845'><path d='M87.5 845c-22.9 0-45.7-8.9-62.9-26.6-33.6-34.7-32.7-90.1 2-123.7l280.3-271.3L26.5 150.2C-8.2 116.5-8.9 61.1 24.8 26.5c33.7-34.6 89.1-35.4 123.7-1.6l345 336c16.9 16.5 26.5 39.2 26.5 62.8 0 23.6-9.6 46.3-26.6 62.7l-345 334c-17 16.4-39 24.6-60.9 24.6z'></path></svg>
911 + </div>
912 + </div>
913 + </div>
914 +
915 +</section>
916 +
917 +
918 +<section id="block--features" class="block block--features" style="background-color:#ffffff;">
919 +
920 + <div class="content-text">
921 + <div class="row">
922 + <div class="col col-lg-12 col-sm-14 col-22">
923 + <h3 class="text-lg">NOUS GARDONS VOTRE CONFORT À L’ESPRIT</h3> <div class="content-wysiwyg">
924 + <p>En tant que constructeur, nous avons à cœur  l’importance des performances acoustiques et le contrôle de la température, sur le bien-être de votre quotidien.</p>
925 + </div>
926 + </div>
927 + </div>
928 + </div>
929 +
930 + <div class="content-list">
931 + <div class="row">
932 +
933 + <div class="col col-list col-lg-10 offset-lg-2 col-sm-11 col-22 offset-1">
934 + <div class="single-item single-item-0 item-active" data-id="0">
935 + <h4 class="text-md">CONTRÔLE DE LA TEMPÉRATURE</h4> <!-- Icon Arrow -->
936 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.4 22" style="enable-background:new 0 0 12.4 22"><path d="M1 22c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4L9.6 11 .3 1.7C-.1 1.3-.1.7.3.3s1-.4 1.4 0L12.4 11 1.7 21.7c-.2.2-.4.3-.7.3z"/></svg>
937 + </div>
938 + <div class="single-item single-item-1 " data-id="1">
939 + <h4 class="text-md">PERFORMANCE ACOUSTIQUE</h4> <!-- Icon Arrow -->
940 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12.4 22" style="enable-background:new 0 0 12.4 22"><path d="M1 22c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4L9.6 11 .3 1.7C-.1 1.3-.1.7.3.3s1-.4 1.4 0L12.4 11 1.7 21.7c-.2.2-.4.3-.7.3z"/></svg>
941 + </div>
942 + </div>
943 +
944 + <div class="col col-content col-lg-8 offset-sm-2 col-sm-9 col-22 offset-1">
945 + <div class="single-item-content single-item-0 item-active">
946 + <p>En tant que Montréalais, nous aimons nos saisons. Les condos de location Liveo sont préparés pour ce que Mère Nature nous propose.</p>
947 +<p>Atteignez la température ambiante désirez grâce au chauffage électrique par plinthe, contrôlé individuellement par pièce.</p>
948 +<p>Pour les jours les plus chauds, chaque condo comprend une unité de climatisation avec des paramètres multifonctionnels.</p>
949 + </div>
950 + <div class="single-item-content single-item-1 ">
951 + <p>Les condos locatifs Liveo sont des structures en béton recouvertes de façades en briques. Combinée à une couche d’isolation très étanche et des fenêtres Energy Star scellées, l’enveloppe de bâtiment primée de Sotramont, offre une barrière paisible contre le bruit extérieur.</p>
952 +<p>De plus, chaque condo a des portes d’entrée épaisses et des murs de séparation pour réduire le bruit et la sécurité incendie. C’est quelque chose à considérer lors de la recherche de votre prochaine résidence!</p>
953 + </div>
954 +
955 + <div class="content-bg-inner" style="background-color:#ffffff;"></div>
956 + </div>
957 +
958 + </div>
959 + </div>
960 +</section>
961 +
962 +<script>
963 +jQuery(document).ready(function(){
964 + jQuery(document).on("click", ".block--features .single-item", function(){
965 + var valueId = jQuery(this).data("id");
966 +
967 + jQuery('.block--features .single-item, .block--features .single-item-content').removeClass('item-active');
968 + jQuery('.block--features .single-item-'+valueId).addClass('item-active');
969 + });
970 +});
971 +</script>
972 +
973 +
974 +
975 +
976 + <section id="block--calendly" class="block block--calendly" style="background-color:#e5e5e5;">
977 +
978 + <link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
979 + <script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript"></script>
980 +
981 + <div class="row big-row">
982 + <div class="col col-xl-20 col-22">
983 + <div class="content-inner" style="background-color:#ffffff;">
984 + <div class="row">
985 + <div class="col col-md-12 col-24">
986 +
987 + <figure class='c--image-bg'>
988 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2022/12/IMG_7679.jpeg);'></div>
989 + </figure>
990 + <h3 class="text-lg">Armel Rugero</h3>
991 + <h4 class="text-md">Visitez notre espace de location avec Armel pour trouver votre prochain condo à louer.</h4>
992 + <div class="content-btn">
993 + <!-- Calendly link widget begin -->
994 + <a class="btn" href="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/armel-liveo/30min?back=1&#038;month=2026-04'});return false;">RÉSERVER UNE RÉUNION</a>
995 + <!-- Calendly link widget end -->
996 + </div>
997 + </div>
998 + </div>
999 + </div>
1000 + </div>
1001 + </div>
1002 +
1003 + </section>
1004 +
1005 +
1006 +
1007 +
1008 + <section id="block--form" class="block block--form" style="background-color:#082c5c;">
1009 + <div class="row">
1010 + <div class="col col-lg-20 col-22">
1011 +
1012 + <div class="content-box" >
1013 + <h3 class='text-lg'>Rejoinez <br/> Liveo Pointe-Claire</h3>
1014 + <h4 class='text-md'>RECEVEZ LES MISES À JOUR DU PROJET ET AVOIR UN ACCÈS PRIORITAIRE À DE NOUVELLES FONCTIONNALITÉS.</h4>
1015 +
1016 + <div class="c--form c--mailchimp-form">
1017 + <div class="c--mailchimp-form c--form">
1018 +
1019 + <!-- Begin Mailchimp Signup Form -->
1020 +
1021 +<style type="text/css">
1022 + #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
1023 + /* Add your own Mailchimp form style overrides in your site stylesheet or in this style block.
1024 + We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
1025 +</style>
1026 +<div id="mc_embed_signup">
1027 +<form action="https://quartiergreenwich.us11.list-manage.com/subscribe/post?u=72dd37a7d8c7bb8b4515bf948&amp;id=f4a7fe9b7a" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
1028 + <div id="mc_embed_signup_scroll">
1029 +
1030 +<div class="indicates-required"><span class="asterisk">*</span> indicates required</div>
1031 +<div class="mc-field-group">
1032 + <label for="mce-EMAIL">Courriel <span class="asterisk">*</span>
1033 +</label>
1034 + <input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
1035 +</div>
1036 +<div class="mc-field-group">
1037 + <label for="mce-FNAME">Prénom <span class="asterisk">*</span>
1038 + <input type="text" value="" name="FNAME" class="required fname" id="mce-FNAME">
1039 +</div>
1040 +<div class="mc-field-group">
1041 + <label for="mce-LNAME">Nom <span class="asterisk">*</span>
1042 + <input type="text" value="" name="LNAME" class="required lname" id="mce-LNAME">
1043 +</div>
1044 +<div class="mc-field-group size1of2">
1045 + <label for="mce-PHONE">Téléphone </label>
1046 + <input type="text" name="PHONE" class="" value="" id="mce-PHONE">
1047 +</div>
1048 + <div id="mce-responses" class="clear">
1049 + <div class="response" id="mce-error-response" style="display:none"></div>
1050 + <div class="response" id="mce-success-response" style="display:none"></div>
1051 + </div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
1052 + <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_72dd37a7d8c7bb8b4515bf948_f4a7fe9b7a" tabindex="-1" value=""></div>
1053 + <div class="clear"><input type="submit" value="S'abonner" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
1054 + </div>
1055 +</form>
1056 +</div>
1057 +
1058 +<!--End mc_embed_signup-->
1059 + <!--<iframe loading="lazy" src="http://eepurl.com/g58LRv" width="100%" height="auto" style="width:100%; height:auto;" onload="resizeIframe(this)">-->
1060 + </div>
1061 + </div>
1062 +
1063 + </div>
1064 +
1065 + </div>
1066 + </div>
1067 + </section>
1068 +
1069 +
1070 +
1071 +<!--<section id="block--mailchimp-form" class="block--mailchimp-form">
1072 +
1073 + <div class="row">
1074 + <div class="col col-14 offset-5">
1075 +
1076 + <div class="c--mailchimp-form c--form">
1077 + <div class="js--project-list-actual"></div>
1078 + <div class="js--input-project-in" style="display:none;">Liveo Pointe-Claire 1</div>
1079 + </div>
1080 +
1081 + </div>
1082 + </div>
1083 +
1084 +</section>-->
1085 +
1086 + <button class="sticky-button-form">
1087 + <span class="icon-close">
1088 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512.7 512.7" xml:space="preserve"><path d="m512.7 424.3-168-168 168-167.9L424.3 0l-168 167.9L88.4 0 0 88.4l167.9 167.9L0 424.3l88.4 88.4 167.9-168 168 168z"/></svg>
1089 + </span>
1090 + <span class="inner-btn js--scroll-to" data-scroll-to=".block--form">Abonnez-vous</span>
1091 + </button>
1092 +
1093 +
1094 +
1095 +<footer class="block block--footer">
1096 +
1097 + <div class="big-row row">
1098 + <div class="col col-lg-20 col-md-22 col-20">
1099 +
1100 + <!-- Row 1 -->
1101 + <div class="row row-1">
1102 + <div class="col col-text-1 col-md-9 col-24">
1103 + <div class="content-logo">
1104 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/08/logo-sotramont.png'> </div>
1105 +
1106 +
1107 +
1108 + <p>Basé à Montréal, un développeur immobilier, constructeur et promoteur de maisons neuves, condos et locatifs depuis 1968.</p>
1109 +
1110 + </div>
1111 +
1112 + <!-- - - - - - Loop Category Project && Project associated with the category - - - - - -->
1113 + <div class="col col-md-5 col-sm-8 offset-sm-0 col-18 offset-3 content-list-project">
1114 + <h3 class="text-lg sm--toggle-class">Condos</h3>
1115 + <ul>
1116 + <li>
1117 + <a href="https://sotramont.com/curtiss-condos/" target="">
1118 + Curtiss Condos </a>
1119 + </li>
1120 + </ul>
1121 + </div>
1122 + <div class="col col-md-5 col-sm-8 offset-sm-0 col-18 offset-3 content-list-project">
1123 + <h3 class="text-lg sm--toggle-class">Locatifs</h3>
1124 + <ul>
1125 + <li>
1126 + <a href="https://sotramont.com/liveo-bois-franc/" target="">
1127 + Liveo Bois-Franc </a>
1128 + </li>
1129 + <li>
1130 + <a href="https://sotramont.com/liveo-mascouche/" target="">
1131 + Liveo Mascouche </a>
1132 + </li>
1133 + <li>
1134 + <a href="https://sotramont.com/liveo-pointe-claire/" target="">
1135 + Liveo Pointe-Claire </a>
1136 + </li>
1137 + <li>
1138 + <a href="https://sotramont.com/liveo-repentigny/" target="">
1139 + Liveo Repentigny </a>
1140 + </li>
1141 + </ul>
1142 + </div>
1143 + <!-- - - - - - END LOOP - - - - - -->
1144 +
1145 + </div>
1146 +
1147 + <!-- Row 2 -->
1148 + <div class="row row-2 sm--toggle-class">
1149 + <div class="col col-md-12 col-24">
1150 + <h4 class="text-sm">Bureau Chef</h4>
1151 +
1152 + <p>55, rue de Louvain Ouest, Suite 350<br />
1153 +Montréal, QC, H2N 1A4, Canada</p>
1154 + </div>
1155 + <div class="col col-md-12 col-24 col-right">
1156 + <nav class="footer-navigation">
1157 + <ul id="footer-nav" class="menu"><li id="menu-item-3943" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3943"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/">Portfolio</a></li>
1158 +<li id="menu-item-3944" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3944"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
1159 +<li id="menu-item-3945" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3945"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
1160 +<li id="menu-item-3946" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3946"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
1161 +</ul> </nav>
1162 + </div>
1163 + </div>
1164 +
1165 + <!-- Row 3 -->
1166 + <div class="row row-3">
1167 + <div class="col col-md-18 col-24">
1168 + <p>&copy;2026 Sotramont. Tous droits réservés.</p>
1169 + <nav class="second-nav">
1170 + </nav>
1171 + </div>
1172 + <div class="col col-md-6 col-24 col-right">
1173 + <ul class='list--social js--hover-parent'><li><a href="https://www.instagram.com/sotramont/" target="_blank">
1174 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M352 0H160C71.648 0 0 71.648 0 160v192c0 88.352 71.648 160 160 160h192c88.352 0 160-71.648 160-160V160C512 71.648 440.352 0 352 0zm112 352c0 61.76-50.24 112-112 112H160c-61.76 0-112-50.24-112-112V160C48 98.24 98.24 48 160 48h192c61.76 0 112 50.24 112 112v192z"/><path d="M256 128c-70.688 0-128 57.312-128 128s57.312 128 128 128 128-57.312 128-128-57.312-128-128-128zm0 208c-44.096 0-80-35.904-80-80 0-44.128 35.904-80 80-80s80 35.872 80 80c0 44.096-35.904 80-80 80z"/><circle cx="393.6" cy="118.4" r="17.056"/></svg>
1175 + </a></li><li><a href="https://www.facebook.com/Sotramont/" target="_blank">
1176 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 310 310"><path d="M81.703 165.106h33.981V305a5 5 0 005 5H178.3a5 5 0 005-5V165.765h39.064a5 5 0 004.967-4.429l5.933-51.502a5 5 0 00-4.966-5.572h-44.996V71.978c0-9.732 5.24-14.667 15.576-14.667h29.42a5 5 0 005-5V5.037a5 5 0 00-5-5h-40.545A39.746 39.746 0 00185.896 0c-7.035 0-31.488 1.381-50.804 19.151-21.402 19.692-18.427 43.27-17.716 47.358v37.752H81.703a5 5 0 00-5 5v50.844a5 5 0 005 5.001z"/></svg>
1177 + </a></li><li><a href="https://www.linkedin.com/company/sotramont/" target="_blank">
1178 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 295.8 297.8"><path d="M80.6 272.1c0 4.9-4 8.9-8.9 8.9h-38c-4.9 0-8.9-4-8.9-8.9V112.9c0-4.9 4-8.9 8.9-8.9h38c4.9 0 8.9 4 8.9 8.9v159.2zM52.7 88.9c-19.9 0-36.1-16.2-36.1-36.1s16.2-36.1 36.1-36.1 36.1 16.2 36.1 36.1-16.1 36.1-36.1 36.1zm226.5 184c0 4.5-3.7 8.2-8.2 8.2h-40.8c-4.5 0-8.2-3.7-8.2-8.2v-74.7c0-11.1 3.3-48.8-29.1-48.8-25.1 0-30.2 25.8-31.2 37.4V273c0 4.5-3.7 8.2-8.2 8.2H114c-4.5 0-8.2-3.7-8.2-8.2V112.1c0-4.5 3.7-8.2 8.2-8.2h39.4c4.5 0 8.2 3.7 8.2 8.2V126c9.3-14 23.2-24.8 52.6-24.8 65.3 0 64.9 61 64.9 94.5l.1 77.2z"/></svg>
1179 + </a></li></ul> </div>
1180 + </div>
1181 +
1182 + </div>
1183 + </div>
1184 +
1185 +</footer>
1186 +
1187 +
1188 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=5.7.7' id='swv-js'></script>
1189 +<script type='text/javascript' id='contact-form-7-js-extra'>
1190 +/* <![CDATA[ */
1191 +var wpcf7 = {"api":{"root":"https:\/\/sotramont.com\/wp-json\/","namespace":"contact-form-7\/v1"}};
1192 +/* ]]> */
1193 +</script>
1194 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.7.7' id='contact-form-7-js'></script>
1195 +<script type='text/javascript' id='heateor_sss_sharing_js-js-before'>
1196 +function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}}; var heateorSssSharingAjaxUrl = 'https://sotramont.com/wp-admin/admin-ajax.php', heateorSssCloseIconPath = 'https://sotramont.com/wp-content/plugins/sassy-social-share/public/../images/close.png', heateorSssPluginIconPath = 'https://sotramont.com/wp-content/plugins/sassy-social-share/public/../images/logo.png', heateorSssHorizontalSharingCountEnable = 0, heateorSssVerticalSharingCountEnable = 0, heateorSssSharingOffset = -10; var heateorSssMobileStickySharingEnabled = 0;var heateorSssCopyLinkMessage = "Link copied.";var heateorSssUrlCountFetched = [], heateorSssSharesText = 'Shares', heateorSssShareText = 'Share';function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}
1197 +</script>
1198 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/sassy-social-share/public/js/sassy-social-share-public.js?ver=3.3.52' id='heateor_sss_sharing_js-js'></script>
1199 +
1200 +</body>
1201 +</html>
added tests/fixtures/sotramont/expected.json +117 −0
@@ -0,0 +1,117 @@
1 +{
2 + "count": 8,
3 + "listings": [
4 + {
5 + "uid": "sotramont:curtiss-charlie",
6 + "url": "https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/",
7 + "title": "Curtiss Charlie — condos locatifs (Saint-Laurent)",
8 + "address": "",
9 + "sector": "Bois-Franc",
10 + "city": "Saint-Laurent",
11 + "unit_type": "",
12 + "price": 1460.0,
13 + "availability": "Occupation immédiate",
14 + "area_sqft": null,
15 + "n_images": 8,
16 + "n_amenities": 0
17 + },
18 + {
19 + "uid": "sotramont:liveo-mascouche-1",
20 + "url": "https://sotramont.com/liveo-mascouche-1-condos-locatifs-louer-mascouche/",
21 + "title": "Liveo Mascouche 1 — condos locatifs (Mascouche)",
22 + "address": "",
23 + "sector": "",
24 + "city": "Mascouche",
25 + "unit_type": "",
26 + "price": 1625.0,
27 + "availability": "Occupation immédiate",
28 + "area_sqft": null,
29 + "n_images": 1,
30 + "n_amenities": 0
31 + },
32 + {
33 + "uid": "sotramont:liveo-mascouche-2",
34 + "url": "https://sotramont.com/liveo-mascouche-2-condos-locatifs-louer-mascouche/",
35 + "title": "Liveo Mascouche 2 — condos locatifs (Mascouche)",
36 + "address": "",
37 + "sector": "",
38 + "city": "Mascouche",
39 + "unit_type": "",
40 + "price": 1625.0,
41 + "availability": "Occupation immédiate",
42 + "area_sqft": null,
43 + "n_images": 1,
44 + "n_amenities": 0
45 + },
46 + {
47 + "uid": "sotramont:liveo-pointe-claire-1",
48 + "url": "https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/",
49 + "title": "Liveo Pointe-Claire 1 — condos locatifs (Pointe-Claire)",
50 + "address": "",
51 + "sector": "Greenwich",
52 + "city": "Pointe-Claire",
53 + "unit_type": "",
54 + "price": 1970.0,
55 + "availability": "Occupation immédiate",
56 + "area_sqft": null,
57 + "n_images": 10,
58 + "n_amenities": 0
59 + },
60 + {
61 + "uid": "sotramont:liveo-pointe-claire-2",
62 + "url": "https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/",
63 + "title": "Liveo Pointe-Claire 2 — condos locatifs (Pointe-Claire)",
64 + "address": "",
65 + "sector": "Greenwich",
66 + "city": "Pointe-Claire",
67 + "unit_type": "",
68 + "price": 1575.0,
69 + "availability": "Occupation immédiate",
70 + "area_sqft": null,
71 + "n_images": 9,
72 + "n_amenities": 0
73 + },
74 + {
75 + "uid": "sotramont:liveo-pointe-claire-3",
76 + "url": "https://sotramont.com/liveo-pointe-claire-3/",
77 + "title": "Liveo Pointe-Claire 3 — condos locatifs (Pointe-Claire)",
78 + "address": "",
79 + "sector": "Greenwich",
80 + "city": "Pointe-Claire",
81 + "unit_type": "",
82 + "price": 1620.0,
83 + "availability": "Occupation immédiate",
84 + "area_sqft": null,
85 + "n_images": 8,
86 + "n_amenities": 0
87 + },
88 + {
89 + "uid": "sotramont:liveo-repentigny-1",
90 + "url": "https://liveo.ca/",
91 + "title": "Liveo Repentigny 1 — condos locatifs (Repentigny)",
92 + "address": "",
93 + "sector": "",
94 + "city": "Repentigny",
95 + "unit_type": "",
96 + "price": null,
97 + "availability": "Occupation immédiate",
98 + "area_sqft": null,
99 + "n_images": 1,
100 + "n_amenities": 0
101 + },
102 + {
103 + "uid": "sotramont:liveo-repentigny-2",
104 + "url": "https://liveo.ca/",
105 + "title": "Liveo Repentigny 2 — condos locatifs (Repentigny)",
106 + "address": "",
107 + "sector": "",
108 + "city": "Repentigny",
109 + "unit_type": "",
110 + "price": null,
111 + "availability": "Occupation immédiate",
112 + "area_sqft": null,
113 + "n_images": 1,
114 + "n_amenities": 0
115 + }
116 + ]
117 +}
\ No newline at end of file
added tests/fixtures/sotramont/f6f966cd7894315dd32c.html +1825 −0
@@ -0,0 +1,1825 @@
1 +
2 +
3 +
4 +
5 +
6 +
7 +
8 +
9 +
10 +
11 +
12 +
13 +
14 +
15 +
16 +
17 +
18 +
19 +
20 +
21 +
22 +
23 +
24 +
25 +
26 +
27 +
28 +
29 +
30 +
31 +
32 +
33 +
34 +
35 +
36 +
37 +
38 +
39 +
40 +
41 +
42 +
43 +
44 +
45 +
46 +
47 +
48 +
49 +
50 +<!doctype html>
51 +<html lang="fr-FR">
52 +<head>
53 + <meta charset="UTF-8">
54 + <meta name="viewport" content="width=device-width, initial-scale=1">
55 +
56 +
57 + <!-- Global site tag (gtag.js) - Google Analytics -->
58 + <script async src="https://www.googletagmanager.com/gtag/js?id=UA-35177730-1"></script>
59 + <script>
60 + window.dataLayer = window.dataLayer || [];
61 + function gtag(){dataLayer.push(arguments);}
62 + gtag('js', new Date());
63 + gtag('config', 'UA-35177730-1');
64 + </script>
65 + <!-- END Global site tag -->
66 +
67 + <!-- Google Tag Manager -->
68 + <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
69 + new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
70 + j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
71 + 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
72 + })(window,document,'script','dataLayer','GTM-KQGBN56');</script>
73 + <!-- End Google Tag Manager —>
74 +
75 + <!-- ScrollMagic -->
76 + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js" integrity="sha256-2p2tRZlPowp3P/04Pw2rqVCSbhyV/IB7ZEVUglrDS/c=" crossorigin="anonymous"></script>
77 + <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/plugins/animation.gsap.min.js" integrity="sha256-+9YNuItWuR4sbqeaNiJOxG0BvptYz4fbUXbIZoH5Jwo=" crossorigin="anonymous"></script>
78 + <!-- END ScrollMagic -->
79 +
80 + <style type="text/css">
81 + .heateor_sss_button_instagram span.heateor_sss_svg,a.heateor_sss_instagram span.heateor_sss_svg{background:radial-gradient(circle at 30% 107%,#fdf497 0,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285aeb 90%)}
82 + .heateor_sss_horizontal_sharing .heateor_sss_svg,.heateor_sss_standard_follow_icons_container .heateor_sss_svg{
83 + color: #fff;
84 + border-width: 0px;
85 + border-style: solid;
86 + border-color: transparent;
87 + }
88 + .heateor_sss_horizontal_sharing .heateorSssTCBackground{
89 + color:#666;
90 + }
91 + .heateor_sss_horizontal_sharing span.heateor_sss_svg:hover,.heateor_sss_standard_follow_icons_container span.heateor_sss_svg:hover{
92 + border-color: transparent;
93 + }
94 + .heateor_sss_vertical_sharing span.heateor_sss_svg,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg{
95 + color: #fff;
96 + border-width: 0px;
97 + border-style: solid;
98 + border-color: transparent;
99 + }
100 + .heateor_sss_vertical_sharing .heateorSssTCBackground{
101 + color:#666;
102 + }
103 + .heateor_sss_vertical_sharing span.heateor_sss_svg:hover,.heateor_sss_floating_follow_icons_container span.heateor_sss_svg:hover{
104 + border-color: transparent;
105 + }
106 + @media screen and (max-width:783px) {.heateor_sss_vertical_sharing{display:none!important}} </style>
107 + <meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
108 +<link rel="alternate" hreflang="en" href="https://sotramont.com/en/portfolio-condo-townhouse-sale-rent/" />
109 +<link rel="alternate" hreflang="fr" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/" />
110 +<link rel="alternate" hreflang="x-default" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/" />
111 +
112 + <!-- This site is optimized with the Yoast SEO plugin v20.11 - https://yoast.com/wordpress/plugins/seo/ -->
113 + <title>Nos projets de maisons de ville et condos à vendre et à louer | Sotramont</title>
114 + <meta name="description" content="Découvez nos projets de maisons de ville et condos à vendre et à louer. Nous proposons des habitations d&#039;un confort supérieur. Contactez-nous !" />
115 + <link rel="canonical" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/" />
116 + <meta property="og:locale" content="fr_FR" />
117 + <meta property="og:type" content="article" />
118 + <meta property="og:title" content="Nos projets de maisons de ville et condos à vendre et à louer | Sotramont" />
119 + <meta property="og:description" content="Découvez nos projets de maisons de ville et condos à vendre et à louer. Nous proposons des habitations d&#039;un confort supérieur. Contactez-nous !" />
120 + <meta property="og:url" content="https://sotramont.com/projets-maison-ville-condo-vendre-louer/" />
121 + <meta property="og:site_name" content="Sotramont" />
122 + <meta property="article:modified_time" content="2021-01-04T21:13:01+00:00" />
123 + <meta property="og:image" content="https://sotramont.com/wp-content/uploads/2020/08/BF_sotramont.jpg" />
124 + <meta property="og:image:width" content="1200" />
125 + <meta property="og:image:height" content="641" />
126 + <meta property="og:image:type" content="image/jpeg" />
127 + <meta name="twitter:card" content="summary_large_image" />
128 + <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://sotramont.com/projets-maison-ville-condo-vendre-louer/","url":"https://sotramont.com/projets-maison-ville-condo-vendre-louer/","name":"Nos projets de maisons de ville et condos à vendre et à louer | Sotramont","isPartOf":{"@id":"https://sotramont.com/?lang=en/#website"},"primaryImageOfPage":{"@id":"https://sotramont.com/projets-maison-ville-condo-vendre-louer/#primaryimage"},"image":{"@id":"https://sotramont.com/projets-maison-ville-condo-vendre-louer/#primaryimage"},"thumbnailUrl":"https://sotramont.com/wp-content/uploads/2020/08/BF_sotramont.jpg","datePublished":"2020-08-28T19:45:43+00:00","dateModified":"2021-01-04T21:13:01+00:00","description":"Découvez nos projets de maisons de ville et condos à vendre et à louer. Nous proposons des habitations d'un confort supérieur. Contactez-nous !","breadcrumb":{"@id":"https://sotramont.com/projets-maison-ville-condo-vendre-louer/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https://sotramont.com/projets-maison-ville-condo-vendre-louer/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https://sotramont.com/projets-maison-ville-condo-vendre-louer/#primaryimage","url":"https://sotramont.com/wp-content/uploads/2020/08/BF_sotramont.jpg","contentUrl":"https://sotramont.com/wp-content/uploads/2020/08/BF_sotramont.jpg","width":1200,"height":641},{"@type":"BreadcrumbList","@id":"https://sotramont.com/projets-maison-ville-condo-vendre-louer/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://sotramont.com/"},{"@type":"ListItem","position":2,"name":"Portfolio"}]},{"@type":"WebSite","@id":"https://sotramont.com/?lang=en/#website","url":"https://sotramont.com/?lang=en/","name":"Sotramont","description":"Montreal real-estate developer, builder and promoter.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://sotramont.com/?lang=en/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"fr-FR"}]}</script>
129 + <!-- / Yoast SEO plugin. -->
130 +
131 +
132 +<link rel="alternate" type="application/rss+xml" title="Sotramont &raquo; Feed" href="https://sotramont.com/feed/" />
133 +<link rel="alternate" type="application/rss+xml" title="Sotramont &raquo; Comments Feed" href="https://sotramont.com/comments/feed/" />
134 +<script type="text/javascript">
135 +window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/sotramont.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.2.2"}};
136 +/*! This file is auto-generated */
137 +!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){p.clearRect(0,0,i.width,i.height),p.fillText(e,0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(t,0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s("\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!s("\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!s("\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!s("\ud83e\udef1\ud83c\udffb\u200d\ud83e\udef2\ud83c\udfff","\ud83e\udef1\ud83c\udffb\u200b\ud83e\udef2\ud83c\udfff")}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
138 +</script>
139 +<style type="text/css">
140 +img.wp-smiley,
141 +img.emoji {
142 + display: inline !important;
143 + border: none !important;
144 + box-shadow: none !important;
145 + height: 1em !important;
146 + width: 1em !important;
147 + margin: 0 0.07em !important;
148 + vertical-align: -0.1em !important;
149 + background: none !important;
150 + padding: 0 !important;
151 +}
152 +</style>
153 + <link rel='stylesheet' id='wp-block-library-css' href='https://sotramont.com/wp-includes/css/dist/block-library/style.min.css?ver=6.2.2' type='text/css' media='all' />
154 +<style id='safe-svg-svg-icon-style-inline-css' type='text/css'>
155 +.safe-svg-cover .safe-svg-inside{display:inline-block;max-width:100%}.safe-svg-cover svg{height:100%;max-height:100%;max-width:100%;width:100%}
156 +
157 +</style>
158 +<link rel='stylesheet' id='classic-theme-styles-css' href='https://sotramont.com/wp-includes/css/classic-themes.min.css?ver=6.2.2' type='text/css' media='all' />
159 +<style id='global-styles-inline-css' type='text/css'>
160 +body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
161 +.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
162 +:where(.wp-block-columns.is-layout-flex){gap: 2em;}
163 +.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
164 +</style>
165 +<link rel='stylesheet' id='wpml-blocks-css' href='https://sotramont.com/wp-content/plugins/sitepress-multilingual-cms/dist/css/blocks/styles.css?ver=4.6.4' type='text/css' media='all' />
166 +<link rel='stylesheet' id='contact-form-7-css' href='https://sotramont.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.7.7' type='text/css' media='all' />
167 +<link rel='stylesheet' id='mainStylesheet-css' href='https://sotramont.com/wp-content/themes/custom/dist/css/main.css?v=6.8&#038;ver=6.2.2' type='text/css' media='all' />
168 +<link rel='stylesheet' id='heateor_sss_frontend_css-css' href='https://sotramont.com/wp-content/plugins/sassy-social-share/public/css/sassy-social-share-public.css?ver=3.3.52' type='text/css' media='all' />
169 +<script type='text/javascript' src='https://sotramont.com/wp-includes/js/jquery/jquery.min.js?ver=3.6.4' id='jquery-core-js'></script>
170 +<script type='text/javascript' src='https://sotramont.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.0' id='jquery-migrate-js'></script>
171 +<script type='text/javascript' id='wpml-cookie-js-extra'>
172 +/* <![CDATA[ */
173 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"\/"}};
174 +var wpml_cookies = {"wp-wpml_current_language":{"value":"fr","expires":1,"path":"\/"}};
175 +/* ]]> */
176 +</script>
177 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/sitepress-multilingual-cms/res/js/cookies/language-cookie.js?ver=4.6.4' id='wpml-cookie-js'></script>
178 +<script type='text/javascript' src='https://sotramont.com/wp-content/themes/custom/dist/js/main.js?v=1.6&#038;ver=6.2.2' id='custom-js-js'></script>
179 +<script type='text/javascript' id='awhitepixel-ajaxscript-js-extra'>
180 +/* <![CDATA[ */
181 +var Theme_Variables = {"ajax_url":"https:\/\/sotramont.com\/wp-admin\/admin-ajax.php"};
182 +/* ]]> */
183 +</script>
184 +<script type='text/javascript' src='https://sotramont.com/wp-content/themes/custom/ajax/ajax-project-filter.js?ver=6.2.2' id='awhitepixel-ajaxscript-js'></script>
185 +<link rel="https://api.w.org/" href="https://sotramont.com/wp-json/" /><link rel="alternate" type="application/json" href="https://sotramont.com/wp-json/wp/v2/pages/3918" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://sotramont.com/xmlrpc.php?rsd" />
186 +<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://sotramont.com/wp-includes/wlwmanifest.xml" />
187 +<meta name="generator" content="WordPress 6.2.2" />
188 +<link rel='shortlink' href='https://sotramont.com/?p=3918' />
189 +<link rel="alternate" type="application/json+oembed" href="https://sotramont.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsotramont.com%2Fprojets-maison-ville-condo-vendre-louer%2F" />
190 +<link rel="alternate" type="text/xml+oembed" href="https://sotramont.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fsotramont.com%2Fprojets-maison-ville-condo-vendre-louer%2F&#038;format=xml" />
191 +<meta name="generator" content="WPML ver:4.6.4 stt:1,4;" />
192 +<link rel="icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-32x32.png" sizes="32x32" />
193 +<link rel="icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-192x192.png" sizes="192x192" />
194 +<link rel="apple-touch-icon" href="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-180x180.png" />
195 +<meta name="msapplication-TileImage" content="https://sotramont.com/wp-content/uploads/2020/09/cropped-SOT-icon-270x270.png" />
196 + <script>
197 + function resizeIframe(obj) {
198 + obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
199 + }
200 + </script>
201 +</head>
202 +
203 +<body class="page-template-default page page-id-3918">
204 +
205 +<!-- Google Tag Manager (noscript) -->
206 +<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KQGBN56"
207 +height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
208 +<!-- End Google Tag Manager (noscript) -->
209 +
210 +
211 +<header class="block--header sm--pin-top" data-sm-duration-dependancy=".block--project-submenu">
212 + <div class="row content-inner-header">
213 + <div class="col col-logo col-xl-4 col-lg-6 col-md-7 col-sm-8 col-12 offset-1">
214 + <a href="https://sotramont.com"><img class="global-logo" src="https://sotramont.com/wp-content/uploads/2020/08/logo-sotramont.png"></a>
215 + </div>
216 + <div class="col col-menu col-xl-18 col-lg-16 col-md-14 col-24">
217 + <nav class="sub-navigation">
218 + <ul id="sub-menu" class="menu"><li id="menu-item-3940" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3940"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
219 +<li id="menu-item-3941" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3941"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
220 +<li id="menu-item-3942" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3942"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
221 +</ul> <div class='c--language-switcher'><a href="https://sotramont.com/en/portfolio-condo-townhouse-sale-rent/">en</a></div> </nav>
222 + <div class="content-main-nav">
223 + <nav class="main-navigation">
224 + <div class="menu-menu-header-fr-container"><ul id="primary-menu" class="menu"><li id="menu-item-3938" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3938"><a href="https://sotramont.com/la-difference-sotramont-a-propos/">La différence Sotramont</a></li>
225 +<li id="menu-item-3939" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3918 current_page_item menu-item-3939"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/" aria-current="page">Portfolio</a></li>
226 +<li id="menu-item-809" class="js--submenu-condos menu-item menu-item-type-custom menu-item-object-custom menu-item-809"><a title="js&#8211;submenu-condo">Curtiss Locatifs</a></li>
227 +<li id="menu-item-810" class="js--submenu-locatifs menu-item menu-item-type-custom menu-item-object-custom menu-item-810"><a title="js&#8211;submenu-rental">Liveo Locatifs</a></li>
228 +</ul></div> </nav>
229 + <div class="content-btn">
230 +
231 + <a href="https://sotramont.com/condo-maison-ville-vendre-louer/" class="btn btn--icon btn--icon__left">
232 + Recherche de propriétés
233 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.3 31.8"><path d="M17.4 0l-6.8 5.7V2.5H4.2V11L0 14.6l1.3 1.5 5-4.1V4.5h2.3V10l8.8-7.4L34 16.1l1.3-1.6z"/><path d="M27.8 19.8c0-4.3-3.5-7.7-7.7-7.7-4.3 0-7.7 3.5-7.7 7.7s3.5 7.7 7.7 7.7c1.8 0 3.6-.6 4.9-1.8l6.1 6.1 1.3-1.3-6.1-6.1c1-1.3 1.5-2.9 1.5-4.6zm-1.8 0c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6 6 2.7 6 6zM6.3 16.7H4.2v14.9h11.2v-2H6.3z"/></svg>
234 + </a>
235 + </div>
236 + </div>
237 + </div>
238 + </div>
239 +
240 + <div class="show-menu-open">
241 + <div class='c--language-switcher'><a href="https://sotramont.com/en/portfolio-condo-townhouse-sale-rent/">en</a></div> </div>
242 +
243 + <div class="c--hamburger-menu">
244 + <div class="content-border content-open">
245 + <div class="border border-1"></div>
246 + <div class="border border-2"></div>
247 + <div class="border border-3"></div>
248 + </div>
249 + <div class="content-border content-close">
250 + <div class="border border-1"></div>
251 + <div class="border border-2"></div>
252 + </div>
253 + </div>
254 +
255 +
256 + <!-- SUBMENU -->
257 + <section class="block block--header-submenu js--submenu js--submenu-maisons">
258 + <div class="row big-row">
259 + <div class="col col-22">
260 + <div class="content-inner">
261 +
262 + <div class="content-title">
263 + <h3 class="text-lg">Notre Complémentaire </h3>
264 + </div>
265 + <div class="row">
266 + <div class="col col-10 col-typo">
267 + <p></p>
268 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons">
269 + Voir tout Complémentaire dans notre portfolio
270 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
271 + </a>
272 + </div>
273 +
274 + </div>
275 + </div>
276 + </div>
277 + </div>
278 + </section>
279 +
280 + <section class="block block--header-submenu js--submenu js--submenu-condos">
281 + <div class="row big-row">
282 + <div class="col col-22">
283 + <div class="content-inner">
284 +
285 + <div class="content-title">
286 + <h3 class="text-lg">Notre Condos </h3>
287 + </div>
288 + <div class="row">
289 + <div class="col col-6 col-list">
290 + <a href="https://sotramont.com/curtiss-condos/" target="">
291 + <figure>
292 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Curtiss-1920x904.png'>
293 + </figure>
294 + <!--<h4 class="text-md">Curtiss Condos</h4>-->
295 + <h5 class="text-sm">Saint-Laurent</h5>
296 + </a>
297 + </div>
298 +
299 + <div class="col col-10 col-typo">
300 + <p>Les condos Sotramont sont toujours dans des emplacements de premier choix et s'intègrent harmonieusement à leur environnement. Ces condos très appréciés attirent un équilibre sain entre les résidents et les investisseurs.</p>
301 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=condos">
302 + Voir tout Condos dans notre portfolio
303 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
304 + </a>
305 + </div>
306 +
307 + </div>
308 + </div>
309 + </div>
310 + </div>
311 + </section>
312 +
313 + <section class="block block--header-submenu js--submenu js--submenu-locatifs">
314 + <div class="row big-row">
315 + <div class="col col-22">
316 + <div class="content-inner">
317 +
318 + <div class="content-title">
319 + <h3 class="text-lg">Notre Locatifs </h3>
320 + </div>
321 + <div class="row">
322 + <div class="col col-6 col-list">
323 + <figure>
324 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Liveo-1920x904.png'>
325 + </figure>
326 + </div>
327 +
328 + <div class="col col-6 col-locations">
329 + <div>
330 + <span><a href="https://sotramont.com/liveo-bois-franc/" target=""><h5 class="text-sm">Saint-Laurent</h5></a></span><span><a href="https://sotramont.com/liveo-mascouche/" target=""><h5 class="text-sm">Mascouche</h5></a></span><span><a href="https://sotramont.com/liveo-pointe-claire/" target=""><h5 class="text-sm">Pointe-Claire</h5></a></span><span><a href="https://sotramont.com/liveo-repentigny/" target=""><h5 class="text-sm">Repentigny</h5></a></span>
331 + </div>
332 + </div>
333 +
334 + <div class="col col-10 col-typo">
335 + <p>Les condos locatifs Sotramont sont soigneusement conçus pour offrir aux résidents un niveau de vie élevé, quel que soit le budget.</p>
336 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=locatifs">
337 + Voir tout Locatifs dans notre portfolio
338 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
339 + </a>
340 + </div>
341 +
342 + </div>
343 + </div>
344 + </div>
345 + </div>
346 + </section>
347 +
348 + <section class="block block--header-submenu js--submenu js--submenu-maisons-de-ville">
349 + <div class="row big-row">
350 + <div class="col col-22">
351 + <div class="content-inner">
352 +
353 + <div class="content-title">
354 + <h3 class="text-lg">Notre Maisons de ville </h3>
355 + </div>
356 + <div class="row">
357 + <div class="col col-10 col-typo">
358 + <p>Les maisons de ville de Sotramont sont toujours situées dans des endroits recherchés et construites dans un souci de longévité. Ces maisons de ville fiables attirent un équilibre sain entre plusieurs générations.</p>
359 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons-de-ville">
360 + Voir tout Maisons de ville dans notre portfolio
361 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
362 + </a>
363 + </div>
364 +
365 + </div>
366 + </div>
367 + </div>
368 + </div>
369 + </section>
370 +
371 +
372 +</header>
373 +
374 +
375 +<div class="c--toggle-hamburger-menu">
376 + <div class="big-row row">
377 + <div class="col-md-18 col-sm-20 col-22">
378 + <nav id="site-navigation" class="main-navigation">
379 + <div class="content-btn">
380 +
381 + <a href="https://sotramont.com/condo-maison-ville-vendre-louer/" class="btn btn--icon btn--icon__left">
382 + Recherche de propriétés
383 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.3 31.8"><path d="M17.4 0l-6.8 5.7V2.5H4.2V11L0 14.6l1.3 1.5 5-4.1V4.5h2.3V10l8.8-7.4L34 16.1l1.3-1.6z"/><path d="M27.8 19.8c0-4.3-3.5-7.7-7.7-7.7-4.3 0-7.7 3.5-7.7 7.7s3.5 7.7 7.7 7.7c1.8 0 3.6-.6 4.9-1.8l6.1 6.1 1.3-1.3-6.1-6.1c1-1.3 1.5-2.9 1.5-4.6zm-1.8 0c0 3.3-2.7 6-6 6s-6-2.7-6-6 2.7-6 6-6 6 2.7 6 6zM6.3 16.7H4.2v14.9h11.2v-2H6.3z"/></svg>
384 + </a>
385 + </div>
386 +
387 + <div class="menu-menu-header-fr-container"><ul id="primary-menu" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3938"><a href="https://sotramont.com/la-difference-sotramont-a-propos/">La différence Sotramont</a></li>
388 +<li class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3918 current_page_item menu-item-3939"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/" aria-current="page">Portfolio</a></li>
389 +<li class="js--submenu-condos menu-item menu-item-type-custom menu-item-object-custom menu-item-809"><a title="js&#8211;submenu-condo">Curtiss Locatifs</a></li>
390 +<li class="js--submenu-locatifs menu-item menu-item-type-custom menu-item-object-custom menu-item-810"><a title="js&#8211;submenu-rental">Liveo Locatifs</a></li>
391 +</ul></div>
392 + <div class="content-list-submenu">
393 +
394 + <div class="content-title">
395 + <h3 class="text-lg">Notre Complémentaire </h3>
396 + </div>
397 + <div class="row">
398 + <div class="col col-10 col-typo">
399 + <p></p>
400 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons">
401 + Voir tout Complémentaire dans notre portfolio
402 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
403 + </a>
404 + </div>
405 +
406 + </div>
407 +
408 + <div class="content-title">
409 + <h3 class="text-lg">Notre Condos </h3>
410 + </div>
411 + <div class="row">
412 + <div class="col col-6 col-list">
413 + <a href="https://sotramont.com/curtiss-condos/" target="">
414 + <figure>
415 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Curtiss-1920x904.png'>
416 + </figure>
417 + <!--<h4 class="text-md">Curtiss Condos</h4>-->
418 + <h5 class="text-sm">Saint-Laurent</h5>
419 + </a>
420 + </div>
421 +
422 + <div class="col col-10 col-typo">
423 + <p>Les condos Sotramont sont toujours dans des emplacements de premier choix et s'intègrent harmonieusement à leur environnement. Ces condos très appréciés attirent un équilibre sain entre les résidents et les investisseurs.</p>
424 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=condos">
425 + Voir tout Condos dans notre portfolio
426 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
427 + </a>
428 + </div>
429 +
430 + </div>
431 +
432 + <div class="content-title">
433 + <h3 class="text-lg">Notre Locatifs </h3>
434 + </div>
435 + <div class="row">
436 + <div class="col col-6 col-list">
437 + <figure>
438 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/07/Liveo-1920x904.png'>
439 + </figure>
440 + </div>
441 +
442 + <div class="col col-6 col-locations">
443 + <div>
444 + <span><a href="https://sotramont.com/liveo-bois-franc/" target=""><h5 class="text-sm">Saint-Laurent</h5></a></span><span><a href="https://sotramont.com/liveo-mascouche/" target=""><h5 class="text-sm">Mascouche</h5></a></span><span><a href="https://sotramont.com/liveo-pointe-claire/" target=""><h5 class="text-sm">Pointe-Claire</h5></a></span><span><a href="https://sotramont.com/liveo-repentigny/" target=""><h5 class="text-sm">Repentigny</h5></a></span>
445 + </div>
446 + </div>
447 +
448 + <div class="col col-10 col-typo">
449 + <p>Les condos locatifs Sotramont sont soigneusement conçus pour offrir aux résidents un niveau de vie élevé, quel que soit le budget.</p>
450 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=locatifs">
451 + Voir tout Locatifs dans notre portfolio
452 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
453 + </a>
454 + </div>
455 +
456 + </div>
457 +
458 + <div class="content-title">
459 + <h3 class="text-lg">Notre Maisons de ville </h3>
460 + </div>
461 + <div class="row">
462 + <div class="col col-10 col-typo">
463 + <p>Les maisons de ville de Sotramont sont toujours situées dans des endroits recherchés et construites dans un souci de longévité. Ces maisons de ville fiables attirent un équilibre sain entre plusieurs générations.</p>
464 + <a class="btn--icon btn--icon__right btn--icon__sm" href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=maisons-de-ville">
465 + Voir tout Maisons de ville dans notre portfolio
466 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3703.1 6138"><path d="M3540.6 2557L807.5 122.8c-200-178.1-506.6-160.4-684.7 39.6-178.1 200-160.4 506.6 39.6 684.7l2371.4 2112-2112 2371.4c-178.1 200-160.4 506.5 39.6 684.7C553.8 6097.5 669 6138 783.7 6138c133.5 0 266.5-54.8 362.3-162.4l2434.2-2733.1c82.2-92.3 122.7-207.3 122.8-321.9.4-134-54.5-267.5-162.4-363.6z"/></svg>
467 + </a>
468 + </div>
469 +
470 + </div>
471 + </div>
472 +
473 + </nav>
474 + </div>
475 + </div>
476 +
477 + <div class="content-subnav">
478 + <ul id="sub-menu" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3940"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
479 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3941"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
480 +<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3942"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
481 +</ul> </div>
482 +
483 + <div class="content-animate"></div>
484 +
485 +
486 +</div>
487 +
488 +
489 +
490 +
491 +
492 +
493 +
494 +
495 +<section id="block--banner-video" class="block block--banner-video " >
496 +
497 + <div class="row">
498 + <div class="col col-typo col-md-20 col-sm-21 col-22">
499 +
500 +
501 + <div class="content-title">
502 + <h1 class="text-xl">50 anneés + </br> D&#8217;HISTOIRE</h1>
503 + </div>
504 +
505 +
506 + <p class="text-p">Nous savons comment nos projets évoluent et perdurent.</p>
507 +
508 +
509 +
510 +
511 +
512 + </div>
513 + </div>
514 +
515 + <div class="sm--parallax" data-sm-parallax-y="30">
516 + <button class="c--arrow-down js--scroll-to" data-scroll-to="">
517 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28.3 17.3"><path d="M27.9.7c-.3-.4-.7-.6-1.2-.7-.5 0-1 .1-1.4.5l-.2.2-11 11.9L3.3.7C3 .3 2.5.1 2 0 1.5 0 1 .1.6.5c-.8.7-.9 1.9-.2 2.7l.2.2 12.3 13.4c.3.4.8.5 1.3.5s.9-.2 1.3-.6L27.7 3.3c.7-.7.8-1.8.2-2.6z"/></svg>
518 + </button>
519 + </div>
520 +
521 + <div class="js--video" data-video-width="560" data-video-height="315">
522 +
523 + <div class="js--video__image sm--parallax" data-sm-parallax-y="25vh">
524 +
525 + <figure class='c--image-bg'>
526 + <div class='c--image-bg__inner sm--parallax' data-sm-parallax-y='12vh' style='background-image:url(https://sotramont.com/wp-content/uploads/2020/08/BF_sotramont.jpg);'></div>
527 + </figure>
528 + </div>
529 +
530 +
531 + </div>
532 +
533 +</section>
534 +
535 +
536 +<section id="block--project-full-list" class="block block--project-full-list">
537 +
538 +
539 + <div class="row big-row">
540 + <div class="col col-md-20 col-22">
541 +
542 + <!-- Content Title -->
543 + <div class="content-title sm--toggle-class">
544 + <h2 class="text-lg"><center>Consultez notre portfolio</center></h2>
545 + </div>
546 +
547 +
548 +
549 + <!-- Content Toggle Click -->
550 + <div class="content-toggle-click">
551 +
552 + <div class="row">
553 +
554 +
555 +
556 + <div class="col col-md-6 col-12">
557 + <div class="c--toggle-click filter js--mixitup-active" data-filter=".project-category-condos" data-parameter="category" data-url="condos">
558 + <h3 class="text-lg">Condos</h3>
559 + </div>
560 + </div>
561 +
562 + <div class="col col-md-6 col-12">
563 + <div class="c--toggle-click filter js--mixitup-active" data-filter=".project-category-locatifs" data-parameter="category" data-url="locatifs">
564 + <h3 class="text-lg">Locatifs</h3>
565 + </div>
566 + </div>
567 +
568 + <div class="col col-md-6 col-12">
569 + <div class="c--toggle-click filter " data-filter=".project-category-maisons-de-ville" data-parameter="category" data-url="maisons-de-ville">
570 + <h3 class="text-lg">Maisons de ville</h3>
571 + </div>
572 + </div>
573 +
574 + <div class="col col-md-6 col-12">
575 + <div class="c--toggle-click filter " data-filter=".project-category-maisons" data-parameter="category" data-url="maisons">
576 + <h3 class="text-lg">Complémentaire</h3>
577 + </div>
578 + </div>
579 +
580 + </div>
581 +
582 + </div>
583 +
584 +
585 +
586 + <!-- List Careers -->
587 + <div class="content-list">
588 +
589 + <div class="row mix-container">
590 +
591 +
592 +
593 +
594 +
595 +
596 +
597 +
598 +
599 +
600 +
601 +
602 +
603 +
604 +
605 +
606 +
607 +
608 +
609 +
610 +
611 +
612 +
613 +
614 +
615 +
616 +
617 +
618 +
619 +
620 +
621 +
622 +
623 +
624 +
625 +
626 +
627 +
628 +
629 +
630 +
631 +
632 +
633 +
634 +
635 +
636 +
637 +
638 +
639 +
640 +
641 +
642 +
643 +
644 +
645 +
646 +
647 +
648 +
649 +
650 +
651 +
652 +
653 +
654 +
655 +
656 +
657 +
658 +
659 +
660 +
661 +
662 +
663 +
664 +
665 +
666 +
667 +
668 +
669 +
670 +
671 +
672 +
673 +
674 +
675 +
676 +
677 +
678 +
679 +
680 +
681 +
682 +
683 +
684 +
685 +
686 +
687 +
688 +
689 +
690 +
691 +
692 +
693 +
694 +
695 +
696 +
697 +
698 +
699 +
700 +
701 +
702 +
703 +
704 +
705 +
706 +
707 +
708 +
709 +
710 +
711 +
712 +
713 +
714 +
715 +
716 +
717 +
718 +
719 +
720 +
721 +
722 +
723 +
724 +
725 +
726 +
727 +
728 +
729 +
730 +
731 +
732 +
733 +
734 +
735 +
736 +
737 +
738 +
739 +
740 +
741 +
742 +
743 +
744 +
745 +
746 +
747 +
748 +
749 +
750 +
751 +
752 +
753 +
754 +
755 +
756 +
757 +
758 +
759 +
760 +
761 +
762 +
763 +
764 +
765 +
766 +
767 +
768 +
769 +
770 +
771 +
772 +
773 +
774 +
775 +
776 +
777 +
778 +
779 +
780 +
781 +
782 +
783 +
784 +
785 +
786 +
787 +
788 +
789 +
790 +
791 +
792 +
793 +
794 +
795 +
796 +
797 +
798 +
799 +
800 +
801 +
802 +
803 +
804 +
805 +
806 +
807 +
808 +
809 +
810 +
811 +
812 +
813 +
814 +
815 +
816 +
817 +
818 +
819 +
820 +
821 +
822 +
823 +
824 +
825 +
826 +
827 +
828 +
829 +
830 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-locatifs">
831 +
832 + <a href="https://sotramont.com/liveo-bois-franc-1/" target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">En construction</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2024/05/SOTR22_Liveo_Boisfranc_Vue1_v3-min-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Liveo Bois-Franc 1</h3><h4 class="c--article-project__text-md">Bois-FrancBois-Franc &#8211; Saint-Laurent</h4><div class="content-btn">
833 + <button class="btn btn--icon btn--icon__sm">
834 + Voir projet
835 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 175"><path d="M2.9 1.4C-.2 3.8-.9 8.5 1.4 11.8l52.8 75.7-52.8 75.7c-2.3 3.3-1.7 7.9 1.5 10.4 3.1 2.4 7.5 1.7 9.8-1.6L68 92.8c1.3-1.4 2-3.3 2-5.2v-.1-.1c0-1.9-.7-3.8-2-5.2L12.7 3C10.4-.3 6-1 2.9 1.4z"/></svg>
836 + </button>
837 + </div>
838 + </a>
839 +
840 + </article>
841 +
842 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-locatifs">
843 +
844 + <a href="https://sotramont.com/liveo-pointe-claire-3/" target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Occupation immédiate</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2022/12/My-project-1-767x577.jpg);"></figure><h3 class="c--article-project__text-lg">Liveo Pointe-Claire 3</h3><h4 class="c--article-project__text-md">Greenwich &#8211; Pointe-Claire</h4><div class="content-text">
845 + <h5>172 condos locatifs</h5>
846 +<ul>
847 +<li>1-2 chambres sur 10 étages</li>
848 +<li>à partir de 1 620 $ par mois avec inclusions</li>
849 +</ul>
850 +
851 + </div><div class="content-btn">
852 + <button class="btn btn--icon btn--icon__sm">
853 + Voir projet
854 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 175"><path d="M2.9 1.4C-.2 3.8-.9 8.5 1.4 11.8l52.8 75.7-52.8 75.7c-2.3 3.3-1.7 7.9 1.5 10.4 3.1 2.4 7.5 1.7 9.8-1.6L68 92.8c1.3-1.4 2-3.3 2-5.2v-.1-.1c0-1.9-.7-3.8-2-5.2L12.7 3C10.4-.3 6-1 2.9 1.4z"/></svg>
855 + </button>
856 + </div>
857 + </a>
858 +
859 + </article>
860 +
861 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos project-category-locatifs">
862 +
863 + <a href="https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/" target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Occupation immédiate</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2021/11/CURT-C-perspective-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Curtiss Charlie</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
864 + <div class="content-text">
865 +<h5>94 condos</h5>
866 +<ul>
867 +<li>1-2 chambres</li>
868 +<li>à partir de 1 460 $ par mois avec inclusions</li>
869 +</ul>
870 +</div>
871 +<p>&nbsp;</p>
872 +
873 + </div><div class="content-btn">
874 + <button class="btn btn--icon btn--icon__sm">
875 + Voir projet
876 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 175"><path d="M2.9 1.4C-.2 3.8-.9 8.5 1.4 11.8l52.8 75.7-52.8 75.7c-2.3 3.3-1.7 7.9 1.5 10.4 3.1 2.4 7.5 1.7 9.8-1.6L68 92.8c1.3-1.4 2-3.3 2-5.2v-.1-.1c0-1.9-.7-3.8-2-5.2L12.7 3C10.4-.3 6-1 2.9 1.4z"/></svg>
877 + </button>
878 + </div>
879 + </a>
880 +
881 + </article>
882 +
883 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-locatifs">
884 +
885 + <a href="https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/" target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Occupation immédiate</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2021/11/LPC2-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Liveo Pointe-Claire 2</h3><h4 class="c--article-project__text-md">Greenwich &#8211; Pointe-Claire</h4><div class="content-text">
886 + <h5>179 condos locatifs</h5>
887 +<ul>
888 +<li>1-2 chambres sur 10 étages</li>
889 +<li>à partir de 1 575 $ par mois avec inclusions</li>
890 +</ul>
891 +
892 + </div><div class="content-btn">
893 + <button class="btn btn--icon btn--icon__sm">
894 + Voir projet
895 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 175"><path d="M2.9 1.4C-.2 3.8-.9 8.5 1.4 11.8l52.8 75.7-52.8 75.7c-2.3 3.3-1.7 7.9 1.5 10.4 3.1 2.4 7.5 1.7 9.8-1.6L68 92.8c1.3-1.4 2-3.3 2-5.2v-.1-.1c0-1.9-.7-3.8-2-5.2L12.7 3C10.4-.3 6-1 2.9 1.4z"/></svg>
896 + </button>
897 + </div>
898 + </a>
899 +
900 + </article>
901 +
902 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-locatifs">
903 +
904 + <a href="https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/" target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Occupation immédiate</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/07/Webp.net-compress-image-1-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Liveo Pointe-Claire 1</h3><h4 class="c--article-project__text-md">Greenwich &#8211; Pointe-Claire</h4><div class="content-text">
905 + <h5>142 condos locatifs</h5>
906 +<ul>
907 +<li>1-2 chambres sur 10 étages</li>
908 +<li>à partir de 1 970 $ par mois avec inclusions</li>
909 +</ul>
910 +
911 + </div><div class="content-btn">
912 + <button class="btn btn--icon btn--icon__sm">
913 + Voir projet
914 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 175"><path d="M2.9 1.4C-.2 3.8-.9 8.5 1.4 11.8l52.8 75.7-52.8 75.7c-2.3 3.3-1.7 7.9 1.5 10.4 3.1 2.4 7.5 1.7 9.8-1.6L68 92.8c1.3-1.4 2-3.3 2-5.2v-.1-.1c0-1.9-.7-3.8-2-5.2L12.7 3C10.4-.3 6-1 2.9 1.4z"/></svg>
915 + </button>
916 + </div>
917 + </a>
918 +
919 + </article>
920 +
921 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-locatifs">
922 +
923 + <a href="https://sotramont.com/liveo-mascouche-2-condos-locatifs-louer-mascouche/" target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Occupation immédiate</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2022/04/LMS-perspective-3-767x590.jpg);"></figure><h3 class="c--article-project__text-lg">Liveo Mascouche 2</h3><h4 class="c--article-project__text-md"> Mascouche</h4><div class="content-text">
924 + <h5>251 condos locatifs</h5>
925 +<ul>
926 +<li>1-2 chambres sur 14 étages</li>
927 +<li>à partir de 1 625 $ par mois avec inclusions</li>
928 +</ul>
929 +
930 + </div><div class="content-btn">
931 + <button class="btn btn--icon btn--icon__sm">
932 + Voir projet
933 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 175"><path d="M2.9 1.4C-.2 3.8-.9 8.5 1.4 11.8l52.8 75.7-52.8 75.7c-2.3 3.3-1.7 7.9 1.5 10.4 3.1 2.4 7.5 1.7 9.8-1.6L68 92.8c1.3-1.4 2-3.3 2-5.2v-.1-.1c0-1.9-.7-3.8-2-5.2L12.7 3C10.4-.3 6-1 2.9 1.4z"/></svg>
934 + </button>
935 + </div>
936 + </a>
937 +
938 + </article>
939 +
940 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-locatifs">
941 +
942 + <a href="https://sotramont.com/liveo-mascouche-1-condos-locatifs-louer-mascouche/" target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Occupation immédiate</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/07/LMS-perspective-767x590.jpg);"></figure><h3 class="c--article-project__text-lg">Liveo Mascouche 1</h3><h4 class="c--article-project__text-md"> Mascouche</h4><div class="content-text">
943 + <h5>251 condos locatifs</h5>
944 +<ul>
945 +<li>1-2 chambres sur 14 étages</li>
946 +<li>à partir de 1 625 $ par mois avec inclusions</li>
947 +</ul>
948 +
949 + </div><div class="content-btn">
950 + <button class="btn btn--icon btn--icon__sm">
951 + Voir projet
952 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 175"><path d="M2.9 1.4C-.2 3.8-.9 8.5 1.4 11.8l52.8 75.7-52.8 75.7c-2.3 3.3-1.7 7.9 1.5 10.4 3.1 2.4 7.5 1.7 9.8-1.6L68 92.8c1.3-1.4 2-3.3 2-5.2v-.1-.1c0-1.9-.7-3.8-2-5.2L12.7 3C10.4-.3 6-1 2.9 1.4z"/></svg>
953 + </button>
954 + </div>
955 + </a>
956 +
957 + </article>
958 +
959 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-locatifs">
960 +
961 + <a href="https://liveo.ca/" target="_blank" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Occupation immédiate</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/02/exterior-767x431.jpg);"></figure><h3 class="c--article-project__text-lg">Liveo Repentigny 2</h3><h4 class="c--article-project__text-md"> Repentigny</h4><div class="content-text">
962 + <h5>220 condos locatifs</h5>
963 +
964 + </div><div class="content-btn">
965 + <button class="btn btn--icon btn--icon__sm">
966 + Voir projet
967 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 175"><path d="M2.9 1.4C-.2 3.8-.9 8.5 1.4 11.8l52.8 75.7-52.8 75.7c-2.3 3.3-1.7 7.9 1.5 10.4 3.1 2.4 7.5 1.7 9.8-1.6L68 92.8c1.3-1.4 2-3.3 2-5.2v-.1-.1c0-1.9-.7-3.8-2-5.2L12.7 3C10.4-.3 6-1 2.9 1.4z"/></svg>
968 + </button>
969 + </div>
970 + </a>
971 +
972 + </article>
973 +
974 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-locatifs">
975 +
976 + <a href="https://liveo.ca/" target="_blank" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Occupation immédiate</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/07/LRP-exterior-1-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Liveo Repentigny 1</h3><h4 class="c--article-project__text-md"> Repentigny</h4><div class="content-text">
977 + <h5>121 condos locatifs</h5>
978 +
979 + </div><div class="content-btn">
980 + <button class="btn btn--icon btn--icon__sm">
981 + Voir projet
982 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 175"><path d="M2.9 1.4C-.2 3.8-.9 8.5 1.4 11.8l52.8 75.7-52.8 75.7c-2.3 3.3-1.7 7.9 1.5 10.4 3.1 2.4 7.5 1.7 9.8-1.6L68 92.8c1.3-1.4 2-3.3 2-5.2v-.1-.1c0-1.9-.7-3.8-2-5.2L12.7 3C10.4-.3 6-1 2.9 1.4z"/></svg>
983 + </button>
984 + </div>
985 + </a>
986 +
987 + </article>
988 +
989 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
990 +
991 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2021/03/CURT-B-perspective-3-2-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Curtiss Bravo</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
992 + <h5>133 condos</h5>
993 +
994 + </div>
995 + </a>
996 +
997 + </article>
998 +
999 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1000 +
1001 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/02/Webp.net-compress-image-3-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Curtiss Alpha</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1002 + <h5>76 condos</h5>
1003 +<p>&nbsp;</p>
1004 +
1005 + </div>
1006 + </a>
1007 +
1008 + </article>
1009 +
1010 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1011 +
1012 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/07/equinox-3-767x513.jpg);"></figure><h3 class="c--article-project__text-lg">Square Equinox 3</h3><h4 class="c--article-project__text-md">Greenwich &#8211; Pointe-Claire</h4><div class="content-text">
1013 + <h5>48 condos</h5>
1014 +
1015 + </div>
1016 + </a>
1017 +
1018 + </article>
1019 +
1020 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1021 +
1022 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2019/09/equinox-2-767x575.jpg);"></figure><h3 class="c--article-project__text-lg">Square Equinox 2</h3><h4 class="c--article-project__text-md">Greenwich &#8211; Pointe-Claire</h4><div class="content-text">
1023 + <h5>53 condos</h5>
1024 +
1025 + </div>
1026 + </a>
1027 +
1028 + </article>
1029 +
1030 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1031 +
1032 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/07/equinox-1-767x461.jpg);"></figure><h3 class="c--article-project__text-lg">Square Equinox 1</h3><h4 class="c--article-project__text-md">Greenwich &#8211; Pointe-Claire</h4><div class="content-text">
1033 + <h5>51 CONDOS</h5>
1034 +
1035 + </div>
1036 + </a>
1037 +
1038 + </article>
1039 +
1040 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1041 +
1042 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/PDN_Sotramont_36658-767x512.jpg);"></figure><h3 class="c--article-project__text-lg">Place des Nations 3</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1043 + <h5>58 condos</h5>
1044 +
1045 + </div>
1046 + </a>
1047 +
1048 + </article>
1049 +
1050 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1051 +
1052 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">En constructionVendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/12/AVIA-exterior-V6-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Avia</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1053 + <h5>18 maisons de ville</h5>
1054 +
1055 + </div>
1056 + </a>
1057 +
1058 + </article>
1059 +
1060 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1061 +
1062 + <a target="_blank" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/07/Webp.net-compress-image-4-767x404.jpg);"></figure><h3 class="c--article-project__text-lg">Square Norseman</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1063 + <h5>62 maisons de ville</h5>
1064 +
1065 + </div>
1066 + </a>
1067 +
1068 + </article>
1069 +
1070 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1071 +
1072 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/pdn22-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Place des Nations 2</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1073 + <h5>53 condos</h5>
1074 +
1075 + </div>
1076 + </a>
1077 +
1078 + </article>
1079 +
1080 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1081 +
1082 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/07/Webp.net-compress-image-7-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Prima 3</h3><h4 class="c--article-project__text-md">Greenwich &#8211; Pointe-Claire</h4><div class="content-text">
1083 + <h5>28 maisons de ville</h5>
1084 +
1085 + </div>
1086 + </a>
1087 +
1088 + </article>
1089 +
1090 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1091 +
1092 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/pdn-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Place des Nations 1</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1093 + <h5>34 condos</h5>
1094 +
1095 + </div>
1096 + </a>
1097 +
1098 + </article>
1099 +
1100 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons">
1101 +
1102 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Loué</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/1071229222-1.jpg);"></figure><h3 class="c--article-project__text-lg">Grand Place</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4>
1103 + </a>
1104 +
1105 + </article>
1106 +
1107 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons">
1108 +
1109 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Loué</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2019/09/DSCF0721-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Centre Gatineau</h3><h4 class="c--article-project__text-md"> Gatineau</h4>
1110 + </a>
1111 +
1112 + </article>
1113 +
1114 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1115 +
1116 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/Webp.net-compress-image-22-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Homes Greenwich</h3><h4 class="c--article-project__text-md">Greenwich &#8211; Pointe-Claire</h4>
1117 + </a>
1118 +
1119 + </article>
1120 +
1121 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1122 +
1123 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/Square-du-Nordet-YUL-0-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Square du Nordet</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1124 + <h5>96 maisons superposées</h5>
1125 +
1126 + </div>
1127 + </a>
1128 +
1129 + </article>
1130 +
1131 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1132 +
1133 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/agadgadh-767x656.jpg);"></figure><h3 class="c--article-project__text-lg">Villas du Mistral</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1134 + <h5>44 maisons de ville</h5>
1135 +
1136 + </div>
1137 + </a>
1138 +
1139 + </article>
1140 +
1141 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1142 +
1143 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/03/ETP_7419-767x512.jpg);"></figure><h3 class="c--article-project__text-lg">ZAC</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1144 + <h5>36 maisons de ville</h5>
1145 +
1146 + </div>
1147 + </a>
1148 +
1149 + </article>
1150 +
1151 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1152 +
1153 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2019/09/DSCF0564-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">ZAC sur le lac</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1154 + <h5>19 maisons de ville</h5>
1155 +
1156 + </div>
1157 + </a>
1158 +
1159 + </article>
1160 +
1161 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1162 +
1163 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/zac3exterior-767x521.jpg);"></figure><h3 class="c--article-project__text-lg">ZAC 3</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1164 + <h5>48 maisons de ville</h5>
1165 +
1166 + </div>
1167 + </a>
1168 +
1169 + </article>
1170 +
1171 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1172 +
1173 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/Prima-H-767x457.jpg);"></figure><h3 class="c--article-project__text-lg">Prima</h3><h4 class="c--article-project__text-md">Greenwich &#8211; Pointe-Claire</h4>
1174 + </a>
1175 +
1176 + </article>
1177 +
1178 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1179 +
1180 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/07/Webp.net-compress-image-5-767x405.jpg);"></figure><h3 class="c--article-project__text-lg">Prima 2</h3><h4 class="c--article-project__text-md">Greenwich &#8211; Pointe-Claire</h4>
1181 + </a>
1182 +
1183 + </article>
1184 +
1185 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1186 +
1187 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2018/09/2016_09_26_03_18_34_vic_lambert_exterior-767x563.jpg);"></figure><h3 class="c--article-project__text-lg">Vic &#038; Lambert</h3><h4 class="c--article-project__text-md"> Saint-Lambert</h4>
1188 + </a>
1189 +
1190 + </article>
1191 +
1192 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-locatifs">
1193 +
1194 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2018/09/arbora1_pjv-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Arbora 3</h3><h4 class="c--article-project__text-md">Griffintown &#8211; Le Sud-Ouest</h4><div class="content-text">
1195 + <h5>134 condos locatifs</h5>
1196 +
1197 + </div>
1198 + </a>
1199 +
1200 + </article>
1201 +
1202 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1203 +
1204 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2018/09/8-1-767x575.jpg);"></figure><h3 class="c--article-project__text-lg">Arbora 2</h3><h4 class="c--article-project__text-md">Griffintown &#8211; Le Sud-Ouest</h4><div class="content-text">
1205 + <h5>162 condos</h5>
1206 +
1207 + </div>
1208 + </a>
1209 +
1210 + </article>
1211 +
1212 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-locatifs">
1213 +
1214 + <a target="_blank" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2018/09/arbora-condo-griffintown.jpg);"></figure><h3 class="c--article-project__text-lg">Arbora 1</h3><h4 class="c--article-project__text-md">Griffintown &#8211; Le Sud-Ouest</h4><div class="content-text">
1215 + <h5>138 condos locatifs</h5>
1216 +
1217 + </div>
1218 + </a>
1219 +
1220 + </article>
1221 +
1222 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1223 +
1224 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2014/10/DSCF0608-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Villas de Chamonix</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1225 + <h5>maisons de ville</h5>
1226 +
1227 + </div>
1228 + </a>
1229 +
1230 + </article>
1231 +
1232 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1233 +
1234 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/10/DSCF0618-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Villas du Bois-Franc</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1235 + <h5>maisons de ville</h5>
1236 +
1237 + </div>
1238 + </a>
1239 +
1240 + </article>
1241 +
1242 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1243 +
1244 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2011/09/Trading-Post-002W-1.jpg);"></figure><h3 class="c--article-project__text-lg">Trading Post</h3><h4 class="c--article-project__text-md"> Cochrane</h4>
1245 + </a>
1246 +
1247 + </article>
1248 +
1249 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1250 +
1251 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2011/09/13145004_35_lg-1.jpg);"></figure><h3 class="c--article-project__text-lg">Trading Post</h3><h4 class="c--article-project__text-md"> Cochrane</h4>
1252 + </a>
1253 +
1254 + </article>
1255 +
1256 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons">
1257 +
1258 + <a target="_blank" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Loué</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2011/09/Trading-Post-010w-1.jpg);"></figure><h3 class="c--article-project__text-lg">Trading Post</h3><h4 class="c--article-project__text-md"> Cochrane</h4>
1259 + </a>
1260 +
1261 + </article>
1262 +
1263 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1264 +
1265 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2011/09/422-201-sunset-drive-sunset-ridge-cochrane-C4302106-1-p-1-767x512.jpg);"></figure><h3 class="c--article-project__text-lg">Sunset Ridge</h3><h4 class="c--article-project__text-md"> Cochrane</h4>
1266 + </a>
1267 +
1268 + </article>
1269 +
1270 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1271 +
1272 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2011/09/DSCF0556-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Tod Maisons Urbaines</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1273 + <h5>40 maisons superposées</h5>
1274 +
1275 + </div>
1276 + </a>
1277 +
1278 + </article>
1279 +
1280 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1281 +
1282 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2011/09/Webp.net-compress-image-24-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Tod</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1283 + <h5>46 condos</h5>
1284 +
1285 + </div>
1286 + </a>
1287 +
1288 + </article>
1289 +
1290 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1291 +
1292 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2011/09/Webp.net-compress-image-23-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Momentum</h3><h4 class="c--article-project__text-md">Greenwich &#8211; Pointe-Claire</h4>
1293 + </a>
1294 +
1295 + </article>
1296 +
1297 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1298 +
1299 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/BG-Project-767x593.jpg);"></figure><h3 class="c--article-project__text-lg">NDG</h3><h4 class="c--article-project__text-md">Notre-Dame-de-Grâce &#8211; Notre-Dame-de-Grâce</h4>
1300 + </a>
1301 +
1302 + </article>
1303 +
1304 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1305 +
1306 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/BG-Project-767x593.jpg);"></figure><h3 class="c--article-project__text-lg">Cavaliers de LaSalle</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; LaSalle</h4>
1307 + </a>
1308 +
1309 + </article>
1310 +
1311 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1312 +
1313 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/BG-Project-767x593.jpg);"></figure><h3 class="c--article-project__text-lg">Cavaliers de LaSalle</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; LaSalle</h4>
1314 + </a>
1315 +
1316 + </article>
1317 +
1318 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1319 +
1320 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0664-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Habitats de l&#8217;héritage</h3><h4 class="c--article-project__text-md"> Saint-Laurent</h4><div class="content-text">
1321 + <h5>32 maisons de ville</h5>
1322 +
1323 + </div>
1324 + </a>
1325 +
1326 + </article>
1327 +
1328 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons">
1329 +
1330 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0669-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Domaine Alismas</h3><h4 class="c--article-project__text-md">Villas Sur Rive &#8211; Laval</h4>
1331 + </a>
1332 +
1333 + </article>
1334 +
1335 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-locatifs">
1336 +
1337 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0578-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Charles-Darwin</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1338 + <h5>160 condos locatifs</h5>
1339 +
1340 + </div>
1341 + </a>
1342 +
1343 + </article>
1344 +
1345 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons">
1346 +
1347 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0637-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Seigneurie du Golf</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1348 + <h5>16 maisons</h5>
1349 +
1350 + </div>
1351 + </a>
1352 +
1353 + </article>
1354 +
1355 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1356 +
1357 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/BG-Project-767x593.jpg);"></figure><h3 class="c--article-project__text-lg">Habitats des Équinoxes</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1358 + <h5>48 maisons superposées</h5>
1359 +
1360 + </div>
1361 + </a>
1362 +
1363 + </article>
1364 +
1365 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1366 +
1367 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/04-bassin-de-la-brunante-parc-marcel-laurin-6.jpg);"></figure><h3 class="c--article-project__text-lg">Île de la Brunante</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1368 + <h5>20 maisons de ville</h5>
1369 +
1370 + </div>
1371 + </a>
1372 +
1373 + </article>
1374 +
1375 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons">
1376 +
1377 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0595-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Les Castels</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1378 + <h5>38 maisons</h5>
1379 +
1380 + </div>
1381 + </a>
1382 +
1383 + </article>
1384 +
1385 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1386 +
1387 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/m18469829-pri01-01-767x513.jpg);"></figure><h3 class="c--article-project__text-lg">Domaine des Outardes</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1388 + <h5>36 maisons de ville</h5>
1389 +
1390 + </div>
1391 + </a>
1392 +
1393 + </article>
1394 +
1395 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1396 +
1397 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0585-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Villas des Harfangs</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1398 + <h5>78 maisons de ville</h5>
1399 +
1400 + </div>
1401 + </a>
1402 +
1403 + </article>
1404 +
1405 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1406 +
1407 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0598-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Square Jean-Rostand</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1408 + <h5>49 maisons de ville</h5>
1409 +
1410 + </div>
1411 + </a>
1412 +
1413 + </article>
1414 +
1415 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1416 +
1417 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0601-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Square Lamartine</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1418 + <h5>49 maisons de ville</h5>
1419 +
1420 + </div>
1421 + </a>
1422 +
1423 + </article>
1424 +
1425 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1426 +
1427 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0632-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Square Magellan</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1428 + <h5>50 maisons de ville</h5>
1429 +
1430 + </div>
1431 + </a>
1432 +
1433 + </article>
1434 +
1435 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1436 +
1437 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0660-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Square Marie-Victorin</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1438 + <h5>41 maisons de ville</h5>
1439 +
1440 + </div>
1441 + </a>
1442 +
1443 + </article>
1444 +
1445 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1446 +
1447 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0628-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Square Vivaldi</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1448 + <h5>49 maisons de ville</h5>
1449 +
1450 + </div>
1451 + </a>
1452 +
1453 + </article>
1454 +
1455 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1456 +
1457 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0622-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Terrasses de l&#8217;Ecu</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1458 + <h5>60 maisons de ville</h5>
1459 +
1460 + </div>
1461 + </a>
1462 +
1463 + </article>
1464 +
1465 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1466 +
1467 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0614-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Terrasses du Golf</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1468 + <h5>38 maisons de ville</h5>
1469 +
1470 + </div>
1471 + </a>
1472 +
1473 + </article>
1474 +
1475 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1476 +
1477 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0624-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Terrasses de Modigliani</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1478 + <h5>13 maisons de ville</h5>
1479 +
1480 + </div>
1481 + </a>
1482 +
1483 + </article>
1484 +
1485 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1486 +
1487 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0642-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Villas des Andes</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1488 + <h5>96 maisons de ville</h5>
1489 +
1490 + </div>
1491 + </a>
1492 +
1493 + </article>
1494 +
1495 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1496 +
1497 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0651-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Habitats des Migrations</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1498 + <h5>28 maisons superposées</h5>
1499 +
1500 + </div>
1501 + </a>
1502 +
1503 + </article>
1504 +
1505 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1506 +
1507 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2010/09/DSCF0643-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Villas des Palmipèdes</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1508 + <h5>9 maisons de ville</h5>
1509 +
1510 + </div>
1511 + </a>
1512 +
1513 + </article>
1514 +
1515 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1516 +
1517 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/10/DSCF0681-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Villas d&#8217;Étienne-Lavoie</h3><h4 class="c--article-project__text-md">Villas Sur Rive &#8211; Laval</h4><div class="content-text">
1518 + <h5>maisons de ville</h5>
1519 +
1520 + </div>
1521 + </a>
1522 +
1523 + </article>
1524 +
1525 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1526 +
1527 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/10/DSCF0678-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Terrasses d&#8217;Étienne-Lavoie</h3><h4 class="c--article-project__text-md">Villas Sur Rive &#8211; Laval</h4><div class="content-text">
1528 + <div class="content-text">
1529 +<h5>MAISONS SUPERPOSÉES</h5>
1530 +</div>
1531 +
1532 + </div>
1533 + </a>
1534 +
1535 + </article>
1536 +
1537 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons">
1538 +
1539 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/10/26100192_1.jpg);"></figure><h3 class="c--article-project__text-lg">Domaine Thalias</h3><h4 class="c--article-project__text-md">Villas Sur Rive &#8211; Laval</h4>
1540 + </a>
1541 +
1542 + </article>
1543 +
1544 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1545 +
1546 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/10/DSCF0647-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Villas des Migrations</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1547 + <h5>maisons de ville</h5>
1548 +
1549 + </div>
1550 + </a>
1551 +
1552 + </article>
1553 +
1554 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1555 +
1556 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/09/BG-Project-767x593.jpg);"></figure><h3 class="c--article-project__text-lg">Loggias sur le parc</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1557 + <h5>30 condos</h5>
1558 +
1559 + </div>
1560 + </a>
1561 +
1562 + </article>
1563 +
1564 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons-de-ville">
1565 +
1566 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2009/10/DSCF0573-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Square Gauguin</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1567 + <h5>49 maisons de ville</h5>
1568 +
1569 + </div>
1570 + </a>
1571 +
1572 + </article>
1573 +
1574 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-condos">
1575 +
1576 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2009/10/m15114430-pri01-01-767x511.jpg);"></figure><h3 class="c--article-project__text-lg">Havre de la Brunante</h3><h4 class="c--article-project__text-md">Bois-Franc &#8211; Saint-Laurent</h4><div class="content-text">
1577 + <h5>48 condos</h5>
1578 +
1579 + </div>
1580 + </a>
1581 +
1582 + </article>
1583 +
1584 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons">
1585 +
1586 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/1999/10/grand-riviere-767x525.jpg);"></figure><h3 class="c--article-project__text-lg">Grande-Rivière Secondary</h3><h4 class="c--article-project__text-md"> Aylmer</h4>
1587 + </a>
1588 +
1589 + </article>
1590 +
1591 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons">
1592 +
1593 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/10/DSCF0698-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">Hôpital du Sacré-Cœur</h3><h4 class="c--article-project__text-md"> </h4><div class="content-text">
1594 + <h5>Bloc Opératoire</h5>
1595 +
1596 + </div>
1597 + </a>
1598 +
1599 + </article>
1600 +
1601 + <article class="col c--article-project c--article-project-2 col-lg-8 col-sm-12 col-24 mix project-category-maisons">
1602 +
1603 + <a target="" class="c--article-project__inner"><h6 class="c--article-project__tag" style="background-color:;">Vendu</h6><figure style="background-image:url(https://sotramont.com/wp-content/uploads/2020/10/DSCF0684-767x432.jpg);"></figure><h3 class="c--article-project__text-lg">80 Belleau</h3><h4 class="c--article-project__text-md"> </h4>
1604 + </a>
1605 +
1606 + </article>
1607 + </div>
1608 +
1609 + </div>
1610 +
1611 + </div>
1612 + </div>
1613 +
1614 +</section>
1615 +
1616 +
1617 +<section id="block--articles-features" class="block block--articles-features" >
1618 +
1619 + <div class="row">
1620 + <div class="col col-md-20 col-22">
1621 + <div class="content-title sm--toggle-class">
1622 + <div class="row">
1623 + <div class="col col-sm-16 col-24">
1624 + <h2 class="text-md">Nos dernières nouvelles</h2>
1625 + </div>
1626 + <div class="col col-sm-8 col-24 hide-responsive col-right">
1627 + <div class="content-btn">
1628 + <div class="c--buttons">
1629 + <a href="https://sotramont.com/nouvelles/" class="btn--icon btn--icon__right">
1630 + Voir tous les articles
1631 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 15"><path d="M25 7.3v-.1c0-.2-.1-.3-.2-.5L18.4.2c-.4-.4-1-.4-1.4 0-.2.2-.3.5-.3.7 0 .3.1.5.3.7l4.7 4.7H1c-.6 0-1 .4-1 1s.4 1 1 1h20.5l-5.1 4.8c-.4.4-.4 1 0 1.4.2.2.5.3.7.3.2 0 .5-.1.7-.3L24.7 8c.1-.1.2-.2.2-.3.1 0 .1-.2.1-.4z"/></svg>
1632 + </a> </div>
1633 + </div>
1634 + </div>
1635 + </div>
1636 + </div>
1637 + </div>
1638 + </div>
1639 +
1640 + <div class="c--article-blog">
1641 + <div class="row">
1642 + <div class="col c--article-blog__col col-md-20 col-22">
1643 + <div class="row">
1644 +
1645 +
1646 + <article class="col col-sm-8 col-24">
1647 + <a href="https://sotramont.com/prix-de-linnovation-en-batiment-acq-2020/">
1648 + <div class="c--article-blog__over-image">
1649 + <div class="sm--parallax" data-sm-parallax-scale="1.3">
1650 + <figure class="c--article-blog__content-image" style="background-image:url(https://sotramont.com/wp-content/uploads/2020/08/Webp.net-compress-image-1-1-768x432.jpg);"></figure>
1651 + </div>
1652 + </div>
1653 + <div class="c--article-blog__content-text">
1654 + <h3 class="c--article-blog__title">Prix de l&#8217;innovation en bâtiment ACQ 2020</h3>
1655 + </div>
1656 + </a>
1657 + </article>
1658 +
1659 +
1660 + <article class="col col-sm-8 col-24">
1661 + <a href="https://sotramont.com/liveo-pointe-claire-coffrage-termine/">
1662 + <div class="c--article-blog__over-image">
1663 + <div class="sm--parallax" data-sm-parallax-scale="1.3">
1664 + <figure class="c--article-blog__content-image" style="background-image:url(https://sotramont.com/wp-content/uploads/2021/03/IMG_0235-768x576.jpg);"></figure>
1665 + </div>
1666 + </div>
1667 + <div class="c--article-blog__content-text">
1668 + <h3 class="c--article-blog__title">Liveo Pointe-Claire: Coffrage terminé</h3>
1669 + </div>
1670 + </a>
1671 + </article>
1672 +
1673 +
1674 + <article class="col col-sm-8 col-24">
1675 + <a href="https://sotramont.com/liveo-pointe-claire-installation-de-briques/">
1676 + <div class="c--article-blog__over-image">
1677 + <div class="sm--parallax" data-sm-parallax-scale="1.3">
1678 + <figure class="c--article-blog__content-image" style="background-image:url(https://sotramont.com/wp-content/uploads/2020/11/123295704_3331666520278194_160559332250378854_o-768x373.jpg);"></figure>
1679 + </div>
1680 + </div>
1681 + <div class="c--article-blog__content-text">
1682 + <h3 class="c--article-blog__title">Liveo Pointe-Claire: Installation de briques</h3>
1683 + </div>
1684 + </a>
1685 + </article>
1686 +
1687 +
1688 +
1689 +
1690 + </div>
1691 +
1692 + </div>
1693 + </div>
1694 + </div>
1695 +
1696 +
1697 + <div class="content-btn-bottom show-responsive">
1698 + <div class="row">
1699 + <div class="col col-md-20 col-22">
1700 + <div class="row">
1701 + <div class="col col-24">
1702 + <div class="content-btn">
1703 + <div class="c--buttons">
1704 + <a href="https://sotramont.com/nouvelles/" class="btn--icon btn--icon__right">
1705 + Voir tous les articles
1706 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 15"><path d="M25 7.3v-.1c0-.2-.1-.3-.2-.5L18.4.2c-.4-.4-1-.4-1.4 0-.2.2-.3.5-.3.7 0 .3.1.5.3.7l4.7 4.7H1c-.6 0-1 .4-1 1s.4 1 1 1h20.5l-5.1 4.8c-.4.4-.4 1 0 1.4.2.2.5.3.7.3.2 0 .5-.1.7-.3L24.7 8c.1-.1.2-.2.2-.3.1 0 .1-.2.1-.4z"/></svg>
1707 + </a> </div>
1708 + </div>
1709 + </div>
1710 + </div>
1711 + </div>
1712 + </div>
1713 + </div>
1714 +
1715 +</section>
1716 +
1717 +
1718 +
1719 +<footer class="block block--footer">
1720 +
1721 + <div class="big-row row">
1722 + <div class="col col-lg-20 col-md-22 col-20">
1723 +
1724 + <!-- Row 1 -->
1725 + <div class="row row-1">
1726 + <div class="col col-text-1 col-md-9 col-24">
1727 + <div class="content-logo">
1728 + <img class='c--image' src='https://sotramont.com/wp-content/uploads/2020/08/logo-sotramont.png'> </div>
1729 +
1730 +
1731 +
1732 + <p>Basé à Montréal, un développeur immobilier, constructeur et promoteur de maisons neuves, condos et locatifs depuis 1968.</p>
1733 +
1734 + </div>
1735 +
1736 + <!-- - - - - - Loop Category Project && Project associated with the category - - - - - -->
1737 + <div class="col col-md-5 col-sm-8 offset-sm-0 col-18 offset-3 content-list-project">
1738 + <h3 class="text-lg sm--toggle-class">Condos</h3>
1739 + <ul>
1740 + <li>
1741 + <a href="https://sotramont.com/curtiss-condos/" target="">
1742 + Curtiss Condos </a>
1743 + </li>
1744 + </ul>
1745 + </div>
1746 + <div class="col col-md-5 col-sm-8 offset-sm-0 col-18 offset-3 content-list-project">
1747 + <h3 class="text-lg sm--toggle-class">Locatifs</h3>
1748 + <ul>
1749 + <li>
1750 + <a href="https://sotramont.com/liveo-bois-franc/" target="">
1751 + Liveo Bois-Franc </a>
1752 + </li>
1753 + <li>
1754 + <a href="https://sotramont.com/liveo-mascouche/" target="">
1755 + Liveo Mascouche </a>
1756 + </li>
1757 + <li>
1758 + <a href="https://sotramont.com/liveo-pointe-claire/" target="">
1759 + Liveo Pointe-Claire </a>
1760 + </li>
1761 + <li>
1762 + <a href="https://sotramont.com/liveo-repentigny/" target="">
1763 + Liveo Repentigny </a>
1764 + </li>
1765 + </ul>
1766 + </div>
1767 + <!-- - - - - - END LOOP - - - - - -->
1768 +
1769 + </div>
1770 +
1771 + <!-- Row 2 -->
1772 + <div class="row row-2 sm--toggle-class">
1773 + <div class="col col-md-12 col-24">
1774 + <h4 class="text-sm">Bureau Chef</h4>
1775 +
1776 + <p>55, rue de Louvain Ouest, Suite 350<br />
1777 +Montréal, QC, H2N 1A4, Canada</p>
1778 + </div>
1779 + <div class="col col-md-12 col-24 col-right">
1780 + <nav class="footer-navigation">
1781 + <ul id="footer-nav" class="menu"><li id="menu-item-3943" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3918 current_page_item menu-item-3943"><a href="https://sotramont.com/projets-maison-ville-condo-vendre-louer/" aria-current="page">Portfolio</a></li>
1782 +<li id="menu-item-3944" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3944"><a href="https://sotramont.com/nouvelles/">Nouvelles</a></li>
1783 +<li id="menu-item-3945" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3945"><a href="https://sotramont.com/?page_id=3906">Carrières</a></li>
1784 +<li id="menu-item-3946" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3946"><a href="https://sotramont.com/nous-contacter/">Contact</a></li>
1785 +</ul> </nav>
1786 + </div>
1787 + </div>
1788 +
1789 + <!-- Row 3 -->
1790 + <div class="row row-3">
1791 + <div class="col col-md-18 col-24">
1792 + <p>&copy;2026 Sotramont. Tous droits réservés.</p>
1793 + <nav class="second-nav">
1794 + </nav>
1795 + </div>
1796 + <div class="col col-md-6 col-24 col-right">
1797 + <ul class='list--social js--hover-parent'><li><a href="https://www.instagram.com/sotramont/" target="_blank">
1798 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M352 0H160C71.648 0 0 71.648 0 160v192c0 88.352 71.648 160 160 160h192c88.352 0 160-71.648 160-160V160C512 71.648 440.352 0 352 0zm112 352c0 61.76-50.24 112-112 112H160c-61.76 0-112-50.24-112-112V160C48 98.24 98.24 48 160 48h192c61.76 0 112 50.24 112 112v192z"/><path d="M256 128c-70.688 0-128 57.312-128 128s57.312 128 128 128 128-57.312 128-128-57.312-128-128-128zm0 208c-44.096 0-80-35.904-80-80 0-44.128 35.904-80 80-80s80 35.872 80 80c0 44.096-35.904 80-80 80z"/><circle cx="393.6" cy="118.4" r="17.056"/></svg>
1799 + </a></li><li><a href="https://www.facebook.com/Sotramont/" target="_blank">
1800 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 310 310"><path d="M81.703 165.106h33.981V305a5 5 0 005 5H178.3a5 5 0 005-5V165.765h39.064a5 5 0 004.967-4.429l5.933-51.502a5 5 0 00-4.966-5.572h-44.996V71.978c0-9.732 5.24-14.667 15.576-14.667h29.42a5 5 0 005-5V5.037a5 5 0 00-5-5h-40.545A39.746 39.746 0 00185.896 0c-7.035 0-31.488 1.381-50.804 19.151-21.402 19.692-18.427 43.27-17.716 47.358v37.752H81.703a5 5 0 00-5 5v50.844a5 5 0 005 5.001z"/></svg>
1801 + </a></li><li><a href="https://www.linkedin.com/company/sotramont/" target="_blank">
1802 + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 295.8 297.8"><path d="M80.6 272.1c0 4.9-4 8.9-8.9 8.9h-38c-4.9 0-8.9-4-8.9-8.9V112.9c0-4.9 4-8.9 8.9-8.9h38c4.9 0 8.9 4 8.9 8.9v159.2zM52.7 88.9c-19.9 0-36.1-16.2-36.1-36.1s16.2-36.1 36.1-36.1 36.1 16.2 36.1 36.1-16.1 36.1-36.1 36.1zm226.5 184c0 4.5-3.7 8.2-8.2 8.2h-40.8c-4.5 0-8.2-3.7-8.2-8.2v-74.7c0-11.1 3.3-48.8-29.1-48.8-25.1 0-30.2 25.8-31.2 37.4V273c0 4.5-3.7 8.2-8.2 8.2H114c-4.5 0-8.2-3.7-8.2-8.2V112.1c0-4.5 3.7-8.2 8.2-8.2h39.4c4.5 0 8.2 3.7 8.2 8.2V126c9.3-14 23.2-24.8 52.6-24.8 65.3 0 64.9 61 64.9 94.5l.1 77.2z"/></svg>
1803 + </a></li></ul> </div>
1804 + </div>
1805 +
1806 + </div>
1807 + </div>
1808 +
1809 +</footer>
1810 +
1811 +
1812 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=5.7.7' id='swv-js'></script>
1813 +<script type='text/javascript' id='contact-form-7-js-extra'>
1814 +/* <![CDATA[ */
1815 +var wpcf7 = {"api":{"root":"https:\/\/sotramont.com\/wp-json\/","namespace":"contact-form-7\/v1"}};
1816 +/* ]]> */
1817 +</script>
1818 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=5.7.7' id='contact-form-7-js'></script>
1819 +<script type='text/javascript' id='heateor_sss_sharing_js-js-before'>
1820 +function heateorSssLoadEvent(e) {var t=window.onload;if (typeof window.onload!="function") {window.onload=e}else{window.onload=function() {t();e()}}}; var heateorSssSharingAjaxUrl = 'https://sotramont.com/wp-admin/admin-ajax.php', heateorSssCloseIconPath = 'https://sotramont.com/wp-content/plugins/sassy-social-share/public/../images/close.png', heateorSssPluginIconPath = 'https://sotramont.com/wp-content/plugins/sassy-social-share/public/../images/logo.png', heateorSssHorizontalSharingCountEnable = 0, heateorSssVerticalSharingCountEnable = 0, heateorSssSharingOffset = -10; var heateorSssMobileStickySharingEnabled = 0;var heateorSssCopyLinkMessage = "Link copied.";var heateorSssUrlCountFetched = [], heateorSssSharesText = 'Shares', heateorSssShareText = 'Share';function heateorSssPopup(e) {window.open(e,"popUpWindow","height=400,width=600,left=400,top=100,resizable,scrollbars,toolbar=0,personalbar=0,menubar=no,location=no,directories=no,status")}
1821 +</script>
1822 +<script type='text/javascript' src='https://sotramont.com/wp-content/plugins/sassy-social-share/public/js/sassy-social-share-public.js?ver=3.3.52' id='heateor_sss_sharing_js-js'></script>
1823 +
1824 +</body>
1825 +</html>
added tests/fixtures/sotramont/index.json +60 −0
@@ -0,0 +1,60 @@
1 +{
2 + "f6f966cd7894315dd32c": {
3 + "method": "GET",
4 + "url": "https://sotramont.com/projets-maison-ville-condo-vendre-louer/?category=locatifs",
5 + "status": 200,
6 + "content_type": "text/html; charset=UTF-8",
7 + "file": "f6f966cd7894315dd32c.html"
8 + },
9 + "6e771faf708813be3a2f": {
10 + "method": "GET",
11 + "url": "https://sotramont.com/liveo-pointe-claire-3/",
12 + "status": 200,
13 + "content_type": "text/html; charset=UTF-8",
14 + "file": "6e771faf708813be3a2f.html"
15 + },
16 + "08ff8b1a73c0fd3c6e48": {
17 + "method": "GET",
18 + "url": "https://sotramont.com/curtiss-charlie-condos-vendre-saint-laurent/",
19 + "status": 200,
20 + "content_type": "text/html; charset=UTF-8",
21 + "file": "08ff8b1a73c0fd3c6e48.html"
22 + },
23 + "0c3fa463a2a46f9027d0": {
24 + "method": "GET",
25 + "url": "https://sotramont.com/liveo-pointe-claire-2-condos-locatifs-louer-pointe-claire/",
26 + "status": 200,
27 + "content_type": "text/html; charset=UTF-8",
28 + "file": "0c3fa463a2a46f9027d0.html"
29 + },
30 + "d827f038d31c9cd2248b": {
31 + "method": "GET",
32 + "url": "https://sotramont.com/liveo-pointe-claire-1-condos-locatifs-louer-pointe-claire/",
33 + "status": 200,
34 + "content_type": "text/html; charset=UTF-8",
35 + "file": "d827f038d31c9cd2248b.html"
36 + },
37 + "8a18d29660125e463de7": {
38 + "method": "GET",
39 + "url": "https://sotramont.com/liveo-mascouche-2-condos-locatifs-louer-mascouche/",
40 + "status": 301,
41 + "content_type": "text/html; charset=iso-8859-1",
42 + "file": "8a18d29660125e463de7.html",
43 + "location": "https://www.liveomascouche.com"
44 + },
45 + "7185031ae49efca8b81e": {
46 + "method": "GET",
47 + "url": "https://www.liveomascouche.com",
48 + "status": 200,
49 + "content_type": "text/html; charset=utf-8",
50 + "file": "7185031ae49efca8b81e.html"
51 + },
52 + "52687ec138763507ab1f": {
53 + "method": "GET",
54 + "url": "https://sotramont.com/liveo-mascouche-1-condos-locatifs-louer-mascouche/",
55 + "status": 301,
56 + "content_type": "text/html; charset=iso-8859-1",
57 + "file": "52687ec138763507ab1f.html",
58 + "location": "https://www.liveomascouche.com"
59 + }
60 +}
\ No newline at end of file
61