@font-face {
  font-family: Firasans;
  src: url('../fonts/FiraSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Firasans;
  src: url('../fonts/FiraSans-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --tan: #ac9660;
  --nouveau-vert: #112b2a;
  --midnight-blue: #142944;
}

.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;
}

.w-embed-youtubevideo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.w-embed-youtubevideo:empty {
  min-height: 75px;
  padding-bottom: 56.25%;
}

@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: #333;
  font-family: Firasans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}

.side-nav {
  z-index: 3;
  background-color: var(--tan);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 60px;
  height: 100vh;
  display: flex;
  position: fixed;
}

.section {
  background-color: var(--nouveau-vert);
  color: #fff;
  height: 100vh;
  padding-bottom: 0;
  padding-left: 60px;
  position: relative;
}

.section.footer {
  color: #fff;
  background-color: #1c2e2c;
  background-image: linear-gradient(#112b2ae6, #112b2ae6), url('../images/footer-BG.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 120vh;
  display: flex;
}

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

.section.brown {
  background-color: var(--tan);
}

.section.homepage {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.less {
  padding-left: 0;
}

.section.footer2 {
  color: #fff;
  background-color: #132944;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 0;
  display: flex;
}

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

.main-logo {
  z-index: 2;
  width: 300px;
  display: none;
  position: absolute;
  inset: 60px auto auto 140px;
}

.main-logo.lessmargin {
  top: 0;
}

.main-logo.hidden {
  display: none;
}

.main-logo.smaller {
  width: 300px;
}

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

.section-img.full {
  object-fit: cover;
}

.section-content-wrap {
  background-color: var(--nouveau-vert);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 0 100px 46px;
  display: flex;
}

.section-content-wrap.brown, .section-content-wrap.gold {
  background-color: var(--tan);
}

.section-content-wrap.vi-section {
  background-color: var(--tan);
  background-image: linear-gradient(80deg, #ac966099, #ac9660 50%), url('../images/Gold5Leaf.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-y;
  background-size: auto, auto;
  align-items: center;
  height: 100%;
}

.section-content-wrap.vi-section.v2 {
  background-image: linear-gradient(#ac966059, #ac966059), url('../images/Gold6Leaf.jpg');
  background-position: 0 0, 0 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.section-content-wrap.vi-section.blue {
  background-color: var(--nouveau-vert);
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0);
}

.section-content-wrap.vi-section.blue.contact {
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0), linear-gradient(#0000, #0000);
  padding-top: 0;
  padding-bottom: 0;
}

.full-slider {
  height: 100vh;
  overflow: hidden;
}

.slide-arrow {
  background-color: #ac9660b3;
  width: 60px;
  height: 60px;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 24px;
  line-height: 24px;
  transition: all .2s;
}

.slide-arrow:hover {
  color: #000;
  background-color: #ac9660;
}

.menu-button {
  z-index: 3;
  color: #fff;
  background-color: #0000004d;
  border: 2px #fff;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: fixed;
  inset: 20px 20px auto auto;
}

.menu-button:hover {
  border-color: var(--tan);
  background-color: var(--tan);
}

.menu-wrap {
  z-index: 2000;
  background-color: var(--tan);
  background-image: linear-gradient(205deg, #ac9660 65%, #ac966040), url('../images/Gold.png');
  background-position: 0 0, 0 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 500px;
  padding: 80px 40px 60px 60px;
  display: none;
  position: fixed;
  inset: 0% 0% 0% auto;
  box-shadow: -2px 0 7px 11px #00000026;
}

.menu-link {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 32px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.menu-link:hover {
  color: var(--midnight-blue);
}

.menu-close {
  cursor: pointer;
  object-fit: contain;
  width: 15px;
  height: 15px;
  transition: all .2s;
  position: absolute;
  inset: 20px 20px auto auto;
}

.menu-close:hover {
  filter: invert();
}

.menu-icon {
  object-fit: contain;
  width: 30px;
  height: 30px;
  margin-left: 20px;
}

.arrow-up {
  color: #fff;
  cursor: pointer;
  flex: none;
  font-size: 24px;
  line-height: 24px;
  transition: all .2s;
  position: absolute;
  inset: 60px 0% auto;
  transform: rotate(90deg);
}

.arrow-up:hover {
  color: #000;
}

.arrow-down {
  color: #fff;
  cursor: pointer;
  flex: none;
  font-size: 24px;
  line-height: 24px;
  transition: all .2s;
  position: absolute;
  inset: auto 0% 60px;
  transform: rotate(-90deg);
}

.arrow-down:hover {
  color: #000;
}

.section-subtitle {
  text-transform: uppercase;
  padding-bottom: 20px;
  font-size: 20px;
}

.section-title {
  color: #fff;
  padding-bottom: 25px;
  font-size: 30px;
  line-height: 40px;
}

.section-title.morespace {
  margin-top: 70px;
}

.section-title.morespace.centered {
  text-align: center;
  width: 500px;
}

.section-title.center {
  text-align: center;
  padding-top: 25px;
}

.features-wrap {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  display: flex;
}

.feature-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 29%;
  margin: 20px 10px 0;
  font-size: 14px;
  line-height: 18px;
  display: flex;
}

.feature-icon {
  object-fit: contain;
  width: 70px;
  height: 70px;
  margin-bottom: 7px;
}

.button-wrap {
  padding-top: 20px;
}

.button {
  text-align: center;
  background-color: #0000;
  border: 2px solid #fff;
  width: 275px;
  padding: 12px 20px;
  transition: all .2s;
}

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

.align-center {
  text-align: center;
  background-color: #112b2a00;
  border-top: 1px #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 60px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.field-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 10px;
  display: grid;
}

.field-wrap._1-col {
  display: block;
}

.text-field {
  color: #fff;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #fff;
  height: 35px;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
}

.text-field:active, .text-field:focus, .text-field:focus-visible, .text-field[data-wf-focus-visible] {
  background-color: var(--nouveau-vert);
}

.text-field::placeholder {
  color: #fff;
}

.form-block {
  width: 850px;
  max-width: 850px;
  padding-left: 40px;
  padding-right: 40px;
}

.form-block.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.divider {
  background-color: #fff9;
  width: 90%;
  height: 1px;
  margin: 10px auto 20px;
}

.gym-img {
  object-fit: contain;
  max-height: 700px;
}

.slide-nav {
  padding-bottom: 60px;
  font-size: 8px;
  line-height: 10px;
}

.footer-info {
  margin-top: 25px;
  font-size: 12px;
  line-height: 14px;
}

.padding-block---mobile {
  display: none;
}

.footer-logo.margin {
  margin-top: 40px;
}

.loading-overlay {
  z-index: 9999;
  background-color: #1c2e2c;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.gallery-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 33.3% 33.3% 33.3%;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 80%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.lottiemenu {
  height: 200px;
}

.centeredlottie {
  width: 300px;
}

.hero-bg-video {
  z-index: 0;
  background-color: #5a2330;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.home-page {
  z-index: 2;
  width: 300px;
  position: relative;
  inset: 0% auto auto;
}

.video-link {
  z-index: 9997;
  margin-top: 50px;
  transition: all .2s;
  display: flex;
  position: relative;
}

.video-link:hover {
  transform: scale(1.1);
}

.video-modal {
  z-index: 9998;
  background-color: #000000e6;
  justify-content: center;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
  display: none;
  position: fixed;
  inset: 0%;
}

.htmlembed {
  width: 80%;
}

.video-close-button {
  cursor: pointer;
  margin-top: 40px;
  margin-right: 40px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.paragraphcentered {
  text-align: center;
  width: 60%;
}

.slidertext {
  position: absolute;
  bottom: 60px;
  left: 30px;
}

.underlogo {
  z-index: 2;
  width: 300px;
  position: relative;
  inset: 30px auto auto;
}

.divhalfcolor {
  background-color: var(--nouveau-vert);
  background-image: url('../images/rsvp.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.divhalfcolor.color2 {
  background-color: var(--nouveau-vert);
  background-image: linear-gradient(to bottom, var(--nouveau-vert), var(--nouveau-vert)), url('../images/MarquiseHome1.jpg');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10%;
  padding-right: 8%;
}

.headingpenthouse {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 130px;
  font-weight: 300;
  line-height: 140px;
}

.logopenthouse {
  width: 60%;
  display: none;
}

.gold {
  color: var(--tan);
}

.logo {
  width: 100px;
}

.logo.small {
  width: 60px;
}

.size5-link {
  color: var(--midnight-blue);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  display: block;
}

.size5-link:hover {
  opacity: .7;
}

.text-block {
  color: var(--midnight-blue);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.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 {
  color: var(--midnight-blue);
  margin-top: 10px;
}

.cta11-form-wrap {
  z-index: 2;
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  border: 1px solid var(--tan);
  background-color: var(--tan);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 30px;
  padding: 30px 67px;
  display: grid;
  position: relative;
}

.cta11-item-wrap {
  margin-bottom: 25px;
}

.map2 {
  height: 100%;
}

.text-field-questions {
  color: #fff;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #fff;
  height: 60px;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
}

.text-field-questions::placeholder {
  color: #fff;
}

.html-embed-adintel {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.headerplanpoint {
  background-color: var(--nouveau-vert);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 25px;
  padding-left: 25%;
  padding-right: 25%;
  display: flex;
}

.centered {
  text-align: center;
}

.sectionplanpoint {
  margin-left: 60px;
}

.imageoverlay {
  width: 300px;
}

.xclose {
  color: #fff;
  cursor: pointer;
  flex-flow: row-reverse;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 26px;
  font-weight: 300;
  display: block;
  position: absolute;
  top: 10%;
  right: 10%;
}

.divinsidepopup {
  background-color: var(--midnight-blue);
  box-shadow: 1px -1px 3px 0 var(--midnight-blue);
  text-align: center;
  background-image: url('../images/Popup4.svg');
  background-position: 50%;
  background-size: cover;
  border: 1px solid #454b52;
  flex: 0 auto;
  width: 800px;
  height: 600px;
  margin-top: 45px;
  margin-bottom: 45px;
}

.popup {
  z-index: 2147483647;
  background-color: #1119;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  position: fixed;
  inset: 0%;
}

.button-rendezvous {
  text-align: center;
  background-color: #0000;
  border: 2px solid #fff;
  width: 275px;
  margin-top: 20px;
  padding: 12px 30px;
  transition: all .2s;
}

.button-rendezvous:hover {
  color: #132944;
  background-color: #fff;
}

.button-visite {
  text-align: center;
  background-color: #0000;
  border: 2px solid #fff;
  width: 400px;
  margin-top: 20px;
  padding: 12px 30px;
  transition: all .2s;
}

.button-visite:hover {
  color: #132944;
  background-color: #fff;
}

.button-nous-visiter {
  text-align: center;
  background-color: #0000;
  border: 2px solid #fff;
  width: 275px;
  margin-top: 50px;
  padding: 12px 20px;
  transition: all .2s;
}

.button-nous-visiter:hover {
  color: #132944;
  background-color: #fff;
}

.link-block {
  z-index: 347;
  color: #fff;
  margin-bottom: 0;
  text-decoration: none;
  position: absolute;
  inset: 4.5% 14% auto auto;
}

.divinsidepopup-en {
  background-color: var(--midnight-blue);
  box-shadow: 1px -1px 3px 0 var(--midnight-blue);
  text-align: center;
  background-image: url('../images/Popup4.svg');
  background-position: 50%;
  background-size: cover;
  border: 1px solid #454b52;
  flex: 0 auto;
  width: 800px;
  height: 600px;
  margin-top: 45px;
  margin-bottom: 45px;
}

.image {
  margin-bottom: 20px;
  margin-left: 0;
  padding-right: 0;
  position: static;
  inset: 3% 2% auto 35%;
}

.divpop {
  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: flex;
  position: fixed;
  inset: 0%;
}

.divinsidepopup-2 {
  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;
  position: relative;
  box-shadow: 0 0 60px 3px #00000080;
}

.div-xclose {
  z-index: 999999999;
  clear: none;
  color: #fff;
  text-align: center;
  object-fit: fill;
  flex-direction: row;
  justify-content: flex-end;
  align-self: auto;
  align-items: flex-end;
  width: auto;
  padding-top: 0;
  font-family: Firasans, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
  text-decoration: none;
  display: block;
  position: absolute;
  inset: 0% 0% auto auto;
  overflow: visible;
}

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

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

.html-embed {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.insidevideomodal {
  width: 50%;
}

.text-field-name {
  color: #fff;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #fff;
  height: 60px;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  display: none;
}

.text-field-name::placeholder {
  color: #fff;
}

.link-block-2 {
  margin-top: 0;
  padding-top: 0;
}

.divpopup {
  z-index: 89999;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #000000a8;
  background-clip: border-box;
  border-radius: 0;
  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: 20px;
  display: none;
  position: fixed;
  inset: 0%;
}

.divblackpopup {
  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: 650px;
  height: auto;
  display: flex;
  box-shadow: 0 0 60px 3px #00000080;
}

.div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 2px #8b8b8b;
  flex-direction: row;
  flex: 0 auto;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-self: center;
  width: 650px;
  height: auto;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: static;
  top: auto;
}

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

.xclose-4 {
  z-index: 20000;
  float: right;
  clear: right;
  border: 1px solid var(--midnight-blue);
  color: var(--midnight-blue);
  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: 0;
  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;
}

.image-53 {
  outline-offset: 0px;
  outline: 3px #fff;
  width: 650px;
  max-width: none;
  height: auto;
  display: block;
}

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

.card-headline.dark-card-headline {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
}

.card-headline.dark-card-headline.white {
  color: #fff;
}

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

.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;
}

.navmenu {
  margin-top: 10px;
}

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

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

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

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

.minilink {
  color: #d57d6f;
}

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

.container-2 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 60px;
  padding-right: 60px;
}

.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;
}

.image-3 {
  display: none;
}

.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/Marquise6_backend.jpg');
  background-position: 0;
  background-size: cover;
  justify-content: center;
  align-items: flex-start;
  height: 70vh;
  padding-top: 40px;
  display: flex;
}

.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;
}

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

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

.card-2.card5-content {
  background-image: linear-gradient(135deg, var(--tan) 14%, #0000 78%), url('../images/Devis.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  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.renderings {
  background-image: linear-gradient(315deg, #0000, var(--tan) 81%), url('../images/int_Unit_1603_24mm_C008_B.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  border-radius: 0;
  flex-direction: column;
  display: block;
}

.card-2.map {
  background-image: linear-gradient(135deg, var(--midnight-blue) 18%, #0000), url('../images/SmallMAp.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  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, var(--tan) 81%), url('../images/Penthouse3.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 0;
  flex-direction: column;
  display: block;
}

.card-2.montreal {
  background-image: linear-gradient(135deg, var(--midnight-blue) 8%, #0000 80%), url('../images/Espaces9.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.prices {
  background-image: linear-gradient(135deg, var(--tan) 18%, #0000), url('../images/image-4.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  display: block;
}

.card-2.plans {
  background-image: linear-gradient(135deg, var(--midnight-blue) 18%, #0000), url('../images/plan124.jpg');
  background-position: 0 0, 0%;
  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.brochures {
  background-image: linear-gradient(135deg, var(--midnight-blue) 18%, #0000), url('../images/brochure.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  display: block;
}

.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;
}

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

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

.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(--midnight-blue);
  border-style: none;
  width: 290px;
  margin-left: 0;
  padding-left: 20px;
  padding-right: 10px;
  font-size: 12px;
  position: absolute;
  bottom: 40px;
  left: 30px;
  right: 0;
  box-shadow: inset 0 0 0 2px #fff;
}

.navlinkdashboard {
  color: var(--midnight-blue);
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 30px;
  font-family: Open Sans, sans-serif;
  font-size: 12px;
  transition: all .5s;
}

.navlinkdashboard:hover {
  background-color: var(--midnight-blue);
  color: #e2dad6;
}

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

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

.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;
}

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

.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;
}

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

.specialheaderfr {
  background-image: url('../images/HeaderCourrier.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 200px;
}

.specialheaderen {
  background-image: url('../images/HeaderCourrierEN.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 200px;
}

.menu-link-plans {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 32px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.menu-link-plans:hover {
  color: var(--midnight-blue);
}

.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: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

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

._404.size3-top-clear {
  color: var(--midnight-blue);
  margin-top: 0;
}

.section-soustitle {
  text-align: center;
  padding-bottom: 15px;
  font-size: 30px;
  line-height: 40px;
}

.section-soustitle.morespace {
  margin-top: 70px;
}

.section-soustitle.morespace.centered {
  text-align: center;
  width: 500px;
}

.section-title-accueil {
  padding-bottom: 15px;
  font-size: 30px;
  line-height: 40px;
  display: none;
}

.section-title-accueil.morespace {
  margin-top: 70px;
}

.section-title-accueil.morespace.centered {
  text-align: center;
  width: 500px;
}

.section-soustitle-accueil {
  text-align: center;
  padding-bottom: 15px;
  font-size: 30px;
  line-height: 40px;
  display: none;
}

.section-soustitle-accueil.morespace {
  margin-top: 70px;
}

.section-soustitle-accueil.morespace.centered {
  text-align: center;
  width: 500px;
}

.slide-nav-cache {
  padding-bottom: 60px;
  font-size: 8px;
  line-height: 10px;
  display: none;
}

.form-grid {
  grid-column-gap: 40px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  margin-bottom: 0;
}

.paragraph {
  color: #ae9861;
  max-width: 500px;
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.input-field {
  color: #fff;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #ae9861;
  height: 40px;
  padding-left: 5px;
  font-size: 20px;
  line-height: 36px;
  transition: all .2s;
}

.input-field:hover {
  border-bottom-color: #d5bc7d;
}

.input-field::placeholder {
  color: #fff;
}

.paragraph-3 {
  color: #fff;
  max-width: 600px;
  margin-top: 14px;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

.divider-2 {
  height: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}

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

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

.paragraph-1 {
  color: #fff;
  max-width: 800px;
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 300;
  line-height: 32px;
}

.select-field {
  color: #ae9861;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 2px solid #ae9861;
  height: 50px;
  margin-top: 0;
  padding-left: 5px;
  font-size: 22px;
  line-height: 36px;
  transition: all .2s;
}

.select-field:hover {
  border-bottom-color: #d5bc7d;
}

.select-field::placeholder {
  color: #ae9861;
}

.div-block-2 {
  text-align: right;
  padding-top: 51px;
  padding-right: 96px;
}

.select-field-copy {
  color: #fff;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #ae9861;
  height: 40px;
  margin-top: 30px;
  padding-left: 2px;
  font-size: 20px;
  line-height: 36px;
  transition: all .2s;
}

.select-field-copy:hover {
  border-bottom-color: #d5bc7d;
}

.select-field-copy:focus-visible, .select-field-copy[data-wf-focus-visible] {
  color: var(--tan);
}

.select-field-copy::placeholder {
  color: #ae9861;
}

.page-container {
  background-image: linear-gradient(to bottom, var(--midnight-blue), var(--midnight-blue)), url('../images/footer-BG.jpg');
  text-align: center;
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 0;
  padding-bottom: 30px;
  position: relative;
}

.paragraph-2 {
  color: #fff;
  max-width: 500px;
  margin-top: 15px;
  margin-bottom: 31px;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

.link {
  color: #ae9861;
  font-size: 24px;
  text-decoration: none;
  display: block;
}

.paragraph-container {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
  margin-bottom: 100px;
  display: flex;
}

.top-logo {
  margin: 220px auto;
}

.ou {
  color: #fff;
}

.submit-button {
  color: #ae9861;
  text-transform: uppercase;
  background-color: #fff0;
  border: 1px solid #fff;
  margin-top: 50px;
  padding: 10px 20px;
  font-size: 20px;
  line-height: 30px;
  transition: all .2s;
}

.submit-button:hover {
  color: #d5bc7d;
  border-bottom-color: #d5bc7d;
}

.paragraph-4 {
  color: #ae9861;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.section-3 {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.footer {
  text-align: center;
  background-image: linear-gradient(#142944f2, #142944f2), url('../images/footer-BG.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-top: 3px solid #ae9861;
  min-height: 300px;
}

.footer-logo-2 {
  max-width: 20%;
  margin-top: 40px;
}

.container-3 {
  margin-bottom: 0;
  padding-bottom: 48px;
}

.heading {
  color: #ae9861;
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 400;
}

.text-block-3 {
  color: #ae9861;
  font-size: 18px;
}

.body {
  background-color: var(--nouveau-vert);
}

.paragraph-5 {
  text-align: left;
}

.section-title-copy.morespace-copy {
  margin-top: 70px;
}

.section-title-copy.morespace-copy.centered, .section-title-copy.morespace-copy.centered-copy {
  text-align: center;
  width: 500px;
}

.section-title-copy {
  padding-bottom: 15px;
  font-size: 30px;
  line-height: 40px;
}

.section-title-copy.morespace {
  margin-top: 70px;
}

.section-title-copy.morespace.centered {
  text-align: center;
  width: 500px;
}

.section-title-copy.center-copy {
  text-align: center;
  width: 900px;
}

.section-4 {
  background-color: #1c2e2c;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-left: 50px;
  padding-top: 10px;
  padding-bottom: 100px;
  display: flex;
}

.container-4 {
  background-image: linear-gradient(#000, #000);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.image-54 {
  cursor: pointer;
  background-image: linear-gradient(#000000ed, #000000ed);
  margin: auto;
  display: block;
  position: relative;
}

.video-lightbox-button {
  background-color: var(--nouveau-vert);
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin: auto;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  line-height: 18px;
  transition: transform .2s;
  display: flex;
  position: absolute;
  inset: 80% 0% 0%;
  transform: translate(0, -50%);
}

.video-lightbox-button:hover {
  transform: translate(0, -50%)scale(1.2);
  box-shadow: 0 0 13px #00000080;
}

.lightbox-link {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin: auto;
  display: flex;
}

.top-logo-rsvp {
  margin: 40px auto 0;
}

.button-rsvp {
  text-align: center;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 10px;
  width: 275px;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 12px 20px;
  transition: all .2s;
}

.button-rsvp:hover {
  color: #132944;
  background-color: #fff;
}

.button-rsvp.w--current {
  margin-top: 20px;
}

.section-5 {
  background-image: url('../images/3665v6.jpg');
  background-position: 50% 0;
  background-size: cover;
  height: 800px;
}

.paragraph-container-rsvp {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.paragraph-container-copy {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 100px;
  font-size: 18px;
  display: flex;
}

.bold-text-12, .bold-text-13 {
  color: #fff;
}

.divhalfcolor-6 {
  background-color: var(--midnight-blue);
  background-image: url('../images/rsvp.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.divhalfcolor-6.color2 {
  background-color: var(--tan);
  background-image: linear-gradient(50deg, #ac966080, var(--tan) 36%), url('../images/Gold6Leaf.jpg');
  background-position: 0 0, 0 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  justify-content: center;
  align-items: flex-start;
  padding-left: 8%;
  padding-right: 8%;
}

.headingpenthouse-6 {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 70px;
  font-weight: 300;
  line-height: 80px;
}

.section-subtitle-6 {
  text-align: left;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 40px;
  line-height: 45px;
}

.section-penthouse {
  color: #fff;
  background-color: #1c2e2c;
  height: 100vh;
  padding-bottom: 0;
  padding-left: 60px;
  position: relative;
}

.section-penthouse.footer {
  color: #fff;
  background-color: #1c2e2c;
  background-image: linear-gradient(#112b2ae6, #112b2ae6), url('../images/footer-BG.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  height: 120vh;
  display: flex;
}

.section-penthouse.center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-penthouse.brown {
  background-color: var(--tan);
}

.section-penthouse.homepage {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-penthouse.less {
  padding-left: 0;
}

.section-penthouse.footer2 {
  color: #fff;
  background-color: #132944;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 0;
  display: flex;
}

.section-content-wrap-6 {
  background-color: var(--midnight-blue);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 100px 100px 100px 80px;
  display: flex;
}

.section-content-wrap-6.brown, .section-content-wrap-6.gold {
  background-color: var(--tan);
}

.section-content-wrap-6.vi-section {
  background-color: var(--tan);
  background-image: linear-gradient(80deg, #ac966099, #ac9660 50%), url('../images/Gold5Leaf.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-y;
  background-size: auto, auto;
  align-items: center;
  height: 100%;
}

.section-content-wrap-6.vi-section.v2 {
  background-image: linear-gradient(#ac966059, #ac966059), url('../images/Gold6Leaf.jpg');
  background-position: 0 0, 0 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.section-content-wrap-6.vi-section.blue {
  background-color: var(--nouveau-vert);
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0);
}

.section-content-wrap-6.vi-section.blue.contact {
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0), linear-gradient(#0000, #0000);
  padding-top: 0;
  padding-bottom: 0;
}

.section-title-6 {
  text-align: left;
  padding-bottom: 15px;
  font-size: 24px;
  line-height: 30px;
}

.section-title-6.morespace {
  margin-top: 70px;
}

.section-title-6.morespace.centered {
  text-align: center;
  width: 500px;
}

.section-subtitle-copy {
  text-transform: uppercase;
  padding-bottom: 20px;
  font-size: 20px;
}

.section-6 {
  color: #fff;
  background-color: #1c2e2c;
  height: 100vh;
  padding-bottom: 0;
  padding-left: 60px;
  position: relative;
}

.section-6.footer {
  color: #fff;
  background-color: #1c2e2c;
  background-image: linear-gradient(#112b2ae6, #112b2ae6), url('../images/footer-BG.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  height: 120vh;
  display: flex;
}

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

.section-6.brown {
  background-color: var(--tan);
}

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

.section-6.less {
  padding-left: 0;
}

.section-6.footer2 {
  color: #fff;
  background-color: #132944;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 0;
  display: flex;
}

.button-visite-6 {
  text-align: center;
  background-color: #0000;
  border: 2px solid #fff;
  width: 400px;
  margin-top: 50px;
  padding: 12px 30px;
  transition: all .2s;
}

.button-visite-6:hover {
  color: #132944;
  background-color: #fff;
}

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

.section-img-6.full {
  object-fit: cover;
}

.paragraph-6 {
  color: #fff;
  max-width: 380px;
  font-size: 22px;
  font-weight: 100;
  line-height: 30px;
}

.button-wrap-2 {
  padding-top: 25px;
}

.split-section-content {
  direction: ltr;
  justify-content: center;
  align-items: center;
  padding: 104px 26px;
  display: flex;
}

.split-section-content.blue {
  background-image: linear-gradient(to bottom, var(--midnight-blue), var(--midnight-blue));
  padding-left: 160px;
  padding-right: 100px;
}

.button-arrow {
  order: 1;
  width: 20px;
  margin-left: 10px;
  padding-top: 2px;
}

.section-content-wrap-7 {
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  max-width: 494px;
  height: auto;
  display: flex;
}

.split-section-full-width {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  height: auto;
  display: grid;
}

.arrow-button {
  color: #fff;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 28px;
  line-height: 36px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.arrow-button:hover {
  opacity: .7;
}

.arrow-button.gold {
  color: #b59c61;
}

.section-logo-lottie {
  object-fit: contain;
  align-self: center;
  width: auto;
  height: 150px;
  margin-bottom: 40px;
}

.section-img-couche {
  object-fit: cover;
  align-self: center;
  width: 100%;
  height: 100%;
}

.link-block-3 {
  position: absolute;
}

.section-content-wrap-right {
  background-color: var(--midnight-blue);
  color: #fff;
  background-image: url('../images/Marquise6_Perspective_Unite.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 100px;
  display: flex;
}

.section-content-wrap-right.brown, .section-content-wrap-right.gold {
  background-color: var(--tan);
}

.section-content-wrap-right.vi-section {
  background-color: var(--tan);
  background-image: linear-gradient(80deg, #ac966099, #ac9660 50%), url('../images/Gold5Leaf.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-y;
  background-size: auto, auto;
  align-items: center;
  height: 100%;
}

.section-content-wrap-right.vi-section.v2 {
  background-image: linear-gradient(#ac966059, #ac966059), url('../images/Gold6Leaf.jpg');
  background-position: 0 0, 0 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.section-content-wrap-right.vi-section.blue {
  background-color: var(--nouveau-vert);
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0);
}

.section-content-wrap-right.vi-section.blue.contact {
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0), linear-gradient(#0000, #0000);
  padding-top: 0;
  padding-bottom: 0;
}

.section-content-wrap-left {
  background-color: var(--midnight-blue);
  color: #fff;
  background-image: url('../images/int_Unit_1603_bedroom_5k_B_2.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 100px;
  display: flex;
}

.section-content-wrap-left.brown, .section-content-wrap-left.gold {
  background-color: var(--tan);
}

.section-content-wrap-left.vi-section {
  background-color: var(--tan);
  background-image: linear-gradient(80deg, #ac966099, #ac9660 50%), url('../images/Gold5Leaf.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-y;
  background-size: auto, auto;
  align-items: center;
  height: 100%;
}

.section-content-wrap-left.vi-section.v2 {
  background-image: linear-gradient(#ac966059, #ac966059), url('../images/Gold6Leaf.jpg');
  background-position: 0 0, 0 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.section-content-wrap-left.vi-section.blue {
  background-color: var(--nouveau-vert);
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0);
}

.section-content-wrap-left.vi-section.blue.contact {
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0), linear-gradient(#0000, #0000);
  padding-top: 0;
  padding-bottom: 0;
}

.section-content-wrap-right-2 {
  background-color: var(--midnight-blue);
  color: #fff;
  background-image: url('../images/int_Unit_1603_24mm_C009_B.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 100px;
  display: flex;
}

.section-content-wrap-right-2.brown, .section-content-wrap-right-2.gold {
  background-color: var(--tan);
}

.section-content-wrap-right-2.vi-section {
  background-color: var(--tan);
  background-image: linear-gradient(80deg, #ac966099, #ac9660 50%), url('../images/Gold5Leaf.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-y;
  background-size: auto, auto;
  align-items: center;
  height: 100%;
}

.section-content-wrap-right-2.vi-section.v2 {
  background-image: linear-gradient(#ac966059, #ac966059), url('../images/Gold6Leaf.jpg');
  background-position: 0 0, 0 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.section-content-wrap-right-2.vi-section.blue {
  background-color: var(--nouveau-vert);
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0);
}

.section-content-wrap-right-2.vi-section.blue.contact {
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0), linear-gradient(#0000, #0000);
  padding-top: 0;
  padding-bottom: 0;
}

.section-content-wrap-left-3 {
  background-color: var(--midnight-blue);
  color: #fff;
  background-image: url('../images/Penthouse6.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 100px;
  display: flex;
}

.section-content-wrap-left-3.brown, .section-content-wrap-left-3.gold {
  background-color: var(--tan);
}

.section-content-wrap-left-3.vi-section {
  background-color: var(--tan);
  background-image: linear-gradient(80deg, #ac966099, #ac9660 50%), url('../images/Gold5Leaf.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-y;
  background-size: auto, auto;
  align-items: center;
  height: 100%;
}

.section-content-wrap-left-3.vi-section.v2 {
  background-image: linear-gradient(#ac966059, #ac966059), url('../images/Gold6Leaf.jpg');
  background-position: 0 0, 0 100%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
}

.section-content-wrap-left-3.vi-section.blue {
  background-color: var(--nouveau-vert);
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0);
}

.section-content-wrap-left-3.vi-section.blue.contact {
  background-image: radial-gradient(circle at 0 100%, #0b1727bf, #fff0), linear-gradient(#0000, #0000);
  padding-top: 0;
  padding-bottom: 0;
}

.image-55 {
  opacity: .95;
  outline-offset: 8px;
  outline: 2px solid #142944b3;
}

.image-56, .image-57 {
  opacity: .95;
  outline-offset: 8px;
  outline: 2px solid #142944b0;
}

.image-58 {
  opacity: .95;
  outline-offset: 8px;
  outline: 2px solid #142944b5;
}

.align-center-copy {
  background-color: var(--midnight-blue);
  text-align: center;
  border: 1px #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.section-copy {
  color: #fff;
  background-color: #1c2e2c;
  height: 140vh;
  padding-bottom: 0;
  padding-left: 60px;
  position: relative;
}

.section-copy.footer {
  color: #fff;
  background-color: #1c2e2c;
  background-image: linear-gradient(#112b2ae6, #112b2ae6), url('../images/footer-BG.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 120vh;
  display: flex;
}

.section-copy.center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-copy.brown {
  background-color: var(--tan);
}

.section-copy.homepage {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-copy.less {
  padding-left: 0;
}

.section-copy.footer2 {
  color: #fff;
  background-color: #132944;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 0;
  display: flex;
}

.divhalfcolor-copy {
  background-color: var(--nouveau-vert);
  background-image: url('../images/rsvp.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.divhalfcolor-copy.color2 {
  background-color: var(--nouveau-vert);
  background-image: linear-gradient(to bottom, var(--nouveau-vert), var(--nouveau-vert)), url('../images/MarquiseHome1.jpg');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10%;
  padding-right: 8%;
}

.divhalfcolor-copy.color2-copy {
  background-color: var(--nouveau-vert);
  background-image: linear-gradient(to bottom, var(--midnight-blue), var(--midnight-blue)), url('../images/MarquiseHome1.jpg');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10%;
  padding-right: 8%;
}

.divhalfcolor-copy-copy {
  background-color: var(--nouveau-vert);
  background-image: url('../images/rsvp.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.divhalfcolor-copy-copy.color2 {
  background-color: var(--midnight-blue);
  background-image: linear-gradient(to bottom, var(--midnight-blue), var(--midnight-blue)), url('../images/MarquiseHome1.jpg');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10%;
  padding-right: 8%;
}

.divhalfcolor-copy-copy.color2-copy, .divhalfcolor-copy-copy.color2-copy-copy {
  background-color: var(--nouveau-vert);
  background-image: linear-gradient(to bottom, var(--nouveau-vert), var(--nouveau-vert)), url('../images/MarquiseHome1.jpg');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10%;
  padding-right: 8%;
}

.section-7 {
  border-top: 1px solid var(--tan);
  background-color: var(--nouveau-vert);
}

.container-5 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.heading-2 {
  color: var(--tan);
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  line-height: 28px;
}

.text-block-4 {
  color: var(--tan);
  text-align: center;
  margin-bottom: 3px;
}

.link-2, .link-3 {
  color: var(--tan);
}

.section-vip-image {
  background-image: url('../images/rsvp_1.jpg');
  background-position: 50%;
  background-size: cover;
  height: 600px;
}

.page-container-vip {
  background-image: linear-gradient(to bottom, var(--nouveau-vert), var(--nouveau-vert));
  text-align: center;
  padding-bottom: 10%;
  position: relative;
}

.section-footer-vip {
  border-top: 1px solid var(--tan);
  background-color: var(--nouveau-vert);
}

.page-container-copy {
  background-image: linear-gradient(to bottom, var(--midnight-blue), var(--midnight-blue));
  text-align: center;
  position: relative;
}

.div-block-3 {
  z-index: 1;
  display: none;
  position: absolute;
  inset: 10% auto auto 10%;
}

.body-4 {
  background-color: var(--nouveau-vert);
}

.container-6 {
  color: var(--tan);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
}

.text-block-5 {
  color: #fff;
  margin-top: 25px;
}

.link-4 {
  color: #fff;
}

.link-5 {
  color: #c37474;
}

.link-5.w--current {
  color: #fff;
}

.headergalerie {
  color: #fff;
  background-color: #1c2e2c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40vh;
  margin-top: 0;
  margin-left: 50px;
  padding: 0 25%;
  display: flex;
}

.video-modal-en {
  z-index: 9998;
  background-color: #000000e6;
  justify-content: center;
  align-items: center;
  padding-left: 10%;
  padding-right: 10%;
  display: none;
  position: fixed;
  inset: 0%;
}

.paragraph-7 {
  line-height: 22px;
}

.grid-5 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.link-block-5 {
  text-align: center;
  text-decoration: none;
}

.lien-title {
  color: #fff;
  text-align: center;
  text-transform: none;
  margin-bottom: 10px;
  padding-top: 10px;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.lien-title:hover {
  text-decoration: underline;
}

.image-lien {
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  background-color: #b69d5d;
  border: 1px solid #104041;
  border-radius: 10px;
  width: 100%;
  height: 200px;
  padding: 3px;
  transition: background-color .2s;
}

.image-lien:hover {
  background-color: #104041;
}

.sous-lien {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-top: 5px;
  font-size: 16px;
  font-weight: 100;
  line-height: 20px;
}

.section-8 {
  background-color: var(--nouveau-vert);
  padding-top: 50px;
  padding-bottom: 100px;
}

.section-9 {
  background-color: var(--midnight-blue);
  padding-top: 50px;
  padding-bottom: 100px;
}

.headerpresse {
  background-color: var(--tan);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40vh;
  padding-left: 25%;
  padding-right: 25%;
  display: flex;
}

.petit {
  color: #fff;
  max-width: 850px;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 300;
  line-height: 34px;
}

.button-rsvp-moisson {
  background-color: var(--nouveau-vert);
  text-align: center;
  border: 2px #fff;
  border-radius: 10px;
  width: 350px;
  margin-bottom: 20px;
  padding: 12px 20px;
  transition: all .2s;
}

.button-rsvp-moisson:hover {
  color: #132944;
  background-color: #fff;
}

.image-59 {
  margin-top: 60px;
  padding-bottom: 20px;
}

.button-rsvp-collecte {
  background-color: var(--nouveau-vert);
  text-align: center;
  border: 2px #fff;
  border-radius: 10px;
  width: 350px;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 12px 20px;
  transition: all .2s;
}

.button-rsvp-collecte:hover {
  color: #132944;
  background-color: #fff;
}

.page-container-2 {
  text-align: center;
  background-image: url('../images/Gold6Leaf.jpg');
  background-position: 50%;
  background-size: cover;
  padding-bottom: 40px;
  display: none;
  position: relative;
}

.page-container-header {
  background-image: linear-gradient(to bottom, var(--midnight-blue), var(--midnight-blue)), url('../images/footer-BG.jpg');
  text-align: center;
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-bottom: 100px;
  position: relative;
}

.page-container-form {
  background-image: linear-gradient(to bottom, var(--midnight-blue), var(--midnight-blue)), url('../images/footer-BG.jpg');
  text-align: center;
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 0;
  padding-bottom: 100px;
  position: relative;
}

.divpopuprsvp {
  z-index: 89999;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-color: #000000a8;
  background-clip: border-box;
  border-radius: 0;
  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: 20px;
  display: none;
  position: fixed;
  inset: 0%;
}

.divrsvppopup {
  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: 1000px;
  height: auto;
  display: flex;
  box-shadow: 0 0 60px 3px #00000080;
}

.div-block-popup {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 2px #8b8b8b;
  flex-direction: row;
  flex: 0 auto;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-self: center;
  width: 1000px;
  height: auto;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: static;
  top: auto;
  overflow: visible;
}

.image-rsvp {
  outline-offset: 0px;
  outline: 3px #fff;
  width: 1000px;
  max-width: none;
  height: auto;
  display: block;
}

.xclose-5 {
  z-index: 20000;
  float: right;
  clear: right;
  border: 1px solid var(--midnight-blue);
  color: var(--nouveau-vert);
  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: 0;
  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;
}

.paragraph-8 {
  color: #fff;
  max-width: 800px;
  margin-top: 40px;
  margin-bottom: 60px;
  font-size: 22px;
  font-weight: 300;
  line-height: 34px;
}

.form {
  width: auto;
}

.form-block-2 {
  width: 700px;
}

.section-10 {
  background-color: var(--nouveau-vert);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.container-7 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-60 {
  margin-bottom: 50px;
}

.button-rsvp-moisson-2 {
  background-color: var(--tan);
  text-align: center;
  border: 2px #fff;
  border-radius: 10px;
  width: 350px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 12px 20px;
  transition: all .2s;
}

.button-rsvp-moisson-2:hover {
  color: #132944;
  background-color: #fff;
}

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

.container-9 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.paragraph-1-copy {
  color: #fff;
  max-width: 800px;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
}

.link-block-6 {
  display: block;
}

.button-rsvp-contact {
  border: 1px solid var(--midnight-blue);
  color: var(--midnight-blue);
  text-align: center;
  background-color: #0000;
  border-radius: 0;
  width: 275px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 12px 20px;
  font-weight: 400;
  transition: all .2s;
  display: block;
}

.button-rsvp-contact:hover {
  color: #132944;
  background-color: #fff;
}

.button-rsvp-contact.w--current {
  margin-top: 20px;
}

.cta11-item-rsvp {
  margin-bottom: 25px;
  display: none;
}

.menu-link-rsvp {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 32px;
  text-decoration: none;
  transition: all .2s;
  display: none;
}

.menu-link-rsvp:hover {
  color: var(--midnight-blue);
}

.form-2 {
  width: 600px;
  max-width: 700px;
}

.container-10 {
  height: 80%;
}

.link-block-7, .link-block-8 {
  cursor: pointer;
}

.section-5-copy {
  background-image: url('../images/Espace-commun-Hall-entree-2.webp');
  background-position: 0%;
  background-size: cover;
  height: 550px;
}

.menu-link-open-house {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 32px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.menu-link-open-house:hover {
  color: var(--midnight-blue);
}

.page-container-header-copy {
  background-image: linear-gradient(to bottom, var(--nouveau-vert), var(--nouveau-vert)), url('../images/footer-BG.jpg');
  text-align: center;
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-bottom: 100px;
  position: relative;
}

.page-container-copy {
  background-image: linear-gradient(to bottom, var(--nouveau-vert), var(--nouveau-vert)), url('../images/footer-BG.jpg');
  text-align: center;
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 0;
  padding-bottom: 30px;
  position: relative;
}

.page-container-form-copy {
  background-image: linear-gradient(to bottom, var(--nouveau-vert), var(--nouveau-vert)), url('../images/footer-BG.jpg');
  text-align: center;
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 0;
  padding-bottom: 100px;
  position: relative;
}

.section-7-copy {
  border-top: 1px solid var(--tan);
  background-color: var(--nouveau-vert);
}

.page-container-copy-copy {
  background-image: linear-gradient(to bottom, var(--nouveau-vert), var(--nouveau-vert));
  text-align: center;
  background-image: linear-gradient(to bottom, var(--nouveau-vert), var(--nouveau-vert));
  text-align: center;
  padding-bottom: 100px;
  position: relative;
}

.image-61 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.button-rsvp-moisson1 {
  text-align: center;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 10px;
  width: 275px;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 12px 20px;
  transition: all .2s;
}

.button-rsvp-moisson1:hover {
  color: #132944;
  background-color: #fff;
}

.button-rsvp-moisson1.w--current {
  margin-top: 20px;
}

.paragraph-3-copy {
  color: #fff;
  max-width: 600px;
  margin-top: 40px;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
}

.div-block-4 {
  margin-top: 20px;
  padding-left: 20px;
  position: absolute;
}

.youtube {
  border: 2px solid var(--tan);
  margin-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.container-11 {
  width: 100%;
}

.youtube-2, .youtube-3, .youtube-4 {
  border: 2px solid var(--tan);
  margin-top: 100px;
}

.video, .video-2 {
  margin-top: 100px;
}

.youtube-5, .youtube-6 {
  border: 2px solid var(--tan);
  margin-top: 100px;
}

.image-copy {
  margin-bottom: 20px;
  margin-left: 0;
  padding-right: 0;
  position: static;
  inset: 3% 2% auto 35%;
}

html.w-mod-js [data-ix="open-popup-rsvp"] {
  opacity: 1;
  display: block;
}

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

@media screen and (min-width: 1920px) {
  .divpop {
    height: auto;
    padding-top: 0;
  }

  .divinsidepopup-2 {
    width: 750px;
  }

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

  .divblackpopup, .div-block {
    width: 800px;
  }

  .xclose-4 {
    border-color: var(--midnight-blue);
    color: var(--midnight-blue);
  }

  .image-53 {
    width: 800px;
  }

  .video-lightbox-button {
    top: 45%;
  }

  .paragraph-6 {
    max-width: none;
    font-size: 30px;
    line-height: 40px;
  }

  .button-wrap-2 {
    align-self: auto;
    display: flex;
  }

  .section-content-wrap-7 {
    max-width: 600px;
  }

  .arrow-button.gold {
    flex: 0 auto;
    order: 0;
    justify-content: flex-start;
    align-self: auto;
    font-size: 40px;
    line-height: 40px;
  }

  .divpopuprsvp {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  body {
    background-color: #132944;
    font-size: 16px;
    line-height: 24px;
  }

  .side-nav {
    display: none;
  }

  .section {
    background-color: #132944;
    height: auto;
    padding-left: 0;
  }

  .section.footer, .section.footer2 {
    padding: 60px 20px;
  }

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

  .main-logo {
    max-width: 180px;
    position: absolute;
    top: 40px;
    left: 60px;
  }

  .section-img.full {
    max-height: none;
  }

  .section-content-wrap {
    flex: 1;
    padding-left: 60px;
    padding-right: 60px;
  }

  .section-content-wrap.brown, .section-content-wrap.vi-section {
    flex: 1;
  }

  .full-slider {
    height: 100%;
  }

  .menu-wrap {
    width: 100%;
    max-width: none;
  }

  .section-subtitle {
    font-size: 18px;
    line-height: 26px;
  }

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

  .features-wrap {
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .feature-card {
    flex-flow: column wrap;
    justify-content: center;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .button-wrap {
    padding-top: 30px;
  }

  .gym-img {
    max-height: 450px;
  }

  .slide-nav {
    padding-bottom: 20px;
  }

  .padding-block---mobile {
    padding-top: 40px;
    padding-bottom: 40px;
    display: block;
  }

  .padding-block---mobile.logo {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer-logo {
    max-width: 320px;
  }

  .footer-logo.margin {
    margin-bottom: 40px;
  }

  .gallery-grid {
    max-width: 100%;
    height: auto;
  }

  .home-page {
    max-width: 180px;
    position: absolute;
    top: 40px;
    left: 60px;
  }

  .video-link {
    width: 100px;
  }

  .video-modal {
    padding-left: 20px;
    padding-right: 20px;
  }

  .underlogo {
    max-width: 180px;
    position: absolute;
    top: 40px;
    left: 60px;
  }

  .popup, .image {
    display: none;
  }

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

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

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

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

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

  .section-soustitle, .section-title-accueil, .section-soustitle-accueil {
    padding-bottom: 20px;
    font-size: 28px;
    line-height: 36px;
  }

  .slide-nav-cache {
    padding-bottom: 20px;
  }

  .form-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .paragraph-container {
    margin-top: 140px;
    margin-bottom: 140px;
  }

  .top-heading {
    max-width: 80%;
  }

  .top-logo {
    max-width: 300px;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .section-title-copy {
    padding-bottom: 20px;
    font-size: 28px;
    line-height: 36px;
  }

  .section-title-copy.center-copy {
    width: auto;
  }

  .top-logo-rsvp {
    max-width: 300px;
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .paragraph-container-rsvp, .paragraph-container-copy {
    margin-top: 140px;
    margin-bottom: 140px;
  }

  .section-subtitle-6 {
    font-size: 18px;
    line-height: 26px;
  }

  .section-penthouse {
    background-color: #132944;
    height: auto;
    padding-left: 0;
  }

  .section-penthouse.footer, .section-penthouse.footer2 {
    padding: 60px 20px;
  }

  .section-content-wrap-6 {
    flex: 1;
    padding-left: 60px;
    padding-right: 60px;
  }

  .section-content-wrap-6.brown, .section-content-wrap-6.vi-section {
    flex: 1;
  }

  .section-title-6 {
    padding-bottom: 20px;
    font-size: 28px;
    line-height: 36px;
  }

  .section-subtitle-copy {
    font-size: 18px;
    line-height: 26px;
  }

  .section-6 {
    background-color: #132944;
    height: auto;
    padding-left: 0;
  }

  .section-6.footer, .section-6.footer2 {
    padding: 60px 20px;
  }

  .section-img-6.full {
    max-height: none;
  }

  .split-section-content {
    direction: ltr;
    flex-direction: row;
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-content-wrap-7 {
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .split-section-full-width {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .arrow-button {
    font-size: 24px;
    line-height: 32px;
  }

  .section-content-wrap-right {
    flex: 1;
    padding-left: 60px;
    padding-right: 60px;
  }

  .section-content-wrap-right.brown, .section-content-wrap-right.vi-section {
    flex: 1;
  }

  .section-content-wrap-left {
    flex: 1;
    padding-left: 60px;
    padding-right: 60px;
  }

  .section-content-wrap-left.brown, .section-content-wrap-left.vi-section {
    flex: 1;
  }

  .section-content-wrap-right-2 {
    flex: 1;
    padding-left: 60px;
    padding-right: 60px;
  }

  .section-content-wrap-right-2.brown, .section-content-wrap-right-2.vi-section {
    flex: 1;
  }

  .section-content-wrap-left-3 {
    flex: 1;
    padding-left: 60px;
    padding-right: 60px;
  }

  .section-content-wrap-left-3.brown, .section-content-wrap-left-3.vi-section {
    flex: 1;
  }

  .section-copy.footer, .section-copy.footer2 {
    padding: 60px 20px;
  }

  .section-copy {
    background-color: #132944;
    height: auto;
    padding-left: 0;
  }

  .section-copy.footer, .section-copy.footer2 {
    padding: 60px 20px;
  }

  .div-block-3 {
    display: none;
  }

  .video-modal-en {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-lien {
    height: 150px;
  }

  .body-5 {
    background-color: var(--nouveau-vert);
  }

  .image-copy {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .main-logo {
    max-width: 140px;
    left: 40px;
  }

  .section-content-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

  .slide-arrow {
    width: 45px;
    height: 45px;
  }

  .menu-button {
    padding-left: 15px;
    padding-right: 15px;
    top: 10px;
    right: 10px;
  }

  .menu-link {
    font-size: 20px;
    line-height: 28px;
  }

  .menu-close {
    width: 30px;
    height: 30px;
  }

  .menu-icon {
    width: 24px;
    height: 24px;
  }

  .section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .feature-card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .field-wrap {
    grid-template-columns: 1fr;
  }

  .form-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .padding-block---mobile.logo {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .home-page {
    max-width: 140px;
    left: 40px;
  }

  .video-link {
    width: 60px;
  }

  .underlogo {
    max-width: 140px;
    left: 40px;
  }

  .cta11-form-wrap {
    padding: 36px;
  }

  .image {
    display: none;
  }

  .divinsidepopup-2 {
    height: auto;
  }

  .hero-text {
    font-size: 36px;
    line-height: 44px;
  }

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

  .h3-color {
    font-size: 24px;
    line-height: 34px;
  }

  .menu-link-plans {
    font-size: 20px;
    line-height: 28px;
  }

  .section-soustitle, .section-title-accueil, .section-soustitle-accueil {
    font-size: 24px;
    line-height: 32px;
  }

  .form-grid {
    margin-bottom: 40px;
  }

  .paragraph {
    font-size: 20px;
    line-height: 26px;
  }

  .input-field {
    font-size: 24px;
  }

  .paragraph-3 {
    font-size: 20px;
    line-height: 26px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .paragraph-1 {
    font-size: 20px;
    line-height: 26px;
  }

  .select-field, .select-field-copy {
    font-size: 24px;
  }

  .paragraph-2 {
    font-size: 20px;
    line-height: 26px;
  }

  .paragraph-container {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .top-heading {
    max-width: 80%;
  }

  .top-logo {
    max-width: 50%;
  }

  .submit-button {
    font-size: 36px;
    line-height: 42px;
  }

  .paragraph-4 {
    font-size: 20px;
    line-height: 26px;
  }

  .section-title-copy {
    font-size: 24px;
    line-height: 32px;
  }

  .section-title-copy.center-copy {
    width: auto;
  }

  .top-logo-rsvp {
    max-width: 50%;
  }

  .paragraph-container-rsvp, .paragraph-container-copy {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .section-content-wrap-6 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section-title-6 {
    font-size: 24px;
    line-height: 32px;
  }

  .split-section-content {
    padding-top: 76px;
  }

  .arrow-button.gold {
    justify-content: center;
  }

  .section-content-wrap-right, .section-content-wrap-left, .section-content-wrap-right-2, .section-content-wrap-left-3 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .image-lien {
    height: 100px;
  }

  .petit, .paragraph-8, .paragraph-1-copy {
    font-size: 20px;
    line-height: 26px;
  }

  .menu-link-rsvp, .menu-link-open-house {
    font-size: 20px;
    line-height: 28px;
  }

  .paragraph-3-copy {
    font-size: 20px;
    line-height: 26px;
  }

  .image-copy {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  .section {
    background-color: var(--nouveau-vert);
    width: 100%;
    height: auto;
  }

  .section.footer {
    height: 100%;
  }

  ._2-col-grid {
    width: auto;
  }

  .main-logo {
    max-width: 200px;
    top: 20px;
    left: 20px;
  }

  .main-logo.lessmargin, .main-logo.hidden {
    display: none;
  }

  .main-logo.smaller {
    width: 250px;
    top: 65px;
  }

  .section-img.full {
    height: 100%;
  }

  .section-img.full.mobileversion {
    object-fit: cover;
    max-width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 400px;
  }

  .section-img.full.sliderversion {
    width: 100%;
    max-width: none;
    height: auto;
    max-height: none;
  }

  .section-img.mobile {
    text-align: left;
    width: auto;
    max-height: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-content-wrap {
    width: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-content-wrap.vi-section.v2 {
    padding-bottom: 50px;
  }

  .section-content-wrap.vi-section.blue {
    background-image: none;
  }

  .section-content-wrap.vi-section.blue.contact {
    padding-left: 0;
    padding-right: 0;
  }

  .full-slider.mobile {
    width: 100%;
    height: 200px;
    max-height: none;
    display: none;
    overflow: visible;
  }

  .menu-wrap {
    display: none;
  }

  .section-title.morespace {
    margin-top: 60px;
  }

  .section-title.morespace.centered {
    width: 98%;
    margin-top: 50px;
  }

  .section-title.morespace.forhiddenmobile {
    margin-top: 0;
  }

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

  .features-wrap {
    width: auto;
  }

  .align-center {
    margin-left: 0;
  }

  .form-block {
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-block---mobile.logo {
    padding-top: 40px;
    padding-bottom: 40px;
    display: none;
  }

  .padding-block---mobile.logo.contact {
    display: none;
  }

  .footer-logo {
    max-width: 250px;
  }

  .centeredlottie {
    width: 200px;
  }

  .home-page {
    max-width: 100px;
    display: none;
    top: 20px;
    left: 20px;
  }

  .paragraphcentered {
    width: 90%;
  }

  .underlogo {
    max-width: 200px;
    top: 20px;
    left: 20px;
  }

  .underlogo.mobile {
    left: auto;
  }

  .divhalfcolor.color2 {
    border-bottom: 1px solid #fff;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .headingpenthouse {
    font-size: 70px;
    line-height: 70px;
  }

  .logopenthouse {
    display: flex;
  }

  .logo {
    margin-bottom: 10px;
  }

  .cta11-form-wrap {
    border-style: none;
    border-width: 0;
    width: 96%;
    padding: 30px 20px;
  }

  .map2 {
    display: none;
  }

  .headerplanpoint {
    height: 300px;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .sectionplanpoint {
    margin-left: 0;
  }

  .xclose {
    top: 25%;
    right: 0%;
  }

  .divinsidepopup {
    background-color: #ffffffcf;
    width: 100%;
    height: 300px;
  }

  .popup {
    display: none;
  }

  .button-visite, .button-nous-visiter {
    width: auto;
  }

  .link-block {
    inset: 3% auto auto 6%;
  }

  .divinsidepopup-en {
    background-color: #ffffffcf;
    width: 100%;
    height: 300px;
  }

  .image {
    margin-top: 30px;
    display: none;
  }

  .divpop {
    width: auto;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    display: flex;
  }

  .divinsidepopup-2 {
    background-color: #ffffffe6;
    flex: 0 auto;
    align-self: flex-start;
    width: 100%;
    height: auto;
    margin-top: 80px;
    display: block;
    position: relative;
    inset: auto;
  }

  .div-xclose {
    z-index: 789789787;
    color: #fff;
    text-align: center;
    object-fit: fill;
    width: auto;
    font-family: Firasans, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 26px;
    text-decoration: none;
    position: absolute;
    inset: 0% auto auto 0%;
    overflow: visible;
  }

  .xclose-3 {
    z-index: 67000;
    border: 1px solid var(--midnight-blue);
    color: var(--midnight-blue);
    text-align: center;
    background-color: #ffffffc4;
    margin-left: 10px;
    margin-right: 0;
    padding-top: 2px;
    font-family: Firasans, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    text-decoration: none;
    position: absolute;
    inset: auto;
  }

  .divpopup {
    z-index: 2147483647;
    color: #fff;
    background-color: #000000d9;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    display: none;
    position: fixed;
  }

  .divblackpopup {
    z-index: 80000000;
    color: #fff;
    white-space: normal;
    object-fit: fill;
    background-color: #fff0;
    background-image: none;
    background-size: auto;
    flex: 0 auto;
    align-self: flex-start;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 50% auto 30px;
    padding-left: 0;
    display: block;
    position: absolute;
    inset: 0% 0% auto;
  }

  .div-block {
    color: #fff;
    background-image: none;
    background-size: auto;
    border-style: none;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    display: flex;
    position: absolute;
  }

  .divclosex {
    margin-left: 10px;
  }

  .xclose-4 {
    border-color: var(--nouveau-vert);
    color: var(--nouveau-vert);
    padding-top: 3px;
    font-size: 18px;
    line-height: 20px;
    position: absolute;
    inset: auto;
  }

  .image-53 {
    width: 100%;
    height: auto;
    display: block;
  }

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

  .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;
  }

  .bottomtext-2 {
    font-size: 12px;
  }

  .text-block-2 {
    color: #fff;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    line-height: 42px;
    display: flex;
  }

  .image-3 {
    display: block;
  }

  .image-4 {
    display: none;
  }

  .h3-color {
    margin-top: 6px;
    font-size: 18px;
    line-height: 26px;
  }

  .light-blue-button.big {
    font-size: 14px;
  }

  .section-soustitle.morespace {
    margin-top: 60px;
  }

  .section-soustitle.morespace.centered {
    width: 98%;
    margin-top: 70px;
  }

  .section-soustitle.morespace.forhiddenmobile {
    margin-top: 0;
  }

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

  .section-title-accueil.morespace {
    margin-top: 60px;
  }

  .section-title-accueil.morespace.centered {
    width: 98%;
    margin-top: 70px;
  }

  .section-title-accueil.morespace.forhiddenmobile {
    margin-top: 0;
  }

  .section-title-accueil.center {
    text-align: center;
  }

  .section-soustitle-accueil.morespace {
    margin-top: 60px;
  }

  .section-soustitle-accueil.morespace.centered {
    width: 98%;
    margin-top: 70px;
  }

  .section-soustitle-accueil.morespace.forhiddenmobile {
    margin-top: 0;
  }

  .section-soustitle-accueil.center {
    text-align: center;
  }

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

  .input-field {
    height: 50px;
    margin-bottom: 0;
    font-size: 18px;
  }

  .select-field {
    height: 40px;
    margin-bottom: 0;
    font-size: 18px;
  }

  .div-block-2 {
    padding-right: 18px;
  }

  .select-field-copy {
    height: 50px;
    margin-bottom: 0;
    font-size: 18px;
  }

  .paragraph-container {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .top-logo {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .submit-button {
    border: 1px solid #fff;
    margin-top: 40px;
    padding: 10px 20px;
    font-size: 20px;
    line-height: 30px;
  }

  .footer {
    min-height: 150px;
  }

  .footer-logo-2 {
    max-width: 40%;
  }

  .heading {
    font-size: 22px;
    line-height: 30px;
  }

  .body-2 {
    background-color: var(--nouveau-vert);
  }

  .paragraph-5 {
    text-align: justify;
  }

  .section-title-copy.morespace-copy {
    margin-top: 60px;
  }

  .section-title-copy.morespace-copy.centered {
    width: 98%;
    margin-top: 50px;
  }

  .section-title-copy.morespace-copy.forhiddenmobile {
    margin-top: 0;
  }

  .section-title-copy.morespace-copy.centered-copy {
    width: 98%;
    margin-top: 100px;
  }

  .section-title-copy.morespace {
    margin-top: 60px;
  }

  .section-title-copy.morespace.centered {
    width: 98%;
    margin-top: 50px;
  }

  .section-title-copy.morespace.forhiddenmobile {
    margin-top: 0;
  }

  .section-title-copy.center {
    text-align: center;
  }

  .section-title-copy.center-copy {
    text-align: center;
    width: auto;
  }

  .section-4 {
    margin-left: 0;
  }

  .body-3 {
    background-color: #1c2e2c;
  }

  .video-lightbox-button {
    width: 80px;
    height: 80px;
    padding-top: 5px;
    font-size: 15px;
    line-height: 15px;
    top: 25%;
  }

  .top-logo-rsvp {
    max-width: 90%;
    margin-top: 60px;
    margin-bottom: 0;
  }

  .button-rsvp {
    width: auto;
  }

  .section-5 {
    height: 250px;
  }

  .paragraph-container-rsvp {
    margin-top: 40px;
    margin-bottom: 100px;
  }

  .paragraph-container-copy {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .divhalfcolor-6 {
    height: 300px;
  }

  .headingpenthouse-6 {
    font-size: 40px;
    line-height: 45px;
  }

  .section-subtitle-6 {
    font-size: 24px;
    line-height: 32px;
  }

  .section-penthouse {
    background-color: var(--nouveau-vert);
    height: auto;
  }

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

  .section-content-wrap-6.vi-section.v2 {
    padding-bottom: 50px;
  }

  .section-content-wrap-6.vi-section.blue {
    background-image: none;
  }

  .section-content-wrap-6.vi-section.blue.contact {
    padding-left: 0;
    padding-right: 0;
  }

  .section-title-6.morespace {
    margin-top: 60px;
  }

  .section-title-6.morespace.centered {
    width: 98%;
    margin-top: 50px;
  }

  .section-title-6.morespace.forhiddenmobile {
    margin-top: 0;
  }

  .section-title-6.center {
    text-align: center;
  }

  .section-6 {
    background-color: var(--nouveau-vert);
    height: auto;
  }

  .button-visite-6 {
    width: 100%;
  }

  .section-img-6.full {
    height: 100%;
  }

  .section-img-6.full.mobileversion {
    object-fit: cover;
    max-width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 400px;
  }

  .section-img-6.full.sliderversion {
    height: 100%;
    max-height: 500px;
  }

  .section-img-6.mobile {
    max-height: 400px;
  }

  .paragraph-6 {
    text-align: center;
    max-width: none;
  }

  .split-section-content {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .split-section-content.blue {
    margin-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .split-section-full-width {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-content: stretch;
    justify-items: center;
    max-width: 100vw;
    height: auto;
    display: grid;
  }

  .arrow-button.gold {
    justify-content: center;
  }

  .section-content-wrap-right {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-content-wrap-right.vi-section.v2 {
    padding-bottom: 50px;
  }

  .section-content-wrap-right.vi-section.blue {
    background-image: none;
  }

  .section-content-wrap-right.vi-section.blue.contact {
    padding-left: 0;
    padding-right: 0;
  }

  .section-content-wrap-left {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-content-wrap-left.vi-section.v2 {
    padding-bottom: 50px;
  }

  .section-content-wrap-left.vi-section.blue {
    background-image: none;
  }

  .section-content-wrap-left.vi-section.blue.contact {
    padding-left: 0;
    padding-right: 0;
  }

  .section-content-wrap-right-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-content-wrap-right-2.vi-section.v2 {
    padding-bottom: 50px;
  }

  .section-content-wrap-right-2.vi-section.blue {
    background-image: none;
  }

  .section-content-wrap-right-2.vi-section.blue.contact {
    padding-left: 0;
    padding-right: 0;
  }

  .section-content-wrap-left-3 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-content-wrap-left-3.vi-section.v2 {
    padding-bottom: 50px;
  }

  .section-content-wrap-left-3.vi-section.blue {
    background-image: none;
  }

  .section-content-wrap-left-3.vi-section.blue.contact {
    padding-left: 0;
    padding-right: 0;
  }

  .align-center-copy {
    background-color: var(--midnight-blue);
    margin-left: 0;
    padding-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-copy {
    background-color: var(--nouveau-vert);
    background-color: var(--nouveau-vert);
    height: auto;
  }

  .divhalfcolor-copy.color2, .divhalfcolor-copy.color2-copy {
    border-bottom: 1px solid #fff;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .body6 {
    background-color: var(--midnight-blue);
  }

  .mask {
    width: 100%;
  }

  .section-vip-image {
    height: 400px;
  }

  .div-block-3 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
    inset: 15% 0% auto;
  }

  .container-6 {
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .headergalerie {
    height: 300px;
    margin-left: 0;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-7 {
    width: auto;
  }

  .grid-5 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .lien-title {
    margin-top: 0;
    font-size: 20px;
    line-height: 20px;
  }

  .image-lien {
    height: 200px;
  }

  .sous-lien {
    margin-bottom: 0;
  }

  .headerpresse {
    height: 300px;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-rsvp-moisson, .button-rsvp-collecte {
    width: auto;
  }

  .page-container-header {
    padding-bottom: 0;
  }

  .divpopuprsvp {
    z-index: 2147483647;
    color: #fff;
    background-color: #000000d9;
    width: 100%;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    display: none;
    position: fixed;
  }

  .divrsvppopup {
    z-index: 80000000;
    color: #fff;
    white-space: normal;
    object-fit: fill;
    background-color: #fff0;
    background-image: none;
    background-size: auto;
    flex: 0 auto;
    align-self: flex-start;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 75% auto 30px;
    padding-left: 0;
    display: block;
    position: absolute;
    inset: 0% 0% auto;
  }

  .div-block-popup {
    color: #fff;
    background-image: none;
    background-size: auto;
    border-style: none;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    display: flex;
    position: absolute;
  }

  .image-rsvp {
    width: 100%;
    height: auto;
    display: block;
  }

  .xclose-5 {
    color: var(--nouveau-vert);
    padding-top: 3px;
    font-size: 18px;
    line-height: 20px;
    position: absolute;
    inset: auto;
  }

  .form, .form-block-2 {
    width: auto;
  }

  .body-5 {
    background-color: var(--nouveau-vert);
  }

  .button-rsvp-moisson-2, .button-rsvp-contact {
    width: auto;
  }

  .form-2 {
    width: auto;
    max-width: none;
  }

  .column {
    margin-bottom: 30px;
  }

  .section-5-copy {
    height: 150px;
  }

  .page-container-header-copy, .page-container-copy-copy {
    padding-bottom: 0;
  }

  .button-rsvp-moisson1 {
    width: auto;
  }

  .youtube {
    border: 1px none var(--tan);
  }

  .youtube-2, .youtube-3, .youtube-4, .youtube-5, .youtube-6 {
    margin-top: 50px;
  }

  .image-copy {
    margin-top: 30px;
    display: none;
  }
}

#Budget.w-node-_63a45233-0465-028d-f988-2cf9167cf1d8-167cf1cd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_85b54082-eaf7-ca30-b835-34a7c73fe4a2-7b48673e {
  order: 9999;
}

#Budget.w-node-ba147466-3807-0c52-2cc4-663b89f41bc3-c1dc00f7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_85b54082-eaf7-ca30-b835-34a7c73fe4a2-0a2a7d6d {
  order: 9999;
}

#Budget.w-node-c8f624e2-e447-fb4c-8e78-d737174fc09a-cb71c505 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_744f45b8-5b87-c1f1-e5fb-f56faa48b8a9-ae502ed8 {
  align-self: auto;
}

#w-node-e6a010ca-a6a7-862d-2e45-4926f8681bf9-ae502ed8, #w-node-e85582aa-bb40-c72d-1d2c-e967a8519087-ae502ed8 {
  order: 9999;
}

#Budget.w-node-_76a3da04-73c0-139c-2034-ac959ea3dc1f-ae502ed8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_744f45b8-5b87-c1f1-e5fb-f56faa48b8a9-f27bcd65 {
  align-self: auto;
}

#w-node-e6a010ca-a6a7-862d-2e45-4926f8681bf9-f27bcd65, #w-node-e85582aa-bb40-c72d-1d2c-e967a8519087-f27bcd65 {
  order: 9999;
}

#Budget.w-node-f9ddccdd-4568-fa99-5e7c-c9f60a431d14-f27bcd65 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_2fb57985-af3c-bddc-a0c2-00a15c797aa8-1730d7a3, #w-node-_2fb57985-af3c-bddc-a0c2-00a15c797aa8-cb951ae7, #w-node-b5f2c726-1156-6e76-ca2b-549ebf11144b-ffbe5a2e, #w-node-_2fb57985-af3c-bddc-a0c2-00a15c797aa8-ffbe5a2e, #w-node-_2fb57985-af3c-bddc-a0c2-00a15c797aa8-ff3a59c6, #w-node-_2fb57985-af3c-bddc-a0c2-00a15c797aa8-931432e1 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_7f7d5216-b278-be54-9938-72ca2ac79d50-612f7078 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2fb57985-af3c-bddc-a0c2-00a15c797aa8-e438f095, #w-node-_2fb57985-af3c-bddc-a0c2-00a15c797aa8-919debe3 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_7f7d5216-b278-be54-9938-72ca2ac79d50-365198d8, #w-node-_7f7d5216-b278-be54-9938-72ca2ac79d50-5e279559, #w-node-_7f7d5216-b278-be54-9938-72ca2ac79d50-11590343, #w-node-bfbbee94-a519-2a3f-96ae-5fdff7150cfd-70c25549 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2fb57985-af3c-bddc-a0c2-00a15c797aa8-e438f095 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-fe664839-e4b5-1c89-8eaf-634e536ec467-ae502ed8, #w-node-e6a010ca-a6a7-862d-2e45-4926f8681bf9-ae502ed8 {
    order: 9999;
  }

  #w-node-e6a010ca-a6a7-862d-2e45-4926f8681c09-ae502ed8 {
    order: -9999;
  }

  #w-node-a76f6faa-dd69-2bd0-ab26-e718657c0280-ae502ed8, #w-node-e85582aa-bb40-c72d-1d2c-e967a8519087-ae502ed8 {
    order: 9999;
  }

  #w-node-e85582aa-bb40-c72d-1d2c-e967a8519097-ae502ed8 {
    order: -9999;
  }

  #w-node-fe664839-e4b5-1c89-8eaf-634e536ec467-f27bcd65, #w-node-e6a010ca-a6a7-862d-2e45-4926f8681bf9-f27bcd65 {
    order: 9999;
  }

  #w-node-e6a010ca-a6a7-862d-2e45-4926f8681c09-f27bcd65 {
    order: -9999;
  }

  #w-node-a76f6faa-dd69-2bd0-ab26-e718657c0280-f27bcd65, #w-node-e85582aa-bb40-c72d-1d2c-e967a8519087-f27bcd65 {
    order: 9999;
  }

  #w-node-e85582aa-bb40-c72d-1d2c-e967a8519097-f27bcd65 {
    order: -9999;
  }
}


@font-face {
  font-family: 'Firasans';
  src: url('../fonts/FiraSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Firasans';
  src: url('../fonts/FiraSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}