:root {
  --background: #efe8d8;
  --black: #22312b;
  --letter-spacing: 1px;
  --radius: 4px;
  --green-light: #637060;
  --cta: #bc9437;
  --white: white;
  --hover-dark: rgba(0, 0, 0, .4);
  --hover-pattern: rgba(34, 49, 43, .97);
  --light: #f4f4f4;
  --footer-line: rgba(99, 112, 96, .7);
  --button-padding: 4px;
  --shadow: rgba(0, 0, 0, .1);
  --hover-light: rgba(255, 255, 255, .8);
  --grey: #6e6e6e;
}

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

body {
  background-color: var(--background);
  color: var(--black);
  background-image: url('../images/video-noise.png');
  background-position: 0 0;
  background-size: auto;
  font-family: arboria, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

h1 {
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Cormorant, sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

h4 {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Droid Serif, serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  max-width: 37em;
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

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

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: lower-alpha;
}

img {
  max-width: 100%;
  object-fit: contain;
  display: inline-block;
}

strong {
  font-weight: bold;
}

figure {
  margin-bottom: 0;
}

.form_field {
  width: 100%;
  height: 50px;
  border-radius: var(--radius);
  color: var(--background);
  background-color: rgba(99, 112, 96, .5);
  border: 1px #000;
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 400;
}

.form_field:focus {
  border-color: var(--green-light);
  background-color: rgba(99, 112, 96, .8);
}

.form_field::-ms-input-placeholder {
  color: var(--cta);
  font-size: 14px;
  line-height: 1;
}

.form_field::placeholder {
  color: var(--cta);
  font-size: 14px;
  line-height: 1;
}

.form_field.message {
  min-height: 100px;
  padding: 10px;
}

.form_field.capitalize {
  text-transform: capitalize;
}

.form_field.capitalize::-ms-input-placeholder {
  text-transform: none;
}

.form_field.capitalize::placeholder {
  text-transform: none;
}

.form {
  width: 100%;
  grid-column-gap: 31px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.checkbox_txt {
  font-size: 11px;
  line-height: 1.4;
}

.footer_link {
  opacity: .7;
  cursor: pointer;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity .35s cubic-bezier(.25, .46, .45, .94);
}

.footer_link:hover {
  opacity: 1;
}

.footer_link.w--current {
  border-bottom: 1px solid var(--background);
}

.footer_link.w--current:hover {
  transform: none;
}

.nav_component {
  z-index: 2;
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header_component {
  z-index: 3;
  min-height: 100vh;
  grid-column-gap: 140px;
  grid-row-gap: 140px;
  background-color: var(--hover-dark);
  color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 80px 100px 40px;
  display: flex;
  position: relative;
}

.header_component.is-technical {
  min-height: 100vh;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--black);
  background-image: linear-gradient(to bottom, var(--hover-pattern), var(--hover-pattern)), url('../images/video-noise.png'), url('../images/LesJardins_pattern.svg');
  text-align: center;
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, 60px;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}

.nav_logo_wrap {
  z-index: 2;
  width: 170px;
  height: 30px;
  flex: none;
  margin-bottom: 20px;
  position: relative;
}

.nav_link_wrapper {
  z-index: 2;
  text-transform: uppercase;
  cursor: default;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
  display: flex;
  position: relative;
}

.nav_link_wrapper.is-contact {
  display: none;
}

.nav_link_line {
  height: 1px;
  flex: none;
  margin-top: 2px;
}

.nav_link_line.w--current {
  width: 100%;
  background-color: var(--white);
  display: none;
}

.section {
  z-index: 1;
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-direction: column;
  padding: 100px 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.bg_img {
  min-height: 36vw;
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.section.bg_grey {
  background-color: var(--light);
  background-image: linear-gradient(rgba(244, 244, 244, .94), rgba(244, 244, 244, .94)), url('../images/video-noise_black.webp');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
}

.section.nav-page {
  min-height: 80vh;
  padding-top: 280px;
}

.section.is-green {
  background-color: var(--green-light);
  color: var(--light);
  background-image: url('../images/LesJardins_leaves-left.svg'), linear-gradient(rgba(34, 49, 43, .9), rgba(34, 49, 43, .9)), url('../images/video-noise.png');
  background-position: 0 0, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat;
  background-size: 250px, auto, auto;
}

.section.is-green.no-padding-bottom {
  padding-bottom: 16px;
}

.section.is-texture {
  background-image: linear-gradient(rgba(239, 232, 216, .4), rgba(239, 232, 216, .4)), url('../images/LesJardins_Background.webp');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.section.overflow-hidden {
  height: 100vh;
  max-height: 70vw;
  min-height: 700px;
  justify-content: center;
  padding-top: 220px;
  padding-bottom: 220px;
  overflow: hidden;
}

.section.is-contact {
  background-color: #22312b;
  background-image: linear-gradient(to bottom, var(--hover-pattern), var(--hover-pattern)), url('../images/video-noise.png'), url('../images/LesJardins_pattern.svg');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, 60px;
  align-items: center;
}

.section.is-promo {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  padding-left: 0;
  padding-right: 0;
  font-size: 1.1em;
}

.heading-xsmall {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  opacity: .65;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  font-size: .9em;
  line-height: 1;
  display: flex;
}

.heading-xsmall.is-promo {
  max-width: 20em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  display: block;
}

.heading-large {
  max-width: 540px;
  text-transform: uppercase;
  margin-top: 4px;
  font-size: 2rem;
  line-height: 1.2;
}

.heading-medium {
  margin-bottom: 16px;
  font-family: miller-banner, sans-serif;
  font-size: 2.61792em;
  line-height: 1.2;
}

.heading-medium.serif {
  font-family: Cormorant, sans-serif;
  font-size: 1.8rem;
}

.heading-medium.is-small-medium {
  margin-bottom: 0;
  font-size: 2em;
}

.container {
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.container.small {
  max-width: 800px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
}

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

.container.is-header {
  z-index: 3;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  align-items: center;
  display: flex;
}

.container.is-gallery {
  align-items: center;
}

.container.is-utility {
  width: auto;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--footer-line);
  border-radius: var(--button-padding);
  background-color: var(--black);
  align-self: center;
  align-items: center;
  padding: 60px 100px;
}

.container.is-gdpr {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding-top: 100px;
}

.flex-horizontal {
  z-index: 2;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  display: flex;
  position: relative;
}

.flex-horizontal.reverse {
  flex-direction: row-reverse;
}

.card-big_item {
  flex: 1;
}

.card-big_mask {
  width: 100%;
  height: 30vw;
  max-height: 450px;
  min-height: 250px;
  overflow: hidden;
}

.card-big_mask.bg-white {
  height: 24vw;
  max-height: 320px;
}

.card-big_txt {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
  display: flex;
}

.card-big_txt.bg-white {
  background-color: var(--white);
  text-align: center;
  align-items: center;
  padding: 40px;
}

.half_img {
  width: 50%;
  height: 50vw;
  max-height: 520px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.half_txt {
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: none;
}

.image-cover.top0 {
  object-position: 50% 0%;
}

.image-cover.is-absolute {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.image-cover.left30 {
  object-position: 30% 50%;
}

.button_wrap {
  margin-top: 48px;
  text-decoration: none;
  position: relative;
}

.form_wrap {
  text-align: left;
  flex-direction: column;
  align-self: stretch;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
}

.footer_logo {
  height: 50px;
}

.footer_logo.is-big {
  height: 90px;
}

.footer_logo.is-medium {
  height: 60px;
}

.footer_row {
  width: 100%;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-transform: uppercase;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  line-height: 1;
  display: flex;
}

.footer_row.is-logo {
  width: 100%;
  max-width: 700px;
  justify-content: space-between;
}

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

.nav_link {
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 4px;
  padding-bottom: 10px;
  font-size: .8rem;
  line-height: 1;
  text-decoration: none;
}

.nav_link.w--current {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  margin-bottom: 2px;
  padding-bottom: 10px;
  font-weight: 700;
}

.nav_link.is-promo {
  border: 1px solid var(--cta);
  background-color: var(--light);
  background-image: none;
  border-radius: 40px;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 700;
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
}

.nav_link.is-promo:hover {
  background-image: linear-gradient(149deg, #a08053, #c8a66a 21%, #d3b071 26%, #eac683 37%, #f3cf8a 44%, #dcb879 64%, #aa8957 92%, #9c7e4f 104%);
}

.nav_link.is-promo.w--current {
  background-image: linear-gradient(149deg, #a08053, #c8a66a 21%, #d3b071 26%, #eac683 37%, #f3cf8a 44%, #dcb879 64%, #aa8957 92%, #9c7e4f 104%);
  margin-bottom: 0;
}

.nav_link.is-bannercookie {
  border: 1px solid var(--cta);
  background-color: var(--light);
  color: var(--black);
  text-transform: none;
  background-image: linear-gradient(149deg, #a08053, #c8a66a 21%, #d3b071 26%, #eac683 37%, #f3cf8a 44%, #dcb879 64%, #aa8957 92%, #9c7e4f 104%);
  border-radius: 40px;
  align-self: flex-end;
  padding: 10px 20px 12px;
  font-size: .9rem;
  font-weight: 400;
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
}

.nav_link.is-bannercookie:hover {
  background-image: linear-gradient(149deg, #a08053, #c8a66a 21%, #d3b071 26%, #eac683 37%, #f3cf8a 44%, #dcb879 64%, #aa8957 92%, #9c7e4f 104%);
}

.nav_link.is-bannercookie.w--current {
  background-image: linear-gradient(149deg, #a08053, #c8a66a 21%, #d3b071 26%, #eac683 37%, #f3cf8a 44%, #dcb879 64%, #aa8957 92%, #9c7e4f 104%);
  margin-bottom: 0;
}

.nav_link.is-bannercookie.is-white {
  background-image: none;
}

.grid_img_wrap {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid_img_wrap.landscape-display-none {
  height: auto;
  flex: 1;
}

.grid_img_wrap.is-landscape {
  display: none;
}

.header_par {
  max-width: 24em;
}

.button-icon {
  border: 2px solid var(--cta);
  background-color: var(--cta);
  color: var(--white);
  text-transform: uppercase;
  align-items: center;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.button-icon:hover {
  color: var(--cta);
  background-color: rgba(135, 100, 184, 0);
}

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

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

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

.form_component {
  width: 100%;
  max-width: 780px;
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  border: 1px solid var(--footer-line);
  border-radius: var(--radius);
  background-color: var(--black);
  color: var(--background);
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 60px 40px;
  display: flex;
}

.x_asta {
  width: 2px;
  height: 40%;
  background-color: var(--black);
  flex: none;
  position: absolute;
  transform: rotate(45deg);
}

.x_asta._2 {
  transform: rotate(-45deg);
}

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

.header_mask {
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.heading-small {
  opacity: .7;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  margin-top: -12px;
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.2;
}

.heading-small.is-promo {
  max-width: 20em;
  margin-top: 0;
  margin-bottom: 32px;
  line-height: 1.4;
}

.heading-small.is-technical {
  max-width: none;
  margin-top: 0;
}

.list_grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.list_grid_item {
  flex: 1;
}

.list_grid_icon {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
}

.slide_wrap {
  width: 100%;
  height: 100%;
  cursor: pointer;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  display: flex;
  overflow: hidden;
}

.display-none {
  border-top: 1px solid #000;
  display: none;
}

.flags_wrap {
  z-index: 29;
  position: fixed;
  top: 0;
  left: 0;
}

.fixed_flags {
  z-index: 10;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 40vh;
  display: flex;
  position: fixed;
  top: -87px;
  right: 40px;
}

.footer_wrap {
  grid-column-gap: 140px;
  grid-row-gap: 140px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header_hover {
  z-index: 2;
  background-color: var(--hover-dark);
  background-image: radial-gradient(circle at 50% 80%, rgba(0, 0, 0, .51), rgba(0, 0, 0, 0) 49%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.nav_link_container {
  width: 100%;
  max-width: 1500px;
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  justify-content: center;
  align-items: flex-end;
  padding-left: 0;
  display: flex;
}

.flag_component {
  padding: var(--button-padding);
  border: 1px solid var(--cta);
  cursor: pointer;
  border-radius: 100%;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: relative;
}

.flag_txt_wrap {
  z-index: 1;
  border-radius: var(--radius);
  background-color: var(--background);
  box-shadow: 0 0 6px 1px var(--shadow);
  color: var(--black);
  flex-direction: row;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  margin-right: 8px;
  text-decoration: none;
  display: none;
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 100%;
  overflow: hidden;
}

.flag_txt {
  white-space: nowrap;
  flex: none;
  padding-left: 16px;
  padding-right: 16px;
}

.nav_background {
  z-index: 1;
  background-color: var(--background);
  background-image: url('../images/video-noise.png');
  background-position: 0 0;
  background-size: auto;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, .1);
}

.nav_hamburger {
  display: none;
}

.footer_component {
  border-top: 1px solid var(--footer-line);
  background-color: var(--black);
  color: var(--background);
  letter-spacing: var(--letter-spacing);
  padding: 100px 60px 70px;
  font-size: .7em;
}

.button_component {
  padding: var(--button-padding);
  border: 1px solid var(--cta);
  color: var(--black);
  cursor: pointer;
  border-radius: 40px;
  flex-direction: column;
  margin-top: 48px;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
}

.button_component.is-text {
  color: var(--background);
  text-transform: uppercase;
  border-style: none;
  border-radius: 0;
}

.button_component.is-vicino {
  margin-top: 16px;
}

.banners_wrap {
  width: 0;
  height: 0;
}

.background_hover {
  z-index: 1;
  background-color: var(--hover-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.background_img {
  z-index: 0;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.full_img {
  border-radius: var(--radius);
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.form_icon {
  width: 32px;
  margin-bottom: 24px;
  display: flex;
}

.gdpr_text {
  border-top: 1px solid var(--footer-line);
  color: var(--green-light);
  text-align: center;
  padding-top: 20px;
  font-size: 11px;
}

.heading_header {
  max-width: 14em;
  letter-spacing: 0;
  text-transform: none;
  font-family: miller-banner, sans-serif;
  font-size: 2.8em;
  font-weight: 400;
}

.txt-italic {
  margin-bottom: 30px;
  font-family: Cormorant, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
}

.txt-italic.light {
  max-width: 370px;
  color: var(--cta);
  margin-bottom: 0;
  font-size: 1.7rem;
}

.moodboard {
  max-height: 70vw;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 1fr;
  grid-template-columns: .75fr 1fr;
}

.moodboard.is-esterni {
  grid-template-columns: 1.25fr 1fr;
  align-self: stretch;
  margin-top: 50px;
  margin-bottom: 50px;
}

.moodboard.is-aree {
  height: 40vw;
  max-height: 60vh;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-left: -44px;
  margin-right: -44px;
}

.text_container {
  width: 100%;
  flex-direction: column;
  align-self: center;
  align-items: center;
  display: flex;
}

.text_container.is-center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text_container.is-center.is-promo {
  width: 660px;
  max-width: 60vw;
  border-style: solid;
  border-width: 1px;
  justify-content: center;
  padding: 0%;
}

.par-large {
  max-width: 700px;
}

.accordion_img_wrap {
  width: 100%;
  height: 350px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.arrow_disable {
  z-index: 2;
  width: 60px;
  height: 40px;
  background-color: var(--background);
  opacity: .7;
  margin-left: 16px;
  margin-right: 16px;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
}

.arrow_disable.right {
  display: none;
  left: auto;
}

.list_grid_par {
  max-width: 260px;
}

.lightbox_component {
  z-index: 100;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, .85);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}

.lightbox_x {
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: var(--black);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.lightbox_x.transparent {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0);
  top: 10px;
  right: 10px;
}

.video_embed {
  max-height: 100%;
  max-width: 100%;
}

.video_container {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.box_img {
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.box_txt {
  width: 50%;
  background-color: var(--background);
  color: var(--black);
  background-image: url('../images/video-noise.png');
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.box_wrap {
  border-radius: var(--radius);
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 30px 1px rgba(0, 0, 0, .08);
}

.card-big_wrap {
  z-index: 2;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  display: flex;
  position: relative;
}

.heading-serif {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Cormorant, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.2;
}

.policy-flags {
  align-self: stretch;
  margin-top: 8px;
  margin-bottom: 8px;
}

.note-legali {
  max-width: 1300px;
  margin-top: 220px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
}

.button-05 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  cursor: pointer;
  border: 1px rgba(255, 226, 191, .5);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  padding: 14px 35px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-05.is-negative {
  color: var(--cta);
}

.button-05_text {
  z-index: 1;
  text-transform: uppercase;
  position: relative;
}

.button-05_bg {
  width: 200%;
  height: 60px;
  cursor: pointer;
  background-image: linear-gradient(149deg, #a08053, #c8a66a 21%, #d3b071 26%, #eac683 37%, #f3cf8a 44%, #dcb879 64%, #aa8957 92%, #9c7e4f 104%);
  padding: 12px 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.heading_dot {
  width: 6px;
  height: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
}

.flag_icon_wrap {
  width: 40px;
  height: 40px;
  background-color: var(--cta);
  cursor: pointer;
  background-image: linear-gradient(149deg, #a08053, #c8a66a 21%, #d3b071 26%, #eac683 37%, #f3cf8a 44%, #dcb879 64%, #aa8957 92%, #9c7e4f 104%);
  border-radius: 100%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 9px;
  display: flex;
  overflow: hidden;
}

.flag_icon_wrap:hover {
  background-color: var(--black);
}

.footer_logo_container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--white);
  flex-direction: column;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.footer_logo_wrapper {
  margin-top: auto;
  margin-bottom: auto;
}

.slider02_container {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  opacity: 1;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  text-decoration: none;
  transition: opacity .5s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  overflow: hidden;
}

.slider02_container.w--current {
  opacity: .4;
  position: relative;
}

.nav-bottom {
  z-index: 1;
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  padding-top: 70px;
}

.nav-bottom_slide {
  padding-left: 8px;
  padding-right: 8px;
}

.slider_arrow {
  z-index: 1;
  width: 60px;
  height: 40px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 0;
  margin-left: 16px;
  margin-right: 16px;
  top: 0;
}

.slider_arrow.left {
  background-image: url('../images/arrow-left.svg');
}

.slider_arrow.right {
  background-image: url('../images/arrow-right.svg');
}

.bg_txt_wrap {
  z-index: 1;
  max-width: 1300px;
  opacity: .07;
  background-image: url('../images/LesJardins_Background-text.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 5%;
  right: 5%;
}

.bg_txt_wrap.mobile {
  display: none;
}

.nav-bottom_mask {
  width: 25%;
  height: 260px;
  position: relative;
  overflow: visible;
}

.form_label {
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  font-size: .7em;
  font-weight: 400;
}

.button_submit {
  color: var(--black);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  cursor: pointer;
  background-image: linear-gradient(149deg, #a08053, #c8a66a 21%, #d3b071 26%, #eac683 37%, #f3cf8a 44%, #dcb879 64%, #aa8957 92%, #9c7e4f 104%);
  border-radius: 60px;
  padding: 12px 35px;
  font-weight: 400;
}

.text-color-cta {
  color: var(--cta);
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  background-image: url('../images/LesJardins_sfumatura.webp');
  background-position: 0 0;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
}

.place_icon {
  height: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.loader-02_component {
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  background-image: linear-gradient(rgba(34, 49, 43, .96), rgba(34, 49, 43, .96)), url('../images/video-noise.png');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.loader-02_logo {
  width: 260px;
  max-width: 70%;
}

.loader-02_cta-skip {
  z-index: 2;
  color: var(--hover-light);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  cursor: pointer;
  font-size: .8em;
  text-decoration: none;
  transition: color .25s;
  position: absolute;
  top: auto;
  bottom: 10vh;
  left: auto;
  right: auto;
}

.loader-02_cta-skip:hover {
  color: #fcfcfc;
}

.loader-02_cta-skip.w--current {
  border-bottom: 1px solid rgba(0, 0, 0, .3);
}

.contact_component {
  width: 100%;
  max-width: 1100px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.contact_map {
  border-top: 1px solid var(--footer-line);
  color: var(--background);
  flex: 1;
}

.form_heading {
  margin-bottom: 16px;
  font-family: miller-banner, sans-serif;
  font-size: 2em;
  line-height: 1.2;
}

.timbro-02_component {
  width: 130px;
  height: 130px;
  opacity: .5;
  background-image: url('../images/LesJardins_timbro-light_interno.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -30px;
  right: -40px;
}

.timbro-02 {
  width: 130px;
  height: 130px;
  background-image: url('../images/LesJardins_timbro-lightgreen_esterno.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.timbro-02.is-green {
  z-index: 1;
}

.timbro-02.is-light {
  z-index: 2;
  background-image: url('../images/LesJardins_timbro-light_esterno.svg');
  background-position: 0 0;
  background-size: 130px 130px;
  bottom: 30px;
  right: 40px;
}

.scroll_component {
  width: 30px;
  margin-top: 8px;
}

.scroll_lottie {
  width: 100%;
  height: 100%;
}

.contact_place {
  min-width: 250px;
  border: 1px solid var(--footer-line);
  border-radius: var(--radius);
  background-color: var(--black);
  color: var(--background);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.contact_address_wrapper {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px;
  display: flex;
}

.place_logo {
  width: 190px;
}

.header_logo {
  z-index: 4;
  width: 240px;
  margin-bottom: auto;
  position: relative;
}

.nav_container {
  width: 100%;
  grid-row-gap: 12px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 32px 40px 20px;
  display: flex;
}

.header_paragraph_container {
  flex-direction: column;
  align-items: center;
  font-size: 1.1em;
  display: flex;
}

.dropdown-toggle {
  width: 100%;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.dropdown-list {
  border: 1px solid var(--footer-line);
  border-radius: var(--radius);
  background-color: var(--green-light);
  margin-top: 4px;
}

.dropdown-list.w--open {
  background-color: var(--black);
}

.form_dropdown {
  color: var(--background);
  transition: background-color .35s cubic-bezier(.25, .46, .45, .94);
}

.form_dropdown:hover {
  background-color: var(--footer-line);
}

.form_dropdown.w--current {
  background-color: var(--green-light);
  color: var(--background);
}

.form_dropdown_text {
  height: 100%;
  color: var(--background);
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  transition: background-color .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.dropdown_icon {
  color: var(--background);
}

.button-technical_wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.button {
  cursor: pointer;
  font-size: 14px;
}

.button.is-txt {
  border-bottom: 1px solid var(--background);
  font-size: 12px;
}

.button.is-text {
  border-bottom: 1px solid #000;
  font-size: 12px;
}

.button_icon {
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility_logo {
  width: 200px;
  margin-bottom: 60px;
}

.box_txt_container {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 10%;
  display: flex;
}

.box_txt_container.is-top {
  background-color: var(--white);
  flex: 1;
  padding-bottom: 48px;
}

.box_txt_container.is-top.is-center {
  flex: none;
}

.box_txt_container.is-bottom {
  background-color: var(--background);
  border-top: 1px solid #000;
  padding-top: 60px;
  padding-bottom: 60px;
}

.box_txt_container.is-bottom.is-center, .box_txt_container.is-center {
  align-items: center;
}

.container-promo {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 32px;
  display: flex;
}

.grid_slider {
  width: 100%;
  height: 100%;
  background-color: rgba(221, 221, 221, 0);
}

.max-width-25em {
  max-width: 25em;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.par-small {
  max-width: 400px;
}

.slider_grid {
  width: 100%;
  height: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  grid-template-rows: 1fr .25fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.timbro_mask {
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 30px;
  left: 0;
  right: 40px;
  overflow: hidden;
}

.gdpr_richtext {
  max-width: 100%;
}

.gdpr_richtext p {
  max-width: none;
}

.gdpr_richtext h2 {
  margin-top: 36px;
  margin-bottom: 8px;
  font-size: 2rem;
}

.gdpr_richtext h1 {
  margin-bottom: 8px;
  font-size: 1.6em;
}

.gdpr_richtext ul, .gdpr_richtext ol {
  margin-top: 4px;
}

.gdpr_richtext a {
  color: var(--green-light);
  text-decoration: underline;
}

.gdpr_richtext h3 {
  color: var(--green-light);
  text-transform: uppercase;
  margin-top: 32px;
  font-size: 1.1rem;
}

.gdpr_sublist {
  padding-left: 60px;
}

.gdpr_list {
  list-style-type: lower-alpha;
}

.cookie_tab {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-right: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 3fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cookie_tab_cell {
  border-style: none none solid solid;
  border-width: 1px;
  border-color: var(--black);
  padding: 10px 20px;
}

.cookie_tab_cell.is-heading {
  background-color: var(--green-light);
  color: #fff;
  border-top-style: solid;
  align-items: center;
  display: flex;
}

.todelete {
  text-align: left;
  background-color: #a39bff;
  margin-top: 160px;
  margin-bottom: 0;
  padding: 40px 15%;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.todelete.is-gdpr {
  max-width: none;
  display: block;
}

.cookie_tab_wrapper {
  max-width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.stylesheet {
  min-width: 30%;
  grid-column-gap: 0px;
  grid-row-gap: 1.5rem;
  background-color: rgba(0, 0, 0, .16);
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 0 .5rem .5rem;
  flex: 1;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  align-items: center;
  justify-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px 20px 40px;
  display: none;
  position: relative;
}

.form_link {
  color: var(--green-light);
  text-decoration: underline;
}

.footer_dot {
  width: 4px;
  height: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer_dot.is-mobile {
  display: none;
}

.cookie-banner_close_txt {
  border-bottom: 1px solid #000;
  font-size: 12px;
}

.cookie-prefs_name {
  color: #5c5c5c;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: auto;
  font-size: 14px;
  font-weight: 400;
}

.cookie-banner_link {
  color: var(--green-light);
  font-weight: 700;
}

.cookie-banner_title_wrap {
  grid-row-gap: 20px;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.cookie-banner_buttons-wrapper {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cookie-prefs_checkbox-field {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  margin-bottom: 0;
  padding: 2px;
  display: flex;
  position: relative;
}

.cookie-prefs_checkbox-label {
  display: none;
}

.cookie-banner_container {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  display: flex;
}

.cookie-prefs_option {
  border-bottom: 1px solid rgba(51, 51, 51, .15);
  padding-bottom: 16px;
  position: relative;
}

.cookie-banner {
  max-width: 500px;
  background-color: var(--background);
  flex-direction: column;
  align-items: center;
  margin: auto;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 0 14px 3px rgba(0, 0, 0, .1);
}

.cookie-prefs_checkbox {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-color: var(--hover-pattern);
  background-color: var(--hover-pattern);
  cursor: pointer;
  background-image: url('../images/check_dot.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 30px;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cookie-prefs_checkbox.w--redirected-checked {
  border-color: var(--green-light);
  background-color: var(--green-light);
  background-image: url('../images/check_dot.svg');
  background-position: 100%;
  background-size: contain;
}

.cookie-prefs_checkbox.w--redirected-focus {
  box-shadow: none;
}

.cookie-prefs_description {
  line-height: 1.4;
  transition: height .25s cubic-bezier(.455, .03, .515, .955);
}

.cookie-prefs_open-txt {
  height: 24px;
  opacity: .5;
  color: #000;
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  right: 70px;
}

.cookie-prefs_open-txt.is-first {
  top: 0;
}

.cookie-prefs_container {
  z-index: 1;
  width: 100%;
  max-width: 600px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--background);
  color: #333;
  flex-direction: column;
  margin: auto;
  padding: 48px 40px;
  font-size: 12px;
  line-height: 1;
  display: flex;
  position: relative;
}

.cookie-banner_wrapper {
  z-index: 998;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, .1);
  flex-direction: column;
  padding: 24px 32px;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}

.cookie-prefs_label {
  font-weight: 700;
}

.cookie-prefs_trigger, .cookie-prefs_nascondi {
  display: none;
}

.cookie-prefs_toggle {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 999px;
}

.cookie-prefs_text {
  line-height: 1.4;
  transition: height .25s cubic-bezier(.455, .03, .515, .955);
  overflow: hidden;
}

.cookie-prefs_arrow {
  width: 10px;
  height: 10px;
  background-image: url('../images/freccia.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  margin-left: 6px;
  display: flex;
  transform: rotate(0);
}

.cookie-prefs_wrapper {
  z-index: 997;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, .15);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: 60px 32px;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: auto;
}

.cookie-banner_trigger {
  display: none;
}

.cookie-banner_close_icon {
  width: 20px;
  color: #424b54;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cookie-prefs_buttons-wrapper {
  margin-bottom: 40px;
}

.cookie-prefs_buttons-wrapper.is-pref {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  display: flex;
}

.cookie-banner_text {
  font-size: 13px;
  line-height: 1.6;
}

.cookie-prefs_toggle-wrapper {
  height: 24px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.banner_close {
  opacity: 1;
  cursor: pointer;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  padding: 10px;
  display: flex;
}

.banner_close.is-x {
  z-index: 3;
  padding: 6px;
  position: absolute;
  top: 0;
  right: 0;
}

.manager_trigger {
  display: none;
}

.cookie_close_icon {
  width: 32px;
  color: var(--hover-pattern);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.is-maxwidth-40em {
  max-width: 40em;
}

.nav_logo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.nav_logo.is-negative {
  opacity: 0;
}

.breaking-nowrap {
  white-space: nowrap;
}

.form_message {
  padding: 0;
  position: absolute;
}

@media screen and (max-width: 991px) {
  p {
    max-width: 40em;
  }

  .form_field {
    height: 40px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .nav_component {
    z-index: 90;
  }

  .header_component {
    padding: 140px 32px 64px;
  }

  .nav_logo_wrap {
    z-index: 3;
    margin-bottom: 0;
  }

  .nav_link_wrapper.is-first {
    margin-top: auto;
  }

  .nav_link_wrapper.is-last {
    margin-bottom: auto;
  }

  .nav_link_line {
    background-color: var(--white);
    display: none;
  }

  .section {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .section.bg_img {
    min-height: 60vw;
  }

  .section.nav-page {
    padding-top: 140px;
  }

  .section.overflow-hidden {
    height: auto;
    min-height: 500px;
    padding-top: 100px;
    padding-bottom: 150px;
  }

  .section.is-promo {
    padding-bottom: 32px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .heading-xsmall.is-promo {
    line-height: 1.4;
  }

  .heading-medium {
    font-size: 2.4em;
  }

  .container {
    max-width: 800px;
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    align-items: center;
  }

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

  .container.is-header {
    flex-direction: column;
  }

  .container.is-gdpr {
    padding-top: 50px;
  }

  .flex-horizontal {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-direction: column;
    align-self: stretch;
  }

  .flex-horizontal.reverse {
    flex-direction: column;
    align-self: stretch;
  }

  .card-big_mask {
    flex: none;
    align-self: stretch;
  }

  .card-big_txt {
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .half_img {
    width: 100%;
    height: 70vw;
    max-height: none;
  }

  .half_txt {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .button_wrap {
    align-self: auto;
  }

  .form_wrap {
    width: 100%;
    max-width: none;
  }

  .footer_row {
    width: auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .footer_row.is-logo {
    width: 100%;
    max-width: 600px;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

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

  .nav_link {
    color: var(--white);
    text-transform: none;
    margin-top: 0;
    padding-bottom: 8px;
    font-size: 1em;
  }

  .nav_link.w--current {
    border-bottom-color: var(--white);
  }

  .nav_link.is-promo {
    color: var(--hover-pattern);
    text-transform: uppercase;
    padding-bottom: 12px;
  }

  .nav_link.is-promo.w--current {
    border-bottom-style: none;
  }

  .grid_img_wrap.tablet-display-none {
    display: none;
  }

  .grid_img_wrap.landscape-display-none {
    height: 50vw;
    flex: 1;
  }

  .form_component {
    flex-direction: column;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .list_grid {
    flex-wrap: wrap;
  }

  .list_grid_item {
    min-width: 40%;
  }

  .slide_wrap {
    height: auto;
  }

  .fixed_flags {
    margin-top: 0;
    top: 140px;
    right: 27px;
  }

  .footer_wrap {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav_link_container {
    z-index: 2;
    height: 100vh;
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(34, 49, 43, .77);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: auto;
  }

  .nav_hamburger {
    z-index: 3;
    width: 50px;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    display: flex;
    position: relative;
  }

  .nav_lottie {
    flex: none;
  }

  .footer_component {
    padding: 64px 32px 50px;
  }

  .gdpr_text {
    width: 100%;
  }

  .heading_header {
    font-size: 2.4em;
  }

  .moodboard {
    grid-template-columns: 1fr 1fr 1fr;
    align-self: stretch;
  }

  .moodboard.is-esterni {
    margin-top: 0;
    margin-bottom: 0;
  }

  .moodboard.is-aree {
    min-height: 350px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-left: -16px;
    margin-right: -16px;
  }

  .text_container.is-center.is-promo {
    width: 100%;
    max-width: 800px;
    order: -1;
  }

  .accordion_img_wrap {
    height: 30vw;
  }

  .lightbox_component {
    padding-top: 0;
    padding-bottom: 0;
  }

  .box_img {
    width: 100%;
    max-height: 50vh;
    justify-content: flex-start;
  }

  .box_txt {
    width: 100%;
  }

  .box_wrap {
    flex-direction: column;
    align-self: stretch;
  }

  .card-big_wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .note-legali {
    max-width: 100%;
    margin-top: 140px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .button-05 {
    padding: 12px 29px;
  }

  .button-05_text {
    text-align: center;
    font-size: .9rem;
  }

  .slider02_container {
    flex: 1;
  }

  .bg_txt_wrap {
    background-size: cover;
    top: 50px;
    bottom: 50px;
    left: 0%;
    right: 0%;
  }

  .nav-bottom_mask {
    width: 33.33%;
    height: 29vw;
  }

  .timbro-02_component {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -30px;
  }

  .timbro-02.is-green {
    width: 100px;
    height: 100px;
  }

  .timbro-02.is-light {
    width: 100px;
    height: 100px;
    background-size: 100px;
  }

  .nav_container {
    flex-direction: row;
    padding: 10px 27px 10px 32px;
  }

  .button.is-txt {
    border-bottom-color: #fff;
  }

  .button.is-text {
    border-bottom-color: var(--black);
  }

  .box_txt_container.is-top {
    text-align: center;
    align-items: center;
    padding-top: 48px;
  }

  .box_txt_container.is-top.is-center {
    font-size: 16px;
  }

  .box_txt_container.is-bottom {
    text-align: center;
    align-items: center;
  }

  .box_txt_container.is-bottom.is-center {
    font-size: 16px;
  }

  .container-promo {
    max-width: 800px;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    align-content: flex-start;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .grid_slider {
    max-width: 700px;
  }

  .par-small {
    max-width: 450px;
  }

  .gdpr_richtext h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.4rem;
  }

  .form_field {
    margin-bottom: 15px;
  }

  .form {
    display: flex;
  }

  .checkbox_txt {
    margin-right: auto;
  }

  .nav_component {
    z-index: 3;
    background-color: var(--white);
    justify-content: center;
  }

  .header_component {
    min-height: 88vh;
    grid-column-gap: 60px;
    grid-row-gap: 50px;
    color: var(--black);
    background-color: rgba(0, 0, 0, 0);
    flex-direction: column-reverse;
    padding: 60px 0 30px;
  }

  .header_component.is-technical {
    color: var(--white);
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav_logo_wrap {
    width: 140px;
  }

  .nav_link_line {
    display: none;
  }

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

  .section.is-promo {
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-large {
    font-size: 2rem;
  }

  .heading-medium {
    font-size: 2em;
  }

  .container {
    flex-direction: column;
  }

  .container.is-header {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .container.is-utility {
    padding-left: 50px;
    padding-right: 50px;
  }

  .container.is-gdpr {
    align-items: flex-start;
  }

  .card-big_item {
    flex-direction: column;
  }

  .card-big_mask {
    width: 100%;
    height: 56vw;
  }

  .card-big_txt {
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer_logo {
    height: 40px;
  }

  .footer_logo.is-big {
    height: 90px;
  }

  .footer_logo.is-medium {
    height: 45px;
  }

  .footer_row {
    width: 50%;
    text-align: center;
    flex-direction: column;
  }

  .footer_row.is-logo {
    width: 50%;
    grid-row-gap: 50px;
    align-self: auto;
  }

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

  .nav_link.w--current {
    border-bottom-color: var(--white);
    padding-bottom: 6px;
  }

  .nav_link.is-promo.w--current {
    border-bottom-style: none;
    padding-bottom: 10px;
  }

  .grid_img_wrap.tablet-display-none, .grid_img_wrap.landscape-display-none {
    display: none;
  }

  .grid_img_wrap.is-landscape {
    display: flex;
  }

  .header_mask {
    width: 100%;
    height: 80vw;
    flex: none;
    position: static;
  }

  .list_grid {
    grid-column-gap: 10vw;
    grid-row-gap: 10vw;
  }

  .footer_wrap {
    width: 100%;
  }

  .header_hover {
    display: none;
  }

  .nav_link_container {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    display: none;
  }

  .nav_hamburger {
    height: 40px;
    filter: none;
  }

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

  .button_component.is-submit {
    align-self: center;
  }

  .heading_header {
    font-size: 2em;
  }

  .moodboard {
    height: 150vw;
    max-height: none;
    grid-template-columns: 1fr 1fr;
  }

  .moodboard.is-esterni {
    height: 80vw;
  }

  .moodboard.is-aree {
    min-height: 300px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .accordion_img_wrap {
    height: 44vw;
  }

  .arrow_disable {
    top: auto;
    bottom: 0;
    left: auto;
    right: auto;
  }

  .arrow_disable.left {
    right: 50%;
  }

  .arrow_disable.right {
    left: 50%;
  }

  .lightbox_slide {
    margin-right: 10px;
  }

  .video_container {
    flex-direction: column;
  }

  .box_img, .box_txt {
    width: 100%;
  }

  .card-big_wrap {
    flex-direction: column;
    align-self: stretch;
  }

  .nav-bottom {
    padding-top: 0;
    padding-bottom: 70px;
  }

  .slider_arrow {
    background-size: 100%;
    top: auto;
    bottom: 0;
  }

  .slider_arrow.left {
    margin-left: auto;
    right: 50%;
  }

  .slider_arrow.right {
    margin-right: auto;
    position: absolute;
    left: 50%;
  }

  .nav-bottom_mask {
    width: 50%;
    height: 39vw;
  }

  .contact_component {
    flex-direction: column;
  }

  .contact_map {
    height: 350px;
    flex: 0 auto;
  }

  .scroll_component {
    filter: invert();
  }

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

  .place_logo {
    width: 220px;
  }

  .header_logo {
    display: none;
  }

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

  .box_txt_container.is-top.is-center, .box_txt_container.is-bottom.is-center {
    padding-left: 5%;
    padding-right: 5%;
  }

  .grid_slider {
    height: 90vw;
  }

  .cookie_tab {
    min-width: 750px;
  }

  .todelete.is-gdpr {
    margin-top: 0;
  }

  .cookie_tab_wrapper {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
  }

  .footer_dot {
    display: none;
  }

  .footer_dot.is-mobile {
    display: block;
  }

  .cookie-banner_title_wrap {
    align-items: center;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: center;
  }

  .cookie-banner_text {
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.1rem;
  }

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

  .checkbox_txt {
    align-self: flex-start;
  }

  .header_component.is-technical {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav_link_wrapper.is-contact {
    display: block;
  }

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

  .section.is-green {
    background-image: url('../images/LesJardins_leaves-left.svg'), linear-gradient(to bottom, null, null), url('../images/video-noise.png');
    background-size: 50%, auto, auto;
  }

  .section.overflow-hidden {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.is-promo {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-xsmall {
    font-size: .8rem;
  }

  .heading-large {
    font-size: 1.5rem;
  }

  .heading-medium {
    font-size: 1.8rem;
  }

  .container {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .container.is-header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .container.is-utility {
    padding: 40px 10px;
  }

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

  .card-big_txt {
    padding-left: 0;
    padding-right: 0;
  }

  .footer_row {
    order: 0;
  }

  .footer_row.is-logo {
    width: auto;
    grid-row-gap: 30px;
    order: 0;
  }

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

  .grid_img_wrap.portrait-display-none {
    display: none;
  }

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

  .header_mask {
    min-height: 40vh;
  }

  .list_grid {
    flex-wrap: wrap;
    display: flex;
  }

  .list_grid_item {
    min-width: 170px;
    flex: 1;
  }

  .flags_wrap {
    display: none;
  }

  .fixed_flags {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: row;
    position: static;
    right: 15px;
  }

  .footer_wrap {
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .nav_hamburger {
    width: 40px;
  }

  .footer_component {
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .moodboard.is-esterni {
    height: 110vw;
    grid-template-columns: 1fr;
  }

  .moodboard.is-aree {
    min-height: 250px;
    grid-template-columns: 1fr 1fr;
    margin-left: -4px;
    margin-right: -4px;
  }

  .video_container {
    align-items: center;
  }

  .box_img {
    max-height: 40vh;
  }

  .heading-serif {
    font-size: 1.8rem;
  }

  .note-legali {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-05.is-negative {
    grid-column-gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .button-05_text {
    text-align: center;
  }

  .button-05_bg {
    height: 80px;
  }

  .footer_logo_container.is-gap-0-mobile {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 20px;
  }

  .slider02_container {
    margin-right: 10px;
  }

  .nav-bottom {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 70px;
  }

  .bg_txt_wrap {
    height: 23vw;
    background-position: 50% 100%;
    background-size: cover;
    top: auto;
    bottom: 20px;
  }

  .bg_txt_wrap.mobile {
    height: 22vw;
    background-position: 50% 0;
    display: block;
    top: 50px;
  }

  .nav-bottom_mask {
    width: 100%;
    height: 70vw;
  }

  .form_heading {
    font-size: 1.8rem;
  }

  .timbro-02_component {
    display: none;
    bottom: -50px;
    right: auto;
  }

  .nav_container {
    padding-left: 20px;
    padding-right: 15px;
  }

  .button_icon {
    display: none;
  }

  .box_txt_container.is-top.is-center, .box_txt_container.is-bottom.is-center {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .timbro_mask {
    bottom: 50px;
    right: 0;
  }

  .gdpr_richtext {
    font-size: .9em;
  }

  .gdpr_richtext a {
    word-break: break-all;
  }

  .footer_dot {
    display: none;
  }

  .cookie-banner_title_wrap {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .cookie-banner_buttons-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .cookie-banner {
    padding: 20px;
  }

  .cookie-prefs_open-txt {
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
    position: static;
  }

  .cookie-prefs_container {
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .cookie-banner_wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cookie-prefs_wrapper {
    padding: 24px;
  }

  .cookie-prefs_buttons-wrapper.is-pref {
    flex-wrap: wrap;
  }

  .cookie-banner_text {
    margin-right: 0;
  }
}

#w-node-a276dc4f-e4c7-7b3a-c45b-da3a802144e8-f22b66be {
  align-self: stretch;
}

#w-node-b5e9d477-4ec9-2e1d-7fb3-93814d21bf26-ca8ea40c, #w-node-f8160551-e3de-eacd-77cc-95fe05154bf9-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea414-ca8ea40c, #policyFlagsContainer.w-node-_4453a11f-4f8d-c8be-abfe-84467ecd7191-ca8ea40c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e9743b6f-05e6-a5de-12f4-252dca8ea427-ca8ea40c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_6fae3ba7-465e-ee78-a41a-461754cba8fb-ca8ea40c {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-d36260ab-8bd4-5fff-54c4-dd395448b4af-f22b66be {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-a276dc4f-e4c7-7b3a-c45b-da3a802144e8-f22b66be {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-b5e9d477-4ec9-2e1d-7fb3-93814d21bf26-ca8ea40c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_4a6008ad-141f-01a9-f86e-261f6eadbdfe-f22b66be {
    grid-row: span 1 / span 1;
  }

  #w-node-d4713ec3-b1ff-c8e6-1700-1388125fe56c-f22b66be {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d3554c02-87bd-d9eb-0135-eb29caa1679c-f22b66be, #w-node-_5602497e-bf73-5c6e-545a-018c812c2880-f22b66be {
    grid-row: span 1 / span 1;
  }

  #w-node-b5e9d477-4ec9-2e1d-7fb3-93814d21bf26-ca8ea40c {
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-be63dcdb-d660-3ae6-1923-aa950556cf92-ca8ea40c, #w-node-_704abcc7-a9e7-1188-de5a-5ba224a0abf2-ca8ea40c, #w-node-_86ccf393-257e-5412-d0a9-a18d18b0e6b1-ca8ea40c, #w-node-_557b4a4b-3347-6d8e-f44e-7cde8f95ccc3-ca8ea40c, #w-node-b5e9d477-4ec9-2e1d-7fb3-93814d21bf26-ca8ea40c, #w-node-f8160551-e3de-eacd-77cc-95fe05154bf9-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea414-ca8ea40c, #policyFlagsContainer.w-node-_4453a11f-4f8d-c8be-abfe-84467ecd7191-ca8ea40c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea427-ca8ea40c {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }
}


@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Light-Regular.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}