:root {
  --blue: #21273a;
  --text-title: ador-hairline, sans-serif;
  --black: var(--blue);
  --grey-2: #6e6e6e;
  --white: white;
  --light: #fdfdfd;
  --beige-light: #ebe6e2;
  --hover-dark: #0006;
  --rose: #eedbca;
  --brown: #947563;
  --white-2: #fff6;
  --line: #0003;
  --text-serif: adobe-caslon-pro, sans-serif;
  --rose-light: #f5f0eb;
  --violet: #5b515c;
  --text-san-serif: Montserrat, sans-serif;
  --beige: #e3d9d7;
}

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

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

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

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

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

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

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

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

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

.w-layout-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(--blue);
  text-align: center;
  background-color: #e9e7e6;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

h1 {
  font-family: var(--text-title);
  letter-spacing: 3px;
  text-transform: uppercase;
  max-width: 640px;
  margin-top: 0;
  font-size: 2.8em;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.2em;
  font-weight: 400;
  line-height: 1.1;
}

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

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

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

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

p {
  max-width: 450px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: .95em;
}

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: 300;
  text-align: left;
  background-color: #ffe837;
  max-width: none;
  padding: 40px 15%;
  display: none;
  position: relative;
}

.todelete p {
  max-width: none;
  margin-bottom: 0;
}

.todelete strong {
  font-weight: 800;
}

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

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

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

.form_field {
  border-style: none none solid;
  border-width: 1px;
  border-color: var(--grey-2);
  color: var(--grey-2);
  background-color: #0000;
  margin-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
}

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

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

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

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

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

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

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

.form_text {
  font-size: .78em;
  line-height: 1.4;
}

.form_text.space {
  margin-top: 16px;
}

.footer_link {
  color: var(--blue);
  cursor: pointer;
  border-bottom: 1px solid #0000;
  padding: 4px;
  font-weight: 600;
  text-decoration: none;
}

.footer_link:hover {
  color: #000;
}

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

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

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

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

.nav_logo_wrap {
  z-index: 2;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 70px;
  display: flex;
  position: absolute;
  top: 0;
}

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

.nav_link_wrap.first {
  display: none;
}

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

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

.nav_link_line.active {
  display: none;
}

.section {
  padding: 100px 60px;
  position: relative;
}

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

.section.quote.pad-top-bot {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.overflow-hidden {
  overflow: hidden;
}

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

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

.section.bg_light-gradient {
  background-image: linear-gradient(#e9e7e6 10%, #f5f0eb);
}

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

.section.bg_light-gradient-reverse.boder-top {
  background-image: linear-gradient(179deg, #f5f0eb 10%, var(--light));
  border-top: 1px solid #21273a33;
  border-bottom: 1px solid #21273a33;
}

.section.gallery-padding {
  padding: 100px 0 60px;
}

.section.gallery-padding.bg_light-gradient {
  background-image: linear-gradient(#e9e7e6 10%, #f5f0eb);
}

.heading-xsmall {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: .9em;
  font-weight: 500;
  line-height: 1.4;
}

.heading-large {
  color: var(--black);
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 20px;
  font-size: 2em;
  line-height: 1.2;
}

.heading-medium {
  color: var(--blue);
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.2;
}

.heading-medium.gallery {
  text-transform: uppercase;
  margin-bottom: 60px;
}

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

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

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

.container.slider {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: row;
  align-items: flex-end;
  max-width: 1300px;
}

.container.overlying {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-style: none none solid solid;
  border-width: 60px;
  border-color: var(--beige-light);
  background-color: var(--light);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
}

.container.overlying.double {
  background-color: #0000;
  border-style: solid;
  border-width: 40px;
}

.container.overlying.reverse-hor {
  border-left-style: none;
  border-right-style: solid;
  flex-direction: row-reverse;
}

.container.overlying.reverse-ver {
  border-top-style: solid;
  border-bottom-style: none;
}

.container.direction-horizontal {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

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

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

.container.large {
  max-width: 1300px;
}

.container.large.no-gap {
  max-width: 1330px;
}

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

.container.footer {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  max-width: none;
}

.container.padding-bottom {
  margin-bottom: 100px;
}

.container.boxes {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  max-width: 1300px;
}

.container.tecnical {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--light);
  width: auto;
  max-width: none;
  padding: 40px;
}

.container.contact {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

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

.container.txt-slider {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.container.full {
  max-width: 1700px;
}

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

.container.gallery {
  max-width: 1300px;
  margin-right: auto;
}

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

.container.is-hcresponsive {
  display: none;
}

.card-big_item {
  flex: 1;
  max-width: 490px;
}

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

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

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

.card-big_txt.bg-white {
  align-items: center;
  padding: 40px;
}

.video_componen {
  align-self: stretch;
  margin-bottom: 40px;
}

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

.button_tertiary {
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  padding: 6px 4px;
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
  transition: border-color .5s cubic-bezier(.455, .03, .515, .955), letter-spacing .5s cubic-bezier(.455, .03, .515, .955), padding .5s cubic-bezier(.455, .03, .515, .955);
}

.button_tertiary:hover {
  border-bottom-color: var(--blue);
}

.button_secondary {
  border: 1px solid var(--black);
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #2220;
  padding: 12px 30px;
  font-size: .9em;
  font-weight: 600;
  line-height: 1.4;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
}

.button_secondary:hover {
  background-color: var(--blue);
  color: #fff;
}

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

.footer_title {
  text-transform: uppercase;
  margin-right: 20px;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1;
}

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

.nav_link {
  color: var(--white);
  letter-spacing: .5px;
  flex: 1;
  padding: 10px;
  font-size: .85em;
  line-height: 1;
  text-decoration: none;
}

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

.button_primary {
  border: 1px solid var(--black);
  background-color: var(--hover-dark);
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
}

.button_primary:hover {
  color: var(--black);
  background-color: #0000;
}

.button_primary.submit {
  background-color: var(--black);
  color: var(--white);
  margin-top: 16px;
}

.button_primary.submit:hover {
  letter-spacing: .5px;
}

.button_primary.negative {
  border-color: var(--rose);
  background-color: #eedbcaa8;
}

.button_primary.negative:hover {
  background-color: var(--rose);
  color: var(--brown);
}

.button_primary.positive {
  background-color: var(--blue);
}

.button_primary.positive:hover {
  background-color: var(--white);
  color: var(--blue);
}

.button-icon {
  border: 2px solid var(--beige-light);
  background-color: var(--beige-light);
  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(--beige-light);
  background-color: #8764b800;
}

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

.image-fullscreen.map {
  height: 45vw;
}

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

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

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

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

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

.header_img {
  z-index: 1;
  position: absolute;
  inset: 0;
}

.header_img.interni {
  background-image: linear-gradient(#0000, #0000), url('../images/AC1670_VPInt02_Dining_REV01.webp');
}

.header_img.progetto {
  background-image: linear-gradient(#0000, #0000), url('../images/AC1670_VP01_Exterior_Teaser_Rev01.webp');
}

.header_img.home {
  background-image: linear-gradient(#0000, #0000), url('../images/AC1670_VPExt02_Generale_REV00.webp');
  display: none;
}

.heading-small {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 1.5em;
  line-height: 1.2;
}

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

.slider_mask.small {
  width: 19%;
}

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

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

.slider_arrow.left.bottom {
  margin-top: 0;
  margin-left: 15px;
}

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

.slider_arrow.right.bottom {
  margin-top: 0;
  margin-right: 15px;
}

.interior_tile {
  cursor: pointer;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  display: flex;
  overflow: hidden;
}

.slider_component {
  background-color: #0000;
  flex: 1;
  align-self: stretch;
  height: auto;
  margin-top: 32px;
  overflow: visible;
}

.slider_component.overflow-hidden {
  overflow: hidden;
}

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

.display-none {
  display: none;
}

.poi_column {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex: 1;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  margin-top: 20px;
  display: grid;
}

.header_container {
  z-index: 3;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 740px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.nav_buttons {
  z-index: 31;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: space-between;
  min-width: auto;
  display: flex;
  position: fixed;
  top: 40%;
  right: 0;
}

.nav_buttons.lang {
  display: none;
}

.footer_row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 40px 100px;
  line-height: 1;
  display: flex;
}

.footer_row.last {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  opacity: 1;
  border-top: 1px #000;
  border-bottom: 1px #000;
  padding-bottom: 100px;
}

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

.nav_links {
  grid-column-gap: .5vw;
  grid-row-gap: .5vw;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  margin-bottom: 10px;
  margin-left: -124px;
  margin-right: -124px;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

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

.nav_line {
  z-index: 1;
  background-color: var(--white-2);
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
  position: absolute;
  bottom: 0;
  left: -132px;
  right: -132px;
}

.nav_hamburger {
  display: none;
}

.contact_column {
  border: 1px solid var(--blue);
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  padding: 40px;
  display: flex;
}

.contact_column.no-border {
  text-align: left;
  border-style: none;
  padding: 0;
}

.slide_img_wrap {
  z-index: 1;
  flex: 1;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer_component {
  background-color: var(--light);
  border-top: 1px solid #21273a33;
  padding-left: 60px;
  padding-right: 60px;
}

.button_component {
  border: 1px solid var(--black);
  letter-spacing: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  padding: 4px;
  text-decoration: none;
  display: flex;
}

.button_component:hover {
  letter-spacing: .5px;
}

.button_component.negative {
  border-color: var(--rose);
}

.button_component.tertiary {
  border-style: none;
  border-right-width: .3px;
  border-bottom-color: var(--blue);
  border-radius: 0;
  margin-top: 0;
  padding: 0;
}

.button_component.tertiary:hover {
  padding-left: 10px;
  padding-right: 10px;
}

.button_component.tertiary.is-absolute {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 0;
}

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

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

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

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

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

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

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

.area_row {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  max-width: 440px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
}

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

.header_wrap {
  width: 100%;
  max-width: 1090px;
  margin-left: auto;
  margin-right: auto;
}

.container_image {
  object-fit: cover;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  height: 570px;
  max-height: 50vw;
  display: flex;
}

.form_title {
  color: var(--black);
  text-transform: capitalize;
  margin-bottom: 32px;
  font-family: ador-hairline, sans-serif;
  font-size: 2em;
  line-height: 1;
}

.form_par {
  max-width: 80%;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

.txt_wrap {
  flex-direction: column;
  align-self: center;
  align-items: center;
  padding: 60px;
  display: flex;
}

.txt_wrap.bg_light {
  background-color: var(--light);
  align-self: stretch;
  padding-top: 100px;
  padding-bottom: 100px;
}

.txt_wrap.horizontal {
  background-color: var(--light);
  text-align: center;
  justify-content: center;
  align-self: stretch;
  width: auto;
  max-width: 420px;
}

.txt_wrap.quote {
  z-index: 2;
  background-color: var(--beige-light);
  justify-content: flex-start;
  align-items: center;
  width: auto;
  max-width: 60vw;
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 50px 80px;
  position: relative;
}

.txt_wrap._2col {
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  text-align: left;
  grid-template-rows: min-content min-content;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: end start;
  width: 100%;
  margin-bottom: -52px;
  padding-left: 0;
  padding-right: 0;
  display: grid;
}

.txt_wrap.bg_light-pattern01 {
  background-color: var(--light);
  align-self: stretch;
}

.txt_wrap.is--box {
  border: 1px solid var(--blue);
  background-color: var(--white);
  padding-top: 60px;
  padding-bottom: 60px;
}

.txt_wrap.is-full {
  width: 100%;
}

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

.txt_wrap.no-padding-top-bot {
  padding-top: 0;
  padding-bottom: 0;
}

.slide_txt_wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.slide_title {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 1.4em;
}

.slide_button_wrap {
  text-transform: uppercase;
  align-items: center;
  margin-top: 16px;
  font-size: .85em;
  line-height: 1;
  display: flex;
}

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

.txt-uppercase {
  text-transform: uppercase;
}

.floorplan_txt_wrap {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  width: 37vw;
  min-width: 33vw;
  max-width: 73vh;
  height: 76px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.floorplan_txt_wrap.reverse {
  left: auto;
  right: 0;
}

.floorplan_img_wrap {
  flex: 1;
  align-self: stretch;
  min-width: 50vw;
  max-width: 106vh;
  margin-left: auto;
  margin-right: auto;
}

.floorplan_component {
  z-index: 1;
  align-items: flex-end;
  width: 100%;
  height: 50vw;
  min-height: 450px;
  max-height: 80vh;
  display: flex;
  position: relative;
}

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

.floorplan_txt {
  text-transform: uppercase;
  font-size: 1.9em;
  line-height: 1;
}

.floorplan_plan {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  align-self: stretch;
  width: 37vw;
  min-width: 33vw;
  max-width: 73vh;
  height: 23vw;
  min-height: 20.5vw;
  max-height: 45vh;
  margin-top: auto;
  margin-right: 32px;
  position: relative;
}

.floorplan_plan.reverse {
  margin-left: 32px;
  margin-right: 0;
}

.floorplan_plan.plans {
  background-image: url('../images/VM_APT1.webp');
  background-size: contain;
  width: 40vw;
  min-width: auto;
  max-width: none;
  height: auto;
  min-height: 400px;
  max-height: none;
  margin-top: 120px;
}

.floorplan_icon_wrap {
  border: 1px solid var(--brown);
  color: var(--brown);
  -webkit-text-fill-color: inherit;
  background-color: #f5f5f5;
  background-clip: border-box;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  position: absolute;
  box-shadow: 0 0 14px #0003;
}

.floorplan_icon_wrap.w--current {
  background-color: var(--brown);
  color: var(--white);
}

.floorplan_icon_wrap.plans01 {
  top: 40%;
  right: 33%;
}

.floorplan_icon_wrap.plans01.w--current {
  background-color: var(--brown);
}

.floorplan_icon_wrap.plans02 {
  top: 44%;
  left: 38%;
}

.floorplan_icon_wrap.plans03 {
  top: 58%;
  left: 32%;
}

.floorplan_icon_wrap.plans04 {
  top: 69%;
  left: 47%;
}

.floorplan_icon_wrap.plans05 {
  top: 66%;
  left: 84%;
}

.floorplan_icon_wrap.show01 {
  top: 72%;
  left: 42%;
}

.floorplan_icon_wrap.show02 {
  top: 26%;
  left: 49%;
}

.floorplan_icon_wrap.show03 {
  top: 63%;
  left: 75%;
}

.floorplan_icon_wrap.show04 {
  top: 32%;
  left: 64%;
}

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

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

.image_hover {
  z-index: 2;
  background-color: var(--hover-dark);
  opacity: 0;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  transition: background-color .4s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  inset: 0;
}

.image_hover.z-index {
  opacity: 1;
  background-color: #00000024;
}

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

.poi_number {
  background-color: var(--black);
  color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 12px;
  line-height: 0;
  display: flex;
}

.poi_number.absolute {
  letter-spacing: .5px;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  margin-left: -13px;
  font-size: 10px;
  position: absolute;
}

.poi_number.absolute._05 {
  top: 77%;
  left: 59%;
}

.poi_number.absolute._01 {
  top: 64%;
  left: 56%;
}

.poi_number.absolute._03 {
  top: 52%;
  left: 67%;
}

.poi_number.absolute._02 {
  top: 55%;
  left: 51%;
}

.poi_number.absolute._04 {
  top: 54%;
  left: 42%;
}

.poi_number.absolute._06 {
  top: 83%;
  left: 42%;
}

.poi_number.absolute._07 {
  top: 40%;
  left: 65%;
}

.poi_number.absolute._08 {
  top: 34%;
  left: 76%;
}

.poi_number.absolute._09 {
  top: 27%;
  left: 79%;
}

.poi_number.absolute._10 {
  top: 40%;
  left: 58%;
}

.poi_number.absolute._11 {
  top: 33%;
  left: 56%;
}

.poi_number.absolute._12 {
  top: 21%;
  left: 73%;
}

.poi_txt {
  color: var(--black);
  text-align: left;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1;
}

.poi_distance {
  color: var(--hover-dark);
  font-size: .8em;
}

.accordion_img_wrap {
  color: var(--white);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 650px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.arrow_disable {
  z-index: 2;
  background-color: var(--beige-light);
  opacity: .7;
  position: absolute;
  inset: 0;
}

.arrow_disable.left.bottom {
  width: 60px;
  height: 40px;
  margin-left: 15px;
  bottom: auto;
  right: auto;
}

.arrow_disable.right {
  display: none;
}

.arrow_disable.right.bottom {
  width: 60px;
  height: 30px;
  margin-right: 15px;
  bottom: auto;
  left: auto;
}

.download_component {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  border-bottom: 60px solid var(--beige-light);
  border-left: 60px solid var(--beige-light);
  background-color: var(--light);
  text-align: left;
  align-items: flex-end;
  padding-top: 60px;
  padding-right: 60px;
  display: flex;
  position: relative;
}

.download_column {
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.download_anchor {
  width: 0;
  height: 0;
  position: absolute;
  top: -220px;
}

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

.lightbox_component.no-tab {
  padding-bottom: 80px;
}

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

.lightbox_x.transparent {
  background-color: #0000;
  width: 60px;
  height: 60px;
  top: 10px;
  right: 10px;
}

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

.lightbox_slider_mask {
  width: 74vw;
  max-width: 120vh;
  height: 100%;
  position: relative;
  overflow: visible;
}

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

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

.lightbox_slider_arrow.right {
  left: auto;
  right: 60px;
}

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

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

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

.flag_icon.small {
  padding: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form_link-2 {
  color: #222;
}

.download_wrap {
  text-align: left;
  flex-direction: column;
  flex: 1;
  align-items: center;
  display: flex;
}

.form_checkbox-2 {
  color: #222;
  flex: none;
  margin-top: 2px;
  margin-right: 10px;
}

.form_checkbox-2.w--redirected-checked {
  background-color: #222;
  border-color: #222;
}

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

.download_form {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  color: #6e6e6e;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 60px;
  display: grid;
}

.nav_links_wrap {
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: auto;
  max-width: 1036px;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.nav_lang {
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: -124px;
}

.par_line {
  background-color: var(--line);
  flex: none;
  width: 170px;
  height: 1px;
  margin-top: 14px;
  margin-bottom: 48px;
}

.overlying_image {
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: 60px;
  margin-bottom: -60px;
  margin-left: -60px;
  display: flex;
  overflow: hidden;
}

.overlying_image.double {
  margin: 100px -40px -40px;
  position: relative;
}

.overlying_image.double.right {
  margin-top: -40px;
  margin-bottom: 100px;
}

.overlying_image.reverse-hor {
  margin-left: 0;
  margin-right: -60px;
}

.overlying_image.reverse-ver {
  margin-top: -60px;
  margin-bottom: 60px;
}

.dida_txt {
  text-align: center;
  line-height: 1.4;
}

.dida_title {
  color: var(--hover-dark);
  font-size: .9em;
  font-weight: 700;
}

.nav-bottom {
  background-color: #0000;
  width: 100%;
  height: auto;
  padding-top: 70px;
}

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

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

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

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

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

.bg_txt_wrap.slider {
  opacity: .05;
  filter: invert();
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

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

.boxes_wrap {
  grid-column-gap: 32px;
  grid-row-gap: 16px;
  width: 100%;
  margin-top: 48px;
  display: flex;
}

.box {
  cursor: pointer;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.box.is-link {
  color: var(--blue);
  text-decoration: none;
}

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

.box_dida {
  background-color: #fdfdfd75;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  display: flex;
}

.box_dida.small {
  text-align: center;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 19px;
}

.footer_margin {
  color: var(--blue);
  text-align: left;
  width: 100%;
  margin-left: 4px;
  font-size: .8em;
  line-height: 1.3;
}

.nav_space {
  height: 110px;
}

.quote_wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -15px;
  padding: 60px;
  display: flex;
}

.quote_txt {
  font-family: var(--text-serif);
  border-left-style: none;
  max-width: 770px;
  font-size: 32px;
  font-style: italic;
  line-height: 1.2;
  display: flex;
}

.quote_par {
  color: var(--black);
  border-left-style: none;
  max-width: 500px;
  margin-top: 20px;
  margin-bottom: 60px;
  padding: 0;
  font-size: 32px;
  line-height: 1.2;
}

.quote_img-full {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.quote_img-frame {
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.image-container {
  flex: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.overlying_txt_wrap {
  background-color: var(--light);
  background-image: linear-gradient(#fdfdfde0, #fdfdfde0), url('../images/VillaMesmer_pittogr_beige.svg');
  background-position: 0 0, -14% 150%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 1200px;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: auto;
  max-width: 540px;
  padding: 100px;
  display: flex;
}

.overlying_txt_wrap.no-subtitle {
  align-items: flex-start;
}

.h2-nosubtitle {
  margin-top: 0;
  margin-bottom: 100px;
}

.partner_img {
  width: 100%;
}

.partner_icon {
  z-index: 2;
  border: 1px solid var(--white);
  cursor: pointer;
  background-color: #e27b14;
  background-image: url('../images/quintosole_piu.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50%;
  border-radius: 100%;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.partner_icon:hover {
  background-color: #f7d15f;
}

.partner_button {
  z-index: 3;
  cursor: pointer;
  background-color: #1414141a;
  border: 1px solid #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: opacity .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: absolute;
  box-shadow: 0 0 30px 6px #0003;
}

.partner_button:hover {
  opacity: 1;
}

.partner_button._1 {
  top: 69%;
  left: 17%;
}

.partner_button._2 {
  top: 62%;
  left: 62%;
}

.partner_button._3 {
  top: 56%;
  left: 96%;
}

.partner_button._4 {
  top: 88%;
  left: 85%;
}

.partner_box {
  z-index: 1;
  background-color: var(--white);
  cursor: default;
  border-radius: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 0;
  height: 0;
  margin-left: 10px;
  display: flex;
  position: absolute;
  left: 100%;
  overflow: hidden;
  box-shadow: 0 0 12px 2px #0003;
}

.partner_box.is-reverse {
  margin-left: auto;
  margin-right: 10px;
  left: auto;
  right: 100%;
}

.partner_dot {
  z-index: 2;
  background-color: #fff;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  position: absolute;
}

.box_content {
  z-index: 1;
  text-transform: uppercase;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 230px;
  height: 150px;
  padding: 20px;
  font-size: 1.1em;
  display: flex;
}

.partner_cross {
  z-index: 2;
  background-image: url('../images/icon_cross_1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0;
  height: 0;
  position: absolute;
}

.partner_logo {
  opacity: .6;
  flex: none;
  height: 24px;
}

.partner_line {
  background-color: var(--line);
  flex: none;
  width: 100%;
  height: 1px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.partner_dida {
  text-align: left;
  text-transform: none;
  font-size: .8em;
}

.slide_wrap {
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.slide_wrap.open-lightbox {
  cursor: pointer;
}

.slide_wrap.open-lightbox.down {
  margin-top: 24px;
}

.slide_txt {
  color: var(--blue);
  text-transform: uppercase;
  font-family: ador-hairline, sans-serif;
  font-weight: 700;
}

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

.slide_icon_wrap {
  z-index: 1;
  flex: 1;
  width: 48px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slide_dida {
  font-size: .85em;
}

.first-letter {
  font-size: 2.6em;
  line-height: 0;
}

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

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

.header_component_nav-small {
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 100px 100px 60px;
  display: flex;
}

.header_component_nav-small.bg_light-gradient-reverse.is-contatti {
  padding-top: 140px;
}

.header_component_nav-small.is-bg-mage {
  background-image: url('../images/AC1670_VP01_Exterior_Teaser_Rev03.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.lightbox_tab {
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.lightbox_tab_menu {
  margin-bottom: 32px;
}

.lightbox_tab_content {
  flex: 1;
}

.lightbox_tab_pane {
  height: 100%;
}

.lightbox_tab_link {
  color: #fff9;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  border-right: 1px solid #fff9;
  margin-left: 4px;
  margin-right: 4px;
  padding: 0 8px 0 0;
  font-size: 18px;
  line-height: 1;
  transform: skew(-14deg);
}

.lightbox_tab_link.w--current {
  color: #fff;
  background-color: #0000;
}

.lightbox_tab_link.last {
  border-right-style: none;
}

.lightbox_tab_link-txt {
  transform: skew(14deg);
}

.slider-thumb-wrap {
  opacity: .3;
  cursor: pointer;
  flex: none;
  margin-left: 5px;
  margin-right: 5px;
  transition: opacity .6s;
}

.slider-thumb-wrap.first {
  margin-left: auto;
}

.slider-thumb-wrap.last {
  margin-right: auto;
}

.slider-thumb-wrap.active {
  opacity: .8;
}

.gallery_image-thumbnail {
  object-fit: cover;
  width: 11vh;
  height: 11vh;
}

.download_txt {
  margin-left: 60px;
}

.h1-technichal {
  max-width: 100%;
}

.par-tecnichal {
  max-width: none;
}

.download_image {
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: 60px;
  margin-bottom: -60px;
  margin-left: -60px;
  display: flex;
  overflow: hidden;
}

.logo-tecnical {
  opacity: .6;
  height: 24px;
  margin-bottom: 60px;
  display: flex;
  overflow: hidden;
}

.slider_wrap {
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.slider_thumbs {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  overflow: auto;
}

.nav_lang_txt {
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  display: flex;
}

.nav_background {
  display: none;
}

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

.error_wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.error_contact {
  color: var(--black);
  text-align: left;
  font-size: 1.4em;
  text-decoration: none;
}

.txt-inline {
  display: inline-block;
}

.partner_logo-par {
  opacity: .75;
  flex: none;
  align-self: flex-start;
  height: 32px;
  margin-top: 48px;
}

.h2-2col {
  margin-bottom: 0;
}

.lightbox_icon {
  background-color: var(--light);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding-left: 7px;
  padding-right: 7px;
  line-height: 1;
  display: flex;
}

.gallery_hover {
  z-index: 2;
  -webkit-backdrop-filter: grayscale();
  backdrop-filter: grayscale();
  background-color: #21273aa8;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  display: flex;
  position: absolute;
  inset: 0;
}

.partner_title {
  color: var(--hover-dark);
  text-align: left;
  font-weight: 700;
}

.floorplan_icon {
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding-left: 7px;
  padding-right: 7px;
  line-height: 1;
  display: flex;
}

.slide_fake {
  background-color: var(--beige-light);
  width: 530%;
  margin-left: 6%;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
}

.image-quote {
  object-fit: contain;
  flex: none;
  align-self: center;
  width: 100%;
  height: 100%;
  padding: 5vw;
  display: block;
}

.map_wrap {
  position: relative;
}

.section-gallery {
  grid-column-gap: 4px;
  grid-row-gap: 0px;
  flex-direction: column;
  flex: 1;
  grid-template-rows: min-content auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  display: grid;
}

.label_flag {
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  border-left: 1px solid var(--white);
  background-color: var(--blue);
  color: var(--white);
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  height: 35px;
  margin-top: -1px;
  padding: 5px 10px;
  font-size: .8em;
  display: none;
  position: absolute;
  inset: 0% 100% 0% auto;
}

.box-scroll {
  color: var(--blue);
  cursor: pointer;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  display: flex;
}

.boxes_wrap-scroll {
  grid-column-gap: 10px;
  grid-row-gap: 16px;
  width: 100%;
  margin-top: 48px;
  display: flex;
}

.text-color-white {
  color: #fff;
}

.style_title {
  grid-column-gap: 8px;
  color: #0009;
  text-transform: uppercase;
  align-items: flex-end;
  font-family: Exo, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
}

.style_column-right {
  justify-content: flex-start;
  align-items: flex-start;
}

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

.example_wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: auto;
}

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

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

.heading_wrapper {
  z-index: 200;
  grid-column-gap: 6px;
  grid-row-gap: 10px;
  background-color: #fff;
  border-radius: 4px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  align-content: center;
  place-items: flex-start start;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 16px;
  line-height: 1;
  display: flex;
  position: absolute;
  top: 5px;
  left: 5px;
  box-shadow: 0 0 14px #00000029;
}

.div-block {
  flex-flow: column;
  display: flex;
}

.h2-heading {
  font-family: var(--text-title);
  letter-spacing: 4px;
  text-transform: none;
  max-width: 650px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.3;
}

.h2-heading.txt_align-center {
  text-align: center;
}

.h2-serif {
  font-family: var(--text-serif);
  letter-spacing: .5px;
  text-transform: none;
  margin-top: 5px;
  font-size: 1.4em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.h2-serif.is-medium {
  font-size: 1.6em;
}

.item_pittogr {
  width: 50px;
  margin-left: 20px;
  margin-right: 20px;
}

.item_pittogr.is-blue {
  opacity: 1;
}

.item_pittogr.pad-bot {
  margin-bottom: 40px;
}

.item_pittogr.is-absolute {
  background-color: var(--beige-light);
  width: 100px;
  height: 22px;
  position: absolute;
}

.bg-light-pattern01 {
  background-color: var(--white);
  background-image: url('../images/tecmasolutions_embossing_on_white_flat_paper_abstract_curves_mi_opacity10.webp');
  background-position: 0 0;
  background-size: auto;
}

.bg_light-pattern01 {
  background-color: var(--light);
  background-image: linear-gradient(#fff6, #fff6), url('../images/tecmasolutions_embossing_on_white_flat_paper_abstract_curves_mi_opacity10.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.text-subtitle {
  letter-spacing: .5px;
  text-transform: uppercase;
  max-width: 680px;
  padding-top: 4px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.text-subtitle.is-section {
  letter-spacing: 2px;
  font-size: 12px;
  line-height: 1;
}

.title-section {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button_component-4 {
  color: #fff;
  cursor: pointer;
  background-color: #a7827a;
  border-radius: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button_component-4:hover {
  opacity: 1;
  color: #fff;
}

.button_component-4.is-negative {
  background-color: #d39f97;
}

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

.button-circle {
  z-index: 0;
  opacity: 0;
  background-color: #d39f97;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: auto 0%;
}

.button-circle.is-negative {
  background-color: #a7827a;
}

.button {
  z-index: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #3898ec00;
  padding: 16px 40px;
  font-size: .85rem;
  line-height: 1;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
  position: relative;
}

.button.is-submit {
  border: 1px solid var(--blue);
  background-color: var(--blue);
  margin-right: auto;
}

.button.is-submit:hover {
  border: 1px solid var(--blue);
  background-color: var(--white);
  color: var(--blue);
}

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

.background_img.is-scroll {
  filter: grayscale();
  background-image: url('../images/AC1670_VPInt02_Dining_Dettaglio01_REV00.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.background_img.is-scroll._01 {
  filter: contrast(200%) saturate(0%);
  background-image: url('../images/00_MG_4451-1.webp');
  background-repeat: no-repeat;
  background-size: cover;
}

.background_img.is-brochure {
  filter: grayscale();
  background-image: url('../images/BOOK-2.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.background_img.is-brochure._01 {
  filter: contrast(200%) saturate(0%);
  background-image: url('../images/00_MG_4451-1.webp');
  background-repeat: no-repeat;
  background-size: cover;
}

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

.background_hover {
  z-index: 1;
  background-color: #21273abf;
  position: absolute;
  inset: 0;
}

.text-color-rose-bright {
  color: #d39f97;
}

.section-image-bg {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-direction: column;
  justify-content: center;
  min-height: 36vw;
  padding: 100px 60px;
  display: flex;
  position: relative;
}

.section-image-bg.is-image {
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 36vw;
  display: flex;
  position: relative;
}

.item-line {
  width: 20px;
  height: 1px;
  padding-right: 0;
}

.item_timbro {
  width: 170px;
}

.item_timbro.is-blue {
  opacity: 1;
}

.image_hover-2 {
  z-index: 1;
  background-color: #0000004d;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  transition: background-color .4s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  inset: 0;
}

.grid-mood {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: 500px;
  grid-template-columns: .8fr 1.5fr 1fr .5fr;
  width: 100%;
}

.line-gradient-item {
  z-index: 2;
  width: 8px;
  height: 100%;
  position: absolute;
}

.timbro_wrap {
  width: 100px;
}

.timbro_wrap.is-absolute {
  z-index: 2;
  position: absolute;
  inset: 40% -39px auto auto;
}

.image_hover-opacity {
  z-index: 1;
  background-image: linear-gradient(99deg, #0000008a 9%, #0000 48%);
  justify-content: center;
  align-items: center;
  font-size: 40px;
  transition: background-color .4s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  inset: 0;
}

.image-contain-2 {
  flex: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.icon-service_wrapper {
  width: 100px;
}

.icon-service_wrapper.is-large {
  justify-content: center;
  align-items: center;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-servizio {
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}

.line-divider {
  opacity: .41;
  background-color: #fff;
  width: 1px;
}

.line-divider.is-dark {
  background-color: var(--blue);
  background-color: #21273a;
}

.grid-icon {
  opacity: 1;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  justify-content: center;
  width: auto;
  margin-top: 60px;
  display: flex;
}

.grid-icon.is-large {
  max-width: none;
}

.grid-icon.is-large.margin-top {
  max-width: 900px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.grid-icon.is-last {
  margin-top: 40px;
  margin-bottom: 60px;
}

.logo_partner {
  object-fit: contain;
  width: 130px;
  min-width: 100px;
}

.logo_partner.is-large {
  width: auto;
}

.logo_partner.is-light-small {
  filter: invert();
  width: 100px;
}

.logo_partner.is-light-small.var {
  width: 200px;
}

.logo_partner.is-light-small.var2 {
  width: auto;
  height: 35px;
}

.logo_partner.is-light-large {
  filter: invert();
  width: 100%;
  max-width: 160px;
}

.logo_partner.is-light-large.var {
  width: 200px;
}

.logo_partner.is-light-large.var2 {
  width: auto;
  height: 35px;
}

.service_wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

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

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

.flex-text.align-center.txt-align-center {
  margin-left: auto;
  margin-right: auto;
}

.flex-text.align-center.txt-align-center.pad-bot {
  margin-bottom: 60px;
}

.bg_light-gradient {
  background-image: linear-gradient(360deg, #e9e7e6 10%, #ebe6e2);
}

.item_line-pittogr {
  background-color: #21273a33;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1px;
  display: flex;
  position: relative;
}

.slider-header {
  z-index: 1;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  position: absolute;
  inset: 0%;
}

.carousel-01_component {
  flex-direction: row;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.carousel-01_wrapper {
  backface-visibility: hidden;
  flex: none;
  display: flex;
  transform: perspective(1px);
}

.carousel-01_container {
  grid-column-gap: 1rem;
  justify-content: flex-start;
  width: 100%;
  list-style-type: none;
  display: flex;
  overflow: hidden;
}

.carousel-01_link {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.carousel-01_image {
  object-fit: cover;
  width: 100%;
  height: 280px;
}

.carousel-01_clone {
  width: 100%;
  list-style-type: none;
  overflow: hidden;
}

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

.item_line-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1px;
  display: flex;
  position: relative;
}

.item_pittogr-bg {
  z-index: 1;
  opacity: .42;
  width: 70%;
  position: absolute;
  inset: auto 0% -41% auto;
}

.button_tertiary-small {
  color: #616471;
  letter-spacing: 1px;
  background-color: #0000;
  padding: 6px 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: padding-right .2s, padding-left .2s;
}

.button_tertiary-small:hover {
  padding-left: 10px;
  padding-right: 10px;
}

.button_tertiary-small.is-light {
  border-bottom: 1px solid var(--white);
  color: var(--white);
}

.button_tertiary-small.is-dark {
  border-bottom: 1px solid var(--violet);
}

.div-block-5 {
  justify-content: center;
  align-items: center;
  width: auto;
  margin-top: 20px;
  display: flex;
}

.txt-action {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.ip_btn {
  border: 1px solid var(--brown);
  opacity: .7;
  cursor: auto;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  margin-right: 10px;
  transition: opacity .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: static;
}

.ip_btn:hover {
  opacity: 1;
}

.ip_btn.no-effect {
  opacity: 1;
  position: relative;
}

.ip_btn.no-effect.negative {
  border-color: var(--white);
}

.ip-_dot {
  z-index: 2;
  background-color: var(--brown);
  border-radius: 100%;
  width: 7px;
  height: 7px;
  position: absolute;
}

.ip_btn_cross {
  z-index: 2;
  background-image: url('../images/icon_cross.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0;
  height: 0;
  position: absolute;
}

.slide-10_title {
  font-weight: 700;
}

.image-wrap {
  height: 15vw;
  min-height: 200px;
}

.slider-gallery {
  padding-top: 5%;
  padding-bottom: 5%;
  overflow: hidden;
}

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

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

.splide_embed {
  line-height: 1;
}

.splide__list {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: auto;
  height: 100%;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.splide__pagination {
  width: 0;
  height: 0;
  display: none;
  overflow: hidden;
}

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

.slide-content {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto min-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: flex;
}

.splide__slide {
  flex: none;
  width: 30%;
  list-style-type: none;
}

.text-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding: 20px 25px 30px 30px;
  display: flex;
}

.splide__track {
  width: 100%;
}

.splide__arrow {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  width: 60px;
  height: 20px;
}

.splide__arrow.splide__arrow--prev {
  background-color: #fff0;
  background-image: url('../images/arrow-left.svg');
  background-size: contain;
}

.splide__arrow.splide__arrow--next {
  background-color: #fff0;
  background-image: url('../images/arrow-right.svg');
  background-size: contain;
}

.splide {
  z-index: 1;
  width: 100%;
  position: relative;
}

.splide.slider-10 {
  z-index: 2;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.splide.slider-partners, .splide.slider-10 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.splide.slider10-gallery {
  z-index: 2;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.splide__arrows {
  z-index: 50;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  padding-right: 0;
  display: flex;
  position: relative;
}

.splide__arrows.is-var {
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 40px;
}

.img-contain-wrap {
  height: 30px;
}

.servizi-img-capitolato {
  background-color: #004159;
  overflow: hidden;
}

.slide-content-2 {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  background-color: #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

.servizi-img-bg {
  background-color: #004159;
  height: auto;
}

.servizi-img {
  opacity: .8;
  width: 100%;
}

.splide__list-2 {
  justify-content: flex-start;
  align-items: stretch;
  width: auto;
  display: flex;
}

.servizi-content-capitolato {
  background-color: #fff;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  height: auto;
  min-height: 220px;
  padding: 20px 25px 30px 30px;
  display: flex;
}

.slide-title {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
}

.logo-capitolato {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 30px;
  margin-bottom: 20px;
}

.logo-capitolato._01 {
  background-image: url('../images/Florim.svg');
}

.logo-capitolato._07_bticino {
  background-image: url('../images/Bticino.svg');
  background-position: 0 100%;
  background-size: auto 18px;
}

.logo-capitolato._04_gessi {
  background-image: url('../images/Gessi.svg');
  width: 30%;
}

.logo-capitolato._06_caleido {
  background-image: url('../images/Caleido.svg');
  background-position: 0 100%;
  width: 35%;
}

.logo-capitolato._05_cesana {
  background-image: url('../images/Cesana.svg');
  background-position: 0 100%;
  width: 50%;
}

.logo-capitolato._02_listone-giorndano {
  background-image: url('../images/Listone-Giordano.svg');
  width: 90%;
}

.logo-capitolato._03_lualdi {
  background-image: url('../images/lualdi_nero.svg');
  background-position: 0 100%;
  background-size: contain;
}

.logo-capitolato._05_flos {
  background-image: url('../images/flos.svg');
  background-size: contain;
}

.logo-capitolato._08_control {
  background-image: url('../images/control4_black.webp');
}

.logo-capitolato._09_paradox {
  background-image: url('../images/paradox_black.webp');
  background-position: 0 100%;
  background-size: auto 18px;
}

.servizi-txt {
  text-align: left;
  font-size: 13px;
  line-height: 1.6em;
}

.splide__slide-2 {
  flex: none;
  width: 20%;
  list-style-type: none;
  box-shadow: 1px 1px 20px 4px #5858584d;
}

.div-block-6 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  display: flex;
}

.div-block-7 {
  z-index: 3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.bg_light-gradient-reverse {
  background-image: linear-gradient(179deg, #f5f0eb 10%, var(--light));
}

.div-block-8 {
  background-color: var(--blue);
  width: 100%;
  height: 1px;
}

.slide-nav {
  z-index: 11;
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: center;
  align-items: flex-end;
  font-size: 11px;
  display: none;
  bottom: 40px;
}

.box_dida-2 {
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 20px;
  display: flex;
}

.heading-xsmall-4 {
  color: #2e2e2e;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.4;
}

.slide-content-3 {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  background-color: #fff;
  flex-direction: column;
  grid-template-rows: auto min-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: flex;
}

.splide__arrow-2 {
  background-color: #a39bff;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  width: 55px;
  height: 45px;
}

.splide__arrow-2.splide__arrow--prev {
  background-image: url('../images/arrow-left_1.svg');
  background-size: 13px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.splide__arrow-2.splide__arrow--next {
  background-image: url('../images/arrow-right_1.svg');
  background-size: 13px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.splide__arrows-2 {
  z-index: 50;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.carousel-01_image-2 {
  object-fit: cover;
  width: 300px;
  height: 240px;
}

.item_line-pittogr-2 {
  background-color: #21273a;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1px;
  display: flex;
  position: relative;
}

.h2-heading-2 {
  letter-spacing: 4px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: ador-hairline, sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.2;
}

.button_component-5 {
  letter-spacing: 0;
  cursor: pointer;
  border: 1px solid #474747;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  padding: 4px;
  text-decoration: none;
  display: flex;
}

.button_component-5:hover {
  letter-spacing: .5px;
}

.button_secondary-2 {
  color: #21273a;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #2220;
  border: 1px solid #474747;
  padding: 12px 30px;
  font-size: .9em;
  font-weight: 600;
  line-height: 1.4;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
}

.button_secondary-2:hover {
  color: #fff;
  background-color: #21273a;
}

.slider-10_component {
  width: 90%;
  max-width: 1300px;
  padding-top: 0%;
  padding-bottom: 0%;
  overflow: hidden;
}

.splide__list-3 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: auto;
  list-style-type: none;
  display: flex;
}

.slide-content-4 {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  background-color: #fff;
  flex-direction: column;
  grid-template-rows: auto min-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: flex;
}

.splide__slide-3 {
  flex: none;
  width: 20%;
  list-style-type: none;
}

.splide__arrow-3 {
  background-color: #a39bff;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  width: 55px;
  height: 45px;
}

.splide__arrow-3.splide__arrow--prev {
  background-image: url('../images/arrow-left_1.svg');
  background-size: 13px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.splide__arrow-3.splide__arrow--next {
  background-image: url('../images/arrow-right_1.svg');
  background-size: 13px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.splide__arrows-3 {
  z-index: 50;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
  display: flex;
  position: relative;
}

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

.container-3.padding-bottom {
  margin-bottom: 100px;
}

.txt_wrap-2 {
  flex-direction: column;
  align-self: center;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.par_line-2 {
  background-color: #0003;
  flex: none;
  width: 170px;
  height: 1px;
  margin-top: 14px;
  margin-bottom: 48px;
}

.h2-san-serif {
  font-family: var(--text-san-serif);
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 1.1em;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}

.footer_gdpr_column {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  font-size: .9em;
  display: flex;
}

.footer_logo {
  object-fit: contain;
  object-position: 0% 50%;
  width: 200px;
  height: 100px;
}

.footer_logo.is-medium {
  width: 150px;
}

.footer-text {
  margin-bottom: 30px;
}

.footer-01_partner_logo {
  width: 170px;
  height: 80px;
  text-decoration: none;
}

.footer-01_partner_logo.investire {
  background-image: url('../images/Investire_logo-white.svg');
}

.footer-01_partner_logo.is-white {
  background-image: url('../images/AbitareCo_logo-bianco.svg');
  margin-bottom: 20px;
}

.footer-01_partner_logo.is-capital-real-estate {
  width: 250px;
  height: 100px;
}

.footer_row-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.footer-discalimer {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.contact_link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  letter-spacing: 1px;
  justify-content: space-between;
  align-items: center;
  font-size: 1em;
  text-decoration: none;
  transition: all .25s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

.contact_link:hover {
  color: #a4afb3;
  text-decoration: underline;
}

.footer_component-3 {
  color: #494949;
  background-color: #6a8085;
  background-image: linear-gradient(#6a8085e3, #6a8085e3), url('../images/poma-flower-pattern_opacity.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100%;
  padding: 100px 60px 60px;
}

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

.text-footer-light {
  font-size: 1.3em;
}

.flex-block-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.footer01_link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #494949;
  letter-spacing: 1px;
  justify-content: space-between;
  align-items: center;
  font-size: 1em;
  text-decoration: none;
  transition: all .25s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

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

.footer01_link.is-small {
  color: #fff;
  text-align: center;
}

.footer-01_partner {
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.footer-01_partner.is-center {
  justify-content: space-between;
  align-items: center;
}

.footer_wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  color: #494949;
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: .9em;
  display: flex;
}

.footer_heading {
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 1em;
  font-weight: 300;
}

.footer_column {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  line-height: 1;
  display: flex;
}

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

.footer-line {
  opacity: .5;
  background-color: #21273a33;
  width: 1px;
}

.footer_gdpr_notes {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-align: left;
  letter-spacing: .5px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 50%;
  font-size: .9em;
  line-height: 1.6;
  display: flex;
}

.footer_link-2 {
  cursor: pointer;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
}

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

.footer_link-2.w--current {
  border-bottom-color: #494949;
}

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

.footer_link-2.no-hover {
  cursor: auto;
  border-bottom-style: none;
  text-decoration: none;
}

.footer_link-2.no-hover:hover {
  color: #fff;
  border-bottom-style: none;
}

.footer-01_partner_couple {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer_partner_container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: center;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  min-width: 500px;
  display: flex;
}

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

.footer_line {
  background-color: #a4afb3;
  width: 1px;
}

.footer_line.is-horizontal {
  background-color: #21273a33;
  width: 100%;
  height: 1px;
}

.footer_line.is-horizontal._w-small {
  width: 50%;
}

.flex-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  justify-content: center;
  width: 100%;
}

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

.footer_gdpr_column-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  font-size: .9em;
  display: flex;
}

.footer_gdpr_notes-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-align: left;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: .85em;
  line-height: 1.6;
  display: flex;
}

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

.footer_link-3:hover {
  color: #cc7d44;
  border-bottom-color: #cc7d44;
}

.footer_link-3.w--current {
  border-bottom-color: #40542e;
}

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

.footer_gdpr_link-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.div-block-9 {
  background-color: #21273a33;
  width: 50%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.logo-partner {
  width: 100%;
  height: 100%;
}

.flex-block-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.form_link-3 {
  text-align: left;
}

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

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

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

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

.dropdown_list {
  font-weight: 400;
}

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

.policy-flag {
  color: var(--blue);
  text-align: left;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

.form_field-2 {
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #21273a40;
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.form_field-2::placeholder {
  color: var(--blue);
}

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

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

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

.form_label {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
}

.form_wrapper {
  width: 100%;
}

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

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

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

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

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

.form_text-3 {
  text-align: left;
  font-size: 13px;
}

.nav_logo-responsive {
  display: none;
}

.h1-heading {
  font-family: var(--text-title);
  text-transform: uppercase;
  font-size: 2.8em;
  line-height: 1.2;
}

.paragraph-small {
  margin-top: 10px;
}

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

.container-5.is-technical {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: center;
}

.button_component-6 {
  cursor: pointer;
  text-decoration: none;
}

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

.container-6.is-technical {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  align-items: center;
}

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

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

.button-5.is-icon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--blue);
  align-items: center;
  display: flex;
}

.button-5.is-text {
  text-decoration: underline;
}

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

.button_component-7 {
  cursor: pointer;
  text-decoration: none;
}

.note_txt {
  text-align: left;
  width: 100%;
}

.note_txt p {
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
}

.note_txt h1 {
  font-size: 2em;
  font-weight: 500;
}

.note_txt h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 500;
}

.note_txt a {
  color: var(--black);
  font-weight: 500;
}

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

.container-7.is-technical {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  align-items: center;
}

.button_component-8 {
  cursor: pointer;
  text-decoration: none;
}

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

.button-6.is-text {
  text-decoration: underline;
}

.ip-_dot-2 {
  z-index: 2;
  background-color: #76857d;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  position: absolute;
}

.ip_wrap {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 1685px;
  max-width: 100%;
  height: 700px;
  max-height: 30vw;
  margin-top: 0;
  position: relative;
  box-shadow: 0 7px 11px 4px #0003;
}

.ip_wrap.mood-essential {
  background-image: url('../images/Home-Configurator-Essential_crop.webp');
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.ip_wrap.mood-essential.tab {
  display: none;
}

.ip_wrap.mood-design {
  background-image: url('../images/Home-Configurator-Design_crop.webp');
  width: 1685px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.ip_wrap.mood-design.tab {
  display: none;
}

.ip_wrap.mood-elegance {
  background-image: url('../images/Home-Configurator-Elegance_crop.webp');
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.ip_wrap.mood-elegance.tab {
  display: none;
}

.ip_btn_wrap-main {
  opacity: 1;
  cursor: pointer;
  background-color: #1414144d;
  border: 1px solid #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: opacity .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: absolute;
  box-shadow: 0 0 30px 6px #0006;
}

.ip_btn_wrap-main:hover {
  opacity: 1;
}

.ip_btn_wrap-main.design_02 {
  z-index: 2;
  bottom: 61%;
  right: 54%;
}

.ip_btn_wrap-main.design_03 {
  z-index: 2;
  bottom: 23%;
  right: 66%;
}

.ip_btn_wrap-main.classico_04 {
  z-index: 2;
  bottom: 44%;
  right: 49%;
}

.ip_btn_wrap-main.elegance_01 {
  z-index: 2;
  bottom: 10%;
  right: 30%;
}

.ip_btn_wrap-main.elegance_02 {
  z-index: 2;
  bottom: 61%;
  right: 54%;
}

.ip_btn_wrap-main.p01 {
  z-index: 2;
  bottom: 10%;
  right: 30%;
}

.ip_btn_wrap-main.p03 {
  z-index: 2;
  bottom: 24%;
  right: 66%;
}

.ip_btn_wrap-main.p02 {
  z-index: 2;
  opacity: 1;
  bottom: 61%;
  right: 54%;
}

.ip_btn_wrap-main.elegance_03 {
  z-index: 2;
  bottom: 23%;
  right: 66%;
}

.ip_btn_wrap-main.design_01 {
  z-index: 2;
  bottom: 10%;
  right: 30%;
}

.ip_btn_wrap-main.classico_05 {
  z-index: 2;
  bottom: 69%;
  right: 83%;
}

.tab-content {
  padding-top: 0;
  padding-bottom: 0;
}

.tab-content.is-mood, .tab-content.is-mood-responsive {
  width: 1685px;
  max-width: 61%;
  margin-left: auto;
  margin-right: auto;
}

.ip_btn__box {
  z-index: 1;
  text-transform: uppercase;
  cursor: default;
  border-radius: 3px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 0;
  height: 0;
  font-size: 16px;
  display: flex;
  position: absolute;
  bottom: 100%;
  left: 100%;
  overflow: hidden;
  box-shadow: 0 0 12px 2px #0003;
}

.ip_btn__box.middle {
  box-shadow: none;
  width: auto;
  height: 0;
  margin-left: 10px;
  display: flex;
  bottom: -130%;
  overflow: hidden;
}

.txt-action-2 {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.container-8 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-direction: column;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-8.is-mood {
  margin-top: 40px;
}

.container-8.is-full-screen {
  width: 100%;
  max-width: none;
}

.text-mood {
  text-transform: none;
  font-style: italic;
}

.ip_txt {
  color: #414141;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.ip_txt.maiuscolo {
  text-transform: uppercase;
}

.tab-link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  opacity: .7;
  color: #76857d;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  border-right: 1px #76857d;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  transition: height .2s, color .2s;
  display: flex;
  overflow: hidden;
}

.tab-link:hover {
  color: #223730;
}

.tab-link.w--current {
  opacity: 1;
  background-color: #0000;
  border-width: 1px;
  border-color: #76857d;
  border-top-style: none;
  border-left-style: none;
  border-right-style: none;
  font-style: normal;
  overflow: visible;
}

.tab-link.is-last {
  border-left: 1px solid #76857d;
  border-right-style: none;
  font-style: normal;
}

.div-block-10 {
  display: none;
}

.tab-tecnica {
  width: auto;
}

.tab-tecnica.is-mood_responsive {
  display: none;
}

.text_wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  width: 100%;
  padding-bottom: 0;
  font-style: normal;
  display: flex;
}

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

.tabs-menu {
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  font-style: normal;
  display: flex;
}

.div-block-11 {
  justify-content: space-between;
  align-items: center;
  width: auto;
  font-size: 12px;
  display: flex;
}

.heading-medium-4 {
  max-width: 550px;
}

.h3-heading {
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 18px;
  font-style: normal;
  line-height: 22px;
}

.mood-tab_wrapper {
  height: 50px;
}

.line_item {
  width: 100%;
  height: 1px;
}

.line_item.is-tab {
  background-color: #76857d;
  width: 80%;
  height: .5px;
  position: absolute;
  inset: auto auto -3px;
}

.ip_btn_dot {
  z-index: 2;
  background-color: #fff;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  position: absolute;
}

.ip-loghi {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 30px;
}

.ip-loghi.texture {
  background-image: url('../images/iStock-1141646915_crop03.webp');
  background-size: cover;
}

.ip-loghi.texture.elegance-03 {
  background-image: url('../images/elegance_divano_molteni.webp');
}

.ip-loghi.texture.design-03 {
  background-image: url('../images/design_divano_molteni.webp');
}

.ip-loghi.texture.elegance-02 {
  background-image: url('../images/elegance_pavimento_listone-giordano.webp');
}

.ip-loghi.texture.design-01 {
  background-image: url('../images/design_pavimento_florim.webp');
}

.ip-loghi.texture.elegance-01 {
  background-image: url('../images/elegance_rivestimento.webp');
}

.ip-loghi.texture.essential-02 {
  background-image: url('../images/essential_divano_molteni.webp');
}

.ip-loghi.texture.essential-01 {
  background-image: url('../images/essential_rivestimento.webp');
}

.ip-loghi.texture.design-02 {
  background-image: url('../images/design_rivestimento.webp');
}

.ip-loghi.texture.essential-03 {
  background-image: url('../images/essential_pavimento_florim.webp');
}

.box_img {
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.ip_btn-2 {
  opacity: .7;
  cursor: auto;
  border: 1px solid #da7249;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  margin-right: 10px;
  transition: opacity .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: static;
}

.ip_btn-2:hover {
  opacity: 1;
}

.ip_btn-2.no-effect {
  opacity: 1;
  border-color: #76857d;
  width: 25px;
  height: 25px;
}

.box_content-2 {
  z-index: 1;
  text-transform: uppercase;
  background-color: #141414;
  border-radius: 10px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 230px;
  height: 230px;
  padding: 40px;
  font-size: 16px;
  display: flex;
}

.box_content-2.frt {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  color: #141414;
  text-transform: none;
  background-color: #ffffffa6;
  border: 1px solid #fff;
  width: 150px;
  height: 150px;
  padding: 10px 15px;
  overflow: visible;
}

.box_content-2.frt.height-small {
  height: 130px;
}

.box_content-2.frt.height-medium {
  height: 180px;
}

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

.gdpr-embed {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.gtm-embed {
  display: none;
}

.ip_piu {
  z-index: 10;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

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

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

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

.x_asta01.isb {
  transform: rotate(0);
}

.boxes_wrap-copy {
  grid-column-gap: 32px;
  grid-row-gap: 16px;
  width: 100%;
  margin-top: 48px;
  display: flex;
}

.box-copy.is-link.is-single {
  display: flex;
}

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

.text-block {
  font-family: var(--text-title);
  margin-bottom: 5px;
  font-weight: 500;
}

.link {
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 15px;
  text-decoration: none;
  transition: border-color .35s;
}

.link:hover {
  border-bottom-color: #0000;
}

.box-copy {
  cursor: pointer;
  flex-direction: column;
  flex: 1;
  display: flex;
}

.box-copy.is-link {
  color: var(--blue);
  text-decoration: none;
}

.map {
  height: 30vw;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2em;
  }

  .form_field {
    line-height: 20px;
  }

  .nav_component {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    height: 82px;
    padding: 16px 32px;
  }

  .header_component {
    justify-content: flex-end;
    padding-bottom: 110px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .nav_logo_wrap {
    z-index: 3;
    filter: invert();
    display: none;
    position: relative;
  }

  .nav_logo_wrap.is-resposive {
    display: flex;
  }

  .nav_link_wrap {
    align-self: auto;
  }

  .nav_link_wrap.last {
    margin-bottom: auto;
  }

  .nav_link_wrap.first {
    margin-top: auto;
    margin-bottom: 20px;
    display: flex;
  }

  .nav_link_line {
    background-color: var(--blue);
  }

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

  .section.quote {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
  }

  .section.bg_light-gradient-reverse.boder-top {
    padding-top: 40px;
  }

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

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

  .container.overlying {
    border-style: solid none solid solid;
    border-width: 48px;
    flex-direction: column;
  }

  .container.overlying.double {
    background-color: var(--light);
    border-width: 48px;
    flex-direction: column;
  }

  .container.overlying.reverse-hor {
    border-bottom-style: none;
    flex-direction: column;
  }

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

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

  .container.contact {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 40px;
  }

  .container.is-hcdesktop {
    display: none;
  }

  .container.is-hcresponsive {
    display: flex;
  }

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

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

  .video_componen {
    align-self: stretch;
  }

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

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

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

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

  .image-fullscreen.map {
    object-position: 70% 50%;
    height: 50vw;
  }

  .form_component {
    flex-direction: column;
  }

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

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

  .slider_mask {
    width: 49%;
  }

  .slider_mask.small {
    width: 25%;
  }

  .slider_component {
    flex: 0 auto;
    order: -1;
    width: 100%;
  }

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

  .header_container {
    max-height: 70vh;
  }

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

  .nav_buttons.lang {
    display: none;
  }

  .footer_row {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
  }

  .footer_row.last {
    justify-content: flex-start;
  }

  .nav_links {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    align-self: auto;
    align-items: center;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .nav_line {
    display: none;
  }

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

  .nav_lottie {
    flex: none;
  }

  .contact_column {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .contact_column.bg_light-pattern01 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact_column.no-border {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 40px;
  }

  .slide_img_wrap {
    flex: none;
  }

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

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

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

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

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

  .container_image {
    max-height: 60vw;
  }

  .form_par {
    max-width: none;
  }

  .txt_wrap {
    padding-left: 48px;
    padding-right: 48px;
  }

  .txt_wrap.bg_light {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .txt_wrap.horizontal {
    max-width: none;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .txt_wrap.horizontal.mobile-first {
    order: 1;
  }

  .txt_wrap.quote {
    max-width: 70vw;
    padding-left: 60px;
    padding-right: 60px;
  }

  .txt_wrap._2col {
    margin-bottom: 0;
  }

  .txt_wrap.bg_light-pattern01 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .floorplan_txt_wrap {
    align-items: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    position: static;
  }

  .floorplan_img_wrap {
    flex: none;
    width: 100%;
    min-width: auto;
    max-width: none;
    height: 52vw;
    min-height: 350px;
  }

  .floorplan_component {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-direction: column;
    align-self: stretch;
    height: auto;
    max-height: none;
  }

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

  .floorplan_plan {
    flex: none;
    width: 80%;
    min-width: auto;
    max-width: none;
    height: 46vw;
    min-height: auto;
    max-height: none;
    margin-left: auto;
    margin-right: auto;
  }

  .floorplan_plan.reverse {
    margin-left: auto;
    margin-right: auto;
  }

  .floorplan_plan.plans {
    margin-top: 0;
  }

  .poi_number.absolute._05 {
    left: 50%;
  }

  .poi_number.absolute._01 {
    left: 45%;
  }

  .poi_number.absolute._03 {
    left: 64%;
  }

  .poi_number.absolute._02 {
    left: 38%;
  }

  .poi_number.absolute._04 {
    left: 22%;
  }

  .poi_number.absolute._06 {
    left: 21%;
  }

  .poi_number.absolute._07 {
    left: 61%;
  }

  .poi_number.absolute._08 {
    left: 79%;
  }

  .poi_number.absolute._09 {
    left: 85%;
  }

  .poi_number.absolute._10 {
    left: 47%;
  }

  .poi_number.absolute._11 {
    left: 45%;
  }

  .poi_number.absolute._12 {
    left: 75%;
  }

  .accordion_img_wrap {
    height: auto;
    min-height: auto;
  }

  .arrow_box {
    height: 40px;
  }

  .download_component {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    border: 1px #000;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 32px 32px;
  }

  .download_column {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .lightbox_slider_arrow {
    left: 32px;
  }

  .lightbox_slider_arrow.right {
    right: 32px;
  }

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

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

  .lightbox_logo {
    display: none;
  }

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

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

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

  .download_wrap {
    height: auto;
  }

  .download_form {
    margin-bottom: 0;
  }

  .nav_links_wrap {
    z-index: 1;
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #ffffffad;
    width: 100%;
    height: 100vh;
    padding: 100px 32px;
    display: none;
    position: fixed;
    inset: 0;
    overflow: auto;
  }

  .nav_lang {
    margin-top: 60px;
    position: static;
  }

  .overlying_image {
    flex: none;
    height: 64vw;
    margin: -48px 48px 0 -48px;
  }

  .overlying_image.double {
    margin: -48px 48px 0 -48px;
  }

  .overlying_image.double.right {
    margin: 0 -48px -48px 48px;
  }

  .overlying_image.reverse-hor {
    margin-bottom: 0;
    margin-left: 48px;
    margin-right: -48px;
  }

  .overlying_image.reverse-ver {
    margin-top: -48px;
    margin-bottom: 0;
  }

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

  .slider02_container {
    flex: 1;
  }

  .bg_txt_wrap {
    background-size: cover;
    left: 0%;
    right: 0%;
  }

  .footer_links {
    flex-wrap: wrap;
  }

  .boxes_wrap {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
  }

  .box {
    flex: none;
    width: 40%;
    max-width: 370px;
  }

  .box.is-link.is-single {
    width: 100%;
    max-width: none;
  }

  .box_mask {
    height: 30vw;
    min-height: 200px;
  }

  .box_dida {
    flex: 1;
    justify-content: space-between;
  }

  .box_dida.small {
    align-items: center;
  }

  .nav_space {
    display: none;
  }

  .quote_img-full {
    width: 100%;
    height: 100%;
    position: absolute;
  }

  .quote_img-frame {
    display: none;
  }

  .overlying_txt_wrap {
    max-width: 100%;
    padding: 60px 48px;
  }

  .partner_logo.is-negative {
    opacity: 1;
    filter: invert();
  }

  .partner_line {
    background-color: var(--white);
    width: 1px;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .slide_icon_wrap {
    flex: none;
  }

  .accordion_img_wrap-2 {
    height: 30vw;
  }

  .header_component_nav-small {
    padding-left: 0;
    padding-right: 0;
  }

  .header_component_nav-small.is-bg-mage {
    padding-top: 140px;
  }

  .download_txt {
    margin-left: 0;
  }

  .download_image {
    order: -1;
    margin: 0 -32px;
  }

  .logo-tecnical {
    flex: none;
    margin-bottom: 60px;
    position: static;
  }

  .nav_lang_txt {
    border-color: var(--blue);
    color: var(--blue);
  }

  .nav_background {
    z-index: 0;
    background-color: var(--light);
    opacity: 1;
    display: block;
    position: absolute;
    inset: 0;
  }

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

  .section-gallery {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: 150px minmax(350px, 1fr) minmax(350px, 1fr);
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: 90%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }

  .box-scroll {
    flex: none;
    width: 40%;
    max-width: 370px;
  }

  .boxes_wrap-scroll {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-wrap: nowrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-self: stretch;
    width: auto;
    margin-left: -32px;
    margin-right: -32px;
    padding-left: 32px;
    padding-right: 32px;
    overflow: auto;
  }

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

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

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

  .item_timbro {
    width: 150px;
  }

  .line-divider.tablet-hide {
    display: none;
  }

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

  .grid-icon.is-large.margin-top {
    grid-column-gap: 8vw;
    grid-row-gap: 8vw;
  }

  .grid-icon.is-last {
    max-width: 80%;
  }

  .logo_partner {
    min-width: 100px;
  }

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

  .slider-gallery {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .splide__slide {
    flex: none;
    width: 33.333%;
  }

  .text-wrap, .servizi-content-capitolato {
    height: 150px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .splide__slide-2, .splide__slide-3 {
    flex: none;
    width: 33.333%;
  }

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

  .txt_wrap-2 {
    padding-left: 48px;
    padding-right: 48px;
  }

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

  .footer_row-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .footer-discalimer {
    width: 100%;
  }

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

  .flex-block-2 {
    flex-flow: column;
    width: 100%;
  }

  .footer01_link.is-small {
    white-space: nowrap;
  }

  .footer-01_partner {
    align-items: center;
    width: 200px;
    margin-left: 40px;
    margin-right: 40px;
  }

  .footer_wrapper {
    flex-direction: column;
  }

  .footer_column {
    padding-bottom: 0;
  }

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

  .footer-line {
    width: 100%;
    height: 1px;
  }

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

  .footer-01_partner_couple {
    flex-flow: column;
    align-items: center;
  }

  .footer_partner_container {
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: auto;
  }

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

  .footer_line.is-horizontal._w-small {
    width: 70%;
  }

  .flex-block {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
  }

  .footer_gdpr_link {
    justify-content: center;
    align-items: center;
  }

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

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

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

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

  .nav_logo-responsive {
    z-index: 3;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    display: flex;
    position: relative;
  }

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

  .h1-heading {
    max-width: 80%;
  }

  .paragraph-small {
    font-size: .8em;
  }

  .tabs-content {
    width: 100%;
    height: 70px;
    position: absolute;
    inset: auto 0% 0%;
  }

  .box_info {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-image: linear-gradient(#0000, #00000087);
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    display: flex;
    position: absolute;
    bottom: 0;
  }

  .ip_wrap {
    aspect-ratio: 3 / 2;
    background-image: url('../images/AC1670_VPInt01_Living_REV02.webp');
    width: 100%;
    height: auto;
    max-height: none;
  }

  .ip_wrap.mood-essential {
    display: none;
  }

  .ip_wrap.mood-essential.tab {
    width: 100%;
    max-height: 53.46vw;
    display: flex;
  }

  .ip_wrap.mood-essential.tab.display-none {
    display: none;
  }

  .ip_wrap.mood-design {
    width: 100%;
    display: none;
  }

  .ip_wrap.mood-design.tab {
    max-width: 100%;
    max-height: 53.46vw;
    display: flex;
  }

  .ip_wrap.mood-elegance {
    display: none;
  }

  .ip_wrap.mood-elegance.tab {
    max-height: 53.46vw;
    display: flex;
  }

  .ip_btn_wrap-main {
    width: 30px;
    height: 30px;
    padding: 1px 0 0;
  }

  .ip_btn_wrap-main.w--current {
    background-color: #fff;
    padding-left: 0;
    padding-right: 0;
  }

  .ip_btn_wrap-main.p01 {
    inset: 72% auto auto 17%;
  }

  .ip_btn_wrap-main.p03 {
    inset: 89% auto auto 83%;
  }

  .ip_btn_wrap-main.p02 {
    inset: 53% auto auto 61%;
  }

  .ip-content-tab {
    height: 70px;
    position: static;
  }

  .tab-content.is-mood-responsive {
    width: 90%;
    max-width: none;
  }

  .ip_txt {
    color: #fff;
    text-align: left;
    font-weight: 300;
    line-height: 14px;
  }

  .ip_txt.maiuscolo {
    margin-right: 2px;
    font-weight: 700;
  }

  .tab-tecnica.is-mood {
    display: none;
  }

  .tab-tecnica.is-mood_responsive {
    display: block;
  }

  .box_txt {
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
  }

  .ip_btn_dot {
    width: 7px;
    height: 7px;
    position: static;
  }

  .ip-loghi.texture {
    border: 1px solid #fff;
    width: 100px;
  }

  .ip-loghi.texture.essential-01 {
    border: 1px solid #fff;
  }

  .tabs-menu-2 {
    height: 100%;
    position: absolute;
    inset: 0%;
  }

  .box_img {
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  .box_img.tab {
    justify-content: flex-end;
    height: 50px;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
  }

  .box_img.tab.small {
    width: 50px;
  }

  .box_content-2.frt {
    height: 15px;
  }

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

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

  .boxes_wrap-copy {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
  }

  .box-copy {
    flex: none;
    width: 40%;
    max-width: 370px;
  }

  .box-copy.is-link.is-single {
    width: 100%;
    max-width: none;
  }

  .map {
    height: 50vw;
  }
}

@media screen and (max-width: 767px) {
  body {
    text-align: left;
    font-size: 14px;
  }

  h1 {
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .form_field {
    margin-bottom: 15px;
  }

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

  .header_component {
    background-color: var(--light);
    color: var(--blue);
    justify-content: flex-start;
    min-height: 650px;
    padding: 80px 0 32px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section.overflow-hidden.no-padding-bottom {
    padding-top: 48px;
  }

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

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

  .container.overlying {
    border-style: none solid;
    border-width: 32px;
    flex-direction: column;
  }

  .container.overlying.double {
    border-width: 32px;
  }

  .container.overlying.reverse-hor {
    border-top-style: none;
    border-bottom-style: none;
    border-left-style: solid;
    flex-direction: column;
  }

  .container.overlying.reverse-ver {
    border-top-style: none;
  }

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

  .container.tecnical {
    text-align: center;
    width: 80%;
  }

  .container.video {
    width: auto;
    margin-left: -32px;
    margin-right: -32px;
  }

  .container.txt-slider {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-wrap: wrap;
  }

  .container.full {
    grid-row-gap: 20px;
  }

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

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

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

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

  .header_img {
    flex: 1;
    order: -1;
    width: 100%;
    min-height: 100%;
  }

  .header_img.home {
    min-height: 80vw;
    margin-bottom: 57px;
  }

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

  .slider_mask.small {
    width: 33%;
  }

  .slider_arrow {
    background-size: 100%;
  }

  .slider_arrow.left {
    margin-right: 8px;
    top: auto;
    bottom: 0%;
    right: 50%;
  }

  .slider_arrow.left.bottom {
    z-index: 50;
    inset: 0% auto auto 0%;
  }

  .slider_arrow.right {
    margin-left: 8px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 50%;
  }

  .slider_arrow.right.bottom {
    inset: 0% 0% auto auto;
  }

  .slider_component.overflow-hidden {
    margin-top: 32px;
    padding-bottom: 40px;
  }

  .poi_column {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex: 1;
    grid-template-columns: 1fr 1fr;
    min-width: 40%;
    margin-bottom: 40px;
  }

  .header_container {
    color: var(--white);
    max-width: none;
    padding-left: 32px;
    padding-right: 32px;
  }

  .footer_row {
    grid-column-gap: 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav_hamburger {
    height: 40px;
  }

  .contact_column {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .button_component.negative {
    margin-top: 16px;
  }

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

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

  .container_image.mobile-full {
    width: auto;
    max-width: none;
    margin-left: -32px;
    margin-right: -32px;
  }

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

  .txt_wrap {
    align-items: flex-start;
    padding-left: 32px;
    padding-right: 32px;
  }

  .txt_wrap.horizontal {
    text-align: left;
    width: 100%;
    max-width: none;
    padding: 48px 32px;
  }

  .txt_wrap.quote {
    max-width: 72vw;
    padding: 48px 32px;
  }

  .txt_wrap.slider {
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .txt_wrap._2col {
    align-items: flex-start;
    display: flex;
  }

  .txt_wrap.is-full.resposive_align-center {
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 0;
  }

  .txt_wrap.max-width {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .floorplan_component {
    min-height: auto;
  }

  .floorplan_plan.plans {
    width: 400px;
    height: 400px;
    margin-top: 20px;
  }

  .poi_item {
    text-align: center;
  }

  .poi_number.absolute {
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
  }

  .accordion_img_wrap {
    height: 50vw;
  }

  .arrow_box {
    order: 1;
    align-self: auto;
    display: none;
  }

  .arrow_box.right {
    order: 3;
    display: none;
  }

  .lightbox_slide {
    margin-right: 10px;
  }

  .slider_container {
    flex-direction: column;
  }

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

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

  .lightbox_list {
    flex-direction: column;
    justify-content: flex-start;
  }

  .overlying_image {
    margin: 0 -32px;
  }

  .overlying_image.double {
    margin: -32px 32px 0 -32px;
  }

  .overlying_image.double.right {
    margin: 0 -32px -32px 32px;
  }

  .overlying_image.reverse-hor {
    margin-bottom: 0;
    margin-left: -32px;
    margin-right: -32px;
  }

  .overlying_image.reverse-ver {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

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

  .boxes_wrap {
    grid-row-gap: 48px;
    flex-direction: column;
  }

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

  .box_mask {
    height: 60vw;
    max-height: 430px;
  }

  .box_dida {
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .footer_margin {
    margin-top: 40px;
  }

  .quote_wrap {
    text-align: center;
    margin-bottom: 0;
    padding: 30px 20px;
  }

  .overlying_txt_wrap {
    text-align: left;
    align-items: flex-start;
    padding: 32px;
  }

  .overlying_txt_wrap.no-subtitle {
    width: 100%;
    max-width: none;
  }

  .h2-nosubtitle {
    margin-bottom: 48px;
  }

  .accordion_img_wrap-2 {
    height: 44vw;
  }

  .text-span {
    display: inline-block;
  }

  .h2-2col {
    margin-bottom: 16px;
  }

  .box-scroll {
    width: 70%;
    max-width: none;
  }

  .boxes_wrap-scroll {
    grid-row-gap: 48px;
    flex-direction: row;
  }

  .h2-heading.text-color-rose.align-center, .text_container.is-align-center.text-color-white.center {
    text-align: center;
  }

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

  .item_timbro {
    width: 100px;
  }

  .grid-mood {
    grid-template-rows: 350px;
  }

  .timbro_wrap.is-absolute {
    width: 60px;
    right: -25px;
  }

  .line-divider {
    width: 100%;
    height: 1px;
    display: none;
  }

  .line-divider.tablet-hide {
    display: block;
  }

  .grid-icon {
    grid-column-gap: 3vw;
    grid-row-gap: 40px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    display: flex;
  }

  .grid-icon.is-large.margin-top {
    flex-flow: column;
  }

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

  .slider-header {
    min-height: 650px;
  }

  .slider-gallery {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .splide__slide {
    width: 50%;
  }

  .text-wrap, .servizi-content-capitolato {
    height: 120px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .splide__slide-2 {
    width: 50%;
  }

  .box_dida-2 {
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .splide__slide-3 {
    width: 50%;
  }

  .txt_wrap-2 {
    align-items: flex-start;
    padding-left: 32px;
    padding-right: 32px;
  }

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

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

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

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

  .footer_gdpr_notes {
    text-align: center;
  }

  .footer-01_partner_couple {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer_gdpr_link {
    place-content: flex-start center;
    align-items: center;
    width: 100%;
  }

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

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

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

  .form_field-2 {
    margin-bottom: 15px;
  }

  .form_wrapper {
    width: 100%;
  }

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

  .tabs-content {
    background-color: var(--black);
    height: 80px;
    bottom: -80px;
  }

  .box_info {
    background-image: none;
    align-items: center;
    height: 100%;
    bottom: auto;
  }

  .ip_wrap {
    margin-bottom: 60px;
  }

  .ip_btn_wrap-main {
    width: 20px;
    height: 20px;
    padding-top: 0;
  }

  .ip_btn_wrap-main.p01 {
    bottom: 19%;
    right: 20%;
  }

  .ip-content-tab {
    height: auto;
  }

  .container-8 {
    max-width: 70%;
    margin: 0 auto;
  }

  .tab-link.is-last {
    border-left-style: none;
  }

  .tab-tecnica {
    overflow: auto;
  }

  .tabs-menu {
    flex-direction: column;
  }

  .ip_btn_dot {
    width: 5px;
    height: 5px;
  }

  .ip-loghi.texture {
    width: 30px;
  }

  .boxes_wrap-copy {
    grid-row-gap: 48px;
    flex-direction: column;
  }

  .box-copy {
    width: 100%;
    max-width: none;
  }

  .map {
    height: 70vw;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 1.5em;
    line-height: 1.3;
  }

  h2 {
    margin-top: 0;
    font-size: 2em;
  }

  .todelete {
    display: none;
  }

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

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

  .section {
    padding: 60px 20px;
  }

  .section.overflow-hidden.slider_home {
    height: auto;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .section.bg-light {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section.gap100 {
    grid-row-gap: 48px;
  }

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

  .heading-xsmall.txt_align-left {
    text-align: left;
  }

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

  .heading-medium.gallery {
    font-size: 1.7rem;
  }

  .container {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    align-items: flex-start;
  }

  .container.overlying {
    border-bottom-style: solid;
    border-bottom-width: 20px;
    border-left-style: solid;
    border-left-width: 20px;
    border-right-style: solid;
    border-right-width: 20px;
  }

  .container.overlying.double {
    border-width: 20px;
  }

  .container.overlying.reverse-ver {
    border-top-style: none;
  }

  .container.quote {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .container.large.no-gap {
    align-items: center;
  }

  .container.large.no-gap.slider-home {
    max-width: none;
    height: 100%;
    top: 32px;
  }

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

  .container.tecnical {
    align-items: center;
    padding-top: 61px;
  }

  .container.video {
    margin-left: -20px;
    margin-right: -20px;
  }

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

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

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

  .footer_title {
    margin-bottom: 20px;
  }

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

  .button_primary.submit {
    margin-top: 20px;
  }

  .image-fullscreen.map {
    height: 80vw;
  }

  .header_img.home {
    margin-bottom: 32px;
  }

  .slider_mask.small {
    width: 50%;
  }

  .slider_arrow.left.bottom {
    z-index: 300;
    top: auto;
    bottom: -20px;
  }

  .slider_arrow.right.bottom {
    top: auto;
    bottom: -20px;
  }

  .slider_component {
    max-height: 130vw;
    margin-top: 8px;
  }

  .slider_component.overflow-hidden {
    z-index: 50;
  }

  .slider_slide {
    margin-right: 10px;
  }

  .poi_column {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

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

  .contact_column {
    flex-direction: column;
    display: flex;
  }

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

  .button_component {
    margin-top: 32px;
  }

  .popup-area_wrap {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .popup-area_box {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .popup-area_box.accedi {
    align-self: stretch;
    max-width: none;
  }

  .area_row {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    flex-direction: column;
    margin-top: 40px;
  }

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

  .container_image.mobile-full {
    margin-left: -20px;
    margin-right: -20px;
  }

  .txt_wrap {
    padding: 16px 0;
  }

  .txt_wrap.bg_light {
    padding: 40px 16px;
  }

  .txt_wrap.bg_light.center-allign {
    align-items: center;
  }

  .txt_wrap.horizontal {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .txt_wrap.quote {
    padding: 32px 24px;
  }

  .txt_wrap.slider {
    padding: 8px 16px;
  }

  .txt_wrap.bg_light-pattern01 {
    padding: 40px 16px;
  }

  .txt_wrap.bg_light-pattern01.center-allign {
    align-items: center;
  }

  .floorplan_txt_wrap {
    text-align: center;
    align-self: flex-start;
    margin-right: auto;
  }

  .floorplan_img_wrap {
    height: 80vw;
    min-height: 250px;
  }

  .floorplan_plan.plans {
    width: 90vw;
    height: 90vw;
    margin-top: 40px;
  }

  .floorplan_icon_wrap {
    width: 26px;
    height: 26px;
  }

  .image_hover {
    font-size: 9vw;
  }

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

  .accordion_img_wrap {
    height: auto;
    min-height: 70vw;
  }

  .arrow_box {
    display: none;
  }

  .arrow_disable.left.bottom {
    background-color: #0000;
    margin-left: 0;
    margin-right: 10px;
    display: none;
    inset: auto 50% 76px auto;
  }

  .arrow_disable.right.bottom {
    margin-left: 10px;
    margin-right: 0;
    inset: auto auto 76px 50%;
  }

  .download_component {
    padding: 0 20px 40px;
  }

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

  .slider_container {
    align-items: center;
  }

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

  .lightbox_wrap {
    flex-direction: column;
  }

  .lightbox_img_wrap {
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }

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

  .par_line {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .overlying_image {
    height: 70vw;
    margin-left: -20px;
    margin-right: -20px;
  }

  .overlying_image.double {
    margin-top: -20px;
    margin-left: -20px;
    margin-right: 20px;
  }

  .overlying_image.double.right {
    margin-bottom: -20px;
    margin-left: 20px;
    margin-right: -20px;
  }

  .overlying_image.reverse-hor {
    margin-left: -20px;
    margin-right: -20px;
  }

  .overlying_image.reverse-ver {
    margin-top: 0;
    margin-bottom: 0;
  }

  .dida_txt {
    width: 100%;
  }

  .nav-bottom {
    justify-content: center;
    height: 100%;
    padding-top: 0;
    padding-bottom: 79px;
    padding-left: 0;
    display: flex;
  }

  .nav-bottom.slider_home {
    height: auto;
    padding-bottom: 18px;
  }

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

  .nav-bottom_slide, .slider02_container {
    margin-right: 10px;
  }

  .bg_txt_wrap {
    background-position: 50% 100%;
    background-size: contain;
  }

  .bg_txt_wrap.slider {
    filter: invert(14%);
    width: 100%;
    height: 24vw;
    position: static;
    top: -1%;
  }

  .boxes_wrap {
    grid-row-gap: 60px;
  }

  .quote_wrap {
    background-size: 48px, 48px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .quote_txt {
    font-size: 28px;
  }

  .quote_par {
    margin-bottom: 32px;
    font-size: 25px;
  }

  .overlying_txt_wrap {
    padding: 40px 24px;
  }

  .overlying_txt_wrap.left {
    align-items: flex-start;
  }

  .h2-nosubtitle {
    margin-bottom: 32px;
  }

  .partner_logo.is-negative {
    height: 15px;
  }

  .partner_line {
    display: none;
  }

  .partner_dida {
    text-align: center;
  }

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

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

  .lightbox_tab_link {
    border-right-style: none;
    padding-right: 0;
    transform: none;
  }

  .lightbox_tab_link-txt {
    transform: none;
  }

  .h1-technichal {
    font-size: 1.8em;
  }

  .download_image {
    min-height: 240px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .error_contact {
    font-size: 18px;
  }

  .txt-inline {
    display: inline;
  }

  .gallery_hover {
    font-size: 9vw;
  }

  .floorplan_icon {
    width: 26px;
    height: 26px;
  }

  .section-gallery {
    margin-top: 40px;
  }

  .box-scroll {
    width: 90%;
  }

  .boxes_wrap-scroll {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 0;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .style_title {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .title-section {
    flex-flow: column;
  }

  .button {
    padding-left: 32px;
    padding-right: 32px;
    line-height: 1.4;
  }

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

  .image_hover-2 {
    font-size: 9vw;
  }

  .grid-mood {
    grid-template-rows: 200px;
  }

  .image_hover-opacity {
    font-size: 9vw;
  }

  .txt-action {
    font-size: 12px;
  }

  .slider-gallery {
    padding-top: 25%;
    padding-bottom: 25%;
  }

  .splide__slide {
    width: 100%;
  }

  .text-wrap, .servizi-content-capitolato {
    padding-top: 30px;
  }

  .splide__slide-2 {
    width: 100%;
  }

  .box_dida-2 {
    padding-bottom: 0;
  }

  .button_component-5 {
    margin-top: 32px;
  }

  .button_secondary-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slider-10_component {
    margin-left: auto;
    margin-right: auto;
  }

  .splide__slide-3 {
    width: 100%;
  }

  .container-3 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    align-items: flex-start;
  }

  .txt_wrap-2 {
    padding: 16px 0;
  }

  .par_line-2 {
    max-width: 100%;
    margin-bottom: 32px;
  }

  .footer_gdpr_column {
    text-align: left;
    width: 100%;
  }

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

  .footer_wrapper {
    grid-row-gap: 60px;
  }

  .footer_column {
    text-align: center;
    order: 0;
    align-items: center;
  }

  .footer_partner_container {
    flex-flow: column;
  }

  .footer_line.is-horizontal._w-small {
    width: 100%;
  }

  .footer_gdpr_link {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

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

  .footer_gdpr_notes-2 {
    color: #494949;
  }

  .footer_gdpr_link-2 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .flex-block-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .tabs-content {
    background-color: var(--black);
    height: 90px;
    bottom: -90px;
  }

  .box_info {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: center;
    background-image: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .ip_btn_wrap-main.p03 {
    top: 86%;
  }

  .ip-content-tab {
    height: auto;
  }

  .txt-action-2, .ip_txt {
    font-size: 12px;
  }

  .box_txt {
    text-align: center;
    align-items: center;
    height: auto;
  }

  .box_img {
    justify-content: center;
    align-items: center;
  }

  .box_img.tab {
    width: 70px;
    height: 30px;
  }

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

  .boxes_wrap-copy {
    grid-row-gap: 60px;
  }

  .map {
    height: 90vw;
  }
}

#w-node-a375349b-86be-99c6-fe48-15fd3bc5cdd6-3bc5cdc3, #w-node-a375349b-86be-99c6-fe48-15fd3bc5cde2-3bc5cdc3, #w-node-a375349b-86be-99c6-fe48-15fd3bc5cde6-3bc5cdc3, #policyFlagsContainer.w-node-a375349b-86be-99c6-fe48-15fd3bc5cde9-3bc5cdc3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a375349b-86be-99c6-fe48-15fd3bc5cdec-3bc5cdc3 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-a375349b-86be-99c6-fe48-15fd3bc5cded-3bc5cdc3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e4862-6abda61d, #w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e4864-6abda61d, #w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e486b-6abda61d, #w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e4870-6abda61d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e4875-6abda61d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: center;
}

#btn-form.w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e4877-6abda61d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: end;
}

#w-node-_7c685948-0eb0-4157-5a03-404b75c41330-6abda61d, #w-node-_7c685948-0eb0-4157-5a03-404b75c41332-6abda61d, #w-node-_7c685948-0eb0-4157-5a03-404b75c41339-6abda61d, #w-node-_7c685948-0eb0-4157-5a03-404b75c4133e-6abda61d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7c685948-0eb0-4157-5a03-404b75c41343-6abda61d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: center;
}

#btn-form1.w-node-_7c685948-0eb0-4157-5a03-404b75c41345-6abda61d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

#w-node-_73358dfb-a45c-35bf-6e1f-273ffb518c8b-6abda61d, #w-node-_73358dfb-a45c-35bf-6e1f-273ffb518c8d-6abda61d, #w-node-_73358dfb-a45c-35bf-6e1f-273ffb518c94-6abda61d, #w-node-_73358dfb-a45c-35bf-6e1f-273ffb518c99-6abda61d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_73358dfb-a45c-35bf-6e1f-273ffb518c9e-6abda61d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: center;
}

#btn-form1.w-node-_73358dfb-a45c-35bf-6e1f-273ffb518ca0-6abda61d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

#w-node-_2af26474-f3a3-8883-cb6c-7f8015e7c137-6abda61f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c1d39a12-942d-7d45-9987-8d11ea201a73-6abda61f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f10a241c-1e8d-a441-aca0-f9d75d5b86e7-6abda61f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5b44ea1d-9e9c-5c68-991d-4585648ab55e-6abda61f {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-b9dce324-e551-b7ea-6481-5f0235428c60-6abda61f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_527e834c-f757-29e2-29d4-379681119e3e-6abda620 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_527e834c-f757-29e2-29d4-379681119e40-6abda620 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_4580f368-f515-d5e7-c46b-d62c69560fd6-6abda620, #w-node-c2fa9fa9-3e5f-b3f3-8c1c-dd08d041eef1-6abda621 {
  grid-area: 1 / 1 / 2 / 3;
  justify-self: center;
}

#w-node-c2fa9fa9-3e5f-b3f3-8c1c-dd08d041eef8-6abda621 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c2fa9fa9-3e5f-b3f3-8c1c-dd08d041eefa-6abda621, #w-node-a3670f6f-d0a7-7787-9be4-5fa4d29fc606-6abda625 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-bb400612-f3f6-9d08-845c-d3e49befad45-6abda625 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-bb400612-f3f6-9d08-845c-d3e49befad47-6abda625 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_654615f6-e90f-d051-437a-1187a0518d69-6abda625 {
  grid-area: 1 / 1 / 2 / 3;
  justify-self: center;
}

#w-node-_99107da8-ec77-d139-602d-df3f053eae95-c8218f8f {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-a8730d2c-a819-5790-ed35-0dc36bff4cfe-af300996 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_7e16d487-facf-8e7c-6d25-655cd1451096-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd1451097-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd1451098-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd14510a0-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd14510a2-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd14510aa-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd14510ab-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd14510ac-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd14510b4-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd14510b5-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd14510b6-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd14510d2-af300996, #w-node-_7e16d487-facf-8e7c-6d25-655cd14510d4-af300996, #w-node-dd66fd40-2ad8-4afd-c9b5-72c02ec252c6-af300996, #w-node-dd66fd40-2ad8-4afd-c9b5-72c02ec252c8-af300996, #w-node-_9efcb7c7-cc8e-4247-dd83-c946ee927bf2-af300996, #w-node-_9efcb7c7-cc8e-4247-dd83-c946ee927bf4-af300996 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_04896aec-ebdd-da41-020e-d6eecd906d7b-cd906d68, #w-node-_04896aec-ebdd-da41-020e-d6eecd906d87-cd906d68, #w-node-_04896aec-ebdd-da41-020e-d6eecd906d8b-cd906d68, #policyFlagsContainer.w-node-_04896aec-ebdd-da41-020e-d6eecd906d8e-cd906d68 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_04896aec-ebdd-da41-020e-d6eecd906d91-cd906d68 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_04896aec-ebdd-da41-020e-d6eecd906d92-cd906d68 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_5d02c094-2e38-b612-90a7-81be0d88fae8-6abda61f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c1d39a12-942d-7d45-9987-8d11ea201a73-6abda61f {
    grid-column: span 1 / span 1;
  }

  #w-node-f10a241c-1e8d-a441-aca0-f9d75d5b86e7-6abda61f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_5b44ea1d-9e9c-5c68-991d-4585648ab55e-6abda61f {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_527e834c-f757-29e2-29d4-379681119e3e-6abda620 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_527e834c-f757-29e2-29d4-379681119e40-6abda620 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_4580f368-f515-d5e7-c46b-d62c69560fd6-6abda620, #w-node-c2fa9fa9-3e5f-b3f3-8c1c-dd08d041eef1-6abda621 {
    grid-row-end: 2;
    grid-column-end: 2;
  }

  #w-node-c2fa9fa9-3e5f-b3f3-8c1c-dd08d041eefa-6abda621 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-bb400612-f3f6-9d08-845c-d3e49befad45-6abda625 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-bb400612-f3f6-9d08-845c-d3e49befad47-6abda625 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_654615f6-e90f-d051-437a-1187a0518d69-6abda625 {
    grid-row-end: 2;
    grid-column-end: 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a375349b-86be-99c6-fe48-15fd3bc5cdd6-3bc5cdc3, #w-node-a375349b-86be-99c6-fe48-15fd3bc5cde2-3bc5cdc3, #w-node-a375349b-86be-99c6-fe48-15fd3bc5cde6-3bc5cdc3, #policyFlagsContainer.w-node-a375349b-86be-99c6-fe48-15fd3bc5cde9-3bc5cdc3, #w-node-a375349b-86be-99c6-fe48-15fd3bc5cdec-3bc5cdc3, #w-node-_04896aec-ebdd-da41-020e-d6eecd906d7b-cd906d68, #w-node-_04896aec-ebdd-da41-020e-d6eecd906d87-cd906d68, #w-node-_04896aec-ebdd-da41-020e-d6eecd906d8b-cd906d68, #policyFlagsContainer.w-node-_04896aec-ebdd-da41-020e-d6eecd906d8e-cd906d68, #w-node-_04896aec-ebdd-da41-020e-d6eecd906d91-cd906d68 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e4862-6abda61d, #w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e4864-6abda61d, #w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e486b-6abda61d, #w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e4870-6abda61d, #w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e4875-6abda61d {
    grid-column: span 1 / span 1;
  }

  #btn-form.w-node-_7bd97236-c1ca-8841-c3dd-c3fc790e4877-6abda61d {
    order: 9999;
    grid-column: span 1 / span 1;
  }

  #w-node-_7c685948-0eb0-4157-5a03-404b75c41330-6abda61d, #w-node-_7c685948-0eb0-4157-5a03-404b75c41332-6abda61d, #w-node-_7c685948-0eb0-4157-5a03-404b75c41339-6abda61d, #w-node-_7c685948-0eb0-4157-5a03-404b75c4133e-6abda61d, #w-node-_7c685948-0eb0-4157-5a03-404b75c41343-6abda61d {
    grid-column: span 1 / span 1;
  }

  #btn-form1.w-node-_7c685948-0eb0-4157-5a03-404b75c41345-6abda61d {
    order: 9999;
    grid-column: span 1 / span 1;
  }

  #w-node-_73358dfb-a45c-35bf-6e1f-273ffb518c8b-6abda61d, #w-node-_73358dfb-a45c-35bf-6e1f-273ffb518c8d-6abda61d, #w-node-_73358dfb-a45c-35bf-6e1f-273ffb518c94-6abda61d, #w-node-_73358dfb-a45c-35bf-6e1f-273ffb518c99-6abda61d, #w-node-_73358dfb-a45c-35bf-6e1f-273ffb518c9e-6abda61d {
    grid-column: span 1 / span 1;
  }

  #btn-form1.w-node-_73358dfb-a45c-35bf-6e1f-273ffb518ca0-6abda61d {
    order: 9999;
    grid-column: span 1 / span 1;
  }
}


