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

@font-face {
  font-family: Eagle;
  src: url('../fonts/eagle-book.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Eagle;
  src: url('../fonts/eagle-bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --dim-grey: #5a6f63;
  --burlywood: #fdc581;
  --pink: #fad3e4;
  --dark-salmon: #f7a08b;
  --dark-slate-grey: #323d35;
}

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

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

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

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

body {
  background-color: var(--dim-grey);
  color: #fff;
  font-family: Eagle, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

p {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

.hero-section {
  justify-content: center;
  padding-top: 220px;
  padding-bottom: 160px;
  display: flex;
  position: relative;
}

.hero-section.no-padding-bottom, .hero-section.no-padding-bottom-collection {
  padding-top: 140px;
  padding-bottom: 0;
}

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

.hero-logo {
  z-index: 2;
  object-fit: contain;
  width: 240px;
  position: absolute;
  top: auto;
  bottom: -95px;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section.yellow {
  background-color: var(--burlywood);
  color: var(--dim-grey);
}

.section.pink {
  background-color: var(--pink);
  color: var(--dim-grey);
}

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

.section.padding {
  padding-top: 100px;
  padding-bottom: 140px;
}

.section.image {
  height: 500px;
}

.section-bg {
  z-index: 1;
  width: 100%;
  height: 100%;
  color: var(--dim-grey);
  object-fit: cover;
  padding-bottom: 0;
  position: absolute;
  inset: 0%;
}

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

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

.section-img-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.section-title {
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  position: relative;
}

.section-title.border {
  border: 2px solid var(--dim-grey);
  color: var(--dim-grey);
  padding: 20px;
  font-weight: 700;
  text-decoration: none;
}

.section-title.salmon-text {
  color: var(--dark-salmon);
  text-decoration: none;
}

.section-title.yellow-text {
  color: var(--burlywood);
  font-weight: 700;
}

.section-title.small {
  font-size: 42px;
  line-height: 54px;
}

.section-title.small.small2 {
  font-size: 32px;
  line-height: 44px;
}

.section-title-wrap {
  position: relative;
}

.circle-img {
  object-fit: cover;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}

.circle-logo {
  background-color: #ffb6b6;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  display: flex;
  position: absolute;
  inset: auto 30px 20px auto;
  box-shadow: -9px 5px 30px #0000001a;
}

.circle-logo.yellow {
  background-color: var(--burlywood);
}

.circle-logo.static {
  position: relative;
  inset: auto 0 -60px;
}

.text-logo {
  object-fit: contain;
  width: 80px;
  height: 80px;
}

.text-logo.static {
  background-color: #0000;
  width: auto;
  max-width: 600px;
  height: auto;
}

.title-logo {
  z-index: 0;
  max-height: 160px;
  position: absolute;
  inset: 0% 0% 0% -60px;
}

.title-logo.large {
  max-height: none;
  display: block;
  inset: -100px 0% 0%;
}

.align-center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.align-center.back {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--dim-grey), transparent 27%);
}

.section-subtitle {
  color: var(--burlywood);
  text-transform: uppercase;
  padding-bottom: 30px;
  font-weight: 600;
}

.section-subtitle.large {
  padding-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.section-subtitle.rsvp {
  color: var(--dim-grey);
  text-transform: none;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

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

.feature-item {
  color: var(--dark-salmon);
  background-color: #ffffff0f;
  padding: 20px;
}

.feature-item.salmon {
  background-color: var(--dark-salmon);
  color: var(--dim-grey);
  border-right: 1px solid #5a6f633d;
}

.feature-item.pink {
  color: var(--dim-grey);
  background-color: #fad3e4;
  border-right: 1px solid #5a6f634f;
}

.feature-item.pink.horizontal {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.feature-item.yellow {
  background-color: var(--burlywood);
  color: var(--dim-grey);
  border-right: 1px solid #5a6f632b;
}

.house-thumbnail {
  object-fit: cover;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}

.house-title {
  text-align: center;
  padding-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.house-title.yellow {
  text-align: left;
}

.house-title.rsvp {
  text-align: left;
  padding-bottom: 0;
  font-size: 28px;
  font-weight: 600;
}

.list-item {
  align-items: center;
  padding-bottom: 15px;
  font-weight: 600;
  display: flex;
}

.list-item.align-center {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
}

.list-bullet {
  background-color: #fff;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  margin-right: 15px;
}

.list-bullet.yellow {
  background-color: var(--burlywood);
  color: var(--burlywood);
}

.padding-block {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.narrow-content {
  max-width: 70%;
}

.benefits-grid {
  grid-column-gap: 60px;
  grid-row-gap: 45px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  display: grid;
}

.benefit-item {
  text-transform: uppercase;
  align-items: center;
  display: flex;
}

.benefit-icon {
  object-fit: contain;
  width: 70px;
  height: 70px;
  margin-right: 30px;
}

.bottom-bg-section {
  background-image: url('../images/Footer-BG.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding-top: 220px;
  padding-bottom: 220px;
  display: flex;
}

.bottom-logo {
  object-fit: contain;
  width: 360px;
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  object-fit: contain;
}

.hero-title {
  z-index: 1;
  text-shadow: 1px 1px 10px #00000040;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
  font-size: 80px;
  line-height: 90px;
  position: relative;
}

.hero-title.smallversion {
  padding-bottom: 15px;
  font-size: 50px;
  line-height: 60px;
}

.gradeint-bg {
  z-index: 1;
  background-image: linear-gradient(#0000, #5a6f63e6 50%);
  height: 350px;
  position: absolute;
  inset: auto 0% 0%;
}

.navbar {
  height: 120px;
  color: var(--dim-grey);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 10px;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-logo {
  object-fit: contain;
  width: 30px;
  height: 30px;
}

.nav-logo-link {
  background-color: var(--dim-grey);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  transition: all .2s;
  display: flex;
  box-shadow: 0 0 20px #0003;
}

.nav-logo-link:hover {
  background-color: var(--burlywood);
}

.menu-button {
  background-color: var(--burlywood);
  color: #fff;
  border-radius: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-left: 20px;
  padding: 15px;
  font-size: 24px;
  line-height: 24px;
  transition: all .2s;
  display: flex;
  position: absolute;
  inset: 0% 2% auto auto;
  box-shadow: 0 0 20px #0009;
}

.menu-button:hover, .menu-button.w--open {
  background-color: var(--dark-salmon);
}

.nav-menu {
  background-color: var(--dim-grey);
  color: #fff;
  margin-top: 19px;
  padding: 20px;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  display: block;
}

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

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

.form-wrap {
  z-index: 2;
  background-color: var(--burlywood);
  padding-left: 0;
  padding-right: 0;
}

.form-img {
  object-fit: cover;
  width: 100%;
  height: 320px;
}

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

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

.button {
  border: 2px solid var(--dim-grey);
  color: var(--dim-grey);
  background-color: #0000;
  margin-top: 10px;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  transition: all .2s;
}

.button:hover {
  background-color: var(--dim-grey);
  color: #fff;
}

.button.form {
  border-color: var(--dim-grey);
  width: 100%;
  color: var(--dim-grey);
}

.button.form:hover {
  color: var(--burlywood);
}

.button.salmon {
  border-color: var(--dark-salmon);
  color: var(--dark-salmon);
}

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

.button.white {
  color: #fff;
  text-align: center;
  border-color: #fff;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.button.white:hover {
  border-color: var(--burlywood);
  background-color: var(--burlywood);
  color: var(--dim-grey);
}

.nav-container {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.gallery-slider {
  background-color: #0000;
  height: auto;
  padding-left: 100px;
  padding-right: 100px;
}

.hidden {
  display: none;
}

.slide-arrow {
  background-color: var(--dim-grey);
  border-radius: 100%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  line-height: 24px;
}

.slide-img {
  object-fit: cover;
  width: 100%;
  height: 650px;
}

.bottom-img {
  max-height: 140px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.bottom-img.right {
  inset: auto 0% 0% auto;
}

.map-img {
  object-fit: cover;
  width: 100%;
  height: 800px;
}

.salmon-text {
  color: var(--dark-salmon);
}

.main-page-logo {
  max-width: 80%;
  position: relative;
  bottom: -85px;
}

.section-img {
  object-fit: contain;
  width: 100%;
}

.sectionplanpoint {
  height: 100%;
}

.lightbox {
  width: 100%;
  transition: box-shadow .5s;
  box-shadow: 0 0 10px #00000026;
}

.lightbox:hover {
  box-shadow: 0 20px 20px -12px #000000a3;
}

.slider {
  border-radius: 12px;
  max-width: 1280px;
  height: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.slide {
  background-image: url('../images/REimagineHome_1777855733740_1x2.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-2 {
  background-image: url('../images/2-Cottage_Jardins_Philomene.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-3 {
  background-image: url('../images/1-Cottage_Jardins_Philomene.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-4 {
  background-image: url('../images/4-Cottage_Jardins_Philomene.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-5 {
  background-image: url('../images/5-Cottage_Jardins_Philomene.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.text-field-questions {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--dim-grey);
  height: 60px;
  color: var(--dim-grey);
  background-color: #0000;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: 300;
  display: block;
}

.text-field-questions::placeholder {
  color: var(--dim-grey);
  font-weight: 300;
}

.text-field-2 {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--dim-grey);
  height: 45px;
  color: var(--dim-grey);
  background-color: #0000;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: 300;
}

.text-field-2::placeholder {
  color: var(--dim-grey);
  font-weight: 300;
}

.section-subtitle-2 {
  margin-bottom: 0;
  font-weight: 700;
}

.section-subtitle-2.pink-text {
  color: #fad3e4;
}

.section-subtitle-2.rsvp {
  color: var(--dark-slate-grey);
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 600;
}

.form-block-2 {
  background-color: var(--burlywood);
  padding: 40px;
}

.section-subtitle-form {
  margin-top: 23px;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-title-2 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 50px;
  line-height: 58px;
  display: block;
}

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

.merci {
  z-index: 1;
  text-shadow: 1px 1px 10px #00000040;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
  font-size: 44px;
  line-height: 40px;
  position: relative;
}

.section-2 {
  color: #5a6f63;
  text-align: center;
  background-color: #ffc169;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-2.morepadding {
  padding-bottom: 60px;
}

.image {
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  display: block;
}

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

.section-3 {
  z-index: 1;
  color: #5a6f63;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section-3.dark-green {
  background-color: #5a6f63;
}

.section-3.bottom {
  padding-bottom: 220px;
}

.section-3.bottom.white {
  background-color: #fff;
}

.section-3.footer-bar {
  background-color: #ffc169;
  padding-top: 20px;
  padding-bottom: 40px;
}

.button-3 {
  color: #5a6f63;
  text-align: center;
  background-color: #0000;
  border: 2px solid #5a6f63;
  padding: 12px 40px;
  font-size: 18px;
  line-height: 26px;
  transition: all .2s;
}

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

.button-3.courtierbig {
  color: #fff;
  border-color: #fff;
  margin-top: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.button-3.courtierbig:hover {
  color: #5a6f63;
}

.button-3.courtier {
  color: #fff;
  border-color: #fff;
  margin-top: 20px;
}

.button-3.courtier:hover {
  color: #5a6f63;
}

.button-3.cta {
  color: #5a6f63;
  background-color: #0000;
  border: 1px solid #ffac97;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 700;
}

.button-3.cta:hover {
  color: #fff;
  background-color: #ffac97;
}

.toggle {
  color: #fff;
}

.toggle:hover {
  color: #5a6f63;
}

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

.dropdown-list.w--open {
  color: #5a6f63;
  background-color: #fff;
}

.section-content-wrap {
  position: relative;
}

.dropdown-link {
  color: #5a6f63;
  padding-top: 15px;
  padding-bottom: 15px;
}

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

._2-col-grid-2.margin {
  margin-bottom: 60px;
}

.hero-section-plans {
  color: #5a6f63;
  background-color: #ffc169;
  padding: 100px 2%;
  position: relative;
}

.separator {
  background-color: #ffc169;
  height: 150px;
}

.bottom-logo-2 {
  width: 120px;
  margin-top: -160px;
  margin-bottom: 100px;
}

.padding-top-block {
  padding-top: 40px;
}

.section-bg-text {
  z-index: -1;
  max-width: 500px;
  position: absolute;
  inset: 0% 0% auto -80px;
}

.section-bg-text.bottom-page {
  z-index: -2;
  margin-left: auto;
  margin-right: auto;
  inset: auto 0% -40px;
}

.align-center-2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.footer-logo-2 {
  width: 240px;
  margin-top: -135px;
  margin-bottom: 40px;
}

.image-2 {
  margin-left: auto;
  margin-right: auto;
}

.container-3 {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.container-4 {
  background-image: url('../images/MercierProjectheaderB.jpg');
  background-position: 50%;
  background-size: cover;
  max-width: 100%;
  height: 400px;
}

.section-4 {
  background-color: var(--burlywood);
}

.heading {
  color: var(--dim-grey);
  text-align: center;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 34px;
}

.heading-2 {
  text-align: center;
  margin-top: 40px;
  font-size: 30px;
}

.heading-3 {
  color: var(--burlywood);
  text-align: center;
  font-size: 34px;
  line-height: 38px;
}

.heading-4 {
  text-align: center;
  margin-top: 40px;
  font-size: 34px;
}

.text-block {
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-size: 24px;
}

.container-5 {
  border: 3px solid var(--burlywood);
  max-width: 700px;
  margin-top: 40px;
  margin-bottom: 0;
}

.form-block-courtiers {
  background-color: var(--burlywood);
  width: 700px;
  max-width: 700px;
  margin-top: 0;
  margin-bottom: 50px;
  padding: 40px;
}

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

.section-6 {
  background-color: var(--dim-grey);
  height: 120px;
}

.image-4 {
  z-index: 1;
  margin: auto;
  padding-top: 25px;
  display: block;
  position: relative;
  inset: 0% auto auto 0%;
}

.hero-section-landing-1 {
  justify-content: center;
  height: 600px;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  position: relative;
}

.body-landing {
  max-width: 100%;
  color: var(--dim-grey);
  background-color: #0000;
}

.hero-section-landing-2 {
  height: auto;
  min-height: 650px;
  color: var(--dim-grey);
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.section-bg-landing-1 {
  z-index: 1;
  background-color: var(--dim-grey);
  width: 100%;
  height: 100%;
  color: var(--dim-grey);
  object-fit: cover;
  margin-top: -1px;
  padding-top: 0;
  display: block;
  position: absolute;
  inset: 0%;
}

.section-bg-landing-1:hover {
  margin-left: 0;
  padding-left: 0;
}

.section-bg-landing-2 {
  z-index: 1;
  width: 100%;
  height: 100%;
  color: var(--dim-grey);
  object-fit: cover;
  position: absolute;
  inset: 0%;
}

.container-7 {
  z-index: 1;
  display: block;
  position: absolute;
}

.text-block-2 {
  color: #fff;
  text-align: center;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 30px;
  font-family: Eagle, sans-serif;
  font-size: 32px;
  font-weight: 400;
}

.text-block-3 {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.section-7 {
  background-image: url('../images/mercier-landing.jpg');
  background-position: 50%;
  background-size: cover;
  height: 300px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.section-8 {
  background-color: var(--dark-slate-grey);
  margin-bottom: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}

.text-block-4 {
  color: #fff;
  text-align: center;
  padding-top: 54px;
  padding-bottom: 23px;
  font-size: 25px;
  font-weight: 600;
}

.text-field-4 {
  color: #fff;
  background-color: #0000;
  border-top: 1px #000;
  border-left: 1px #000;
  border-right: 1px #000;
  margin-bottom: 20px;
}

.text-field-4:active {
  color: #fff;
}

.text-field-4:focus, .text-field-4::placeholder {
  color: #fff;
  font-size: 20px;
}

.text-field-5 {
  color: #fff;
  background-color: #0000;
  border-top: 1px #000;
  border-left: 1px #000;
  border-right: 1px #000;
  margin-bottom: 20px;
  font-size: 20px;
}

.text-field-5:hover, .text-field-5:focus {
  color: #fff;
}

.text-field-5::placeholder {
  color: #fff;
  font-size: 20px;
}

.container-8 {
  max-width: 700px;
  padding-top: 0;
}

.select-field {
  color: #fff;
  background-color: #fff0;
  border-top: 1px #000;
  border-left: 1px #000;
  border-right: 1px #000;
  margin-bottom: 20px;
  padding-left: 10px;
  font-size: 18px;
}

.select-field:focus {
  color: #000;
}

.submit-button {
  color: var(--dim-grey);
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  margin: 40px auto 0;
  padding-top: 9px;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 600;
  transition: color .4s, background-color .4s;
  display: block;
}

.submit-button:hover {
  background-color: var(--dim-grey);
  color: #fff;
}

.submit-button:active {
  color: #000;
}

.section-9 {
  background-color: var(--dark-salmon);
}

.image-5 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 38px;
  display: block;
}

.image-6 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
}

.image-7 {
  z-index: 0;
  margin-top: 27px;
  padding-top: 0;
  padding-bottom: 22px;
  padding-left: 0;
  display: block;
  position: relative;
  inset: 0% 0% auto 11%;
}

.form-2 {
  display: none;
}

.container-9 {
  max-width: none;
  margin-top: -20px;
  padding-top: 0;
}

.image-8 {
  max-width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.section-mobile {
  display: none;
}

.overblock {
  z-index: 10001;
  color: #fff;
  text-align: center;
  background-color: #0a1a31d9;
  border-radius: 3px;
  justify-content: flex-start;
  align-items: center;
  width: 390px;
  height: auto;
  margin-top: 0;
  padding: 15px;
  font-size: 13px;
  display: flex;
  position: fixed;
  bottom: 1%;
  right: 3%;
  box-shadow: 0 0 5px #00000040;
}

.overblock.invetedcolors {
  z-index: 300;
  color: #fff;
  background-color: #ffffffdb;
  background-image: url('../images/centre-2600.png');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  width: 400px;
  height: 60px;
  margin-bottom: 5px;
  margin-right: 5px;
  padding-top: 0;
  padding-bottom: 0;
  font-family: PT Sans, sans-serif;
  display: none;
  inset: auto 0% 0% auto;
}

.link-block {
  text-decoration: none;
}

.centeredthoug {
  color: var(--dim-grey);
  text-align: center;
  text-transform: none;
  flex: 1;
  padding-top: 0;
  font-family: Eagle, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
}

.div-block-2 {
  z-index: 200;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 25px;
  padding-left: 50px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.image-10 {
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  position: static;
}

.gcr {
  background-color: #fff0;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  display: flex;
  position: absolute;
  inset: 45px auto auto;
}

.text-gcr {
  object-fit: contain;
  width: 300px;
  height: 300px;
}

.image-7-copy {
  z-index: 0;
  margin-top: 27px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: block;
  position: relative;
  inset: 0% 0% auto 11%;
}

.html-embed-ordi {
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

.html-embed-mobile {
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  display: none;
}

.paragraph {
  margin-top: 30px;
}

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

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

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

.xclose {
  z-index: 20000;
  float: right;
  clear: left;
  border: 1px solid var(--burlywood);
  color: var(--burlywood);
  text-align: center;
  cursor: pointer;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  margin-top: 10px;
  margin-left: 10px;
  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;
}

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

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

.xclose-2 {
  z-index: 20000;
  float: right;
  clear: right;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border: 1px solid #fff;
  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;
}

.hero-section-collection {
  justify-content: center;
  padding-top: 220px;
  padding-bottom: 160px;
  display: flex;
  position: relative;
}

.hero-section-collection.no-padding-bottom {
  padding-top: 140px;
  padding-bottom: 0;
}

.hero-section-collection.no-padding-bottom-collection {
  padding-top: 100px;
  padding-bottom: 100px;
}

.image-11 {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section-c1 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
}

.text-block-5 {
  text-align: justify;
  padding-top: 30px;
  font-size: 16px;
  line-height: 20px;
}

.container-10 {
  max-width: 800px;
}

.image-12 {
  border: 2px solid var(--burlywood);
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  display: block;
}

.section-c4 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 0;
}

.container-11 {
  max-width: 1400px;
}

.text-block-6 {
  text-align: justify;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 200px;
  font-size: 16px;
  line-height: 20px;
}

.section-c2 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
}

.heading-5 {
  opacity: 1;
  color: var(--dim-grey);
  text-align: left;
  letter-spacing: 5px;
  margin-top: 81px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  display: flex;
  position: static;
}

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

.div-block-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-13 {
  opacity: .46;
  letter-spacing: 67px;
  max-width: 40%;
  padding-left: 0;
}

.section-c3 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 50px;
}

.container-13 {
  max-width: none;
}

.section-c5 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-c6 {
  padding-top: 50px;
  padding-bottom: 100px;
}

.container-14 {
  max-width: 1400px;
}

.div-block-4 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.heading-6 {
  opacity: 1;
  text-align: center;
  letter-spacing: 5px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 46px;
  position: static;
}

.container-15 {
  max-width: 1400px;
}

.container-16 {
  border-left: 0px solid var(--burlywood);
  max-width: 1400px;
}

.section-c8 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.container-17 {
  max-width: 1400px;
}

.div-block-5 {
  margin-left: 220px;
  margin-right: 220px;
  position: static;
}

.footer-section-collection, .section-c9 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.container-45 {
  z-index: 2;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.align-center-5 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: none;
  display: flex;
}

.align-center-5.back {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--dim-grey), transparent 27%);
}

.form-3 {
  padding-top: 50px;
  padding-left: 80px;
  padding-right: 80px;
}

.column {
  padding-right: 8px;
}

.column-2 {
  padding-left: 5px;
}

.text-field-6 {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--dim-grey);
  color: var(--dim-grey);
  background-color: #fff0;
  margin-bottom: 25px;
  margin-right: 8px;
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
}

.text-field-6::placeholder {
  color: var(--dim-grey);
}

.text-field-7 {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--dim-grey);
  color: var(--dim-grey);
  background-color: #fff0;
  margin-bottom: 25px;
  margin-left: 8px;
  padding-left: 0;
  font-weight: 600;
}

.text-field-7::placeholder {
  color: var(--dim-grey);
}

.select-field-2 {
  color: #fff;
  background-color: #f3f3f300;
  border-top: 1px #000;
  border-left: 1px #000;
  border-right: 1px #000;
  margin-left: 0;
  padding-right: 5px;
}

.text-field-question {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--dim-grey);
  height: 70px;
  color: var(--dim-grey);
  background-color: #fff0;
  padding-left: 12px;
  padding-right: 0;
  font-weight: 600;
}

.text-field-question::placeholder {
  color: var(--dim-grey);
}

.submit-button-2 {
  border: 1px solid var(--dim-grey);
  color: var(--dim-grey);
  background-color: #3898ec00;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  transition: transform .5s;
  display: inline-block;
}

.submit-button-2:hover {
  color: #0a3a1d;
  background-color: #fff9;
}

.column-3 {
  justify-content: flex-end;
  align-items: center;
  padding-right: 80px;
  display: flex;
}

.column-4 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  display: flex;
}

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

.body-collection {
  background-color: var(--dark-slate-grey);
}

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

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

.image-14 {
  opacity: 1;
  color: #fff;
  letter-spacing: 67px;
  max-width: 60%;
  margin-bottom: 57px;
  margin-left: -206px;
  display: block;
}

.section-c7 {
  padding-top: 100px;
  padding-bottom: 300px;
}

.div-block-7 {
  padding-top: 50px;
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
}

.text-block-7 {
  color: #fff;
  padding-top: 30px;
  padding-right: 100px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
}

.heading-7 {
  color: var(--burlywood);
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.button-4 {
  text-align: center;
  background-color: #3898ec00;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.button-4:hover {
  color: var(--burlywood);
  background-color: #0000;
}

.heading-8 {
  opacity: 1;
  color: #fdfffe;
  text-align: center;
  letter-spacing: 5px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  position: absolute;
}

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

.image-15 {
  z-index: -1;
  max-width: 300px;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: absolute;
}

.image-16 {
  max-width: 300px;
  margin-left: 100px;
  padding-left: 0;
  position: absolute;
}

.image-17 {
  margin-left: -79px;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.button-5 {
  color: #fff;
  text-align: left;
  background-color: #3898ec00;
  flex-direction: row;
  justify-content: flex-start;
  width: 400px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
}

.button-5:hover {
  color: var(--burlywood);
  background-color: #5a6f6300;
}

.image-18 {
  max-width: 25%;
}

.div-block-8 {
  justify-content: center;
  align-items: center;
  margin: 0;
  display: flex;
  position: absolute;
  inset: 0%;
}

.form-block-collection {
  background-color: var(--burlywood);
  padding: 40px;
}

.circle-logo-collection {
  background-color: var(--burlywood);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  display: flex;
  position: absolute;
  inset: auto auto 20px 30px;
  box-shadow: -9px 5px 30px #0000001a;
}

.circle-logo-collection.yellow {
  background-color: var(--burlywood);
}

.circle-logo-collection.static {
  position: relative;
  inset: auto 0 -60px;
}

.column-7 {
  padding-left: 30px;
}

.text-block-8 {
  text-align: justify;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 40px;
  font-size: 16px;
  line-height: 20px;
}

.columns-2 {
  display: flex;
}

.html-embed {
  display: none;
}

.slider-2 {
  max-width: 100%;
}

.slide-7 {
  background-image: url('../images/Jardins-Philomene_Site-web_Collection-Philomene_Valeriane.gif');
  background-position: 50%;
  background-size: contain;
}

.paragraph-2 {
  margin-top: 89px;
}

.text-logo-devoilement {
  object-fit: contain;
  width: 80px;
  height: 80px;
}

.text-logo-devoilement.static {
  background-color: #0000;
  width: auto;
  max-width: 600px;
  height: auto;
}

.text-logo-devoilement.static-devoilement {
  background-color: #0000;
  width: auto;
  max-width: 400px;
  height: auto;
}

.button-7 {
  background-color: var(--burlywood);
  width: 400px;
  color: var(--dark-slate-grey);
  text-align: center;
  margin: 40px auto 0;
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.button-7:hover {
  color: var(--burlywood);
  background-color: #0000;
}

.text-block-9 {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 700px;
  margin: 25px auto 50px;
  display: flex;
}

.form-4 {
  margin-top: 0;
}

.grid {
  grid-template-rows: auto;
}

.button-devoilement {
  border: 2px solid var(--dim-grey);
  color: var(--dim-grey);
  text-align: center;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  transition: all .2s;
  display: flex;
}

.button-devoilement:hover {
  background-color: var(--dim-grey);
  color: #fff;
}

.button-devoilement.form {
  width: 100%;
}

.button-devoilement.salmon {
  border-color: var(--dark-salmon);
  color: var(--dark-salmon);
}

.button-devoilement.salmon:hover {
  background-color: var(--dark-salmon);
  color: #fff;
}

.button-devoilement.white {
  color: #fff;
  text-align: center;
  border-color: #fff;
  margin-top: 10px;
}

.button-devoilement.white:hover {
  border-color: var(--burlywood);
  background-color: var(--burlywood);
  color: var(--dim-grey);
}

.benefit-icon-jaune {
  object-fit: contain;
  width: 70px;
  height: 70px;
  margin-right: 30px;
}

.section-title-jaune {
  z-index: 1;
  color: var(--burlywood);
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 30px;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  position: relative;
}

.section-title-jaune.border {
  border: 2px solid var(--dim-grey);
  color: var(--dim-grey);
  padding: 20px;
  font-weight: 700;
  text-decoration: none;
}

.section-title-jaune.salmon-text {
  color: var(--dark-salmon);
  text-decoration: none;
}

.section-title-jaune.yellow-text {
  color: var(--burlywood);
  font-weight: 700;
}

.section-title-jaune.small {
  font-size: 42px;
  line-height: 54px;
}

.section-title-jaune.small.small2 {
  font-size: 32px;
  line-height: 44px;
}

.section-10 {
  padding-top: 40px;
}

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

.container-46 {
  border: 2px solid #fdc58196;
  padding-top: 80px;
  padding-bottom: 80px;
}

.container-20 {
  border: 2px solid #fdc58180;
  max-width: 800px;
  padding: 40px 50px;
}

.text-block-2-copy {
  color: #fff;
  text-align: center;
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  font-family: Eagle, sans-serif;
  font-size: 32px;
  font-weight: 400;
}

.container-47 {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.columns-3 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.bold-text-2 {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 16px;
}

.heading-9 {
  align-items: flex-start;
  display: flex;
}

.column-10 {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.heading-12 {
  color: var(--burlywood);
  margin-top: 50px;
  margin-bottom: 150px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 32px;
  font-weight: 400;
}

.image-13-copy {
  opacity: .46;
  letter-spacing: 67px;
  max-width: 40%;
  padding-left: 0;
  display: none;
}

.section-c3-copy {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 50px;
}

.bold-text-3 {
  color: var(--burlywood);
}

.title-logo-en {
  z-index: 0;
  max-height: 160px;
  position: absolute;
  inset: 0% 0% 0% -60px;
}

.title-logo-en.large {
  max-height: none;
  display: block;
  inset: -100px 0% 0%;
}

.container-48 {
  max-width: 600px;
}

.narrow-content-copy {
  max-width: 70%;
  margin-bottom: 80px;
}

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

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

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

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

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

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

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

.text-block-10 {
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
}

.link-block-2 {
  color: var(--burlywood);
  text-decoration: none;
}

.section-12 {
  padding-bottom: 100px;
}

.text-block-11 {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.text-block-11.align-center {
  font-weight: 600;
}

.link {
  color: var(--burlywood);
}

.yellowblock {
  color: #5a6f63;
  background-color: #fdc581;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  font-weight: 400;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.heading-rsvp {
  color: var(--burlywood);
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.heading-form {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.text-block-9-copy {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 700px;
  margin: 0 auto 50px;
  display: flex;
}

.submit-button-copy {
  color: var(--dim-grey);
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  margin: 0 auto;
  padding-top: 9px;
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 600;
  transition: color .4s, background-color .4s;
  display: block;
}

.submit-button-copy:hover {
  background-color: var(--dim-grey);
  color: #fff;
}

.submit-button-copy:active {
  color: #000;
}

.container-49 {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-block-12 {
  color: var(--pink);
  font-size: 25px;
  font-weight: 700;
}

.text-block-13 {
  color: var(--pink);
}

.text-block-14 {
  color: var(--pink);
  margin-top: 27px;
  font-weight: 600;
}

.text-span {
  color: var(--dim-grey);
}

.section-delete {
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
  position: relative;
}

.section-delete.yellow {
  background-color: var(--burlywood);
  color: var(--dim-grey);
  display: none;
}

.section-delete.pink {
  background-color: var(--pink);
  color: var(--dim-grey);
  display: none;
}

.section-delete.contact {
  padding-top: 0;
  padding-bottom: 0;
}

.section-delete.padding {
  padding-top: 100px;
  padding-bottom: 140px;
}

.section-delete.image {
  height: 500px;
}

.field-row {
  padding-bottom: 10px;
}

.field-row._2-col {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 10px;
  padding-bottom: 0;
  display: grid;
}

.submit-button-3 {
  background-color: #ee6f38;
  border-radius: 20px;
  padding-left: 30px;
  padding-right: 30px;
}

.text-field-8 {
  color: #e9ded8;
  background-color: #0000;
  border: 1px #f0d5cc;
  border-bottom: 1px solid #a0a797;
  height: 30px;
  margin-top: 10px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  font-size: 16px;
  font-weight: 400;
}

.text-field-8:active {
  color: #e9ded8;
  background-color: #5e1c1c00;
}

.text-field-8:focus, .text-field-8:focus-visible, .text-field-8[data-wf-focus-visible] {
  color: #e9ded8;
}

.text-field-8::placeholder {
  color: #e9ded8;
  font-weight: 400;
}

.text-field-2-copy {
  color: #e9ded8;
  background-color: #0000;
  border: 1px #f0d5cc;
  border-bottom: 1px solid #e9ded8;
  height: 30px;
  margin-top: 10px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  font-size: 16px;
  font-weight: 400;
}

.text-field-2-copy:active {
  color: #e9ded8;
  background-color: #5e1c1c00;
}

.text-field-2-copy:focus, .text-field-2-copy:focus-visible, .text-field-2-copy[data-wf-focus-visible] {
  color: #e9ded8;
}

.text-field-2-copy::placeholder {
  color: #e9ded8;
  font-weight: 400;
}

.text-field-2-copy.select {
  border-bottom-color: #a0a797;
  height: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
  margin-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2px;
  font-size: 16px;
  font-weight: 400;
}

.text-field-2-copy.select:active {
  background-color: #5e1c1c00;
}

.text-field-2-copy.select:focus, .text-field-2-copy.select:focus-visible, .text-field-2-copy.select[data-wf-focus-visible] {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}

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

.form-5 {
  flex-direction: column;
  width: auto;
  display: flex;
}

.container-50 {
  background-image: linear-gradient(to bottom, var(--dim-grey), var(--dim-grey));
  color: #5e7063;
  border-radius: 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  max-width: none;
  padding: 20px 30px;
  display: flex;
}

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

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

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

.rsvp-form {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.heading-13 {
  color: #e9ded8;
  text-align: left;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1.25fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

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

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

.link-block-3 {
  border-radius: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-20 {
  width: 100%;
}

.field-form {
  color: #e9ded8;
  background-color: #0000;
  border: 1px #f0d5cc;
  border-bottom: 1px solid #a0a797;
  height: 30px;
  margin-top: 10px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  font-size: 16px;
  font-weight: 400;
}

.field-form:active {
  color: var(--dark-slate-grey);
  background-color: #5e1c1c00;
}

.field-form:focus, .field-form:focus-visible, .field-form[data-wf-focus-visible] {
  color: var(--dark-slate-grey);
}

.field-form::placeholder {
  color: #e9ded8;
  font-weight: 400;
}

.bold-text-4 {
  font-weight: 400;
}

.bold-text-5 {
  padding-bottom: 20px;
  font-size: 25px;
  font-weight: 600;
}

.grid-3 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-flow: column;
}

.slide-11 {
  background-image: url('../images/REimagineHome_1777855733740_1x2.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-12 {
  background-image: url('../images/REimagineHome_1777856068650_1x1.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-14 {
  background-image: url('../images/REimagineHome_1777855629657_1x1.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-13 {
  background-image: url('../images/REimagineHome_1777901160712_2x11-copie-2.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-15 {
  background-image: url('../images/REimagineHome_1777859896560_2x.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-16 {
  background-image: url('../images/IMM_1737-HDR.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-17 {
  background-image: url('../images/REimagineHome_1781399471069_2x.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-18 {
  background-image: url('../images/REimagineHome_1781399084737_2x.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-19 {
  background-image: url('../images/REimagineHome_1779668262594_2x.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-20 {
  background-image: url('../images/REimagineHome_1777859445361_2x.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.slide-21 {
  background-image: url('../images/REimagineHome_1777859631851_2x-copie.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
}

.div-block-27 {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 50px;
  padding-top: 20px;
  padding-right: 50px;
  display: flex;
}

.image-35 {
  z-index: 1;
  max-width: 15%;
  position: fixed;
  inset: auto 0% 0% auto;
}

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

@media screen and (min-width: 1920px) {
  .divinsidepopup {
    width: 750px;
  }

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

  .insidepopup {
    width: 750px;
  }

  .section-c1 {
    margin-top: 100px;
  }

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

  .text-field-8 {
    color: #e9ded8;
    border-bottom-color: #a0a797;
    height: 50px;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 400;
    line-height: 2vw;
  }

  .text-field-8::placeholder {
    font-size: 22px;
    font-weight: 400;
  }

  .text-field-2-copy {
    height: 50px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 1.5vw;
    line-height: 2vw;
  }

  .text-field-2-copy::placeholder {
    font-size: 1.5vw;
    font-weight: 400;
  }

  .text-field-2-copy.select {
    height: 50px;
    padding-bottom: 10px;
    font-size: 22px;
  }

  .text-field-2-copy.select:focus {
    font-size: 24px;
  }

  .form-5 {
    width: auto;
  }

  .container-50 {
    max-width: none;
  }

  .popup-form {
    height: auto;
    padding-top: 0;
  }

  .image-popup-2 {
    width: 100%;
  }

  .rsvp-form {
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-13 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 400;
    line-height: 30px;
  }

  .grid-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: .75fr .75fr;
    grid-auto-columns: .25fr;
    grid-auto-flow: row;
    display: grid;
  }

  .xclose-3 {
    border-radius: 10px;
    margin-top: 6px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 30px;
    line-height: 30px;
  }

  .insidepopupform {
    border-radius: 0;
    width: 600px;
  }

  .field-form {
    color: #e9ded8;
    border-bottom-color: #a0a797;
    height: 50px;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 400;
    line-height: 2vw;
  }

  .field-form::placeholder {
    font-size: 22px;
    font-weight: 400;
  }
}

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

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

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .section.image {
    height: 420px;
  }

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

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

  .section-img-wrap {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title, .section-title.border {
    font-size: 42px;
    line-height: 54px;
  }

  .circle-logo.static {
    width: 80px;
    height: 80px;
    bottom: -20px;
  }

  .text-logo.static {
    width: 45px;
    height: 45px;
  }

  .title-logo {
    max-height: 120px;
    display: none;
    left: 0;
  }

  .title-logo.large {
    object-fit: contain;
    width: 100%;
    max-height: 200px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .narrow-content {
    max-width: 90%;
  }

  .benefits-grid {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .hero-title {
    font-size: 64px;
    line-height: 72px;
  }

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

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

  .gallery-slider {
    padding-left: 40px;
    padding-right: 40px;
  }

  .slide-img {
    height: 500px;
  }

  .bottom-img {
    z-index: 2;
  }

  .map-img {
    height: 500px;
  }

  .main-page-logo {
    max-width: 60%;
    bottom: -40px;
  }

  .section-img {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .align-center-mobile {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .form-block-2 {
    width: 100%;
  }

  .section-title-2 {
    font-size: 48px;
    line-height: 56px;
  }

  .merci {
    font-size: 64px;
    line-height: 72px;
  }

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

  .section-3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

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

  .hero-section-plans {
    padding-top: 60px;
  }

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

  .section-bg-text {
    max-width: 300px;
    left: auto;
    right: auto;
  }

  .section-bg-text.bottom-page {
    bottom: -20px;
  }

  .align-center-2 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .footer-logo-2 {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .form-block-courtiers {
    width: 100%;
  }

  .hero-section-landing-1 {
    padding-top: 140px;
  }

  .hero-section-landing-2 {
    padding-top: 50px;
  }

  .hero-section-collection {
    padding-top: 140px;
  }

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

  .form-block-collection {
    width: 100%;
  }

  .circle-logo-collection.static {
    width: 80px;
    height: 80px;
    bottom: -20px;
  }

  .text-logo-devoilement.static, .text-logo-devoilement.static-devoilement {
    width: 45px;
    height: 45px;
  }

  .benefit-icon-jaune {
    width: 50px;
    height: 50px;
  }

  .section-title-jaune, .section-title-jaune.border {
    font-size: 42px;
    line-height: 54px;
  }

  .title-logo-en {
    max-height: 120px;
    display: none;
    left: 0;
  }

  .title-logo-en.large {
    object-fit: contain;
    width: 100%;
    max-height: 200px;
  }

  .narrow-content-copy {
    max-width: 90%;
  }

  .section-delete {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-delete.padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-delete.image {
    height: 420px;
  }

  .text-field-8 {
    font-size: 16px;
    line-height: 24px;
  }

  .text-field-2-copy {
    font-size: 20px;
    line-height: 24px;
  }

  .rsvp-form {
    width: 100%;
    max-width: none;
  }

  .field-form {
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 100px;
  }

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

  .section.image {
    height: 320px;
  }

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

  .section-title.border {
    font-size: 32px;
  }

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

  .features-grid {
    max-width: none;
  }

  .house-title {
    font-size: 24px;
    line-height: 36px;
  }

  .list-item {
    font-size: 18px;
    line-height: 28px;
  }

  .narrow-content {
    max-width: none;
  }

  .bottom-bg-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .bottom-logo {
    width: 240px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 42px;
  }

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

  .button.form {
    width: 100%;
  }

  .nav-container, .gallery-slider {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slide-arrow {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 20px;
  }

  .slide-img {
    height: 420px;
  }

  .section-img {
    max-width: none;
  }

  .section-title-2 {
    font-size: 42px;
    line-height: 54px;
  }

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

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

  .footer-logo-2 {
    width: 160px;
    margin-top: -95px;
  }

  .hero-section-landing-1 {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .hero-section-landing-2 {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .form-block-ordi {
    display: none;
  }

  .form-2, .form-block-mobile {
    display: block;
  }

  .divinsidepopup, .insidepopup {
    height: auto;
  }

  .hero-section-collection {
    padding-top: 120px;
    padding-bottom: 100px;
  }

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

  .button-devoilement.form {
    width: 100%;
  }

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

  .section-title-jaune.border {
    font-size: 32px;
  }

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

  .narrow-content-copy {
    max-width: none;
  }

  .section-delete.image {
    height: 320px;
  }

  .field-row._2-col {
    grid-template-columns: 1fr;
    padding-top: 5px;
  }

  .insidepopupform {
    width: 400px;
    height: auto;
  }

  .div-block-27 {
    padding-top: 0;
  }
}

@media screen and (max-width: 479px) {
  .container {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section {
    margin-top: 55px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.yellow {
    margin-bottom: 0;
    padding-bottom: 50px;
  }

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

  .section-title {
    margin-top: 30px;
  }

  .text-logo.static {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .section-subtitle.large {
    margin-top: 46px;
    display: none;
  }

  .hero-title.smallversion {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 30px;
    line-height: 50px;
  }

  .button {
    margin-bottom: 20px;
    line-height: 22px;
  }

  .slide-img, .map-img {
    height: 320px;
  }

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

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

  .bold-text {
    width: 100%;
  }

  .image-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-4 {
    height: 200px;
  }

  .heading {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 26px;
  }

  .heading-3, .heading-4 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 30px;
    line-height: 40px;
  }

  .text-block, .form-block-courtiers {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-section-landing-1 {
    min-height: 400px;
  }

  .hero-section-landing-2 {
    height: 100%;
    min-height: 750px;
    padding-top: 50px;
    padding-bottom: 0;
  }

  .section-bg-landing-2 {
    margin-left: 0;
  }

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

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

  .text-block-4 {
    padding-left: 11px;
    padding-right: 11px;
  }

  .select-field {
    height: 40px;
    font-size: 20px;
    line-height: 20px;
  }

  .submit-button {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .form-block-ordi {
    display: none;
  }

  .form-2 {
    display: block;
  }

  .container-9 {
    margin-top: -10px;
  }

  .image-8 {
    height: auto;
  }

  .section-ordi {
    display: none;
  }

  .section-mobile {
    display: flex;
  }

  .overblock {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    bottom: 3%;
    left: 0%;
    right: 0%;
  }

  .overblock.invetedcolors {
    width: 100%;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    inset: auto 0% 0%;
  }

  .centeredthoug {
    text-align: left;
    font-size: 15px;
  }

  .div-block-2, .html-embed-ordi {
    display: none;
  }

  .html-embed-mobile {
    padding-top: 10px;
    padding-bottom: 0;
    display: block;
  }

  .map-2 {
    display: none;
  }

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

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

  .divpopup, .popup {
    width: auto;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    display: none;
  }

  .insidepopup {
    background-color: #ffffffe6;
    flex-direction: row;
    flex: 0 auto;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-top: 80px;
    display: flex;
    position: static;
    inset: 0%;
  }

  .xclose-2 {
    color: #fff;
    margin-left: 10px;
    margin-right: 0;
    padding-top: 3px;
    font-size: 18px;
    line-height: 20px;
    position: absolute;
    inset: auto;
  }

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

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

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

  .text-block-6 {
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

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

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

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

  .image-13 {
    max-width: 80%;
  }

  .section-c3, .section-c6 {
    padding-bottom: 0;
  }

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

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

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

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

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

  .container-45 {
    padding-left: 0;
    padding-right: 0;
  }

  .column-3 {
    padding-right: 10px;
  }

  .column-4 {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .image-14 {
    max-width: 80%;
    margin-bottom: 45px;
    margin-left: -34px;
  }

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

  .div-block-7 {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-7 {
    text-align: center;
    padding-right: 0;
  }

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

  .button-4 {
    width: auto;
    margin-top: 20px;
  }

  .heading-8 {
    margin-bottom: 18px;
    padding-bottom: 62px;
    font-size: 30px;
    line-height: 35px;
  }

  .column-6 {
    padding-right: 0;
  }

  .image-15, .image-16 {
    display: none;
  }

  .button-5 {
    width: auto;
    margin-bottom: 30px;
  }

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

  .column-7, .column-8, .column-9 {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-8 {
    padding-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .columns-2 {
    display: block;
  }

  .text-logo-devoilement.static, .text-logo-devoilement.static-devoilement {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .button-7 {
    width: auto;
    margin-top: 20px;
  }

  .text-block-9 {
    width: 100%;
    margin-bottom: 74px;
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .button-devoilement {
    margin-bottom: 20px;
  }

  .section-title-jaune {
    margin-top: 30px;
  }

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

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

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

  .image-13-copy {
    max-width: 80%;
  }

  .section-c3-copy {
    padding-bottom: 0;
  }

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

  .image-19 {
    padding-top: 40px;
  }

  .column-11 {
    display: none;
  }

  .section-12 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .yellowblock {
    text-align: center;
    height: 80px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
  }

  .heading-rsvp, .heading-form {
    font-size: 30px;
    line-height: 35px;
  }

  .text-block-9-copy {
    width: 100%;
    margin-bottom: 74px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .submit-button-copy {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .section-delete {
    margin-top: 55px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-delete.yellow {
    margin-bottom: 0;
    padding-bottom: 50px;
  }

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

  .field-row {
    width: 100%;
    padding-bottom: 0;
  }

  .field-row._2-col {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .text-field-8 {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    padding-left: 3px;
    padding-right: 0;
    font-size: 16px;
    line-height: 20px;
    display: block;
  }

  .text-field-2-copy {
    height: 40px;
    margin-top: 10px;
    padding-left: 3px;
    padding-right: 0;
    font-size: 18px;
    line-height: 20px;
    display: block;
  }

  .text-field-2-copy.select {
    height: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 2px;
    padding-right: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .text-field-2-copy.select:active {
    color: #e9ded8;
    font-size: 16px;
  }

  .text-field-2-copy.select:focus {
    color: #000;
    font-size: 16px;
  }

  .div-xclose-2 {
    z-index: 1;
    box-sizing: border-box;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    color: #fff;
    object-fit: fill;
    order: 0;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-self: auto;
    align-items: flex-start;
    width: auto;
    display: block;
    position: absolute;
    inset: 8% auto auto 2%;
    overflow: visible;
  }

  .div-block-36 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    width: 100%;
    display: block;
  }

  .form-5 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .container-50 {
    padding: 80px 20px 50px;
  }

  .popup-form {
    box-sizing: border-box;
    aspect-ratio: auto;
    object-fit: fill;
    width: auto;
    height: auto;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    overflow: auto;
  }

  .image-popup-2 {
    width: auto;
    max-width: 100%;
    display: block;
  }

  .rsvp-form {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-13 {
    text-align: center;
    margin-top: 0;
  }

  .grid-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    justify-content: center;
    place-items: start stretch;
    display: grid;
    position: sticky;
  }

  .xclose-3 {
    float: none;
    clear: none;
    color: #fff;
    border-color: #fff;
    border-radius: 5px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 5px 8px 4px;
    font-size: 18px;
    line-height: 20px;
    display: flex;
    position: static;
    inset: auto;
  }

  .insidepopupform {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: #ffffffe6;
    flex-direction: row;
    flex: 0 auto;
    justify-content: center;
    align-self: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-top: 40px;
    display: flex;
    position: static;
    inset: 0%;
  }

  .field-form {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    padding-left: 3px;
    padding-right: 0;
    font-size: 16px;
    line-height: 20px;
    display: block;
  }

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

  .div-block-27 {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-right: 0;
  }

  .image-35 {
    max-width: 50%;
  }
}

#w-node-_5445c2e7-61f3-ede2-c435-a0926df87298-8def9f61, #w-node-_5445c2e7-61f3-ede2-c435-a0926df8729e-8def9f61, #w-node-_2f42ac4d-7316-49df-afba-10970fe6f0a4-8def9f61, #w-node-ded043a8-2b3e-3724-8f49-7012983e8ed8-8def9f61 {
  align-self: center;
}

#w-node-_5ad9481b-2351-2fe6-4163-13c54ccb18bd-8def9f61 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center;
}

#Budget.w-node-_5f4a2c19-aeac-6d0d-7689-ac37d6df5806-8def9f61 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8d0dbdaa-419c-279a-cb89-b2c7ff419431-ff41942e, #w-node-c3a69fcd-2c22-c42b-b4ae-443d5add47b1-fcef9f73, #w-node-c3a69fcd-2c22-c42b-b4ae-443d5add47c4-fcef9f73, #w-node-bf3272ff-6e6f-5b3e-f099-c3170901cf0a-2aef9f76, #w-node-bf3272ff-6e6f-5b3e-f099-c3170901cf18-2aef9f76, #w-node-_5ee871b2-bc49-7398-17a2-58283fce856e-2aef9f76, #w-node-_2f42ac4d-7316-49df-afba-10970fe6f0a4-2aef9f76, #w-node-_5d914324-f966-6ae2-b979-74d7727a30a5-2aef9f76, #w-node-_5d914324-f966-6ae2-b979-74d7727a30a1-2aef9f76 {
  align-self: center;
}

#w-node-e25052ed-d49d-55c8-be14-43ec23434e5c-9cef9f6c {
  place-self: center;
}

#w-node-_43df6477-93f0-9b39-1a86-05dab401b533-19ef9f71, #w-node-_43df6477-93f0-9b39-1a86-05dab401b522-19ef9f71, #w-node-bf3272ff-6e6f-5b3e-f099-c3170901cf0a-caef9f6b, #w-node-bf3272ff-6e6f-5b3e-f099-c3170901cf18-caef9f6b, #w-node-_5ee871b2-bc49-7398-17a2-58283fce856e-caef9f6b, #w-node-_2f42ac4d-7316-49df-afba-10970fe6f0a4-caef9f6b, #w-node-bf3272ff-6e6f-5b3e-f099-c3170901cf0a-b2ef9f74, #w-node-bf3272ff-6e6f-5b3e-f099-c3170901cf18-b2ef9f74, #w-node-_5ee871b2-bc49-7398-17a2-58283fce856e-b2ef9f74, #w-node-_2f42ac4d-7316-49df-afba-10970fe6f0a4-b2ef9f74, #w-node-c3a69fcd-2c22-c42b-b4ae-443d5add47b1-f5ef9f72, #w-node-c3a69fcd-2c22-c42b-b4ae-443d5add47c4-f5ef9f72, #w-node-c3a69fcd-2c22-c42b-b4ae-443d5add47b1-83ef9f78, #w-node-c3a69fcd-2c22-c42b-b4ae-443d5add47c4-83ef9f78 {
  align-self: center;
}

#w-node-da397110-0c46-220b-41cb-3c2785e50290-41988232, #w-node-f5447353-863c-9331-377c-96cd6ec15451-41988232 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_815cc9a6-f7e0-7ac7-90bf-049841d5d44f-f97f5e77, #w-node-_815cc9a6-f7e0-7ac7-90bf-049841d5d45e-f97f5e77, #w-node-c3a69fcd-2c22-c42b-b4ae-443d5add47b1-5b0262f4, #w-node-c3a69fcd-2c22-c42b-b4ae-443d5add47c4-5b0262f4 {
  align-self: center;
}


@font-face {
  font-family: 'Eagle';
  src: url('../fonts/eagle-light.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eagle';
  src: url('../fonts/eagle-book.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eagle';
  src: url('../fonts/eagle-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nickainley';
  src: url('../fonts/Nickainley-Normal.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}