:root {
  --font--sottotitoli: Roboto, sans-serif;
  --palette--on-general: #8b9988;
  --font--titoli: Philosopher, sans-serif;
  --palette--primary-dark: #5d665b;
  --padding: 5vw;
  --palette--white: white;
  --palette--accent: #b9bfb5;
  --palette--primary: #f5ece3;
  --letter-spacing: .2em;
  --palette--canvas: #bbb1aa;
  --text-color-form: #ffffffb3;
  --palette--on-primary: var(--palette--on-general);
  --palette--accent-light: #fefdf9;
  --palette--black: #000;
  --palette--gray: #5c5c5c;
  --palette--accent-alternative: #ded5cc;
  --radius--form: 30px;
  --radius--cta: 0px;
  --radius--cta-radius: 20px;
}

.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-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

body {
  font-family: var(--font--sottotitoli);
  color: var(--palette--on-general);
  font-size: 1rem;
  line-height: 1.25;
}

h1 {
  font-family: var(--font--titoli);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
}

h2 {
  font-family: var(--font--titoli);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  color: var(--palette--primary-dark);
  letter-spacing: .3px;
  margin-bottom: 2rem;
  font-weight: 300;
}

a {
  text-decoration: underline;
}

label {
  margin-bottom: .5rem;
  font-size: .85rem;
  font-weight: 300;
}

strong {
  font-weight: 500;
}

.header_component {
  padding: 0vh var(--padding);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.header_component.is-technical {
  height: auto;
  min-height: auto;
  padding-top: 10vh;
}

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

.logo_wrapper {
  flex-flow: column;
  justify-content: center;
  align-self: auto;
  align-items: center;
  display: flex;
}

.logo_wrapper.is-absolute {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
}

.text_container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.heading-large {
  font-family: var(--font--titoli);
  color: var(--palette--on-general);
  letter-spacing: 1px;
  font-size: 4rem;
  font-weight: 400;
}

.heading-large.text-color-violet {
  color: var(--palette--white);
}

.countdown_container {
  border: 0 solid #000;
  border-radius: 30px;
  flex: none;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  display: flex;
  position: relative;
}

.countdown_item {
  border-right: 1px solid var(--palette--accent);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.countdown_item.is-last {
  border-right-style: none;
  margin-right: 0;
}

.countdown_number {
  font-family: var(--font--sottotitoli);
  color: var(--palette--primary);
  font-size: 3em;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.countdown_label {
  font-family: var(--font--titoli);
  color: var(--palette--white);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 12px;
  line-height: 12px;
}

.form_component {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.heading-small {
  font-family: var(--font--sottotitoli);
  color: var(--palette--canvas);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-size: .9rem;
  font-weight: 500;
}

.heading-small.is-m {
  font-size: 1.35rem;
}

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

.countdown_heading {
  font-family: var(--font--titoli);
  color: var(--palette--white);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
}

.button_component {
  cursor: pointer;
  flex-direction: column;
  text-decoration: none;
  display: flex;
  position: relative;
}

.button {
  z-index: 2;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--palette--on-general);
  color: var(--palette--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: .125rem;
  padding: 1rem 2rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-block;
  position: relative;
}

.button:hover {
  background-color: var(--palette--primary-dark);
}

.button.is-submit {
  margin-right: auto;
}

.button.is-submit:hover {
  background-color: var(--palette--accent);
}

.button.is-secondary {
  background-color: var(--palette--white);
  color: var(--palette--on-general);
  transition: box-shadow .2s, background-color .2s;
}

.button.is-secondary:hover {
  box-shadow: 0 2px 5px #0003;
}

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

.header_image.is-tecnical {
  background-image: linear-gradient(#1c392fe3, #1c392fe3), url('../images/iStock-692421918-mod-bw.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.header_hover {
  z-index: 2;
  background-color: var(--palette--on-general);
  position: absolute;
  inset: 0%;
}

.header_hover.is-color {
  background-color: var(--palette--on-general);
}

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

.container {
  z-index: 3;
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.container.is-technical {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--palette--primary);
  text-align: center;
  border-radius: .2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 48em;
  height: auto;
  padding: 60px;
}

.container.is-technical.is-thankyou {
  background-color: var(--palette--white);
}

.container.is-center {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  margin-left: auto;
  margin-right: auto;
}

.container.is-gdpr {
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
}

.countdown_component {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: none;
}

.logo_header-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 2rem;
}

.form_wrapper {
  width: 32rem;
}

.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 {
  color: var(--text-color-form);
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.form_label {
  color: var(--palette--white);
  letter-spacing: 1px;
}

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

.form_link {
  color: var(--palette--accent);
}

.form_field {
  border: 1px solid var(--palette--on-primary);
  background-color: #fff0;
  border-radius: .25rem;
  width: 100%;
  margin-bottom: 0;
  padding: .25rem 1rem;
}

.form_field:active, .form_field:focus {
  border-color: var(--palette--white);
  color: var(--text-color-form);
}

.form_field:focus-visible, .form_field[data-wf-focus-visible] {
  border-color: var(--palette--white);
}

.form_field::placeholder {
  color: var(--text-color-form);
  font-size: .8rem;
  font-weight: 300;
}

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

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

.display-none {
  display: none;
}

.form_field_wrapper {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  min-width: 230px;
  display: flex;
}

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

.form_text {
  color: var(--text-color-form);
  font-size: .8rem;
}

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

.heading-medium {
  font-family: var(--font--sottotitoli);
  letter-spacing: 1px;
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 1.8em;
  font-weight: 100;
  line-height: 1.1;
}

.footer_container {
  padding: 24px var(--padding);
  grid-row-gap: 8px;
  background-color: var(--palette--on-general);
  color: var(--palette--primary);
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: .9em;
  display: flex;
}

.footer_row {
  grid-column-gap: 12px;
  grid-row-gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer_row.is-link {
  grid-column-gap: 24px;
  grid-row-gap: 6px;
}

.footer_link {
  color: var(--palette--canvas);
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  font-size: .8rem;
  text-decoration: none;
}

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

.footer_txt {
  font-size: .8em;
}

.page_wrapper {
  position: relative;
}

.background-video {
  filter: grayscale();
  width: 100%;
  height: 100%;
  display: block;
}

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

.image_wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}

.image_wrapper.is-map {
  background-color: #d6e5d8;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: auto;
  box-shadow: 2px 2px 11px #0003;
}

.section {
  flex-direction: column;
  position: relative;
}

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

.footer_component {
  background-color: var(--palette--accent-light);
  padding: 6rem 2rem 2rem;
}

.footer_partner_container {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  display: flex;
}

.footer_logo-partner {
  flex-direction: column;
  align-items: flex-start;
}

.footer_gdpr_link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer_wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer_partner {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--palette--canvas);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  display: flex;
}

.footer_line {
  background-color: var(--palette--primary);
  width: 1px;
}

.footer_line.is-horizontal {
  width: 100%;
  height: 1px;
}

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

.footer_gdpr_notes {
  opacity: .6;
  color: var(--palette--canvas);
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  font-size: .7rem;
}

.footer_heading {
  color: var(--palette--canvas);
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 500;
}

.footer_logo {
  object-fit: contain;
  object-position: 0% 50%;
}

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

.container-3.is-full {
  max-width: none;
}

.footer_gdpr_column {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-self: stretch;
  font-size: 1rem;
  display: flex;
}

.dropdown_choice {
  border-top: 1px solid var(--palette--white);
  background-color: var(--palette--primary-dark);
  color: var(--palette--white);
  transition: color .35s, background-color .35s cubic-bezier(.25, .46, .45, .94);
}

.dropdown_choice:hover {
  color: var(--palette--on-general);
}

.dropdown_choice.w--current {
  background-color: var(--palette--primary);
  color: var(--palette--on-general);
}

.dropdown_choice.w--current:hover {
  color: var(--palette--on-general);
}

.dropdown_close {
  color: var(--text-color-form);
  width: 100%;
  padding: .25rem 0;
  font-size: .8rem;
  font-weight: 300;
}

.dropdown_list {
  font-weight: 400;
}

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

.form_container-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 32rem;
  display: flex;
}

.footer_container-item {
  background-color: var(--palette--primary-dark);
  justify-content: center;
  align-items: center;
  padding: 3rem;
  display: flex;
}

.footer_container-item.is-image {
  padding: 0;
}

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

.text-color-white.is-nopad {
  margin-bottom: 0;
}

.form_content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: grid;
  overflow: hidden;
}

.logo_part01 {
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
}

.logo_part01.is-responsive {
  display: none;
}

.logo_part02 {
  width: 26rem;
  margin-bottom: 1rem;
}

.logo_part03 {
  width: 16rem;
}

.div-block {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.text-color-green-light {
  color: var(--palette--primary);
}

.text-color-violet {
  color: var(--palette--accent);
}

.item-button {
  z-index: 0;
  background-color: var(--palette--accent);
  position: absolute;
  inset: 0%;
}

.item-button.is-dark {
  z-index: 1;
  background-color: var(--palette--white);
}

.container_scroll-down {
  z-index: 5;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 118px;
  padding: 5px 10px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.linea {
  background-color: #fff;
  justify-content: center;
  width: 1px;
  height: 80px;
  margin-bottom: 5px;
  position: relative;
}

.dot_scroll {
  z-index: 2;
  background-image: url('../images/Dimore-dei-Colli_leaf-scroll.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 22px;
  position: relative;
  top: 0;
  right: 10px;
}

.color-canvas-bg {
  background-image: url('../images/Dimore-dei-Colli_leaf-green-light.svg'), linear-gradient(141deg, var(--palette--canvas) 81%, #869d8b91);
  background-position: 10% 10%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 500px, auto;
}

.logo_text-small {
  max-width: 200px;
}

.navbar_component {
  z-index: 99;
  justify-content: space-between;
  align-self: auto;
  align-items: flex-end;
  width: 100%;
  max-width: none;
  height: auto;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.text-contact {
  font-family: var(--font--titoli);
  color: #c0c2fc;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-image: url('../images/foglia-viola_reverse.svg'), url('../images/foglia-viola.svg');
  background-position: 100% 1px, 0 1px;
  background-repeat: no-repeat, no-repeat;
  background-size: 8px, 8px;
  height: 15px;
  padding-left: 16px;
  padding-right: 14px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  transition: color .3s;
}

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

.color-on-general-bg {
  background-color: var(--palette--on-general);
  background-image: linear-gradient(#1c392f9e, #1c392f9e), url('../images/iStock-692421918-mod-bw-opacity.webp');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
}

.map-embed {
  border: 2px solid var(--palette--primary);
  width: 100%;
  height: 100%;
  line-height: 0;
}

.note_txt {
  text-align: left;
}

.note_txt h1 {
  font-family: var(--font--sottotitoli);
  font-size: 2em;
  font-weight: 300;
}

.note_txt h2 {
  font-family: var(--font--sottotitoli);
  font-size: 1.5em;
  font-weight: 300;
}

.note_txt a {
  color: var(--palette--primary);
}

.note_txt.is-show {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.accordion_wrapper {
  border-right: 1px solid var(--palette--white);
  justify-content: center;
  align-items: flex-start;
  min-width: 250px;
  padding-left: 20px;
  padding-right: 20px;
}

.list-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.text-block-item {
  color: #000;
  letter-spacing: 1.12px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 300;
  display: flex;
}

.dropdown-list-map {
  cursor: auto;
  background-color: #0000;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.icona-mappa {
  background-color: var(--palette--accent-light);
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  padding-top: 2px;
  display: flex;
}

.text-poi-map {
  color: #2f2f2f;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.text-poi-map.text {
  font-size: 16px;
  position: static;
}

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

.list-wrap.is-first {
  margin-top: 10px;
}

.accordion-item {
  cursor: pointer;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.accordion-map {
  border-bottom: 1px solid #333;
  align-items: stretch;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  display: flex;
}

.text-block-5 {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: .9;
}

.button-contact-ink {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.button-contact-ink:hover {
  color: var(--palette--white);
}

.map_container {
  width: 100%;
}

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

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

.cookie-embed {
  width: 100%;
}

.container_scroll-down-2 {
  z-index: 5;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  padding: 0;
  text-decoration: none;
  display: flex;
  position: relative;
}

.linea-2 {
  background-color: #fff;
  justify-content: center;
  width: 1px;
  height: 50px;
  margin-bottom: 5px;
  position: relative;
}

.dot_scroll-2 {
  z-index: 2;
  background-image: url('../images/Dimore-dei-Colli_leaf.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 22px;
  position: absolute;
  top: 0;
}

.nav2_component {
  z-index: 2;
  background-color: #0000;
  border-bottom: 1px solid #fff3;
  padding: 1rem;
}

.nav2_component.is-second {
  background-color: var(--palette--on-general);
}

.nav2_container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.nav2_logo-link {
  font-family: var(--font--titoli);
  color: var(--palette--white);
  letter-spacing: var(--letter-spacing);
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: none;
}

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

.button-secondary {
  color: var(--palette--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  padding: .25rem .5rem .25rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease-out;
}

.button-secondary:hover {
  color: var(--palette--primary-dark);
}

.nav_fixed {
  z-index: 999;
  position: fixed;
  inset: 0% 0% auto;
}

.logo_1x1_header {
  width: 3rem;
  height: 3rem;
}

.padding-global {
  padding-left: 5vw;
  padding-right: 5vw;
}

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

.padding-section-large {
  padding: 8rem 0;
}

.padding-section-large.is-underline {
  border-bottom: 1px solid var(--palette--primary);
}

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

.layout8_lightbox {
  position: relative;
  overflow: hidden;
}

.layout8_image {
  filter: brightness(61%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: filter .2s ease-out, transform .2s ease-out;
  position: relative;
}

.layout8_image:hover {
  filter: brightness(80%);
  transform: scale(1.1);
}

.layout8_lightbox-label {
  font-family: var(--font--titoli);
  color: #fff;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 400;
  display: flex;
  position: absolute;
  inset: auto 0% 60%;
}

.scroll_down-lottie {
  height: 4rem;
  position: absolute;
  bottom: 5%;
}

.container-medium {
  width: 100%;
  max-width: 80rem;
}

.styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.nav-primary_logo {
  width: 16rem;
}

.nav-secondary_logo {
  height: 1rem;
  margin-right: .5rem;
}

.css-button {
  background-image: linear-gradient(135deg, var(--palette--primary-dark), var(--palette--on-general) 33%, var(--palette--on-general) 66%, var(--palette--accent));
  color: #fff;
  text-transform: uppercase;
  border-radius: .2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-position 1s;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.button-text {
  z-index: 2;
  position: relative;
}

.link-policy {
  color: var(--palette--canvas);
  text-decoration: underline;
}

.max-width-small {
  width: 100%;
  max-width: 32rem;
}

.h1-contact {
  font-family: var(--font--sottotitoli);
  color: var(--palette--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 400;
}

.footer4_logo {
  width: 12rem;
}

.logo_footer {
  filter: invert(20%);
  height: 3rem;
}

.logo_footer.is-giem {
  object-fit: cover;
}

.footer-info_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 48rem;
  display: grid;
}

.link_footer {
  color: var(--palette--canvas);
  text-decoration: none;
}

.link_footer:hover {
  color: var(--palette--on-primary);
}

.heading-hero-large {
  color: var(--palette--white);
  margin-bottom: 2rem;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}

.link-navbar {
  color: var(--palette--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
}

.link-navbar:hover {
  color: var(--palette--accent);
}

.link-navbar.w--current {
  color: var(--palette--gray);
}

.link-navbar.is-cta {
  border: 1px solid var(--palette--primary);
  padding: .5rem 1rem;
}

.link-navbar.is-cta:hover {
  background-color: #ffffffe6;
}

.max-width-medium {
  width: 100%;
  max-width: 48rem;
}

.header-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.text-style-h2 {
  font-family: var(--font--titoli);
  color: var(--palette--primary-dark);
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.header-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
}

.full_image-wrapper {
  overflow: hidden;
}

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

.section_maps {
  background-image: linear-gradient(#0000001a, #0000001a), url('../images/corte-masseria-feudi-torrebella-bari.webp');
  background-position: 0 0, 100%;
  background-size: auto, cover;
}

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

.maps-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #ffffffdb;
  border-radius: .25rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 30rem;
  padding: 4rem;
  display: flex;
}

.progetto-component {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.progetto_image {
  object-fit: cover;
  width: 100%;
  height: 40rem;
}

.progetto-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.grid-progetto {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing1_component {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pricing1_tab_menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
  overflow: hidden;
}

.pricing1_tab_link {
  border: 1px solid var(--palette--accent-alternative);
  background-color: var(--palette--white);
  color: var(--palette--gray);
  text-transform: uppercase;
  padding: .75rem 2rem;
  font-weight: 400;
  transition: background-color .2s ease-out;
}

.pricing1_tab_link.w--current {
  background-color: var(--palette--gray);
  color: #fff;
}

.pricing1_plans {
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.plan_map-wrapper {
  position: relative;
}

.plan-content {
  border-left: 1px solid var(--palette--primary);
  width: 100%;
  padding: 1.5rem;
}

.pin-title {
  color: var(--palette--primary-dark);
  text-transform: uppercase;
  margin-bottom: .125rem;
  font-style: italic;
  font-weight: 400;
}

.pin-title.is-m {
  color: var(--palette--black);
  font-size: 1.2rem;
  font-weight: 400;
}

.text-style-h3 {
  color: var(--palette--primary-dark);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.text-style-h3.is-margin-4rem {
  margin-bottom: 4rem;
}

.plan_wrapper {
  background-color: #f9f7f5;
  border-radius: 6px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  display: flex;
}

.padding-section-medium {
  padding: 6rem 0;
}

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

.full_grid {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  height: 80vh;
  display: grid;
}

.footer_container-image {
  background-image: radial-gradient(circle, #0000, #00000080 80%), url('../images/residenza-storica-feudi-torrebella-bari.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
}

.container-form {
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 4rem;
  display: flex;
}

.logo-form {
  width: 4rem;
  height: 4rem;
}

.contact_container {
  z-index: 2;
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr .5fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
  position: relative;
}

.map_grid {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 16rem;
}

.location-component {
  background-color: #f9f7f5;
  border-radius: 6px;
  flex-flow: column;
  padding: .6rem;
  display: flex;
}

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

.slide_container {
  border-top: 1px solid var(--palette--primary);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
  overflow: hidden;
}

.slide_image {
  aspect-ratio: 1;
  object-fit: cover;
  height: 100%;
}

.slide_content {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 4rem;
  display: flex;
}

.slide_content.is-custom {
  background-color: var(--palette--white);
}

.slide_content-image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 24rem;
}

.section_interni {
  border-top: 1px solid var(--palette--accent-alternative);
  background-color: #f9f7f5;
  margin-top: 6rem;
}

.grid_component {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: grid;
}

.grid_component.is-green {
  background-color: var(--palette--on-general);
}

.half_wrap {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.half_txt {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 32rem;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.grid-b {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  grid-template-rows: auto auto;
  grid-template-columns: 2fr .5fr .5fr;
  width: 100%;
  height: 100%;
}

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

.image-grid.is-small {
  height: 16rem;
  min-height: 100%;
}

.image-grid.is-big {
  min-height: 40rem;
}

.image-grid.is-mid {
  max-height: 24rem;
}

.fs-styleguide_2-col {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  border-top: 1px solid var(--palette--primary);
  border-bottom: 1px solid var(--palette--primary);
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.home-grid_component {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid_image {
  object-fit: cover;
  width: 100%;
  height: 40rem;
  min-height: 100%;
}

.home-gird_item {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1.25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pittogramma-small {
  width: 4rem;
  margin-bottom: 4rem;
}

.pittogramma-small.is-margin {
  margin-bottom: 4rem;
}

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

.lightbox-link {
  height: 100%;
}

.grid_apt {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border-bottom: 1px solid var(--palette--accent-alternative);
  text-align: left;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.grid_apt.is-last {
  border-bottom-style: none;
}

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

.apt_col.is-1 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.apt {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.num_apt {
  text-transform: uppercase;
  cursor: pointer;
  background-color: #c72;
  border-radius: 8rem;
  transition: background-color .4s;
}

.num_apt:hover {
  background-color: var(--palette--primary-dark);
}

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

.num_apt_txt {
  color: var(--palette--white);
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  text-decoration: none;
  display: flex;
}

.apt_name {
  color: var(--palette--gray);
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

.apt_name.is-sold {
  line-height: 17px;
}

.modal-01_lightbox_component {
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px) blur(5px);
  backdrop-filter: blur(5px) blur(5px);
  background-color: #0000004d;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.modal-01_lightbox_component.show {
  display: flex;
}

.modal-01_popup_container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #fff;
  flex-flow: row;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  max-width: 1100px;
  max-height: 750px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 32px;
  display: flex;
  position: relative;
}

.modal-01_popup_close {
  z-index: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  transition: all .25s;
  position: absolute;
  inset: -15px -15px auto auto;
}

.modal-01_popup_close:hover {
  color: #dd6565;
}

.modal-01_popup_image {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

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

.button-proj {
  color: red;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid red;
  border-radius: 1.5rem;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 1.5rem;
  font-size: .7rem;
  font-weight: 500;
  line-height: 40px;
  transition: color .2s, background-color .3s ease-out;
}

.button-proj:hover {
  color: #fff;
  background-color: red;
}

.modal-01_popup_line {
  background-color: #00000029;
  flex: none;
  width: 1px;
  display: block;
}

.modal-01_popup_text {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.plan_featured-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.modal-01_popup_logo {
  object-fit: contain;
  object-position: 0% 50%;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.modal_name-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.modal-01_popup_heading {
  color: var(--palette--primary-dark);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.modal-01_popup_heading.is-prezzo {
  color: #aaa;
}

.modal-01_popup_taglio {
  color: #aaa;
  text-align: center;
  letter-spacing: 2px;
  text-transform: none;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.2;
}

.capitolato-included {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.3;
  display: block;
}

.modal-01_popup_note_wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  margin-top: 20px;
  display: flex;
}

.modal-01_popup_icons {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #556e59;
  flex-flow: column;
  align-items: center;
  line-height: 1;
  display: flex;
}

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

.logo_icon-tipologici_popup.is-bed {
  height: 40%;
}

.text-cartiglio {
  color: var(--palette--gray);
  font-weight: 400;
}

.text-mq {
  color: #555;
  text-transform: uppercase;
  font-size: 13px;
}

.bed-bath {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.venduto {
  color: red;
  font-size: .8rem;
  font-weight: 700;
}

.venduto.is-modal {
  font-size: 1.2rem;
}

.masterplan {
  aspect-ratio: 279 / 150;
  width: 100%;
  max-width: 1100px;
  position: relative;
}

.pin_apt {
  border: 1px solid var(--palette--white);
  text-transform: uppercase;
  cursor: pointer;
  background-color: #c72;
  border-radius: 100%;
  transition: background-color .4s;
  position: absolute;
}

.pin_apt:hover {
  background-color: var(--palette--primary-dark);
}

.pin_apt.is-01 {
  bottom: 36%;
  left: 50%;
}

.pin_apt.is-02 {
  top: 35%;
  left: 41%;
}

.pin_apt.is-03 {
  top: 29%;
  left: 49%;
}

.pin_apt.is-04 {
  top: 27%;
  left: 55%;
}

.pin_apt.is-05 {
  top: 21%;
  right: 25%;
}

.pin_apt.is-06 {
  top: 31%;
  right: 21%;
}

.pin_apt.is-07 {
  inset: 40% 19% auto auto;
}

.pin_apt.is-08 {
  inset: auto 17% 44% auto;
}

.pin_apt.is-09 {
  inset: auto 16% 32% auto;
}

.pin_apt.is-10 {
  inset: auto 25% 32% auto;
}

.pin_apt.is-11 {
  inset: auto 32% 32% auto;
}

.pin_apt.is-14 {
  inset: auto auto 49% 15%;
}

.pin_apt.is-15 {
  inset: 31% auto auto 26%;
}

.pin_apt_txt {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.image-fit-contain-4 {
  width: 100%;
  height: 100%;
  max-height: 80%;
}

.div-block-23 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.div-block-24 {
  border: 1px solid #aaa;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.grid_image-small {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 16rem;
}

.text-style-h4 {
  font-family: var(--font--titoli);
  color: var(--palette--primary-dark);
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 400;
}

.text-style-h4.is-white {
  color: var(--palette--white);
}

.pin-wrapper {
  margin-bottom: 1rem;
}

.max-width-tiny {
  width: 100%;
  max-width: 24rem;
}

.mask {
  height: 100%;
}

.slider-full {
  background-color: #fff;
  height: 100%;
}

.header_container {
  z-index: 3;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.button-tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  text-decoration: none;
  display: inline-flex;
}

.button-tag:hover {
  color: var(--palette--on-general);
}

.left-arrow {
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
  display: flex;
  inset: 0% auto 0% 0%;
}

.right-arrow {
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  display: flex;
  inset: 0% 0% 0% auto;
}

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

.arrow_wrapper {
  border: 1px solid var(--palette--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #c729;
  padding: 1rem;
  transition: background-color .2s;
}

.mood-grid_content {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.progetto_image_focus {
  object-fit: cover;
  height: 100%;
}

.progetto-content_wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.padding-section-small {
  padding: 2rem 0 3rem;
}

.par-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.par-progetto {
  margin-bottom: 0;
}

.price-detail {
  color: var(--palette--primary-dark);
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .logo_wrapper {
    max-width: none;
  }

  .text_container {
    margin-right: 0;
  }

  .button {
    display: flex;
  }

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

  .form_field {
    line-height: 20px;
  }

  .footer_txt.is-line {
    display: none;
  }

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

  .image_wrapper.is-map {
    aspect-ratio: auto;
    flex-flow: column;
    order: 0;
  }

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

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

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

  .footer_wrapper {
    flex-direction: column;
  }

  .footer_line {
    width: auto;
    height: 1px;
  }

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

  .footer_gdpr_notes {
    text-align: center;
    justify-content: space-between;
    align-items: center;
  }

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

  .footer_gdpr_column {
    flex-flow: column-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .footer_container-item {
    width: 100%;
  }

  .form_content {
    flex-flow: column;
  }

  .logo_part01.is-responsive {
    width: 40px;
    height: 40px;
    display: block;
  }

  .container_scroll-down {
    margin-top: 40px;
  }

  .logo_text-small {
    display: none;
  }

  .navbar_component {
    justify-content: space-between;
    align-items: center;
    max-width: none;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .accordion_wrapper {
    border-right-style: none;
    align-self: flex-start;
    align-items: center;
    width: 100%;
    min-height: 350px;
    margin-bottom: 0;
    overflow: auto;
  }

  .list-container {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .accordion-item {
    width: 100%;
  }

  .map_container {
    position: relative;
  }

  .lightbox_map {
    background-color: var(--palette--accent);
    color: var(--palette--on-general);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    font-size: 19px;
    display: flex;
    position: absolute;
    inset: auto 20px 20px auto;
  }

  .container_scroll-down-2 {
    margin-top: 40px;
  }

  .nav2_menu {
    z-index: 2;
    flex-flow: column;
    justify-content: flex-start;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .nav2_button-wrapper {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    display: flex;
  }

  .nav2_menu_button {
    color: var(--palette--black);
    padding: .5rem;
  }

  .nav2_menu_button.w--open {
    color: #24292e;
    background-color: #0000;
  }

  .progetto-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .progetto_image {
    height: 50rem;
  }

  .pricing1_tab_mask {
    width: 100%;
  }

  .pricing1_plans {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .footer_container-image {
    width: 100%;
  }

  .contact_container {
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .embed_map {
    width: 100%;
    min-width: auto;
    height: 500px;
  }

  .map_grid {
    width: 100%;
  }

  .grid_component {
    flex-direction: column;
  }

  .half_wrap {
    background-image: none;
  }

  .fs-styleguide_2-col {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .pin_apt_txt {
    text-align: center;
  }

  .flex-item {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: 20%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .lottie-hamburger {
    filter: invert();
    width: 2rem;
    height: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .logo_wrapper {
    align-self: auto;
  }

  .logo_wrapper.is-absolute {
    width: 70vw;
  }

  .text_container {
    justify-content: flex-start;
    align-items: center;
    margin-right: 0;
  }

  .button {
    align-items: center;
  }

  .container.is-header {
    justify-content: flex-end;
  }

  .logo_header-wrapper {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .form_field {
    margin-bottom: 15px;
  }

  .footer_row.is-link {
    max-width: 370px;
  }

  .footer_partner_container {
    flex-flow: wrap;
  }

  .footer_gdpr_link {
    flex-flow: wrap;
    place-content: flex-start center;
    align-items: flex-start;
  }

  .footer_gdpr_notes {
    text-align: left;
  }

  .footer_gdpr_column {
    text-align: left;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer_container-item {
    padding: 20px;
  }

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

  .navbar_component {
    align-self: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .accordion_wrapper {
    width: 100%;
    margin-top: 20px;
  }

  .accordion-item {
    width: 100%;
  }

  .nav2_component {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav2_button-wrapper {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .button-secondary, .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .layout8_lightbox-label {
    bottom: 1rem;
    left: 1rem;
  }

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

  .header-content {
    align-items: flex-start;
    display: flex;
  }

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

  .progetto_image {
    height: 30rem;
  }

  .pricing1_tab_menu {
    flex-flow: column;
    margin-bottom: .5rem;
  }

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

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

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

  .num_apt_txt {
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 25px;
  }

  .apt_name {
    height: 25px;
    line-height: 25px;
  }

  .modal-01_popup_container {
    flex-direction: column;
    height: auto;
    max-height: none;
  }

  .modal-01_popup_image {
    min-width: auto;
  }

  .button-proj {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .modal-01_popup_line {
    width: auto;
    height: 1px;
  }

  .modal-01_popup_text {
    flex: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .modal-01_popup_note_wrapper {
    margin-top: 30px;
  }

  .pin_apt_txt {
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 25px;
  }

  .flex-item {
    width: 30%;
  }
}

@media screen and (max-width: 479px) {
  .heading-large {
    font-size: 2.6em;
  }

  .countdown_container {
    flex-flow: wrap;
  }

  .countdown_item {
    border-bottom: 1px solid var(--palette--accent);
    border-right-style: none;
    align-self: stretch;
    min-width: 50%;
    padding: 20px 0;
  }

  .button {
    font-size: .8rem;
  }

  .container {
    text-align: left;
    justify-content: space-between;
    align-items: flex-start;
  }

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

  .form_wrapper {
    width: auto;
  }

  .footer_container {
    grid-row-gap: 24px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .footer_row {
    grid-row-gap: 6px;
  }

  .footer_row.is-link {
    grid-row-gap: 12px;
    flex-flow: column;
  }

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

  .footer_partner_container {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .footer_gdpr_link {
    flex-direction: column;
  }

  .footer_partner {
    align-items: center;
  }

  .footer_gdpr_column {
    text-align: left;
  }

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

  .logo_part02 {
    width: 20rem;
  }

  .accordion_wrapper {
    width: 100%;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .list-container {
    flex-flow: column;
    grid-auto-flow: row;
    display: flex;
    overflow: auto;
  }

  .text-block-item {
    flex: 1;
    min-width: 150px;
  }

  .list-wrap.is-first {
    flex: 1;
  }

  .accordion-item {
    width: 100%;
  }

  .map_container {
    order: -1;
  }

  .nav2_button-wrapper {
    justify-content: flex-end;
    align-items: center;
  }

  .button-secondary {
    color: var(--palette--primary-dark);
  }

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

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

  .layout8_image {
    height: 20rem;
  }

  .nav-primary_logo {
    width: 12rem;
  }

  .button-text {
    font-size: 1rem;
  }

  .footer-info_wrapper {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .heading-hero-large {
    text-align: center;
    font-size: 3rem;
  }

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

  .text-style-h2 {
    font-size: 2rem;
  }

  .maps-content {
    padding: 1.5rem;
  }

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

  .progetto_image {
    height: 16rem;
  }

  .pricing1_tab_menu {
    flex-flow: column;
  }

  .plan_map-wrapper {
    padding: 0;
  }

  .text-style-h3 {
    font-size: 1.5rem;
  }

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

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

  .container-form {
    padding: 2rem;
  }

  .map_block {
    min-height: 250px;
  }

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

  .image-grid.is-big {
    min-height: 20rem;
  }

  .home-grid_component {
    flex-flow: column;
    grid-auto-columns: 1fr;
  }

  .grid_image {
    height: 20rem;
  }

  .home-gird_item {
    grid-template-columns: 1.25fr;
  }

  .grid_apt {
    width: 100%;
  }

  .apt_col {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .apt_col.is-1 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    display: flex;
  }

  .modal-01_lightbox_component {
    padding-left: 20px;
    padding-right: 20px;
    display: none;
  }

  .modal-01_popup_container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .modal-01_popup_image {
    justify-content: space-between;
    min-height: 320px;
  }

  .image-fit-plan {
    height: 80%;
  }

  .modal-01_popup_text {
    width: auto;
  }

  .modal-01_popup_heading, .modal-01_popup_taglio {
    text-align: left;
    line-height: 35px;
  }

  .modal-01_popup_icons {
    flex-wrap: wrap;
  }

  .image-fit-contain-4 {
    height: 80%;
  }

  .header_container {
    text-align: left;
  }

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

  .flex-item {
    width: 50%;
  }
}

#w-node-fbcccf56-942c-6650-ca2f-d48158a1cac2-f2018288 {
  align-self: center;
}

#w-node-_2ef5ad7a-ecf7-f6a7-ef49-bffb10a54f39-f2018288, #w-node-_06647e61-1eff-3d5a-16c0-3ae4732fa92d-f2018288 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6351a972-ec72-4b5d-72e8-94c665fb6f7e-f2018288 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_6351a972-ec72-4b5d-72e8-94c665fb6f7a-f2018288, #w-node-_6351a972-ec72-4b5d-72e8-94c665fb6f80-f2018288 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d1ff7f8b-f318-3448-bbd4-53c468ae2425-f2018288 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-d1ff7f8b-f318-3448-bbd4-53c468ae2427-f2018288, #w-node-d1ff7f8b-f318-3448-bbd4-53c468ae242b-f2018288 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1ce386d4-2578-80ef-b790-df4b7645d967-f2018288 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_75e413b1-9631-4340-acaf-d62f0fa851c6-f2018288 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_0d29301d-fd05-bb50-657e-69c232410871-f2018288, #w-node-_5f4bfb4f-40e1-9930-8bc9-3356303618e1-f2018288 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e3371f6-3a33-715e-fb6f-fa8cdd044ec8-dd044eb6, #w-node-_3e3371f6-3a33-715e-fb6f-fa8cdd044ed4-dd044eb6, #w-node-_3e3371f6-3a33-715e-fb6f-fa8cdd044ed8-dd044eb6, #policyFlagsContainer.w-node-_3e3371f6-3a33-715e-fb6f-fa8cdd044edb-dd044eb6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3e3371f6-3a33-715e-fb6f-fa8cdd044ede-dd044eb6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_3e3371f6-3a33-715e-fb6f-fa8cdd044edf-dd044eb6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_1ce386d4-2578-80ef-b790-df4b7645d967-f2018288 {
    grid-row: span 2 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d6127e16-768d-20c3-ea58-f203fca2d9a3-f2018288, #w-node-d1ff7f8b-f318-3448-bbd4-53c468ae2417-f2018288 {
    order: -9999;
  }

  #w-node-_1ce386d4-2578-80ef-b790-df4b7645d967-f2018288 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_3e3371f6-3a33-715e-fb6f-fa8cdd044ec8-dd044eb6, #w-node-_3e3371f6-3a33-715e-fb6f-fa8cdd044ed4-dd044eb6, #w-node-_3e3371f6-3a33-715e-fb6f-fa8cdd044ed8-dd044eb6, #policyFlagsContainer.w-node-_3e3371f6-3a33-715e-fb6f-fa8cdd044edb-dd044eb6, #w-node-_3e3371f6-3a33-715e-fb6f-fa8cdd044ede-dd044eb6 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bd864a39-582d-e58b-2537-2866872e6690-f2018288, #w-node-_3f4ecb05-76d3-5a99-4c05-a0848117d39f-f2018288, #w-node-_3e7dcc51-1cf7-597d-f901-bd4739b7ad87-f2018288, #w-node-_982092b0-6021-84d3-6fdd-3a7c210388de-f2018288, #w-node-db0ba530-3b48-3ca0-a6b8-6f3df7a257ab-f2018288, #w-node-b46ada9c-2bfc-fb65-73d1-dce4bf76fdde-f2018288, #w-node-b46ada9c-2bfc-fb65-73d1-dce4bf76fdef-f2018288 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-d1ff7f8b-f318-3448-bbd4-53c468ae2417-f2018288 {
    order: -9999;
  }

  #w-node-_1ce386d4-2578-80ef-b790-df4b7645d967-f2018288 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


