:root {
  --light: whitesmoke;
  --black: #242424;
  --white: white;
  --gainsboro: #ddd;
  --grey: #6e6e6e;
  --hover-dark: #0006;
  --cta: #566b30;
  --palette5: #566b30;
  --palette4: #737a41;
  --palette3: #a88842;
  --palette1: #f5f5dd;
  --palette2: #c6a860;
  --dark-grey: #575757;
  --verdino: #a6bb7f;
  --hover-light: #ffffffdb;
  --white_over: #fffffff7;
}

.w-backgroundvideo-backgroundvideoplaypausebutton:focus-visible {
  outline-offset: 2px;
  border-radius: 50%;
  outline: 2px solid #3b79c3;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  background-color: var(--light);
  color: var(--black);
  padding-left: 70px;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
}

h1 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 400;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3rem;
  font-weight: 700;
  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 {
  margin-bottom: 0;
  font-size: 1.15em;
}

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 {
  object-fit: contain;
  max-width: 100%;
  display: inline-block;
}

strong {
  font-weight: bold;
}

figure {
  margin-bottom: 0;
}

.form_checkbox {
  color: var(--black);
  flex: none;
  margin-top: 2px;
  margin-right: 10px;
}

.form_checkbox.w--redirected-checked {
  border-color: var(--black);
  background-color: var(--black);
}

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

.form_field {
  border: 1px solid var(--gainsboro);
  background-color: var(--white);
  width: 100%;
  color: var(--grey);
  margin-bottom: 16px;
}

.form_field:focus {
  border-bottom-color: var(--grey);
}

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

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

.form_field.capitalize {
  text-transform: capitalize;
  font-family: arboria, sans-serif;
}

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

.form {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  width: 100%;
  color: var(--grey);
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form_link {
  color: var(--black);
}

.form_text {
  font-size: .7rem;
  line-height: 1.4;
}

.footer_link {
  color: var(--grey);
  cursor: pointer;
  line-height: 1.2;
  text-decoration: none;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
}

.footer_link:hover {
  color: var(--cta);
}

.footer_link.w--current {
  border-bottom-color: var(--black);
  color: var(--black);
}

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

.nav_component {
  z-index: 30;
  grid-row-gap: 48px;
  background-color: var(--white);
  border: 1px solid #cacaca;
  flex-direction: column;
  justify-content: center;
  width: 70px;
  padding: 32px 10px 20px;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

.nav_component.mobile {
  background-color: var(--palette5);
  border-style: none;
  justify-content: flex-start;
  padding-top: 20px;
  font-family: arboria, sans-serif;
  box-shadow: 0 2px 5px #00000029;
}

.header_component {
  z-index: 21;
  min-height: 100vh;
  color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 160px 100px 80px;
  display: flex;
  position: relative;
}

.header_component.home {
  border-style: solid;
  border-width: 70px;
  border-bottom-color: var(--light);
  color: #0000;
}

.nav_logo_wrap {
  z-index: 2;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 120px;
  display: flex;
  position: absolute;
  top: 20px;
  left: 10px;
  right: 10px;
}

.nav_logo_wrap.mobile {
  justify-content: space-between;
  height: 50%;
  position: static;
}

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

.section {
  border-style: solid;
  border-width: 0;
  border-color: var(--black) black black;
  padding: 8rem 70px;
  line-height: 1.3;
  display: block;
  position: relative;
  overflow: hidden;
}

.section.no-padding-bottom._4rem {
  padding-top: 4rem;
}

.section.no-padding-bottom._4rem_zero-b {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.section.bg_img {
  min-height: 300px;
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  position: relative;
}

.section.bg_img.maps {
  flex-flow: column;
  min-height: 546px;
  padding-left: 0;
  padding-right: 0;
  display: none;
}

.section.bg_img.hide {
  display: none;
}

.section.contact {
  flex: 1;
  align-items: flex-end;
  display: flex;
}

.section.counter {
  background-color: var(--palette4);
  background-image: url('../images/Clip-path-frame.svg');
  background-position: 50% 100%;
  background-size: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.section.no-padding {
  padding: 0;
  display: flex;
}

.section.no-padding-top {
  flex-flow: column;
  padding-top: 0;
  padding-bottom: 80px;
  display: flex;
}

.section.gallery {
  padding: 60px 0 0;
  display: flex;
}

.section.tecnical {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.section.location {
  display: none;
}

.section._3 {
  background-color: var(--white);
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.section.promo {
  display: flex;
}

.section._4rem {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section._4rembottom {
  padding-bottom: 4rem;
}

.section._2rem {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.heading-xsmall {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1;
}

.heading-xsmall._w-line {
  grid-column-gap: 10px;
  color: var(--palette3);
  letter-spacing: 0;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: arboria, sans-serif;
  font-size: 1em;
  font-weight: 700;
  display: flex;
}

.heading-xsmall.flex-vertical {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading-xsmall.flex-vertical._70 {
  text-align: center;
  width: 70%;
}

.heading-xsmall.is-tech {
  grid-column-gap: 10px;
  color: var(--palette3);
  letter-spacing: 0;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: arboria, sans-serif;
  font-size: 1em;
  font-weight: 700;
  display: flex;
}

.heading-large {
  color: var(--palette1);
  font-family: fromage, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.heading-large.on-white {
  color: var(--palette3);
}

.container {
  z-index: 3;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.container.header_home {
  z-index: 3;
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  flex-direction: row;
  justify-content: space-between;
  margin-top: auto;
  display: flex;
}

.container.no-gap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  min-height: 0;
}

.container.contact {
  flex-direction: row;
  justify-content: space-between;
  max-width: 1300px;
}

.container.header {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: row;
}

.container.gallery {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 100px;
  padding-left: 70px;
}

.container.tecnical {
  justify-content: center;
  align-items: center;
  width: auto;
  padding-left: 100px;
  padding-right: 100px;
}

.container.flex-horizontal {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
}

.container.is-gap {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  max-width: none;
  padding-top: 0;
}

.container.is-large {
  max-width: 1600px;
}

.container.is-slider {
  flex-flow: row;
  align-items: center;
  max-width: 1300px;
}

.container._4rem, .container.partners {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
}

.flex-horizontal {
  z-index: 2;
  justify-content: center;
  display: flex;
  position: relative;
}

.flex-horizontal.reverse {
  background-color: var(--palette1);
  flex-direction: row-reverse;
  height: 410px;
}

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

.half_txt {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 320px;
  max-width: 40%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.square_card {
  flex: 1;
  text-decoration: none;
  position: relative;
}

.square_mask {
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: auto;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.square_layer {
  z-index: 2;
  background-color: #0000;
  background-image: linear-gradient(180deg, transparent, var(--hover-dark));
  width: 100%;
  height: 100%;
  color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 48px 48px 1rem;
  line-height: 1;
  transition: background-color .6s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: relative;
}

.square_layer:hover {
  background-color: #00000080;
}

.arrow {
  border: 1px solid var(--white);
  background-image: url('../images/button_arrow02.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 52%;
  border-radius: 100%;
  flex: none;
  width: 36px;
  height: 36px;
}

.arrow.is-prev {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.arrow.is-prev.swiper-button-disabled {
  border-color: var(--palette2);
  cursor: pointer;
}

.arrow.is-next {
  border-color: var(--palette2);
}

.image-cover {
  aspect-ratio: auto;
  object-fit: cover;
  flex: none;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.image-cover.is-squared {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.image-cover._100 {
  aspect-ratio: auto;
  object-fit: cover;
  width: auto;
  overflow: clip;
}

.image-cover._169 {
  aspect-ratio: 16 / 9;
}

.image-cover.free {
  aspect-ratio: auto;
  object-fit: cover;
  width: 100%;
}

.image-cover.hidden {
  display: none;
}

.button_tertiary {
  color: var(--grey);
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: .9rem;
  line-height: 1;
  transition: opacity .3s cubic-bezier(.25, .46, .45, .94);
}

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

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

.form_wrap {
  text-align: left;
  flex-direction: column;
  align-items: center;
  width: 700px;
  max-width: 50vw;
  margin-top: auto;
  margin-bottom: auto;
  font-family: arboria, sans-serif;
  display: flex;
}

.contact_item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  font-style: normal;
  display: flex;
}

.contact_link {
  color: var(--black);
  font-family: arboria, sans-serif;
  text-decoration: none;
  transition: all .25s cubic-bezier(.455, .03, .515, .955);
}

.contact_link:hover {
  color: var(--grey);
  text-decoration: underline;
}

.footer_social_wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-transform: uppercase;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-size: .75rem;
  line-height: 1;
  display: flex;
}

.footer_text {
  max-width: 450px;
  margin-bottom: 8px;
  font-family: arboria, sans-serif;
}

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

.header_text {
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  padding-left: 8px;
  font-family: arboria, sans-serif;
  font-size: 1.4vw;
  font-weight: 300;
}

.button_primary {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-weight: 700;
  line-height: 1;
}

.button_primary.submit {
  background-color: var(--palette3);
  color: var(--white);
  margin-top: 16px;
  padding: 12px 40px;
  font-family: arboria, sans-serif;
  transition: background-color .325s;
}

.button_primary.submit:hover {
  background-color: var(--cta);
}

.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: #8764b800;
}

.form_component {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

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

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

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

.header_img {
  z-index: 1;
  object-fit: fill;
  background-image: url('../images/AC1674_VP04_Exterior_Dettaglio_Rev00.webp');
  background-position: 50%;
  background-size: cover;
  width: auto;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: clip;
}

.header_img.appartamenti {
  background-image: url('../images/AC1674_VP05_Interior_Living_rev01.webp');
}

.header_img.contesto {
  background-image: url('../images/IMG_6574.webp');
}

.header_img.smart {
  background-image: url('../images/AdobeStock_1035415486.webp');
}

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

.header_container {
  z-index: 3;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.header_container.home {
  justify-content: center;
  align-items: center;
}

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

.flags_wrap:active, .flags_wrap:focus {
  color: var(--light);
}

.fixed_flags {
  z-index: 1;
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 50vh;
  display: flex;
  position: fixed;
  top: -60px;
  right: 0;
}

.header_hover {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-image: radial-gradient(circle farthest-side at 90% -6%, #fff0, #00000082);
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom: 60px;
  padding-left: 96px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.video_component {
  height: 600px;
  max-height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
}

.flag_line {
  background-color: #ffffff80;
  flex: none;
  width: 1px;
  height: 60%;
}

.flag_component {
  background-color: var(--white);
  color: var(--white);
  cursor: pointer;
  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;
}

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

.flag_component.promo {
  background-color: var(--cta);
  display: flex;
}

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

.flag_component._2:hover {
  background-color: var(--palette5);
}

.flag_component._1 {
  display: flex;
}

.flag_component._1:hover {
  background-color: var(--cta);
}

.flag_icon_wrap {
  z-index: 2;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.flag_txt_wrap {
  z-index: 1;
  flex-direction: row;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  width: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.flag_txt {
  width: 134px;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  flex: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 13px;
}

.nav_hamburger {
  z-index: 120;
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  cursor: pointer;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 3.1rem;
  display: flex;
  position: relative;
}

.contact_column {
  grid-column-gap: 7vw;
  grid-row-gap: 7vw;
  justify-content: space-between;
  margin-top: auto;
  display: flex;
}

.footer_component {
  background-color: var(--black);
  color: var(--dark-grey);
}

.square_wrap {
  grid-column-gap: 32px;
  grid-row-gap: 24px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 534px;
  font-family: arboria, sans-serif;
  font-weight: 700;
  display: grid;
}

.button_component {
  grid-column-gap: 16px;
  color: var(--palette2);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  margin-top: 32px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

.button_component:hover {
  color: var(--palette2);
}

.button_component.secondary {
  grid-column-gap: 16px;
  letter-spacing: 1px;
  font-family: arboria, sans-serif;
  font-size: 1.1rem;
  display: none;
}

.button_component.secondary:hover {
  color: var(--cta);
}

.button_component.secondary.negative {
  display: none;
}

.button_component.secondary.negative:hover {
  color: #fff;
}

.popup-area_wrap {
  z-index: 50;
  background-image: linear-gradient(to bottom, var(--hover-dark), var(--hover-dark));
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px;
  display: none;
  position: fixed;
  inset: 0;
  overflow: auto;
}

.popup-area_container {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  position: relative;
}

.popup-area_box {
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  padding: 40px;
  display: flex;
  position: relative;
}

.popup-area_box.iscriviti {
  max-width: 600px;
  margin-left: 60px;
}

.popup-area_icon-box {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.popup-area_line {
  background-color: var(--cta);
  flex: none;
  width: 80%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.popup-area_title {
  font-size: 2em;
  line-height: 1.2;
}

.area_row {
  text-align: left;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
}

.area_icon-row {
  width: 60px;
  height: 60px;
  margin-right: 30px;
}

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

.background_hover {
  z-index: 1;
  background-image: linear-gradient(86deg, var(--black), #8e9c7400 60%, #fff0);
  position: absolute;
  inset: 0;
}

.background_hover.show {
  background-color: #000000c4;
}

.background_hover._2 {
  background-image: none;
}

.background_hover.map {
  opacity: .63;
  object-fit: cover;
  background-image: none;
}

.background_img {
  z-index: 0;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.background_img.no-stretch {
  align-items: center;
}

.container_img {
  font-weight: 400;
  display: flex;
  overflow: hidden;
}

.container_img.card-small-brand {
  aspect-ratio: 1;
  object-fit: fill;
  flex: none;
  height: auto;
  min-height: auto;
  max-height: none;
  overflow: hidden;
}

.container_img.gallery {
  align-self: flex-end;
  width: 100%;
  height: 100%;
}

.container_img.square {
  width: 40vw;
  height: 50vh;
}

.square_button {
  z-index: 10;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

.square_button.flex_vertical {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 40%;
}

.form_title {
  color: var(--palette5);
  font-family: fromage, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.checkbox_wrap {
  align-items: flex-start;
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
}

.moodboard_container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1.25fr;
  grid-auto-columns: 1fr;
  height: 600px;
  display: grid;
}

.txt_wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.txt_wrap.bg-white {
  background-color: var(--white);
  width: 70%;
  max-width: 900px;
  margin-top: -100px;
  padding: 48px 60px;
  box-shadow: 2px 2px 44px #00000040;
}

.txt_wrap.bg-white.square {
  z-index: 20;
  width: 30%;
  margin-top: 173px;
  margin-right: -95px;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  box-shadow: 2px 2px 20px #00000017;
}

.txt_wrap.bg-white.descriprion-brand-card {
  background-color: var(--white);
  width: 100%;
  box-shadow: none;
  flex-direction: row;
  flex: 1;
  margin-top: 0;
  padding: 4rem 24px;
}

.txt_wrap.small {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: left;
  flex-direction: column;
  align-self: flex-start;
  align-items: flex-start;
  max-width: 700px;
  margin-bottom: 4rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.txt_wrap.small.no-padding-bottom {
  margin-bottom: 0;
}

.txt_wrap.small._4rem {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.txt_wrap.intro {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: auto;
}

.txt_wrap.cit {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: left;
  flex-direction: column;
  align-self: flex-start;
  align-items: center;
  max-width: 700px;
  margin: 64px auto 110px;
  display: flex;
}

.txt_wrap._30 {
  align-items: flex-start;
  width: 30%;
  margin-left: 80px;
}

.txt_wrap.bg-red {
  z-index: 80;
  background-color: var(--cta);
  padding: 48px 60px;
  position: relative;
  top: 41px;
  right: -49px;
  box-shadow: 2px 2px 44px #00000040;
}

.txt_wrap.download {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: var(--white);
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 60px;
}

.txt_wrap.is-tech {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.txt-uppercase {
  color: var(--palette1);
  text-transform: uppercase;
  margin-right: 32px;
  font-family: arboria, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.txt-uppercase:hover, .txt-uppercase:active {
  color: var(--cta);
}

.floorplan_img_wrap {
  flex: 1;
  align-self: stretch;
}

.floorplan_component {
  z-index: 1;
  flex-direction: row-reverse;
  align-items: center;
  margin-top: 0;
  display: flex;
  position: relative;
}

.floorplan_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.contact_wrap {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-direction: column;
  display: flex;
}

.contact_txt {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  max-width: 350px;
  display: flex;
}

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

.page_wrap.gallery {
  display: block;
  position: relative;
  overflow: visible;
}

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

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

.nav_logo {
  background-image: url('../images/placeholder-unconventional.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0;
}

.nav_logo.black {
  justify-content: center;
  width: 70px;
  height: 60px;
  display: flex;
  position: static;
  transform: rotate(-90deg);
}

.nav_logo.black.mobile {
  background-image: url('../images/Monogramma-bianco.svg');
  background-position: 50%;
  background-size: 50px;
  justify-content: center;
  align-items: center;
  transform: none;
}

.nav_logo.black.mobile.w--current {
  background-image: url('../images/Monogramma-bianco.svg');
  background-size: 49px;
  transform: none;
}

.contact_title {
  color: var(--palette3);
  text-transform: uppercase;
  font-family: arboria, sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
}

.button_icon {
  border: 1px solid var(--palette2);
  border-radius: 100%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  overflow: hidden;
}

.line {
  background-color: var(--cta);
  flex: none;
  width: 32px;
  height: 3px;
  display: none;
}

.line.padding-top-bottom {
  margin-top: 5%;
  margin-bottom: 10%;
}

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

.line.margin-bottom {
  margin-bottom: 24px;
  display: none;
}

.line.align-left {
  align-self: flex-start;
  display: none;
}

.line._2 {
  display: none;
}

.section_tag_wrap {
  flex-flow: row;
  flex: none;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100px;
  margin-right: 48px;
  font-family: arboria, sans-serif;
  display: flex;
}

.section_tag {
  color: var(--palette5);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: arboria, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  top: 0;
  transform: rotate(-90deg);
}

.section_tag.gallery {
  max-height: 30px;
  color: var(--black);
  flex: 1;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: static;
  transform: none;
}

.txt-cta {
  color: var(--palette3);
}

.counter_txt {
  font-family: fromage, sans-serif;
  font-size: 3em;
  line-height: 1;
}

.align-right {
  align-self: flex-end;
}

.heading-medium {
  color: var(--palette5);
  text-transform: none;
  margin-bottom: auto;
  font-family: fromage, sans-serif;
  font-size: 3em;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}

.heading-medium._60 {
  max-width: 60%;
  font-family: fromage, sans-serif;
  font-weight: 400;
}

.heading-medium.quote {
  text-align: center;
}

.heading-medium.margin-auto {
  margin-bottom: auto;
}

.promo_txt {
  color: var(--palette3);
  text-transform: none;
  font-family: fromage, sans-serif;
  font-size: 2.6rem;
}

.promo_txt.white {
  color: var(--palette2);
  font-family: fromage, sans-serif;
  font-size: 3rem;
  line-height: 1.1em;
}

.promo-underline {
  border-bottom: 2px solid var(--cta);
}

.promo_label {
  background-color: var(--palette3);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 20px 40px;
  font-family: arboria, sans-serif;
  position: absolute;
  top: 0;
  left: 0;
}

.counter_wrap {
  z-index: 3;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  width: 100%;
  max-width: 1300px;
  color: var(--white);
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.form_intro {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  align-self: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.footer_row {
  z-index: 3;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 100px;
  display: grid;
  position: relative;
}

.footer_row.dark {
  background-color: #121212;
  padding-top: 40px;
  padding-bottom: 40px;
}

.social_link {
  width: 32px;
  height: 32px;
  color: var(--light);
  justify-content: center;
  align-items: center;
  display: flex;
}

.social_link:hover {
  filter: brightness() grayscale(0%);
}

.footer_link_wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-transform: uppercase;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: .75rem;
  line-height: 1;
  display: flex;
}

.header_label {
  z-index: 10;
  background-color: var(--white);
  color: var(--black);
  text-transform: uppercase;
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  margin-left: 3%;
  padding: 20px 60px;
  font-weight: 700;
  display: flex;
  position: fixed;
  inset: 0% 0 auto 140px;
}

.heading-h4 {
  color: var(--grey);
  font-family: arboria, sans-serif;
  font-size: .9rem;
  font-weight: 400;
}

.text-wrap_ful {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.text-wrap_ful.left_margin {
  margin-left: 70px;
}

.text-wrap_ful._4rem {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.text-wrap_ful._4rem._3remtop {
  padding-top: 3rem;
}

.text-wrap_ful._3rem {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.text-wrap_ful.partners {
  padding-left: 70px;
}

.square_container {
  z-index: 1;
  object-fit: cover;
  width: 35vw;
  height: 35vw;
  position: relative;
}

.link-overlay-img {
  color: var(--palette1);
  letter-spacing: 1px;
  text-transform: none;
  font-size: 16px;
  font-weight: 500;
}

.brand-card_container {
  grid-column-gap: 32px;
  flex: 1;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.card-small_item {
  background-color: var(--white);
  flex: 1;
}

.card-small_item.open-popup {
  cursor: pointer;
  flex-direction: column;
  display: flex;
}

.container_img-brand {
  grid-column-gap: .5rem;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  height: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
  overflow: hidden;
}

.xs_paragraph {
  letter-spacing: .5px;
  margin-top: 24px;
  margin-bottom: 48px;
  font-size: .85em;
  font-weight: 400;
  line-height: 20px;
}

.container-moodboard_image {
  justify-content: center;
  align-self: stretch;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.container-moodboard_image.fill {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  width: 100%;
  display: block;
}

.heading {
  color: var(--white);
  font-family: fromage, sans-serif;
  font-size: 5vw;
  font-weight: 400;
  line-height: 1.1em;
}

.heading._70 {
  max-width: 80%;
  margin-left: 3%;
  font-size: 3rem;
}

.content_card {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  text-decoration: none;
  display: flex;
}

.image_brand {
  object-fit: contain;
  object-position: 0% 50%;
  height: 100%;
  overflow: hidden;
}

.txt-underline {
  color: var(--palette1);
  font-family: arboria, sans-serif;
  font-size: 2rem;
  line-height: 1.1em;
  text-decoration: none;
}

.subheading {
  color: var(--palette3);
  letter-spacing: 1px;
  margin-bottom: 32px;
  font-family: arboria, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 17px;
}

.subheading.green {
  color: var(--palette5);
}

.moodboard_location {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1.25fr 1.25fr;
  grid-auto-columns: 1fr;
  min-height: 800px;
  max-height: 800px;
  display: grid;
}

.background_map {
  z-index: 0;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.moodboard_showroom {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  max-height: 600px;
  display: grid;
}

.menu {
  z-index: 29;
  background-image: url('../images/Frame_1Frame.webp');
  background-position: 0 0;
  background-size: auto;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 15%;
  display: none;
  position: fixed;
  inset: 0%;
}

.navlinks-wrapper {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.nav-item.heading-medium {
  color: var(--palette1);
  margin-bottom: 0;
  font-family: arboria, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color .2s;
  display: inline-block;
}

.nav-item.heading-medium:hover {
  border-bottom: 1px solid var(--light);
  color: var(--palette1);
}

.nav-item.heading-medium.w--current {
  border-bottom: 1px solid var(--palette2);
  color: var(--palette2);
  font-weight: 400;
  text-decoration: none;
}

.txt-men-_container {
  grid-column-gap: 0px;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 32px;
  display: flex;
}

.icon_flag {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon_flag:hover {
  color: var(--light);
}

.icon_flag:active {
  flex: 1;
}

.icon_flag_white {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--light);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon_flag_white:hover {
  color: var(--light);
}

.icon_flag_white:active {
  flex: 1;
}

.breadcrumb {
  grid-column-gap: 0px;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 32px;
  margin-bottom: 20px;
  text-decoration: none;
  display: flex;
}

.breadcrumb:hover {
  color: var(--cta);
  font-weight: 400;
}

.breadcrumb.w--current {
  text-decoration: none;
}

.breadcrumb_txt {
  color: var(--palette1);
  text-transform: uppercase;
  margin-right: 32px;
  font-family: arboria, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.breadcrumb_txt:active {
  color: var(--cta);
  text-decoration: none;
}

.breadcrumb_txt.w--current {
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.scroll_txt {
  color: var(--white);
  letter-spacing: 2px;
  text-transform: none;
  white-space: nowrap;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  display: none;
  transform: rotate(-90deg);
}

.header_scroll {
  grid-row-gap: 45px;
  flex-direction: column;
  flex: none;
  justify-content: flex-end;
  align-self: stretch;
  align-items: center;
  width: 70px;
  text-decoration: none;
  display: flex;
}

.lottie-animation {
  filter: invert();
  width: 3.4rem;
}

.pre-heading {
  color: var(--palette5);
  margin-bottom: 8px;
  font-family: arboria, sans-serif;
}

.background-video {
  height: 100%;
  display: none;
}

.arrow-icon {
  width: 50%;
}

.background-video-play {
  height: 100%;
  min-height: 599px;
  display: flex;
}

.dark {
  background-color: #242424;
  border-top-width: 0;
  border-top-color: #272626;
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-color: #424242;
  display: none;
}

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

.footer-txt {
  color: var(--grey);
  cursor: pointer;
  padding-top: 0;
  line-height: 1.2;
  text-decoration: none;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
}

.footer-txt.w--current {
  border-bottom-color: var(--black);
  color: var(--black);
}

.footer-txt.w--current:hover {
  transform: none;
}

.lottie-animation-2 {
  z-index: 200;
  filter: invert() brightness(200%);
  position: relative;
}

.floorplan_plan {
  border: 20px solid var(--white);
  background-color: var(--white);
  background-image: url('../images/placeholder-unconventional.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 1;
  align-self: stretch;
  height: 447px;
  position: relative;
}

.floorplan_cone-2 {
  background-color: #c5c5c5;
  background-image: url('../images/icon_plus-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 41%;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  padding: 0;
  position: absolute;
}

.floorplan_cone-2.w--current {
  background-color: #222;
}

.floorplan_cone-2._02 {
  display: none;
  top: 19%;
  left: 56%;
}

.floorplan_cone-2._05 {
  display: none;
  top: 59%;
  left: 62%;
}

.floorplan_cone-2._03 {
  top: 56%;
  left: 37%;
}

.floorplan_cone-2._04 {
  display: none;
  top: 16%;
  left: 39%;
}

.container_gallery {
  z-index: 3;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  font-family: Lato, sans-serif;
  font-weight: 400;
  display: grid;
  position: relative;
}

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

.view_buttons {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: sticky;
  top: 150px;
}

.view_button {
  width: 48px;
  height: 32px;
  color: var(--dark-grey);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}

.view_button:hover {
  color: var(--grey);
}

.view_button:active {
  color: var(--black);
}

.tab_nav {
  z-index: 50;
  grid-column-gap: 32px;
  text-align: center;
  background-color: #f5f5f5;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 60px;
  display: flex;
  position: sticky;
  top: 51px;
}

.link_tab {
  text-transform: uppercase;
  background-color: #0000;
  border-bottom: 1px solid #0000;
  justify-content: center;
  align-items: center;
  width: 70px;
  padding: 0 32px 4px;
  font-size: 12px;
  display: flex;
}

.link_tab.w--current {
  border-bottom: 1px solid var(--palette3);
  background-color: #0000;
  font-weight: 700;
}

.gallery_tab {
  width: 100%;
}

.tab_content {
  width: 100%;
  margin-top: 32px;
}

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

.section_40 {
  width: 40%;
}

.section_60 {
  width: 60%;
}

.section_tag_mask {
  flex: 1;
  align-self: stretch;
  overflow: hidden;
}

.body100vh {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.button-detail {
  color: var(--palette3);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 16px;
  margin-bottom: 16px;
  font-family: arboria, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.lightbox_txt {
  grid-row-gap: 40px;
  background-color: #f4f4f4;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  display: flex;
}

.lightbox_grid_title {
  text-align: left;
  margin-right: auto;
}

.lightbox_logo {
  background-image: url('../images/placeholder-unconventional.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 140px;
  height: 60px;
}

.lightbox_img {
  flex: none;
  width: 100%;
  height: 100%;
}

.lightbox_grid_line {
  background-color: #c5c5c5;
  height: 1px;
}

.lightbox_grid {
  grid-column-gap: 32px;
  grid-row-gap: 16px;
  text-align: center;
  grid-template-columns: 1fr min-content min-content;
  place-items: center;
  line-height: 1;
}

.lightbox_apartment {
  grid-row-gap: 6px;
  text-align: center;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.lightbox_column {
  text-align: left;
  align-self: stretch;
}

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

.apartment_txt {
  text-transform: capitalize;
  font-size: 2.1em;
  font-style: italic;
  line-height: 1;
}

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

.lightbox_container {
  z-index: 1;
  background-color: #fff;
  flex: none;
  width: 100%;
  max-width: 1500px;
  min-height: 500px;
  max-height: 80vh;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: relative;
}

.lightbox_list {
  grid-column-gap: 20px;
  justify-content: space-between;
  align-self: stretch;
  display: flex;
}

.lightbox_img_wrap {
  flex: 1;
  align-self: stretch;
  padding: 40px;
  position: relative;
}

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

.lightbox_grid_total {
  text-align: left;
  text-transform: uppercase;
  margin-right: auto;
  font-size: .9em;
  font-weight: 700;
}

.display-none {
  display: none;
}

.download_lottie {
  filter: invert();
  width: 52px;
  height: 52px;
  margin-top: -8px;
  margin-bottom: -8px;
}

.card-small_mask {
  object-fit: contain;
  flex: none;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  height: 13vw;
  min-height: 170px;
  max-height: 300px;
  display: flex;
  overflow: hidden;
}

.card-small_txt_wrap {
  background-color: var(--white);
  width: 100%;
  max-width: 900px;
  box-shadow: none;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  margin-top: 0;
  padding: 24px;
  display: flex;
}

.tab_pane {
  width: 100%;
}

.gallery_view {
  width: 10%;
}

.view_icon {
  width: 16px;
  height: 16px;
  color: var(--palette5);
}

.view_icon.double {
  width: 32px;
  height: 32px;
}

.dropdown_list {
  font-weight: 400;
}

.dropdown_list.w--open {
  background-color: #fff;
  border-bottom: 1px solid #8a8a8a66;
  border-left: 1px solid #8a8a8a66;
  border-right: 1px solid #8a8a8a66;
  margin-top: -1px;
}

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

.form_message {
  opacity: 0;
  background-color: #0000;
  padding: 0;
}

.policy-flag {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.policyflagscontainer {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.form_container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.form_component-2 {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.form_label {
  margin-bottom: 0;
  font-family: arboria, sans-serif;
}

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

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

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

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

.button-2.is-submit {
  align-self: flex-start;
}

.form_field-2 {
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.form_field-2.text-capitalize-lowercase::placeholder, .form_field-2.text-capitalize-everyword::placeholder {
  text-transform: none;
}

.form_field-2.is-message {
  min-height: 100px;
}

.heading-2 {
  font-family: fromage, sans-serif;
}

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

.text-block-2 {
  letter-spacing: 1px;
  font-family: arboria, sans-serif;
  font-size: 1.1em;
}

.text-block-3, .text-block-4 {
  font-family: arboria, sans-serif;
}

.paragraph {
  color: var(--black);
  font-family: arboria, sans-serif;
  font-weight: 300;
}

.paragraph.is-negative {
  max-width: 700px;
  color: var(--palette1);
  text-transform: none;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.3;
}

.paragraph.interni {
  width: 760px;
  min-width: auto;
  max-width: none;
  margin-bottom: 0;
  font-weight: 300;
}

.paragraph.is-center {
  text-align: center;
  width: 250px;
  min-width: 100%;
}

.paragraph.is-center.nolimits {
  width: auto;
}

.paragraph._60 {
  max-width: 60%;
}

.text-block-5, .paragraph-2 {
  font-family: arboria, sans-serif;
}

.text-block-6 {
  color: var(--palette3);
  font-family: arboria, sans-serif;
  font-weight: 700;
}

.text-block-6.form {
  text-align: center;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  display: block;
}

.heading-3 {
  font-family: fromage, sans-serif;
}

.text-block-7 {
  font-family: arboria, sans-serif;
}

.page-title {
  color: var(--palette5);
  font-family: arboria, sans-serif;
}

.page-title.sub {
  color: var(--palette3);
  font-weight: 500;
}

.page-title.sub.capitalized {
  text-transform: uppercase;
}

.image {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.text-block-8, .text-block-9 {
  white-space: nowrap;
}

.footer-01_component {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: var(--palette5);
  background-image: url('../images/Clip-path-frame.svg');
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 80px 50px;
  display: flex;
  position: relative;
}

.footer-01_partners {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  display: flex;
}

.footer-01_partner {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #f6f1ef;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 26px;
  display: flex;
}

.footer-01_partner_logo {
  width: 190px;
  text-decoration: none;
}

.footer-01_partner_text {
  color: var(--light);
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: arboria, sans-serif;
}

.footer_link-como-house {
  filter: brightness(200%);
  color: var(--grey);
  text-transform: uppercase;
  cursor: pointer;
  font-family: arboria, sans-serif;
  text-decoration: none;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
}

.footer_link-como-house:hover {
  color: #c1b5a2;
}

.footer_link-como-house.w--current {
  border-bottom-color: #fff;
}

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

.footer_container-2 {
  grid-row-gap: 1rem;
  flex-direction: column;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
}

.footer_row-2 {
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  color: var(--white);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer_text-2 {
  color: #eceae4;
  text-align: center;
  font-size: .8em;
}

.footer_text-2.big {
  letter-spacing: .5px;
  font-size: 14px;
}

.footer_link-2 {
  color: var(--palette2);
  cursor: pointer;
  transition: color .35s;
}

.footer_link-2:hover {
  color: #c1b5a2;
}

.text-block-10 {
  font-family: arboria, sans-serif;
}

.button-block-36 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #f0f0f0;
  background-color: #f0f0f000;
  flex-direction: row;
  align-items: center;
  font-family: arboria, sans-serif;
  font-weight: 400;
  text-decoration: none;
  display: none;
  position: relative;
  overflow: hidden;
}

.button-text-wrap-36 {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: .25rem .75rem;
  display: flex;
  position: relative;
}

.button-text-36 {
  z-index: 1;
  letter-spacing: .5px;
  justify-content: flex-start;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  position: relative;
}

.button-icon-wrap-36 {
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.button-text-36-icon {
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
}

.button-block-09 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  color: #f0f0f0;
  text-align: center;
  background-color: #9b9b9b1c;
  border: 1px solid #f0f0f0;
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  height: 3rem;
  padding: .75rem 1.5rem;
  text-decoration: none;
  display: none;
  position: relative;
  overflow: hidden;
}

.button-text-09 {
  z-index: 1;
  color: #fff;
  justify-content: flex-start;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  position: relative;
}

.button-bg-wrap-09 {
  background-color: #fff;
  border-radius: 100vw;
  width: 0;
  position: absolute;
  inset: 0%;
}

.button-block-31 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #f0f0f0;
  background-color: #f0f0f000;
  justify-content: flex-start;
  align-items: center;
  padding-right: 1rem;
  font-family: arboria, sans-serif;
  text-decoration: none;
  display: none;
  position: relative;
  overflow: hidden;
}

.button-icon-wrap-31 {
  z-index: 1;
  background-color: var(--palette3);
  color: #000;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-text-31-icon {
  filter: invert();
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  transform: rotate(0);
}

.button-text-wrap-31 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-direction: column;
  justify-content: space-between;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.button-text-31 {
  z-index: 1;
  justify-content: flex-start;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  position: relative;
}

.line-31 {
  background-color: #f0f0f0;
  width: 100%;
  height: 1px;
}

.button-block-02 {
  color: #1b1b1b;
  text-align: center;
  text-transform: uppercase;
  background-color: #f0f0f000;
  border: 1px solid #f0f0f096;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 12rem;
  padding: .625rem 2rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-text-02 {
  color: #f0f0f0;
  letter-spacing: 2px;
  justify-content: flex-start;
  display: flex;
}

.button-text-02.is-absolute {
  letter-spacing: 2px;
  white-space: nowrap;
  position: absolute;
}

.button-block-03 {
  border: 1px none var(--palette2);
  background-color: var(--palette2);
  width: auto;
  min-width: 150px;
  color: var(--white);
  letter-spacing: 2px;
  border-radius: 0;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  padding: .75rem 2.5rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-text-03 {
  z-index: 1;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: flex-start;
  font-family: arboria, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
  position: relative;
}

.button-text-03.is-text-absolute {
  position: absolute;
  transform: translate(0, 200%);
}

.button-block-41 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--light);
  color: var(--cta);
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: box-shadow .4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-block-41:hover {
  box-shadow: 0 6px 20px #00000080;
}

.button-text-41 {
  z-index: 1;
  justify-content: flex-start;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  position: relative;
}

.button-text-41-icon {
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  transform: rotate(0);
}

.div-block {
  background-color: var(--palette3);
  border-radius: 4px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.image-2 {
  min-width: 100vw;
  display: none;
}

.section_reveal-02 {
  background-color: #ededed;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: auto;
  max-width: none;
  min-height: min(100vh, 1000px);
  display: flex;
  position: relative;
  overflow: hidden;
}

.padding-global {
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
  padding-left: 70px;
  padding-right: 70px;
}

.container-large {
  flex-flow: column;
  width: 100%;
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.padding-section-large {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.reveal-02_component {
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.reveal-02_content {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 100%;
  display: inline-flex;
}

.img_block-r02 {
  object-fit: cover;
  flex: 1;
  height: 70vh;
  position: relative;
  overflow: clip;
}

.img_block-r02._01 {
  object-fit: contain;
}

.img_block-r02._02 {
  display: block;
  top: 19%;
  left: auto;
}

.img_block-r02._03 {
  top: 56%;
  left: auto;
}

.img_r02 {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background-image: url('../images/19_MG_0294-1.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.img_r02.b {
  background-image: url('../images/08_MG_5851-1.webp');
}

.img_r02.c {
  background-image: url('../images/12_MG_5924-1.webp');
  background-size: cover;
}

.wipe {
  z-index: 1;
  background-color: #ededed;
  position: absolute;
  inset: auto 0% 0%;
  overflow: clip;
}

.section_reveal-01 {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 90vw;
  min-height: min(100vh, 1000px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.reveal-01_component {
  width: 100%;
  height: 100%;
}

.reveal-01_content {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.img_block-r01 {
  object-fit: cover;
  width: 50%;
  height: 36rem;
  position: relative;
  overflow: clip;
}

.img_r01 {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  width: 50vw;
  max-width: 100%;
  height: 100%;
}

.img_r01.a {
  background-image: url('../images/AC1674_VP04_Interior_Bedroom_rev02.webp');
  background-position: 50%;
  background-size: cover;
}

.img_r01.b {
  background-image: url('../images/AC1674_VP01_Interior_Living_rev02.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-2 {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.image-3 {
  margin-bottom: 4rem;
  display: none;
}

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

.image-4 {
  width: 200px;
}

.text-block-11 {
  color: var(--grey);
}

.section-wrapper {
  width: 100%;
  padding: 80px;
  transition: all .1s;
  position: relative;
  overflow: hidden;
}

.section-wrapper.interni {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-wrapper.no-padding {
  padding: 0;
  display: none;
}

.text-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  display: flex;
  position: relative;
  overflow: visible;
}

.text-wrapper.align-center {
  justify-content: center;
  align-items: center;
}

.text-wrapper.align-center.text-align-center.zero-padding {
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

.text-wrapper.is-auto {
  padding: 0;
}

.text-wrapper.is-width-50 {
  width: 50%;
}

.subtitle {
  z-index: 3;
  color: var(--palette5);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: arboria, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 20px;
}

.subtitle.text-color-brown {
  color: var(--palette1);
  font-size: 20px;
}

.h2-heading {
  color: var(--palette3);
  text-align: center;
  font-family: fromage, sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.2;
}

.h2-heading._70 {
  width: 70%;
}

.div-block-14 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  letter-spacing: .5px;
  flex-flow: row;
  align-items: center;
  display: flex;
}

.icon-embed-xxsmall-3 {
  width: 1rem;
  height: 1rem;
  color: var(--palette2);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-contesto {
  color: var(--palette2);
  text-transform: uppercase;
  white-space: nowrap;
  flex: 1;
  font-family: arboria, sans-serif;
  font-size: 12px;
}

.tabs-menu-2 {
  grid-column-gap: 33px;
  grid-row-gap: 33px;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.tab-link-tab-2 {
  color: var(--palette2);
  background-color: #ddd0;
  border-bottom: 1px solid #c8dce8;
  font-family: arboria, sans-serif;
  font-weight: 400;
}

.tab-link-tab-2.w--current {
  color: var(--palette3);
  background-color: #fff;
  font-family: arboria, sans-serif;
  font-weight: 700;
}

.text-botton-tab {
  text-transform: capitalize;
}

.text-botton-tab.tab {
  color: #5b7d99;
  text-align: center;
  text-align: center;
  font-family: arboria, sans-serif;
  font-size: 22px;
}

.text-01 {
  color: var(--palette2);
  font-family: fromage, sans-serif;
  font-size: 28px;
  font-weight: 300;
}

.tabs-content-2 {
  overflow: visible;
}

.flex {
  z-index: 1;
  opacity: 1;
  flex-flow: wrap;
  align-items: stretch;
  position: relative;
}

.flex.gap-large {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  flex-flow: row;
}

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

.card_container.is-width-50 {
  width: 50%;
  display: flex;
}

.image_wrapper {
  aspect-ratio: auto;
  object-fit: cover;
  width: 100%;
  position: relative;
  overflow: clip;
}

.image_wrapper.is-absolute {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.image_wrapper.is-detail {
  width: 250px;
}

.image-hover {
  aspect-ratio: auto;
  position: absolute;
  inset: 0%;
}

.text-inizitiva {
  text-align: center;
  border: 1px solid #ddcdc300;
  border-bottom-color: #5b7d99;
  min-width: 150px;
  padding: 10px 10px 14px;
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
}

.text-inizitiva:hover {
  border: 1px solid #5b7d99;
}

.text-inizitiva.is-static {
  color: #fff;
  border-style: none;
  border-color: #000;
}

.text-inizitiva.is-static:hover {
  border-style: none;
}

.pitto_wrap {
  width: 40px;
}

.pitto_wrap.is-absolute {
  letter-spacing: 2px;
  white-space: nowrap;
  position: absolute;
  inset: -20px auto auto -20px;
}

.pittogramma-contain {
  width: 35px;
}

.section_bg {
  opacity: .6;
  background-color: #d8c4b7;
  max-width: 100%;
  height: 80%;
  margin-bottom: 0%;
  position: absolute;
  inset: auto 0 0;
}

.section_bg.picto_dx {
  background-image: url('../images/Clip-path-frame.svg'), linear-gradient(to bottom, var(--palette4), var(--palette4));
  background-position: 100% 0, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto 60%, auto;
  background-attachment: scroll, scroll;
}

.section_bg.picto_sx {
  background-color: var(--palette4);
  background-image: url('../images/Clip-path-frame.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.ancora {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
}

.ancora.pos02 {
  top: -150px;
}

.heading-4 {
  z-index: 10;
  color: var(--palette1);
  font-family: arboria, sans-serif;
  position: relative;
}

.text-span-12 {
  font-family: fromage, sans-serif;
  font-size: 4.3rem;
}

.section-partners {
  flex-direction: column;
  align-items: center;
  padding: 0 8vw;
  display: flex;
  position: relative;
}

.partner-block {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 80px;
  display: grid;
}

.partner-block.partner-block-first {
  margin-top: 100px;
}

.partner-img-wrapper {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
  transform: scale(1.1);
}

.partner-img {
  object-fit: cover;
  object-position: 50% 40%;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(0);
}

.partner-img.bticino {
  object-position: 100% 50%;
}

.text-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  display: flex;
}

.text-wrap.text-partner {
  z-index: 2;
  background-color: var(--verdino);
  max-width: 500px;
  min-height: 380px;
  padding: 40px 25px;
  position: relative;
  box-shadow: 4px 4px 11px -4px #00000052;
}

.section-name {
  z-index: 5;
  height: 30px;
  color: var(--palette2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  font-family: arboria, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.section-name.partners-field {
  color: var(--palette1);
  line-height: 18px;
}

.partner-logo {
  width: 100%;
  max-width: 150px;
  height: 80px;
  min-height: 80px;
  max-height: none;
  margin-bottom: 40px;
}

.partner-logo.florim {
  max-width: 130px;
}

.partner-logo.viva {
  max-width: 120px;
}

.partner-logo.catalano {
  max-width: 190px;
}

.partner-logo.max180 {
  max-width: 180px;
}

.par {
  margin-top: 0;
  font-size: 14px;
  line-height: 22px;
}

.arrow_icon {
  z-index: 1;
  width: 100%;
  height: 100%;
  color: var(--palette2);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.slider_component {
  width: 100%;
  padding-bottom: 5%;
  overflow: hidden;
}

.swiper-wrapper.slider-08_container {
  display: flex;
}

.swiper-slide.slider-08_slide {
  max-width: 400px;
}

.slide_container {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.slide_image_wrapper {
  z-index: 1;
  aspect-ratio: 1;
  flex: 1;
  align-items: center;
  max-height: 400px;
  display: flex;
  position: relative;
  overflow: clip;
}

.image-fit-cover-2 {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 50%;
  flex: none;
  width: 100%;
  height: 100%;
}

.image-fit-cover-2.is-left {
  object-position: 100% 50%;
}

.image-fit-cover-2.top {
  object-position: 50% 100%;
}

.slide_text_wrapper {
  grid-column-gap: 1.1rem;
  grid-row-gap: 1.1rem;
  background-color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 450px;
  padding: 2rem 20px 20px;
  display: flex;
}

.image-5 {
  width: 25rem;
}

.text-inizitiva-2 {
  text-align: center;
  border: 1px solid #ddcdc300;
  border-bottom-color: #5b7d99;
  min-width: 150px;
  padding: 10px 10px 14px;
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
}

.text-inizitiva-2:hover {
  border: 1px solid #5b7d99;
}

.text-inizitiva-2.is-static {
  color: #fff;
  border-style: none;
  border-color: #000;
}

.text-inizitiva-2.is-static:hover {
  border-style: none;
}

.container-2 {
  flex-flow: column;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-2.is-large {
  max-width: 1600px;
}

.container-2.is-gap {
  grid-column-gap: 150px;
  grid-row-gap: 150px;
  max-width: none;
  padding-top: 0;
}

.subtitle-2 {
  z-index: 3;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.subtitle-2.text-color-brown, .paragraph-3 {
  color: #3f5670;
  font-size: 20px;
}

.paragraph-3.interni {
  width: 760px;
  min-width: auto;
  max-width: none;
  margin-bottom: 0;
  font-weight: 300;
}

.flex-2 {
  z-index: 1;
  opacity: 1;
  flex-flow: wrap;
  align-items: stretch;
  position: relative;
}

.flex-2.gap-large {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  flex-flow: row;
}

.text-01-2 {
  font-size: 28px;
  font-weight: 300;
}

.tab-link-tab-2-2 {
  background-color: #ddd0;
  border-bottom: 1px solid #c8dce8;
}

.tab-link-tab-2-2:hover {
  border: 1px solid #c8dce8;
}

.tab-link-tab-2-2.w--current {
  color: #3f5670;
  background-color: #fff;
  border-style: none none solid;
  border-width: 1px;
  border-bottom-color: #5b7d99;
  font-weight: 700;
}

.tab-link-tab-2-2.w--current:hover {
  border: 1px solid #c8dce8;
}

.text-contesto-2 {
  text-transform: uppercase;
  white-space: nowrap;
  flex: 1;
  font-size: 12px;
}

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

.icon-tech {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
}

.div-block-94 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  letter-spacing: .5px;
  flex-flow: row;
  align-items: center;
  display: flex;
}

.h2-heading-2 {
  color: #3f5670;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

.tabs-menu-3 {
  grid-column-gap: 33px;
  grid-row-gap: 33px;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.text-wrapper-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  display: flex;
  position: relative;
  overflow: visible;
}

.text-wrapper-2.is-width-50 {
  width: 50%;
}

.text-wrapper-2.is-auto {
  padding: 0;
}

.text-wrapper-2.align-center {
  justify-content: center;
  align-items: center;
}

.text-wrapper-2.align-center.text-align-center.zero-padding {
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

.section-wrapper-2 {
  width: 100%;
  padding: 80px;
  transition: all .1s;
  position: relative;
  overflow: hidden;
}

.section-wrapper-2.no-padding {
  padding: 0;
  overflow: visible;
}

.text-span-13, .text-span-14, .text-span-15 {
  color: var(--palette3);
}

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

.text-block-12 {
  color: var(--white);
  font-family: arboria, sans-serif;
  font-size: 1rem;
  transform: rotate(-90deg);
}

.text-span-16 {
  white-space: nowrap;
}

.park-service_padding {
  padding-top: 0;
  padding-bottom: 6.25rem;
}

.max-width-large {
  width: 100%;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.home-park_header {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1;
  display: flex;
}

.home-park_header-top {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  width: 100%;
  max-width: 47.375rem;
  display: flex;
}

.home-park_header-top-tag {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.home-park_header-top-tag-left {
  background-color: #edab78;
  width: .625rem;
  height: .625rem;
}

.text-size-medium {
  letter-spacing: 1px;
  font-size: 1.125rem;
}

.heading-style-h2 {
  letter-spacing: -1px;
  font-size: 1.875rem;
  line-height: 1.2;
}

.heading-style-h2.text-weight-normal.text-color-tiber {
  font-size: 2.3rem;
}

.text-size-regular {
  font-size: 1rem;
  line-height: 1.8;
}

.service-inclued_wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 6.25rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 6.25rem;
  display: grid;
}

.service-inclued_item {
  flex-flow: column;
  display: flex;
}

.service-inclued_item.is-animation-2, .service-inclued_item.is-animation-4 {
  padding-top: 140px;
}

.service-inclued_item-image {
  flex: none;
  width: 100%;
  height: 100%;
  max-height: 21.875rem;
}

.service-inclued_item-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  display: flex;
}

.service-inclued_item-content-top {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  color: var(--palette3);
  text-transform: uppercase;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.service-inclued_item-content-top-image {
  width: 100%;
  max-width: 3.75rem;
}

.service-inclued_item-bottom-content {
  max-width: none;
}

.text-span-17, .text-span-18 {
  white-space: nowrap;
}

.custom-video-wrapper {
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.video-vimeo-wrapper {
  width: 100%;
  height: 0%;
  max-height: none;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.vimeo-embed {
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0%;
}

.vimeo-player-overlay {
  pointer-events: none;
  background-color: #00000059;
  display: none;
  position: absolute;
  inset: 0%;
}

.video-unmute-button {
  justify-content: center;
  align-items: center;
  padding-top: 86px;
  display: none;
  position: absolute;
}

.video-unmute-wrapper {
  z-index: 3;
  opacity: 1;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  color: #000;
  cursor: pointer;
  background-color: #ffffff80;
  border-radius: 999em;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 4em;
  height: 4em;
  font-size: 1em;
  transition: all .25s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  box-shadow: 0 10px 4em #00000073;
}

.video-unmute-wrapper:hover {
  transform: scale(1.2);
}

.video-unmute-wrapper:active {
  transform: scale(.95);
}

.unmute-icon-2 {
  width: 1em;
  height: 1em;
  font-size: 1.9em;
}

.video-play-pause-toggle {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  inset: 1.5em 1.5em auto auto;
}

.video-play-pause-wrapper-2 {
  background-color: #ffffff80;
  border-radius: 999em;
  width: 3em;
  height: 3em;
  transition: all .25s;
}

.video-play-pause-wrapper-2:hover {
  transform: scale(1.2);
}

.video-play-pause-wrapper-2:active {
  transform: scale(.95);
}

.video-play-wrapper-4 {
  z-index: 0;
  color: #000;
  border-radius: 999em;
  flex: none;
  justify-content: center;
  align-items: center;
  padding-left: .2em;
  display: flex;
  position: absolute;
  inset: 0%;
}

.play-pause--icon-2 {
  width: 1em;
  height: 1em;
  font-size: 1.7em;
}

.video-pause-wrapper-4 {
  z-index: 1;
  color: #000;
  border-radius: 999em;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-block-13, .lightbox-tipologici {
  text-decoration: none;
}

.html-embed---video {
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0%;
}

.txt-techincal {
  width: 100%;
  max-width: 1200px;
  font-family: arboria, sans-serif;
}

.txt-techincal h1 {
  color: var(--palette5);
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: fromage, sans-serif;
  font-size: 3em;
}

.txt-techincal h2 {
  color: var(--palette3);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: arboria, sans-serif;
  font-size: 1.1em;
  line-height: 1.2;
}

.txt-techincal p {
  margin-bottom: 10px;
  font-weight: 300;
}

.txt-techincal a {
  color: var(--palette3);
}

.txt-techincal ol {
  font-size: 1.15em;
  font-weight: 300;
  list-style-type: disc;
}

.txt-techincal li {
  margin-bottom: 5px;
}

.code-embed {
  width: 100%;
}

.div-block-95 {
  filter: grayscale();
  background-image: url('../images/Frame_1Frame.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.div-block-96 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--palette3);
  font-family: arboria, sans-serif;
  font-size: 1.2em;
  line-height: 1;
  display: flex;
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.tech-link {
  color: var(--palette3);
  text-decoration: none;
}

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

@media screen and (min-width: 1440px) {
  .header_img {
    width: 100%;
  }

  .image-2 {
    width: 100%;
    min-width: 100vw;
    overflow: visible;
  }

  .partner-logo {
    max-height: 50px;
  }

  .video-unmute-button {
    padding-top: 160px;
  }

  .txt-techincal h2 {
    line-height: 1;
  }
}

@media screen and (min-width: 1920px) {
  .image-cover.free {
    width: 100%;
  }

  .header_img {
    justify-content: flex-start;
  }

  .image-2 {
    object-fit: cover;
    width: 100%;
  }

  .text-inizitiva:hover, .text-inizitiva-2:hover {
    border-color: #3f5670;
  }

  .heading-style-h2.text-weight-normal.text-color-tiber {
    font-size: 2.6rem;
  }

  .video-unmute-button {
    padding-top: 260px;
  }
}

@media screen and (max-width: 991px) {
  .form_field {
    line-height: 20px;
  }

  .nav_component {
    flex-direction: row;
    padding-top: 20px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .nav_component.mobile {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .header_component {
    padding-bottom: 64px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .header_component.home {
    border-width: 50px;
    border-color: var(--light);
    padding-bottom: 50px;
  }

  .nav_logo_wrap {
    z-index: 3;
  }

  .nav_logo_wrap.mobile {
    justify-content: space-between;
    align-items: center;
    height: 50%;
  }

  .section {
    padding: 60px 32px;
  }

  .section.no-padding-bottom {
    padding-top: 2rem;
  }

  .section.bg_img {
    min-height: auto;
  }

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

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

  .section.gallery {
    height: 100%;
    padding-top: 20px;
    padding-bottom: 60px;
    padding-left: 8%;
  }

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

  .section._4rem {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .heading-large {
    text-align: left;
  }

  .container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-items: center;
  }

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

  .container.contact {
    flex-direction: column;
    align-items: stretch;
    padding-right: 80px;
  }

  .container.header {
    justify-content: center;
    align-items: center;
    max-width: none;
  }

  .container.gallery {
    padding-bottom: 0;
    padding-left: 0;
  }

  .container.flex-horizontal {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .container.is-large.is-relative {
    max-width: 100%;
  }

  .container.is-slider {
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: stretch;
    max-width: 84vw;
    display: flex;
    overflow: visible;
  }

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

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

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

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

  .half_txt.padding_tablet {
    padding-left: 24px;
    padding-right: 24px;
  }

  .square_card {
    flex: 1;
    width: 40vw;
    min-width: 40%;
    height: 40vw;
  }

  .square_layer {
    padding: 32px;
  }

  .arrow {
    border-color: var(--palette2);
  }

  .arrow.is-prev.swiper-button-disabled, .arrow.is-next.swiper-button-disabled {
    opacity: .54;
  }

  .image-cover {
    min-height: auto;
  }

  .button_wrap {
    align-self: auto;
  }

  .form_wrap {
    width: 100%;
    max-width: 70vw;
  }

  .contact_item {
    flex-direction: column;
  }

  .footer_social_wrap {
    order: 3;
  }

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

  .header_text {
    font-size: 2vw;
  }

  .form_component {
    flex-direction: column;
  }

  .x_wrap {
    background-color: #0000;
    width: 60px;
    height: 60px;
  }

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

  .header_img {
    object-fit: cover;
    display: flex;
  }

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

  .video_component {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .flag_component._2:hover, .flag_component._1:hover {
    background-color: var(--white);
  }

  .nav_hamburger {
    flex-direction: column;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 50px;
    height: 50px;
    display: flex;
    position: relative;
  }

  .contact_column {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 0;
    margin-bottom: 44px;
    display: grid;
  }

  .footer_component {
    padding: 0;
  }

  .square_wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 0;
    display: flex;
  }

  .square_wrap.margin_bottom {
    height: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .popup-area_wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .popup-area_container {
    flex-direction: column;
    position: static;
  }

  .popup-area_box {
    flex: none;
    position: static;
  }

  .popup-area_box.iscriviti {
    margin-top: 60px;
    margin-left: 0;
  }

  .background_hover {
    background-image: linear-gradient(to bottom, #0000004d, #0000004d), linear-gradient(86deg, var(--black), #8e9c7400 60%, #fff0);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
  }

  .container_img {
    flex-direction: column-reverse;
    max-height: 600px;
  }

  .container_img.gallery {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 95%;
  }

  .moodboard_container {
    grid-template-columns: 1fr 1fr 1fr;
    align-self: stretch;
    min-height: 200px;
    max-height: 250px;
  }

  .txt_wrap.bg-white.square {
    width: 100%;
    margin-top: 0;
    padding: 32px;
    top: 0;
    left: 0;
  }

  .txt_wrap.bg-white.descriprion-brand-card {
    padding: 3rem 16px;
  }

  .txt_wrap.small {
    max-width: none;
    margin-bottom: 0;
    padding: 24px;
  }

  .txt_wrap.small._4rem {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .txt_wrap.intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .txt_wrap.cit {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .txt_wrap._30 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
    margin-left: 0;
  }

  .floorplan_img_wrap {
    flex: none;
    height: 50vw;
  }

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

  .accordion_img_wrap {
    height: 30vw;
  }

  .nav_logo {
    background-position: 0%;
  }

  .section_tag_wrap {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .section_tag {
    transform: none;
  }

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

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

  .heading-medium._60 {
    max-width: 100%;
  }

  .heading-medium.is-tech {
    font-size: 2rem;
  }

  .promo-underline {
    font-size: 1.7rem;
  }

  .counter_wrap {
    grid-column-gap: 56px;
    grid-row-gap: 20px;
    align-items: center;
  }

  .footer_row {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    align-items: center;
    display: flex;
  }

  .footer_row.dark {
    flex-direction: column;
  }

  .footer_link_wrap {
    order: 3;
  }

  .text-wrap_ful._4rem {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .square_container {
    width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .brand-card_container {
    grid-column-gap: 8px;
    grid-row-gap: 24px;
    flex-flow: column;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    justify-content: center;
    max-height: 100%;
    padding-left: 0;
    padding-right: 0;
    display: grid;
  }

  .container_img-brand {
    max-height: 60vw;
  }

  .heading {
    font-size: 9vw;
  }

  .heading._70 {
    font-size: 2.5rem;
  }

  .txt-underline {
    font-size: 1.9rem;
  }

  .moodboard_location {
    grid-column-gap: 24px;
    grid-template-rows: 1fr 1fr auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 239px;
    align-self: stretch;
  }

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

  .menu {
    align-items: center;
    display: none;
  }

  .nav-item.heading-medium {
    font-size: 1.9rem;
  }

  .pre-heading {
    width: 100%;
  }

  .background-video-play {
    width: 100%;
    min-width: 67vh;
  }

  .lottie-animation-2 {
    width: 2.7rem;
    height: 2.7rem;
  }

  .floorplan_plan {
    flex: none;
    height: 68vh;
    margin-top: 80px;
    margin-right: 0;
  }

  .floorplan_cone-2._02 {
    top: 23%;
  }

  .floorplan_cone-2._02.w--current {
    top: 24%;
  }

  .floorplan_cone-2._04 {
    top: 26%;
    left: 38%;
  }

  .container_gallery {
    grid-column-gap: 0px;
    grid-row-gap: 32px;
    align-items: center;
  }

  .container_gallery.grid {
    grid-row-gap: 13px;
    grid-template-rows: 1fr auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .lightbox_logo {
    display: none;
  }

  .lightbox_wrap {
    grid-column-gap: 40px;
    grid-row-gap: 45px;
    justify-content: space-around;
    align-self: stretch;
    display: flex;
  }

  .lightbox_component {
    background-color: var(--white);
    padding-top: 0;
    padding-bottom: 0;
  }

  .lightbox_container {
    flex-direction: column;
    min-height: auto;
    max-height: none;
    position: static;
  }

  .lightbox_list {
    justify-content: space-around;
  }

  .lightbox_img_wrap {
    flex: none;
    height: 60vw;
    position: static;
  }

  .card-small_mask {
    flex-direction: column-reverse;
    max-height: 600px;
  }

  .card-small_txt_wrap {
    padding: 16px;
  }

  .form_wrapper {
    width: 90%;
    margin-top: 0;
    margin-bottom: auto;
  }

  .form_field-2 {
    line-height: 20px;
  }

  .text-block-2 {
    line-height: 1.2;
  }

  .paragraph.interni {
    width: auto;
  }

  .paragraph.is-center.nolimits {
    text-align: left;
  }

  .paragraph._60 {
    max-width: none;
  }

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

  .footer-01_component {
    flex-direction: column;
    padding: 10vw 0 50px;
    display: flex;
  }

  .footer-01_partners {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: 40px;
    margin-right: 40px;
  }

  .footer-01_partner {
    margin-left: 40px;
    margin-right: 40px;
  }

  .footer_container-2 {
    grid-row-gap: 5px;
    margin-left: 40px;
    margin-right: 40px;
    padding-left: 0;
    padding-right: 0;
  }

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

  .image-2 {
    object-fit: cover;
  }

  .padding-global.smart {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .reveal-02_content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .img_block-r02 {
    width: 50%;
    height: 45vh;
  }

  .img_block-r02._02 {
    top: 23%;
  }

  .img_block-r02._02.w--current {
    top: 24%;
  }

  .img_block-r01 {
    width: 50%;
    height: auto;
  }

  .div-block-2 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

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

  .section-wrapper.interni {
    padding: 1rem 0 40px;
  }

  .text-wrapper {
    text-align: center;
    flex: none;
    align-self: flex-start;
    align-items: center;
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 40px;
  }

  .text-wrapper.align-center.text-align-center.zero-padding {
    max-width: none;
  }

  .text-wrapper.is-auto {
    margin: auto;
  }

  .text-wrapper.is-auto.align-center {
    display: block;
  }

  .text-wrapper.is-width-50 {
    flex-flow: column;
    order: -1;
    width: 100%;
    max-width: none;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .text-wrapper.is-width-50.interni {
    flex-flow: column;
    max-width: 70vw;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .subtitle {
    top: 2%;
    left: 16%;
  }

  .subtitle.text-color-brown {
    text-align: center;
  }

  .h2-heading._70 {
    font-size: 2.1rem;
  }

  .text-contesto {
    text-align: left;
  }

  .text-botton-tab {
    font-size: 24px;
  }

  .flex {
    flex-flow: column;
  }

  .flex.gap-large {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
  }

  .card_container.is-width-50 {
    aspect-ratio: auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
  }

  .image_wrapper.is-detail {
    width: 100px;
    margin-bottom: 20px;
    display: none;
  }

  .image_wrapper.is-absolute {
    aspect-ratio: auto;
  }

  .image_wrapper.is-detail {
    margin-bottom: 20px;
  }

  .div-block-93 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: left;
    flex-flow: column;
    display: flex;
  }

  .section_bg {
    z-index: -1;
    height: auto;
    inset: 0%;
  }

  .section_bg.picto_dx {
    background-color: var(--verdino);
    opacity: 32;
    background-image: url('../images/Clip-path-frame.svg'), linear-gradient(#d8c4b733, #d8c4b733);
    background-position: 50%, 0 0;
    background-repeat: repeat, repeat;
    background-size: auto, auto;
    background-attachment: scroll, scroll;
    width: auto;
  }

  .section_bg.picto_sx {
    background-image: url('../images/Monogramma-positivo.svg');
    background-position: 97% 17%;
    background-repeat: no-repeat;
    background-size: auto 23%;
  }

  .section-partners {
    background-size: 200px 200px;
    padding: 100px 60px;
  }

  .text-wrap {
    max-width: 400px;
  }

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

  .slider_component {
    order: -9999;
    padding-bottom: 5%;
  }

  .slide_image_wrapper {
    flex: none;
  }

  .image-5 {
    width: 15rem;
  }

  .subtitle-2 {
    top: 2%;
    left: 16%;
  }

  .flex-2, .flex-2.gap-large {
    flex-flow: column;
  }

  .text-contesto-2 {
    text-align: left;
  }

  .text-wrapper-2 {
    text-align: center;
    flex: none;
    align-self: flex-start;
    align-items: center;
    width: 100%;
    max-width: none;
    padding: 40px;
  }

  .text-wrapper-2.is-width-50 {
    width: 100%;
    max-width: none;
  }

  .text-wrapper-2.is-auto {
    margin: auto;
  }

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

  .park-service_padding {
    padding-top: 0;
    padding-bottom: 5rem;
  }

  .max-width-large {
    max-width: 100%;
  }

  .home-park_header-top {
    max-width: 100%;
    padding-right: 1.25rem;
  }

  .heading-style-h2 {
    font-size: 1.625rem;
  }

  .service-inclued_wrapper {
    grid-column-gap: 2.8rem;
    grid-row-gap: 2.8rem;
    flex-flow: column;
    margin-top: 4rem;
    display: flex;
  }

  .service-inclued_item {
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .service-inclued_item.is-animation-2, .service-inclued_item.is-animation-4 {
    padding-top: 0;
  }

  .service-inclued_item-image {
    object-fit: cover;
    max-height: 100%;
  }

  .service-inclued_item-content {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 32px;
  }

  .service-inclued_item-bottom-content {
    max-width: 100%;
  }

  .text-span-19, .text-span-20, .text-span-21, .text-span-22, .text-span-23 {
    white-space: nowrap;
  }

  .video-unmute-wrapper:hover {
    transform: none;
  }

  .video-unmute-wrapper:active {
    transform: scale(.9);
  }

  .video-play-pause-wrapper-2:hover {
    transform: none;
  }

  .video-play-pause-wrapper-2:active, .video-play-wrapper-4:active {
    transform: scale(.9);
  }
}

@media screen and (max-width: 767px) {
  p {
    font-size: 1em;
  }

  .form_field {
    margin-bottom: 15px;
  }

  .header_component {
    height: 100vh;
    min-height: 600px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section, .section.no-padding-bottom {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section.no-padding-bottom._4rem_zero-b {
    padding-top: 1rem;
  }

  .section.bg_img {
    height: auto;
    max-height: none;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .heading-xsmall {
    margin-top: 8px;
    margin-bottom: 8px;
  }

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

  .container {
    grid-row-gap: 0px;
    height: 100%;
    min-height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: static;
  }

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

  .container.contact {
    padding-right: 0;
  }

  .container.header {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .container.gallery {
    flex-direction: column;
    display: flex;
  }

  .container.tecnical {
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .container.is-slider, .container.partners {
    display: flex;
  }

  .flex-horizontal.reverse {
    flex-direction: column;
    height: 100%;
  }

  .half_txt.padding_tablet {
    max-width: 70%;
  }

  .square_card {
    width: 100%;
    min-width: 100%;
    height: 60vw;
    max-height: 24vh;
    margin-left: 0;
    margin-right: 0;
  }

  .arrow.is-prev.swiper-button-disabled {
    margin-right: 20px;
  }

  .arrow.is-next {
    margin-left: 20px;
  }

  .image-cover {
    object-fit: cover;
  }

  .image-cover.free {
    height: 100%;
  }

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

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

  .flag_component {
    top: 28px;
  }

  .nav_hamburger {
    height: 40px;
  }

  .footer_component {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .square_wrap {
    grid-row-gap: 16px;
    flex-direction: row;
    align-items: center;
    height: 100%;
    padding: 0;
  }

  .square_wrap.margin_bottom {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .popup-area_box.iscriviti {
    margin-top: 40px;
  }

  .background_hover {
    height: auto;
    inset: 0%;
  }

  .background_img.no-stretch {
    object-fit: cover;
    display: block;
    inset: 0%;
  }

  .container_img.square {
    width: 100%;
  }

  .square_button.flex_vertical {
    justify-content: flex-start;
  }

  .moodboard_container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: 1.5fr 1fr;
    grid-template-columns: 1fr 1fr;
    height: auto;
    max-height: 300px;
  }

  .txt_wrap.bg-white.square {
    width: 100%;
    padding: 24px;
  }

  .txt_wrap.bg-white.descriprion-brand-card {
    padding: 20px;
  }

  .txt_wrap.small {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .txt_wrap.bg-red {
    top: 0;
    right: 0;
  }

  .accordion_img_wrap {
    height: 44vw;
  }

  .lightbox_slide {
    margin-right: 10px;
  }

  .section_tag_wrap {
    height: 8vh;
    margin-right: 0;
  }

  .promo_label {
    top: 37px;
    left: -39px;
    transform: rotate(-90deg);
  }

  .footer_row {
    flex-direction: column;
    padding: 64px;
  }

  .header_label {
    margin-left: -7%;
    padding-left: 40px;
  }

  .square_container {
    height: 51vh;
  }

  .brand-card_container {
    flex-direction: column;
    grid-template-columns: 1fr;
    align-items: center;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

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

  .xs_paragraph {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .container-moodboard_image.fill {
    display: flex;
  }

  .moodboard_location {
    grid-column-gap: 7px;
    grid-row-gap: 6px;
    flex-flow: column;
    grid-template-rows: .5fr .5fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    height: 150vw;
    max-height: none;
    display: grid;
  }

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

  .nav-item.heading-medium {
    font-size: 1.6rem;
  }

  .background-video-play {
    min-width: 100%;
  }

  .container_gallery {
    grid-row-gap: 32px;
    min-height: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .tab_nav {
    padding-left: 20px;
  }

  .section_40, .section_60 {
    width: 100%;
  }

  .button-detail {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .lightbox_grid {
    grid-column-gap: 16px;
  }

  .lightbox_container {
    margin-top: 20px;
  }

  .lightbox_list {
    flex-direction: column;
    justify-content: flex-start;
  }

  .lightbox_img_wrap {
    padding: 20px;
  }

  .card-small_txt_wrap {
    padding: 8px;
  }

  .form_field-2 {
    margin-bottom: 15px;
  }

  .paragraph.interni {
    width: auto;
  }

  .footer-01_component {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer-01_partners {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
  }

  .footer-01_partner {
    margin-bottom: 0;
  }

  .footer-01_partner_text {
    margin-bottom: 10px;
  }

  .padding-global {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .reveal-02_content {
    flex-flow: column;
  }

  .img_block-r02 {
    width: 100%;
  }

  .reveal-01_content {
    grid-column-gap: .6rem;
    grid-row-gap: .6rem;
    flex-flow: row;
  }

  .img_block-r01 {
    width: 100%;
    height: 24rem;
  }

  .section-wrapper.interni {
    padding-top: 60px;
  }

  .text-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-wrapper.is-width-50 {
    flex-flow: column;
  }

  .text-wrapper.is-width-50.interni {
    max-width: none;
  }

  .subtitle {
    font-size: 14px;
  }

  .flex {
    flex-flow: column-reverse;
  }

  .flex.gap-large {
    padding-bottom: 0;
  }

  .card_container.is-width-50 {
    height: 400px;
  }

  .section_bg.picto_sx {
    background-color: var(--verdino);
  }

  .section-partners {
    background-size: 150px 150px;
    padding: 60px 40px;
  }

  .slide_image_wrapper {
    height: 250px;
    max-height: none;
  }

  .subtitle-2 {
    font-size: 14px;
  }

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

  .park-service_padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .heading-style-h2 {
    font-size: 1.325rem;
  }

  .service-inclued_wrapper {
    margin-top: 5rem;
  }

  .service-inclued_item {
    flex-flow: column;
    display: flex;
  }

  .service-inclued_item-content {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .video-vimeo-wrapper {
    display: block;
  }

  .video-unmute-wrapper {
    font-size: .9em;
  }

  .video-play-pause-toggle {
    top: 1em;
    right: 1em;
  }

  .video-play-pause-wrapper-2 {
    font-size: .8em;
  }

  .txt-techincal h1 {
    font-size: 2.5em;
  }

  .txt-techincal ol {
    font-size: 1em;
  }
}

@media screen and (max-width: 479px) {
  body {
    padding-left: 0;
    font-family: arboria, sans-serif;
  }

  h1 {
    font-size: 2.4rem;
  }

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

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

  .nav_component.mobile {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    display: flex;
    inset: 0% 0% auto;
  }

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

  .header_component.home {
    border-width: 35px;
    width: 100%;
    min-width: 100vw;
    position: static;
  }

  .nav_logo_wrap.mobile {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    top: 0;
    left: 24px;
    right: 24px;
  }

  .section {
    height: 100%;
    min-height: 250px;
    padding: 60px 40px;
    overflow: hidden;
  }

  .section.no-padding-bottom {
    padding: 1rem 16px;
  }

  .section.bg_img {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.no-padding-top {
    min-height: auto;
    padding: 1rem 10px 2rem;
  }

  .section.gallery {
    padding-left: 5%;
    padding-right: 0%;
    left: 0;
  }

  .section._2rem {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

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

  .heading-xsmall {
    text-align: left;
    font-size: 12px;
  }

  .heading-xsmall.is-tech {
    text-align: center;
  }

  .heading-large {
    text-align: left;
    font-size: 24px;
  }

  .container {
    min-height: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .container.no-gap {
    height: 100%;
    min-height: 250px;
  }

  .container.header {
    display: flex;
  }

  .container.flex-horizontal {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

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

  .container.is-slider {
    justify-content: center;
    align-items: center;
    max-width: none;
    display: flex;
  }

  .container._4rem {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    display: flex;
  }

  .container.partners {
    overflow: visible;
  }

  .flex-horizontal.reverse {
    flex-direction: column;
    align-items: flex-end;
    height: 100%;
  }

  .half_txt.padding_tablet {
    align-items: flex-start;
    max-width: 90%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .arrow.is-prev.swiper-button-disabled {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    width: 30px;
    height: 30px;
    margin-right: 2px;
    position: relative;
    left: -3px;
  }

  .arrow.is-next {
    width: 30px;
    height: 30px;
    position: relative;
    right: -3px;
  }

  .image-cover {
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .image-cover._100 {
    width: 100%;
  }

  .form_wrap {
    max-width: none;
  }

  .contact_item {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    min-width: auto;
  }

  .footer_social_wrap {
    order: 0;
  }

  .footer_text {
    margin-bottom: 20px;
  }

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

  .button_primary.submit {
    width: 100%;
    margin-top: 20px;
  }

  .header_img {
    width: 100vw;
    max-height: 92vh;
  }

  .header_container {
    font-size: 1.2rem;
  }

  .fixed_flags {
    right: 0;
  }

  .header_hover {
    background-image: linear-gradient(#0000004d, #0000004d), radial-gradient(circle farthest-side at 90% -6%, #fff0, #00000082);
    max-height: 92vh;
    padding-bottom: 40px;
    padding-left: 0;
  }

  .flag_component {
    top: auto;
    bottom: 0;
    left: 0;
  }

  .contact_column {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    display: flex;
  }

  .footer_component {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .square_wrap {
    flex-direction: column;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .square_wrap.margin_bottom {
    flex-direction: row;
  }

  .popup-area_wrap {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .popup-area_box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .popup-area_box.iscriviti {
    margin-top: 20px;
  }

  .popup-area_box.accedi {
    align-self: stretch;
    max-width: none;
  }

  .area_row {
    grid-row-gap: 20px;
    text-align: center;
    flex-direction: column;
  }

  .container_img {
    flex-direction: column-reverse;
    flex: 1;
  }

  .form_title {
    text-align: left;
    font-size: 24px;
  }

  .moodboard_container {
    grid-row-gap: 16px;
    grid-template-rows: 1.5fr auto;
    min-height: auto;
    max-height: none;
  }

  .txt_wrap.bg-white.square {
    width: 100%;
    max-width: none;
    margin-top: auto;
    padding: 16px;
    top: auto;
    left: auto;
  }

  .txt_wrap.bg-white.descriprion-brand-card {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .txt_wrap.small {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding: 1rem 10px;
  }

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

  .txt_wrap.intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .txt_wrap.bg-red {
    padding: 32px;
  }

  .txt_wrap.download {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    padding: 1rem 20px 2rem;
  }

  .txt-uppercase {
    font-size: 11px;
  }

  .floorplan_img_wrap {
    height: 80vw;
    min-height: 250px;
  }

  .nav_logo.black.mobile {
    transform: none;
  }

  .contact_title {
    font-size: 1.8rem;
  }

  .section_tag_wrap {
    align-self: center;
    width: 100%;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
    top: 0;
  }

  .section_tag {
    flex: 0 auto;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 0;
    transform: none;
  }

  .counter_txt {
    font-size: 24px;
  }

  .heading-medium._60 {
    max-width: 100%;
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }

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

  .promo_txt.white {
    font-size: 1.4rem;
  }

  .promo_label {
    padding: 8px 16px;
    top: 28px;
    left: -29px;
  }

  .footer_row.dark {
    padding: 32px;
  }

  .footer_link_wrap {
    flex-direction: column;
    order: 0;
    width: 100%;
  }

  .header_label {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .text-wrap_ful.left_margin {
    margin-left: 0;
  }

  .text-wrap_ful.button {
    margin-top: 2rem;
  }

  .text-wrap_ful.partners {
    margin-bottom: 2rem;
    padding-left: 5svw;
  }

  .square_container {
    width: auto;
    height: auto;
    min-height: 150px;
    max-height: 250px;
  }

  .brand-card_container {
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .card-small_item {
    width: 100%;
  }

  .container-moodboard_image {
    min-height: 100px;
  }

  .heading._70 {
    font-size: 2.1rem;
  }

  .txt-underline {
    font-size: 1.4rem;
  }

  .subheading {
    font-size: 12px;
    line-height: 1.4;
  }

  .moodboard_location {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .nav-item.heading-medium {
    font-size: 2rem;
  }

  .txt-men-_container {
    grid-row-gap: 8px;
    flex-direction: column;
  }

  .header_scroll {
    display: none;
  }

  .pre-heading {
    width: 100%;
  }

  .floorplan_plan {
    height: 44vh;
    margin-top: 0;
  }

  .floorplan_cone-2._03 {
    left: 29%;
  }

  .floorplan_cone-2._04 {
    left: 26%;
  }

  .container_gallery {
    min-height: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .container_gallery.grid {
    position: static;
  }

  .view_buttons {
    flex-flow: column;
  }

  .view_button {
    width: auto;
  }

  .tab_nav {
    grid-column-gap: 15px;
  }

  .gallery_tab {
    position: static;
  }

  .tab_content {
    top: auto;
  }

  .button-detail {
    text-align: left;
    font-size: 12px;
  }

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

  .lightbox_wrap {
    flex-direction: column;
  }

  .lightbox_container {
    margin-top: 40px;
  }

  .lightbox_img_wrap {
    height: 80vw;
  }

  .card-small_mask {
    flex-direction: column-reverse;
    flex: 1;
  }

  .tab_pane {
    top: 10px;
  }

  .gallery_view {
    flex-flow: column;
    display: flex;
  }

  .paragraph._60 {
    font-size: 1.1em;
  }

  .text-block-6.form {
    text-align: center;
    width: 90%;
  }

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

  .footer-01_component {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer_container-2 {
    grid-row-gap: 10px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer_row-2 {
    grid-row-gap: 5px;
    flex-flow: column;
  }

  .button-text-31 {
    font-size: .875rem;
  }

  .button-block-02 {
    max-width: 10.2rem;
  }

  .button-text-02 {
    white-space: nowrap;
    font-size: .9rem;
  }

  .button-text-02.is-absolute {
    font-size: .9rem;
  }

  .button-text-41 {
    font-size: .875rem;
  }

  .section_reveal-02 {
    min-height: auto;
    position: static;
  }

  .padding-global {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-global.flex {
    flex-flow: column;
    display: flex;
  }

  .padding-global.smart {
    margin-bottom: 2rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .padding-section-large {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .reveal-02_component {
    display: none;
  }

  .reveal-02_content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .img_block-r02 {
    width: 100%;
  }

  .img_block-r02._01 {
    display: none;
  }

  .img_block-r02._02 {
    height: auto;
    display: none;
  }

  .img_block-r02._03 {
    display: none;
    left: 29%;
  }

  .section_reveal-01 {
    margin-bottom: 2rem;
  }

  .reveal-01_content {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

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

  .img_r01.a {
    width: 100%;
    height: 100%;
  }

  .img_r01.b {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
  }

  .section-wrapper {
    max-width: 100%;
    padding: 40px 20px;
  }

  .section-wrapper.interni {
    padding: 1rem 0 2rem;
  }

  .text-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .text-wrapper.align-center.text-align-center.zero-padding {
    margin-bottom: 20px;
  }

  .text-wrapper.is-width-50 {
    padding: 60px 10px;
  }

  .text-wrapper.is-width-50.interni {
    max-width: none;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .h2-heading._70 {
    width: auto;
    font-size: 1.6rem;
  }

  .text-span-11 {
    white-space: nowrap;
  }

  .tabs-menu-2 {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    max-width: 95svw;
    margin-left: auto;
    margin-right: auto;
  }

  .tab-link-tab-2, .tab-link-tab-2.w--current {
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-botton-tab {
    font-size: 20px;
  }

  .text-botton-tab.tab {
    font-size: 19px;
  }

  .text-01 {
    font-size: 20px;
  }

  .image_wrapper {
    line-height: 1.4px;
  }

  .image_wrapper.is-detail {
    width: auto;
  }

  .text-inizitiva {
    min-width: auto;
  }

  .div-block-93 {
    justify-content: center;
    align-items: center;
  }

  .section_bg.picto_dx {
    background-image: none;
  }

  .section_bg.picto_sx {
    background-position: 50%;
  }

  .section-partners {
    background-size: 100px 100px;
    padding: 40px 20px;
  }

  .partner-block {
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .partner-block.partner-block-first {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .partner-img-wrapper {
    transform: scale(1);
  }

  .partner-img {
    height: 250px;
    display: block;
    position: static;
  }

  .text-wrap, .text-wrap.text-partner {
    max-width: none;
  }

  .partner-logo {
    margin-bottom: 0;
  }

  .slider_component {
    width: 100%;
    margin-right: 2px;
    padding-bottom: 1rem;
  }

  .slide_container {
    width: 100%;
  }

  .slide_image_wrapper {
    aspect-ratio: auto;
    max-height: 350px;
  }

  .image-fit-cover-2 {
    aspect-ratio: 1;
  }

  .slide_text_wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    min-height: 350px;
    padding-bottom: 2rem;
  }

  .tabs-menu-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .section-wrapper-2 {
    max-width: 100%;
  }

  .text-block-12 {
    display: none;
  }

  .park-service_padding {
    padding-top: 0;
    padding-bottom: 0;
  }

  .home-park_header-top {
    padding-right: 1rem;
  }

  .home-park_header-top-tag {
    grid-column-gap: .625rem;
    grid-row-gap: .625rem;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .heading-style-h2 {
    font-size: 1.375rem;
  }

  .service-inclued_wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 1rem;
  }

  .service-inclued_item {
    flex-flow: column;
    display: flex;
  }

  .service-inclued_item-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .custom-video-wrapper {
    width: 100%;
    display: flex;
    position: relative;
  }

  .video-vimeo-wrapper {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: auto;
    padding-top: 0%;
    display: block;
    overflow: clip;
  }

  .vimeo-embed {
    object-fit: cover;
    max-height: none;
    position: static;
  }

  .video-unmute-button {
    padding-top: 61px;
  }

  .video-unmute-wrapper {
    width: 3em;
    height: 3em;
  }

  .html-embed---video {
    object-fit: cover;
    max-height: none;
    position: static;
  }

  .txt-techincal h1 {
    font-size: 2em;
    line-height: 1.2;
  }

  .txt-techincal h2 {
    font-size: .8em;
  }

  .txt-techincal ol {
    padding-left: 20px;
  }
}

#w-node-f35728c9-1235-4400-442a-d12a342d3499-342d3486, #w-node-f35728c9-1235-4400-442a-d12a342d34a5-342d3486, #w-node-f35728c9-1235-4400-442a-d12a342d34dd-342d3486, #policyFlagsContainer.w-node-f35728c9-1235-4400-442a-d12a342d34e0-342d3486 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f35728c9-1235-4400-442a-d12a342d34e3-342d3486 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-f35728c9-1235-4400-442a-d12a342d34e4-342d3486 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_452c6d65-d265-bc77-c71e-d0c7af392bdb-da6a343c, #w-node-_452c6d65-d265-bc77-c71e-d0c7af392be3-da6a343c, #w-node-c30b98a7-77eb-9c83-0e25-e841cd1d0da9-da6a343c, #w-node-c30b98a7-77eb-9c83-0e25-e841cd1d0db4-da6a343c, #w-node-c30b98a7-77eb-9c83-0e25-e841cd1d0dbf-da6a343c {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#field.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea413-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea414-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea416-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea41d-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea422-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;
}

#btn-form1.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea429-ca8ea40c {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

#w-node-_31dd17fd-bf6d-0e39-a5e1-a5f2ae2f0360-da6a343f, #w-node-_31dd17fd-bf6d-0e39-a5e1-a5f2ae2f0362-da6a343f {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_31dd17fd-bf6d-0e39-a5e1-a5f2ae2f0364-da6a343f, #w-node-_31dd17fd-bf6d-0e39-a5e1-a5f2ae2f0366-da6a343f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_31dd17fd-bf6d-0e39-a5e1-a5f2ae2f0360-da6a3440 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_31dd17fd-bf6d-0e39-a5e1-a5f2ae2f0364-da6a3440, #w-node-_31dd17fd-bf6d-0e39-a5e1-a5f2ae2f0366-da6a3440, #w-node-f0411512-383f-c1b1-4fbd-1ddb8cf9c7f4-da6a3440, #w-node-_2c8f8f0e-ec4e-b58b-2cea-58d51b2c954c-da6a3440 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_58d52e34-a754-8734-dbeb-fc557aab8b49-da6a3440 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_07aff78a-8b2a-b484-576e-60cd79fec954-da6a3442, #w-node-a814810b-9f6e-fce9-18fb-209604be4c2d-da6a3442, #w-node-_0e97857d-808f-e6ff-4060-187cf45dbf1f-da6a3443, #w-node-_0e97857d-808f-e6ff-4060-187cf45dbf23-da6a3443 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_6b56b923-2946-ba9d-04c9-358badc51139-da6a3443, #w-node-_22364145-1eba-79ec-6346-ee165c71d7ee-da6a3443 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_31dd17fd-bf6d-0e39-a5e1-a5f2ae2f0360-da6a343f {
    align-self: stretch;
  }

  #w-node-_58d52e34-a754-8734-dbeb-fc557aab8b49-da6a3440 {
    grid-area: 3 / 1 / 4 / 4;
  }

  #w-node-_8ce29fec-5f4d-729d-8598-5d53a8029ce3-da6a3441 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-b6c65476-e884-d05f-70c6-c6bb8629ef42-da6a3441 {
    grid-area: 1 / 2 / 2 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f35728c9-1235-4400-442a-d12a342d3499-342d3486, #w-node-f35728c9-1235-4400-442a-d12a342d34a5-342d3486, #w-node-f35728c9-1235-4400-442a-d12a342d34dd-342d3486 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #policyFlagsContainer.w-node-f35728c9-1235-4400-442a-d12a342d34e0-342d3486 {
    grid-column: span 1 / span 1;
  }

  #w-node-f35728c9-1235-4400-442a-d12a342d34e3-342d3486 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-b681d829-2a35-3bc4-14b9-d27e9af3a187-da6a3441 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f35728c9-1235-4400-442a-d12a342d3489-342d3486, #w-node-f35728c9-1235-4400-442a-d12a342d3499-342d3486, #w-node-f35728c9-1235-4400-442a-d12a342d34a5-342d3486, #w-node-f35728c9-1235-4400-442a-d12a342d34dd-342d3486 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f35728c9-1235-4400-442a-d12a342d34e3-342d3486 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }

  #field.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea413-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea414-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea416-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea41d-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea422-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea427-ca8ea40c, #btn-form1.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea429-ca8ea40c {
    grid-column: span 1 / span 1;
  }
}


