:root {
  --black: #231f20;
  --peach-schnapps: #ffdcd6;
  --white: white;
  --lavender-pop: #b981ce;
  --padding-container-desktop: 140px;
  --padding-page-desktop: 60px;
  --padding-container-tablet: 100px;
  --hover-peach-schnapps: #ffdcd64d;
  --muted-turquoise: #8cc4bc;
  --serif: Inter, sans-serif;
  --blue-cv: #006fb9;
  --old-glory-red: #c3102f;
  --grey: #6e6e6e;
  --light-dark: #e1d6bd;
  --letter-spacing-heading-small: .25em;
  --hover-dark: #0006;
  --letter-spacing: .1em;
  --chinese-orange: #f36a45;
  --medium-light: #bfae9f;
  --color: #907761;
  --form: #8a8a8a66;
  --padding-page-tablet: 40px;
  --japanese-red: #8d1d2c;
  --accent-orange: #ffb25c;
  --hover-light: #fffc;
}

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

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

body {
  color: var(--black);
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}

h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.4;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.8;
}

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 {
  max-width: 39em;
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

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

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

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

strong {
  font-weight: bold;
}

figure {
  margin-bottom: 0;
}

.todelete {
  z-index: 3;
  background-color: #a39bff;
  padding: 40px 15%;
  display: none;
  position: relative;
}

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

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

.footer_link.w--current {
  text-decoration: underline;
}

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

.nav_component {
  z-index: 30;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  line-height: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header_component {
  z-index: 21;
  background-color: var(--lavender-pop);
  flex-flow: row;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 800px;
  padding-top: 55px;
  display: flex;
  position: relative;
}

.header_component.is-full {
  border-top-style: none;
  height: 500px;
  min-height: 100vh;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.header_component.is-landing {
  background-color: #fff0;
  justify-content: space-between;
  align-items: flex-end;
  height: 500px;
  min-height: 100vh;
  padding: 100px;
}

.nav_logo_wrapper {
  z-index: 2;
  flex: none;
  width: 26px;
  height: 26px;
  position: relative;
}

.nav_link_wrapper {
  z-index: 2;
  grid-column-gap: 8px;
  cursor: default;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.nav_link_wrapper.is-language {
  grid-column-gap: 8px;
  grid-row-gap: 12px;
  flex-direction: row;
  font-size: 13px;
  position: absolute;
  top: 20px;
  right: 40px;
}

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

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

.section {
  padding: var(--padding-container-desktop) var(--padding-page-desktop);
  grid-column-gap: var(--padding-page-desktop);
  grid-row-gap: var(--padding-page-desktop);
  flex-direction: column;
  display: flex;
  position: relative;
}

.section.background-color-light.is-contattaci {
  padding: 0;
}

.section.background-color-light.is-contattaci.sasqasa {
  background-color: var(--lavender-pop);
}

.section.background-color-light.border-btn {
  border-bottom: 1px solid #000;
}

.section.background-color-light.border-btn.padding-xs, .section.background-color-light.padding-xs {
  padding-top: var(--padding-page-desktop);
  padding-bottom: var(--padding-page-desktop);
}

.section.is-contact {
  background-color: var(--peach-schnapps);
  flex-direction: row;
  justify-content: space-around;
}

.section.is-intro {
  padding-top: var(--padding-container-tablet);
  padding-bottom: var(--padding-container-tablet);
  background-color: var(--peach-schnapps);
  text-align: center;
  justify-content: center;
}

.section.is-static {
  position: static;
}

.section.background-color-cta {
  background-color: var(--lavender-pop);
}

.section.background-color-cta.padding-xs {
  padding-top: var(--padding-page-desktop);
  padding-bottom: var(--padding-page-desktop);
}

.section.is-background-image {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 33vw;
  max-height: 80vh;
  margin-bottom: 4px;
  display: flex;
  position: relative;
}

.section.is-full {
  padding-right: 0;
}

.section.background-color-light-copy {
  background-color: #ffdcd6;
}

.section.background-color-light-copy.is-contattaci {
  padding: 0;
}

.section.color-hover {
  background-color: var(--hover-peach-schnapps);
}

.section.is-double {
  background-color: var(--lavender-pop);
}

.section.is-double.is-negative {
  background-color: var(--peach-schnapps);
}

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

.section.is-double.no-padding {
  padding: 0;
}

.section.is-double.no-padding.background-color-light {
  background-color: var(--peach-schnapps);
}

.section.padding-small {
  padding-top: var(--padding-page-desktop);
  padding-bottom: var(--padding-page-desktop);
}

.section.background-color-turquoise {
  background-color: var(--muted-turquoise);
}

.section.is-intro-copy {
  padding-top: var(--padding-container-tablet);
  padding-bottom: var(--padding-container-tablet);
  text-align: center;
  justify-content: center;
}

.section.is-counter {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--peach-schnapps);
  border-top: 1px solid #000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.heading-medium {
  font-family: var(--serif);
  margin-bottom: 20px;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2;
}

.heading-medium.text-color-dark {
  color: var(--black);
  margin-bottom: 8px;
}

.heading-medium.text-color-cta {
  color: var(--lavender-pop);
  margin-bottom: 8px;
}

.container {
  z-index: 3;
  grid-column-gap: var(--padding-container-desktop);
  grid-row-gap: var(--padding-container-desktop);
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1300px;
  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-hero {
  z-index: 3;
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding-top: 247px;
  padding-bottom: 20px;
  display: flex;
}

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

.container.is-static {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  max-width: 1300px;
  margin-bottom: 60px;
  position: static;
}

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

.container.horizontal-gap-60px.is-large {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
}

.container.flex-horizontal.is-large {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-around;
}

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

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

.container.is-dark {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  color: var(--white);
  text-align: center;
  background-image: linear-gradient(225deg, #29251a00 24%, #29251acc), url('../images/labicum_contact_background.webp');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-y;
  background-size: auto, 100%;
  padding: 100px 60px;
}

.container.gap-20px {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.container.gap-20px.align-center {
  align-items: center;
}

.container.is-full {
  grid-column-gap: var(--padding-container-desktop);
  grid-row-gap: var(--padding-container-desktop);
  justify-content: flex-start;
  align-items: flex-start;
  max-width: none;
}

.container.is-reverse {
  flex-flow: row-reverse;
}

.container.is-footer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  padding-top: 100px;
}

.container.is-medium {
  max-width: 1500px;
}

.container.is-medium.align-horiz {
  grid-column-gap: var(--padding-page-desktop);
  grid-row-gap: var(--padding-page-desktop);
  flex-flow: column;
  margin-top: 60px;
}

.container.is-tipologie {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 60px;
}

.container.is-bg-image-color {
  background-image: linear-gradient(#231f2045, #231f2045), linear-gradient(#006fb9b3, #006fb9b3), url('../images/AC1725_VP02_Exterior_Giardino_Rev02-copia.webp');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, auto;
  padding-top: 6vw;
  padding-bottom: 6vw;
}

.container.is-bg-image {
  background-image: linear-gradient(#0000004d, #0000004d), url('../images/AC1725_VP05_Exterior_Terrazzo_Rev01.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  background-attachment: scroll, fixed;
  padding-top: 6vw;
  padding-bottom: 6vw;
}

.container.is-bg-image.is-01 {
  background-image: linear-gradient(#07304bb3, #07304bb3), url('../images/AC1725_VP02_Exterior_Giardino_Rev02-copia.webp');
}

.container.no-max-w {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: none;
  display: grid;
}

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

.sizing-grow {
  flex: 1;
}

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

.image_wrapper-interaction.is-container {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: none;
}

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

.image_wrapper-interaction.is-container-full {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: none;
}

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

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

.image-fit-cover.is-header {
  object-position: 100% 70%;
}

.item_heading {
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1;
  display: flex;
}

.nav_link {
  border-bottom: 1px solid #fff0;
  margin-top: 4px;
  font-size: .85em;
  line-height: 1;
  text-decoration: none;
}

.nav_link.w--current {
  border-bottom: 1px solid var(--black);
  font-weight: 700;
}

.nav_link.is-language {
  margin-top: 0;
  padding-bottom: 0;
}

.nav_link.is-language.w--current {
  border-bottom-style: none;
  border-bottom-color: #000;
  margin-bottom: 0;
}

.button {
  background-color: var(--lavender-pop);
  justify-content: center;
  align-items: center;
  min-width: 200px;
  padding: 1em 2em;
  font-weight: 700;
  line-height: 1;
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.button:hover {
  background-color: #b981cecc;
  background-image: none;
}

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

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

.button.is-submit {
  border-color: var(--blue-cv);
  background-color: var(--black);
  align-self: center;
  min-width: 200px;
  padding: 12px 24px;
  font-size: 1.1em;
  font-weight: 700;
}

.button.is-submit:hover {
  border-color: var(--black);
  background-color: var(--lavender-pop);
  color: var(--black);
}

.button.is-secondary {
  background-color: #2220;
  background-image: url('../images/Labicum_button_hover.png');
  background-position: 50% -110%;
  background-repeat: no-repeat;
  background-size: 150% 210%;
  align-items: center;
}

.button.is-secondary:hover {
  color: var(--old-glory-red);
  background-position: 50%;
}

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

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

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

.button.is-promo {
  border-color: var(--white);
  background-color: var(--peach-schnapps);
  opacity: 100;
  color: var(--black);
}

.button.is-promo:hover {
  background-color: var(--white);
}

.button.is-dark {
  background-color: var(--black);
  color: var(--white);
}

.button.is-dark:hover {
  background-color: var(--peach-schnapps);
  color: var(--black);
}

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

.button-icon:hover {
  color: var(--light-dark);
  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;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

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

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

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

.heading-small {
  letter-spacing: var(--letter-spacing-heading-small);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: .85em;
  font-weight: 700;
}

.heading-small.is-progetto {
  margin-bottom: 0;
}

.heading-small.is-full {
  border-bottom: 2px solid var(--black);
  align-self: stretch;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.heading-small.is-header {
  color: var(--black);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.4em;
  line-height: 1.6;
}

.heading-small.is-counter {
  flex-flow: column;
  margin-bottom: 24px;
  display: flex;
}

.heading-small.margin-btn {
  margin-bottom: 20px;
}

.list_grid {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 40px;
  display: flex;
}

.list_grid_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

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

.list_grid_icon.is-invert {
  filter: contrast(200%) invert();
  margin-bottom: -4px;
}

.tipologia_container {
  text-align: center;
  cursor: pointer;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.display-none {
  display: none;
}

.poi_column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  width: 100%;
  max-width: 900px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.header_container {
  z-index: 3;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 100%;
  margin-bottom: auto;
  display: flex;
}

.header_container.is-static {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.flags_wrapper {
  z-index: 40;
  display: none;
  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: 140px;
  display: flex;
  position: fixed;
  top: 5vh;
  right: 40px;
}

.header_hover {
  z-index: 2;
  background-color: var(--hover-dark);
  position: absolute;
  inset: 0;
}

.nav_link_container {
  grid-column-gap: 2.4vw;
  grid-row-gap: 2.4vw;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.flag_line {
  background-color: var(--peach-schnapps);
  opacity: .5;
  flex: none;
  width: 1px;
  height: 60%;
}

.flag_component {
  background-color: var(--white);
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

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

.flag_component.is-bss {
  background-color: var(--light-dark);
}

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

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

.flag_component.is-promo {
  background-color: var(--black);
  color: var(--white);
  margin-top: 48px;
}

.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_icon_wrapper.is-promo {
  height: auto;
  padding-left: 0;
  padding-right: 0;
}

.flag_txt_wrapper {
  z-index: 1;
  flex-direction: row;
  justify-content: flex-end;
  align-self: stretch;
  align-items: center;
  display: none;
  position: relative;
  overflow: hidden;
}

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

.flag_text.is-promo {
  width: auto;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  transform: rotate(-90deg);
}

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

.tipologia_image_wrapper {
  z-index: 1;
  width: 100px;
  height: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer_component {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--old-glory-red);
  color: var(--white);
  flex-flow: column;
  padding-bottom: 40px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.button_component {
  color: var(--black);
  text-align: center;
  cursor: pointer;
  flex-direction: column;
  margin-top: 48px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.button_component.margin-top-xs {
  margin-top: 20px;
}

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

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

.popup-area_box {
  background-color: var(--white);
  text-align: center;
  border-style: solid;
  border-width: 1px;
  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 {
  background-color: var(--peach-schnapps);
  max-width: 340px;
}

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

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

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

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

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

.form_icon {
  width: 24px;
  height: 24px;
  color: var(--grey);
}

.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 {
  max-width: 450px;
  margin-bottom: 40px;
}

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

.top_txt {
  margin-top: 20px;
}

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

.footer_gdpr {
  opacity: .7;
  color: var(--peach-schnapps);
  text-align: center;
  font-size: .7em;
}

.text_container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-self: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.text_container.is-left {
  text-align: left;
  align-self: auto;
  align-items: flex-start;
  width: 50%;
  max-width: 500px;
}

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

.text_container.is-left.is-center.width-small {
  width: 40%;
}

.text_container.is-left.is-center.hdhd {
  width: auto;
}

.text_container.is-left.is-center.max-w, .text_container.is-left.is-center.max-w-xl {
  width: auto;
  max-width: 600px;
}

.text_container.is-left.is-sticky {
  position: sticky;
  top: 140px;
}

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

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

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

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

.text_container.is-card.background-color-white {
  color: var(--black);
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}

.text_container.is-near {
  margin-top: -48px;
}

.text_container.is-location {
  align-self: auto;
  align-items: flex-start;
  width: 50%;
  max-width: 500px;
}

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

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

.tipologia_text_wrapper {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  line-height: 1;
  display: flex;
}

.slide_button_wrapper {
  text-transform: uppercase;
  align-items: center;
  margin-top: 20px;
  font-size: .8rem;
  line-height: 1;
  display: none;
}

.slide_button_icon {
  background-color: var(--chinese-orange);
  width: 24px;
  height: 24px;
  color: var(--white);
  border-radius: 100%;
  margin-bottom: 2px;
  margin-right: 8px;
  padding: 3px;
}

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

.poi_item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column wrap;
  align-items: center;
  width: 190px;
  display: flex;
}

.poi_text {
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1;
}

.poi_distance_text {
  color: var(--medium-light);
  font-size: .8em;
}

.accordion_head {
  border-bottom: 1px solid var(--grey);
  color: var(--black);
  text-transform: uppercase;
  cursor: pointer;
  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);
  width: 42px;
  height: 42px;
  color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 13px;
  display: flex;
}

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

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

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

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

.lightbox_logo {
  background-image: url('../images/SpazioTrivulzio_logo-peach.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 190px;
  height: 60px;
}

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

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

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

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

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

.lightbox_wrapper {
  flex-direction: column;
  align-items: center;
  margin-bottom: auto;
  display: flex;
}

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

.button_tertiary_line {
  background-color: var(--black);
  align-self: center;
  height: 1px;
}

.flag_icon {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  overflow: hidden;
}

.flag_icon.is-promo {
  flex: none;
  width: 60px;
  height: 60px;
  transform: rotate(18deg);
}

.background_image {
  z-index: 1;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.background_image.is-bottom {
  left: 0;
  right: auto;
  transform: rotate(180deg);
}

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

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

.image-fullscreen {
  object-fit: cover;
  width: 100%;
  height: 60vw;
}

.image-fullscreen.is-birdview {
  z-index: 1;
  object-fit: contain;
  height: auto;
  max-height: 90vh;
  position: relative;
}

.image-fullscreen.is-birdview.is-hover {
  z-index: 2;
  opacity: 0;
  position: absolute;
}

.poi_icon {
  background-color: var(--old-glory-red);
  width: 48px;
  height: 48px;
  color: var(--peach-schnapps);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 8px;
  font-size: 12px;
  line-height: 0;
  display: flex;
}

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

.form_heading {
  color: var(--black);
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 1.6rem;
  line-height: 1.2;
}

.card_heading {
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.4;
}

.card_text {
  max-width: 370px;
  color: var(--medium-light);
  margin-bottom: 0;
  font-size: 1.7em;
  font-style: italic;
  line-height: 1.2;
}

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

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

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

.form_wrapper {
  max-width: 800px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.form_field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--black);
  background-color: var(--peach-schnapps);
  color: var(--black);
  border-radius: 0;
  align-self: stretch;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 8px;
  padding-left: 0;
  padding-right: 0;
  font-weight: 500;
}

.form_field:focus {
  border-bottom-width: 2px;
  border-bottom-color: var(--lavender-pop);
  padding-bottom: 6px;
}

.form_field::placeholder {
  font-weight: 400;
}

.form_field.is-message {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 100px;
  max-height: 200px;
}

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

.form_field.is-select {
  padding-bottom: 0;
}

.form_container {
  padding: 140px var(--padding-page-desktop);
  grid-column-gap: 24px;
  grid-row-gap: 36px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form_component {
  border: 20px solid var(--peach-schnapps);
  background-color: var(--peach-schnapps);
  flex: 1;
  align-self: stretch;
  max-width: 50%;
  margin-left: auto;
  position: relative;
}

.form_text {
  font-size: 13px;
  line-height: 22px;
}

.contact_text_container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  max-width: 37em;
  margin-left: auto;
  margin-right: auto;
  padding: 140px 60px;
  display: flex;
}

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

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

.form_label {
  letter-spacing: .05em;
  text-transform: uppercase;
  align-self: flex-start;
  margin-bottom: 0;
  font-size: .8em;
  font-weight: 700;
}

.form_flag {
  background-color: var(--light-dark);
  width: 50px;
  height: 50px;
  color: var(--black);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 12px;
}

.intro_text {
  max-width: 28em;
  color: var(--medium-light);
  margin-bottom: 20px;
  font-family: contralto-small;
  font-size: 2.1rem;
  line-height: 1.3;
}

.intro_text.is-contesto {
  max-width: 17em;
}

.intro_text.is-progetto {
  max-width: 15em;
}

.line {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  height: 1px;
}

.button-secondary {
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
  font-size: .9em;
  font-weight: 700;
}

.button-secondary.is-negative {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--peach-schnapps);
  align-items: center;
  margin-top: 20px;
  line-height: 1;
  transition: all .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.button-secondary.is-negative:hover {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.container_border {
  border-style: solid;
  border-width: 1px;
  padding: 10px;
}

.line-vertical {
  background-image: linear-gradient(#9e5705, #eed6b0);
  width: 1px;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 50%;
}

.footer_link_container {
  grid-column-gap: 24px;
  border-top: 1px solid var(--peach-schnapps);
  color: var(--peach-schnapps);
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  margin-top: 72px;
  margin-bottom: 20px;
  padding-top: 20px;
  font-size: .8em;
  line-height: 1;
  display: flex;
}

.map {
  z-index: 1;
  border-style: solid;
  border-width: 1px;
  height: 34vw;
  position: relative;
}

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

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

.poi_text_container {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.map_component {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-direction: column;
  display: flex;
  position: relative;
}

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

.tipologia_component {
  cursor: pointer;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 160px;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.asdasd {
  width: 170px;
  height: 30px;
  margin-bottom: 20px;
}

.asdasd.is-invert {
  filter: invert();
  margin-top: 40px;
  margin-bottom: 0;
}

.birdview_pin {
  z-index: 3;
  width: 80px;
  height: 90px;
  margin-left: -30px;
  position: absolute;
  bottom: 30%;
  left: 37%;
}

.birdview_wrapper {
  max-height: 90vh;
  position: relative;
}

.scroll_component {
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  flex-direction: column;
  align-items: center;
  font-size: .85rem;
  display: flex;
}

.scroll_component.is-negative {
  filter: invert();
}

.scroll_lottie {
  width: 60px;
  height: 60px;
  margin-left: -20px;
}

.gallery_container {
  z-index: 1;
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.gallery_item {
  color: var(--peach-schnapps);
  cursor: pointer;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gallery_image {
  z-index: 1;
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: relative;
}

.gallery_image.is-progetto {
  background-image: url('../images/AC1374_Roma_Labicum_VPInt_01_-rev02.webp');
}

.gallery_image.is-location {
  background-image: url('../images/Labicum_location-03.webp');
}

.gallery_image.is-video {
  background-image: url('../images/AC1374-ITA-Roma-Labicum_VPInt_03_rev00.webp');
  background-position: 90%;
}

.gallery_hover {
  z-index: 2;
  background-color: var(--hover-dark);
  letter-spacing: var(--letter-spacing);
  justify-content: center;
  align-items: center;
  padding: 140px 20px;
  font-family: contralto-small;
  font-size: 40px;
  display: flex;
  position: absolute;
  inset: 0%;
}

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

.promo_plus {
  width: 40px;
  height: 40px;
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: 6px;
  display: flex;
}

.promo_box {
  border-style: solid;
  border-width: 1px;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.place_pin {
  background-color: var(--lavender-pop);
  width: 26px;
  height: 26px;
  color: var(--white);
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px;
  display: flex;
}

.slider_component {
  z-index: 1;
  background-color: #ddd0;
  flex: 1;
  align-self: stretch;
  width: 100%;
  height: 100%;
  padding-bottom: 100px;
}

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

.place_link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1;
  transition: color .25s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.place_link:hover {
  color: var(--lavender-pop);
}

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

.contact_div.is-big {
  margin-bottom: auto;
}

.contact_div.is-small {
  margin-top: 60px;
}

.map_link {
  z-index: 10;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--peach-schnapps);
  border-top-style: solid;
  border-top-width: 1px;
  border-left-style: solid;
  border-left-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
  flex-direction: column;
  align-self: center;
  align-items: center;
  padding: 10px 24px;
  font-weight: 400;
  line-height: 1;
  transition: color .25s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: absolute;
  bottom: 0;
}

.map_link:hover {
  color: var(--chinese-orange);
}

.slider_arrow {
  z-index: 1;
  width: 24px;
  height: 24px;
  color: var(--black);
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-right: 60px;
  padding: 4px;
  font-size: 1.4em;
  display: flex;
  position: absolute;
  bottom: 20px;
  right: 0;
}

.slider_arrow.is-left {
  right: 36px;
}

.slider_arrow.is-disable {
  z-index: 3;
  background-color: #fff9;
}

.slider_arrow.is-disable.is-right {
  display: none;
}

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

.heading-contact {
  margin-bottom: 10px;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1;
}

.heading-contact.is-small {
  margin-bottom: 16px;
  font-size: 1.6em;
  line-height: 1.3;
}

.heading-contact.is-push {
  color: var(--peach-schnapps);
  margin-top: 48px;
}

.nav_dot {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6px;
  height: 6px;
  margin-top: 2px;
  display: flex;
}

.flag_txt_wrapper-promo {
  z-index: 1;
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: auto;
  height: 227px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.flag_promo_container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  flex: none;
  align-items: flex-start;
  width: 310px;
  padding: 60px 40px;
  font-family: contralto-small;
  font-size: 1.7em;
  line-height: 1.2;
  display: flex;
}

.flag_logo {
  filter: invert();
  object-position: 0% 50%;
  width: 160px;
  height: 26px;
  margin-top: 4px;
}

.text-gradient {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.heading-xlarge {
  margin-bottom: 16px;
  font-family: contralto-small;
  font-size: 2.7rem;
  line-height: 1.2;
}

.heading-xlarge.text-color-light {
  color: var(--light-dark);
}

.card_par {
  max-width: 90%;
}

.partner_link.is-fund {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: flex-end;
  text-decoration: none;
  display: flex;
}

.partner_logo {
  filter: invert();
  align-self: center;
  width: 100%;
  max-width: 170px;
  height: 100%;
  max-height: 60px;
}

.footer_partner_container {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: center;
  display: flex;
}

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

.image-fullscreen_wrapper {
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  min-height: 62vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.par-big {
  max-width: 25em;
  margin-bottom: 0;
  font-size: 1.7em;
  line-height: 1.6;
}

.par-big.text-color-white {
  max-width: none;
  color: var(--white);
}

.par-big.is-push {
  max-width: none;
  color: var(--peach-schnapps);
  margin-top: 40px;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.4;
}

.par-big.width-auto {
  max-width: none;
}

.text-weight-medium {
  font-weight: 500;
}

.video-01_popup {
  z-index: 300;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #000000e6;
  flex-direction: column;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0;
}

.video-01_x {
  z-index: 2;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.video-01_x_asta {
  background-color: #fff;
  flex: none;
  width: 60%;
  height: 2px;
  position: absolute;
  transform: rotate(45deg);
}

.video-01_x_asta._2 {
  transform: rotate(-45deg);
}

.video_component {
  z-index: 1;
  flex: none;
  max-height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
}

.video-container {
  width: 100%;
}

.header_video {
  z-index: 1;
  height: 100%;
  position: absolute;
  inset: 0;
}

.header_video.is-contesto {
  background-image: url('../images/Labicum_location-03.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.gdpr_richtext p {
  max-width: none;
  font-size: 14px;
}

.gdpr_richtext h2 {
  font-family: var(--serif);
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.gdpr_richtext h4 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 1.2em;
  font-weight: 500;
}

.gdpr_richtext h5 {
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 0;
}

.gdpr_richtext h1 {
  color: var(--lavender-pop);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 10px;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5;
}

.gdpr_richtext h3 {
  color: #c3102f;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 40px;
  font-size: 1.1em;
}

.gdpr_richtext h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.gdpr_richtext a {
  color: var(--lavender-pop);
  text-decoration: underline;
}

.gdpr_richtext h5 {
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 0;
}

.gdpr_richtext li {
  margin-bottom: 10px;
}

.gdpr_richtext ul {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
  list-style-type: lower-alpha;
}

.gdpr_richtext ol {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
}

.slider01 {
  background-color: #0000;
  width: 133vh;
  max-width: 100%;
  height: 86vh;
  max-height: 57vw;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.slider01_container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
}

.heading-large {
  font-weight: 700;
  line-height: 1.3;
}

.heading-large.is-static {
  max-width: 600px;
  font-size: 3.5em;
  line-height: 1.2;
}

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

.par-intro {
  font-size: 1.15em;
}

.par-intro.is-contesto {
  max-width: 520px;
}

.container-3 {
  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: 2;
  background-color: #00000045;
  position: absolute;
  inset: 0;
}

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

.heading-promo {
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  padding: 4px 20px;
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.2;
}

.container-4 {
  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;
}

.policy-flag {
  font-size: 13px;
}

.form_link {
  color: var(--chinese-orange);
  text-decoration: underline;
}

.form_message {
  background-color: #ddd0;
  width: 0;
  height: 0;
  padding: 0;
  display: none;
  position: absolute;
}

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

.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(--chinese-orange);
  text-decoration: underline;
}

.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;
  border-style: solid;
  border-width: 1px;
  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;
  position: absolute;
  inset: 0%;
}

.cookie-prefs_checkbox.w--redirected-checked {
  border-color: var(--chinese-orange);
  background-color: var(--chinese-orange);
  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;
  border-style: solid;
  border-width: 1px;
  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;
}

.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-cookie {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--black);
  color: var(--black);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  background-color: #29251a00;
  background-image: url('../images/Labicum_button_hover.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 210%;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 1;
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.button-cookie:hover {
  background-position: 50% -50%;
}

.button-cookie.is-secondary {
  background-color: #2220;
  background-image: url('../images/Labicum_button_hover.png');
  background-position: 50% -110%;
  background-repeat: no-repeat;
  background-size: 150% 210%;
  align-items: center;
}

.button-cookie.is-secondary:hover {
  color: var(--old-glory-red);
  background-position: 50%;
}

.button-cookie.is-banner {
  align-self: flex-end;
}

.dropdown_close {
  width: 100%;
  padding: 10px 0;
  font-weight: 400;
}

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

.dropdown_choice:hover {
  background-color: #b981ce4d;
}

.dropdown_choice.w--current {
  background-color: var(--lavender-pop);
  color: var(--black);
}

.dropdown_list {
  margin-top: 1px;
  font-weight: 400;
}

.dropdown_list.w--open {
  border-right: 1px solid var(--form);
  border-bottom: 1px solid var(--form);
  border-left: 1px solid var(--form);
  background-color: var(--white);
  margin-top: 1px;
}

.nav_logo_wrapper-mobile {
  z-index: 2;
  flex: none;
  width: 170px;
  height: 43px;
  display: none;
  position: relative;
}

.nav_logo_wrapper-mobile.w--current {
  height: 44px;
}

.nav_container {
  width: 100%;
  padding: 14px var(--padding-page-desktop);
  border-bottom: 2px solid var(--black);
  background-color: var(--peach-schnapps);
  color: var(--black);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav_partner {
  width: 100%;
  padding-right: var(--padding-page-desktop);
  padding-left: var(--padding-page-desktop);
  color: var(--white);
  background-color: #c3102f;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  display: flex;
  overflow: hidden;
}

.hines-logo {
  height: 1.2em;
  margin-bottom: .25em;
}

.header_column {
  width: 50%;
}

.header_column.is-text {
  padding: 100px var(--padding-page-desktop) var(--padding-page-desktop);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.header_column.is-image {
  height: 100vh;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.header_column.is-header-full {
  z-index: 3;
  width: auto;
  padding: var(--padding-page-desktop);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--white);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.header_column.is-header-full.no-effect {
  border-style: solid;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.header_logo {
  object-position: 0% 50%;
  height: 4.5vw;
  max-height: 64px;
}

.word {
  color: var(--peach-schnapps);
  display: none;
}

.word.is-01 {
  display: inline;
}

.slider_wrapper {
  flex: 1;
  max-width: 1100px;
  margin-left: auto;
  overflow: hidden;
}

.slider_mask {
  width: 400px;
  max-width: 49%;
  overflow: visible;
}

.slide {
  margin-right: 4%;
}

.slider_navigator {
  justify-content: flex-start;
  align-items: flex-start;
  width: 480px;
  height: 4px;
  margin-left: 0;
  padding-top: 0;
  display: flex;
  left: 0;
  overflow: hidden;
}

.servizi_list {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  flex-flow: wrap;
  flex: 1;
  max-width: 800px;
  margin-top: 42px;
  margin-bottom: 0;
  margin-left: auto;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.servizi_list.is-vertical {
  flex-flow: column;
  flex: 0 auto;
  width: 50%;
}

.servizi_item {
  flex: 1;
  min-width: 150px;
  max-width: 230px;
}

.servizi_item:where(.w-variant-793f7b9a-d394-ea4c-715b-8b4f1ca66222) {
  flex-flow: column;
  max-width: 800px;
  display: flex;
}

.servizi_heading {
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.4;
}

.servizi_heading:where(.w-variant-793f7b9a-d394-ea4c-715b-8b4f1ca66222) {
  display: none;
}

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

.item_text:where(.w-variant-793f7b9a-d394-ea4c-715b-8b4f1ca66222), .item_text.is-rich {
  display: none;
}

.item_text.is-rich:where(.w-variant-793f7b9a-d394-ea4c-715b-8b4f1ca66222) {
  width: 100%;
  display: block;
}

.servizi_icon {
  object-position: 0% 50%;
  width: 72px;
  height: 72px;
}

.servizi_icon:where(.w-variant-793f7b9a-d394-ea4c-715b-8b4f1ca66222) {
  margin-top: 15px;
  margin-bottom: 15px;
}

.servizi_icon.is-small {
  width: 60px;
  height: 60px;
}

.map_list {
  color: var(--peach-schnapps);
  align-self: stretch;
  margin-top: 40px;
  margin-bottom: 0;
  padding-left: 28px;
  line-height: 1.5;
}

.map_list.is-negative {
  color: var(--black);
}

.map_list_item {
  border-bottom: 1px solid var(--black);
  margin-bottom: 14px;
  padding-top: 6px;
  padding-bottom: 14px;
}

.map_list_item.is-last {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.map_list_heading {
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.1;
  position: relative;
  top: -3px;
}

.lightbox_text_container-2 {
  grid-row-gap: 40px;
  background-color: var(--chinese-orange);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 40px;
  display: flex;
}

.tipologia_mq {
  text-transform: uppercase;
  margin-bottom: -.1em;
  font-size: 1.1em;
  font-weight: 700;
  display: flex;
}

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

.slide_caption {
  object-position: 0% 50%;
  width: 100%;
  font-size: 1.4em;
  font-weight: 700;
}

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

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

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

.apartment_txt-2 {
  text-transform: capitalize;
  font-size: 3em;
  font-weight: 600;
  line-height: 1;
}

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

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

.map_wrapper {
  flex: 1;
  align-self: stretch;
  width: 50%;
  height: 50vw;
  max-height: 590px;
  margin-left: auto;
  position: sticky;
  top: 140px;
  overflow: hidden;
}

.map_wrapper.is-large {
  flex: 0 auto;
  width: 100%;
  height: 100%;
  max-height: none;
  margin-left: 60px;
}

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

.servizio_image_wrapper {
  z-index: 1;
  height: 25vw;
  max-height: 400px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.partner_wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  font-size: .9em;
  font-weight: 700;
  display: flex;
}

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

.keypoint_item {
  background-color: var(--white);
  text-align: center;
  max-width: 350px;
  padding: 40px 32px;
}

.keypoint_icon {
  object-position: 0% 50%;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.nav_partner_wrapper {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 7px;
  display: flex;
}

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

.image_wrapper.is-slider {
  flex: 1;
}

.image_wrapper.is-full-slider {
  flex: 1;
  width: 100%;
  height: 100%;
  max-height: none;
}

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

.h1 {
  max-width: 18em;
  color: var(--white);
  margin-top: 100px;
  font-size: 1.7em;
  line-height: 1.6;
}

.h1.is-header {
  margin-top: 40px;
}

.h1.is-hero-en {
  max-width: 20em;
}

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

.partner_fund {
  color: #ffdcd6;
  width: 4.4em;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.2;
}

.footer_title {
  color: #ffdcd6;
  text-align: center;
  line-height: 1.2;
}

.partner_logo-2 {
  align-self: center;
  width: 100%;
  max-width: 170px;
  height: 100%;
  max-height: 60px;
}

.partner_logo-2.is-hines {
  max-width: 100px;
}

.partner_logo-2.is-fund {
  width: 107px;
}

.partner_logo-2.is-savills {
  width: 80px;
  max-width: none;
  height: 80px;
  max-height: none;
}

.partner_logo-2.is-colliers {
  width: 100px;
  max-width: none;
  height: 60px;
  max-height: none;
}

.subfooter {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.page_background {
  background-image: linear-gradient(#b981ced9, #b981ced9), url('../images/AC5091_VP06_Interior_Living_Trilocale_rev06.webp');
  background-position: 0 0, 50%;
  background-size: auto, auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.page_background.error-page {
  background-image: linear-gradient(#b981ced9, #b981ced9), url('../images/AC5091_VP10_Interior_Living_Rev04.webp');
  background-size: auto, cover;
}

.container-technical {
  z-index: 2;
  text-align: center;
  background-color: #fff;
  border-radius: 0;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 800px;
  max-width: 100%;
  min-height: 400px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 80px 40px;
  display: flex;
  position: relative;
}

.monogram_form {
  width: 100%;
  max-width: 40px;
  margin-bottom: 40px;
}

.button_componentasdasd {
  color: var(--black);
  text-align: center;
  cursor: pointer;
  flex-direction: column;
  margin-top: 48px;
  font-size: 15px;
  text-decoration: none;
  display: flex;
}

.place_pin-2 {
  color: #231f20;
  background-color: #006fb9;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  padding: 4px;
  display: flex;
}

.place_pin-2.is-big {
  z-index: 3;
  background-color: var(--lavender-pop);
  color: #fffaeb;
  width: 40px;
  height: 40px;
  padding: 8px;
  position: relative;
}

.button-3 {
  background-color: var(--lavender-pop);
  background-image: none;
  padding: 1em 2em;
  font-weight: 700;
  line-height: 1;
  transition: background-color .25s;
  display: flex;
}

.button-3:hover {
  background-color: #b981cecc;
  background-image: none;
}

.place_link-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1;
  transition: color .25s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.place_link-2:hover {
  color: #006fb9;
}

.place_link-2.is-contact {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--lavender-pop);
  flex-flow: column;
  font-size: 1.2em;
}

.place_link-2.is-contact:hover {
  text-decoration: none;
}

.heading-medium-3 {
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.heading {
  color: #695f42;
  margin-bottom: 30px;
}

.contanct_container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.heading-small-2 {
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-top: 0;
  font-size: .85em;
  font-weight: 700;
}

.heading-small-2._404 {
  color: var(--lavender-pop);
  font-size: 3em;
}

.heading-medium-4 {
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.list {
  list-style-type: lower-roman;
}

.header_gdpr {
  z-index: 20;
  background-color: var(--lavender-pop);
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.link-block {
  width: 120px;
}

.back_home {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.par_div {
  color: var(--peach-schnapps);
}

.par_div.is-negative {
  color: var(--black);
}

.bold-white {
  color: var(--white);
  font-weight: 700;
}

.div-block {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 130px;
  display: flex;
}

.div-block-2 {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.servizi_heading-s {
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.3;
}

.countdoen_container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: none;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 20px;
  display: flex;
}

.countdoen_container.no-margin {
  margin-top: 0;
}

.countdown_column {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 72px;
  display: flex;
}

.countdown_number {
  color: var(--peach-schnapps);
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1;
}

.countdown_number.is-small {
  font-size: 2em;
}

.countdown_text {
  color: var(--black);
  font-size: 1.3em;
}

.countdown-01_container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.countdown-01_column {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--peach-schnapps);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.countdown-01_number {
  font-size: 1.5em;
  line-height: 1;
}

.countdown-01_text {
  text-transform: uppercase;
  font-size: .8em;
}

.countdown-01_line {
  background-color: var(--blue-cv);
  align-self: stretch;
  width: 1px;
}

.span-normal {
  font-weight: 400;
}

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

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

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

.cookiebot-embed {
  width: 100%;
}

.text-block {
  margin-bottom: 10px;
}

.background_image-2 {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.image-fit-cover-2 {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
}

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

.header-full-_ogo {
  width: 400px;
  height: 100px;
}

.title-promo {
  font-family: var(--serif);
  color: var(--white);
  text-transform: none;
  font-size: 36px;
  font-weight: 700;
}

.title-promo.is-negative {
  color: var(--black);
}

.title-promo_wrapper {
  background-color: var(--blue-cv);
  padding-left: 20px;
  padding-right: 20px;
}

.title-promo_wrapper.is-negative {
  background-color: var(--white);
}

.text-span-3 {
  color: var(--black);
}

.text-span-3.is-negative {
  color: var(--blue-cv);
}

.nav-promo_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-promo_logo_wrapper {
  z-index: 2;
  flex: none;
  width: 120px;
  height: 40px;
  position: relative;
}

.label-04_link {
  z-index: 1;
  min-height: 100%;
  font-family: var(--serif);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 140px;
  padding-right: 140px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-promo_container {
  grid-row-gap: 48px;
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 20px;
  display: flex;
}

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

.label-04_text {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.label-04_promo {
  z-index: 50;
  background-color: var(--blue-cv);
  cursor: pointer;
  flex-direction: column;
  flex: none;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.nav-promo_links {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1500px;
  display: flex;
}

.nav-promo_component {
  z-index: 31;
  background-color: #fff;
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
}

.nav-promo_link {
  color: #2b2b2b;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding-bottom: 2px;
  font-size: .8rem;
  line-height: 1;
  text-decoration: none;
}

.nav-promo_link.w--current {
  border-bottom: 1px solid #fff;
  font-weight: 700;
}

.label-04_close {
  z-index: 3;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: absolute;
  right: 50px;
}

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

.text-span-136 {
  text-transform: none;
  font-size: 1.6em;
  font-style: italic;
}

.text-span-136.relative {
  font-size: 1.8em;
  position: relative;
  top: -6px;
  left: 1px;
}

.promo_title-icon {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.icon-promo {
  width: 60px;
  height: 60px;
  color: var(--peach-schnapps);
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-promo.a {
  background-image: url('../images/poltrona-promo.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 60%;
  width: 70px;
  height: 70px;
}

.icon-promo.b {
  background-image: url('../images/otto.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 60%;
  width: 70px;
  height: 70px;
}

.card-text_body {
  z-index: 1;
  text-align: center;
  letter-spacing: .5px;
  max-width: none;
  margin-top: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}

.card-text_body.promo {
  z-index: 2;
  color: #f0801a;
  text-align: center;
  width: 80%;
  margin-top: 15px;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.7;
  display: block;
  position: relative;
  overflow: hidden;
}

.piu {
  z-index: 2;
  background-color: var(--peach-schnapps);
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 54px;
  height: 54px;
  margin-left: -20px;
  margin-right: -20px;
  font-family: Montserrat, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  position: relative;
}

.lotti_promo {
  width: 50px;
  height: 50px;
}

.btp-promo {
  z-index: 1;
  width: 50%;
  color: var(--white);
  background-image: linear-gradient(#0009, #0009);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.btp-promo.smart {
  background-image: linear-gradient(#0009, #0009), none;
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.card-promo_wrapper {
  flex-direction: row;
  justify-content: space-around;
  min-height: 450px;
  margin-top: 40px;
  margin-bottom: 50px;
  display: flex;
  position: relative;
}

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

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

.title-promo-2 {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  margin-top: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 30px;
  display: flex;
}

.title-promo-2.a {
  border-top-width: 0;
  flex-direction: column;
  align-items: center;
  width: auto;
  height: 80px;
  display: flex;
}

.title-promo-2.mod {
  height: auto;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 2.2em;
  line-height: 40px;
}

.card-promo-image_hover {
  z-index: 0;
  opacity: 0;
  background-color: #0006;
  position: absolute;
  inset: 0%;
}

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

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

.card-promo-image_wrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.image-hover {
  z-index: 0;
  background-color: var(--hover-dark);
  position: absolute;
  inset: 0%;
}

.monogramma {
  z-index: 2;
  background-color: var(--blue-cv);
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 10vw;
  max-width: 170px;
  height: 10vw;
  max-height: 170px;
  margin-bottom: 32px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.monogramma.is-static {
  position: static;
}

.monogramma_image {
  width: 50%;
  height: 50%;
}

.icon-medium {
  width: 60px;
  height: 60px;
  color: var(--blue-cv);
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-medium.a {
  background-image: url('../images/poltrona-promo.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 60%;
  width: 70px;
  height: 70px;
}

.icon-medium.b {
  background-image: url('../images/otto.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 60%;
  width: 70px;
  height: 70px;
}

.bold-blu {
  color: var(--blue-cv);
  font-weight: 700;
}

.counter__riquadro {
  border: 2px solid var(--peach-schnapps);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  min-height: 100px;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.counter__numero {
  color: #f0801a;
  letter-spacing: 4px;
  margin-top: 10px;
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
  transition: opacity .2s;
  position: relative;
}

.counter__numero.counter {
  color: var(--peach-schnapps);
  padding-top: 0;
}

.counter__persone {
  color: #f0801a;
  letter-spacing: 4px;
  margin-top: 10px;
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
  transition: opacity .2s;
  position: relative;
}

.counter__persone.small {
  color: var(--black);
  letter-spacing: 2px;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 0 7px;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  display: block;
  position: absolute;
  top: auto;
  bottom: -11px;
}

.column {
  width: 50%;
  height: 100%;
}

.column.padding-lateral {
  justify-content: center;
  align-items: center;
  width: auto;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.column.is-image {
  width: 100%;
  height: 45vw;
  min-height: 700px;
}

.column.is-image.h-100 {
  height: 100%;
}

.column.is-image.is-sticky {
  position: sticky;
  top: 0;
}

.column.padding {
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 140px 60px;
  display: flex;
}

.column.is-counter {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.topnav_language {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  display: flex;
}

.topnav_language_link.w--current {
  font-weight: 700;
  text-decoration: underline;
}

.topnav_language_line {
  font-size: 8px;
}

.is-logo {
  color: var(--peach-schnapps);
  font-size: 1.4em;
}

.placholder-txt {
  z-index: 1;
  color: #fff;
  background-color: #231f20;
  padding: 10px 20px;
  font-weight: 700;
  position: absolute;
  inset: auto 10px 10px auto;
}

.span-lavanda {
  color: var(--lavender-pop);
}

.span-peach {
  color: var(--peach-schnapps);
}

.topic_list {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  color: var(--peach-schnapps);
  flex-flow: wrap;
  align-self: stretch;
  margin-top: 5vw;
  margin-bottom: 0;
  padding-left: 0;
  line-height: 1.5;
  list-style-type: none;
  display: flex;
}

.topic_list.is-negative {
  grid-row-gap: 3vw;
  color: var(--black);
}

.topic_list_heading {
  font-size: 1.3em;
  line-height: 1.2;
  position: relative;
  top: -3px;
}

.topic_list_item {
  border-bottom: 1px solid var(--black);
  margin-bottom: 10px;
  padding-top: 6px;
  padding-bottom: 10px;
}

.topic_list_item.is-last {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.div-block-3 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  display: flex;
}

.container_grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  margin-left: -60px;
  margin-right: -60px;
  display: grid;
}

.topic_item {
  flex: 1;
  min-width: 150px;
  max-width: 250px;
}

.counter_line {
  background-color: #6e6e6e;
  flex: 1;
  height: 1px;
}

.counter_line.is-vertical {
  flex: none;
  align-self: stretch;
  width: 1px;
  height: auto;
}

.counter_component {
  padding-left: 60px;
  padding-right: 60px;
}

.counter_number {
  margin-top: -8px;
  margin-bottom: 8px;
  font-size: 60px;
  line-height: 1.2;
}

.item_list {
  color: var(--peach-schnapps);
  align-self: stretch;
  margin-top: 40px;
  margin-bottom: 0;
  padding-left: 28px;
  line-height: 1.5;
}

.item_list.is-negative {
  color: var(--black);
}

.item_list_item {
  margin-bottom: 14px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.5;
}

.item_list_item.is-last {
  border-bottom-style: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.item_list_item.is-negative {
  color: var(--peach-schnapps);
}

.item_list_heading {
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}

.item_list_heading.is-negative {
  display: none;
}

.item_list_heading.is-negative:where(.w-variant-793f7b9a-d394-ea4c-715b-8b4f1ca66222) {
  color: var(--peach-schnapps);
  display: flex;
}

.item_list_heading.is-negative.is-xl:where(.w-variant-793f7b9a-d394-ea4c-715b-8b4f1ca66222) {
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.4;
}

.list-item {
  margin-bottom: 10px;
}

.icon {
  margin-right: 0;
}

.heading-2:where(.w-variant-793f7b9a-d394-ea4c-715b-8b4f1ca66222) {
  display: none;
}

@media screen and (max-width: 991px) {
  .nav_component {
    flex-direction: row;
    align-self: stretch;
  }

  .header_component {
    border-top-width: 91px;
    flex-flow: column;
    height: auto;
    min-height: auto;
  }

  .header_component.is-full, .header_component.is-landing {
    justify-content: flex-start;
    height: auto;
  }

  .nav_logo_wrapper {
    z-index: 3;
  }

  .nav_link_wrapper.is-language {
    grid-column-gap: 20px;
    margin-top: 100px;
    margin-bottom: auto;
    position: static;
  }

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

  .section {
    padding-top: var(--padding-container-tablet);
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section.background-color-light {
    padding-top: var(--padding-container-tablet);
    padding-bottom: var(--padding-container-tablet);
  }

  .section.is-contact {
    background-image: linear-gradient(225deg, #29251a00 24%, #29251acc), url('../images/labicum_contact_background.webp');
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat-y;
    background-size: auto, 1400px;
  }

  .section.is-intro {
    padding-top: var(--padding-container-desktop);
  }

  .section.background-color-cta {
    padding-bottom: var(--padding-container-tablet);
  }

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

  .section.is-full {
    padding-bottom: var(--padding-container-tablet);
  }

  .section.background-color-light-copy {
    padding-top: var(--padding-container-tablet);
    padding-bottom: var(--padding-container-tablet);
  }

  .section.is-intro-copy {
    padding-top: var(--padding-page-desktop);
    padding-bottom: var(--padding-page-desktop);
  }

  .section.is-counter {
    padding-top: var(--padding-container-tablet);
    padding-bottom: var(--padding-container-tablet);
  }

  .heading-medium {
    font-size: 2.5em;
    line-height: 1.2;
  }

  .heading-medium.is-contact {
    font-size: 2.5em;
  }

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

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

  .container.is-hero {
    flex-direction: column;
    padding-top: 100px;
    padding-left: 50px;
    padding-right: 50px;
  }

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

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

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

  .container.flex-horizontal.is-large {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .container.flex-horizontal.is-large.no-pad-btn {
    padding-bottom: 0;
  }

  .container.is-large {
    align-items: stretch;
    max-width: 100%;
  }

  .container.is-dark {
    background-repeat: repeat, repeat-y;
    background-size: auto, 1140px;
  }

  .container.is-dark.is-large {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container.gap-20px {
    justify-content: flex-start;
    align-items: center;
  }

  .container.is-full {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    justify-content: flex-start;
    align-items: center;
  }

  .container.is-reverse {
    flex-flow: wrap-reverse;
    justify-content: space-between;
    align-items: center;
  }

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

  .container.is-medium.align-horiz, .container.is-medium.tablet-align-center {
    justify-content: space-between;
    align-items: center;
  }

  .container.is-tipologie {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: row;
  }

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

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

  .sizing-grow {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    align-self: stretch;
    display: flex;
  }

  .sizing-grow.is-reverse {
    flex-direction: row-reverse;
  }

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

  .image_wrapper-interaction.is-card {
    width: auto;
  }

  .image-fit-cover.is-header {
    object-position: 50% 50%;
  }

  .nav_link {
    text-transform: none;
    margin-top: 0;
    padding-bottom: 8px;
    font-size: 1.5em;
  }

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

  .nav_link.is-language {
    font-size: 1em;
  }

  .contact_component {
    flex-direction: column;
  }

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

  .poi_column {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
    max-width: 100%;
  }

  .flags_wrapper {
    z-index: 29;
  }

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

  .nav_link_container {
    z-index: 2;
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    color: var(--black);
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
  }

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

  .nav_hamburger_lottie, .tipologia_image_wrapper {
    flex: none;
  }

  .footer_component {
    padding-left: 32px;
    padding-right: 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;
  }

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

  .text_container.is-left.is-sticky {
    align-self: center;
    position: static;
  }

  .text_container.is-left.margin-right {
    margin-right: 50px;
  }

  .text_container.text-align-center {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .text_container.is-card-2 {
    padding-top: 0;
  }

  .text_container.is-card-2.background-color-white {
    text-align: left;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .text_container.is-card {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text_container.is-card.background-color-white {
    padding-top: 40px;
  }

  .text_container.is-location {
    text-align: center;
    align-items: center;
    width: auto;
    max-width: none;
  }

  .text_container.is-location.width-100 {
    max-width: 600px;
  }

  .tipologia_text_wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .accordion_image_wrapper {
    height: 30vw;
  }

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

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

  .lightbox_logo {
    display: none;
  }

  .lightbox_wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 45px;
    justify-content: space-around;
    width: 100%;
    max-width: 370px;
    display: flex;
  }

  .nav_logo {
    background-position: 0%;
  }

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

  .form_field {
    line-height: 20px;
  }

  .form_container {
    padding: 60px 40px 40px;
  }

  .form_component {
    width: 90%;
    max-width: none;
    margin-right: auto;
    position: static;
  }

  .contact_text_container {
    text-align: center;
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact_text_container.is-mobile {
    flex-flow: row;
    justify-content: space-around;
    margin-top: 20px;
    display: none;
  }

  .form_flag {
    width: 60px;
    height: 60px;
    color: var(--peach-schnapps);
    background-color: #e1d6bd00;
    margin-left: -30px;
    top: 0;
    left: 50%;
  }

  .intro_text {
    max-width: 16em;
  }

  .map {
    height: 46vw;
  }

  .gallery_container {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
  }

  .gallery_item {
    flex-direction: column;
    flex: none;
    justify-content: flex-start;
    height: 34vh;
    min-height: 30vw;
  }

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

  .promo_box {
    align-self: center;
    max-width: 400px;
  }

  .slider_component {
    padding-bottom: 60px;
  }

  .contact_div.is-big {
    align-items: center;
  }

  .contact_div.is-small {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
  }

  .slider_arrow {
    bottom: 0;
  }

  .heading-contact {
    font-size: 1.6em;
  }

  .footer_partner_container {
    grid-row-gap: 60px;
    flex-flow: wrap;
  }

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

  .par-big {
    font-size: 1.5em;
    line-height: 1.4;
  }

  .heading-large {
    line-height: 1.6;
  }

  .heading-large.is-contesto {
    max-width: 400px;
  }

  .heading-large.is-static {
    max-width: 30rem;
    font-size: 3em;
  }

  .par-intro {
    max-width: 580px;
  }

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

  .contact-mobile, .tablet-display-none {
    display: none;
  }

  .nav_logo_wrapper-mobile {
    z-index: 3;
    position: absolute;
  }

  .nav_container {
    padding: 10px var(--padding-page-tablet);
  }

  .nav_partner {
    padding-right: var(--padding-page-tablet);
    padding-left: var(--padding-page-tablet);
  }

  .header_column {
    width: 100%;
  }

  .header_column.is-text {
    padding-bottom: 0;
  }

  .header_column.is-image {
    width: 100%;
    height: 100vw;
  }

  .header_logo {
    height: 6vw;
  }

  .slider_wrapper {
    width: 100%;
  }

  .slider_mask {
    width: 600px;
  }

  .slide {
    margin-right: 5%;
  }

  .servizi_list {
    grid-column-gap: 10vw;
    grid-row-gap: 5vw;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }

  .servizi_list.is-vertical {
    grid-column-gap: 0vw;
    grid-row-gap: 50px;
    width: auto;
    display: flex;
  }

  .servizi_item {
    text-align: center;
  }

  .servizi_item:where(.w-variant-793f7b9a-d394-ea4c-715b-8b4f1ca66222) {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    display: flex;
  }

  .map_list {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    text-align: left;
    order: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-self: center;
    min-width: 600px;
    display: grid;
  }

  .map_list_item.is-last {
    border-bottom-style: solid;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .lightbox_text_container-2 {
    grid-row-gap: 32px;
  }

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

  .map_wrapper {
    width: 100%;
    height: 70vw;
    max-height: none;
    position: static;
  }

  .map_wrapper.is-large {
    width: 100vw;
    margin-left: -40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .servizio_image_wrapper {
    flex: none;
    height: 40vw;
  }

  .servizio_text_wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .keypoint_item {
    max-width: 450px;
  }

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

  .image_wrapper.is-slider, .image_wrapper.is-full-slider {
    flex: none;
  }

  .h1.is-header {
    max-width: 25em;
  }

  .page_background {
    padding-top: 40px;
  }

  .container-technical {
    flex: 0 auto;
    width: auto;
  }

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

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

  .countdoen_container {
    margin-bottom: 0;
  }

  .nav_link_wrap {
    z-index: 2;
    background-color: var(--peach-schnapps);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding-top: 140px;
    padding-bottom: 140px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: auto;
  }

  .nav-promo_link_wrapper.is-last {
    margin-bottom: auto;
  }

  .nav-promo_link_wrapper.is-first {
    margin-top: auto;
  }

  .nav-promo_logo_wrapper {
    z-index: 3;
  }

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

  .nav-promo_component {
    flex-direction: row;
  }

  .nav-promo_link {
    color: #fff;
    text-transform: none;
    margin-top: 0;
    padding-bottom: 8px;
    font-size: 1rem;
  }

  .nav-promo_link.w--current {
    border-bottom-color: #fff;
  }

  .promo_title-icon {
    z-index: 2;
  }

  .icon-promo.a, .icon-promo.b {
    background-size: auto 35px;
    width: 50px;
    height: 50px;
  }

  .card-text_body {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .card-text_body.promo {
    display: block;
  }

  .card-promo_wrapper {
    background-image: none;
  }

  .freccia-promo {
    width: 50px;
    height: 50px;
    display: none;
  }

  .title-promo-2 {
    color: #cd942e;
    line-height: 20px;
  }

  .title-promo-2.a {
    color: #cd942e;
    line-height: 26px;
  }

  .monogramma {
    z-index: 2;
  }

  .icon-medium.a, .icon-medium.b {
    background-size: auto 35px;
    width: 50px;
    height: 50px;
  }

  .column.padding-lateral {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .column.is-image {
    height: auto;
    min-height: auto;
  }

  .column.is-image.is-sticky {
    position: static;
  }

  .column.padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .topnav_language_link {
    font-size: 18px;
  }

  .topnav_language_link.w--current {
    color: var(--black);
  }

  .topic_list {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    text-align: left;
    order: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-self: center;
    min-width: 600px;
    display: grid;
  }

  .topic_list_item.is-last {
    border-bottom-style: solid;
    padding-bottom: 14px;
  }

  .container_grid {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    flex-flow: column;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .topic_item {
    text-align: center;
  }

  .item_list {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    text-align: left;
    order: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-self: center;
    min-width: 600px;
    display: grid;
  }

  .item_list_item.is-last {
    border-bottom-style: solid;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
}

@media screen and (max-width: 767px) {
  .header_component {
    border-top-width: 84px;
    min-height: 94vh;
  }

  .section {
    padding-bottom: var(--padding-container-tablet);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .section.is-contact {
    padding-bottom: 40px;
  }

  .section.is-background-image {
    max-height: 700px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

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

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

  .container.is-static {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
  }

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

  .container.is-tipologie {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 0;
  }

  .sizing-grow, .sizing-grow.is-reverse {
    flex-direction: column;
  }

  .list_grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: center;
  }

  .list_grid_item {
    max-width: 200px;
  }

  .poi_column {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-around;
  }

  .fixed_flags {
    right: 0;
  }

  .flag_component {
    top: 28px;
  }

  .flag_component.is-promo {
    border-bottom-style: none;
    border-bottom-color: #000;
    border-left-style: none;
    border-left-color: #000;
    border-right-style: none;
    border-right-color: #000;
    justify-content: center;
    margin-top: 0;
    padding: 4px 10px;
    position: fixed;
    inset: auto 0% 0%;
  }

  .flag_icon_wrapper.is-promo {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    width: auto;
  }

  .flag_text.is-promo {
    position: static;
    transform: none;
  }

  .nav_hamburger {
    height: 40px;
  }

  .tipologia_image_wrapper {
    width: 80px;
    max-height: none;
  }

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

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

  .text_container.is-card-2.background-color-white {
    text-align: center;
    align-items: center;
  }

  .poi_item {
    flex-direction: row;
    width: 228px;
  }

  .accordion_image_wrapper {
    height: 44vw;
  }

  .lightbox_img_wrapper {
    padding: 20px;
  }

  .lightbox_grid {
    grid-column-gap: 16px;
  }

  .lightbox_slide {
    margin-right: 10px;
  }

  .technical_wrapper {
    padding-top: 100px;
  }

  .form_field.is-message {
    margin-bottom: 0;
  }

  .form_container {
    grid-template-columns: 1fr;
    padding-left: 30px;
    padding-right: 30px;
  }

  .form_component {
    min-width: 400px;
  }

  .contact_text_container.is-mobile {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: space-around;
    align-items: flex-start;
  }

  .button-secondary {
    cursor: pointer;
  }

  .footer_link_container {
    grid-row-gap: 24px;
    flex-wrap: wrap;
  }

  .map {
    height: 70vw;
  }

  .poi_text_container {
    align-items: flex-start;
  }

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

  .tipologia_component {
    flex: none;
    height: auto;
  }

  .promo_box {
    flex-direction: column;
  }

  .contact_div.is-small {
    width: auto;
  }

  .slider_arrow {
    margin-right: 40px;
    bottom: 20px;
  }

  .heading-contact {
    font-size: 1.4em;
  }

  .flag_txt_wrapper-promo {
    height: auto;
  }

  .heading-xlarge.is-contesto {
    max-width: 360px;
  }

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

  .slide01 {
    margin-right: 10px;
  }

  .slider01_container {
    flex-direction: column;
  }

  .heading-large.is-static {
    font-size: 2.5em;
  }

  .heading-promo {
    font-size: 1.3em;
  }

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

  .header_logo {
    height: 7vw;
    max-height: 50px;
  }

  .map_list {
    min-width: auto;
  }

  .slide_caption {
    font-size: 1.2em;
  }

  .servizio_item {
    flex: none;
    height: auto;
  }

  .servizio_image_wrapper {
    max-height: none;
  }

  .h1 {
    font-size: 1.5em;
    line-height: 1.4;
  }

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

  .container-technical {
    min-height: auto;
  }

  .list {
    padding-left: 20px;
  }

  .div-block-2 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: auto auto;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-2.servizi-extra {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .label-04_promo {
    inset: auto 0% 150px auto;
  }

  .icon-promo.a, .icon-promo.b {
    background-size: auto 80%;
    width: 45px;
    height: 45px;
  }

  .card-text_body {
    text-align: left;
    padding-left: 0;
    font-size: 12px;
  }

  .card-text_body.promo {
    font-size: 1em;
  }

  .piu {
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .lotti_promo {
    width: 60px;
    height: auto;
  }

  .btp-promo {
    width: 100%;
    height: 400px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .card-promo_wrapper {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    flex-direction: column;
    width: 350px;
  }

  .freccia-promo {
    width: 30px;
    height: 30px;
  }

  .title-promo-2, .title-promo-2.a {
    font-size: 1.4em;
  }

  .icon-medium.a, .icon-medium.b {
    background-size: auto 80%;
    width: 45px;
    height: 45px;
  }

  .topic_list, .item_list {
    min-width: auto;
  }
}

@media screen and (max-width: 479px) {
  .header_component {
    min-height: auto;
    color: var(--black);
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .header_component.is-full, .header_component.is-landing {
    height: auto;
    min-height: auto;
  }

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

  .section.is-intro {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .section.background-color-light {
    padding-top: var(--padding-container-tablet);
    padding-bottom: var(--padding-container-tablet);
  }

  .section.background-color-cta {
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
  }

  .section.is-full {
    padding-bottom: var(--padding-page-desktop);
  }

  .section.background-color-light-copy {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.background-color-turquoise {
    padding-top: var(--padding-container-tablet);
    padding-bottom: var(--padding-container-tablet);
  }

  .section.is-intro-copy, .section.is-counter {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .heading-medium {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
    display: flex;
  }

  .heading-medium.mobile-no-wrap {
    width: 280px;
  }

  .container.is-hero {
    order: 1;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .container.flex-horizontal.is-large.no-pad-btn {
    padding-bottom: 0;
  }

  .container.is-dark.is-large {
    padding: 40px 20px;
  }

  .container.is-footer {
    padding-top: 0;
  }

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

  .container.is-tipologie {
    flex-flow: column;
  }

  .button.is-negative {
    line-height: 1.4;
  }

  .button.is-submit {
    text-align: center;
    justify-content: center;
    align-items: center;
    min-width: 100%;
  }

  .button.is-secondary {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button.is-promo {
    line-height: 1.4;
  }

  .heading-small {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

  .heading-small.is-header {
    font-size: 1.2em;
    line-height: 1.4;
  }

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

  .list_grid_item {
    text-align: center;
    flex: 1;
    min-width: 120px;
  }

  .poi_column {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: center;
  }

  .header_container {
    padding-left: 0;
    padding-right: 0;
  }

  .fixed_flags {
    right: 0;
  }

  .header_hover {
    display: none;
  }

  .flag_component {
    top: auto;
    bottom: 0;
    left: 0;
  }

  .footer_component {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button_component {
    white-space: nowrap;
    margin-top: 30px;
  }

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

  .text_container.is-left.margin-right {
    margin-right: 30px;
  }

  .text_container.is-card-2.background-color-white {
    text-align: left;
    align-items: flex-start;
    padding-bottom: 0;
  }

  .text_container.is-card.background-color-white {
    padding-left: 20px;
    padding-right: 20px;
  }

  .text_container.is-near {
    margin-top: -60px;
  }

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

  .poi_distance_text {
    line-height: 2;
  }

  .lightbox_img_wrapper {
    height: 80vw;
  }

  .lightbox_wrapper {
    flex-direction: column;
  }

  .image-fullscreen {
    min-height: 200px;
  }

  .form_heading {
    font-size: 1.8rem;
  }

  .card_heading {
    font-size: 1.1rem;
  }

  .form_container {
    padding-bottom: 60px;
  }

  .form_component {
    border-style: none;
    border-width: 20px;
    width: auto;
    min-width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .form_text {
    font-size: 12px;
  }

  .contact_text_container.is-contact {
    padding-left: 30px;
    padding-right: 30px;
  }

  .form_label {
    font-size: 14px;
  }

  .contact_paragraph {
    font-size: 1em;
  }

  .intro_text {
    font-size: 1.6em;
  }

  .footer_link_container {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    order: 0;
    align-items: center;
    margin-top: 0;
  }

  .map {
    height: 90vw;
  }

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

  .scroll_lottie {
    filter: none;
  }

  .map_link {
    border-top-style: none;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    width: 100%;
    margin-top: -40px;
    position: static;
  }

  .heading-xlarge {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 2.3rem;
    display: flex;
  }

  .partner_link.is-fund {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .footer_partner_container {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }

  .par-big {
    font-size: 1.4em;
    line-height: 1.4;
  }

  .header_video {
    width: 100%;
    height: 80vw;
    position: relative;
  }

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

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

  .gdpr_richtext ul, .gdpr_richtext ol {
    padding-left: 20px;
  }

  .slider01_container {
    align-items: center;
  }

  .heading-large {
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.6;
  }

  .heading-large.is-static {
    font-size: 2.5em;
    line-height: 1.1;
  }

  .heading-promo {
    font-size: 1.2em;
  }

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

  .button-cookie.is-secondary {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dropdown_close {
    padding-left: 0;
  }

  .nav_logo_wrapper-mobile {
    width: 159px;
    height: 40px;
  }

  .nav_container, .nav_partner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header_column.is-text, .header_column.is-header-full {
    padding: 120px 30px 20px;
  }

  .header_logo {
    height: 9vw;
    max-height: none;
  }

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

  .slider_navigator {
    width: 100%;
  }

  .servizi_list {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .servizi_item:where(.w-variant-793f7b9a-d394-ea4c-715b-8b4f1ca66222) {
    max-width: 250px;
  }

  .servizi_icon.is-small {
    width: 50px;
    height: 50px;
  }

  .map_list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .lightbox_text_container-2 {
    padding: 40px 20px;
  }

  .map_wrapper {
    margin-left: 0;
  }

  .map_wrapper.is-large {
    justify-content: center;
    align-items: center;
    margin-left: -30px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .servizio_image_wrapper {
    height: 70vw;
  }

  .partner_wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
  }

  .h1.is-header {
    max-width: 15em;
    font-size: 1.4em;
  }

  .partner_logo-2.is-colliers {
    width: 110px;
  }

  .container-technical {
    padding: 40px 20px;
  }

  .heading-medium-3 {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.8rem;
    display: flex;
  }

  .contanct_container {
    margin-top: 0;
  }

  .heading-small-2 {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

  .heading-medium-4 {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.8rem;
    display: flex;
  }

  .header_gdpr {
    padding-left: 30px;
    padding-right: 30px;
  }

  .link-block {
    width: 130px;
  }

  .back_home {
    font-size: 14px;
  }

  .div-block-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .div-block-2.servizi-extra {
    grid-column-gap: 30px;
    grid-row-gap: 50px;
  }

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

  .countdown_number {
    font-size: 3em;
  }

  .countdown_text {
    font-size: 1em;
  }

  .list-2 {
    padding-left: 20px;
  }

  .label-04_link {
    padding-left: 40px;
    padding-right: 40px;
  }

  .label-04_close {
    right: 10px;
  }

  .icon-promo.a, .icon-promo.b {
    background-size: auto 35px;
  }

  .card-text_body {
    margin-top: 20px;
    font-size: 12px;
    line-height: 2;
  }

  .card-text_body.promo {
    width: 90%;
    font-size: 1em;
  }

  .freccia-promo {
    margin-top: 10px;
  }

  .title-promo-2 {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.3em;
  }

  .title-promo-2.a {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.4em;
  }

  .icon-medium.a, .icon-medium.b {
    background-size: auto 35px;
  }

  .counter__riquadro {
    width: 200px;
    min-height: 80px;
  }

  .counter__numero {
    font-size: 35px;
  }

  .column.padding-lateral {
    padding-left: 20px;
    padding-right: 20px;
  }

  .column.padding {
    padding: 80px 30px;
  }

  .is-logo {
    white-space: nowrap;
    margin-bottom: 10px;
    font-size: 1.2em;
    display: inline-block;
  }

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

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

  .counter_component {
    padding-left: 30px;
    padding-right: 30px;
  }

  .counter_number {
    font-size: 50px;
  }

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

#w-node-_536d7b7a-a1fa-c38c-43e4-c121e1b30d24-139794e4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c380-139794e4, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c38c-139794e4, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c390-139794e4, #policyFlagsContainer.w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c393-139794e4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c396-139794e4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c397-139794e4, #w-node-b69fbf48-4352-ce35-2b4f-70b17a1dc03e-65c19a8d, #w-node-b69fbf48-4352-ce35-2b4f-70b17a1dc040-65c19a8d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b69fbf48-4352-ce35-2b4f-70b17a1dc042-65c19a8d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: stretch;
}

#w-node-b69fbf48-4352-ce35-2b4f-70b17a1dc043-65c19a8d, #w-node-b69fbf48-4352-ce35-2b4f-70b17a1dc045-65c19a8d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b69fbf48-4352-ce35-2b4f-70b17a1dc047-65c19a8d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: stretch;
}

#w-node-b69fbf48-4352-ce35-2b4f-70b17a1dc048-65c19a8d, #w-node-b69fbf48-4352-ce35-2b4f-70b17a1dc04a-65c19a8d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e203-bfc2e1d8, #w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e20f-bfc2e1d8, #w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e213-bfc2e1d8, #policyFlagsContainer.w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e216-bfc2e1d8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e219-bfc2e1d8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e21a-bfc2e1d8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977c0-139794ee, #w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977cc-139794ee, #w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977d0-139794ee, #policyFlagsContainer.w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977d3-139794ee {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977d6-139794ee {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977d7-139794ee, #w-node-_2f240ec7-e0b3-0047-2460-838685d4a343-139794ee, #w-node-_7eb5bd55-54c6-4739-ad16-7b63a615917e-a6159157 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7eb5bd55-54c6-4739-ad16-7b63a6159305-a6159157, #w-node-_7eb5bd55-54c6-4739-ad16-7b63a6159311-a6159157, #w-node-_7eb5bd55-54c6-4739-ad16-7b63a6159315-a6159157, #policyFlagsContainer.w-node-_7eb5bd55-54c6-4739-ad16-7b63a6159318-a6159157 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7eb5bd55-54c6-4739-ad16-7b63a615931b-a6159157 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_7eb5bd55-54c6-4739-ad16-7b63a615931c-a6159157, #w-node-_536d7b7a-a1fa-c38c-43e4-c121e1b30d24-253a6b52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c380-253a6b52, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c38c-253a6b52, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c390-253a6b52, #policyFlagsContainer.w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c393-253a6b52 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c396-253a6b52 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c397-253a6b52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c396-139794e4, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c396-253a6b52 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c380-139794e4, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c38c-139794e4, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c390-139794e4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #policyFlagsContainer.w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c393-139794e4 {
    grid-column: span 1 / span 1;
  }

  #w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e203-bfc2e1d8, #w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e20f-bfc2e1d8, #w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e213-bfc2e1d8 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #policyFlagsContainer.w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e216-bfc2e1d8 {
    grid-column: span 1 / span 1;
  }

  #w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977c0-139794ee, #w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977cc-139794ee, #w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977d0-139794ee {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #policyFlagsContainer.w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977d3-139794ee {
    grid-column: span 1 / span 1;
  }

  #w-node-_7eb5bd55-54c6-4739-ad16-7b63a6159305-a6159157, #w-node-_7eb5bd55-54c6-4739-ad16-7b63a6159311-a6159157, #w-node-_7eb5bd55-54c6-4739-ad16-7b63a6159315-a6159157 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #policyFlagsContainer.w-node-_7eb5bd55-54c6-4739-ad16-7b63a6159318-a6159157 {
    grid-column: span 1 / span 1;
  }

  #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c380-253a6b52, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c38c-253a6b52, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c390-253a6b52 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #policyFlagsContainer.w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c393-253a6b52 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c380-139794e4, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c38c-139794e4, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c390-139794e4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c396-139794e4 {
    grid-column: span 1 / span 1;
  }

  #w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e203-bfc2e1d8, #w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e20f-bfc2e1d8, #w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e213-bfc2e1d8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_432edfee-bb9d-2f79-29d6-8e92bfc2e219-bfc2e1d8 {
    grid-column: span 1 / span 1;
  }

  #w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977c0-139794ee, #w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977cc-139794ee, #w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977d0-139794ee {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ceb5aa34-b196-b2d4-8ecf-62eedd8977d6-139794ee {
    grid-column: span 1 / span 1;
  }

  #w-node-_7eb5bd55-54c6-4739-ad16-7b63a6159305-a6159157, #w-node-_7eb5bd55-54c6-4739-ad16-7b63a6159311-a6159157, #w-node-_7eb5bd55-54c6-4739-ad16-7b63a6159315-a6159157 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7eb5bd55-54c6-4739-ad16-7b63a615931b-a6159157 {
    grid-column: span 1 / span 1;
  }

  #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c380-253a6b52, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c38c-253a6b52, #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c390-253a6b52 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-a65e6638-8b8d-afbe-7a12-0e696ed7c396-253a6b52 {
    grid-column: span 1 / span 1;
  }
}


