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

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

:root {
  --color-1: #0c3033;
  --color-3: #c7c1b6;
  --color-2: #7d4f38;
  --white: white;
  --black: black;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

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

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

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

body {
  color: var(--color-1);
  font-family: Objectsans, sans-serif;
  font-size: 1vw;
  line-height: 1.5vw;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Turnpike, sans-serif;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 40px;
  font-family: Turnpike, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Turnpike, sans-serif;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Turnpike, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
  font-size: 1.35vw;
  line-height: 1.85vw;
}

a {
  color: var(--color-3);
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: square;
}

li {
  font-size: 1.35vw;
  font-weight: 400;
  line-height: 2vw;
}

.menu-icon {
  z-index: 100;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: fixed;
  top: 46%;
  bottom: 0;
  left: 20px;
}

.menu-1 {
  background-color: #1a1919;
  width: 35px;
  height: 1px;
  position: absolute;
  top: 18px;
}

.menu-2 {
  background-color: #1a1919;
  width: 35px;
  height: 1px;
  position: absolute;
  top: 28px;
}

.menu-3 {
  background-color: #1a1919;
  width: 35px;
  height: 1px;
  position: absolute;
  top: 38px;
}

.link-block-menu {
  color: var(--color-2);
  text-align: center;
  background-color: #c9c3b8;
  border: 0 #000;
  border-right: .5px solid #0006;
  flex-direction: column;
  flex: 1;
  order: 0;
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  padding-top: 4vw;
  padding-bottom: 4vw;
  text-decoration: none;
  display: flex;
  position: relative;
  inset: 0;
}

.link-block-menu:hover {
  color: var(--white);
}

.link-block-menu.w--current {
  border-bottom-style: solid;
  border-left-style: solid;
}

.img-menu {
  z-index: 0;
  background-image: url('../images/Card-BG.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.img-menu.services, .img-menu.home, .img-menu.contact, .img-menu.projects, .img-menu.about, .img-menu.team {
  background-color: var(--color-1);
  background-image: none;
}

.img-menu.virtual-visit {
  background-image: url('../images/Salon.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.img-menu.video {
  background-image: url('../images/A2.jpg');
  background-position: 50%;
  background-size: cover;
}

.txt-menu {
  z-index: 1;
  text-align: center;
  font-size: 1.5vw;
  font-weight: 900;
  line-height: 1em;
  text-decoration: none;
  position: relative;
}

.menu-item-wrapper {
  flex: 1;
  align-items: stretch;
  width: 20%;
  height: 100%;
  display: flex;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.nav-menu {
  z-index: 2;
  align-items: stretch;
  width: 100vw;
  height: 100vh;
  padding-left: 100px;
  font-size: 2.2vw;
  line-height: 1em;
  display: none;
  position: fixed;
  inset: 0%;
}

.logo {
  z-index: 98;
  color: #0c0c0c;
  text-align: center;
  text-transform: uppercase;
  border-bottom-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.menu-logo {
  max-height: 160px;
}

.menu-logo.desktop {
  max-height: 260px;
  display: block;
}

.menu-logo.mobile {
  display: none;
}

.side-nav {
  z-index: 3;
  background-color: var(--color-3);
  width: 100px;
  height: 100vh;
  display: block;
  position: fixed;
  inset: 0% auto 0% 0%;
  box-shadow: 2px 0 20px #0000001a;
}

.page-content {
  background-color: var(--color-3);
  margin-left: 100px;
}

.hero-section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding-top: 20%;
  display: flex;
  position: relative;
}

.hero-section.nopadding {
  padding-top: 0%;
}

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

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

.section.full-bg-img {
  min-height: 90vh;
}

.section.full-bg-img._50 {
  min-height: 50vh;
}

.section.bg-2 {
  background-color: var(--color-1);
  color: var(--color-3);
}

.section.bg-2.padding-block-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.section._2-col {
  z-index: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}

.section.bg-3 {
  background-color: var(--color-2);
  color: var(--color-3);
}

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

.section.video {
  background-color: var(--color-1);
  color: var(--color-3);
  display: block;
}

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

.narrow-content.center {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: flex;
}

.narrow-content.center-copy {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: none;
}

.section-title {
  font-size: 2.5vw;
  line-height: 3vw;
}

.uppercase-subtitle {
  text-transform: uppercase;
  padding-left: 0;
  font-family: Objectsans, sans-serif;
  font-size: 1.5vw;
  font-weight: 400;
  line-height: 2vw;
}

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

.section-icon {
  width: 12vw;
  margin-bottom: 20px;
}

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

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

.text-link {
  color: var(--color-2);
  font-family: Turnpike, sans-serif;
  font-size: 1.25vw;
  text-decoration: none;
  transition: all .2s;
}

.text-link:hover {
  color: var(--color-1);
}

._80-wrap {
  text-align: left;
  width: 80%;
  margin-right: 0;
  padding-right: 110px;
}

._80-wrap.centered {
  text-align: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
  font-size: 1.25vw;
}

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

.feature-item {
  text-align: center;
  flex-flow: column;
  align-items: center;
  padding: 40px;
  line-height: 1vw;
  display: flex;
  position: relative;
}

.feature-titile {
  padding-bottom: 20px;
  font-family: Turnpike, sans-serif;
  font-size: 1.25vw;
  line-height: 1.5vw;
}

.feature-subtitle {
  text-transform: uppercase;
  font-size: .75vw;
}

.feature-side-line {
  background-color: var(--color-2);
  width: 1px;
  height: 90%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.feature-bottom-line {
  background-color: var(--color-2);
  width: 90%;
  height: 1px;
  position: absolute;
  inset: auto 5% 5%;
}

.image-wrapper {
  z-index: 1;
  border-radius: 10px;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-column {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5vh 5vw;
  display: flex;
  position: relative;
}

.section-column.dark-bg {
  background-color: var(--color-1);
}

.section-column.bg-3 {
  background-color: var(--color-2);
}

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

.section-img-wrap {
  z-index: 1;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.section-img-wrap.portrait {
  aspect-ratio: 2 / 3;
}

.section-img-wrap.wide {
  aspect-ratio: 16 / 9;
}

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

.section-img.contain {
  object-fit: contain;
}

.arch-img-curtain {
  background-color: var(--color-3);
  display: none;
  position: absolute;
  inset: 0%;
}

.partners-logo.small {
  max-height: 30px;
}

.footer {
  background-color: var(--color-1);
  color: var(--color-3);
  padding: 100px 20px 20px;
}

.footer-grid {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr .75fr .75fr;
  grid-auto-columns: 1fr;
  padding-bottom: 40px;
  display: grid;
}

.footer-logo {
  width: 20vw;
  padding-left: 40px;
  padding-right: 40px;
}

.footer-title {
  text-transform: uppercase;
  padding-bottom: 20px;
  font-size: .8vw;
  font-weight: 700;
}

.footer-link {
  color: var(--color-3);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: .8vw;
  line-height: 1.4vw;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #fff;
}

.footer-address {
  font-size: .8vw;
  line-height: 1.4vw;
}

.legal-text {
  font-size: 10px;
  line-height: 12px;
}

._2-3-col-grid {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.align-right {
  flex-flow: column;
  align-items: flex-end;
  display: flex;
}

.relative-wrap {
  position: relative;
}

.vector-bg {
  z-index: 0;
  object-fit: cover;
  width: 80%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

._3-2-col-grid {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.full-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.full-img.contain {
  object-fit: contain;
}

.absolute-icon {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.absolute-icon.offset-top, .absolute-icon.offset-top-copy {
  z-index: -1;
  box-sizing: border-box;
  object-fit: contain;
  position: absolute;
  top: -15%;
}

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

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

.nav-component-wrap {
  display: flex;
}

.section-title-icone {
  font-size: 2.5vw;
  line-height: 3vw;
}

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

.benefits-wrap.three {
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
}

.benefit-item {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 15vw;
  margin-bottom: 10px;
  font-size: 1.25vw;
  line-height: 1.25vw;
  display: flex;
}

.benefit-icon {
  aspect-ratio: 1;
  object-fit: contain;
  width: 5vw;
  margin-bottom: 20px;
}

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

.top-section.full-bg-img {
  min-height: 90vh;
}

.top-section.bg-2 {
  background-color: var(--color-1);
  color: var(--color-3);
}

.top-section.bg-2.lesspadding {
  padding-bottom: 50px;
}

.top-section._2-col {
  z-index: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}

.top-section.bg-3 {
  background-color: var(--color-2);
  color: var(--color-3);
}

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

.div-block {
  margin-bottom: 39px;
}

.list-item {
  font-size: 1.35vw;
}

.divider {
  height: 50px;
}

.sous-heading-form {
  color: var(--color-2);
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Objectsans, sans-serif;
  font-size: 1.5vw;
  font-weight: 400;
  line-height: 1.2;
}

.sous-heading-form.white {
  color: var(--color-3);
  text-align: center;
  margin-right: -9px;
  padding-left: 60px;
  padding-right: 60px;
}

.sous-heading-form.margin {
  margin-top: 20px;
  padding-right: 60px;
}

._1habitant {
  color: #7d4f38;
  background-color: #0000;
  border: 1px #f0d5cc;
  border-bottom: 1px solid #7d4f38;
  height: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2px;
  font-size: 14px;
  line-height: 28px;
  display: none;
}

._1habitant:active {
  color: #4f0a2900;
  background-color: #5e1c1c00;
}

._1habitant:focus {
  color: #132c22;
}

._1habitant::placeholder {
  color: #ec7553;
  background-color: #27101000;
}

.titre-informations {
  color: #7d4f38;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 10px;
  padding-top: 0;
  font-size: 16px;
  font-weight: 400;
  position: static;
}

._2habitants {
  color: #7d4f38;
  background-color: #0000;
  border: 1px #f0d5cc;
  border-bottom: 1px solid #7d4f38;
  height: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2px;
  font-size: 14px;
  line-height: 28px;
  display: none;
}

._2habitants:active {
  color: #4f0a2900;
  background-color: #5e1c1c00;
  font-size: 14px;
}

._2habitants:focus {
  color: #7d4f38;
}

._2habitants::placeholder {
  color: #ec7553;
  background-color: #27101000;
}

.html-embed {
  display: none;
}

.heading-form {
  color: var(--color-2);
  text-align: left;
  width: auto;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Turnpike, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.2;
}

.container-2 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  display: flex;
}

.form-hemi {
  flex-direction: column;
  width: auto;
  margin-top: 20px;
  display: flex;
}

.field-wrap-3 {
  padding-bottom: 10px;
}

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

.form-field {
  color: var(--color-2);
  background-color: #0000;
  border: 1px #f0d5cc;
  border-bottom: 1px solid #7d4f38;
  height: 30px;
  margin-top: 30px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  font-family: Objectsans, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
}

.form-field:active {
  color: #7d4f38;
  background-color: #5e1c1c00;
}

.form-field:focus {
  color: #7d4f38;
}

.form-field::placeholder {
  color: #7d4f38;
  background-color: #27101000;
}

.form-field.select {
  color: var(--color-2);
  border-bottom-color: #7d4f38;
  height: 30px;
  margin-top: 30px;
  margin-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2px;
  font-family: Objectsans, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.form-field.select:active {
  background-color: #5e1c1c00;
}

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

.form-field.select.white, .form-field.white {
  border-bottom-color: var(--color-3);
  color: var(--color-3);
}

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

.submit-button-5 {
  color: #fff;
  background-color: #7d4f38;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 40px;
  font-size: 16px;
  transition: all .2s;
  display: block;
}

.submit-button-5:hover {
  color: #87705c;
  background-color: #fff;
}

.section-form {
  color: #88ccf1;
  background-color: #c7c1b6;
  background-image: url('../images/64c4e3b27f29e6de7c2a34b8_S3.png');
  background-position: 50%;
  background-size: cover;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.text-block-6 {
  color: var(--color-2);
  margin-bottom: 0;
}

.button-wrap {
  padding-top: 0;
}

.link {
  color: var(--color-1);
  font-size: 15px;
  text-decoration: none;
}

.paragraph-2 {
  color: var(--color-2);
  margin-bottom: 15px;
  font-size: 15px;
}

.no-underline {
  color: #9a6a18;
  border-bottom-style: none;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  overflow: hidden;
}

.text-field-2 {
  color: #9a6a18;
  background-color: #0000;
  border: 1px #000;
  border-bottom: 1px solid #9a6a1866;
  height: 45px;
  margin-bottom: 30px;
  padding: 8px 10px 8px 3px;
  font-size: 18px;
  font-weight: 400;
  transition: all .3s;
}

.text-field-2:hover {
  border-bottom-color: #fff;
}

.text-field-2:focus {
  color: #4c4c4b;
  border-bottom-color: #fff;
  position: static;
}

.text-field-2::placeholder {
  color: #9a6a18;
}

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

.content-form {
  padding: 50px 10vw 100px;
  position: relative;
  overflow: hidden;
}

.content-form.no-right-form {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 10vw;
}

.submit-button-2 {
  color: #f0f0f0;
  background-color: #9a6a18;
  border: 1px solid #efd6b4;
  transition: all .3s;
}

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

.heading {
  color: var(--color-1);
  font-weight: 400;
}

.div-block-15 {
  margin-top: 0;
  margin-right: 0;
  position: absolute;
  inset: 0% 0% auto auto;
}

.form-block-danaus-contact {
  background-color: #fff0;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 90px;
  margin-left: 0;
  padding: 0;
  display: flex;
}

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

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

.evenement {
  display: none;
}

.link-block {
  color: #0c0c0c;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  position: relative;
}

.link-block.w--current {
  border-bottom-width: 2px;
  border-bottom-color: #0c0c0c;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.underline {
  z-index: 1;
  background-color: #0c0c0c;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.paragraph {
  color: var(--color-1);
  margin-bottom: 10px;
  padding-top: 25px;
  font-size: 18px;
  font-weight: 400;
}

.column-3 {
  padding-left: 0;
  padding-right: 30px;
}

.lead-center {
  margin-bottom: 4vw;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2em;
}

.lead-center.brown-text-center {
  color: #9a6a18;
  text-align: center;
  margin-top: 41px;
}

.text-block-3 {
  color: #9a6a18;
  font-size: 15px;
}

.text-block-2 {
  color: #9a6a18;
  margin-bottom: 3px;
  font-size: 15px;
}

.text-block-7 {
  color: var(--color-1);
  font-size: 15px;
  line-height: 1.8vw;
}

.text-block-8 {
  color: #9a6a18;
  font-size: 15px;
}

.paragraph-3 {
  color: var(--color-2);
}

.center {
  justify-content: center;
  align-items: center;
  padding-left: 5vw;
  display: flex;
}

.link-2 {
  font-style: normal;
  text-decoration: none;
}

.logostack {
  z-index: 1;
  position: relative;
}

.logopartners {
  max-width: 150px;
}

.cell {
  justify-content: center;
  align-items: center;
}

.submit-button-6 {
  background-color: var(--color-3);
  color: var(--color-1);
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 40px;
  font-size: 16px;
  transition: all .2s;
  display: block;
}

.submit-button-6:hover {
  color: #87705c;
  background-color: #fff;
}

.mini {
  font-size: 1.1vw;
  line-height: 1.6vw;
}

.paragraph-4 {
  margin-left: -10px;
  margin-right: -10px;
  padding-right: 0;
}

.paragraph-5, .paragraph-6, .paragraph-7 {
  margin-left: -10px;
  margin-right: -10px;
}

.paragraph-8 {
  margin-right: 32px;
}

.en-fr {
  color: var(--color-2);
  text-align: center;
  text-transform: uppercase;
  width: 100px;
  padding: 10px 0;
  text-decoration: none;
  transition: opacity .5s;
  display: block;
  position: fixed;
  bottom: 0;
}

.en-fr:hover {
  color: var(--color-1);
}

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

.container-8 {
  z-index: 1;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.background-image {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.section-card-heading-rsvp {
  color: #0c3033;
  text-align: center;
  font-family: Turnpike, sans-serif;
  font-size: 1.7vw;
  line-height: 1.4;
}

.text-block-rsvp1 {
  color: #0c3033;
  text-align: center;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  padding-top: 30px;
  padding-left: 100px;
  padding-right: 100px;
  font-size: 1.15vw;
  font-weight: 400;
  line-height: 1.4;
}

.background-banner {
  background-image: url('../images/Space002.jpeg');
  background-position: 50%;
  background-size: cover;
  height: 116%;
  position: absolute;
  inset: auto 0%;
}

.background-banner.video-banner {
  background-image: url('../images/Video-BG.jpg');
  background-position: 0%;
  background-size: auto;
}

.narrow-content-2 {
  max-width: 80%;
}

.narrow-content-2.center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.button {
  background-color: #7d4f38;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 40px;
  font-size: 1.25vw;
  transition: all .2s;
}

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

.button.contact {
  order: 1;
  align-self: flex-start;
  margin-left: 5px;
}

.image-overlay {
  z-index: 1;
  background-color: #090b194d;
  position: absolute;
  inset: 0%;
}

.container-bouton {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 0;
  display: flex;
}

.wrapper {
  z-index: 10;
  width: 100%;
  position: relative;
}

.light-overlay {
  z-index: 1;
  background-color: #c7c1b6e3;
  padding-top: 0;
  position: absolute;
  inset: 0%;
}

.section-rsvp {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10vw 5vw;
  display: flex;
  position: relative;
}

.section-8 {
  background-image: linear-gradient(to bottom, var(--color-1), var(--color-1)), url('../images/S3.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding: 100px 2rem;
}

.narrow-content-3 {
  max-width: 80%;
}

.narrow-content-3.center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bold-text {
  color: #c7c1b6;
}

.text-block-rsvp {
  color: #c7c1b6;
  margin-bottom: 30px;
  padding-top: 10px;
  font-size: 1.15vw;
  line-height: 1.4;
}

.form-rsvp {
  flex-direction: column;
  width: 600px;
  display: flex;
}

.heading-form-2 {
  color: #7d4f38;
  text-align: center;
  width: auto;
  margin-bottom: 20px;
  font-family: Turnpike, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.2;
}

.container-9 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  display: flex;
}

.form-field-2 {
  color: #7d4f38;
  background-color: #0000;
  border: 1px #f0d5cc;
  border-bottom: 1px solid #7d4f38;
  height: 30px;
  margin-top: 30px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 5px;
  font-family: Objectsans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.form-field-2:active {
  color: #7d4f38;
  background-color: #5e1c1c00;
}

.form-field-2:focus {
  color: #7d4f38;
}

.form-field-2::placeholder {
  color: #7d4f38;
  background-color: #27101000;
}

.form-field-2.select {
  color: #7d4f38;
  border-bottom-color: #7d4f38;
  height: 30px;
  margin-top: 30px;
  margin-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2px;
  font-size: 14px;
}

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

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

.section-title-icone-2 {
  font-family: Turnpike, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.2;
}

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

.section-10.bg-2 {
  color: #c7c1b6;
  background-color: #0c3033;
}

.narrow-content-4 {
  max-width: 60%;
}

.narrow-content-4.center {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-7 {
  z-index: 1;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section-title-icone-3 {
  font-family: Turnpike, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.2;
}

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

.section-11.bg-2 {
  color: #c7c1b6;
  background-color: #0c3033;
}

.narrow-content-5 {
  max-width: 60%;
}

.narrow-content-5.center {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-10 {
  z-index: 1;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.popup {
  z-index: 9990;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  background-color: #00000073;
  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: 30px;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.insidepopup {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  text-align: center;
  background-color: #0000;
  border: 1px #000;
  border-radius: 500px;
  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;
}

.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: flex;
  position: absolute;
  overflow: visible;
}

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

.image-popup-2 {
  text-align: center;
  cursor: pointer;
  background-color: #0000;
  border-radius: 0;
  margin-left: 0;
  padding-left: 0;
  display: inline-block;
}

.div-block-16 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding-right: 50px;
  display: flex;
}

.div-block-16.align-right {
  justify-content: flex-end;
}

.section-title-plans {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 0;
  font-size: 1.6vw;
  line-height: 2vw;
  position: relative;
}

.section-title-plans.align-center {
  text-align: left;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
  font-size: 1.4vw;
}

.grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: end start;
  place-items: end;
  margin-bottom: 40px;
  display: grid;
}

.text-block-9 {
  font-size: 1.5vw;
  line-height: 2vw;
}

.text-block-10 {
  font-size: 1.2vw;
  line-height: 1.8vw;
}

.container-plans {
  z-index: 1;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  position: relative;
}

.div-block-17 {
  display: block;
}

.play-button {
  cursor: pointer;
  width: 80px;
  height: 80px;
  margin-bottom: 0;
  padding-bottom: 0;
  display: none;
}

.video-overlay {
  z-index: 999;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  padding-left: 10vw;
  padding-right: 10vw;
  display: none;
  position: fixed;
  inset: 0%;
}

.close-video-link {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  position: absolute;
  inset: 2vw 2vw auto auto;
}

.bold-text-4 {
  color: #c7c1b6;
}

.section-rsvp-1 {
  background-image: url('../images/64c4e3b27f29e6de7c2a34b8_S3.png');
  background-position: 50%;
  background-size: cover;
  padding-top: 5vw;
  padding-bottom: 5vw;
}

.section-rsvp-2 {
  background-color: var(--color-1);
  background-image: url('../images/64c4e3b27f29e6de7c2a34b8_S3.png');
  background-position: 50%;
  background-size: cover;
  padding-top: 5vw;
  padding-bottom: 5vw;
}

.heading-form-3 {
  color: #7d4f38;
  text-align: center;
  width: auto;
  margin-bottom: 20px;
  font-family: Turnpike, sans-serif;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.2;
}

.container-11 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  display: flex;
}

.section-icone {
  width: 12vw;
  margin-bottom: 0;
}

.text-block-politique {
  color: var(--color-1);
  font-size: 1.3vw;
}

.button-rendezvs {
  z-index: auto;
  outline-offset: 7px;
  text-align: left;
  overflow-wrap: normal;
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-color: #0c3033;
  background-image: linear-gradient(#0c3033, #0c3033);
  background-clip: border-box;
  border: 0 #0c3033;
  border-radius: 0;
  outline: 7px #0c3033;
  margin-bottom: 60px;
  padding: 10px 0;
  display: block;
  position: static;
  bottom: auto;
  right: 20px;
}

.separator {
  width: 100%;
  height: 35px;
}

.code-embed {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 20px;
  display: flex;
}

.div-block-18 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template: "."
                 "Area"
                 / .5fr 2.25fr;
  grid-auto-columns: 1fr;
  justify-content: end;
  margin-top: 40px;
  padding-left: 20px;
  display: grid;
}

.text-block-11 {
  font-family: Turnpike, sans-serif;
}

.text-block-12 {
  text-align: center;
  min-width: 2px;
  padding-top: 10px;
  font-size: .9vw;
}

.text-block-13 {
  font-size: 1.2vw;
}

.link-block-2, .link-3, .link-4, .link-5, .link-6, .link-7, .link-8, .link-9 {
  text-decoration: none;
}

.quick-stack {
  padding: 0;
}

.lottie-animation {
  width: 80%;
  height: 70%;
}

.cell-2 {
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
}

.image-logo {
  max-width: 15%;
}

.div-block-19 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.social-link {
  margin-right: 10px;
}

.soocial-icon {
  object-fit: contain;
  width: 2.5vw;
  max-width: 100%;
  height: 4vw;
  margin-left: 5px;
  padding-left: 0;
}

.soocial-icon.small {
  max-width: 80%;
}

.image {
  max-width: 80%;
  margin-top: 25px;
  margin-right: 0;
  padding-left: 1px;
  position: relative;
  inset: auto auto auto 397px;
}

.div-pastille {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0% auto auto;
}

.divphone {
  z-index: 1;
  position: fixed;
  inset: auto 2% 2% auto;
}

.link-block-3 {
  background-color: var(--color-1);
  border-radius: 20px;
  padding: 10px 30px 10px 20px;
  text-decoration: none;
  transition: background-color .925s cubic-bezier(.55, .055, .675, .19);
  display: flex;
}

.link-block-3:hover {
  background-color: #232329;
  background-image: linear-gradient(#232329, #232329);
}

.image-21 {
  filter: invert();
  width: 25px;
  height: auto;
  padding-bottom: 2px;
  padding-right: 9px;
}

.text-block-34 {
  color: #fffefe;
}

.footer-form-wrap {
  border: 2px solid #253a36;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
}

.footer-text-field {
  background-color: var(--color-3);
  height: 45px;
  padding-left: 0;
}

.footer-text-field::placeholder {
  color: #253a36;
}

.footer-submit-button {
  background-color: var(--color-2);
  font-size: 14px;
}

.text-span-2 {
  font-size: 1.5vw;
}

.link-10, .link-11, .link-12 {
  text-decoration: none;
}

@media screen and (min-width: 1920px) {
  .text-block-rsvp1 {
    width: auto;
    padding-left: 190px;
    padding-right: 190px;
  }

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

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

  .insidepopup {
    width: 1000px;
  }

  .section-rsvp-1 {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .section-rsvp-2 {
    background-color: var(--color-1);
    padding-bottom: 10vw;
  }

  .code-embed {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }

  .div-block-18 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: .25fr 1fr;
    grid-auto-flow: row;
    place-content: center;
    justify-items: center;
  }

  .image {
    margin-top: 25px;
    margin-right: 50px;
    bottom: auto;
    left: 755px;
    right: auto;
  }
}

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

  p {
    font-size: 16px;
    line-height: 22px;
  }

  .menu-icon {
    width: 30px;
    margin-left: -6px;
  }

  .txt-menu {
    font-size: 20px;
  }

  .menu-item-wrapper {
    width: 100%;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    padding-left: 60px;
    display: none;
  }

  .logo {
    width: 60px;
  }

  .menu-logo.desktop {
    max-height: 180px;
  }

  .side-nav {
    width: 60px;
  }

  .page-content {
    margin-left: 60px;
  }

  .hero-section {
    justify-content: center;
    align-items: center;
    padding-top: 0%;
  }

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

  .section.full-bg-img {
    min-height: 50vh;
  }

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

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

  .uppercase-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .section-icon {
    width: 180px;
  }

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

  .text-link {
    font-size: 14px;
    line-height: 20px;
  }

  .feature-titile {
    font-size: 20px;
    line-height: 24px;
  }

  .feature-subtitle {
    font-size: 12px;
    line-height: 18px;
  }

  .image-wrapper {
    max-height: 500px;
  }

  .section-column {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .section-img-wrap {
    aspect-ratio: 1;
  }

  .section-img-wrap.hide-on-mobile {
    display: none;
  }

  .section-img.contain {
    object-position: 0% 50%;
  }

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

  .footer-grid {
    text-align: center;
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .footer-logo {
    max-width: 200px;
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-title {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-link {
    font-size: 14px;
    line-height: 24px;
  }

  .footer-address {
    font-size: 14px;
  }

  .legal-text {
    text-align: center;
    font-size: 12px;
    line-height: 20px;
  }

  ._2-3-col-grid {
    flex-flow: column;
    display: flex;
  }

  .align-right {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

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

  .benefits-wrap {
    max-width: none;
  }

  .benefit-item {
    max-width: none;
    font-size: 20px;
    line-height: 26px;
  }

  .benefit-icon {
    width: 60px;
  }

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

  .top-section.full-bg-img {
    min-height: 50vh;
  }

  .sous-heading-form {
    width: auto;
    font-size: 4vw;
  }

  .sous-heading-form.margin {
    font-size: 2vw;
  }

  ._1habitant, ._2habitants {
    font-size: 20px;
    line-height: 24px;
  }

  .heading-form {
    width: auto;
    font-size: 4vw;
  }

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

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

  .content-form {
    padding-left: 30px;
    padding-right: 30px;
  }

  .content-form.no-right-form {
    padding-right: 30px;
  }

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

  .form-block-danaus-contact {
    width: 100%;
  }

  .lead-center {
    font-size: 20px;
  }

  .text-block-rsvp1 {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 2vw;
  }

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

  .section-8 {
    padding: 4rem 2rem;
  }

  .text-block-rsvp {
    font-size: 2vw;
  }

  .heading-form-2 {
    width: auto;
    font-size: 4vw;
  }

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

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

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

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

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

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

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

  .section-title-plans {
    font-size: 20px;
    line-height: 20px;
  }

  .heading-form-3 {
    width: auto;
    font-size: 4vw;
  }

  .text-span {
    font-size: 2vw;
  }

  .section-icone {
    width: 180px;
  }

  .text-block-politique {
    font-size: 1.5vw;
  }

  .social-wrap {
    justify-content: center;
    align-items: center;
  }

  .social-link {
    width: 45px;
    height: 45px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .soocial-icon {
    width: 100%;
    height: 100%;
  }

  .image {
    max-width: 50%;
    top: 55px;
    bottom: auto;
    left: 278px;
  }
}

@media screen and (max-width: 767px) {
  .menu-icon {
    margin-left: 0;
    position: absolute;
    inset: 0 20px auto auto;
  }

  .txt-menu {
    font-size: 14px;
  }

  .nav-menu {
    flex-wrap: wrap;
    padding-top: 60px;
    padding-left: 0;
    font-size: 20px;
  }

  .logo {
    height: 60px;
  }

  .menu-logo.desktop {
    display: none;
  }

  .menu-logo.mobile {
    max-width: 100px;
    max-height: 60px;
    margin-left: 20px;
    display: block;
  }

  .side-nav {
    width: 100vw;
    height: 60px;
    inset: 0% 0% auto;
  }

  .page-content {
    margin-left: 0;
  }

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

  .section.full-bg-img {
    min-height: 30vh;
  }

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

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

  .section-icon {
    width: 140px;
  }

  ._80-wrap {
    width: auto;
  }

  .feature-grid {
    flex-flow: column;
    grid-template-rows: auto;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .feature-item {
    border-bottom: 1px solid var(--color-2);
    width: 100%;
  }

  .feature-item.last {
    border-bottom-style: none;
  }

  .feature-titile {
    font-size: 16px;
    line-height: 20px;
  }

  .feature-side-line, .feature-bottom-line {
    display: none;
  }

  .section-img-wrap {
    min-height: 15px;
  }

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

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

  .benefit-icon {
    width: 80px;
  }

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

  .top-section.full-bg-img {
    min-height: 30vh;
  }

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

  .sous-heading-form, .heading-form {
    font-size: 5vw;
  }

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

  .form-field {
    font-size: 14px;
  }

  .section-form {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .no-underline {
    margin-right: 0;
  }

  .text-field-2 {
    font-size: 16px;
  }

  .content-form {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content-form.no-right-form {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .lead-center {
    font-size: 20px;
  }

  .button {
    font-size: 2vw;
  }

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

  .section-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .heading-form-2 {
    font-size: 5vw;
  }

  .form-field-2 {
    font-size: 14px;
  }

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

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

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

  .section-title-icone-3 {
    font-size: 18px;
    line-height: 24px;
  }

  .section-11 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .insidepopup {
    height: auto;
  }

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

  .heading-form-3 {
    font-size: 5vw;
  }

  .section-icone {
    width: 140px;
  }

  .text-block-politique {
    font-size: 2vw;
  }

  .image {
    max-width: 40%;
    top: 34px;
    bottom: auto;
    left: 213px;
  }
}

@media screen and (max-width: 479px) {
  .menu-icon {
    width: 60px;
  }

  .link-block-menu, .link-block-menu.w--current {
    border-bottom: 1px solid #0000000d;
    border-left: 1px solid #0000000d;
  }

  .nav-menu {
    display: none;
  }

  .hero-section.nopadding {
    height: 70vh;
  }

  .container {
    max-width: 90vw;
  }

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

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

  .section-title.marginfixed {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .section-icon {
    text-align: center;
    margin-bottom: 20px;
  }

  ._80-wrap {
    padding-right: 50px;
  }

  ._80-wrap.centered {
    font-size: 16px;
    line-height: 24px;
  }

  .image-wrapper {
    flex-flow: column;
    order: 0;
    display: flex;
  }

  .section-img-wrap.portrait {
    order: -1;
  }

  .section-img-wrap.wide {
    min-width: 100%;
    min-height: 0;
  }

  .footer-title {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-address {
    line-height: 18px;
  }

  .vector-bg {
    display: none;
  }

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

  .benefits-wrap {
    flex-flow: column;
    grid-template-columns: 1fr 1fr;
    padding-top: 50px;
    display: flex;
  }

  .benefit-item {
    font-size: 16px;
  }

  .benefit-icon {
    width: 60px;
  }

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

  .div-block {
    order: -1;
  }

  .sous-heading-form {
    text-align: center;
    width: auto;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
    line-height: 22px;
  }

  .sous-heading-form.white {
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 22px;
  }

  .sous-heading-form.margin {
    text-align: left;
    font-size: 5vw;
  }

  .form-hemisphere {
    display: block;
  }

  ._1habitant {
    height: 40px;
    margin-top: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    line-height: 20px;
    display: none;
  }

  .titre-informations {
    margin-top: 0;
    padding-top: 30px;
    display: block;
  }

  ._2habitants {
    height: 40px;
    margin-top: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    line-height: 20px;
    display: none;
  }

  .heading-form {
    text-align: center;
    width: auto;
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 6vw;
  }

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

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

  .field-wrap-3._2-col {
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

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

  .form-field.select {
    height: 40px;
    margin-top: 10px;
    padding-left: 2px;
    padding-right: 0;
  }

  .submit-button-5 {
    text-align: center;
    display: inline-block;
  }

  .section-form {
    padding: 4rem 1.5rem;
  }

  .text-block-6 {
    line-height: 22px;
  }

  .html-embed-2 {
    margin-top: 50px;
  }

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

  .link {
    line-height: 20px;
  }

  .text-field-2 {
    margin-bottom: 15px;
    padding-left: 3px;
    font-size: 14px;
    line-height: 20px;
  }

  .form-grid {
    grid-column-gap: 30px;
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .content-form.no-right-form {
    margin-top: 0;
    padding: 0 10px;
  }

  .submit-button-2 {
    margin-top: 43px;
  }

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

  .form-block-danaus-contact {
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .form {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .column-3 {
    margin-bottom: 50px;
    padding-right: 0;
  }

  .lead-center {
    font-size: 26px;
    line-height: 1.4em;
  }

  .lead-center.brown-text-center {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 1.4em;
  }

  .text-block-7 {
    line-height: 5.5vw;
  }

  .center {
    padding-top: 5vw;
    padding-left: 5vw;
  }

  .submit-button-6 {
    text-align: center;
    display: inline-block;
  }

  .mini {
    font-size: 16px;
    line-height: 26px;
  }

  .paragraph-8 {
    margin-right: 0;
  }

  .en-fr {
    z-index: 60;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 60px;
    font-size: 14px;
    display: flex;
    inset: 0% 0% auto;
  }

  .section-card-heading-rsvp {
    font-size: 4vw;
  }

  .text-block-rsvp1 {
    width: auto;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 4vw;
  }

  .button {
    font-size: 4vw;
    line-height: 16px;
  }

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

  .section-8 {
    padding: 4rem 1.5rem;
  }

  .text-block-rsvp {
    font-size: 4vw;
  }

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

  .heading-form-2 {
    text-align: center;
    width: auto;
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 6vw;
  }

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

  .form-field-2.select {
    height: 40px;
    margin-top: 10px;
    padding-left: 2px;
    padding-right: 0;
  }

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

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

  .div-xclose-2 {
    object-fit: fill;
    width: auto;
    display: flex;
    position: absolute;
    inset: auto;
    overflow: visible;
  }

  .xclose-3 {
    border-width: 2px;
    border-color: var(--color-1);
    color: var(--color-1);
    -webkit-text-stroke-color: #c7c1b6;
    margin-top: 10px;
    margin-left: 0;
    margin-right: 10px;
    padding: 5px 6px 4px;
    font-size: 12px;
    line-height: 15px;
    position: static;
    inset: auto;
  }

  .image-popup-2 {
    background-color: #0000;
  }

  .div-block-16 {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-right: 0;
  }

  .section-title-plans {
    text-align: center;
    padding-right: 20px;
  }

  .section-title-plans.marginfixed {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1.75fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-items: center stretch;
    margin-top: 50px;
    display: grid;
  }

  .text-block-10 {
    text-align: center;
    font-size: 5vw;
    line-height: 7vw;
  }

  .container-plans {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 90vw;
    display: flex;
  }

  .container-plans.large {
    max-width: none;
  }

  .div-block-17 {
    margin-top: 20px;
  }

  .heading-form-3 {
    text-align: center;
    width: auto;
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 6vw;
  }

  .section-icone {
    text-align: center;
    margin-bottom: 20px;
  }

  .text-block-politique {
    color: var(--color-1);
    font-size: 3.2vw;
  }

  .cell-2 {
    padding-top: 140px;
  }

  .image {
    top: 43px;
    bottom: auto;
    left: 109px;
  }

  .link-block-4 {
    display: flex;
  }
}

#w-node-c63ea2cf-feef-bba2-f69f-84241b5f155e-ac517e53 {
  align-self: start;
}

#w-node-_1205d3cd-5695-b150-1b10-dbf8bb1731b8-ac517e53 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7ad90b26-4a34-fca7-d187-cd1cf1573ef6-f1573ec1 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_7ad90b26-4a34-fca7-d187-cd1cf1573ef7-f1573ec1 {
  align-self: center;
}

#w-node-_7ad90b26-4a34-fca7-d187-cd1cf1573ef9-f1573ec1 {
  place-self: center end;
}

#w-node-_944b3976-db16-ee79-c121-d17712f5bd04-e002f9c8, #w-node-_04995f8b-726e-a519-5040-7653e2fe502e-484af0f7, #w-node-_480202df-bb6a-37ff-191b-153390a721ea-484af0f7, #w-node-_480202df-bb6a-37ff-191b-153390a721f1-484af0f7 {
  align-self: start;
}

#w-node-_22cdfa38-0aa0-8e85-e9c5-b09309c3704c-09c37019 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_22cdfa38-0aa0-8e85-e9c5-b09309c3704d-09c37019 {
  align-self: center;
}

#w-node-_22cdfa38-0aa0-8e85-e9c5-b09309c37052-09c37019 {
  place-self: center end;
}

#w-node-_944b3976-db16-ee79-c121-d17712f5bd04-daa719c1 {
  align-self: start;
}

#w-node-_8df77b58-b5eb-e7f3-8caf-3aa3e541ae6b-cefb7b6c {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-d142ce0f-4b52-f77d-373f-cdc766a92c99-15816179 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start;
}

#w-node-debe954f-db2a-6dc5-b97d-40a0a7e152b9-15816179 {
  justify-self: end;
}

#w-node-debe954f-db2a-6dc5-b97d-40a0a7e152be-15816179 {
  place-self: center;
}

#w-node-debe954f-db2a-6dc5-b97d-40a0a7e152bf-15816179 {
  justify-self: center;
}

#w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-aedba82c {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-c63ea2cf-feef-bba2-f69f-84241b5f155e-7daa318c {
  align-self: start;
}

#w-node-_1205d3cd-5695-b150-1b10-dbf8bb1731b8-7daa318c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_944b3976-db16-ee79-c121-d17712f5bd04-f414d747, #w-node-_944b3976-db16-ee79-c121-d17712f5bd04-5a15f369 {
  align-self: start;
}

#w-node-_86296430-06c0-89a5-7295-74bd15e732d5-7df28210 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start;
}

#w-node-b5fbdc76-0098-aca2-148f-c5fe96070782-7df28210 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end start;
}

#w-node-b121f764-e760-7e9d-731a-26719aec4002-7df28210 {
  justify-self: end;
}

#w-node-_272f5c14-112a-f568-f427-d48a0b0e7b9c-7df28210 {
  place-self: center;
}

#w-node-_062d2019-4efb-5efe-4ecc-fa45bfaeb3a8-7df28210 {
  justify-self: center;
}

#w-node-_04995f8b-726e-a519-5040-7653e2fe502e-21802556, #w-node-_480202df-bb6a-37ff-191b-153390a721ea-21802556, #w-node-_480202df-bb6a-37ff-191b-153390a721f1-21802556 {
  align-self: start;
}

#w-node-_8df77b58-b5eb-e7f3-8caf-3aa3e541ae6b-578b018b {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-448ec963 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-09acdb14, #w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-db05935e {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-b156145d, #w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-de8d7fd8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 1920px) {
  #w-node-debe954f-db2a-6dc5-b97d-40a0a7e152bf-15816179, #w-node-_062d2019-4efb-5efe-4ecc-fa45bfaeb3a8-7df28210 {
    justify-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_7ad90b26-4a34-fca7-d187-cd1cf1573ef9-f1573ec1, #w-node-_22cdfa38-0aa0-8e85-e9c5-b09309c37052-09c37019 {
    order: -9999;
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_944b3976-db16-ee79-c121-d17712f5bd04-e002f9c8, #w-node-_944b3976-db16-ee79-c121-d17712f5bd04-daa719c1 {
    order: -9999;
  }

  #w-node-_8df77b58-b5eb-e7f3-8caf-3aa3e541ae6b-cefb7b6c {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-d142ce0f-4b52-f77d-373f-cdc766a92c99-15816179 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-aedba82c {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_944b3976-db16-ee79-c121-d17712f5bd04-f414d747, #w-node-_944b3976-db16-ee79-c121-d17712f5bd04-5a15f369 {
    order: -9999;
  }

  #w-node-_86296430-06c0-89a5-7295-74bd15e732d5-7df28210, #w-node-b5fbdc76-0098-aca2-148f-c5fe96070782-7df28210 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_8df77b58-b5eb-e7f3-8caf-3aa3e541ae6b-578b018b {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-448ec963, #w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-09acdb14, #w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-db05935e, #w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-b156145d, #w-node-_904fdfb0-e7b2-6b73-6cf0-0e816f064c28-de8d7fd8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Turnpike';
  src: url('../fonts/Turnpike.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Objectsans';
  src: url('../fonts/ObjectSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}