@font-face {
  font-family: Monumentextended;
  src: url('../fonts/MonumentExtended-Ultralight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Monumentextended;
  src: url('../fonts/MonumentExtended-Ultrabold.otf') format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Monumentextended;
  src: url('../fonts/MonumentExtended-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Monumentextended;
  src: url('../fonts/MonumentExtended-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --salmon-2: #d57d6f;
  --gainsboro: #e2e0d9;
  --white: white;
  --salmon: #d57d6f;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #fff;
  background-color: #000;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

h1 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 26px;
  font-family: DM Sans;
  font-size: 54px;
  font-weight: 500;
  line-height: 54px;
}

h2 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 13px;
  font-family: DM Sans;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

h3 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 13px;
  font-family: DM Sans;
  font-size: 36px;
  font-weight: 500;
  line-height: 39px;
}

h4 {
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 13px;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
}

h5 {
  margin-top: 0;
  margin-bottom: 13px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

h6 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

p {
  margin-bottom: 26px;
}

a {
  color: #111112;
  font-weight: 500;
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  list-style-type: none;
}

blockquote {
  letter-spacing: -.02em;
  border-top: 1px solid #111112;
  border-left: 5px #e2e2e2;
  margin-top: 52px;
  margin-bottom: 52px;
  padding: 26px 0 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 39px;
}

figure {
  margin-top: 26px;
  margin-bottom: 26px;
}

figcaption {
  text-align: center;
  margin-top: 6px;
  font-size: 14px;
  line-height: 22px;
}

.section {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  display: block;
  position: relative;
  overflow: hidden;
}

.section.blog-title-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.section.project-body-section {
  padding-top: 156px;
  padding-bottom: 156px;
}

.section.project-title-section {
  padding-bottom: 76px;
}

.section.pink {
  background-color: var(--salmon-2);
  color: #000;
}

.section.pink.img {
  background-image: url('../images/Square-BG.png');
  background-position: 50% 0;
  background-repeat: repeat;
  background-size: auto;
}

.section.light {
  background-color: var(--gainsboro);
  background-image: url('../images/Square-BG.png');
  background-position: 0 0;
  background-size: auto;
}

.section.no-padding-bottom {
  padding-bottom: 0;
}

.section.bottom {
  overflow: hidden;
}

.section.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section.no-padding-top {
  padding-top: 0;
}

.section.headerteam {
  background-color: var(--gainsboro);
  color: var(--white);
  background-image: linear-gradient(#0000001a, #0000001a), url('../images/DashboardHeader.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 150px;
  padding-bottom: 150px;
}

.section.light-phase1 {
  background-color: var(--gainsboro);
  background-image: url('../images/Square-BG.png');
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.container {
  z-index: 1;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 0;
  position: relative;
}

.container.justify-content-center {
  z-index: 1;
  justify-content: center;
  display: flex;
  position: relative;
}

.container.blog-title-container {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container.careers-container {
  justify-content: space-between;
  display: flex;
}

.container.project-body-container {
  max-width: 910px;
}

.container.left {
  margin-left: 0;
}

.container.right {
  margin-right: 0;
}

.text-small {
  font-size: 14px;
  line-height: 22px;
}

.row {
  direction: ltr;
  flex-wrap: wrap;
  width: 100%;
  display: flex;
}

.text-muted {
  color: #62636b;
}

.button {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  background-color: #111112;
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  padding: 14px 25px;
  font-family: Monumentextended, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
  transition: color .2s, background-color .2s;
  display: flex;
}

.button:hover {
  background-color: var(--salmon-2);
  color: #111112;
}

.button.button-large {
  min-width: 241px;
  height: 63px;
}

.button.button-large.form-button {
  margin-top: 26px;
}

.button.button-outline {
  color: #111112;
  background-color: #0000;
}

.button.button-outline:hover {
  color: var(--white);
  background-color: #111112;
}

.button.icon-button {
  justify-content: space-between;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.button.icon-button:hover {
  border-color: #111112;
}

.button.button-circle-small {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  min-width: 0;
  height: 28px;
  padding: 4px;
  display: flex;
}

.button.bg-white {
  border-color: var(--white);
  color: #111112;
}

.button.bg-white:hover {
  border-color: var(--white);
  color: #111112;
  background-color: #e4e0dd;
}

.button.navbar-centered-button {
  order: 3;
}

.button.pink {
  border-color: var(--salmon-2);
  background-color: var(--salmon);
  color: #000;
  text-transform: none;
  justify-content: center;
  width: 300px;
  max-width: 300px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 5px;
  font-size: 12px;
}

.button.pink:hover {
  border-color: var(--salmon);
  color: #fff;
  background-color: #000;
}

.button.pink-phase1 {
  border-color: var(--salmon-2);
  background-color: var(--salmon);
  color: #000;
  text-transform: none;
  justify-content: center;
  width: 300px;
  max-width: 300px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 5px;
  font-size: 12px;
}

.button.pink-phase1:hover {
  border-color: var(--salmon);
  color: #fff;
  background-color: #000;
}

.text-white {
  color: var(--white);
}

.button-icon {
  flex: none;
}

.bg-gray-1 {
  color: var(--white);
  background-color: #111112;
}

.bg-white {
  background-color: var(--white);
}

.bg-gray-4 {
  background-color: #f4f1ee;
}

.card {
  background-color: var(--white);
  color: #111112;
  flex-direction: column;
  display: flex;
}

.card.blog-card {
  flex: none;
}

.card-body {
  flex-direction: column;
  flex: 0 auto;
  align-items: stretch;
  padding: 39px;
  display: flex;
}

.card-body.blog-card-body {
  align-items: flex-start;
}

.bg-primary-2 {
  color: var(--white);
  background-color: #052c25;
}

.bg-primary-3 {
  background-color: #d2c0a6;
}

.space-bottom {
  margin-bottom: 26px;
}

.large-heading {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 26px;
  font-family: DM Sans;
  font-size: 54px;
  font-weight: 500;
  line-height: 54px;
}

.large-heading.case-study-tile-heading {
  margin-bottom: 13px;
}

.content-width-large {
  direction: ltr;
  width: 100%;
  max-width: 598px;
}

.content-width-large.align-center {
  margin-left: auto;
  margin-right: auto;
}

.subheading {
  margin-bottom: 26px;
}

.link-underline {
  background-color: #1111121a;
  height: 2px;
  position: relative;
}

.link-underline-animation {
  background-color: #111112;
  width: 0%;
  height: 2px;
}

.content-width-medium {
  width: 100%;
  max-width: 494px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.content-width-medium.section-title {
  margin-left: 0;
}

.border-bottom {
  border-bottom: 1px solid #000;
  border-radius: 1px;
}

.display-1 {
  letter-spacing: -.03em;
  margin-bottom: 26px;
  font-family: DM Sans;
  font-size: 88px;
  font-weight: 500;
  line-height: 72px;
}

.display-1.no-space-bottom {
  margin-bottom: 0;
}

.display-1.project-heading {
  max-width: 494px;
}

.content-width-extra-large {
  width: 806px;
}

.centered-marquee {
  position: absolute;
}

.centered-marquee.display-2.text-white {
  z-index: 2;
  color: var(--white);
  white-space: nowrap;
}

.align-self-center {
  align-self: center;
}

.content-width-small {
  width: 100%;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Monumentextended, sans-serif;
  font-size: 24px;
  font-weight: 200;
  line-height: 38px;
}

.section-title.uppercase {
  text-transform: uppercase;
  margin-left: 0;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 24px;
  font-weight: 200;
  line-height: 28px;
}

.section-title.pink-text {
  color: var(--salmon-2);
}

.section-title.black {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 36px;
}

.text-center {
  text-align: center;
}

.no-bottom-space {
  margin-bottom: 0;
  padding-bottom: 0;
}

.subtitle {
  margin-bottom: 26px;
}

.navbar-container {
  background-color: var(--white);
}

.navbar-container.border-bottom {
  border-bottom-color: #1111121a;
}

.navbar-container.border-bottom.sticky-top {
  z-index: 99;
  position: sticky;
  top: 0;
}

.navbar-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 13px;
  display: grid;
}

.navbar {
  background-color: #0000;
}

.nav-link {
  padding: 0 13px;
}

.navbar-centered-menu {
  order: 2;
}

.brand.navbar-2-brand {
  margin-right: 26px;
}

.menu-button {
  margin-left: 0;
}

.nav-dropdown-toggle {
  align-items: center;
  padding: 0;
  display: flex;
}

.nav-menu-wrapper {
  align-items: center;
  display: flex;
}

.dropdown-icon {
  margin-left: 4px;
}

.footer {
  padding-top: 104px;
  padding-bottom: 52px;
}

.footer-1-top-row {
  justify-content: space-between;
  margin-bottom: 104px;
  display: flex;
}

.medium-heading {
  letter-spacing: -.03em;
  margin-bottom: 13px;
  font-size: 40px;
  line-height: 48px;
  display: block;
}

.medium-heading.text-link-white {
  opacity: 1;
  color: var(--white);
  transition: opacity .2s;
}

.medium-heading.text-link-white:hover {
  opacity: .5;
}

.vertical-link-menu {
  flex-direction: column;
  margin-left: 26px;
  margin-right: 26px;
  display: flex;
}

.vertical-link-item {
  opacity: 1;
  margin-bottom: 13px;
  transition: opacity .2s;
}

.vertical-link-item:hover {
  opacity: .5;
}

.footer-menus-wrapper {
  margin-left: 76px;
  display: flex;
}

.footer-subscribe {
  grid-column-gap: 16px;
  grid-row-gap: 13px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 26px;
  display: grid;
}

.footer-1-bottom-row {
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.social-list {
  margin-left: -6px;
  margin-right: -6px;
  display: flex;
}

.button-round {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 39px;
  height: 39px;
  display: flex;
}

.button-round.social-button {
  background-color: #111112;
  margin-left: 6px;
  margin-right: 6px;
  transition: transform .2s;
}

.button-round.social-button:hover {
  transform: scale(1.2);
}

.button-round.social-button.bg-white {
  background-color: var(--white);
}

.button-round-icon {
  max-height: 18px;
}

.footer-1-menus {
  flex: 1;
  display: flex;
}

.footer-fine-print {
  display: flex;
}

.form-input {
  background-color: #0000;
  border: 1px solid #e4e0dd;
  height: 52px;
  margin-bottom: 0;
  padding: 12px 12px 12px 20px;
  font-size: 18px;
  line-height: 26px;
}

.form-input:focus {
  border-color: #111112;
}

.form-input.form-input-large {
  height: 63px;
}

.form-input.form-input-large.form-input-dark {
  border-color: #111112;
}

.form-input.form-input-large.form-input-dark::placeholder {
  color: #111112;
}

.form-input.form-input-large.space-bottom {
  margin-bottom: 26px;
}

.form-input.form-input-white {
  border-color: var(--white);
  color: var(--white);
}

.form-input.form-input-white::placeholder {
  color: var(--white);
}

.form-input.textarea-input {
  height: auto;
  min-height: 150px;
}

.form-input.space-bottom {
  margin-bottom: 13px;
}

.nav-link-text {
  font-weight: 500;
  transition: opacity .2s;
}

.nav-link-text:hover {
  opacity: .5;
}

.button-circle {
  background-color: #111112;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  transition: transform .2s;
  display: flex;
}

.button-circle:hover {
  transform: scale(1.1);
}

.button-circle.button-circle-small {
  width: 26px;
  height: 26px;
}

.button-circle.button-circle-small.bg-white {
  background-color: var(--white);
}

.button-icon-small {
  width: 16px;
  height: 16px;
}

.announcement-row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.announcement-dismiss {
  margin-left: 13px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.form-disclaimer {
  margin-top: 13px;
}

.horizontal-rule {
  border-top: 1px solid #111112;
  margin-top: 26px;
  margin-bottom: 26px;
}

.form-grid-halves {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 26px;
  display: grid;
}

.form-row {
  align-items: center;
  display: flex;
}

.footer-subscribe-wrapper {
  flex: 1;
}

.accordion-title-panel {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.form-success {
  background-color: #24da78;
}

.form-success.footer-form-message {
  margin-top: 13px;
}

.form-error {
  color: var(--white);
  text-align: center;
  background-color: #da2424;
  padding: 19px;
}

.blog-grid {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card-foot.blog-card-foot {
  justify-content: flex-start;
  padding-bottom: 26px;
  padding-left: 39px;
  padding-right: 39px;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.badge {
  justify-content: center;
  align-items: center;
  height: 26px;
  padding-left: 13px;
  padding-right: 13px;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.badge.blog-badge {
  color: var(--white);
  background-color: #111112;
  margin-bottom: 13px;
  transition: transform .2s;
}

.badge.blog-badge:hover {
  transform: scale(1.1);
}

.badge.post-badge {
  color: var(--white);
  background-color: #111112;
  margin-right: 26px;
}

.blog-image-link {
  background-color: #111112;
  display: block;
  overflow: hidden;
}

.blog-grid-item {
  flex-direction: column;
  display: flex;
}

.post-main-image {
  margin-bottom: 52px;
}

.post-meta-wrapper {
  align-items: center;
  margin-bottom: 26px;
  display: flex;
}

.post-meta-text {
  display: flex;
}

.post-author-wrapper {
  border-top: 1px solid #111112;
  padding-top: 26px;
}

.post-author-details {
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.avatar {
  border-radius: 50%;
  width: 52px;
  height: 52px;
}

.avatar.author-avatar {
  width: 156px;
  height: 156px;
  margin-right: 39px;
}

.author-avatar-link {
  margin-right: 13px;
}

.article li {
  border-bottom: 1px solid #111112;
  margin-bottom: 13px;
  padding-bottom: 13px;
  list-style-type: disc;
}

.article ul {
  max-width: 597px;
  margin: 39px auto;
  padding-left: 26px;
  list-style-type: disc;
}

.article figure {
  margin-top: 76px;
  margin-bottom: 76px;
}

.article.content-width-large.align-self-center {
  margin-left: auto;
  margin-right: auto;
}

.article.project-article p, .article.project-article h4, .article.project-article blockquote {
  max-width: 597px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state {
  text-align: center;
  background-color: #e4e0dd;
  padding: 26px;
}

.blog-card-image {
  width: 100%;
}

.careers-title {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 79px;
  display: flex;
}

.career-heading {
  margin-bottom: 13px;
}

.career-meta {
  margin-bottom: 39px;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 391px;
  display: flex;
}

.map {
  height: 100%;
  min-height: 400px;
}

.case-study-large-link {
  z-index: 2;
  backface-visibility: hidden;
  perspective: 1000px;
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  transition: transform .2s;
  display: flex;
  position: relative;
}

.project-details-wrapper {
  grid-column-gap: 26px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 76px;
  display: grid;
}

.project-details-item {
  border-top: 1px solid #111112;
  padding-top: 26px;
}

.project-intro-text {
  text-align: center;
  letter-spacing: -.01em;
  margin-bottom: 65px;
  font-size: 28px;
  font-weight: 500;
  line-height: 39px;
}

.case-study-bg {
  opacity: .05;
  filter: saturate(0%);
  height: 100vh;
  position: absolute;
  inset: 0% auto auto 0%;
}

.projects-grid-vertical {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.case-study-tile-title {
  color: var(--white);
  max-width: 390px;
  margin-top: 52px;
  margin-left: 52px;
  position: absolute;
}

.case-study-tile {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.case-study-tile-image {
  transition: transform 10s;
}

.case-study-tile-image:hover {
  transform: translate(-72px)scale(1.2);
}

.case-study-tile-image-wrapper {
  overflow: hidden;
}

.dropdown-content {
  background-color: var(--white);
  border: 1px solid #1111121a;
  min-width: 150px;
  padding: 13px 26px;
}

.dropdown-content.w--open {
  opacity: 1;
}

.dropdown-link {
  opacity: .4;
  padding: 6px 0;
  transition: transform .2s, opacity .2s;
}

.dropdown-link:hover {
  opacity: 1;
  transform: translate(6px);
}

.dropdown-link.w--current {
  opacity: 1;
  color: #111112;
}

.dropdown-grid {
  grid-column-gap: 26px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.dropdown-column {
  min-width: 150px;
}

.dropdown-list {
  background-color: #0000;
}

.nav-menu {
  align-items: center;
  display: flex;
}

.sticky-top {
  position: sticky;
  top: 26px;
}

.split-section-scrollable-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 720px;
  display: flex;
  overflow: hidden;
}

.author-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.author-heading {
  margin-bottom: 13px;
}

.back-to-top-button-container {
  z-index: 99;
  width: 52px;
  height: 52px;
  position: fixed;
  bottom: 26px;
  right: 26px;
}

.demo-link {
  background-color: #111112;
  border: 1px solid #e4e0dd;
  justify-content: center;
  align-items: center;
  max-width: 598px;
  display: flex;
  position: relative;
}

.navbar-2-content {
  justify-content: space-between;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 13px;
  display: flex;
}

.navbar-2-menu, .navbar-controls {
  display: flex;
}

.project-main-image {
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.tagline {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.tagline.tagline-promo-40 {
  color: #594a42;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  display: none;
}

.tagline.white-hero-tagline {
  color: #fff;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
}

.sectionspace {
  height: 50px;
}

.navlinkdashboard {
  color: #fff;
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  transition: all .5s;
}

.navlinkdashboard:hover {
  color: #e2dad6;
  background-color: #d57d6f;
}

.navlinkdashboard.w--current {
  color: #e2dad6;
}

.hero-image-div {
  background-image: url('../images/building2.png');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 75vh;
  position: relative;
}

.hero-image-div.inner {
  background-image: url('../images/BuildingHomePage.jpg');
  background-position: 0;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  height: 70vh;
  padding-top: 40px;
  display: flex;
}

.hero-image-div.sizesmall {
  background-image: url('../images/DashboardHeader.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 60vh;
  margin-top: 0;
  padding-top: 0;
  display: flex;
}

.dropdownlist.w--open {
  z-index: 10000;
  float: none;
  color: #fff;
  background-color: #594a42;
  margin-top: 12px;
  margin-left: -20px;
  box-shadow: 0 0 6px #0b112440;
}

.vipbrand {
  background-image: url('../images/615b4a0fe6b9dae72d9cda58_Le-Moden_Logo_300dpi_Blanc-p-500.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 100px;
}

.h3-color {
  color: #000;
  text-align: center;
  text-transform: none;
  padding-left: 20px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.hero-text {
  z-index: 1000;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  margin-top: 5%;
  margin-left: 5%;
  font-size: 70px;
  font-weight: 400;
  line-height: 82px;
  position: absolute;
}

.hero-text.dashboard {
  justify-content: center;
  align-items: center;
  width: 50%;
  margin: 0% 0% 0;
  font-size: 50px;
  line-height: 62px;
  display: flex;
}

.basic-column {
  padding-left: 5px;
  padding-right: 5px;
}

.card-2 {
  background-image: linear-gradient(#000, #000);
  border-radius: 8px;
  height: 340px;
  padding: 30px;
  transition: box-shadow .4s;
  position: relative;
}

.card-2.brochures {
  background-image: linear-gradient(135deg, #e2dad6 18%, #0000), url('../images/BrochureModen.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  display: block;
}

.card-2.renderings {
  background-image: url('../images/Renders.jpg'), linear-gradient(315deg, #0000, #594a42 81%);
  background-position: 50% 100%, 0 0;
  background-size: cover, auto;
  border-radius: 0;
  flex-direction: column;
  display: block;
}

.card-2.branding {
  background-image: linear-gradient(315deg, #0000, #594a42 81%), url('../images/Solstice-Logo-Dark.svg'), none;
  background-position: 0 0, 50%, 0 100%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, cover, auto;
  border-radius: 0;
  flex-direction: column;
  display: none;
}

.card-2.card5-content {
  background-image: linear-gradient(135deg, #e2dad6 14%, #0000 78%), url('../images/Renderings.jpg');
  background-position: 0 0, 0 100%;
  background-size: auto, cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  display: block;
}

.card-2.montreal {
  background-image: linear-gradient(135deg, #e2dad6 8%, #0000 80%), url('../images/Market.jpg');
  background-position: 0 0, 0 100%;
  background-size: auto, cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  display: block;
}

.card-2.plans {
  background-image: linear-gradient(135deg, #e2dad6 18%, #0000), url('../images/Oplan.png');
  background-position: 0 0, 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  display: block;
}

.card-2.prices {
  background-image: url('../images/Front.jpg'), linear-gradient(135deg, #e2dad6 18%, #0000);
  background-position: 25% 100%, 0 0;
  background-size: cover, auto;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  display: block;
}

.card-2.map {
  background-image: linear-gradient(135deg, #e2dad6 18%, #0000), url('../images/18-546_QMD_Solstice_maq_brochure_carte_2.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, 1000px 700px;
  background-attachment: scroll, scroll;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  display: block;
}

.card-2.step1 {
  background-image: linear-gradient(315deg, #0000, #d57d6f 81%), url('../images/Video.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 0;
  flex-direction: column;
  display: block;
}

.tag-wrapper {
  margin-top: 35px;
  margin-bottom: 35px;
  padding-left: 5px;
  padding-right: 5px;
}

.sectiondocuments {
  margin-top: 50px;
  padding-left: 5%;
  padding-right: 5%;
}

.bold-text-11 {
  display: none;
}

.section-2 {
  margin-top: 0;
  overflow: hidden;
}

.card-headline {
  color: #fff;
  margin-top: 10px;
}

.card-headline.dark-card-headline {
  color: #000;
  text-transform: uppercase;
  font-family: Monumentextended, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}

.card-headline.dark-card-headline.white {
  color: #fff;
  font-family: Monumentextended, sans-serif;
}

.text-block-2 {
  color: #000;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  padding-right: 20px;
  font-family: Monumentextended, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 44px;
  display: flex;
}

.navmenu {
  margin-top: 10px;
}

.light-blue-button {
  color: #fff;
  text-transform: uppercase;
  background-color: #0000;
  margin-top: 15px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 16px;
  font-weight: 300;
  transition: all .5s;
  box-shadow: inset 0 0 0 1px #9cdaeb;
}

.light-blue-button:hover {
  opacity: 1;
  box-shadow: inset 0 0 0 2px #9cdaeb;
}

.light-blue-button.big {
  letter-spacing: .6px;
  margin-top: 30px;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 400;
}

.light-blue-button.big.dropdocuments {
  z-index: 900;
  background-color: var(--salmon);
  border-style: none;
  width: 290px;
  margin-left: 0;
  padding-left: 20px;
  padding-right: 10px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  position: absolute;
  bottom: 40px;
  left: 30px;
  right: 0;
  box-shadow: inset 0 0 0 1px #e2dad6;
}

.droplink {
  color: #fff;
  background-color: #000;
  border-bottom: 1px #ffffff26;
  padding-top: 12px;
  padding-bottom: 12px;
  transition: all .5s;
}

.droplink:hover {
  background-color: #594a42;
  box-shadow: inset 0 -2px #fff;
}

.navbardashboard {
  background-color: #000;
  padding: 15px 5%;
}

.dropdown-2 {
  color: #fff;
  padding: 0 40px 0 0;
}

.container-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.image-3 {
  display: none;
}

.footer-col {
  grid-column-gap: 60px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.footer-logo-v2 {
  max-width: 150px;
}

.hero-section {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  height: 100vh;
  padding-top: 140px;
  padding-bottom: 140px;
}

.hero-section._1 {
  color: #000;
  background-image: url('../images/Hero-1.png');
  padding-top: 80px;
}

.hero-section._2 {
  color: #000;
  background-image: url('../images/BuildingHomePage.jpg');
  background-position: 50%;
  background-size: cover;
  padding-top: 80px;
}

.hero-section._3 {
  background-image: linear-gradient(#d57d6f4d, #00000080), url('../images/DashboardHeader.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: auto;
  padding-top: 100px;
}

.hero-section._3.hideheader {
  display: none;
}

.hero-section.quartier {
  background-image: linear-gradient(256deg, #0000 44%, #fffc), url('../images/HeaderQuartier50.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: auto;
}

.hero-section.plansheader {
  color: #000;
  background-image: linear-gradient(#e2e0d9c9 8%, #0000 61%), url('../images/ModenPlansHeader.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 80px;
}

.navbar-2 {
  z-index: 9;
  background-color: #0000;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

._2-col-grid {
  grid-column-gap: 100px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._2-col-grid.min-space {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}

.section-subtitle {
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.img-section {
  height: 700px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.img-section.unites {
  color: #000;
  background-image: url('../images/S1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.img-section.unites.withshadow {
  background-image: linear-gradient(90deg, #000c 8%, #0000 43%), url('../images/Espaces2.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.img-section.projet-2 {
  color: #000;
  background-image: linear-gradient(#e2e0d9 6%, #0000 40%), url('../images/Projet305.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 992px;
  padding-top: 60px;
}

.img-section.projet-1 {
  color: #000;
  background-image: url('../images/building2_1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 992px;
}

.img-section.newhome {
  color: #000;
  background-image: url('../images/BuildingHomePage.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.front-text {
  padding-bottom: 0;
  font-size: 36px;
  line-height: 42px;
}

.front-text.white {
  color: #fff;
  font-size: 22px;
  line-height: 30px;
}

.front-text.smaller {
  padding-right: 120px;
  font-size: 22px;
  line-height: 32px;
}

.align-center {
  text-align: center;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 300;
  display: flex;
}

.pink-subtitle {
  color: var(--salmon-2);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 30px;
  font-family: Monumentextended, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
}

.pink-subtitle.uppercase {
  letter-spacing: 1px;
  text-transform: uppercase;
}

._3-col-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.narrow-content {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.big-title {
  color: #fff;
  font-family: Monumentextended, sans-serif;
  font-size: 28px;
  font-weight: 200;
  line-height: 36px;
  transition: color .5s;
}

.big-title:hover {
  color: var(--salmon-2);
}

.section-img {
  object-fit: cover;
  width: 100%;
  display: block;
}

.button-wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
  display: flex;
  position: static;
}

.button-wrap.full {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  display: flex;
}

.arrow-link {
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-left: 39px;
  font-size: 20px;
  font-weight: 400;
  transition: all .2s;
}

.arrow-link:hover {
  color: var(--salmon-2);
}

.arrow-link.pink {
  color: var(--salmon-2);
  padding-left: 0;
}

.arrow-link.pink:hover {
  color: #fff;
}

.section-half-bg {
  z-index: 0;
  background-color: #000;
  height: 50%;
  position: absolute;
  inset: auto 0% 0%;
}

.section-half-bg.top {
  inset: 0% 0% auto;
}

.section-half-bg.slim-light {
  background-color: var(--gainsboro);
  height: 20%;
}

._2-3-col-grid {
  grid-column-gap: 100px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.arrow-icon {
  object-fit: contain;
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.arrow-icon.invert {
  filter: contrast(200%) brightness(200%) grayscale() invert();
}

.arrow-link-wrap {
  color: var(--salmon);
  align-items: center;
  transition: all .2s;
  display: flex;
}

.arrow-link-wrap:hover {
  color: #fff;
}

.arrow-link-wrap.black {
  color: #000;
}

.arrow-link-wrap.black:hover {
  color: #fff;
}

.half-img-bg {
  object-fit: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.half-img-bg.right {
  width: 50%;
  max-width: 100%;
  height: 100%;
  left: auto;
}

.half-img-bg.below-hero, .half-img-bg.quartier-cta, .half-img-bg.projet-cta {
  left: auto;
}

.bottom-card {
  background-color: var(--gainsboro);
  color: #000;
  text-align: center;
  text-transform: uppercase;
  flex-direction: column;
  align-items: center;
  max-width: 50%;
  margin-left: auto;
  margin-right: 60px;
  padding: 60px 60px 40px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  display: flex;
  box-shadow: -1px 1px 30px #0000001a;
}

.bottom-card.projet {
  color: #fff;
  text-transform: none;
  background-color: #000;
  margin-left: 60px;
  margin-right: auto;
}

.bottom-card.quartier {
  margin-left: 60px;
  margin-right: auto;
}

.bottom-card.projet-copy {
  color: #fff;
  text-transform: none;
  background-color: #000;
  margin-left: 60px;
  margin-right: auto;
}

.bottom-logo {
  width: 300px;
  margin-bottom: 40px;
}

.footer---new {
  background-image: linear-gradient(to bottom, var(--gainsboro), var(--gainsboro));
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.footer-left {
  grid-template-rows: auto;
  grid-template-columns: 200px 240px .5fr .5fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: flex;
}

.footer-link {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  transition: all .2s;
  display: inline-block;
}

.footer-link:hover {
  color: var(--salmon);
  font-weight: 500;
}

.footer-link.w--current {
  font-size: 14px;
}

.footer-link.w--current:hover {
  color: var(--salmon);
  text-transform: capitalize;
  font-weight: 500;
  text-decoration: none;
}

.footer-links {
  flex-direction: column;
  width: auto;
  margin-right: 0;
  padding-left: 0;
  font-size: 14px;
  display: flex;
}

.footer-info {
  margin-left: 25px;
}

.footer-info.none {
  margin-left: 0;
}

.footer-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-right {
  align-items: center;
  display: flex;
}

.social-links-wrap {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.scroll-top {
  margin-left: 10px;
}

.hero-logo {
  max-width: 100px;
  margin-top: 0;
  margin-bottom: 40px;
}

.hero-logo.absolute {
  margin-bottom: 0;
  position: absolute;
  inset: 20px 20px auto auto;
}

.hero-logo.large {
  max-width: 200px;
  margin-bottom: 80px;
}

.hero-logo.invertedwhite {
  filter: invert();
  max-width: 200px;
}

.menu-button-2 {
  z-index: 9;
  background-color: var(--gainsboro);
  color: #000;
  text-transform: uppercase;
  border-radius: 0%;
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin-top: 10px;
  margin-left: 10px;
  padding: 10px 8px 8px;
  font-family: Monumentextended, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 36px;
  display: block;
  box-shadow: 0 0 20px #0003;
}

.menu-button-2.w--open {
  background-color: var(--salmon-2);
  box-shadow: none;
  color: #fff;
}

.nav-menu-2 {
  z-index: 8;
  background-color: #000;
  width: 400px;
  padding-top: 100px;
  padding-bottom: 50px;
  display: none;
  box-shadow: 0 0 30px #0003;
}

.nav-link---new {
  color: #fff;
  padding-top: 15px;
  padding-bottom: 5px;
}

.nav-link---new:hover {
  color: var(--salmon-2);
}

.nav-link---new.w--current {
  color: var(--salmon);
}

.img-title-wrap {
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-direction: column;
  width: 100%;
  padding: 80px 100px 40px;
  font-family: Monumentextended, sans-serif;
  font-size: 24px;
  font-weight: 200;
  line-height: 24px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.img-title-wrap.right {
  align-items: flex-end;
}

.img-title-wrap.middle {
  align-items: center;
}

.light-text {
  color: var(--gainsboro);
}

.front-text-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: flex-start;
  display: grid;
}

.front-text-wrap.larger {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.half-img-bg---alt {
  object-fit: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.half-img-bg---alt.below-hero {
  left: auto;
}

.feature-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 16px;
  color: #000;
  grid-template-rows: auto;
  grid-template-columns: 40px 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.feature-wrap.white {
  color: #fff;
  grid-template-columns: 28px 1.75fr;
}

.feature-content {
  margin-bottom: 0;
  padding-top: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.black-text {
  color: #000;
}

.hidden {
  display: none;
}

.slider {
  background-color: #0000;
  height: auto;
  margin-bottom: 40px;
}

.slide-nav {
  z-index: -1;
  justify-content: flex-end;
  margin-bottom: -70px;
  font-size: 12px;
  display: none;
}

.slide-nav.hidenav {
  display: none;
}

.slide---margin {
  margin-right: 60px;
}

.bulding-wrap {
  position: relative;
}

.building-img {
  filter: grayscale();
  max-height: 400px;
}

.floating-text-wrap {
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0%;
}

.floating-img {
  object-fit: contain;
  width: 120%;
  max-width: none;
  height: 100px;
  display: block;
}

.floating-img._1 {
  margin-top: -40px;
}

.floating-img._2 {
  margin-left: auto;
  margin-right: -100px;
}

.floating-img._3 {
  margin-left: -40px;
}

.floating-img._4 {
  margin-bottom: -40px;
}

.minilink {
  color: var(--salmon-2);
}

.map-legends {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 40px;
  display: grid;
}

.map-col {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 20px 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.map-dot {
  background-color: #757c60;
  border-radius: 100%;
  width: 20px;
  height: 20px;
}

.map-dot._2 {
  background-color: #d0a18e;
}

.map-dot._3-col-grid {
  background-color: #e9e5e0;
}

.map-dot._4 {
  background-color: #a86442;
}

.map-dot._5 {
  background-color: #99958a;
}

.map-dot.red {
  background-color: #e0756a;
}

.map-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-family: Monumentextended, sans-serif;
  font-weight: 200;
}

.map-list {
  color: #fff;
  margin-bottom: 6px;
}

.bottomtext-2 {
  text-align: center;
  margin-top: 50px;
  font-size: 12px;
}

.footer-4 {
  color: #dfd5ca;
  background-color: #000;
  height: 100%;
  margin-top: -10px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.paragraph {
  font-weight: 300;
}

.div-block, .div-block-2 {
  font-weight: 400;
}

.div-block-3 {
  font-weight: 300;
}

.section-3 {
  background-color: var(--salmon-2);
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 30px 0;
}

.content23-item {
  text-align: center;
  margin-bottom: 0;
  margin-right: 10px;
}

.content23-item-wrap {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  display: flex;
}

.paragraph-2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
  margin-left: 0;
  padding-left: 0;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 27px;
}

.cta7-map-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: url('../images/building2_1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.section-4-ordi {
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding-left: 36px;
  padding-right: 36px;
}

.paragraph-70 {
  opacity: .7;
  margin-bottom: 10px;
}

.paragraph-70.paragraph70-bottom-clear, .paragraph-70.paragraphformphase1 {
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.wrapper {
  margin-top: 100px;
  margin-bottom: 50px;
}

.wrapper.m100-50 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 50px;
}

.cta7-grid {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  max-width: 1200px;
  min-height: 460px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.size3-text {
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 300;
  line-height: 38px;
}

.size3-text.size3-top-clear {
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
}

.logowhite {
  max-width: 50px;
  margin-bottom: 30px;
}

.divmobileopacity {
  display: none;
}

.logoanimationhero {
  width: 400px;
}

.sliderunit {
  height: 100%;
}

.slide1unit {
  background-image: url('../images/Bottom45.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide2unit {
  background-image: url('../images/Studio2-Slider.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slidenavunit {
  font-size: 12px;
}

.grid {
  grid-column-gap: 80px;
  grid-row-gap: 100px;
  color: var(--gainsboro);
  grid-template-rows: auto auto auto;
  grid-template-columns: .5fr 1fr;
  margin: 80px 5%;
}

.logoteam {
  width: 50%;
}

.sectionresimo {
  height: auto;
  padding: 50px 100px;
}

.grid-2 {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
}

.form-field {
  color: var(--white);
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1px solid #e2e0d9;
  height: 40px;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  font-size: 14px;
  line-height: 24px;
}

.form-field::placeholder {
  color: var(--white);
}

.form-field.select {
  color: var(--white);
  margin-left: 0;
  padding-left: 0;
}

.form-field.select:focus {
  color: #535353;
}

.html-embed {
  display: none;
}

.submit-button {
  color: #000;
  background-color: #d57d6f;
  margin-top: 40px;
  padding: 12px 40px;
  font-size: 16px;
  transition: all .2s;
}

.submit-button:hover {
  color: #fff;
  background-color: #000;
}

.form-ordinateur-cta {
  text-align: center;
}

.hero-col {
  padding-left: 0;
  padding-right: 0;
}

.hero-col.l {
  padding-right: 15px;
}

.hero-col.r {
  padding-left: 15px;
}

.form-field---dark {
  color: #3b3024;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom-width: 2px;
  height: 50px;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  font-size: 16px;
  line-height: 28px;
}

.form-field---dark::placeholder {
  color: #3b3024;
}

.form-mobile {
  display: none;
}

.paragraph-71 {
  text-transform: none;
}

.sectionimage {
  justify-content: center;
  align-items: center;
  display: flex;
}

.backgroundvideo {
  justify-content: center;
  align-items: center;
  height: 85vh;
  display: flex;
}

.divfull {
  background-color: #0003;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.divcontact {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding-bottom: 0;
  display: flex;
}

.form-field-2 {
  color: #fff;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1px solid #e2e0d9;
  height: 40px;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  font-size: 14px;
  line-height: 28px;
}

.form-field-2::placeholder {
  color: #e2e0d9;
}

.form-field-2.select {
  margin-left: 0;
  padding-left: 0;
}

.form-field-2.select:focus {
  color: #535353;
}

.form-3 {
  text-align: center;
}

.section-4-ordi-mobile {
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding-left: 36px;
  padding-right: 36px;
  display: none;
}

.wrapper-mobile.m100-50 {
  padding-top: 100px;
  padding-bottom: 50px;
  display: none;
}

.section-4 {
  background-image: linear-gradient(#000000c4 7%, #fff0 48%), url('../images/penthouse.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 600px;
}

.paragraph-78 {
  margin-bottom: 0;
}

.image-5 {
  text-align: center;
  width: 50%;
  padding-bottom: 30px;
}

.div-block-4 {
  text-align: center;
}

.image-6 {
  width: 75%;
  padding-bottom: 25px;
}

.div-block-5 {
  text-align: center;
}

.section-logo {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
  position: relative;
  overflow: hidden;
}

.column {
  text-align: center;
  flex-flow: column;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.column-2 {
  padding-left: 0;
  padding-right: 0;
}

.image-7 {
  width: 50%;
}

.column-3, .column-4 {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-contact-div {
  flex-wrap: nowrap;
  width: 100%;
  padding-left: 0;
  transition: opacity .5s;
  display: flex;
}

.socialblock {
  align-items: flex-end;
  margin-left: 0;
  padding-left: 0;
  display: flex;
}

.fb {
  opacity: .9;
  background-image: url('../images/Fb_1Fb.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.fb:hover {
  opacity: 1;
}

.insta {
  opacity: .9;
  background-image: url('../images/Ins_1Ins.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-left: 20px;
  transition: opacity .5s;
}

.insta:hover {
  opacity: 1;
}

.linkedin {
  opacity: .9;
  background-image: url('../images/lin_1lin.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-left: 20px;
  transition: opacity .5s;
  display: none;
}

.linkedin:hover {
  opacity: 1;
}

.footer-container {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-right: 50px;
  display: none;
}

.footer-home-link {
  width: 30%;
  max-width: 150px;
  margin-right: 5%;
}

.body-4 {
  color: var(--black);
  flex: 1;
  align-self: flex-end;
  margin-bottom: 40px;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
}

.socialblock-2 {
  justify-content: flex-start;
  align-items: flex-end;
  margin-left: 0;
  margin-right: 37px;
  padding-left: 0;
  display: flex;
}

.section-5 {
  background-image: linear-gradient(to bottom, var(--gainsboro), var(--gainsboro));
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
}

.image-8 {
  text-align: center;
  max-width: 50%;
  margin-top: auto;
  margin-bottom: auto;
  display: inline-block;
}

.columns {
  text-align: left;
  justify-content: center;
  align-items: center;
  display: flex;
}

.column-5 {
  padding-left: 100px;
  padding-right: 0;
}

.column-6 {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.column-7 {
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 60px;
  display: flex;
}

.column-8 {
  padding-left: 0;
}

.text-block-6 {
  text-align: left;
  text-transform: uppercase;
  font-size: 17px;
}

.text-block-7 {
  text-align: center;
  text-transform: uppercase;
  font-size: 17px;
}

.paragraph-2-copy {
  text-align: left;
  margin-bottom: 10px;
  margin-left: 0;
  padding-left: 0;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 27px;
}

.image-9, .image-10 {
  max-width: 80%;
}

.image-11 {
  max-width: 70%;
}

.text-block-8, .text-block-8:hover {
  color: var(--white);
}

.text-block-9 {
  color: var(--black);
}

.div-text-image {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.text-block-10 {
  color: var(--white);
  background-color: #0000007d;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  padding: 3px 5px;
  font-weight: 300;
  display: flex;
}

.arrow-link-wrap-black {
  color: #fff;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.arrow-link-wrap-black:hover {
  color: var(--black);
}

.link {
  color: var(--white);
  transition: text-indent .2s;
}

.link:hover {
  font-size: 17px;
  text-decoration: underline;
}

.submit-button-copy {
  background-color: var(--salmon);
  color: #000;
  margin-top: 40px;
  padding: 12px 40px;
  font-size: 16px;
  transition: all .2s;
}

.submit-button-copy:hover {
  color: #fff;
  background-color: #000;
}

.image-form {
  width: 50%;
  padding-bottom: 25px;
}

.grid-form-cta {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
}

.form-field-cta {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: black black var(--black);
  color: var(--black);
  background-color: #0000;
  height: 40px;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.form-field-cta::placeholder {
  color: var(--black);
}

.form-field-cta.select {
  color: var(--black);
  margin-left: 0;
  padding-left: 0;
  font-size: 16px;
}

.form-field-cta.select:focus {
  color: #535353;
}

.form-field---white {
  color: #3b3024;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom-width: 2px;
  height: 50px;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  font-size: 16px;
  line-height: 28px;
}

.form-field---white::placeholder {
  color: #3b3024;
}

.html-embeded-ordi {
  width: 100%;
  height: auto;
}

.html-embeded-mobile {
  display: none;
}

.bold-text-12 {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
  display: block;
}

.html-embed-3 {
  display: none;
}

.paragraph-85 {
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 50px;
  line-height: 24px;
}

.button-wrap-head {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  padding-left: 0;
  display: flex;
  position: absolute;
}

.section-subtitle-team {
  padding-top: 0;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.button-wrap-plans {
  padding-top: 40px;
}

.section-subtitle-text {
  padding-top: 0;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.section-image-centre {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  display: block;
  position: relative;
  overflow: hidden;
}

.section-image-centre.light {
  background-color: var(--gainsboro);
}

.button-copy {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  background-color: #111112;
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  padding: 14px 26px;
  font-family: Monumentextended, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
  transition: color .2s, background-color .2s;
  display: flex;
}

.button-copy:hover {
  background-color: var(--salmon-2);
  color: #111112;
}

.button-copy.pink {
  border-color: var(--salmon-2);
  background-color: var(--salmon);
  color: #000;
  text-transform: none;
  width: 250px;
  max-width: 300px;
  margin-top: 0;
  padding: 12px 5px;
  font-size: 12px;
}

.button-copy.pink:hover {
  border-color: var(--salmon);
  color: #fff;
  background-color: #000;
}

.section-header-plans {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  display: block;
  position: relative;
  overflow: hidden;
}

.container-image-plans {
  max-width: 1400px;
  height: auto;
}

.image-14 {
  width: 100%;
  max-width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}

.button-download {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  background-color: #111112;
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  padding: 14px 26px;
  font-family: Monumentextended, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
  transition: color .2s, background-color .2s;
  display: flex;
}

.button-download:hover {
  background-color: var(--salmon-2);
  color: #111112;
}

.button-download.pink {
  border-color: var(--salmon-2);
  color: #fff;
  text-transform: none;
  background-color: #d57d6f00;
  align-items: center;
  min-width: 100px;
  max-width: 300px;
  margin: 20px auto;
  padding: 12px 0;
  font-size: 12px;
  display: block;
}

.button-download.pink:hover {
  border-color: var(--salmon);
  background-color: var(--salmon-2);
  color: #fff;
}

.button-download.pink:active, .button-download.pink:focus {
  background-color: var(--salmon-2);
}

.columns-2 {
  justify-content: center;
  align-items: center;
  width: 800px;
  display: flex;
}

.column-9, .column-10 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.container-boutons {
  z-index: 1;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 0;
  position: relative;
}

.section-6 {
  padding-bottom: 50px;
}

.section-light {
  background-color: var(--gainsboro);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  display: block;
  position: relative;
  overflow: hidden;
}

.front-text-bolf {
  padding-bottom: 30px;
  font-size: 22px;
  line-height: 30px;
}

.section-collections {
  background-color: var(--gainsboro);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  display: block;
  position: relative;
  overflow: hidden;
}

.section-collections.no-padding {
  background-color: var(--gainsboro);
  padding-top: 0;
  padding-bottom: 0;
}

.section-txt-in-img {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  display: block;
  position: relative;
  overflow: hidden;
}

.html-embed-4 {
  display: none;
}

.map-2 {
  height: 600px;
}

.slide {
  background-image: url('../images/Le-Moden_02.jpg');
  background-position: 50%;
  background-size: cover;
}

.slider-2 {
  height: 700px;
  margin-bottom: 50px;
  padding-bottom: 0;
}

.container-galerie {
  max-width: 1200px;
}

.slide-2 {
  background-image: url('../images/Le-Moden_04.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-3 {
  background-image: url('../images/Le-Moden_09.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-4 {
  background-image: url('../images/Le-Moden_12.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-5 {
  background-image: url('../images/Le-Moden_13.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
}

.slide-6 {
  background-image: url('../images/Le-Moden_15.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-7 {
  background-image: url('../images/Le-Moden_16.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-8 {
  background-image: url('../images/Le-Moden_20.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-9 {
  background-image: url('../images/Le-Moden_25.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1 {
  background-image: url('../images/Le-Moden_34.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1-2 {
  background-image: url('../images/Le-Moden_35.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1-3 {
  background-image: url('../images/Le-Moden_40.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.slide-1-4 {
  background-image: url('../images/Le-Moden_41.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1-5 {
  background-image: url('../images/Le-Moden_44.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1-6 {
  background-image: url('../images/Le-Moden_47.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1-7 {
  background-image: url('../images/Le-Moden_51.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1-8 {
  background-image: url('../images/DSC07130.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1-9 {
  background-image: url('../images/DSC00452.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1-10 {
  background-image: url('../images/DSC00462.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-2-2 {
  background-image: url('../images/DSC00426.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-2-3 {
  background-image: url('../images/DSC00405.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-2-4 {
  background-image: url('../images/DSC00394.jpg');
  background-position: 50%;
  background-size: cover;
}

.heading-3 {
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 300;
}

.brochuremobile {
  display: none;
}

.image-15, .image-16, .image-17 {
  max-width: 150%;
}

.divpopup {
  z-index: 9990;
  text-align: center;
  background-color: #000000a8;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  padding-top: 30px;
  display: none;
  position: fixed;
  inset: 0%;
}

.divinsidepopup {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  text-align: center;
  background-color: #fff0;
  border: 1px #000;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 750px;
  height: auto;
  display: flex;
  box-shadow: 0 0 60px 3px #00000080;
}

.image-popup {
  cursor: pointer;
}

.xclose {
  z-index: 20000;
  float: right;
  clear: left;
  border: 1px solid var(--salmon-2);
  color: var(--salmon-2);
  cursor: pointer;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  margin-top: 10px;
  margin-left: 10px;
  padding: 5px 6px 2px;
  font-family: Varela Round, sans-serif;
  font-size: 30px;
  line-height: 30px;
  display: block;
  position: static;
  inset: auto 0% 248px auto;
}

.div-xclose {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  display: block;
  position: absolute;
}

._404 {
  font-family: Inter, sans-serif;
  font-size: 60px;
}

._404-2 {
  font-family: Inter, sans-serif;
  font-size: 30px;
}

.divpopup-2 {
  z-index: 9990;
  text-align: center;
  cursor: pointer;
  background-color: #000000a8;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  padding-top: 30px;
  display: none;
  position: fixed;
  inset: 0%;
}

.div-xclose-2 {
  text-align: center;
  object-fit: fill;
  flex-direction: row;
  justify-content: flex-end;
  align-self: auto;
  align-items: flex-end;
  width: auto;
  display: block;
  position: absolute;
  overflow: visible;
}

.image-popup-2 {
  text-align: center;
  cursor: pointer;
}

.section-7 {
  background-color: var(--black);
}

.text-block-20 {
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 13px;
}

.visite-virtuelle-header {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  height: 100vh;
  padding-top: 140px;
  padding-bottom: 140px;
}

.visite-virtuelle-header.virtuelleheader {
  color: #000;
  background-image: linear-gradient(#0000004f, #0000004f), url('../images/ModenPlansHeader.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 100vh;
  padding-top: 80px;
}

.virtual-soustitle, .virtuel-title {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Monumentextended, sans-serif;
  font-size: 24px;
  font-weight: 200;
  line-height: 38px;
}

.popup {
  z-index: 9990;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  background-color: #000000a8;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  padding-top: 30px;
  display: none;
  position: fixed;
  inset: 0%;
}

.insidepopup {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  text-align: center;
  background-color: #fff0;
  border: 1px #000;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: flex-start;
  width: 700px;
  height: auto;
  display: flex;
  box-shadow: 0 0 60px 3px #00000080;
}

.xclose-3 {
  z-index: 20000;
  float: right;
  clear: left;
  border: 1px solid var(--salmon);
  color: var(--salmon);
  text-align: center;
  cursor: pointer;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 5px 6px 2px;
  font-family: Varela Round, sans-serif;
  font-size: 30px;
  line-height: 30px;
  display: block;
  position: static;
  inset: auto 0% 248px auto;
}

.section-8 {
  background-color: var(--salmon-2);
  background-image: url('../images/Logo-BG.png');
  background-position: 50%;
  background-size: auto;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.heading-4 {
  color: var(--black);
  text-align: center;
  letter-spacing: 0;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 26px;
  display: flex;
}

.container-6 {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.container-7 {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: block;
}

.heading-5 {
  color: var(--salmon);
  margin-bottom: 6px;
  padding-top: 0;
  font-family: Monumentextended, sans-serif;
  font-size: 24px;
  font-weight: 200;
}

.heading-6 {
  color: var(--salmon);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Monumentextended, sans-serif;
  font-size: 24px;
  font-weight: 200;
}

.text-block-21 {
  color: var(--gainsboro);
  font-family: Inter, sans-serif;
  font-size: 20px;
  line-height: 26px;
}

.section-9 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.text-block-22 {
  color: var(--gainsboro);
  font-size: 20px;
  line-height: 26px;
}

.section-10 {
  background-color: var(--gainsboro);
  padding-top: 80px;
  padding-bottom: 80px;
}

.bold-text-13 {
  color: var(--black);
  text-align: center;
  letter-spacing: 0;
  font-family: Monumentextended, sans-serif;
  font-size: 24px;
  font-weight: 200;
  line-height: 38px;
}

.heading-7 {
  text-align: center;
}

.formulaire-bas-ordi {
  text-align: center;
  display: block;
}

.form-field---dark-2 {
  color: #3b3024;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom-width: 2px;
  height: 50px;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  font-size: 16px;
  line-height: 28px;
}

.form-field---dark-2::placeholder {
  color: #3b3024;
}

.submit-button-2 {
  color: #000;
  background-color: #d57d6f;
  margin-top: 40px;
  padding: 12px 40px;
  font-size: 18px;
  transition: all .2s;
}

.submit-button-2:hover {
  color: #fff;
  background-color: #000;
}

.form-4 {
  justify-content: center;
  align-items: center;
  width: 600px;
  display: block;
}

.form-block-4 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-logo-copy {
  max-width: 300px;
  margin-top: 0;
  margin-bottom: 40px;
}

.hero-section-copy {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  height: 100vh;
  padding-top: 140px;
  padding-bottom: 140px;
}

.hero-section-copy._2-copy {
  color: #000;
  background-image: url('../images/Building4.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.container-9 {
  max-width: 100%;
  display: block;
}

.container-10, .container-11, .container-12, .container-13, .container-14, .container-15, .container-16, .container-17, .container-18, .container-19, .container-20, .container-21, .container-22, .container-23, .container-24, .container-25, .container-26, .container-27, .container-28, .container-29, .container-30, .container-31, .container-32, .container-33, .container-34, .container-35, .container-36 {
  max-width: 100%;
}

.container-37 {
  justify-content: center;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.container-38, .container-39, .container-40, .container-41, .container-42, .container-43, .container-44, .container-45, .container-46 {
  max-width: 100%;
}

.container-48 {
  flex-flow: column;
  place-content: center;
  align-items: center;
  max-width: 1400px;
  padding-top: 100px;
  padding-bottom: 80px;
  display: flex;
}

.image-76 {
  max-width: 40%;
  padding-bottom: 34px;
}

.column-63 {
  padding-left: 0;
  padding-right: 0;
}

.columns-28 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

.columns-25 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.paragraph-35 {
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-bottom: 5px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  display: block;
}

.heading-562 {
  color: var(--salmon-2);
  text-align: center;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  position: static;
}

.section-prix-habitats {
  background-color: var(--black);
  padding-top: 50px;
  padding-bottom: 50px;
}

.heading-561 {
  color: var(--white);
  text-align: center;
  padding-bottom: 30px;
  font-family: Monumentextended, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 30px;
}

.image-75 {
  width: auto;
  max-width: 50%;
  padding-bottom: 30px;
}

.column-64 {
  padding-left: 0;
  padding-right: 0;
}

.grid-3 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: 150px minmax(5px, .6fr);
  grid-template-columns: minmax(200px, 1fr) minmax(280px, 1fr) 1fr 1fr;
  grid-auto-rows: minmax(5px, .6fr);
  grid-auto-flow: row;
  place-items: center;
}

.grid-mobile {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: 150px minmax(5px, .6fr);
  grid-template-columns: minmax(200px, 1fr) minmax(280px, 1fr) minmax(280px, 1fr) minmax(280px, 1fr);
  grid-auto-rows: minmax(5px, .6fr);
  grid-auto-flow: row;
  place-items: center;
}

.columns-29 {
  display: none;
}

.slide-10 {
  background-image: url('../images/DJI_1.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-11, .image-78 {
  background-image: url('../images/DJI_2.jpg');
  background-position: 50%;
  background-size: cover;
}

.section-light-construction-news {
  background-color: var(--gainsboro);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slide-12 {
  background-image: url('../images/Untitled_1.2.1.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.slide-13 {
  background-image: url('../images/Untitled_1.2.2.jpg');
  background-position: 50%;
  background-size: cover;
}

.slider-3 {
  height: 400px;
}

.slide-14 {
  background-image: url('../images/Untitled_1.4.1.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-15 {
  background-image: url('../images/Untitled_1.5.1.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-16 {
  background-image: url('../images/Untitled_1.6.1.jpg');
  background-position: 50%;
  background-size: cover;
}

.lancement-center-header {
  background-color: #00000080;
  flex-direction: column;
  flex: none;
  align-items: center;
  max-width: 40%;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding: 50px 80px;
  display: flex;
  position: relative;
  inset: 0% 0% 0% auto;
}

.formulaire-haut {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-title-img {
  max-width: 300px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.hero-content-wrap-ordi {
  text-align: center;
  display: block;
}

.hero-title {
  color: #fff;
  text-transform: none;
  padding-bottom: 0;
  font-family: Monumentextended, sans-serif;
  font-size: 24px;
  font-weight: 200;
  line-height: 32px;
}

.hero-p {
  color: #fff;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 26px;
}

.button-2 {
  background-color: #d57d6f;
  font-size: 18px;
  font-weight: 400;
}

.hero-title-2 {
  color: #fff;
  text-transform: none;
  padding-bottom: 50px;
  font-family: Monumentextended, sans-serif;
  font-size: 24px;
  font-weight: 200;
  line-height: 32px;
}

.hero-p-2 {
  color: #fff;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 40px;
  font-size: 20px;
  line-height: 26px;
}

.lancement-header {
  color: #e2e0d9;
  background-image: url('../images/BuildingHomePage.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.lang-link {
  z-index: 9999;
  color: #3b3024;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: Monumentextended, sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 20px 20px auto auto;
}

.lang-link:hover {
  color: #e2e0d9;
}

.lancement-center-header-2 {
  background-color: #0009;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  max-width: 40%;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding: 50px 80px;
  display: flex;
  position: relative;
  inset: 0% 0% 0% auto;
}

.button-3 {
  background-color: #d57d6f;
  font-size: 18px;
  font-weight: 400;
}

.slide-17 {
  background-image: url('../images/Untitled_1.7.1.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-18 {
  background-image: url('../images/Untitled_1.7.2.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-19 {
  background-image: url('../images/Untitled_1.8.1.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-20 {
  background-image: url('../images/Untitled_1.9.1.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1-11 {
  background-image: url('../images/Untitled_1.10.1.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1-12 {
  background-image: url('../images/Untitled_1.11.1.jpg');
  background-position: 50%;
  background-size: cover;
}

.politique {
  padding-top: 100px;
  padding-bottom: 100px;
  font-size: 13px;
  line-height: 20px;
}

.link-2 {
  color: #fff;
}

.link-block {
  color: #fff;
  text-align: center;
}

.bottomtext-2-copy {
  color: #dfd5ca;
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
}

.html-embed-5 {
  width: 100%;
}

.container-49 {
  padding-top: 0;
  padding-bottom: 50px;
}

.text-block-23 {
  text-align: center;
}

.heading-563 {
  text-align: center;
  font-family: Monumentextended, sans-serif;
  font-size: 30px;
  font-weight: 200;
}

.container-50 {
  padding-bottom: 25px;
}

.section-11 {
  background-image: linear-gradient(#fff 5%, #fff0 34%), url('../images/Header-Phase1.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  flex-direction: column;
  align-items: center;
  height: 900px;
  display: flex;
}

.div-block-10 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  display: flex;
}

.text-block-24 {
  color: var(--black);
  text-align: center;
  margin-top: 15px;
  font-family: Monumentextended, sans-serif;
  font-size: 22px;
  font-weight: 200;
}

.heading-564 {
  color: #000;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: Monumentextended, sans-serif;
  font-size: 28px;
  font-weight: 200;
  line-height: 38px;
}

.text-block-25 {
  color: #000;
  text-align: center;
  margin-top: 25px;
  font-size: 22px;
  font-weight: 500;
}

._2-col-grid-phase1 {
  grid-column-gap: 20px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._2-col-grid-phase1.min-space {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}

.section-phase1-split {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  background-color: #dfdfdf;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 0;
  margin-bottom: 0;
  padding: 50px;
  display: block;
  position: relative;
  overflow: hidden;
}

.section-phase1-split.blog-title-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.section-phase1-split.project-body-section {
  padding-top: 156px;
  padding-bottom: 156px;
}

.section-phase1-split.project-title-section {
  padding-bottom: 76px;
}

.section-phase1-split.pink {
  background-color: var(--salmon-2);
  color: #000;
}

.section-phase1-split.pink.img {
  background-image: url('../images/Square-BG.png');
  background-position: 50% 0;
  background-repeat: repeat;
  background-size: auto;
}

.section-phase1-split.light {
  background-color: var(--gainsboro);
  background-image: url('../images/Square-BG.png');
  background-position: 0 0;
  background-size: auto;
}

.section-phase1-split.no-padding-bottom {
  padding-bottom: 0;
}

.section-phase1-split.bottom {
  overflow: hidden;
}

.section-phase1-split.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section-phase1-split.no-padding-top {
  padding-top: 0;
}

.section-phase1-split.headerteam {
  background-color: var(--gainsboro);
  color: var(--white);
  background-image: linear-gradient(#0000001a, #0000001a), url('../images/DashboardHeader.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-phase1-split.light-phase1 {
  background-color: var(--gainsboro);
  background-image: url('../images/Square-BG.png');
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.container-split {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 0;
  display: flex;
  position: relative;
}

.container-split.justify-content-center {
  z-index: 1;
  justify-content: center;
  display: flex;
  position: relative;
}

.container-split.blog-title-container {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container-split.careers-container {
  justify-content: space-between;
  display: flex;
}

.container-split.project-body-container {
  max-width: 910px;
}

.container-split.left {
  margin-left: 0;
}

.container-split.right {
  margin-right: 0;
}

.slide-21 {
  background-image: url('../images/205-404.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-22 {
  background-image: url('../images/212-412.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-23 {
  background-image: url('../images/301-404.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-24 {
  background-image: url('../images/307-309.jpg');
  background-position: 50%;
  background-size: cover;
}

.slider-studio {
  text-align: center;
  width: 100%;
  height: 600px;
}

.bottom-card-phase1 {
  background-color: var(--gainsboro);
  color: #000;
  text-align: center;
  text-transform: uppercase;
  flex-direction: column;
  align-items: center;
  max-width: 50%;
  margin-left: auto;
  margin-right: 60px;
  padding: 60px 60px 40px;
  font-family: Inter, sans-serif;
  font-weight: 500;
  display: flex;
  box-shadow: -1px 1px 30px #0000001a;
}

.bottom-card-phase1.projet {
  color: #fff;
  text-transform: none;
  background-color: #000;
  margin-left: 60px;
  margin-right: auto;
}

.bottom-card-phase1.quartier {
  margin-left: 60px;
  margin-right: auto;
}

.bottom-card-phase1.projet-phase1 {
  background-color: var(--gainsboro);
  color: var(--gainsboro);
  text-transform: none;
  margin-left: 60px;
  margin-right: auto;
}

.paragraph-phase1 {
  opacity: .7;
  margin-bottom: 10px;
}

.paragraph-phase1.paragraph70-bottom-clear {
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.paragraph-phase1.paragraphformphase1 {
  color: var(--black);
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
}

.bottom-logo-phase1 {
  width: 300px;
  margin-bottom: 40px;
}

.sectionresimophase1 {
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.slider-images-studio {
  width: 1100px;
  max-width: 1100px;
  height: 700px;
}

.slide-25 {
  background-image: url('../images/2660-Rue-Ontario-E-Montréal---App-401-2.jpg');
  background-position: 50%;
  background-size: cover;
}

.icon, .icon-2, .icon-3, .icon-4 {
  color: var(--black);
}

.slide-26 {
  background-image: url('../images/2660-Rue-Ontario-E-Montréal---App-401-3.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-27 {
  background-image: url('../images/2660-Rue-Ontario-E-Montréal---App-401-4.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-28 {
  background-image: url('../images/2660-Rue-Ontario-E-Montréal---App-401-6.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-29 {
  background-image: url('../images/2660-Rue-Ontario-E-Montréal---App-401-8.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-30 {
  background-image: url('../images/2660-Rue-Ontario-E-Montréal---App-401-9.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-31 {
  background-image: url('../images/2660-Rue-Ontario-E-Montréal---App-401-10.jpg');
  background-position: 50%;
  background-size: cover;
}

.slider-6 {
  height: 500px;
}

.icon-5, .icon-6 {
  color: var(--black);
}

.button-phase1 {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  background-color: #111112;
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  padding: 14px 26px;
  font-family: Monumentextended, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
  transition: color .2s, background-color .2s;
  display: flex;
}

.button-phase1:hover {
  background-color: var(--salmon-2);
  color: #111112;
}

.button-phase1.button-large {
  min-width: 241px;
  height: 63px;
}

.button-phase1.button-large.form-button {
  margin-top: 26px;
}

.button-phase1.button-outline {
  color: #111112;
  background-color: #0000;
}

.button-phase1.button-outline:hover {
  color: var(--white);
  background-color: #111112;
}

.button-phase1.icon-button {
  justify-content: space-between;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.button-phase1.icon-button:hover {
  border-color: #111112;
}

.button-phase1.button-circle-small {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  min-width: 0;
  height: 28px;
  padding: 4px;
  display: flex;
}

.button-phase1.bg-white {
  border-color: var(--white);
  color: #111112;
}

.button-phase1.bg-white:hover {
  border-color: var(--white);
  color: #111112;
  background-color: #e4e0dd;
}

.button-phase1.navbar-centered-button {
  order: 3;
}

.button-phase1.pink {
  border-color: var(--salmon-2);
  background-color: var(--salmon);
  color: #000;
  text-transform: none;
  justify-content: center;
  width: 300px;
  max-width: 300px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 5px;
  font-size: 12px;
}

.button-phase1.pink:hover {
  border-color: var(--salmon);
  color: #fff;
  background-color: #000;
}

.button-phase1.pink-phase1 {
  border-color: var(--salmon-2);
  background-color: var(--salmon);
  color: #000;
  text-transform: none;
  justify-content: center;
  width: 300px;
  max-width: 300px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 5px;
  font-size: 12px;
}

.button-phase1.pink-phase1:hover {
  border-color: var(--salmon);
  color: #fff;
  background-color: #000;
}

.button-wrap-phase1 {
  padding-top: 80px;
  position: static;
}

.button-wrap-phase1.full {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  display: flex;
}

.div-block-phase1 {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 50px;
  display: flex;
}

.slider-1-chambre {
  text-align: center;
  width: 100%;
  height: 600px;
}

.slide-35 {
  background-image: url('../images/a-1-chambre-5.jpg');
  background-position: 50%;
  background-size: cover;
}

.section-12, .section-13, .section-14 {
  padding-top: 50px;
  padding-bottom: 50px;
}

._2-col-grid-phase1a {
  grid-column-gap: 50px;
  grid-row-gap: 40px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-start center;
  align-items: center;
  display: flex;
}

._2-col-grid-phase1a.min-space {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}

.image-79 {
  height: 700px;
}

.slide-40 {
  background-image: url('../images/206.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-41 {
  background-image: url('../images/210.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-42 {
  background-image: url('../images/213-413.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-43 {
  background-image: url('../images/a-1-chambre-3.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-44 {
  background-image: url('../images/a-1-chambre-1.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-45 {
  background-image: url('../images/a-1-chambre-4.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-46 {
  background-image: url('../images/a-1-chambre-2.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-47 {
  background-image: url('../images/a-1-chambre-7.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-48 {
  background-image: url('../images/a-1-chambre-6.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-49 {
  background-image: url('../images/a-1-chambre-8.jpg');
  background-position: 50%;
  background-size: cover;
}

.div-block-13, .div-block-14 {
  padding-left: 50px;
}

.section-phase1-split2 {
  text-align: center;
  background-color: #dfdfdf;
  flex-direction: row;
  margin-top: 0;
  margin-bottom: 0;
  padding: 50px;
  display: block;
  position: relative;
  overflow: hidden;
}

.section-phase1-split2.blog-title-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.section-phase1-split2.project-body-section {
  padding-top: 156px;
  padding-bottom: 156px;
}

.section-phase1-split2.project-title-section {
  padding-bottom: 76px;
}

.section-phase1-split2.pink {
  background-color: var(--salmon-2);
  color: #000;
}

.section-phase1-split2.pink.img {
  background-image: url('../images/Square-BG.png');
  background-position: 50% 0;
  background-repeat: repeat;
  background-size: auto;
}

.section-phase1-split2.light {
  background-color: var(--gainsboro);
  background-image: url('../images/Square-BG.png');
  background-position: 0 0;
  background-size: auto;
}

.section-phase1-split2.no-padding-bottom {
  padding-bottom: 0;
}

.section-phase1-split2.bottom {
  overflow: hidden;
}

.section-phase1-split2.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section-phase1-split2.no-padding-top {
  padding-top: 0;
}

.section-phase1-split2.headerteam {
  background-color: var(--gainsboro);
  color: var(--white);
  background-image: linear-gradient(#0000001a, #0000001a), url('../images/DashboardHeader.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-phase1-split2.light-phase1 {
  background-color: var(--gainsboro);
  background-image: url('../images/Square-BG.png');
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.button-rsvp {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  background-color: #111112;
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  margin-bottom: 20px;
  padding: 14px 26px;
  font-family: Monumentextended, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 26px;
  transition: color .2s, background-color .2s;
  display: none;
}

.button-rsvp:hover {
  background-color: var(--salmon-2);
  color: #111112;
}

.button-rsvp.button-large {
  min-width: 241px;
  height: 63px;
}

.button-rsvp.button-large.form-button {
  margin-top: 26px;
}

.button-rsvp.button-outline {
  color: #111112;
  background-color: #0000;
}

.button-rsvp.button-outline:hover {
  color: var(--white);
  background-color: #111112;
}

.button-rsvp.icon-button {
  justify-content: space-between;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.button-rsvp.icon-button:hover {
  border-color: #111112;
}

.button-rsvp.button-circle-small {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  min-width: 0;
  height: 28px;
  padding: 4px;
  display: flex;
}

.button-rsvp.bg-white {
  border-color: var(--white);
  color: #111112;
}

.button-rsvp.bg-white:hover {
  border-color: var(--white);
  color: #111112;
  background-color: #e4e0dd;
}

.button-rsvp.navbar-centered-button {
  order: 3;
}

.button-rsvp.pink {
  border-color: var(--salmon-2);
  background-color: var(--salmon);
  color: #000;
  text-transform: none;
  justify-content: center;
  width: 300px;
  max-width: 300px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 5px;
  font-size: 12px;
}

.button-rsvp.pink:hover {
  border-color: var(--salmon);
  color: #fff;
  background-color: #000;
}

.button-rsvp.pink-phase1 {
  border-color: var(--salmon-2);
  background-color: var(--salmon);
  color: #000;
  text-transform: none;
  justify-content: center;
  width: 300px;
  max-width: 300px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 5px;
  font-size: 12px;
}

.button-rsvp.pink-phase1:hover {
  border-color: var(--salmon);
  color: #fff;
  background-color: #000;
}

.text-block-26 {
  color: var(--gainsboro);
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 14px;
  line-height: 22px;
}

.paragraph-rsvp {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 0;
  padding-left: 0;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 27px;
}

.button-wrap-copy {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
  display: flex;
  position: static;
}

.button-wrap-copy.full {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  display: flex;
}

.section-title-rsvp {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-top: 40px;
  font-family: Monumentextended, sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 24px;
}

.section-title-rsvp.uppercase {
  text-transform: uppercase;
  margin-left: 0;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 24px;
  font-weight: 200;
  line-height: 28px;
}

.section-title-rsvp.pink-text {
  color: var(--salmon-2);
}

.section-title-rsvp.black {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 36px;
}

.text-block-rsvp {
  text-align: center;
  text-transform: none;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  display: flex;
}

.div-block-15 {
  margin-top: 30px;
  display: block;
}

.div-block-16 {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding-top: 50px;
  padding-right: 100px;
  line-height: 35px;
  display: flex;
}

.bold-text-14 {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.heading-565 {
  font-family: Inter, sans-serif;
  font-weight: 400;
}

.text-block-27 {
  line-height: 35px;
  display: none;
}

.section-15 {
  background-color: var(--gainsboro);
  display: none;
}

.text-block-27-copy {
  color: var(--black);
  text-align: center;
  line-height: 35px;
}

.container-51 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-centrale {
  background-image: url('../images/Le-Moden_Site-web_Vue-drone.jpg');
  background-position: 50% 0;
  background-size: cover;
  height: 600px;
}

.section-centrale-en {
  background-image: url('../images/map-anglais.jpg');
  background-position: 50% 0;
  background-size: cover;
  height: 600px;
}

.text-block-28 {
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
}

.slide-50 {
  background-image: url('../images/2660-Rue-Ontario-E-Montréal---App-401-11.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-51 {
  background-image: url('../images/2660-Rue-Ontario-E-Montréal---App-401-13.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-1-13 {
  background-image: url('../images/2660-Rue-Ontario-E-Montréal---App-401-14.jpg');
  background-position: 50%;
  background-size: cover;
}

.bold-text-12-copy {
  text-align: left;
  padding-left: 50px;
  padding-right: 50px;
  font-weight: 400;
  display: block;
}

.columns-30 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.link-3 {
  color: #fff;
}

html.w-mod-js [data-ix="popup-delay"] {
  opacity: 0;
  display: none;
}

@media screen and (min-width: 1920px) {
  .section-img {
    object-fit: cover;
  }

  .form-mobile-cta, .section-4-ordi-mobile {
    display: none;
  }

  .container-5, .container-galerie {
    max-width: 1900px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .divpopup {
    height: auto;
    padding-top: 0;
  }

  .divinsidepopup {
    width: 750px;
  }

  .divpopup-2, .popup {
    height: auto;
    padding-top: 0;
  }

  .insidepopup {
    width: 900px;
  }

  .section-11 {
    background-position: 50%;
    height: 1200px;
  }

  .section-centrale, .section-centrale-en {
    background-position: 50% 0;
    height: 900px;
  }
}

@media screen and (max-width: 991px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.project-body-section {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .section.project-title-section {
    padding-bottom: 52px;
  }

  .container {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }

  .container.careers-container {
    flex-direction: column;
  }

  .container.right {
    margin-left: auto;
    margin-right: auto;
  }

  .card-body {
    padding: 26px;
  }

  .content-width-large, .content-width-medium {
    width: 100%;
  }

  .content-width-extra-large {
    width: 100%;
    max-width: 806px;
  }

  .content-width-small {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .navbar-content {
    justify-content: flex-end;
    display: flex;
  }

  .nav-link {
    text-align: left;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 6px 0;
  }

  .navbar-centered-menu {
    order: 3;
  }

  .brand {
    flex: 1;
  }

  .menu-button {
    margin-left: 0;
    padding: 13px;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-menu-wrapper {
    background-color: var(--white);
    flex-flow: column wrap;
    align-items: flex-start;
  }

  .footer-1-top-row {
    flex-direction: column;
  }

  .footer-1-menus {
    justify-content: center;
    margin-bottom: 56px;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-foot.blog-card-foot {
    padding-left: 26px;
    padding-right: 26px;
  }

  .article figure {
    margin-top: 52px;
    margin-bottom: 52px;
  }

  .careers-title {
    margin-top: 39px;
  }

  .career-sidebar {
    width: 100%;
    max-width: 598px;
    margin-bottom: 52px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-study-large-link {
    justify-content: center;
  }

  .project-intro-text {
    margin-bottom: 39px;
  }

  .case-study-tile-image {
    width: 100%;
  }

  .nav-menu {
    border: 1px solid #1111121a;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

  .split-section-scrollable-wrapper {
    height: 580px;
  }

  .navbar-controls {
    display: flex;
  }

  .hero-image-div {
    left: 0;
  }

  .card-2.renderings, .card-2.branding, .card-2.step1 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .light-blue-button.big.dropdocuments {
    width: 98%;
    font-size: 9px;
    left: 0;
  }

  .container-2 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-col {
    flex-direction: column;
    display: flex;
  }

  .hero-section {
    height: auto;
    padding-top: 100px;
  }

  .hero-section._1 {
    background-image: linear-gradient(#e2e0d966, #e2e0d966), url('../images/Hero-1.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .hero-section._3 {
    background-image: linear-gradient(#d57d6f4d, #0000009e), url('../images/DashboardHeader.jpg');
    background-position: 0 0, 100%;
    background-size: auto, cover;
  }

  .hero-section.quartier {
    background-image: linear-gradient(#e2e0d9cc, #e2e0d9cc), url('../images/Q-Hero.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    padding-bottom: 60px;
  }

  ._2-col-grid {
    grid-template-columns: 1fr;
  }

  .img-section.unites {
    text-align: center;
    background-image: linear-gradient(#e2e0d9cc, #e2e0d9cc), url('../images/S1.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .img-section.projet-2 {
    background-image: linear-gradient(#e2e0d9cc, #e2e0d9cc), url('../images/terrasse-toit.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .img-section.projet-1 {
    color: #000;
    text-align: center;
    background-image: linear-gradient(#e2e0d9cc, #e2e0d9cc), url('../images/building2_1.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .img-section.newhome {
    text-align: center;
    background-image: linear-gradient(#e2e0d9cc, #e2e0d9cc), url('../images/S1.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .front-text {
    margin-bottom: 0;
  }

  ._3-col-grid {
    grid-template-columns: 1fr;
  }

  .big-title {
    font-size: 24px;
    line-height: 32px;
  }

  .arrow-link {
    font-size: 16px;
    line-height: 24px;
  }

  ._2-3-col-grid {
    grid-template-columns: 1fr;
  }

  .half-img-bg {
    width: 100%;
  }

  .half-img-bg.right {
    height: 50%;
    display: none;
    inset: auto 0% 0%;
  }

  .half-img-bg.below-hero {
    position: relative;
    inset: 100px 0% 0%;
  }

  .half-img-bg.quartier-cta {
    inset: auto 0% 0%;
  }

  .half-img-bg.projet-cta {
    inset: 0%;
  }

  .bottom-card {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .bottom-card.projet, .bottom-card.quartier, .bottom-card.projet-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .bottom-logo {
    max-width: 320px;
  }

  .footer-left {
    text-align: center;
    flex-direction: column;
  }

  .footer-links {
    margin-bottom: 0;
    margin-right: 0;
  }

  .footer-info {
    margin: 20px 0;
  }

  .footer-wrap {
    flex-direction: column;
  }

  .social-links-wrap {
    justify-content: center;
    padding-top: 20px;
  }

  .scroll-top {
    display: none;
  }

  .hero-logo.absolute {
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
  }

  .nav-menu-2 {
    width: 100%;
  }

  .front-text-wrap {
    grid-template-columns: 1fr;
  }

  .half-img-bg---alt {
    width: 100%;
  }

  .half-img-bg---alt.below-hero {
    position: relative;
    inset: 100px 0% 0%;
  }

  .align-center-mobile {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .feature-wrap {
    margin-bottom: 20px;
  }

  .hide-on-mobile {
    display: none;
  }

  .slide---margin {
    margin-right: 0;
  }

  .map-legends {
    grid-template-columns: 1fr 1fr;
  }

  .section-3 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cta7-map-wrap {
    flex-direction: row;
    min-height: 360px;
    display: flex;
  }

  .section-4-ordi {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cta7-grid {
    grid-column-gap: 24px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    align-content: stretch;
    width: 100%;
    max-width: 738px;
  }

  .divmobileopacity {
    z-index: 1;
    background-color: #ffffff69;
    display: block;
    position: absolute;
    inset: 0%;
  }

  .form-field {
    font-size: 20px;
    line-height: 24px;
  }

  .form-field---dark {
    font-size: 16px;
    line-height: 24px;
  }

  .form-field-2 {
    font-size: 20px;
    line-height: 24px;
  }

  .section-4-ordi-mobile {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-logo {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .footer-home-link {
    width: 22%;
  }

  .image-8 {
    display: none;
  }

  .column-5 {
    padding-left: 47px;
  }

  .form-field-cta {
    font-size: 20px;
    line-height: 24px;
  }

  .form-field---white {
    font-size: 16px;
    line-height: 24px;
  }

  .button-wrap-plans {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section-image-centre, .section-header-plans {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container-boutons {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section-light {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .front-text-bolf {
    margin-bottom: 0;
  }

  .section-collections, .section-txt-in-img {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .visite-virtuelle-header {
    height: auto;
    padding-top: 100px;
  }

  .virtual-soustitle, .virtuel-title {
    font-size: 28px;
    line-height: 36px;
  }

  .form-field---dark-2 {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-section-copy {
    height: auto;
    padding-top: 100px;
  }

  .container-48 {
    flex-direction: column;
    padding-top: 50px;
  }

  .section-prix-habitats {
    display: none;
  }

  .grid-mobile {
    flex-direction: row;
    justify-content: center;
    display: none;
  }

  .columns-29 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
  }

  .section-light-construction-news {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .lancement-center-header {
    width: 100%;
    max-width: none;
    margin: 20px 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  .formulaire-haut {
    width: auto;
  }

  .hero-p, .hero-p-2 {
    font-size: 25px;
    line-height: 30px;
  }

  .lancement-header {
    background-position: 50%;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .lancement-center-header-2 {
    width: 100%;
    max-width: 80%;
    margin: 20px 0;
    padding-left: 40px;
    padding-right: 40px;
  }

  ._2-col-grid-phase1 {
    grid-template-columns: 1fr;
  }

  .section-phase1-split {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-phase1-split.project-body-section {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .section-phase1-split.project-title-section {
    padding-bottom: 52px;
  }

  .container-split {
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-split.careers-container {
    flex-direction: column;
  }

  .container-split.right {
    margin-left: auto;
    margin-right: auto;
  }

  .slider-studio {
    width: 600px;
    height: 400px;
  }

  .bottom-card-phase1 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .bottom-card-phase1.projet, .bottom-card-phase1.quartier, .bottom-card-phase1.projet-phase1 {
    margin-left: auto;
    margin-right: auto;
  }

  .bottom-logo-phase1 {
    max-width: 320px;
  }

  .div-block-phase1 {
    justify-content: center;
    align-items: center;
  }

  ._2-col-grid-phase1a {
    text-align: center;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
  }

  .div-block-13, .div-block-14 {
    text-align: center;
  }

  .section-phase1-split2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-phase1-split2.project-body-section {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .section-phase1-split2.project-title-section {
    padding-bottom: 52px;
  }

  .section-title-rsvp {
    font-size: 28px;
    line-height: 36px;
  }

  .link-block-2 {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }

  h1 {
    margin-bottom: 13px;
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    font-size: 36px;
    line-height: 39px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
    line-height: 30px;
  }

  p {
    margin-bottom: 24px;
  }

  blockquote {
    letter-spacing: -.01em;
    margin-top: 39px;
    margin-bottom: 39px;
    font-size: 28px;
    line-height: 32px;
  }

  .section.no-bottom-space {
    padding-bottom: 0;
  }

  .button.button-large.form-button {
    margin-top: 13px;
  }

  .large-heading {
    font-size: 40px;
    line-height: 48px;
  }

  .content-width-medium.section-title {
    margin-bottom: 52px;
    margin-left: auto;
  }

  .display-1 {
    font-size: 54px;
    line-height: 54px;
  }

  .section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .subtitle {
    margin-bottom: 19px;
  }

  .footer {
    padding-top: 76px;
  }

  .footer-1-top-row {
    margin-bottom: 76px;
  }

  .medium-heading {
    font-size: 36px;
    line-height: 39px;
  }

  .footer-menus-wrapper {
    margin-top: 39px;
    margin-left: 0;
  }

  .footer-1-menus {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .form-input.textarea-input {
    min-height: 150px;
    margin-top: 13px;
  }

  .form-grid-halves {
    grid-row-gap: 13px;
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-column-gap: 16px;
    grid-row-gap: 13px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    display: grid;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .avatar.author-avatar {
    margin-right: 26px;
  }

  .article ul {
    margin-top: 26px;
    margin-bottom: 26px;
  }

  .article figure {
    margin-top: 39px;
    margin-bottom: 39px;
  }

  .career-meta {
    margin-bottom: 26px;
  }

  .project-details-wrapper {
    grid-row-gap: 13px;
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .project-details-item {
    padding-top: 13px;
  }

  .case-study-tile-title {
    margin-top: 26px;
    margin-left: 26px;
  }

  .case-study-tile-image {
    opacity: .5;
  }

  .nav-menu {
    padding: 13px;
  }

  .split-section-scrollable-wrapper {
    height: 420px;
  }

  .back-to-top-button-container {
    display: none;
  }

  .h3-color {
    font-size: 24px;
    line-height: 34px;
  }

  .hero-text {
    font-size: 36px;
    line-height: 44px;
  }

  .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-section._3 {
    background-image: linear-gradient(#ffd6cfb0, #0000009e), url('../images/DashboardHeader.jpg');
    background-position: 0 0, 100%;
    background-size: auto, cover;
    padding-bottom: 60px;
  }

  .hero-section.quartier {
    padding-bottom: 60px;
  }

  .img-section.unites, .img-section.projet-2, .img-section.projet-1, .img-section.newhome {
    background-image: linear-gradient(#e2e0d9e6 20%, #0000 49%), url('../images/S1.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: 500px;
  }

  .front-text {
    font-size: 28px;
    line-height: 36px;
  }

  .bottom-card {
    max-width: none;
    padding: 40px 20px;
  }

  .bottom-logo {
    max-width: 240px;
  }

  .footer---new {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .img-title-wrap {
    padding: 20px 60px;
    font-size: 16px;
  }

  .front-text-wrap {
    text-align: center;
    justify-content: center;
  }

  .slide-nav {
    display: none;
  }

  .map-legends {
    grid-template-columns: 1fr;
  }

  .section-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content23-item {
    margin-bottom: 10px;
  }

  .content23-item-wrap {
    margin-bottom: 20px;
  }

  .section-4-ordi {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta7-grid {
    grid-column-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    max-width: none;
  }

  .divmobileopacity {
    z-index: 1;
    background-color: #ffffff8c;
    display: block;
    position: absolute;
    inset: 0%;
  }

  .hero-col.l {
    padding-right: 0;
  }

  .hero-col.r {
    padding-left: 0;
  }

  .section-4-ordi-mobile {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-home-link {
    width: 35%;
    margin-right: 40px;
  }

  .body-4 {
    font-size: 12px;
  }

  .image-8 {
    display: none;
  }

  .front-text-bolf {
    font-size: 28px;
    line-height: 36px;
  }

  .divinsidepopup {
    height: auto;
  }

  .virtual-soustitle, .virtuel-title {
    font-size: 24px;
    line-height: 32px;
  }

  .insidepopup {
    height: auto;
  }

  .container-48 {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .section-prix-habitats {
    padding-top: 0;
    display: flex;
  }

  .grid-mobile {
    display: none;
  }

  .columns-29 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    display: flex;
  }

  .image-77 {
    max-width: 60%;
    padding-bottom: 33px;
  }

  .column-65 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-77-copy {
    max-width: 70%;
    padding-bottom: 33px;
  }

  .image-77-copy-copy {
    max-width: 60%;
    padding-bottom: 33px;
  }

  .lancement-center-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title-img {
    max-width: 320px;
  }

  .lancement-header {
    background-position: 50%;
  }

  .lancement-center-header-2 {
    max-width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-phase1-split.no-bottom-space {
    padding-bottom: 0;
  }

  .slider-studio {
    width: 500px;
    height: 300px;
  }

  .mask {
    width: 100%;
  }

  .bottom-card-phase1 {
    max-width: none;
    padding: 40px 20px;
  }

  .bottom-logo-phase1 {
    max-width: 240px;
  }

  .button-phase1.button-large.form-button {
    margin-top: 13px;
  }

  .div-block-phase1 {
    justify-content: center;
    align-items: center;
  }

  ._2-col-grid-phase1a {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .image-79 {
    width: 100%;
    height: 400px;
  }

  .section-phase1-split2.no-bottom-space {
    padding-bottom: 0;
  }

  .button-rsvp.button-large.form-button {
    margin-top: 13px;
  }

  .section-title-rsvp {
    font-size: 24px;
    line-height: 32px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 36px;
    line-height: 39px;
  }

  h5 {
    font-size: 18px;
    line-height: 26px;
  }

  blockquote {
    margin-top: 2px;
    margin-bottom: 26px;
  }

  .section {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0;
    display: block;
  }

  .section.pink.img {
    padding-top: 40px;
    display: block;
  }

  .section.light {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section.bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.no-padding {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .section.headerteam {
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .section.light-phase1 {
    padding: 60px 10px;
  }

  .container {
    text-align: left;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    display: block;
  }

  .container.left {
    margin-left: auto;
    padding-top: 0;
  }

  .container.right {
    padding-top: 0;
  }

  .container.hidden {
    padding-left: 0;
    padding-right: 0;
  }

  .button.button-large {
    width: 100%;
    min-width: auto;
  }

  .button.navbar-centered-button, .button.navbar-2-button {
    display: none;
  }

  .button.pink, .button.pink-phase1 {
    width: 280px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }

  .card.blog-card {
    flex: none;
  }

  .card-body {
    padding: 19px;
  }

  .card-body.blog-card-body {
    flex: none;
  }

  .space-bottom {
    margin-bottom: 19px;
  }

  .large-heading {
    font-size: 36px;
    line-height: 39px;
  }

  .large-heading.case-study-tile-heading {
    margin-bottom: 6px;
    font-size: 36px;
    line-height: 39px;
  }

  .display-1 {
    font-size: 40px;
    line-height: 48px;
  }

  .section-title {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin: 50px auto 20px;
    padding-left: 20px;
    padding-right: 10px;
    display: flex;
  }

  .section-title.uppercase {
    text-align: center;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 20px;
    display: flex;
  }

  .section-title.black {
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 22px;
  }

  .subtitle {
    margin-bottom: 13px;
  }

  .navbar-content {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .footer {
    padding-top: 52px;
    padding-bottom: 26px;
  }

  .footer-1-top-row {
    margin-bottom: 39px;
  }

  .footer-menus-wrapper {
    flex-direction: column;
    margin-top: 26px;
  }

  .footer-1-bottom-row {
    flex-direction: column;
    align-items: center;
  }

  .social-list.author-social-list {
    justify-content: center;
  }

  .footer-1-menus {
    flex: none;
    margin-bottom: 39px;
  }

  .footer-fine-print {
    margin-bottom: 26px;
  }

  .announcement-dismiss {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .horizontal-rule {
    margin-top: 19px;
    margin-bottom: 19px;
  }

  .blog-grid {
    grid-row-gap: 13px;
  }

  .card-foot.blog-card-foot {
    flex: none;
    padding-bottom: 19px;
    padding-left: 19px;
    padding-right: 19px;
  }

  .badge.post-badge {
    margin-bottom: 13px;
  }

  .post-main-image {
    margin-bottom: 26px;
  }

  .post-meta-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .avatar {
    width: 39px;
    height: 39px;
  }

  .avatar.author-avatar {
    width: 104px;
    height: 104px;
    margin-bottom: 13px;
    margin-right: 0;
  }

  .article figure {
    margin-top: 26px;
    margin-bottom: 26px;
  }

  .careers-title {
    margin-top: 26px;
  }

  .career-sidebar {
    margin-bottom: 39px;
  }

  .case-study-large-link {
    flex-direction: column-reverse;
  }

  .project-details-wrapper {
    margin-top: 26px;
  }

  .projects-grid-vertical {
    grid-row-gap: 12px;
  }

  .case-study-tile-title {
    margin-top: 0;
    margin-left: 0;
    padding-top: 13px;
    padding-left: 13px;
    padding-right: 13px;
  }

  .dropdown-content {
    padding: 6px 13px;
  }

  .dropdown-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .split-section-scrollable-wrapper {
    height: 380px;
  }

  .author-container {
    text-align: center;
    flex-direction: column;
  }

  .hero-image-div.sizesmall {
    background-position: 50%;
    padding-top: 0;
  }

  .h3-color {
    margin-top: 6px;
    font-size: 18px;
    line-height: 26px;
  }

  .hero-text {
    margin-top: 5%;
    margin-left: 5%;
    font-size: 26px;
    line-height: 36px;
  }

  .hero-text.dashboard {
    margin-top: 12%;
    font-size: 38px;
    line-height: 48px;
  }

  .text-block-2 {
    color: var(--white);
    justify-content: center;
    align-items: center;
    font-size: 32px;
    line-height: 42px;
    display: flex;
  }

  .light-blue-button.big {
    font-size: 14px;
  }

  .image-3 {
    display: block;
  }

  .image-4 {
    display: none;
  }

  .footer-logo-v2 {
    max-width: 150px;
  }

  .hero-section._1, .hero-section._2 {
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .hero-section.quartier {
    background-image: linear-gradient(to bottom, null, null), url('../images/Q-Hero.png');
    background-position: 0 0, 100%;
  }

  .hero-section.plansheader {
    padding-top: 20px;
    padding-bottom: 240px;
  }

  ._2-col-grid {
    grid-column-gap: 100px;
    grid-row-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }

  ._2-col-grid.min-space {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: start;
    place-items: center;
    display: block;
  }

  .section-subtitle {
    text-align: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .img-section.unites {
    background-image: linear-gradient(#e2e0d9e6 26%, #0000 49%), url('../images/S1.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: 450px;
  }

  .img-section.unites.withshadow {
    background-image: linear-gradient(#072642cc, #0000 32%), url('../images/Espaces2.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    padding-top: 30px;
  }

  .img-section.projet-2 {
    background-image: linear-gradient(#e2e0d9e6 26%, #0000 49%), url('../images/pont-illumine.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: 770px;
    padding: 30px 10px 0;
  }

  .img-section.projet-1 {
    background-image: linear-gradient(#ffffffc7 29%, #0000 46%), url('../images/building2_1.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: 550px;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .img-section.newhome {
    background-image: url('../images/BuildingHomePage.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
  }

  .front-text {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 24px;
    line-height: 32px;
  }

  .front-text.white {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
    line-height: 26px;
  }

  .front-text.smaller {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 26px;
  }

  .align-center {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .pink-subtitle {
    text-align: center;
  }

  .pink-subtitle.uppercase {
    padding-bottom: 0;
  }

  ._3-col-grid.align-center {
    display: flex;
  }

  .section-img {
    margin-top: 0;
  }

  .button-wrap {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    position: static;
  }

  .button-wrap.full {
    margin-top: 0;
  }

  .arrow-link {
    text-align: center;
    padding-left: 0;
  }

  ._2-3-col-grid {
    justify-content: flex-start;
    align-items: flex-start;
    display: block;
  }

  .arrow-link-wrap {
    padding-left: 20px;
  }

  .half-img-bg.right, .half-img-bg.below-hero, .half-img-bg.hide-on-mobile {
    display: none;
  }

  .footer---new {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .footer-links {
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
  }

  .hero-logo {
    margin-bottom: 0;
  }

  .hero-logo.absolute {
    inset: 0% 0% auto auto;
  }

  .hero-logo.large {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .hero-logo.invertedwhite {
    max-width: 150px;
    padding-bottom: 30px;
  }

  .menu-button-2 {
    font-size: 9px;
  }

  .img-title-wrap {
    justify-content: center;
    align-items: center;
  }

  .img-title-wrap.right {
    color: var(--black);
    align-items: center;
  }

  .img-title-wrap.middle, .light-text {
    color: var(--black);
  }

  .front-text-wrap {
    display: block;
  }

  .front-text-wrap.larger {
    grid-template-columns: 1.25fr;
  }

  .feature-wrap.white {
    margin-top: 0;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-content {
    padding-top: 0;
  }

  .hide-on-mobile {
    display: none;
  }

  .bottomtext-2 {
    font-size: 12px;
  }

  .paragraph {
    padding-left: 20px;
    padding-right: 10px;
  }

  .section-3 {
    padding: 0 0 50px;
  }

  .content23-item {
    margin-right: 0;
  }

  .content23-item-wrap {
    text-align: center;
    margin-left: 0;
    display: block;
  }

  .paragraph-2 {
    text-align: center;
  }

  .cta7-map-wrap {
    justify-content: flex-start;
    padding-right: 0;
  }

  .section-4-ordi {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
  }

  .paragraph-70.paragraph70-bottom-clear, .paragraph-70.paragraphformphase1 {
    font-size: 14px;
    line-height: 20px;
  }

  .wrapper {
    margin-top: 0;
  }

  .wrapper.m100-50 {
    text-align: center;
    padding: 30px 10px 50px;
    display: flex;
  }

  .cta7-grid {
    grid-column-gap: 12px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .size3-text.size3-top-clear {
    font-size: 18px;
    line-height: 22px;
  }

  .logowhite {
    width: 80px;
    max-width: 80px;
    height: 50px;
    margin-bottom: 10px;
    padding-left: 0;
  }

  .divmobileopacity {
    background-color: #fff9;
    display: block;
    position: absolute;
    inset: 0%;
  }

  .sliderunit {
    height: 250px;
    margin-top: 40px;
  }

  .grid {
    text-align: center;
    grid-template-columns: .5fr .5fr;
    place-content: stretch space-between;
    align-items: center;
    margin: 0 0%;
    display: block;
  }

  .logoteam {
    width: 200px;
    margin-top: 0;
    padding-top: 0;
  }

  .sectionresimo {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .form-field {
    height: 40px;
    margin-top: 10px;
    padding-right: 0;
    font-size: 15px;
    line-height: 20px;
  }

  .form-field.select {
    padding-left: 2px;
    padding-right: 0;
  }

  .submit-button {
    text-align: center;
    font-size: 16px;
    display: inline-block;
  }

  .hero-col.l, .hero-col.r {
    padding-left: 0;
    padding-right: 0;
  }

  .form-field---dark {
    border-width: 1px;
    border-color: #fff #fff var(--black);
    color: var(--black);
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    height: 40px;
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 5px;
    padding-right: 0;
    font-size: 14px;
    line-height: 20px;
    display: block;
  }

  .form-field---dark::placeholder {
    color: var(--black);
  }

  .form-block {
    display: none;
  }

  .form-mobile-cta {
    text-align: center;
  }

  .form-mobile {
    display: flex;
  }

  .paragraph-71 {
    margin-bottom: 0;
  }

  .sectionimage {
    padding-left: 0;
    padding-right: 0;
  }

  .divcontact {
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .form-field-2 {
    height: 40px;
    margin-top: 10px;
    padding-right: 0;
    font-size: 15px;
    line-height: 20px;
  }

  .form-field-2.select {
    padding-left: 2px;
    padding-right: 0;
  }

  .form-3 {
    display: block;
  }

  .paragraph-72, .paragraph-73, .paragraph-75 {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 10px;
  }

  .paragraph-76 {
    margin-bottom: 0;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 10px;
  }

  .section-4-ordi-mobile {
    padding-left: 16px;
    padding-right: 16px;
    display: block;
  }

  .wrapper-mobile.m100-50 {
    text-align: center;
    padding: 30px 10px;
    display: block;
  }

  .text-block-3, .text-block-4, .text-block-5 {
    text-align: left;
  }

  .paragraph-78 {
    text-align: left;
    padding-left: 20px;
    padding-right: 10px;
  }

  .section-logo {
    display: none;
  }

  .image-7 {
    width: 20%;
    display: block;
  }

  .column-3 {
    justify-content: center;
  }

  .column-4 {
    text-align: center;
    justify-content: center;
    padding-top: 25px;
  }

  .footer-contact-div {
    width: 100%;
    max-width: 290px;
  }

  .socialblock {
    margin-top: 20px;
    margin-left: 0;
  }

  .footer-container {
    flex-direction: column;
    justify-content: center;
    padding-right: 0;
    display: flex;
  }

  .footer-home-link {
    width: 45%;
    margin-bottom: 40px;
    margin-right: 0;
  }

  .body-4 {
    text-align: center;
  }

  .socialblock-2 {
    margin-top: 20px;
    margin-left: 0;
    display: none;
  }

  .section-5 {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0;
  }

  .columns {
    display: none;
  }

  .text-block-6, .text-block-7 {
    text-align: center;
  }

  .paragraph-2-copy {
    text-align: center;
    margin-left: 0;
    padding-top: 10px;
  }

  .text-block-8 {
    text-align: left;
  }

  .submit-button-copy {
    text-align: center;
    font-size: 16px;
    display: inline-block;
  }

  .image-form {
    width: 60%;
  }

  .form-field-cta {
    border-bottom-width: 1px;
    height: 40px;
    margin-top: 10px;
    padding-right: 0;
    font-size: 15px;
    line-height: 20px;
  }

  .form-field-cta.select {
    margin-top: 0;
    padding-left: 2px;
    padding-right: 0;
    font-size: 15px;
  }

  .form-field---white {
    border-width: 1px;
    border-color: #fff #fff var(--gainsboro);
    color: var(--white);
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    height: 40px;
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 5px;
    padding-right: 0;
    font-size: 14px;
    line-height: 20px;
    display: block;
  }

  .form-field---white::placeholder {
    color: var(--white);
  }

  .html-embeded-ordi {
    display: none;
  }

  .html-embeded-mobile {
    justify-content: center;
    align-items: center;
    height: 400px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .text-block-12 {
    text-align: left;
  }

  .form-block-2 {
    display: none;
  }

  .div-block-6 {
    max-width: none;
  }

  .div-block-7 {
    max-width: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  .paragraph-79 {
    text-align: left;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 10px;
  }

  .text-block-14 {
    text-align: left;
  }

  .bold-text-12 {
    text-align: center;
  }

  .html-embed-3 {
    padding-bottom: 25px;
  }

  .paragraph-81 {
    padding-left: 20px;
    padding-right: 10px;
  }

  .form-block-3 {
    display: none;
  }

  .paragraph-82 {
    padding-left: 20px;
    padding-right: 10px;
  }

  .paragraph-83, .paragraph-84 {
    text-align: left;
    padding-left: 20px;
    padding-right: 10px;
  }

  .paragraph-85 {
    text-align: left;
    margin-bottom: 0;
    padding: 30px 10px 30px 20px;
  }

  .div-block-8 {
    margin-left: auto;
    margin-right: auto;
  }

  .paragraph-86, .paragraph-87, .paragraph-88 {
    padding-left: 20px;
    padding-right: 10px;
  }

  .paragraph-89, .paragraph-90 {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 10px;
  }

  .paragraph-91 {
    padding-left: 20px;
    padding-right: 10px;
  }

  .paragraph-92 {
    text-align: left;
    padding-left: 20px;
    padding-right: 10px;
  }

  .paragraph-93 {
    padding-left: 20px;
    padding-right: 10px;
    display: block;
  }

  .text-block-17 {
    text-align: left;
  }

  .button-wrap-head {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    display: flex;
    position: static;
  }

  .section-subtitle-team {
    text-align: center;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .paragraph-95, .paragraph-96 {
    padding-left: 20px;
    padding-right: 10px;
  }

  .button-wrap-plans {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 10px;
    display: flex;
  }

  .paragraph-97, .paragraph-98, .paragraph-100, .paragraph-101 {
    padding-left: 20px;
    padding-right: 10px;
  }

  .section-subtitle-text {
    text-align: left;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 10px;
    display: block;
  }

  .text-block-18, .text-block-19 {
    text-align: left;
  }

  .image-12 {
    display: none;
  }

  .paragraph-103 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-image-centre {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .section-image-centre.light {
    padding: 0;
  }

  .image-13 {
    margin-top: 40px;
  }

  .button-copy.pink {
    width: 220px;
    margin-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
  }

  .section-header-plans {
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0 0;
    display: block;
  }

  .image-14 {
    cursor: pointer;
    padding-left: 5px;
    padding-right: 5px;
  }

  .button-download.pink {
    width: 300px;
    min-width: 0;
    max-width: none;
    margin-top: 20px;
    margin-left: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    font-size: 12px;
  }

  .columns-2 {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: auto;
    display: flex;
  }

  .column-9 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .container-boutons {
    text-align: left;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 30px;
    display: block;
  }

  .section-light {
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
    display: block;
  }

  .front-text-bolf {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 24px;
    line-height: 32px;
  }

  .section-collections {
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
    display: block;
  }

  .section-collections.no-padding {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .section-txt-in-img {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 60px;
    display: block;
  }

  .slider-2 {
    height: 300px;
  }

  .div-block-9 {
    padding-top: 40px;
  }

  .brochuremobile {
    display: block;
  }

  .brochureordi {
    display: none;
  }

  .divpopup {
    width: auto;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    display: none;
  }

  .divinsidepopup {
    background-color: #ffffffe6;
    flex: 0 auto;
    align-self: flex-start;
    width: 100%;
    height: auto;
    margin-top: 80px;
    display: block;
    position: static;
    inset: 0%;
  }

  .xclose {
    color: var(--salmon-2);
    padding-top: 3px;
    font-size: 18px;
    line-height: 20px;
    position: absolute;
    inset: auto;
  }

  .divpopup-2 {
    width: auto;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    display: none;
  }

  .div-xclose-2 {
    object-fit: fill;
    width: auto;
    display: block;
    position: absolute;
    inset: auto;
    overflow: visible;
  }

  .text-block-20 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }

  .visite-virtuelle-header.virtuelleheader {
    padding-top: 20px;
    padding-bottom: 240px;
  }

  .virtual-soustitle {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 18px;
    line-height: 20px;
    display: flex;
  }

  .virtuel-title {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 10px;
    display: flex;
  }

  .popup {
    width: auto;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    display: none;
  }

  .insidepopup {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: #ffffffe6;
    flex-direction: row;
    flex: 0 auto;
    justify-content: flex-end;
    align-self: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-top: 80px;
    display: flex;
    position: static;
    inset: 0%;
  }

  .xclose-3 {
    border-color: var(--salmon);
    color: var(--salmon);
    margin-top: 10px;
    margin-left: 0;
    margin-right: 10px;
    padding: 5px 6px 4px;
    font-size: 18px;
    line-height: 20px;
    position: static;
    inset: auto;
  }

  .section-8 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-4 {
    font-size: 16px;
    line-height: 28px;
  }

  .section-9 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .formulaire-bas-ordi {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .form-field---dark-2 {
    height: 40px;
    margin-top: 10px;
    margin-bottom: 0;
    padding-right: 0;
    font-size: 14px;
    line-height: 20px;
    display: block;
  }

  .submit-button-2 {
    text-align: center;
    font-size: 16px;
    display: inline-block;
  }

  .form-4 {
    width: auto;
  }

  .hero-logo-copy {
    margin-bottom: 0;
  }

  .hero-section-copy._2-copy {
    padding-top: 144px;
    padding-bottom: 100px;
  }

  .container-48 {
    flex-direction: column;
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .image-76 {
    width: 100px;
  }

  .columns-25 {
    text-align: left;
    flex-direction: column;
  }

  .paragraph-35 {
    text-align: center;
    margin-bottom: 0;
    padding-top: 0;
  }

  .heading-562 {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 26px;
  }

  .section-prix-habitats {
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-75 {
    width: 100px;
  }

  .grid-3 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: column;
    grid-template-rows: 150px minmax(5px, .6fr);
    grid-template-columns: minmax(200px, 1fr) minmax(280px, 1fr) 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-content: space-between center;
    place-items: center;
    display: flex;
  }

  .grid-mobile {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex-flow: column;
    grid-template: "." minmax(5px, .6fr)
                   "." 150px
                   / minmax(200px, 1fr) 1fr minmax(280px, 1fr) minmax(0, .25fr);
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-content: space-between center;
    place-items: center;
    display: none;
  }

  .columns-29 {
    flex-direction: column;
    margin-bottom: 50px;
    display: flex;
  }

  .image-77 {
    max-width: 60%;
    padding-bottom: 27px;
  }

  .column-65 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-77-copy {
    max-width: 70%;
    padding-bottom: 27px;
  }

  .image-77-copy-copy {
    max-width: 40%;
    padding-bottom: 27px;
  }

  .section-light-construction-news {
    margin-left: auto;
    margin-right: auto;
    padding: 20px 0;
    display: block;
  }

  .slider-3 {
    display: none;
  }

  .lancement-center-header {
    background-color: #0000004f;
    margin-top: 0;
    margin-bottom: 0;
  }

  .formulaire-haut {
    background-color: #0000009e;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: none;
    margin-bottom: 30px;
    padding: 20px 5px 40px;
    display: flex;
  }

  .hero-title-img {
    max-width: 240px;
  }

  .hero-content-wrap-ordi {
    display: block;
  }

  .hero-p, .hero-p-2 {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    line-height: 20px;
  }

  .lancement-header {
    background-position: 50%;
    background-size: cover;
    padding-top: 0;
    padding-bottom: 0;
  }

  .lang-link {
    color: #e2e0d9;
  }

  .lancement-center-header-2 {
    background-color: #0000;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .politique {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }

  .link-2 {
    color: #fff;
  }

  .bottomtext-2-copy {
    font-size: 12px;
  }

  .section-11, .div-block-10 {
    margin-left: auto;
    margin-right: auto;
  }

  .heading-564 {
    font-size: 22px;
    line-height: 30px;
  }

  ._2-col-grid-phase1 {
    grid-column-gap: 100px;
    grid-row-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    margin-left: 0;
    margin-right: 0;
    display: grid;
  }

  ._2-col-grid-phase1.min-space {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: start;
    place-items: center;
    display: block;
  }

  .section-phase1-split {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0;
    display: block;
  }

  .section-phase1-split.pink.img {
    padding-top: 40px;
    display: block;
  }

  .section-phase1-split.light {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-phase1-split.bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-phase1-split.no-padding {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .section-phase1-split.headerteam {
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .section-phase1-split.light-phase1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-split {
    text-align: left;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    display: block;
  }

  .container-split.left {
    margin-left: auto;
    padding-top: 0;
  }

  .container-split.right {
    padding-top: 0;
  }

  .container-split.hidden {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-11 {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .slider-studio {
    width: 300px;
    height: auto;
  }

  .paragraph-phase1.paragraph70-bottom-clear, .paragraph-phase1.paragraphformphase1 {
    font-size: 14px;
    line-height: 20px;
  }

  .sectionresimophase1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .slider-images-studio {
    width: 100%;
    height: 400px;
  }

  .button-phase1.button-large {
    width: 100%;
    min-width: auto;
  }

  .button-phase1.navbar-centered-button, .button-phase1.navbar-2-button {
    display: none;
  }

  .button-phase1.pink, .button-phase1.pink-phase1 {
    width: 280px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }

  .button-wrap-phase1 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    position: static;
  }

  .button-wrap-phase1.full {
    margin-top: 0;
  }

  .div-block-phase1 {
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 0;
    padding-left: 0;
  }

  .slider-1-chambre {
    width: 100%;
    height: auto;
  }

  ._2-col-grid-phase1a {
    grid-column-gap: 100px;
    grid-row-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }

  ._2-col-grid-phase1a.min-space {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-content: start;
    place-items: center;
    display: block;
  }

  .image-79 {
    height: auto;
  }

  .div-block-12 {
    width: auto;
  }

  .div-block-13, .div-block-14 {
    padding-left: 0;
  }

  .section-phase1-split2 {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0;
    display: block;
  }

  .section-phase1-split2.pink.img {
    padding-top: 40px;
    display: block;
  }

  .section-phase1-split2.light {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-phase1-split2.bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-phase1-split2.no-padding {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .section-phase1-split2.headerteam {
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .section-phase1-split2.light-phase1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .button-rsvp.button-large {
    width: 100%;
    min-width: auto;
  }

  .button-rsvp.navbar-centered-button, .button-rsvp.navbar-2-button {
    display: none;
  }

  .button-rsvp.pink, .button-rsvp.pink-phase1 {
    width: 280px;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }

  .paragraph-rsvp {
    text-align: center;
  }

  .button-wrap-copy {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    position: static;
  }

  .button-wrap-copy.full {
    margin-top: 0;
  }

  .section-title-rsvp {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin: 50px auto 20px;
    padding-left: 20px;
    padding-right: 10px;
    display: flex;
  }

  .section-title-rsvp.uppercase {
    text-align: center;
    flex-wrap: nowrap;
    justify-content: center;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 20px;
    display: flex;
  }

  .section-title-rsvp.black {
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 22px;
  }

  .text-block-rsvp {
    text-align: center;
  }

  .div-block-16 {
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
  }

  .text-block-27 {
    line-height: 25px;
  }

  .section-centrale, .section-centrale-en {
    height: 300px;
  }

  .bold-text-12-copy {
    text-align: center;
  }
}

#w-node-_9d8cd9cb-3396-6616-37bc-b5452106dc93-c8fd0f85, #w-node-f0811dfb-4aec-ce8a-4509-a8ff369fa80a-c8fd0f85, #w-node-_74dd8f47-617a-9981-e046-4c9a9f0598aa-c8fd0f85, #w-node-_96035974-9bcd-9a04-a743-9b03214c9152-c8fd0f85, #w-node-_117af7b1-9917-097c-54b8-4a01bfcb84de-c8fd0f85 {
  align-self: center;
}

#w-node-a7e151da-485f-3aab-5625-0dc0bb7ba860-c8fd0f85, #w-node-a7e151da-485f-3aab-5625-0dc0bb7ba857-c8fd0f85, #w-node-a7e151da-485f-3aab-5625-0dc0bb7ba869-c8fd0f85, #w-node-a7e151da-485f-3aab-5625-0dc0bb7ba872-c8fd0f85, #w-node-a7e151da-485f-3aab-5625-0dc0bb7ba876-c8fd0f85 {
  place-self: center;
}

#w-node-a7e151da-485f-3aab-5625-0dc0bb7ba874-c8fd0f85 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7bb586e1-09fb-3a6a-b733-ad8bfaac4081-faac4073 {
  justify-self: end;
}

#w-node-_7bb586e1-09fb-3a6a-b733-ad8bfaac4077-faac4073 {
  justify-self: center;
}

#w-node-_432e8833-326f-2469-d6e5-f3e8a8626060-c8fd0fe7 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_432e8833-326f-2469-d6e5-f3e8a8626074-c8fd0fe7 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-e77d65a7-b8ad-1d2e-1da2-f6674021d6e7-c8fd1024, #w-node-_9eba0fb1-23b7-8ddf-c08d-96b86ca869d3-c8fd1024, #w-node-c8585de1-10b1-1435-b852-31f3edf913ea-c8fd1024, #w-node-_96035974-9bcd-9a04-a743-9b03214c9152-c8fd1024, #w-node-_117af7b1-9917-097c-54b8-4a01bfcb84de-c8fd1024 {
  align-self: center;
}

#w-node-_2a98bdcd-7671-2605-5af5-4f6d0f48834a-c8fd1024, #w-node-_2a98bdcd-7671-2605-5af5-4f6d0f48834b-c8fd1024, #w-node-_2a98bdcd-7671-2605-5af5-4f6d0f48834c-c8fd1024, #w-node-_2a98bdcd-7671-2605-5af5-4f6d0f48834d-c8fd1024, #w-node-_2a98bdcd-7671-2605-5af5-4f6d0f488356-c8fd1024 {
  place-self: center;
}

#w-node-_2a98bdcd-7671-2605-5af5-4f6d0f488364-c8fd1024 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_26f7a3c6-97b7-efa0-e2fd-8f88be0d3053-c8fd1124 {
  place-self: auto;
}

#w-node-c5273c21-cd64-25c8-0b95-4e05c37685a3-c8fd1124, #w-node-c5273c21-cd64-25c8-0b95-4e05c37685b2-c8fd1124, #w-node-_8820ffb5-4daf-661e-0a22-f5c2f0273042-c8fd1124, #w-node-_0f20de9c-5816-ed9d-9861-a0ba2976782e-c8fd1124, #w-node-_7843a345-c0f9-2743-0b63-172e4c22f59d-c8fd1124, #w-node-_7843a345-c0f9-2743-0b63-172e4c22f5b3-c8fd1124, #w-node-_54fc2acc-55b7-bc91-d3b1-be097b7bfe70-c8fd1124, #w-node-_54fc2acc-55b7-bc91-d3b1-be097b7bfe71-c8fd1124, #w-node-b9518fda-9689-3e21-5f67-2c7847672686-c8fd112e, #w-node-_853c394d-99bb-5165-702b-f35c321f316a-c8fd112e, #w-node-_96035974-9bcd-9a04-a743-9b03214c9152-c8fd112e, #w-node-_117af7b1-9917-097c-54b8-4a01bfcb84de-c8fd112e, #w-node-b9518fda-9689-3e21-5f67-2c7847672686-c8fd112f, #w-node-_853c394d-99bb-5165-702b-f35c321f316a-c8fd112f, #w-node-_96035974-9bcd-9a04-a743-9b03214c9152-c8fd112f, #w-node-_117af7b1-9917-097c-54b8-4a01bfcb84de-c8fd112f, #w-node-_24df34b8-da12-8817-f98f-ee98dbed8f69-c8fd1130, #w-node-_06e5227d-6b37-f281-4c70-d22c7775583a-c8fd1130, #w-node-_06e5227d-6b37-f281-4c70-d22c7775584b-c8fd1130, #w-node-_8820ffb5-4daf-661e-0a22-f5c2f0273042-c8fd1130, #w-node-_0f20de9c-5816-ed9d-9861-a0ba2976782e-c8fd1130, #w-node-_7843a345-c0f9-2743-0b63-172e4c22f59d-c8fd1130, #w-node-_7843a345-c0f9-2743-0b63-172e4c22f5b3-c8fd1130, #w-node-_9aeba547-0b18-d740-f640-5f0c9ee68774-c8fd1130, #w-node-_9aeba547-0b18-d740-f640-5f0c9ee68775-c8fd1130 {
  align-self: center;
}

#w-node-_432e8833-326f-2469-d6e5-f3e8a8626060-c8fd1132 {
  grid-area: span 1 / span 5 / span 1 / span 5;
}

#w-node-_432e8833-326f-2469-d6e5-f3e8a8626074-c8fd1132 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_96035974-9bcd-9a04-a743-9b03214c9152-c8fd1174, #w-node-_96035974-9bcd-9a04-a743-9b03214c9152-c8fd1175, #w-node-_7ae53d6e-9887-6e0d-afcb-010df3fbfe6c-60c1ff1a {
  align-self: center;
}

#w-node-_35b139f0-8484-053f-37a0-b142660779eb-60c1ff1a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1f738481-c041-2d73-46d4-4b8a39b7867c-60c1ff1a, #w-node-_1f738481-c041-2d73-46d4-4b8a39b78687-60c1ff1a, #w-node-_5b974d79-56a3-f90e-71ce-b06a330aaa02-60c1ff1a, #w-node-_5b974d79-56a3-f90e-71ce-b06a330aaa0b-60c1ff1a {
  align-self: center;
}

#w-node-_0143f391-1422-a6c1-32fe-10d1bacd846e-60c1ff1a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7ae53d6e-9887-6e0d-afcb-010df3fbfe6c-1a172fd8 {
  align-self: center;
}

#w-node-_35b139f0-8484-053f-37a0-b142660779eb-1a172fd8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1f738481-c041-2d73-46d4-4b8a39b7867c-1a172fd8, #w-node-_1f738481-c041-2d73-46d4-4b8a39b78687-1a172fd8, #w-node-_5b974d79-56a3-f90e-71ce-b06a330aaa02-1a172fd8, #w-node-_5b974d79-56a3-f90e-71ce-b06a330aaa0b-1a172fd8 {
  align-self: center;
}

#w-node-_0143f391-1422-a6c1-32fe-10d1bacd846e-1a172fd8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9d8cd9cb-3396-6616-37bc-b5452106dc93-5fea6aaa, #w-node-f0811dfb-4aec-ce8a-4509-a8ff369fa80a-5fea6aaa, #w-node-_74dd8f47-617a-9981-e046-4c9a9f0598aa-5fea6aaa, #w-node-_96035974-9bcd-9a04-a743-9b03214c9152-5fea6aaa, #w-node-_117af7b1-9917-097c-54b8-4a01bfcb84de-5fea6aaa {
  align-self: center;
}

#w-node-a7e151da-485f-3aab-5625-0dc0bb7ba860-5fea6aaa, #w-node-a7e151da-485f-3aab-5625-0dc0bb7ba857-5fea6aaa, #w-node-a7e151da-485f-3aab-5625-0dc0bb7ba869-5fea6aaa, #w-node-a7e151da-485f-3aab-5625-0dc0bb7ba872-5fea6aaa, #w-node-a7e151da-485f-3aab-5625-0dc0bb7ba876-5fea6aaa {
  place-self: center;
}

#w-node-a7e151da-485f-3aab-5625-0dc0bb7ba874-5fea6aaa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_432e8833-326f-2469-d6e5-f3e8a8626074-c8fd0fe7, #w-node-_432e8833-326f-2469-d6e5-f3e8a8626074-c8fd1132 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_432e8833-326f-2469-d6e5-f3e8a8626074-c8fd0fe7, #w-node-_432e8833-326f-2469-d6e5-f3e8a8626074-c8fd1132 {
    grid-column: span 6 / span 6;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_432e8833-326f-2469-d6e5-f3e8a8626074-c8fd0fe7, #w-node-_432e8833-326f-2469-d6e5-f3e8a8626074-c8fd1132 {
    grid-column: span 5 / span 5;
  }
}


@font-face {
  font-family: 'Monumentextended';
  src: url('../fonts/MonumentExtended-Ultralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Monumentextended';
  src: url('../fonts/MonumentExtended-Ultrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Monumentextended';
  src: url('../fonts/MonumentExtended-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Monumentextended';
  src: url('../fonts/MonumentExtended-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}