:root {
  --dim-grey: #43454e;
  --sienna: #947061;
  --white: white;
  --silver: #bdb5b2;
  --silver-2: #ccbab5;
  --seashell: #f2ebe8;
  --bg-light: #ccbab566;
  --black: black;
  --transparent: transparent;
  --bg-dark_50: #00000080;
  --rosa-light: #ccbab5b3;
}

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

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

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

body {
  color: var(--dim-grey);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}

h2 {
  color: var(--sienna);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: .7rem;
  font-weight: 600;
  line-height: 1.2;
}

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-size: 1.25rem;
  font-style: italic;
  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 {
  color: var(--dim-grey);
  max-width: 530px;
  margin-bottom: 0;
  font-weight: 300;
}

a {
  color: #222;
  text-decoration: underline;
}

a:hover {
  color: #6e6e6e;
}

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: 500;
}

figure {
  margin-bottom: 0;
}

.todelete {
  background-color: #ffe837;
  padding: 40px 15%;
  display: none;
}

.form_field {
  border-style: none none solid;
  border-width: 1px;
  border-color: #c5c5c5 #c5c5c5 var(--sienna);
  color: var(--dim-grey);
  background-color: #ffffffb3;
  border-radius: 0;
  margin-bottom: 16px;
  padding-left: 10px;
  padding-right: 10px;
  transition: all .2s;
}

.form_field:focus {
  border-bottom-color: var(--sienna);
  background-color: var(--white);
}

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

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

.form_field.is-message:focus {
  border-top-style: none;
  border-left-style: none;
  border-right-style: none;
}

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

.form_container {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  color: #6e6e6e;
  flex-direction: column;
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.form_link {
  color: var(--sienna);
  font-size: 12px;
}

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

.footer_link {
  color: var(--silver-2);
  cursor: pointer;
  border-bottom: 1px #0000;
  line-height: 1.2;
  text-decoration: none;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
}

.footer_link:hover {
  color: var(--seashell);
  transform: translate(8px);
}

.footer_link.w--current {
  border-bottom-color: #6e6e6e;
}

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

.footer_link.is-phone {
  background-image: url('../images/phone.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 28px;
  font-size: 1rem;
}

.footer_link.is-store {
  background-image: url('../images/map-4.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 20px;
  font-size: 1rem;
}

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

.nav_component.is-gdpr {
  position: absolute;
}

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

.header_component.is-promo {
  display: flex;
}

.nav_logo_wrapper {
  z-index: 3;
  flex: none;
  width: 300px;
  height: 100px;
  position: relative;
}

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

.nav_link_line {
  background-color: var(--white);
  flex: none;
  width: 0%;
  height: 1px;
  margin-top: 2px;
  transition: width .2s;
}

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

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

.section.bg-rosa {
  z-index: 0;
  background-color: var(--bg-light);
}

.section.is-image {
  justify-content: center;
  align-items: center;
  min-height: 45vw;
}

.section.is-image.hide {
  display: none;
}

.section.is-image.is-small {
  min-height: auto;
}

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

.section.hide {
  display: none;
}

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

.heading-large {
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 20px;
  font-size: 2.3rem;
  line-height: 1.2;
}

.heading-medium {
  color: var(--sienna);
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-family: freight-display-pro, sans-serif;
  font-size: 3rem;
  line-height: 1.2;
}

.heading-medium.citazione {
  color: var(--dim-grey);
  text-align: center;
  text-transform: none;
  max-width: 750px;
  font-size: 40px;
}

.heading-medium.citazione.maxw-680 {
  max-width: 680px;
}

.heading-medium.white {
  color: var(--white);
  text-align: center;
  text-shadow: 1px 2px 5px #0006;
  text-decoration: none;
}

.heading-medium.white.align-left {
  text-align: left;
  width: 250px;
}

.heading-medium.margin-25 {
  margin-bottom: 25px;
}

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

.heading-medium.align-center.margin-bottom-20 {
  letter-spacing: .5px;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.heading-medium.align-center.no-margin {
  margin-bottom: 0;
}

.heading-medium.align-center.is-promo {
  font-size: 2.5rem;
}

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

.heading-medium.is-news {
  font-size: 2.5rem;
}

.heading-medium.is-promo {
  background-color: var(--white);
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 2rem;
}

.container {
  z-index: 2;
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-direction: column;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

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

.container.is-small.is-promo {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.container.is-header-home {
  z-index: 3;
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  flex-direction: row;
  justify-content: center;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.container.is-header-home.is-promo {
  margin-top: auto;
}

.container.is-gdpr {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 250px 60px 0;
}

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

.container.horizontal-gap-60px.reverse {
  flex-direction: row-reverse;
}

.container.flex-gap-60px {
  text-align: center;
  align-items: center;
}

.container.inner-gdpr {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.container.is-horizontal-gap-0px {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  flex: 1;
  height: 100%;
}

.container.is-horizontal-gap-0px.is-reverse {
  flex-direction: row-reverse;
}

.container._100-100 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: grid;
}

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

.container.grid {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: grid;
}

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

.container.is-cards {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
}

.flex-horizontal {
  z-index: 2;
  flex-direction: row;
  display: flex;
}

.flex-horizontal.flex-gap-40px {
  grid-column-gap: 60px;
  align-items: flex-start;
  margin-top: 20px;
}

.sizing-grow {
  flex-direction: column;
  flex: 1;
  display: flex;
}

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

.image_wrapper.is-card {
  width: 100%;
  height: 24vw;
  min-height: 250px;
  max-height: 320px;
}

.image_wrapper.hauto {
  height: auto;
  max-height: none;
}

.image_wrapper.hauto.relative {
  position: relative;
}

.image_wrapper.is-full {
  width: 100%;
  height: 600px;
  max-height: 60vw;
}

.image_wrapper.is-news {
  height: auto;
  min-height: 100%;
  max-height: none;
}

.image_wrapper.is-size {
  aspect-ratio: 1;
  width: auto;
  height: auto;
  max-height: none;
}

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

.fit-cover.position {
  object-position: 50% 25%;
}

.fit-cover.position-bottom_50-75 {
  object-position: 50% 75%;
}

.fit-cover.position-top {
  object-position: 50% 0%;
}

.fit-cover.position_50-60 {
  object-position: 50% 60%;
}

.fit-cover.position_50-70 {
  object-position: 50% 70%;
}

.fit-cover.position_50-20 {
  object-position: 50% 20%;
}

.fit-cover.position_95-50 {
  object-position: 95% 50%;
}

.fit-cover.position_50-25 {
  object-position: 50% 25%;
}

.fit-cover.position_50-25.max-w1920 {
  max-width: 1920px;
}

.fit-cover.position_50-35 {
  object-position: 50% 35%;
}

.fit-cover.position_25-50 {
  object-position: 25% 50%;
}

.fit-cover.position_0-50 {
  object-position: 0% 50%;
}

.fit-cover.position_85-50 {
  z-index: 1;
  object-position: 85% 50%;
  position: relative;
}

.fit-cover.position_30-50 {
  object-position: 30% 50%;
}

.fit-cover.position_50-100 {
  object-position: 50% 100%;
}

.fit-cover.soldout {
  filter: saturate(0%);
}

.form_component {
  text-align: left;
  flex-direction: column;
  align-items: center;
  width: 700px;
  max-width: 50vw;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
}

.footer_logo {
  height: 80px;
}

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

.footer_column.is-first {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.footer_title {
  color: var(--seashell);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.footer_title.maxw-180 {
  max-width: 180px;
}

.nav_link {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--white);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-top: 4px;
  padding-bottom: 10px;
  font-size: .8rem;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
  position: relative;
}

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

.nav_link.w--current {
  font-weight: 600;
}

.header_par {
  max-width: none;
  line-height: 1.5;
}

.button {
  z-index: 10;
  background-color: var(--sienna);
  color: var(--white);
  text-transform: uppercase;
  padding: 0 10px;
  font-size: .85rem;
  line-height: 1;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
  position: relative;
}

.button:where(.w-variant-d50f6678-74fb-c46a-fa90-ec038ee80958), .button:where(.w-variant-ff6d3807-f1cc-fd15-b161-82c2cba14e0a) {
  background-color: var(--seashell);
  color: var(--sienna);
}

.button.is-negative {
  border-color: var(--white);
  background-color: var(--white);
  color: #222;
}

.button.is-negative:hover {
  color: var(--white);
  background-color: #fff0;
}

.button.is-submit {
  background-color: var(--sienna);
  color: var(--white);
  height: 40px;
  margin-top: 16px;
  padding-left: 40px;
  padding-right: 40px;
}

.button.is-submit:hover {
  background-color: var(--silver-2);
  color: var(--sienna);
}

.button.is-secondary {
  color: var(--silver-2);
  background-color: #2220;
}

.button.is-secondary:hover {
  color: var(--white);
  background-color: #222;
}

.button.is-secondary.is-negative {
  color: var(--white);
  background-color: #fff0;
}

.button.is-secondary.is-negative:hover {
  background-color: var(--white);
  color: #222;
}

.button.is-text {
  color: #6e6e6e;
  background-color: #0000;
  border-style: none;
  padding: 10px 0;
  font-size: .9rem;
}

.button-icon {
  color: var(--white);
  text-transform: uppercase;
  background-color: #c5c5c5;
  border: 2px solid #c5c5c5;
  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: #c5c5c5;
  background-color: #8764b800;
}

.contact_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_wrapper {
  z-index: 10;
  cursor: pointer;
  background-color: #222;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.x_asta {
  background-color: #222;
  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_image {
  z-index: 1;
  background-image: url('../images/placeholder-elegant.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.header_image.is-home {
  background-image: url('../images/AC1418-Padova-Via-Zabarella_VpExt01_rev07-copia.webp');
}

.header_image.is-architettura {
  background-image: url('../images/AC1418_PADOVA_Via-Zabarella_EXT08_REV02-copia.webp');
}

.header_image.is-residenze {
  background-image: url('../images/AC1418_VP02_Interior_Living_ComfortHome_Rev02_M-copia.webp');
  background-position: 50%;
}

.header_image.is-gallery {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPInt03_rev09_-copia.webp');
}

.header_image.in-contatti {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPExt_04_rev01-copia.webp');
  background-position: 50% 70%;
}

.header_image.is-benessere {
  background-image: url('../images/AC1418_PADOVA_Via-Zabarella_EXT03_REV01-copia.webp');
}

.header_image.is-interni {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11_Rev01-copia.webp');
  background-position: 50%;
}

.header_image.is-servizi {
  background-image: url('../images/AC1418_PADOVA_Via-Zabarella_EXT07_REV00-copia.webp');
}

.header_image.is-contesto {
  background-image: url('../images/_Z9A5513_b-copia.webp');
  background-position: 50% 100%;
}

.header_image.is-showroom {
  background-image: url('../images/_MG_9385-1-copia.webp');
}

.header_image.is-news {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPExt_05_rev00-copia.webp');
}

.heading-small {
  color: #222;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 1.3rem;
  line-height: 1.2;
}

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

.display-none {
  display: none;
}

.header_container {
  z-index: 3;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.3rem;
  display: flex;
  position: relative;
}

.header_container.is-home {
  text-align: center;
  align-items: center;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-right: 0;
}

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

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

.footer_wrapper {
  grid-column-gap: 24px;
  justify-content: space-between;
  display: flex;
}

.header_hover {
  z-index: 2;
  background-color: #0006;
  position: absolute;
  inset: 0;
}

.header_hover.gradient {
  background-image: linear-gradient(to top, #0000004d, #0000);
}

.nav_link_container {
  z-index: 3;
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1500px;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  position: relative;
}

.video_component {
  max-height: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

.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;
  box-shadow: 0 0 6px 1px #0000001a;
}

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

.flag_component.is-promo {
  border: 1px solid var(--sienna);
  background-color: var(--seashell);
}

.flag_component.is-promo:hover {
  background-color: var(--silver-2);
}

.flag_icon_wrapper {
  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_text_wrapper {
  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_text {
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  flex: none;
  width: 134px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 13px;
}

.nav_background {
  z-index: 1;
  background-color: var(--white);
  opacity: 0;
  padding: 0;
  display: none;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 6px 2px #0000001a;
}

.nav_background.is-header {
  z-index: 2;
  display: block;
}

.nav_hamburger {
  display: none;
}

.footer_component {
  background-color: var(--sienna);
  color: var(--seashell);
  background-image: linear-gradient(#0000008c, #0000008c), url('../images/Texture-bronzo-copia.webp');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  padding: 60px;
}

.button_component {
  background-color: var(--sienna);
  cursor: pointer;
  flex-direction: column;
  margin-top: 48px;
  padding: 15px 40px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.button_component:where(.w-variant-d50f6678-74fb-c46a-fa90-ec038ee80958), .button_component:where(.w-variant-ff6d3807-f1cc-fd15-b161-82c2cba14e0a) {
  background-color: var(--seashell);
}

.popup-area_wrapper {
  z-index: 50;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-image: linear-gradient(#0006, #0006);
  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.is-iscriviti {
  max-width: 530px;
  margin-left: 60px;
}

.popup-area_box.is-accedi {
  max-width: 340px;
}

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

.popup-area_line {
  background-color: #c5c5c5;
  flex: none;
  width: 80%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.popup-area_title {
  max-width: 370px;
  font-size: 1.7em;
  line-height: 1.2;
}

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

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

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

.background-full_image.opacity-20 {
  opacity: .2;
}

.background-full_image.opacity-5 {
  opacity: .05;
}

.background-full_image.opacity-15 {
  opacity: .15;
}

.form_icon {
  color: #6e6e6e;
  width: 24px;
  height: 24px;
}

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

.lightbox_icon.is-video {
  background-image: url('../images/icon_play.svg');
  background-position: 50%;
  background-repeat: no-repeat;
}

.lightbox_icon.is-image {
  background-image: url('../images/icon_plus-white.svg');
}

.form_par {
  text-align: center;
  max-width: 450px;
  margin-bottom: 40px;
}

.top_icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  display: flex;
}

.top_text {
  margin-top: 20px;
}

.top_link {
  color: #6e6e6e;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.top_link.is-gdpr {
  z-index: 100;
  border-top: 1px solid var(--sienna);
  background-color: var(--silver-2);
  color: var(--dim-grey);
  padding-top: 20px;
  padding-bottom: 20px;
  transition: color .2s, background-color .2s;
  position: sticky;
  bottom: 0;
}

.top_link.is-gdpr:hover {
  background-color: var(--sienna);
  color: var(--seashell);
}

.footer_gdpr {
  color: var(--seashell);
  text-align: center;
  border-top: 1px solid #c5c5c5;
  margin-top: 0;
  padding-top: 20px;
  font-size: 11px;
}

.header-home {
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 15px;
  font-family: freight-display-pro, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
}

.header-home.margin-0px {
  margin-bottom: 0;
}

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

.text_container.is-left {
  align-self: center;
  align-items: flex-start;
  width: 50%;
}

.text_container.is-left.align-top {
  align-self: flex-start;
}

.text_container.text-align-center {
  align-self: center;
}

.text_container.is-card {
  flex: 1;
  align-items: flex-start;
  padding-top: 40px;
}

.text_container.is-card.background-color-white-copy {
  background-color: var(--white);
  text-align: center;
  align-items: center;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.text_container.is-half {
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  width: 50%;
  padding: 100px 6%;
}

.text_container.is-half.background-color-light.is-news {
  min-height: 650px;
}

.text_container.is-half.background-color-light {
  background-color: #fff;
  background-image: linear-gradient(#ccbab566, #ccbab566);
}

.text_container.margin-bottom {
  margin-bottom: 40px;
}

.text_container.margin-top {
  margin-top: 40px;
}

.text_container.is-card {
  align-items: flex-start;
  padding-top: 40px;
}

.text_container.is-card.background-color-white {
  text-align: center;
  align-items: center;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.text_container.hide {
  display: none;
}

.text_container.is-popup {
  align-items: flex-start;
  max-width: none;
}

.text_container.align-left {
  align-self: flex-start;
  align-items: flex-start;
}

.text_container.max-width {
  max-width: 1100px;
}

.slide_button_wrapper {
  color: var(--black);
  text-transform: uppercase;
  align-items: center;
  margin-top: 20px;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.slide_button_icon {
  border: 1px solid #000;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  padding: 6px;
}

.accordion_head {
  color: #222;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid #6e6e6e;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1;
  transition: background-color .4s;
  display: flex;
}

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

.lightbox_icon_wrapper {
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 13px;
  display: flex;
}

.page_wrapper.is-policy {
  background-color: var(--bg-light);
  position: relative;
}

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

.lightbox_x.is-transparent {
  background-color: var(--transparent);
  width: 60px;
  height: 60px;
  top: 10px;
  right: 10px;
}

.arrow_icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

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

.nav_logo.lettering {
  opacity: 0;
}

.button_tertiary_line {
  background-color: #222;
  align-self: center;
  height: 1px;
}

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

.top_anchor {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
}

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

.technical_wrapper {
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 160px 100px 60px;
  display: flex;
}

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

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

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

.color_item.is-cta {
  background-color: #c5c5c5;
}

.color_item.is-dark {
  background-color: #222;
}

.color_item.is-light {
  background-color: #f4f4f4;
}

.color_item.is-hover-dark {
  background-color: #0006;
}

.color_item.is-hover-light {
  background-color: #fffc;
}

.color_item.is-grey {
  background-color: #6e6e6e;
}

.text-capitalize-allcaps {
  text-transform: uppercase;
}

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

.text-decoration-underline {
  text-decoration: underline;
}

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

.form_heading {
  color: #222;
  text-transform: uppercase;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  font-size: 1.6rem;
  line-height: 1.2;
  display: flex;
}

.card_heading {
  color: var(--sienna);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: freight-display-pro, sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
}

.card_text {
  color: var(--silver);
  max-width: 370px;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

.background-color-light {
  background-color: var(--bg-light);
}

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

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

.flex-gap-40px {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.news_post {
  text-align: left;
  width: 100%;
  margin-top: 48px;
}

.line_cta {
  background-color: var(--seashell);
  width: 50%;
  height: 1px;
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 0;
}

.line_cta:where(.w-variant-d50f6678-74fb-c46a-fa90-ec038ee80958), .line_cta:where(.w-variant-ff6d3807-f1cc-fd15-b161-82c2cba14e0a) {
  background-color: var(--sienna);
}

.line_cta.line_cta_right {
  left: auto;
  right: 0;
}

.tech_container {
  background-image: linear-gradient(#0009, #0009), url('../images/AC1418-Padova-Via-Zabarella_VpExt01_rev07-copia.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.heading-2 {
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 0;
  font-family: freight-display-pro, sans-serif;
  font-size: 1.8rem;
}

.cookie_tab_wrapper {
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.gdpr_richtext {
  position: static;
}

.gdpr_richtext.is-client {
  margin-top: -10px;
  margin-bottom: -10px;
}

.gdpr_richtext p {
  max-width: none;
  margin-top: 10px;
  margin-bottom: 10px;
}

.gdpr_richtext h1 {
  color: var(--sienna);
  font-family: freight-display-pro, sans-serif;
  font-size: 2.5rem;
}

.gdpr_richtext h2 {
  letter-spacing: 0;
  text-transform: none;
  margin-top: 25px;
  margin-bottom: 0;
  font-family: freight-display-pro, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.gdpr_richtext h3 {
  color: var(--sienna);
  margin-top: 15px;
  margin-bottom: 5px;
  font-family: freight-display-pro, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.gdpr_richtext a {
  color: var(--sienna);
}

.gdpr_richtext ul, .gdpr_richtext li {
  font-weight: 300;
}

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

.cookie_tab_cell {
  border: 1px #2b2b2b;
  border-style: none none solid solid;
  padding: 10px 20px;
}

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

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

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

.top_anchor-gdpr {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
}

.pittogramma {
  width: 35px;
  margin-top: 40px;
}

.pittogramma.is-fix {
  filter: brightness(300%);
  margin-top: 0;
  margin-bottom: -10px;
}

.text-span {
  margin-top: 10px;
  font-size: 1.2rem;
}

.loghi-footer {
  width: 130px;
}

.loghi-footer.m2 {
  width: 170px;
}

.loghi-footer.studio-architettura {
  width: 70px;
}

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

.link-carron {
  margin-top: 25px;
}

.cookie-banner_close_txt {
  border-bottom: 1px solid var(--sienna);
  color: var(--sienna);
  font-size: 12px;
}

.cookie-banner_close_txt:hover {
  border-bottom-color: var(--dim-grey);
  color: var(--dim-grey);
}

.cookie-prefs_name {
  color: #5c5c5c;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: auto;
  font-size: 16px;
  font-weight: 700;
}

.cookie-banner_link {
  color: var(--sienna);
}

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

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

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

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

.banner_title {
  color: #383838;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

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

.cookie-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-bottom: 16px;
  position: relative;
}

.cookie-banner {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: auto;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 0 14px 3px #0000001a;
}

.cookie-prefs_title {
  color: #383838;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.cookie-prefs_checkbox {
  z-index: 1;
  cursor: pointer;
  background-color: #cacaca;
  background-image: url('../images/check_dot.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  border-width: 2px;
  border-color: #cacaca;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  transition: all .2s;
  position: absolute;
  inset: 0%;
}

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

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

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

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

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

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

.cookie-banner_wrapper {
  z-index: 998;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0000001a;
  flex-direction: column;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: 0;
  overflow: auto;
}

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

.button-4.is-text {
  color: var(--sienna);
  text-decoration: underline;
  transition: all .2s;
}

.button-4.is-text:hover {
  color: var(--dim-grey);
}

.button-4.is-secondary {
  border: 1px solid var(--sienna);
  color: var(--sienna);
  background-color: #0000;
}

.button-4.is-secondary:hover {
  border-color: var(--dim-grey);
  background-color: var(--dim-grey);
  color: var(--seashell);
}

.button-4.is-banner {
  background-color: var(--sienna);
  align-self: flex-end;
  transition: all .2s;
}

.button-4.is-banner:hover {
  background-color: var(--dim-grey);
  color: var(--seashell);
}

.button-4.is-icon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #43454e;
  background-color: #f2ebe8;
  border-radius: 20px;
  align-items: center;
  height: 40px;
  padding: 5px 20px 5px 0;
  line-height: 40px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.button-4.is-icon:hover {
  background-color: #ccbab5;
}

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

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

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

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

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

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

.cookie-banner_trigger {
  display: none;
}

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

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

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

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

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

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

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

.manager_trigger {
  display: none;
}

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

.button_accetta {
  background-color: var(--sienna);
  cursor: pointer;
  font-size: 14px;
  transition: all .2s;
}

.button_accetta:hover {
  background-color: var(--dim-grey);
  color: var(--seashell);
}

.container-8 {
  flex-direction: column;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-8.is-technical {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--seashell);
  text-align: center;
  align-items: center;
}

._404 {
  color: var(--silver-2);
  font-size: 50px;
  line-height: 50px;
}

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

.policy-flag {
  flex-direction: row;
  align-items: flex-start;
  font-size: 12px;
  display: flex;
}

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

.img-contain.pittogramma {
  width: 50px;
  height: 50px;
  margin-top: 0;
  margin-bottom: 40px;
}

.background-video-2 {
  width: 100%;
  height: 100%;
}

.heading-3 {
  color: #947061;
}

.heading-3.margin-bottom-15 {
  margin-bottom: 15px;
}

.heading-3.is-promo {
  color: var(--bg-dark_50);
  text-transform: uppercase;
  font-weight: 600;
}

.heading-3.text-color-white {
  color: var(--white);
}

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

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

.background_img.opacity-50 {
  opacity: .5;
}

.background_img.max-w-1920 {
  max-width: 1920px;
}

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

.background_hover {
  z-index: 1;
  background-color: var(--bg-dark_50);
  position: absolute;
  inset: 0;
}

.background_hover.is-rosa {
  background-color: var(--rosa-light);
}

.background_hover.is-dark {
  background-color: #947061d6;
}

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

.container-14.is-slider {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  max-width: 1300px;
}

.slider {
  background-color: #ddd0;
  width: 100%;
  height: 100%;
}

.left-arrow, .right-arrow {
  display: none;
}

.slide-gallery {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-gallery._01 {
  background-image: url('../images/AC1418_PADOVA_Via-Zabarella_EXT08_REV02-copia.webp');
  background-position: 50% 65%;
}

.slide-gallery._02 {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPInt_07_Rev04-copia.webp');
  background-position: 50% 75%;
}

.slide-gallery._03 {
  background-image: url('../images/_Z9A5513_b-copia.webp');
  background-position: 50% 85%;
}

.slide-gallery._12 {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPInt_03_rev03_Mid-copia.webp');
}

.slide-gallery._14 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11_DETT_03_Rev00-copia.webp');
}

.slide-gallery._15 {
  background-image: url('../images/AC1418-ITA-Padova_Via_Zabarella_VPInt_12_CloseUp_rev00-copia.webp');
}

.slide-gallery._13 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11_DETT_04_Rev00-copia.webp');
}

.slide-nav {
  display: none;
}

.moodboard {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1.25fr .4fr 1.25fr 1fr;
  height: 50vw;
  min-height: 500px;
  max-height: 730px;
}

.moodboard.is-gap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1.25fr 1fr 1.25fr 1fr;
  height: 30vw;
}

.moodboard.benessere {
  grid-template-rows: 1fr 1fr 1fr 1fr;
}

.moodboard.is-promo {
  z-index: 2;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: 1fr;
  grid-template-columns: .3fr 1fr .3fr;
  width: 100%;
  max-width: 1300px;
  height: 500px;
  min-height: auto;
  max-height: none;
  position: relative;
}

.moodboard.is-promo2 {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr .25fr .5fr;
  width: 100%;
  max-width: 1300px;
  height: 500px;
  min-height: auto;
  max-height: none;
  position: relative;
}

.moodboard.is-promo-full {
  z-index: 2;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--silver-2);
  grid-template-rows: 1fr;
  grid-template-columns: 1fr .5fr .25fr;
  width: 100%;
  max-width: none;
  height: 550px;
  min-height: auto;
  max-height: none;
  padding-bottom: 5px;
  position: relative;
}

.grid_image_wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid_image_wrapper.is-lightbox {
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 50px;
  padding-right: 50px;
}

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

.section-grid_item {
  flex: 1;
  height: 35vw;
  position: relative;
}

.section-grid_item.is-showroom {
  background-image: url('../images/_MG_9294-1-copia.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-grid_item_hover {
  z-index: 2;
  background-color: #0000;
  background-image: linear-gradient(#00000059, #00000059);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  line-height: 1;
  transition: background-color .6s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  inset: 0;
}

.section-grid_item_hover:hover {
  background-color: #00000080;
}

.section-grid_item_hover.hover-none {
  background-image: linear-gradient(to right, #000000b3 22%, #0000 54%);
  align-items: flex-start;
  transition: none;
}

.section-grid_item_hover.hover-none:hover {
  background-color: #0000;
}

.section-grid_item_mask {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.no-wrap {
  white-space: nowrap;
}

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

.timeline.is-full {
  width: 100%;
  height: auto;
  max-height: none;
  display: none;
}

.div-block {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.div-block.reverse {
  flex-direction: column-reverse;
}

.paragraph.align-center {
  text-align: center;
  max-width: 550px;
}

.paragraph.align-center.is-link {
  color: var(--white);
  transition: color .35s;
}

.paragraph.align-center.is-link:hover {
  color: var(--silver-2);
}

.paragraph.align-center.size-14 {
  font-size: 14px;
  line-height: 1.7;
}

.paragraph.is-small {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.dot {
  z-index: 1;
  background-color: var(--sienna);
  border-radius: 20px;
  width: 10px;
  height: 10px;
  position: absolute;
}

.line__wrap {
  background-color: var(--sienna);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1px;
  display: flex;
  position: relative;
}

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

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

.image_wrapper-2.is-card {
  width: 100%;
  height: 24vw;
  min-height: 250px;
  max-height: 320px;
}

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

.text-italic {
  color: #6e6e6e;
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.logo-certificazione {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin-bottom: 60px;
  display: flex;
  position: relative;
}

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

.fit-contain.color-original {
  opacity: 0;
  position: absolute;
}

.fit-contain.palette-color {
  position: absolute;
}

.image_hover {
  z-index: 2;
  background-color: #0006;
  justify-content: center;
  align-items: center;
  transition: opacity .5s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  inset: 0;
}

.image_hover.is-gallery {
  opacity: 0;
  display: flex;
}

.image_hover.is-gallery:hover {
  opacity: 1;
}

.image_hover.is-card {
  background-color: #0000;
  background-image: linear-gradient(0deg, #00000069, #fff0 61%);
}

.image_hover.is-card.is-full {
  background-image: radial-gradient(circle, #00000094, #fff0);
}

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

.lightbox_slider {
  background-color: #0000;
  flex-direction: column;
  flex: none;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  overflow: hidden;
}

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

.accordion_space {
  height: 40px;
}

.gallery_image-preview {
  z-index: 1;
  object-fit: cover;
  flex: none;
  width: 100%;
  height: 100%;
  position: relative;
}

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

.x_asta-2.negative {
  background-color: #fff;
}

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

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

.gallery_image-lightbox {
  flex: none;
  width: 100%;
  height: 100%;
}

.accordion_icon {
  background-image: url('../images/icon_plus-black.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  border: 1px solid #000;
  border-radius: 100%;
  width: 24px;
  height: 24px;
}

.lightbox_slider_mask {
  width: 75vw;
  max-width: 120vh;
  height: 50vw;
  max-height: 80vh;
  overflow: visible;
}

.lightbox_slider_mask.is-video {
  overflow: hidden;
}

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

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

.slider_container.is-video {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.accordion_head-2 {
  color: #222;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid #6e6e6e;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1;
  transition: background-color .4s;
  display: flex;
}

.lightbox_icon_wrapper-2 {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 13px;
  display: flex;
}

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

.lightbox_component.domus-urbana {
  opacity: 0;
  display: flex;
  transform: translate(0, -100%);
}

.lightbox_component.palazzetto-neogotico, .lightbox_component.urban-suite, .lightbox_component.comfort-home {
  opacity: 0;
  transform: translate(0, -100%);
}

.lightbox_slider_arrow {
  border: 1px solid #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  left: 60px;
}

.lightbox_slider_arrow.is-right {
  color: #fff;
  left: auto;
  right: 60px;
}

.accordion_body {
  overflow: hidden;
}

.moodboard-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1.25fr .4fr 1.25fr 1fr;
  height: 50vw;
  min-height: 500px;
  max-height: 730px;
}

.moodboard-2.is-gap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: 1fr;
  grid-template-columns: 1.5fr 1fr 1fr;
  height: 30vw;
}

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

.tour-02 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.tour-02_tab {
  background-image: url('../images/Masterplan-completo.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border: 20px solid #0000;
  flex: none;
  width: 100%;
  height: 600px;
  max-height: 60vw;
}

.tour-02_tab_link {
  border: 2px solid var(--sienna);
  background-color: var(--silver-2);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  transition: all .2s;
  display: flex;
  position: absolute;
}

.tour-02_tab_link:hover {
  background-color: var(--sienna);
}

.tour-02_tab_link.w--current {
  border-color: var(--silver-2);
  background-color: var(--sienna);
}

.tour-02_tab_link._01 {
  top: 72%;
  left: 68%;
  transform: rotate(-90deg);
}

.tour-02_tab_link._01.w--current {
  color: var(--silver-2);
}

.tour-02_tab_link._02 {
  top: 72%;
  left: 50%;
}

.tour-02_tab_link._03 {
  top: 50%;
  left: 31%;
  transform: rotate(180deg);
}

.tour-02_tab_link._04 {
  top: 24%;
  left: 48%;
}

.tour-02_tab_link._05 {
  top: 38%;
  left: 65%;
}

.tour-02_content {
  width: 80%;
  height: 200px;
}

.tour-02_pane {
  height: 100%;
}

.text-block {
  color: var(--sienna);
  font-size: 25px;
  font-weight: 500;
  line-height: 25px;
}

.tipologia-container {
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

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

.slide-nav-4, .right-arrow-4, .left-arrow-4 {
  display: none;
}

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

.grid_img_wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

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

.left-arrow-5, .right-arrow-5, .slide-nav-5 {
  display: none;
}

.slide-contesto {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-contesto._01 {
  background-image: url('../images/_Z9A4512-copia.webp');
}

.slide-contesto._02 {
  background-image: url('../images/_Z9A4250-copia.webp');
}

.slide-contesto._03 {
  background-image: url('../images/_Z9A4138-copia.webp');
}

.slide-contesto._04 {
  background-image: url('../images/_Z9A5534-copia.webp');
}

.slide-contesto._06 {
  background-image: url('../images/_Z9A5252-copia.webp');
}

.slide-contesto._07 {
  background-image: url('../images/_Z9A5156-copia.webp');
  background-position: 50% 70%;
}

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

.form-popup {
  z-index: 50;
  background-color: var(--seashell);
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.area-form {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-width: 800px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  overflow: visible;
}

.cornice-form {
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 40px;
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.x-chiudi {
  background-image: url('../images/x-chiudi_mod.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  flex: none;
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  transition: all .5s;
  position: absolute;
  top: 50px;
  right: 10%;
}

.x-chiudi:hover {
  transform: scale(1.1);
}

.flag_component-2 {
  color: #fff;
  cursor: pointer;
  background-color: #fff;
  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;
  box-shadow: 0 0 6px 1px #0000001a;
}

.flag_component-2:hover {
  color: #fff;
  background-color: #222;
}

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

.heading-4, .heading-5, .heading-6 {
  display: none;
}

.slider_mask {
  width: 32%;
  overflow: visible;
}

.arrow_box {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 40px;
  display: flex;
  position: relative;
}

.par_tile {
  text-transform: none;
  font-size: 12px;
  font-weight: 300;
}

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

.slide_container-4.cursor-auto {
  cursor: auto;
}

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

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

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

.slide_image_wrapper {
  z-index: 1;
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slide_image_wrapper.is-soldout {
  filter: grayscale();
}

.slide_image_wrapper.is-card {
  flex-flow: column;
  flex: 0 auto;
  height: 300px;
  display: block;
}

.slider_component {
  background-color: #0000;
  flex: 1;
  align-self: stretch;
  height: 500px;
  max-height: 39vw;
  overflow: hidden;
}

.slider_component.is-big-copy {
  color: #ccbab5;
  height: 540px;
  max-height: 44vw;
}

.arrow_disable {
  z-index: 2;
  position: absolute;
  inset: 0;
}

.arrow_disable.is-right {
  display: none;
}

.slider_slide {
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-right: 6%;
}

.slider_slide.cursor-default {
  cursor: default;
}

.slide_caption {
  z-index: 2;
  color: #fff;
  text-align: left;
  letter-spacing: .5px;
  text-transform: uppercase;
  object-position: 0% 50%;
  border-top: 1px solid #f4f4f4;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: auto;
  min-height: auto;
  padding: 9px 20px 20px;
  font-size: 15px;
  line-height: 1.3;
  display: flex;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slide_caption.is-sold-out {
  min-height: auto;
}

.image_hover-2 {
  z-index: 2;
  background-image: linear-gradient(0deg, #000c, #00000080 45%, #0000 76%);
  justify-content: center;
  align-items: center;
  transition: opacity .5s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  inset: 0;
}

.lightbox_txt {
  z-index: 1;
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 60px 40px;
  display: flex;
}

.slide_txt_wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.slide_txt_wrapper.align-center {
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.slide_txt_wrapper.is-card {
  justify-content: center;
  align-items: center;
  padding: 0;
}

.slide_txt_wrapper.is-card.margin-top {
  margin-top: 10px;
}

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

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

.x_asta-4.negative {
  background-color: #fff;
}

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

.lightbox_container {
  z-index: 1;
  background-color: var(--white);
  background-image: linear-gradient(to bottom, var(--bg-light), var(--bg-light));
  flex: none;
  width: 100%;
  max-width: 1500px;
  min-height: 700px;
  max-height: 80vh;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: relative;
}

.lightbox_img_wrapper {
  flex: 1;
  align-self: stretch;
  position: relative;
}

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

.heading-7 {
  display: none;
}

.logo-molteni {
  width: 220px;
  height: 38.0313px;
  margin-top: 10px;
  margin-bottom: 50px;
}

.heading-8, .heading-9, .heading-10 {
  display: none;
}

.slider-2 {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.slide-image.cover-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-image.cover-image.domus-urbana-01 {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPInt_12_Rev05-copia.webp');
}

.slide-image.cover-image.domus-urbana-03 {
  background-image: url('../images/AC1418-ITA-Padova_Via_Zabarella_VPInt_02_rev00-copia.webp');
}

.slide-image.cover-image.palazzetto-01 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_13_Rev02-copia.webp');
}

.slide-image.cover-image.urban-suite-01 {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPInt03_rev09_-copia.webp');
}

.slide-image.cover-image.urban-suite-02 {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPInt_03_rev03_Mid-copia.webp');
}

.slide-image.cover-image.urban-suite-03 {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPInt_04_Rev00-copia.webp');
}

.slide-image.cover-image.urban-suite-04 {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPInt_04_Close_Post-copia.webp');
}

.slide-image.cover-image.urban-suite-07 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPExt_04_rev01-copia.webp');
}

.slide-image.cover-image.comfort-home-01 {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPIn08_rev10_-copia.webp');
}

.slide-image.cover-image.comfort-home-02 {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPInt_08_rev07_MidDetail-copia.webp');
}

.slide-image.cover-image.comfort-home-03 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11_Rev01-copia.webp');
}

.slide-image.cover-image.comfort-home-04 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11C_Rev00-copia.webp');
}

.slide-image.cover-image.comfort-home-05 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11B_Rev01-copia.webp');
}

.slide-image.cover-image.comfort-home-06 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11_DETT_06_Rev00-copia.webp');
}

.slide-image.contain-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.slide-image.contain-image.domus-urbana-02 {
  background-image: url('../images/AC1418-ITA-Padova_Via_Zabarella_VPInt_01_rev00-copia.webp');
}

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

.grid._01 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid._02 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1.5fr 1fr;
}

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

.right-arrow-6 {
  filter: invert();
  background-image: url('../images/arrow-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}

.left-arrow-6 {
  filter: invert();
  background-image: url('../images/arrow-left.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}

.mask-residenze {
  background-color: var(--rosa-light);
  width: 100%;
  height: 100%;
}

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

.store-grid {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-columns: 1fr .25fr;
  height: 100%;
  position: relative;
}

.tour01 {
  flex-direction: row-reverse;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 100px;
  display: flex;
}

.tour01_cones {
  background-image: url('../images/Ca-del-Chiostro_plani-store.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 450px;
  flex: none;
  width: 600px;
  height: 750px;
}

.number {
  z-index: 1;
  color: var(--seashell);
  text-align: center;
  text-transform: uppercase;
  max-width: 450px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1em;
  position: relative;
}

.tour01_cone {
  border: 2px solid var(--seashell);
  background-color: var(--sienna);
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  transition: all .2s;
  display: flex;
  position: absolute;
}

.tour01_cone.w--current {
  background-color: var(--dim-grey);
  border-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tour01_cone._02 {
  top: 48%;
  left: 20%;
}

.tour01_cone._05 {
  top: 59%;
  left: 74%;
}

.tour01_cone._04 {
  top: 51%;
  left: 65%;
}

.tour01_cone._06 {
  top: 44%;
  left: 75%;
}

.tour01_cone._03 {
  top: 42%;
  left: 50%;
}

.tour01_cone._01 {
  top: 63%;
  left: 17%;
}

.tour01_tabs {
  width: 70%;
}

.store-box {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #ffffffe6;
  flex-direction: column;
  align-items: center;
  width: 310px;
  padding: 25px;
  display: flex;
  position: absolute;
  bottom: 35px;
  left: 35px;
}

.tour01_tab {
  height: 100%;
}

.store-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.store-img._03 {
  background-image: url('../images/_MG_9205-1-copia.webp');
}

.store-img._04 {
  background-image: url('../images/4-materioteca-copia.webp');
}

.store-img._05 {
  background-image: url('../images/_MG_9193-1_mod-copia.webp');
  background-position: 50% 45%;
}

.store-img._06 {
  background-image: url('../images/6-sales-office-copia.webp');
  background-position: 50% 44%;
}

.store-img._01 {
  background-image: url('../images/1-welcome-area-copia.webp');
}

.store-img._02 {
  background-image: url('../images/2-know-how-area-copia.webp');
}

.text-soldout {
  background-color: var(--dim-grey);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 10px;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1;
}

.text-soldout.is-card {
  margin-top: 0;
  margin-bottom: 0;
}

.moodboard-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1.25fr .4fr 1.25fr 1fr;
  height: 50vw;
  min-height: 500px;
  max-height: 730px;
}

.gtm {
  display: none;
}

.lightbox_button_wrapper {
  color: var(--black);
  text-transform: uppercase;
  align-items: center;
  margin-top: 20px;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

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

.lightbox_button_icon {
  background-color: var(--white);
  border: 1px solid #000;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  padding: 6px;
}

.cover-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.cover-image.palazzetto-02 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_13_DETT03_Rev00-copia.webp');
}

.cover-image.palazzetto-03 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_13_DETT05_Rev00-copia.webp');
}

.cover-image.palazzetto-04 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_15_DETT_02_Rev00-copia.webp');
}

.cover-image.palazzetto05 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_13_DETT02_Rev00-copia.webp');
}

.cover-image.urban-suite-05 {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPInt_05_Rev02-copia.webp');
}

.cover-image.urban-suite-06 {
  background-image: url('../images/AC1418_Padova_Via-Zabarella_VPInt_05_Rev01_CloseUp-copia.webp');
}

.cover-image.comfort-home-07 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11_DETT_01_Rev00-copia.webp');
}

.cover-image.comfort-home-08 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11_DETT_03_Rev00-copia.webp');
}

.cover-image.comfort-home-09 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11_DETT_02_Rev00-copia.webp');
}

.cover-image.comfort-home-10 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11_DETT_04_Rev00-copia.webp');
}

.cover-image.comfort-home-11 {
  background-image: url('../images/AC1418_Padova_ViaZabarella_VPInt_11_DETT_05_Rev00-copia.webp');
}

.logo-attico {
  width: 170px;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 50px;
}

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

.button_icon {
  color: #f2ebe8;
  background-color: #947061;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  display: flex;
}

._2-buttons-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.grid_tagli {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.grid_tagli.is-row {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  min-width: 70vw;
  max-height: 600px;
}

.tile_tagli {
  width: 100%;
  min-height: 250px;
  position: relative;
}

.tile_tagli_img_wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.tile_tagli_overlay {
  background-image: linear-gradient(0deg, #000000bf, #00000026 57%);
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  position: relative;
}

.text-block-2 {
  padding-top: 10px;
}

.tile_tagli_txt {
  border-top: 1px solid var(--white);
  color: var(--white);
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 45px;
  padding-top: 10px;
  line-height: 1.2;
  display: flex;
}

.text-soldout_home {
  z-index: 3;
  background-color: var(--sienna);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  padding: 8px 10px;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  inset: 0% 0% auto;
}

.flex_cards {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
}

.card-item {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  width: 100%;
  max-width: 350px;
  height: 100%;
  min-height: 500px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-item.is-auto {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  min-height: auto;
}

.card-title {
  background-color: var(--sienna);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.card-item_01 {
  z-index: 3;
  border-bottom: 1px solid var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  margin-bottom: 10px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.text-card {
  text-align: center;
  font-size: 14px;
}

.item-line {
  background-color: var(--white);
  width: 1px;
  height: 50px;
}

.item-circle {
  background-color: var(--white);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.timbro_wrapper {
  z-index: 3;
  grid-column-gap: 0px;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  display: flex;
  position: absolute;
  inset: auto auto 3vw 3vw;
}

.timbro-02_component {
  background-image: url('../images/chiostro_timbro_2.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 70%;
  width: 150px;
  height: 150px;
  margin-left: 0;
}

.timbro-02 {
  background-image: url('../images/chiostro_timbro_1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

.scroll_animation {
  text-align: center;
  cursor: pointer;
  background-color: #a39bff;
  border-radius: .5rem;
  padding: 16px 20px;
  display: none;
}

.light-box_promo {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.icon-lightbox {
  z-index: 3;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 13px;
  display: flex;
}

.title-light-box {
  z-index: 4;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto;
}

.text-distance {
  margin-top: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
}

.flex-block-5.text-color-white {
  justify-content: flex-start;
  align-items: center;
}

.flex-center-gap-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.text-poi {
  color: #ffffff8c;
  text-transform: uppercase;
}

.heading-small-2 {
  color: #6a8085;
  letter-spacing: 1px;
  background-image: url('../images/poma_rombo_gold.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 11px;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 17px;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.2;
}

.heading-small-2.is-map {
  color: #cba971;
  background-image: none;
  margin-bottom: 0;
  padding-left: 0;
}

.item-rombo-p {
  width: 40px;
  height: 40px;
  position: absolute;
  inset: auto -20px -20px auto;
}

.item-rombo-p.is-map {
  width: 10px;
  height: 10px;
  position: static;
}

.item-icon {
  width: 30px;
  height: 30px;
}

.div-block-2 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  margin-top: 20px;
  display: flex;
}

.icon-description {
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.4;
}

.title-tipologico {
  font-size: 21px;
}

.scopri-di-piu {
  color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.scopri-di-piu:hover {
  color: var(--silver-2);
}

.txt-lottie {
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 11px;
  line-height: 22px;
  text-decoration: none;
}

.lottie-wrap {
  opacity: .5;
  justify-content: center;
  align-items: flex-start;
  width: 50px;
  height: 50px;
  transition: opacity .5s;
  display: flex;
  position: relative;
  bottom: auto;
}

.lottie-wrap:hover {
  opacity: 1;
}

.label-01b_component {
  z-index: 50;
  background-color: var(--silver-2);
  cursor: pointer;
  background-image: linear-gradient(#ddbdb5ad, #ddbdb5ad), url('../images/iStock-831707488-copia.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 220px;
  display: flex;
  position: fixed;
  top: 30%;
  left: auto;
  right: 0;
  box-shadow: 1px 1px 5px #0000004d;
}

.label-01b_component.for-style {
  position: fixed;
  top: 50%;
}

.label-01b_text_wrapper {
  z-index: 1;
  color: #fff;
  text-align: center;
  flex: 1;
  padding: 30px 20px;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
}

.label-01b_title {
  color: #633e2e;
  text-transform: uppercase;
  border-bottom: 1px solid #f2efe9;
  margin-bottom: 14px;
  padding-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
}

.label-01b_text {
  color: var(--bg-dark_50);
  padding-bottom: 2px;
  font-weight: 600;
  text-decoration: none;
}

.label-01bis_x {
  z-index: 2;
  border-right: 1px solid var(--white);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  position: relative;
}

.label-01b_lottie {
  filter: brightness(0%) invert();
  flex: none;
  width: 90px;
  height: 90px;
  transform: rotate(-90deg);
}

.slider-auto {
  width: 100%;
  height: 100%;
}

.item-frame {
  border: 1px solid var(--white);
  width: 90%;
  height: 90%;
  position: absolute;
}

.slide-nav-auto {
  font-size: 12px;
}

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

  .footer_link:hover, .footer_link.is-phone:hover {
    color: var(--silver-2);
    transform: none;
  }

  .footer_link.is-store {
    text-transform: none;
  }

  .footer_link.is-store:hover {
    color: var(--silver-2);
    transform: none;
  }

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

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

  .nav_logo_wrapper {
    z-index: 3;
  }

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

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

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

  .heading-medium {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2.5rem;
  }

  .heading-medium.citazione, .heading-medium.citazione.maxw-680 {
    font-size: 35px;
  }

  .heading-medium.white {
    font-size: 2.5rem;
  }

  .heading-medium.white.align-left {
    width: auto;
  }

  .heading-medium.align-center {
    font-size: 2.5rem;
  }

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

  .heading-medium.align-left.tablet-width-260 {
    width: 260px;
  }

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

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

  .container.is-header-home {
    flex-direction: column;
    padding-bottom: 40px;
  }

  .container.is-gdpr {
    padding-top: 190px;
    padding-bottom: 0;
  }

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

  .container.horizontal-gap-60px.reverse {
    flex-direction: column;
  }

  .container.flex-horizontal.flex-gap-60px {
    flex-direction: row;
  }

  .container.is-horizontal-gap-0px, .container.is-horizontal-gap-0px.is-reverse {
    flex-direction: column;
  }

  .container.is-cards {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
  }

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

  .video_component {
    align-self: stretch;
  }

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

  .image_wrapper.is-news {
    height: 500px;
    min-height: auto;
    max-height: none;
  }

  .image_wrapper.is-size {
    min-height: 200px;
  }

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

  .footer_column {
    order: 3;
  }

  .footer_column.is-first {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    order: 1;
  }

  .nav_link {
    margin-top: 0;
    padding-bottom: 8px;
    font-size: 1rem;
  }

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

  .contact_component {
    flex-direction: column;
  }

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

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

  .header_container.is-home {
    align-self: flex-start;
    padding-right: 0;
  }

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

  .nav_link_container {
    z-index: 2;
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    background-color: #000000b3;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    padding-top: 180px;
    padding-bottom: 80px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: auto;
  }

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

  .nav_hamburger_lottie {
    flex: none;
  }

  .footer_component {
    padding: 40px 32px;
  }

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

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

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

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

  .form_par {
    text-align: center;
  }

  .top_text {
    margin-top: 10px;
  }

  .top_link.is-gdpr {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .header-home {
    font-size: 35px;
  }

  .text_container {
    width: auto;
    max-width: none;
  }

  .text_container.is-left {
    align-self: center;
    align-items: center;
    width: auto;
  }

  .text_container.is-left.align-top {
    align-items: flex-start;
  }

  .text_container.is-half {
    width: auto;
  }

  .text_container.is-half.background-color-light {
    align-items: center;
  }

  .text_container.is-half.background-color-light.is-news {
    min-height: 450px;
    padding: 60px;
  }

  .text_container.is-half.background-color-light {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .text_container.is-popup {
    width: 100%;
  }

  .slide_button_wrapper {
    font-size: .7rem;
  }

  .accordion_image_wrapper {
    height: 30vw;
  }

  .nav_logo {
    opacity: 1;
    background-image: none;
  }

  .technical_wrapper {
    padding-top: 140px;
    padding-left: 0;
    padding-right: 0;
  }

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

  .card_text {
    font-size: 16px;
  }

  .line_cta, .line_cta.line_cta_right {
    display: none;
  }

  .pittogramma {
    height: auto;
  }

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

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

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

  .container-11, .container-12, .container-13 {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    align-items: center;
  }

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

  .container-14.is-slider {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .moodboard.is-gap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .section-grid {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

  .section-grid_item {
    flex: 1;
    width: 40vw;
    min-width: 100%;
    height: 40vw;
  }

  .section-grid_item.is-showroom {
    background-position: 100%;
  }

  .section-grid_item_hover {
    padding: 32px;
  }

  .section-grid_item_hover.hover-none {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-image: linear-gradient(#00000080, #00000080);
  }

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

  .paragraph {
    text-align: center;
  }

  .container-15, .container-16 {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    align-items: center;
  }

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

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

  .accordion_grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .lightbox_slider {
    padding-bottom: 80px;
  }

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

  .x_asta-2 {
    background-color: #fff;
  }

  .lightbox_slider_mask {
    width: 90%;
    height: 60.8vw;
  }

  .lightbox_component {
    display: none;
  }

  .lightbox_slider_arrow {
    margin-bottom: 0;
    margin-right: 60px;
    left: auto;
  }

  .lightbox_slider_arrow.is-right {
    margin-left: 60px;
    margin-right: 0;
    right: auto;
  }

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

  .moodboard-2.is-gap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    min-height: 400px;
    max-height: 630px;
  }

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

  .tour-02 {
    flex-direction: column;
  }

  .tour-02_tab {
    border-style: none;
    margin: 20px auto;
  }

  .tour-02_content {
    width: 100%;
    height: auto;
  }

  .container-19, .container-20, .container-21, .container-22, .container-23, .container-24 {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    align-items: center;
  }

  .area-form {
    width: 100%;
    min-width: auto;
  }

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

  .slider_mask {
    width: 49%;
  }

  .arrow_box {
    width: 80px;
    height: 40px;
  }

  .slider_arrow {
    width: 80px;
  }

  .slide_image_wrapper {
    flex: 1;
  }

  .slider_component {
    flex: 0 auto;
    order: -1;
    width: 100%;
    max-height: 56vw;
  }

  .slider_component.is-big-copy {
    flex: 0 auto;
    order: -1;
    width: 100%;
    height: auto;
    max-height: none;
  }

  .slide_caption {
    padding-bottom: 10px;
    font-size: 14px;
  }

  .lightbox_txt {
    width: 100%;
  }

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

  .x_asta-4 {
    background-color: #fff;
  }

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

  .lightbox_img_wrapper {
    flex: none;
    height: 60vw;
  }

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

  .right-arrow-6, .left-arrow-6 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    display: none;
  }

  .lightbox_gallery {
    padding-top: 0;
    padding-bottom: 0;
    display: none;
  }

  .tour01 {
    flex-direction: column;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
  }

  .tour01_cones {
    border-style: none;
    height: 450px;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(0);
  }

  .tour01_cone._05 {
    top: 66%;
  }

  .tour01_cone._06 {
    top: 39%;
  }

  .tour01_cone._03 {
    top: 38%;
  }

  .tour01_cone._01 {
    top: 72%;
  }

  .tour01_tabs {
    width: 100%;
    height: 70vw;
  }

  .store-box {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    bottom: 0;
    left: 0;
  }

  .tour01_tab {
    width: 100%;
  }

  .text-soldout.is-card {
    font-size: .7rem;
  }

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

  .grid_tagli.is-row {
    max-height: none;
  }

  .text-soldout_home {
    font-size: .7rem;
  }

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

  .card-item.is-auto {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: row;
    justify-content: space-around;
    align-items: stretch;
    max-width: none;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .card-item.is-asset {
    max-width: none;
  }

  .timbro-02_component {
    width: 120px;
    height: 120px;
  }

  .text-distance {
    text-align: center;
  }

  .flex-block-5 {
    justify-content: flex-start;
    align-items: center;
  }

  .flex-center-gap-10 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    min-width: 150px;
  }

  .div-block-2 {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    flex-flow: wrap;
    justify-content: center;
  }

  .label-01b_text {
    padding-bottom: 0;
  }
}

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

  .form_field {
    margin-bottom: 15px;
  }

  .footer_link {
    line-height: 1.3;
  }

  .footer_link.is-phone {
    background-position: 0 0;
    background-size: 15px;
    padding-left: 25px;
  }

  .footer_link.is-store {
    text-transform: none;
    background-position: 0 0;
    background-size: 13px;
  }

  .header_component {
    height: 88vh;
    min-height: 500px;
  }

  .nav_logo_wrapper {
    width: 220px;
    height: 70px;
  }

  .section {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .section.is-image {
    min-height: 60vw;
  }

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

  .heading-medium.citazione, .heading-medium.citazione.maxw-680 {
    font-size: 30px;
  }

  .heading-medium.white, .heading-medium.align-center {
    font-size: 2rem;
  }

  .heading-medium.align-left.tablet-width-260 {
    width: 200px;
  }

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

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

  .container.is-header-home {
    padding-bottom: 60px;
  }

  .container.is-gdpr {
    padding-top: 160px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .container.flex-horizontal.flex-gap-60px {
    flex-direction: column;
  }

  .container.grid {
    grid-column-gap: 8px;
    grid-row-gap: 30px;
    flex-direction: column;
  }

  .container.is-cards {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .sizing-grow {
    flex-direction: column;
  }

  .image_wrapper.is-news {
    height: 400px;
  }

  .header_par {
    margin-bottom: 0;
    font-size: 14px;
  }

  .fixed_flags {
    right: 0;
  }

  .footer_wrapper {
    grid-column-gap: 32px;
  }

  .nav_link_container {
    grid-row-gap: 10px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .flag_component {
    top: 28px;
  }

  .nav_hamburger {
    height: 40px;
  }

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

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

  .top_icon.is-gdpr {
    width: 40px;
    padding-right: 15px;
  }

  .top_text {
    margin-top: 0;
  }

  .top_link.is-gdpr {
    flex-direction: row;
    justify-content: center;
  }

  .header-home {
    font-size: 2rem;
  }

  .text_container.is-card.background-color-white, .text_container.is-card.background-color-white-copy {
    width: 100%;
    padding: 30px 20px;
  }

  .accordion_image_wrapper {
    height: 44vw;
  }

  .lightbox_slide {
    margin-right: 10px;
  }

  .technical_wrapper {
    padding-top: 100px;
  }

  .card_heading {
    line-height: 1.2;
  }

  .card_text {
    font-size: 14px;
  }

  .cookie_tab_wrapper {
    overflow: auto;
  }

  .cookie_tab_link {
    color: var(--sienna);
    text-decoration: none;
  }

  .gdpr_richtext p {
    margin-bottom: 0;
  }

  .gdpr_richtext h1 {
    font-size: 1.8rem;
  }

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

  .gdpr_richtext h3 {
    font-size: 1.3rem;
  }

  .gdpr_richtext ul {
    font-size: 14px;
    font-weight: 300;
  }

  .gdpr_richtext strong {
    font-weight: 600;
  }

  .cookie_tab {
    min-width: 750px;
  }

  .cookie_tab_cell {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    text-decoration: none;
  }

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

  .banner_title {
    font-size: 20px;
  }

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

  .cookie-prefs_title {
    font-size: 20px;
  }

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

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

  .heading-3.is-promo {
    text-align: center;
  }

  .container-10, .container-14 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .container-14.is-slider {
    max-width: 450px;
  }

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

  .moodboard.is-gap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: 1.75fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    height: 130vw;
  }

  .moodboard.is-promo, .moodboard.is-promo2, .moodboard.is-promo-full {
    height: 350px;
  }

  .grid_image_wrapper.landscape-display-none {
    display: none;
  }

  .section-grid {
    flex-direction: column;
    align-items: center;
  }

  .section-grid_item {
    width: 100%;
    height: 60vw;
    min-height: 300px;
    margin-left: 0;
    margin-right: 0;
  }

  .section-grid_item_hover.hover-none {
    background-image: linear-gradient(#00000080, #00000080);
  }

  .section-grid_item_mask {
    height: 60vw;
    min-height: 300px;
  }

  .line__wrap {
    display: none;
  }

  .image_wrapper-2.is-card {
    min-height: 200px;
    max-height: 250px;
  }

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

  .accordion_wrapper {
    align-self: stretch;
  }

  .slider_container {
    flex-direction: column;
  }

  .lightbox_component {
    padding: 40px;
  }

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

  .moodboard-2.is-gap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    height: 130vw;
    min-height: 500px;
    max-height: none;
  }

  .tour-02 {
    justify-content: flex-start;
    align-items: center;
  }

  .tour-02_tab {
    margin-top: 0;
    margin-bottom: 0;
  }

  .tour-02_tab_link {
    width: 30px;
    height: 30px;
  }

  .tipologia-container {
    grid-column-gap: 40px;
  }

  .grid_img_wrapper.landscape-display-none {
    display: none;
  }

  .flag_component-2 {
    top: 28px;
  }

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

  .slider_arrow {
    background-size: 100%;
  }

  .slider_component {
    max-height: 80vw;
  }

  .slider_component.is-big-copy {
    width: auto;
  }

  .slide_caption {
    padding-bottom: 20px;
  }

  .tour01_cones {
    width: 450px;
    height: 350px;
    margin-bottom: 20px;
  }

  .tour01_cone._02 {
    left: 9%;
  }

  .tour01_cone._05 {
    top: 69%;
    left: 81%;
  }

  .tour01_cone._04 {
    left: 69%;
  }

  .tour01_cone._06 {
    top: 38%;
    left: 84%;
  }

  .tour01_cone._03 {
    top: 33%;
  }

  .tour01_cone._01 {
    top: 77%;
    left: 7%;
  }

  .store-box {
    width: 410px;
    padding: 15px;
  }

  .tour01_tab {
    width: 100%;
  }

  .moodboard-3 {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    height: 70vw;
    min-height: 350px;
    max-height: none;
  }

  .grid_tagli.is-row {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

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

  .item-rombo-p {
    width: 30px;
    height: 30px;
    bottom: -15px;
    right: -15px;
  }

  .lottie-wrap {
    display: flex;
  }

  .label-01b_component {
    border-radius: 0;
    width: auto;
    inset: auto 0 0;
  }

  .label-01b_text_wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1;
    display: flex;
  }

  .label-01b_title {
    border-bottom-style: none;
    margin-bottom: 0;
    margin-right: 10px;
    padding-bottom: 0;
    font-size: 14px;
  }

  .label-01bis_x {
    margin-left: 0;
    margin-right: -10px;
    display: none;
  }

  .label-01b_lottie {
    transform: rotate(90deg);
  }
}

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

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

  .footer_link.is-phone {
    text-align: center;
    background-position: 50% 0;
    padding-top: 25px;
    padding-left: 0;
  }

  .footer_link.is-store {
    text-align: center;
    background-position: 50% 0;
    padding-top: 20px;
    padding-left: 0;
  }

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

  .header_component {
    justify-content: flex-end;
    height: 90vh;
    padding-top: 260px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .heading-medium.citazione {
    margin-bottom: 0;
    font-size: 25px;
  }

  .heading-medium.citazione.maxw-680 {
    font-size: 25px;
  }

  .heading-medium.white, .heading-medium.align-center, .heading-medium.align-center.is-promo {
    font-size: 1.8rem;
  }

  .heading-medium.align-left.tablet-width-260 {
    width: auto;
  }

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

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

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

  .container.is-cards {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .flex-horizontal.flex-gap-40px {
    align-items: center;
  }

  .image_wrapper.is-news {
    height: 250px;
  }

  .footer_column {
    order: 0;
    align-items: center;
  }

  .footer_column.is-first {
    order: 0;
  }

  .footer_title {
    margin-bottom: 20px;
  }

  .footer_title.maxw-180 {
    text-align: center;
  }

  .button {
    line-height: 1.2;
  }

  .button.is-submit {
    margin-top: 20px;
  }

  .header_container {
    font-size: 1.2rem;
  }

  .fixed_flags {
    right: 0;
  }

  .footer_wrapper {
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
  }

  .flag_component {
    top: auto;
    bottom: 0;
    left: 0;
  }

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

  .button_component {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button_component.no-margin {
    margin-top: 0;
  }

  .popup-area_wrapper {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .popup-area_box {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .popup-area_box.is-accedi {
    align-self: stretch;
    max-width: none;
  }

  .area_row {
    grid-row-gap: 20px;
    text-align: center;
    flex-direction: column;
  }

  .header-home {
    font-size: 1.8rem;
  }

  .text_container.is-left.align-top {
    align-items: flex-start;
  }

  .text_container.is-half.background-color-light.is-news {
    padding-left: 30px;
    padding-right: 30px;
  }

  .text_container.align-left {
    align-self: center;
    align-items: center;
  }

  .form_heading {
    font-size: 1.8rem;
  }

  .card_heading {
    font-size: 1.1rem;
  }

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

  .text-span {
    text-align: center;
  }

  .flex-vertical {
    align-items: center;
  }

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

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

  .cookie-banner {
    padding: 20px;
  }

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

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

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

  .cookie-prefs_wrapper {
    padding: 24px;
  }

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

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

  .heading-3 {
    text-align: center;
    line-height: 1.5;
  }

  .moodboard.is-promo, .moodboard.is-promo2, .moodboard.is-promo-full {
    height: 250px;
  }

  .section-grid_item {
    height: 90vw;
    min-height: auto;
  }

  .section-grid_item_hover.hover-none {
    align-items: center;
  }

  .image_wrapper-2.is-card {
    min-height: 200px;
    max-height: 300px;
  }

  .text-italic {
    font-size: 1.4rem;
  }

  .slider_container {
    align-items: center;
  }

  .lightbox_component {
    padding: 20px;
  }

  .tour-02 {
    align-items: center;
  }

  .tour-02_tab_link {
    width: 25px;
    height: 25px;
  }

  .tour-02_tab_link._03 {
    left: 23%;
  }

  .tour-02_tab_link._04 {
    top: 20%;
  }

  .tipologia-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cornice-form {
    margin-left: 20px;
    margin-right: 20px;
  }

  .x-chiudi {
    right: auto;
  }

  .flag_component-2 {
    top: auto;
    bottom: 0;
    left: 0;
  }

  .slider_component {
    max-height: 130vw;
  }

  .slider_slide {
    margin-right: 10px;
  }

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

  .lightbox_img_wrapper {
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .lightbox_wrapper {
    flex-direction: column;
  }

  .logo-molteni {
    width: 180px;
    height: 32px;
  }

  .store-grid {
    width: 100%;
  }

  .tour01_cones {
    background-size: 320px;
    width: 320px;
    height: 320px;
  }

  .number {
    font-size: 12px;
  }

  .tour01_cone {
    width: 30px;
    height: 30px;
  }

  .tour01_cone._05 {
    top: 65%;
  }

  .tour01_cone._03 {
    top: 37%;
  }

  .tour01_cone._01 {
    top: 72%;
  }

  .tour01_tabs {
    height: 500px;
    margin-bottom: 40px;
  }

  .store-box {
    width: 85%;
    padding: 20px 15px;
  }

  .moodboard-3 {
    min-height: auto;
    display: flex;
  }

  .logo-attico {
    width: 140px;
    height: 40px;
  }

  ._2-buttons-wrap {
    flex-flow: column;
  }

  .grid_tagli.is-row {
    flex-flow: wrap;
    grid-template-rows: 1fr 1fr auto auto auto;
    grid-template-columns: 1fr;
  }

  .flex_cards {
    flex-flow: column;
    display: flex;
  }

  .card-item.is-auto {
    flex-flow: column;
    min-width: 100%;
  }

  .card-item.is-auto.mobile-reverse {
    flex-flow: column-reverse;
  }

  .flex-center-gap-10 {
    min-width: 100px;
  }

  .div-block-2 {
    grid-column-gap: 40px;
  }

  .lottie-wrap {
    z-index: 1;
    width: 40px;
    height: 40px;
    margin-top: 10px;
    margin-left: 0;
    display: flex;
  }

  .label-01b_text_wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }
}

#w-node-e59dca89-e4c9-4170-aac2-2fc1ff4e3a65-51b3e014, #w-node-_9810e110-ff6b-1a4e-e4d5-5421f24912ca-51b3e014, #w-node-_02f31d70-501c-7905-7e1f-a4c1e92c49d0-51b3e014 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b5c93d74-7c76-4af0-7cf3-72910815f7d4-51b3e014, #w-node-d58a0961-59ff-b1a8-1543-ab49f1d67f39-51b3e014 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c3be5a3e-c74f-f394-98b8-dc52cf2881be-51b3e014 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-c3be5a3e-c74f-f394-98b8-dc52cf2881c0-51b3e014 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0fe860b9-d7a3-3da9-7e92-37a7c072e3d0-51b3e014 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#note.w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec24-36eeeb6e, #w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec25-36eeeb6e, #policyFlagsContainer1.w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec27-36eeeb6e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec28-36eeeb6e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec2a-36eeeb6e {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

#note.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea413-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea414-ca8ea40c, #policyFlagsContainer.w-node-_4453a11f-4f8d-c8be-abfe-84467ecd7191-ca8ea40c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

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

#w-node-_2c60b7b6-a391-7817-805a-fcf1b24b7288-ca8ea40c {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

#w-node-dbcd970c-95df-dae6-699c-fb83bf111fb5-bf111fb4 {
  grid-area: 1 / 1 / 3 / 5;
}

#w-node-dbcd970c-95df-dae6-699c-fb83bf111fb7-bf111fb4 {
  grid-area: 1 / 5 / 2 / 7;
}

#w-node-dbcd970c-95df-dae6-699c-fb83bf111fb9-bf111fb4 {
  grid-area: 1 / 7 / 2 / 9;
}

#w-node-dbcd970c-95df-dae6-699c-fb83bf111fbb-bf111fb4 {
  grid-area: 2 / 5 / 3 / 7;
}

#w-node-dbcd970c-95df-dae6-699c-fb83bf111fbd-bf111fb4 {
  grid-area: 2 / 7 / 3 / 9;
}

#w-node-aae4d340-c81c-36fe-63ba-adcc972f19e5-51b3e050 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-_9359cc58-b4f9-247d-9719-f20d0d381c16-51b3e050 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: end center;
}

#w-node-_3ca466f8-ff7a-4ae9-b390-43e9f059638c-51b3e050 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_0f2883df-2f8a-554b-eb36-1ca8159437e2-51b3e050 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-b589205b-d75c-98ba-45bf-cd1da0427c39-51b3e050 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-b589205b-d75c-98ba-45bf-cd1da0427c3b-51b3e050 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-b589205b-d75c-98ba-45bf-cd1da0427c3d-51b3e050 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_5d2a19e8-b5a3-636b-14a6-cfdf29c0d6b3-51b3e065 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-_5d2a19e8-b5a3-636b-14a6-cfdf29c0d6c0-51b3e065 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: end center;
}

#w-node-_5d2a19e8-b5a3-636b-14a6-cfdf29c0d6c3-51b3e065 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_5d2a19e8-b5a3-636b-14a6-cfdf29c0d6d0-51b3e065 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-bdd3f2a5-29d2-155b-00a9-5d00f3d0ae16-51b3e065 {
  grid-area: 1 / 1 / 5 / 2;
}

#w-node-bdd3f2a5-29d2-155b-00a9-5d00f3d0ae18-51b3e065 {
  grid-area: 1 / 2 / 5 / 3;
}

#w-node-bdd3f2a5-29d2-155b-00a9-5d00f3d0ae1a-51b3e065 {
  grid-area: 2 / 3 / 4 / 4;
}

#w-node-bdd3f2a5-29d2-155b-00a9-5d00f3d0ae1c-51b3e065 {
  grid-area: 3 / 4 / 5 / 5;
}

#w-node-bdd3f2a5-29d2-155b-00a9-5d00f3d0ae1e-51b3e065 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-b5783c9e-eaeb-b8ee-3d47-425ef913154d-51b3e065 {
  grid-area: 2 / 4 / 3 / 5;
}

#w-node-_8cdaa189-3be1-ab52-1975-8a8a33b9556f-51b3e065 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_0c287ae6-ed73-b5aa-23bc-69a0e98553f6-51b3e065 {
  grid-area: 4 / 3 / 5 / 4;
}

#w-node-_059cf5f3-8bcc-8ad3-b889-eb21b9ef7e9a-51b3e069 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-_059cf5f3-8bcc-8ad3-b889-eb21b9ef7ea7-51b3e069 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: end center;
}

#w-node-_059cf5f3-8bcc-8ad3-b889-eb21b9ef7eaa-51b3e069 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_059cf5f3-8bcc-8ad3-b889-eb21b9ef7eb7-51b3e069 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_0f81c920-437c-372b-5b68-edb71e16e4f4-51b3e069 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_0f81c920-437c-372b-5b68-edb71e16e4f6-51b3e069 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4adf6413-9dfd-3bee-b51f-bf8d53b9533b-51b3e069 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_4adf6413-9dfd-3bee-b51f-bf8d53b9533d-51b3e069, #progetto01.w-node-add7c06c-3b39-c50d-087a-5c516c8bb13f-51b3e070, #progetto02.w-node-add7c06c-3b39-c50d-087a-5c516c8bb144-51b3e070, #progetto03.w-node-add7c06c-3b39-c50d-087a-5c516c8bb149-51b3e070, #progetto04.w-node-add7c06c-3b39-c50d-087a-5c516c8bb14e-51b3e070, #progetto05.w-node-add7c06c-3b39-c50d-087a-5c516c8bb153-51b3e070, #progetto06.w-node-e056983d-ee56-0406-d919-5d96fd680caa-51b3e070, #progetto07.w-node-fa617b95-24e2-c4d8-c927-a94258cde537-51b3e070, #progetto08.w-node-_0c5cdedf-450a-8104-ca54-b902483755e4-51b3e070, #progetto09.w-node-f90258a2-5552-cff9-693e-98fa106a8958-51b3e070 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#interni015.w-node-d42b5b17-aae6-7491-a4d0-d9f76e33a6e8-51b3e070 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#interni015.w-node-_4fcf1716-f410-810d-1a34-51ea33cae702-51b3e070, #interni015.w-node-_2c1ed1df-b88a-47e6-9907-c0260426f671-51b3e070, #interni01.w-node-add7c06c-3b39-c50d-087a-5c516c8bb17a-51b3e070, #interni02.w-node-add7c06c-3b39-c50d-087a-5c516c8bb17f-51b3e070, #interni03.w-node-add7c06c-3b39-c50d-087a-5c516c8bb184-51b3e070 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#interni04.w-node-add7c06c-3b39-c50d-087a-5c516c8bb189-51b3e070 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#interni05.w-node-add7c06c-3b39-c50d-087a-5c516c8bb18e-51b3e070, #interni06.w-node-ee01b883-f356-bb6d-1a34-2745f767dca9-51b3e070, #interni07.w-node-dc1b418c-ded2-b20d-b020-0ebb3128a725-51b3e070 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#interni09.w-node-_87072323-71cd-814f-7a42-8b4eb2d12f96-51b3e070 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#interni08.w-node-dc70a9aa-beb8-0b98-6d66-76eae9ccc854-51b3e070, #interni010.w-node-_2f4d8e9d-325c-4837-ab8f-a78b16ea475a-51b3e070, #interni012.w-node-d0e7f6b8-99c1-83a5-4d3f-e1171093e483-51b3e070, #interni015.w-node-_64fced80-f533-9009-0572-790b53169ce1-51b3e070, #interni015.w-node-fe7cfea3-5ce8-b5e1-2032-847d6ba4b9a0-51b3e070 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#interni014.w-node-_07ab37a7-b54f-7da7-184a-c43b2ec2819a-51b3e070 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#location01.w-node-add7c06c-3b39-c50d-087a-5c516c8bb1b5-51b3e070, #location02.w-node-add7c06c-3b39-c50d-087a-5c516c8bb1ba-51b3e070, #location03.w-node-add7c06c-3b39-c50d-087a-5c516c8bb1bf-51b3e070, #location04.w-node-add7c06c-3b39-c50d-087a-5c516c8bb1c4-51b3e070, #location05.w-node-add7c06c-3b39-c50d-087a-5c516c8bb1c9-51b3e070, #location06.w-node-_9b60ffba-20b5-d036-5053-2e24f32d6688-51b3e070, #location07.w-node-_1868bb5c-316d-d5c9-4922-91fb1e0e8c80-51b3e070, #location08.w-node-_3502de84-611c-8cdc-debf-0232d87562c1-51b3e070, #location09.w-node-ed917117-e207-398c-2e43-0f31a148b14c-51b3e070, #location010.w-node-_24e622d9-4ed9-84d2-b4a1-4acc915bf1c8-51b3e070, #location011.w-node-b287ebe3-9d1f-d683-b5d4-874464ffa228-51b3e070, #location012.w-node-e3dc3f6f-bbc0-217d-20f7-36db77e1bd47-51b3e070, #location013.w-node-_5168bae2-e444-c800-f86f-0f86d4a6c611-51b3e070, #location014.w-node-_45a72166-bfeb-cc7a-a542-6aac7185e272-51b3e070, #location015.w-node-_35aa5a3d-f39e-1828-4713-950002550919-51b3e070, #location016.w-node-_6dc4c6a9-8582-7ea2-cdcf-5764b9877cb1-51b3e070, #location017.w-node-_607f09a0-a75c-af21-d3bd-5abec342ea56-51b3e070, #location018.w-node-e4832d02-1a5c-b075-b2be-14470c007fad-51b3e070, #location019.w-node-e130806b-a865-e9a7-0056-d41473c0922e-51b3e070, #location020.w-node-a3bdc61f-0f8a-5f91-ab11-94c92927673f-51b3e070, #location021.w-node-_8966d7e0-b9ca-65c5-3fb6-a26d5503193a-51b3e070 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#progetto01.w-node-add7c06c-3b39-c50d-087a-5c516c8bb1f0-51b3e070 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_23655e5a-a06c-37a9-ba84-e3129f46fdad-51b3e08c {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-_23655e5a-a06c-37a9-ba84-e3129f46fdba-51b3e08c {
  grid-area: 1 / 2 / 2 / 3;
  place-self: end center;
}

#w-node-_23655e5a-a06c-37a9-ba84-e3129f46fdbd-51b3e08c {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_23655e5a-a06c-37a9-ba84-e3129f46fdca-51b3e08c {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-e34582f4-8cc5-1238-d55a-5bc9f683bef7-51b3e08c {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-e34582f4-8cc5-1238-d55a-5bc9f683bef9-51b3e08c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f818eb56-1967-f7a2-7107-d8a85b66d0e2-51b3e08c {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-f818eb56-1967-f7a2-7107-d8a85b66d0e4-51b3e08c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cc13fe11-ca98-5701-9e9d-7e773c3e3828-51b3e0a4 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-cc13fe11-ca98-5701-9e9d-7e773c3e3835-51b3e0a4 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: end center;
}

#w-node-cc13fe11-ca98-5701-9e9d-7e773c3e3838-51b3e0a4 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-cc13fe11-ca98-5701-9e9d-7e773c3e3845-51b3e0a4 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-d5a1cc03-cd22-2e3a-57a7-0f70fb04c93e-51b3e0a4 {
  grid-area: 1 / 1 / 3 / 5;
}

#w-node-_5f2278fa-b974-adfd-2df8-190086a7a217-51b3e0a4 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_35d8d91f-c912-d755-40a9-9965b78d370f-51b3e0a4, #w-node-_54f8f489-2d72-fa8c-5f84-49d3cc9969a6-51b3e0a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82d65ad7-9125-27cc-c21b-bfb55fc30b68-51b3e0a4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_667b8ace-47d3-46c9-83f8-5ffc5786bdd5-51b3e0a4 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-a23fcb8d-81d9-44d2-1a71-ee18ec51f10c-51b3e0a4 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-ada73c02-3343-8c76-a345-7969cace6a06-51b3e0a4, #w-node-_1be9b27a-5b66-2f53-3d4d-da7a6129efc2-51b3e0a4, #w-node-df6a5771-30e1-ee05-a7fb-0f578cc2a5ec-51b3e0a4, #w-node-d6db3aa0-8c44-665e-128a-0061703347b6-51b3e0a4, #w-node-ff1317ee-5896-20e1-fb5e-cad0630c4a6b-51b3e0a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3954d078-cfc6-ff15-0370-edbca66d8d46-51b3e0a6 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-_3954d078-cfc6-ff15-0370-edbca66d8d53-51b3e0a6 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: end center;
}

#w-node-_3954d078-cfc6-ff15-0370-edbca66d8d56-51b3e0a6 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_3954d078-cfc6-ff15-0370-edbca66d8d63-51b3e0a6 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e472e-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e4731-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_4b5c6276-5399-d5c2-64d1-1eba73967d08-51b3e0a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e4741-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_450abc4a-7030-ceea-694e-fa66c4cd82f7-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_25eb0598-ac80-d303-d1bc-88953efc975c-51b3e0a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e4753-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_0c592ebe-f573-c150-97df-b75a1dcc2bc5-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_1f496c6c-45a6-ab70-54c5-7be0ce5e9d0d-51b3e0a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e4768-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_25858fe7-6aa4-5618-ed62-eabe6e26f74c-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_00faef94-7c57-7496-8998-e43070eb9ea2-51b3e0a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e477a-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-d773aa49-b698-1c45-0fbb-9145de2a6107-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-bba003b4-26a3-f75d-11ed-e5fa4b46dfd5-51b3e0a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e478a-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-_5626bb24-2682-d3ff-85c6-8355c671ba0d-51b3e0a8 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_5c94743a-c0a3-fb00-ad33-d17d8bfe7aab-51b3e0a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0dd9ab05-df69-1156-b35d-3e40294dd95c-51b3e0a8 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-eb10030f-5307-a0a0-8bbf-422962711d44-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-eb10030f-5307-a0a0-8bbf-422962711d45-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_75867711-b74d-b135-ff71-4034429000b0-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_75867711-b74d-b135-ff71-4034429000b1-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_99e0002a-70e6-76f1-2082-502abf0623bb-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_99e0002a-70e6-76f1-2082-502abf0623bc-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-bec49f0f-714d-e4d0-f465-79eda891acbe-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-bec49f0f-714d-e4d0-f465-79eda891acbf-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_80e3950c-5078-33dc-09a8-ba54b16b30fa-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_80e3950c-5078-33dc-09a8-ba54b16b30fb-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e00-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e01-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e08-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e09-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e10-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e11-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e20-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e21-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e28-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e29-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e36-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e37-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e44-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e45-51b3e0aa, #w-node-_193089af-cc8f-147f-af45-abd6ba071e72-51b3e0aa, #w-node-_193089af-cc8f-147f-af45-abd6ba071e92-51b3e0aa, #w-node-_233ff339-56be-233b-9cd9-8298bf244444-51b3e0aa, #w-node-_193089af-cc8f-147f-af45-abd6ba071ec7-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071ef2-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071ef3-51b3e0aa {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-aae4d340-c81c-36fe-63ba-adcc972f19e5-b08f3786 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-_9359cc58-b4f9-247d-9719-f20d0d381c16-b08f3786 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: end center;
}

#w-node-_3ca466f8-ff7a-4ae9-b390-43e9f059638c-b08f3786 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_0f2883df-2f8a-554b-eb36-1ca8159437e2-b08f3786 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-cc13fe11-ca98-5701-9e9d-7e773c3e3828-78d705b4 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: center;
}

#w-node-cc13fe11-ca98-5701-9e9d-7e773c3e3835-78d705b4 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: end center;
}

#w-node-cc13fe11-ca98-5701-9e9d-7e773c3e3838-78d705b4 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-cc13fe11-ca98-5701-9e9d-7e773c3e3845-78d705b4 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_14316cc9-c9e0-9421-4681-1b9b0a133bf8-78d705b4, #w-node-_14316cc9-c9e0-9421-4681-1b9b0a133bf6-78d705b4, #w-node-ca9c0c12-8c42-0fc4-7e7a-e1e8cfa72e6a-78d705b4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ca9c0c12-8c42-0fc4-7e7a-e1e8cfa72e6c-78d705b4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_35b48fa8-f9c7-e1a7-05b9-1202c502f9fd-78d705b4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_35b48fa8-f9c7-e1a7-05b9-1202c502fa06-78d705b4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d5a1cc03-cd22-2e3a-57a7-0f70fb04c93e-78d705b4 {
  grid-area: 1 / 1 / 3 / 5;
}

#w-node-_5f2278fa-b974-adfd-2df8-190086a7a217-78d705b4 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_35d8d91f-c912-d755-40a9-9965b78d370f-78d705b4, #w-node-_54f8f489-2d72-fa8c-5f84-49d3cc9969a6-78d705b4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82d65ad7-9125-27cc-c21b-bfb55fc30b68-78d705b4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_667b8ace-47d3-46c9-83f8-5ffc5786bdd5-78d705b4 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-a23fcb8d-81d9-44d2-1a71-ee18ec51f10c-78d705b4 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-ada73c02-3343-8c76-a345-7969cace6a06-78d705b4, #w-node-_1be9b27a-5b66-2f53-3d4d-da7a6129efc2-78d705b4, #w-node-df6a5771-30e1-ee05-a7fb-0f578cc2a5ec-78d705b4, #w-node-d6db3aa0-8c44-665e-128a-0061703347b6-78d705b4, #w-node-ff1317ee-5896-20e1-fb5e-cad0630c4a6b-78d705b4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e472e-51b3e0a8 {
    grid-column: 1 / 3;
  }

  #w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e4731-51b3e0a8 {
    grid-column-end: 3;
    place-self: center;
  }

  #w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e4741-51b3e0a8 {
    grid-column-start: 1;
  }

  #w-node-_450abc4a-7030-ceea-694e-fa66c4cd82f7-51b3e0a8 {
    grid-column-end: 3;
    place-self: center;
  }

  #w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e4753-51b3e0a8 {
    grid-column-start: 1;
  }

  #w-node-_0c592ebe-f573-c150-97df-b75a1dcc2bc5-51b3e0a8 {
    grid-column-end: 3;
    place-self: center;
  }

  #w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e4768-51b3e0a8 {
    grid-column-start: 1;
  }

  #w-node-_25858fe7-6aa4-5618-ed62-eabe6e26f74c-51b3e0a8 {
    grid-column-end: 3;
    place-self: center;
  }

  #w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e477a-51b3e0a8 {
    grid-column: 1 / 3;
  }

  #w-node-d773aa49-b698-1c45-0fbb-9145de2a6107-51b3e0a8 {
    grid-column-end: 3;
    place-self: center;
  }

  #w-node-_6a9a9d52-3c9b-0533-7b62-d753a49e478a-51b3e0a8 {
    grid-column-start: 1;
  }

  #w-node-_5626bb24-2682-d3ff-85c6-8355c671ba0d-51b3e0a8 {
    grid-column-end: 3;
    place-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c3be5a3e-c74f-f394-98b8-dc52cf2881be-51b3e014 {
    grid-row: span 1 / span 1;
  }

  #w-node-dbcd970c-95df-dae6-699c-fb83bf111fb5-bf111fb4 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-dbcd970c-95df-dae6-699c-fb83bf111fb7-bf111fb4 {
    grid-area: 1 / 4 / 2 / 7;
  }

  #w-node-dbcd970c-95df-dae6-699c-fb83bf111fb9-bf111fb4 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-dbcd970c-95df-dae6-699c-fb83bf111fbb-bf111fb4 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-dbcd970c-95df-dae6-699c-fb83bf111fbd-bf111fb4 {
    grid-area: 2 / 5 / 3 / 7;
  }

  #w-node-b589205b-d75c-98ba-45bf-cd1da0427c39-51b3e050 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-b589205b-d75c-98ba-45bf-cd1da0427c3b-51b3e050 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-b589205b-d75c-98ba-45bf-cd1da0427c3d-51b3e050 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-bdd3f2a5-29d2-155b-00a9-5d00f3d0ae16-51b3e065 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-bdd3f2a5-29d2-155b-00a9-5d00f3d0ae1c-51b3e065 {
    order: 9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0f81c920-437c-372b-5b68-edb71e16e4f4-51b3e069, #w-node-_4adf6413-9dfd-3bee-b51f-bf8d53b9533b-51b3e069 {
    grid-row: span 1 / span 1;
  }

  #progetto08.w-node-_0c5cdedf-450a-8104-ca54-b902483755e4-51b3e070, #progetto09.w-node-f90258a2-5552-cff9-693e-98fa106a8958-51b3e070 {
    grid-column: span 1 / span 1;
  }

  #interni015.w-node-d42b5b17-aae6-7491-a4d0-d9f76e33a6e8-51b3e070, #interni015.w-node-_4fcf1716-f410-810d-1a34-51ea33cae702-51b3e070, #interni015.w-node-_2c1ed1df-b88a-47e6-9907-c0260426f671-51b3e070, #interni015.w-node-_64fced80-f533-9009-0572-790b53169ce1-51b3e070, #interni015.w-node-fe7cfea3-5ce8-b5e1-2032-847d6ba4b9a0-51b3e070, #location021.w-node-_8966d7e0-b9ca-65c5-3fb6-a26d5503193a-51b3e070, #progetto01.w-node-add7c06c-3b39-c50d-087a-5c516c8bb1f0-51b3e070 {
    grid-column: span 2 / span 2;
  }

  #w-node-e34582f4-8cc5-1238-d55a-5bc9f683bef7-51b3e08c, #w-node-f818eb56-1967-f7a2-7107-d8a85b66d0e2-51b3e08c, #w-node-d5a1cc03-cd22-2e3a-57a7-0f70fb04c93e-51b3e0a4, #w-node-_14316cc9-c9e0-9421-4681-1b9b0a133bf6-78d705b4, #w-node-ca9c0c12-8c42-0fc4-7e7a-e1e8cfa72e6a-78d705b4, #w-node-_35b48fa8-f9c7-e1a7-05b9-1202c502f9fd-78d705b4, #w-node-d5a1cc03-cd22-2e3a-57a7-0f70fb04c93e-78d705b4 {
    grid-row: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #firstName.w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec20-36eeeb6e, #lastName.w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec21-36eeeb6e, #field.w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec22-36eeeb6e, #tel.w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec23-36eeeb6e, #note.w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec24-36eeeb6e, #w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec25-36eeeb6e, #policyFlagsContainer1.w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec27-36eeeb6e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_9cfdf019-dd5d-9687-65e5-ad887c7bec28-36eeeb6e {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }

  #firstName.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea40e-ca8ea40c, #lastName.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea40f-ca8ea40c, #field.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea410-ca8ea40c, #tel.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea411-ca8ea40c, #note.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea413-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea414-ca8ea40c, #policyFlagsContainer.w-node-_4453a11f-4f8d-c8be-abfe-84467ecd7191-ca8ea40c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

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

  #w-node-dbcd970c-95df-dae6-699c-fb83bf111fb5-bf111fb4 {
    grid-column-end: 2;
  }

  #w-node-dbcd970c-95df-dae6-699c-fb83bf111fb7-bf111fb4 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-dbcd970c-95df-dae6-699c-fb83bf111fb9-bf111fb4 {
    grid-row: 3 / 4;
    grid-column-end: 2;
  }

  #w-node-dbcd970c-95df-dae6-699c-fb83bf111fbb-bf111fb4 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-dbcd970c-95df-dae6-699c-fb83bf111fbd-bf111fb4 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d5a1cc03-cd22-2e3a-57a7-0f70fb04c93e-78d705b4 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }
}


