:root {
  --grey: #6e6e6e;
  --black: #222;
  --cta: #c5c5c5;
  --white: white;
  --hover-dark: rgba(0, 0, 0, .4);
  --light: #f4f4f4;
  --hover-light: rgba(255, 255, 255, .8);
}

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

body {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.8;
}

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

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

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

h4 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.2;
}

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

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

p {
  max-width: 530px;
  margin-bottom: 0;
}

a {
  color: var(--black);
  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 {
  background-color: #ffe837;
  padding: 40px 15%;
  display: none;
}

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

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

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

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

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

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

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

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

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

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

.form_text.is-first {
  margin-top: 16px;
}

.nav_component {
  z-index: 30;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px 8%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav_component.is-page {
  background-color: var(--white);
  padding-bottom: 18px;
}

.nav_component.is-home {
  z-index: 10;
  background-color: var(--white);
  padding-bottom: 18px;
}

.nav_component.is-home.is-top {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 32px;
  position: static;
}

.nav_component.is-home.display-none {
  display: none;
}

.header_component {
  z-index: 21;
  background-color: var(--hover-dark);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 80px;
  padding-left: 8%;
  padding-right: 8%;
  display: flex;
  position: relative;
}

.header_component.is-gallery {
  justify-content: center;
  padding-top: 160px;
}

.header_component.is-nobackground {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  background-color: var(--white);
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-left: 0%;
  padding-right: 0%;
}

.header_component.is-nobackground.is-small {
  height: 50vh;
}

.header_component.is-nobackground.is-small.is-evaluate {
  height: 60vh;
}

.header_component.is-nobackground.is-xs {
  justify-content: flex-start;
  align-items: center;
  height: 50vh;
}

.header_component.is-bottom {
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 8px;
}

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

.nav_logo_wrapper.w--current {
  position: static;
}

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

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

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

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

.section.is-image {
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 36vw;
  display: flex;
  position: relative;
}

.section.background-color-light {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/background-slider.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.section.background-color-light.is-max {
  background-position: 50%;
  height: 72vh;
  max-height: 820px;
  padding-top: 40px;
}

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

.section.is-nopad {
  width: 100%;
  padding: 0;
}

.section.is-nopad.is-top-bot {
  padding-top: 104px;
  padding-bottom: 104px;
}

.section.is-104pad {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  align-items: center;
  width: 100%;
  padding: 104px 0;
}

.section.is-104pad.no-padbot {
  padding-bottom: 0;
}

.section.is-104pad.is-padbot {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.is-104pad.is-pad8 {
  padding-left: 8%;
  padding-right: 8%;
}

.section.is-104pad.is-background {
  background-color: #fbfaf8;
}

.section.is-104pad.is-nopadbot {
  padding-bottom: 0;
}

.section.is-mosaic {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
}

.section.is-mosaic.is-104 {
  padding-top: 104px;
}

.section.is-nopadtop {
  padding-top: 0;
}

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

.heading-medium {
  color: #4a5158;
  margin-bottom: 40px;
  font-family: ivypresto-display, sans-serif;
  font-size: 52px;
  font-weight: 100;
  line-height: 1.1;
}

.heading-medium.is-45 {
  margin-bottom: 0;
  line-height: 1.3;
}

.heading-medium.is-right {
  width: 80%;
  font-size: 42px;
}

.heading-medium.is-nopad {
  margin-bottom: 0;
  line-height: 1.1;
}

.container {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}

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

.container.is-grid {
  max-width: 1000px;
}

.container.is-header-home {
  z-index: 3;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.container.is-header-home.is-center {
  justify-content: center;
  align-items: flex-end;
}

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

.container.is-contact {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
}

.container.is-contact.is-padtop {
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 120px;
}

.container.is-slider {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding-left: 60px;
  padding-right: 60px;
  overflow: hidden;
}

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

.container.is-technical {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 100px;
}

.container.is-full {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-top: 8%;
  padding-bottom: 8%;
}

.container.is-full.is-reverse {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding-top: 104px;
}

.container.is-full.is-vertical {
  flex-flow: column;
  padding-top: 0;
}

.container.is-full.is-vertical.is-nopad {
  padding-left: 0%;
  padding-right: 0%;
}

.container.is-full.is-hero {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0%;
  padding-bottom: 2%;
}

.container.is-full.is-hero.is-xs {
  height: 320px;
}

.container.is-full.is-hero.is-sell, .container.is-full.is-hero.is-reliving {
  padding-left: 8%;
  padding-right: 8%;
}

.container.is-full.is-4pad {
  flex-flow: column;
  padding: 4% 0%;
}

.container.is-full.is-4pad.is-pad-bottom {
  margin-bottom: 16%;
}

.container.is-full.is-4pad.is-nopad {
  padding-top: 0%;
  padding-bottom: 0%;
}

.container.is-full.is-4pad.is-nopad.is-static {
  position: static;
}

.container.is-full.is-4pad.is-nopad-bot {
  padding-bottom: 0%;
}

.container.is-full.is-norightpad {
  padding-right: 0%;
}

.container.is-full.is-nopadbot {
  padding-bottom: 0;
}

.container.is-full.is-nopadbot.is-nopadtop, .container.is-full.is-nopadtop {
  padding-top: 0;
}

.container.is-full.is-nopad {
  padding: 0 0%;
}

.container.is-full.is-contact {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  padding-left: 8%;
  padding-right: 8%;
}

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

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

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

.container.is-image {
  height: 500px;
  max-height: 40vw;
  overflow: hidden;
}

.container.is-evaluate {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  background-color: #f6f2ee;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  padding: 88px 8%;
}

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

.container.is-footer {
  position: static;
}

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

.sizing-grow {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

.slide_caption {
  z-index: 2;
  color: #665858;
  letter-spacing: .5px;
  text-transform: uppercase;
  object-position: 0% 50%;
  border-top: 0 solid rgba(244, 244, 244, 0);
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0;
  font-size: 10px;
  display: flex;
  position: static;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.footer_column.w--current {
  color: #0b313d;
  text-decoration: underline;
}

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

.footer_title {
  color: #0b313d;
  margin-bottom: 8px;
  font-weight: 700;
  text-decoration: none;
}

.nav_link {
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 4px;
  padding-bottom: 0;
  font-size: .8rem;
  line-height: 1;
  text-decoration: none;
}

.nav_link.w--current {
  border-bottom: 1px solid var(--white);
  margin-top: 4px;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-weight: 700;
}

.nav_link.is-dark {
  color: #012938;
}

.nav_link.is-dark.w--current {
  border-bottom-width: 0;
  padding-bottom: 0;
}

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

.header_par {
  text-align: center;
  letter-spacing: 6px;
  text-transform: uppercase;
  max-width: none;
  font-family: ivypresto-display, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.button {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-transform: uppercase;
  padding: 16px 40px;
  font-size: .85rem;
  line-height: 1;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
}

.button:hover {
  color: var(--black);
  background-color: rgba(0, 0, 0, 0);
}

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

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

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

.button.is-secondary {
  color: var(--black);
  background-color: rgba(34, 34, 34, 0);
}

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

.button.is-secondary.is-negative {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0);
}

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

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

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

.button-icon:hover {
  color: var(--cta);
  background-color: rgba(135, 100, 184, 0);
}

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

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

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

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

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

.background-video {
  z-index: 1;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.background-video.is-labicum {
  background-image: url('../images/labicum_1.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-video.is-palazzoada {
  background-image: url('../images/palazzoada1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.heading-small {
  color: var(--black);
  text-transform: none;
  width: 100%;
  padding-bottom: 64px;
  font-family: ivypresto-display, sans-serif;
  font-size: 42px;
  font-weight: 100;
  line-height: 1.2;
}

.heading-small.is-small-pad {
  padding-bottom: 16px;
}

.list_grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.list_grid_item {
  flex: 1;
}

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

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

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

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

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

.slide_container {
  cursor: pointer;
  background-color: rgba(255, 255, 255, .4);
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.slider_component {
  background-color: rgba(0, 0, 0, 0);
  flex: 1;
  align-self: stretch;
  height: 500px;
  max-height: 39vw;
  overflow: hidden;
}

.slider_component.is-big {
  height: 340px;
  max-height: 44vw;
}

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

.display-none {
  display: none;
  position: static;
}

.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;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.3rem;
  display: flex;
  position: relative;
}

.header_container.is-home {
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}

.header_container.is-home.is-left {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  transform: rotate(-90deg);
}

.header_container.is-home.is-right {
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  transform: rotate(90deg);
}

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

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

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

.header_hover {
  z-index: 2;
  background-color: rgba(1, 34, 46, .8);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.header_hover.is-gradient {
  opacity: .9;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(0deg, #000 6%, rgba(0, 0, 0, 0) 48%);
}

.nav_link_container {
  border-bottom: 0 solid rgba(17, 81, 102, .2);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.flag_line {
  background-color: rgba(255, 255, 255, .5);
  flex: none;
  width: 1px;
  height: 60%;
}

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

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

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

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

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

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

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

.nav_background {
  z-index: 80;
  opacity: 1;
  background-color: #012938;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  padding-left: 16%;
  padding-right: 0;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, .1);
}

.nav_background.is-hide {
  display: none;
}

.nav_hamburger {
  color: var(--white);
  cursor: pointer;
  display: flex;
}

.nav_hamburger_lottie {
  color: var(--white);
  width: 40px;
  height: 40px;
}

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

.slide_image_wrapper {
  z-index: 1;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  padding: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer_component {
  background-color: var(--white);
  color: var(--white);
  padding: 100px 8%;
}

.button_component {
  cursor: pointer;
  flex-direction: column;
  margin-top: 48px;
  text-decoration: none;
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

.background_hover {
  z-index: 1;
  background-color: var(--hover-dark);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.background_img {
  z-index: 0;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

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

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

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

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

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

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

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

.top_txt {
  margin-top: 20px;
}

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

.footer_gdpr {
  color: var(--cta);
  font-family: Chivo, sans-serif;
  font-size: 11px;
}

.header-home_h1 {
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 5.5rem;
  font-weight: 200;
  line-height: 1.1;
}

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

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

.moodboard.is-gap.is-showroom {
  grid-template-columns: 1.5fr 1fr;
}

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

.text_container.is-full {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 720px;
  margin-left: auto;
  margin-right: 0;
  display: flex;
}

.text_container.is-full.is-left {
  margin-left: 0;
}

.text_container.is-full.is-mid {
  width: 50%;
}

.text_container.is-full.is-ingrid {
  max-width: none;
}

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

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

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

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

.text_container.is-50 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 29%;
  padding-top: 96px;
  padding-bottom: 96px;
}

.text_container.is-50.is-nogap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.text_container.is-50.is-medium {
  width: 20%;
}

.text_container.is-55 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: 28%;
  margin-right: 2%;
  position: -webkit-sticky;
  position: sticky;
  top: 160px;
  bottom: 50px;
}

.text_container.is-home {
  width: 100%;
  max-width: 720px;
  margin-bottom: 24px;
  margin-right: auto;
}

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

.slide_title {
  color: var(--black);
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.3;
}

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

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

.floorplan_heading {
  border-bottom: 1px solid var(--cta);
  padding-bottom: 10px;
  line-height: 1;
}

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

.floorplan_txt_wrapper {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  height: 76px;
  display: flex;
  position: absolute;
  top: 59px;
}

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

.floorplan_component {
  z-index: 1;
  align-items: center;
  margin-top: 32px;
  display: flex;
  position: relative;
}

.floorplan_component.is-showroom {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
}

.floorplan_text {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.floorplan_plan {
  background-image: url('../images/placeholder-elegant.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 1;
  align-self: stretch;
  height: 300px;
  margin-top: 140px;
  margin-right: 32px;
  position: relative;
}

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

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

.floorplan_cone.is-plans02 {
  top: 20%;
  left: 74%;
}

.floorplan_cone.is-plans01 {
  top: 56%;
  left: 11%;
}

.floorplan_cone.is-plans03 {
  top: 16%;
  left: 14%;
}

.floorplan_cone.is-plans04 {
  top: 61%;
  left: 71%;
}

.floorplan_cone.is-shoroom01 {
  background-color: var(--black);
  top: 79%;
  left: 58%;
}

.floorplan_cone.is-shoroom02 {
  background-color: var(--black);
  top: 35%;
  left: 60%;
}

.floorplan_cone.is-shoroom03 {
  background-color: var(--black);
  top: 43%;
  left: 48%;
}

.floorplan_cone.is-shoroom04 {
  background-color: var(--black);
  top: 13%;
  left: 10%;
}

.floorplan_cone.is-shoroom05 {
  background-color: var(--black);
  top: 74%;
  left: 19%;
}

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

.tab_img_wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.image_hover {
  z-index: 2;
  background-color: rgba(255, 255, 255, .4);
  border: 1px solid #fff;
  justify-content: center;
  align-items: center;
  transition: opacity .5s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

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

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

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

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

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

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

.showroom_txt_wrapper {
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
  height: 76px;
  display: flex;
}

.showroom_plani {
  background-image: url('../images/placeholder-elegant.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 730px;
  height: 408px;
  position: relative;
}

.gallery_title {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.4;
}

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

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

.accordion_body {
  overflow: hidden;
}

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

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

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

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

.contact_txt {
  max-width: 350px;
}

.page_wrapper {
  padding-left: 8%;
  padding-right: 8%;
}

.page_wrapper.is-noheader {
  min-height: 80vh;
  padding-top: 180px;
}

.page_wrapper.is-norightpad {
  padding-left: 0%;
  padding-right: 0%;
  position: relative;
}

.accordion_space {
  height: 40px;
}

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

.arrow_disable {
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.arrow_disable.is-left {
  background-color: rgba(0, 0, 0, 0);
}

.arrow_disable.is-right {
  background-color: rgba(0, 0, 0, 0);
  display: none;
}

.list_grid_par {
  max-width: 260px;
}

.download_component {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  padding: 32px;
  display: flex;
  position: relative;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, .1);
}

.download_column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.download_image {
  align-self: stretch;
  height: 300px;
}

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

.form-download_component {
  text-align: left;
  flex-direction: column;
  flex: 1;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 0;
  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: rgba(0, 0, 0, .85);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}

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

.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.is-transparent {
  background-color: rgba(0, 0, 0, 0);
  width: 60px;
  height: 60px;
  top: 10px;
  right: 10px;
}

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

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

.lightbox_logo {
  background-image: url('../images/placeholder-elegant.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;
}

.apartment_txt {
  text-transform: capitalize;
  font-family: Cormorant;
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
}

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

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

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

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

.lightbox_column {
  align-self: stretch;
}

.lightbox_slider {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  flex: none;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  overflow: hidden;
}

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

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

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

.slider_container.is-video {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.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.is-right {
  color: var(--white);
  left: auto;
  right: 60px;
}

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

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

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

.nav_logo {
  object-fit: fill;
  width: 85px;
  max-width: none;
  height: 44px;
  position: static;
}

.nav_logo.is-dark {
  width: 75px;
}

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

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

.contact_title {
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.2;
}

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

.background_image {
  z-index: 1;
  opacity: .5;
  background-image: url('../images/placeholder-elegant.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50vw;
  height: 46vw;
  position: absolute;
  top: 0;
  left: 0;
}

.background_image.is-right {
  transform-style: preserve-3d;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

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

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

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

.lightbox_grid_line {
  background-color: var(--cta);
  height: 1px;
}

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

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

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

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

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

.map_wrapper {
  position: relative;
}

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

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

.poi_number.is-absolute.is-02 {
  top: 55%;
  left: 51%;
}

.poi_number.is-absolute.is-11 {
  top: 33%;
  left: 56%;
}

.poi_number.is-absolute.is-08 {
  top: 34%;
  left: 76%;
}

.poi_number.is-absolute.is-06 {
  top: 83%;
  left: 42%;
}

.poi_number.is-absolute.is-07 {
  top: 40%;
  left: 65%;
}

.poi_number.is-absolute.is-09 {
  top: 27%;
  left: 79%;
}

.poi_number.is-absolute.is-03 {
  top: 52%;
  left: 67%;
}

.poi_number.is-absolute.is-05 {
  top: 77%;
  left: 59%;
}

.poi_number.is-absolute.is-12 {
  top: 21%;
  left: 73%;
}

.poi_number.is-absolute.is-04 {
  top: 54%;
  left: 42%;
}

.poi_number.is-absolute.is-01 {
  top: 64%;
  left: 56%;
}

.poi_number.is-absolute.is-10 {
  top: 40%;
  left: 58%;
}

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

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

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

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

.color_item.is-cta {
  background-color: var(--cta);
}

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

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

.color_item.is-hover-dark {
  background-color: var(--hover-dark);
}

.color_item.is-hover-light {
  background-color: var(--hover-light);
}

.color_item.is-grey {
  background-color: var(--grey);
}

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

.form_message {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

.body {
  font-family: Chivo, sans-serif;
  font-weight: 200;
}

.hero-labels {
  letter-spacing: .2em;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 200;
}

.hero-labels.is-right {
  text-align: center;
  justify-content: flex-end;
  align-items: center;
}

.nav-container {
  z-index: 89;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.left-container {
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  display: flex;
}

.left-container.is-grid {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  width: 60%;
  display: grid;
}

.heading {
  color: #0f495c;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-family: Chivo, sans-serif;
  font-weight: 700;
}

.heading.is-left {
  width: 100%;
}

.paragraph {
  color: #959595;
  width: 96%;
  max-width: none;
  padding-left: 20%;
  font-family: Chivo, sans-serif;
  font-size: 14px;
  font-weight: 200;
}

.paragraph.is-right {
  width: 80%;
  padding-top: 5%;
  padding-left: 0%;
}

.paragraph.is-nopad {
  width: auto;
  padding-left: 0%;
}

.first-section_container {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-right: 0;
  display: flex;
}

.first-section_container.is-flex-down {
  flex-flow: column;
  padding-right: 0;
}

.first-section_container.is-104pad {
  padding-top: 104px;
}

.first-section_container.is-left {
  justify-content: flex-start;
}

.first-section_container.is-contact {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 720px;
}

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

.divider-full {
  background-color: #f6f2ee;
  width: 100%;
  height: 3px;
  margin-top: 0;
  margin-bottom: 0;
}

.title-numbers {
  color: #a7a7a7;
  width: auto;
  padding-bottom: 16px;
  font-weight: 400;
}

.link-button {
  text-transform: uppercase;
  height: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.button-link {
  color: #0f495c;
  -webkit-text-stroke-color: #0f495c;
  cursor: pointer;
  border-bottom: 1px solid #0f495c;
  text-decoration: none;
  transition: color .2s cubic-bezier(.55, .085, .68, .53), border-color .2s cubic-bezier(.55, .085, .68, .53);
}

.button-link:hover {
  color: rgba(15, 73, 92, .6);
  border-bottom-color: rgba(0, 0, 0, 0);
}

.button-link.is-20 {
  margin-left: 20%;
  line-height: 1.5;
}

.button-link.is-top-pad {
  margin-top: 64px;
}

.button-link.is-marg-left {
  margin-left: 20%;
}

.divider-vertial {
  background-color: #f6f2ee;
  width: 3px;
  height: 100%;
}

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

.double-right_container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 60vh;
  display: flex;
}

.double-right_container.is-background {
  background-color: #fbfaf8;
}

.label-slider {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
}

.title-collection {
  letter-spacing: .5px;
  font-family: ivypresto-display, sans-serif;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.2;
}

.slider-top {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.slider-bottom {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.description-slider {
  font-size: 14px;
  line-height: 1.5;
}

.link-slider {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.link-2 {
  color: #242a30;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
}

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

.slide {
  width: 100%;
  margin-left: 0%;
  margin-right: 6%;
}

.img-contain-wrap {
  grid-column-gap: 4%;
  grid-row-gap: 4%;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

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

.image-wrap {
  width: 100%;
  height: 26vw;
}

.image-wrap.is-splide {
  height: 100%;
  padding-top: 100%;
  position: relative;
}

.slide-10_title {
  color: #0f495c;
  letter-spacing: 1px;
  font-family: ivypresto-display, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.1;
}

.slide-content {
  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;
  display: flex;
}

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

.image-fit-cover.is-splide {
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.paragraph-2 {
  color: #a1a1a1;
  width: 90%;
  padding-top: 24px;
  padding-left: 0%;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.paragraph-2.is-large {
  width: 100%;
  padding-left: 10%;
}

.number-slider {
  color: #0f495c;
  padding-bottom: 8px;
  padding-left: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.number-slider.is-opacity {
  color: rgba(15, 73, 92, .5);
}

.icon-embed-small {
  color: #0f495c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.first-row {
  width: 100%;
}

.first-row.is-mosaic01 {
  background-image: url('../images/mosaico01.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
}

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

.second-row {
  width: 100%;
}

.second-row.is-mosaic02 {
  background-image: url('../images/mosaico02.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
}

.second-row-a {
  width: 100%;
  height: 100%;
}

.second-row-a.is-mosaic03 {
  background-image: url('../images/mosaico03.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.second-row-a.is-mosaic04 {
  background-image: url('../images/mosaico04.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.second-row-a.is-mosaic05 {
  background-image: url('../images/mosaico05.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.second-row-a.is-mosaic06 {
  background-image: url('../images/mosaico06.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.third-row.is-mosaic07 {
  background-image: url('../images/mosaico07.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50vh;
}

.double-container-img {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  width: 100%;
  padding-top: 80px;
  display: flex;
}

.double-container-img.is-pad-bot {
  padding-bottom: 80px;
}

.double-container-img.is-paddingbot {
  padding-bottom: 120px;
}

.double-img {
  width: 50%;
}

.double-container-contact {
  justify-content: center;
  height: 90vh;
  display: flex;
}

.quote-container {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  background-image: radial-gradient(circle at 0 0, #2c485a, #1b2438 72%);
  flex-flow: column;
  justify-content: center;
  width: 50%;
  padding: 6% 8% 8%;
  display: flex;
}

.form-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: #f9f9f9;
  flex-flow: column;
  justify-content: center;
  width: 50%;
  padding: 6% 8% 8%;
  display: flex;
}

.image-3 {
  width: 95px;
  height: 54px;
}

.quote {
  color: var(--white);
  width: 80%;
  font-family: ivypresto-display, sans-serif;
  font-size: 40px;
  line-height: 1.4;
}

.title-small {
  color: #053656;
  letter-spacing: 1px;
  font-family: ivypresto-display, sans-serif;
  font-size: 46px;
  line-height: 1.2;
}

.pages-list {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

.is-hero {
  object-fit: cover;
  width: 100%;
}

.is-hero.is-height {
  height: 440px;
}

.image-hero {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 0% 32px;
  display: grid;
}

.image-hero.is-height {
  height: 420px;
}

.image-hero.is-block {
  display: block;
}

.name-page_container {
  width: 100%;
  padding-left: 0%;
  padding-right: 0%;
}

.name-page-text {
  color: #0f495c;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2;
}

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

.number-text {
  text-align: center;
  font-family: ivypresto-display, sans-serif;
  font-size: 50px;
  font-weight: 100;
  line-height: 1.2;
}

.text-grid-container {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.text-grid-container.is-right-stroke {
  border-right: 3px solid #f6f2ee;
}

.description-grid-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.is-services-grid {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 80px;
  display: grid;
}

.is-services-grid.is-about {
  grid-column-gap: 100px;
  grid-row-gap: 160px;
  margin-bottom: 168px;
  padding-left: 8%;
  padding-right: 8%;
}

.services-cell {
  color: #0e3c4b;
  cursor: pointer;
  flex-flow: column;
  align-items: stretch;
  transition: color .2s cubic-bezier(.55, .085, .68, .53);
  display: flex;
}

.services-cell:hover {
  color: #6e96a3;
}

.icon-title-container {
  display: flex;
}

.image-grid-container {
  padding-bottom: 24px;
  display: flex;
}

.image-grid-container.is-padtop {
  background-color: rgba(26, 99, 123, .05);
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 24px;
  padding-bottom: 0;
  transition: background-color .2s cubic-bezier(.55, .055, .675, .19);
}

.image-grid-container.is-padtop:hover {
  background-image: linear-gradient(0deg, rgba(12, 64, 80, .5), rgba(0, 0, 0, 0) 63%);
}

.image-grid-container.is-iniziativa {
  padding-bottom: 0;
}

.image-5 {
  width: 100%;
}

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

.img-mosaic {
  width: 100%;
}

.slider-img-container {
  width: 100%;
  height: 100%;
}

.name-title {
  padding-bottom: 16px;
}

.divider-about-us {
  background-color: #d1e0e5;
  width: 100%;
  height: 1px;
  margin-bottom: 8px;
}

.name-aboutus {
  font-family: ivypresto-display, sans-serif;
  font-size: 30px;
  font-weight: 100;
  line-height: 1.1;
}

.name-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.role {
  color: #8f98a1;
  font-weight: 300;
  line-height: 1.1;
}

.img-team {
  width: 80%;
}

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

.image-container {
  z-index: 5;
  background-image: url('../images/evaluate-left-imgpng.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: static;
  top: 104px;
  bottom: 104px;
  left: 0;
}

.text-block {
  color: #242a30;
  font-size: 22px;
  line-height: 1.4;
}

.form-evaluate {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.form-evaluate.is-contact {
  align-items: flex-start;
  width: 100%;
}

.collection {
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.4;
}

.name-iniziativa {
  color: #0b313d;
  font-family: ivypresto-display, sans-serif;
  font-size: 40px;
  font-weight: 100;
}

.iniziativa_container {
  flex-flow: column;
  align-items: flex-start;
  padding-top: 16px;
  padding-left: 16px;
  display: flex;
}

.link-card {
  color: #0b313d;
  letter-spacing: .3px;
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
}

.img-card {
  object-fit: fill;
  width: 100%;
  height: 100%;
}

.div-block-8 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-link-card {
  color: #0b313d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
}

.collection-card {
  flex-flow: column;
  display: flex;
}

.collection-grid {
  grid-column-gap: 60px;
  grid-row-gap: 120px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 120px;
  margin-bottom: 120px;
  display: grid;
}

.form-block {
  width: 80%;
}

.link_container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.nav-link {
  color: rgba(255, 255, 255, .6);
  letter-spacing: 1px;
  text-transform: none;
  font-family: ivypresto-display, sans-serif;
  font-size: 42px;
  font-weight: 100;
  line-height: 1.4;
  text-decoration: none;
  transition: color .2s;
}

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

.nav-link.w--current {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
}

.navbar-sticky {
  z-index: 80;
  width: 100%;
  position: absolute;
}

.text-mask-header {
  height: 96px;
  overflow: hidden;
}

.vertical-track {
  flex-flow: column;
  display: flex;
}

.heading-large-2 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Chivo, sans-serif;
  font-size: 5.5rem;
  font-weight: 200;
  line-height: 1;
}

.infinite-rotation-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.track-vertical {
  flex-direction: column;
  display: flex;
  position: absolute;
}

.vertical-scroll-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 48rem;
  height: 88px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-rotation-wrapper {
  display: flex;
}

.text-rotation-wrapper.is-tablet, .text-rotation-wrapper.is-mobile1, .text-rotation-wrapper.is-mobile2 {
  display: none;
}

.splide_embed {
  line-height: 1;
}

.splide__track {
  width: 100%;
}

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

.slider-10_component {
  width: 100%;
  padding-top: 5%;
  padding-bottom: 5%;
  overflow: hidden;
}

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

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

.splide__arrows {
  z-index: 50;
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 50px;
  display: flex;
  position: relative;
}

.text-wrap-2 {
  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;
}

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

.image-wrap-2 {
  height: 18vw;
  min-height: 276px;
}

.splide__arrow {
  background-color: rgba(0, 0, 0, 0);
  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.splide__arrow--next {
  background-image: url('../images/icon_arrow-right.svg');
  background-size: 24px;
  width: 60px;
  height: 50px;
}

.splide__arrow.splide__arrow--prev {
  background-image: url('../images/icon_arrow-left.svg');
  background-size: 24px;
  width: 60px;
  height: 50px;
}

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

.slide-content-2 {
  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 {
  z-index: 1;
  width: 100%;
  position: relative;
}

.splide.slider1 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

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

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

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

.title-image {
  color: #0f495c;
  text-align: center;
  letter-spacing: .5px;
  font-family: ivypresto-display, sans-serif;
  font-size: 34px;
  line-height: 1.6;
}

.double-card_container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-top: 24px;
  display: flex;
}

.card-novita {
  color: var(--white);
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .6)), url('../images/palazzoada1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 40px 60px 60px;
  font-family: ivypresto-display, sans-serif;
  font-size: 40px;
  font-weight: 300;
  text-decoration: none;
  display: flex;
  position: relative;
}

.card-novita.is-labicum {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .6)), url('../images/labicum_1.webp');
}

.text-block-2 {
  letter-spacing: 1px;
  font-weight: 100;
}

.name-card {
  z-index: 2;
  color: var(--white);
  letter-spacing: 1px;
  font-family: ivypresto-display, sans-serif;
  font-size: 40px;
  font-weight: 100;
  line-height: 1.4;
}

.labicum-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .6) 90%), url('../images/labicum_1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  align-items: flex-end;
  width: 100%;
  height: 45vh;
  padding: 40px;
  display: flex;
}

.vetrina-card_container {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  grid-template: "." 1fr
                 "." 1fr
                 / 2fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.vetrina-card_container.is-reverse {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 2fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.number-card {
  display: flex;
}

.number-card.is-left {
  padding-left: 24px;
}

.layer-hover {
  z-index: 1;
  background-color: rgba(11, 49, 61, .3);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.name_container {
  z-index: 3;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.icon-arrow-card {
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.hover-line {
  background-color: var(--white);
  height: 2px;
}

.logo-opacity {
  opacity: .6;
  margin-bottom: 8px;
}

.logo-pad {
  width: 80px;
  margin-bottom: 3%;
}

.image-7 {
  width: 100%;
}

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

.bottom-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.bottom-container.is-displaynone {
  display: none;
}

.label-01c_component {
  z-index: 50;
  background-color: var(--white);
  cursor: pointer;
  width: 320px;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 1%;
  left: auto;
  right: 1%;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .3);
}

.label-01bis2_x {
  z-index: 2;
  cursor: pointer;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  justify-content: center;
  align-items: flex-start;
  width: 40px;
  display: flex;
  position: relative;
}

.label-01c_lottie {
  filter: none;
  flex: none;
  width: 120px;
  height: 90px;
  transform: rotate(90deg);
}

.label-01c_text_wrapper {
  z-index: 1;
  color: #fff;
  text-align: center;
  flex-flow: column;
  flex: 1;
  align-items: flex-start;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
  position: relative;
}

.label-01c_title {
  text-align: left;
  letter-spacing: 1px;
  border-bottom: 1px solid #f2efe9;
  justify-content: flex-start;
  margin-bottom: 14px;
  padding-bottom: 14px;
  font-family: ivypresto-display, sans-serif;
  font-size: 24px;
  font-weight: 300;
  display: flex;
}

.label-01c_title.no-border {
  color: #0a3a5c;
  border-bottom-width: 0;
  border-bottom-color: rgba(0, 0, 0, 0);
  padding-bottom: 0;
}

.label-01c_text {
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 2px;
  text-decoration: none;
}

.label-text {
  color: #0a3a5c;
  text-align: left;
  border-bottom: 0 solid rgba(0, 0, 0, 0);
  max-width: 240px;
  font-size: 12px;
}

.div-block-9 {
  flex-flow: column;
  padding: 30px 20px 20px;
  display: flex;
}

.div-block-10 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--white);
  background-color: #3e84c5;
  background-image: radial-gradient(circle at 0 0, #2c485a, #1b2438);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
}

.div-block-10:hover {
  opacity: .9;
  text-decoration: underline;
}

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

.icon-popup {
  color: #0a3a5c;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 4%;
  bottom: auto;
  left: auto;
  right: 3%;
}

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

.is-pad-bottom {
  padding-bottom: 20px;
}

.is-high-pad {
  margin-bottom: 60px;
}

.div-block-11 {
  border-top: 1px solid var(--cta);
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 20px;
  display: flex;
}

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

.wrap-link-footer {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.is-subtitle {
  color: rgba(255, 255, 255, .8);
  letter-spacing: 2px;
  text-transform: none;
  font-family: ivypresto-display, sans-serif;
  font-size: 1.9rem;
  font-weight: 100;
}

.info-container {
  flex-flow: column;
  width: 79%;
  margin-left: 20%;
  display: flex;
}

.vertical-line {
  background-color: rgba(255, 255, 255, .56);
  width: 3px;
  height: 100px;
  margin-top: 24px;
}

.text-title_green {
  color: #8f98a1;
  text-transform: none;
  font-size: 18px;
  font-weight: 200;
}

.line-divider_footer {
  background-color: #e2e2e2;
  width: 100%;
  height: .05rem;
}

.link--close-modal {
  position: absolute;
  top: 2%;
  bottom: auto;
  left: auto;
  right: 2%;
}

.c-modal {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  padding: 4rem 3rem;
  display: flex;
}

.icon-1x1-small {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
}

.modal-scroll-popup {
  width: 100%;
  min-height: 100vh;
  padding-top: 5%;
  padding-bottom: 5%;
  position: absolute;
}

.fs-styleguide_2-col {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.c-modal_text {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

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

.upgrade-container {
  z-index: 10;
  background-color: #fff;
  width: 100%;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.wrap-modal {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: left;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  height: 100%;
  min-height: 500px;
  display: flex;
  position: relative;
}

.hide-me-overlay {
  z-index: 999;
  background-color: rgba(0, 0, 0, .7);
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: auto;
}

.hide-me-overlay.is-view {
  z-index: 999;
  display: flex;
  position: absolute;
}

.hide-me-overlay.is-02, .hide-me-overlay.is-03, .hide-me-overlay.is-04, .hide-me-overlay.is-05 {
  display: none;
}

.heading-2 {
  color: #053656;
  font-family: ivypresto-display, sans-serif;
  font-size: 3.2rem;
  font-weight: 100;
}

.par-popup {
  margin-left: 12%;
}

.rich-text-block {
  line-height: 1.5;
}

.form_checkbox_wrapper-2 {
  color: gray;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

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

.button-3.is-submit {
  color: var(--white);
  background-color: #0f495c;
  border-radius: 2px;
  height: 50px;
  margin-top: 30px;
  padding: 0 40px;
  font-weight: 300;
  line-height: 50px;
  transition: opacity .2s;
}

.button-3.is-submit:hover {
  background-color: #2f6f85;
}

.form_text-2 {
  color: gray;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.form-sp_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 1;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  display: grid;
}

.form-contactus_disclaimer {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  display: flex;
}

.form_link-2 {
  color: #5289a1;
  transition: color .2s;
}

.form_link-2:hover {
  color: #325163;
}

.contactus_field {
  background-color: var(--white);
  color: #325163;
  border: 1px solid #c8cbce;
  height: 48px;
}

.contactus_field::placeholder {
  color: #325163;
}

.contactus_field.is-message {
  min-height: 120px;
}

.form_message-2 {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
}

.form-sp_checkbox {
  color: #000;
  background-color: #ddd;
  border-color: #ddd;
}

.form-sp_checkbox.w--redirected-checked {
  background-color: #5289a1;
  border-color: #5289a1;
}

.form-contactus_wrapper {
  display: flex;
}

.c-card__brand-text {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.slider_vision {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: auto;
  overflow: hidden;
}

.c-card--image_vision__slider {
  height: 18rem;
}

.c-logo_brand-slider {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.c-vision_title {
  background-color: #efeeec;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.slide_vision {
  margin-right: 2rem;
}

.mask_slider-vision {
  width: 33.33%;
  overflow: visible;
}

.icon-height-small {
  height: 1rem;
}

.icon-height-small.opacity_50 {
  opacity: .5;
}

.slider_dot {
  font-size: .5rem;
  top: auto;
  bottom: 35px;
  left: 0%;
  right: 0%;
}

.paragraph_small {
  font-size: .6rem;
  font-weight: 400;
}

.slider_arrow-2 {
  background-image: url('../images/icon_arrow-square-gray.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  top: auto;
  left: -40px;
  right: 0%;
}

.slider_arrow-2.is-right {
  left: 40px;
  transform: rotate(180deg);
}

.c-slider_vision {
  grid-column-gap: .25rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  width: 100%;
  display: grid;
}

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

.text-block-5 {
  color: #8d8d8d;
  margin-bottom: 24px;
}

.right_container {
  align-self: stretch;
  width: 50%;
}

.left_container {
  width: 50%;
  padding-left: 6%;
  padding-right: 6%;
}

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

.button-fill {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #8caa80;
  border: 1px solid #8caa80;
  border-radius: 2px;
  margin-top: 32px;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: background-color .35s;
}

.button-fill:hover {
  color: #fff;
  background-color: #658757;
}

.container-2 {
  z-index: 2;
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-direction: column;
  align-self: center;
  width: 100%;
  max-width: none;
  display: flex;
  position: relative;
}

.container-2.is-technical {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 100px;
}

.container-2.is-technical.is-error {
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.title-xl {
  letter-spacing: 2px;
  max-width: 500px;
  margin-bottom: 40px;
  font-family: ivypresto-display, sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
}

.body-2 {
  font-family: Chivo, sans-serif;
}

.button-4 {
  color: #fff;
  text-transform: uppercase;
  background-color: #222;
  border: 1px solid #222;
  padding: 16px 40px;
  font-size: .85rem;
  line-height: 1;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
}

.button-4:hover {
  color: #222;
  background-color: rgba(0, 0, 0, 0);
}

.button-4.is-icon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #222;
  background-color: rgba(0, 0, 0, 0);
  border-style: none;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  font-size: 15px;
  line-height: 1.8;
  text-decoration: none;
  transition-property: color;
  transition-duration: .35s;
  display: flex;
}

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

.button-wrap {
  display: block;
}

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

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

.container-3 {
  z-index: 2;
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-direction: column;
  align-self: center;
  width: 100%;
  max-width: none;
  display: flex;
  position: relative;
}

.container-3.is-technical {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 100px;
}

.container-3.is-technical.is-error {
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.title-xl-2 {
  max-width: 500px;
  margin-bottom: 40px;
  font-family: ivypresto-display, sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
}

.body-3 {
  font-family: Chivo, sans-serif;
}

.heading-3 {
  text-transform: none;
  font-family: ivypresto-display, sans-serif;
  font-weight: 100;
}

.rich-text-block-2 {
  font-family: Chivo, sans-serif;
  font-weight: 300;
}

.cookie_tab_wrapper {
  max-width: 100%;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.gdpr-title3 {
  font-family: ivypresto-display, sans-serif;
  font-weight: 300;
}

.gdpr-list {
  color: #848484;
}

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

.cookie_tab_cell.is-heading {
  color: #fff;
  background-color: #7eb9b2;
  border-top-style: solid;
  align-items: center;
  display: flex;
}

.gdpr-title1 {
  color: #3d3d3d;
  text-transform: none;
  font-family: ivypresto-display, sans-serif;
  font-size: 50px;
  font-weight: 100;
  line-height: 62px;
}

.link-gdpr {
  color: #7eb9b2;
}

.gdpr-par {
  color: #848484;
  max-width: none;
}

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

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

.container-4.is-gdpr {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 100%;
  padding-top: 120px;
  padding-left: 20px;
  padding-right: 20px;
}

.container-4.is-gdpr.is-hide {
  display: none;
}

.gdpr-title2 {
  color: #3d3d3d;
  font-weight: 500;
}

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

.footer_link {
  color: var(--cta);
  font-family: Chivo, sans-serif;
  font-size: 11px;
  text-decoration: none;
}

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

.code-embed {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.grid-form {
  grid-column-gap: 110px;
  grid-row-gap: 110px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: .65fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

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

.form_wrapper {
  display: none;
}

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

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

.form_label {
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

.dropdown_list {
  font-weight: 400;
}

.dropdown_list.w--open {
  background-color: #fff;
  border-bottom: 1px solid rgba(138, 138, 138, .4);
  border-left: 1px solid rgba(138, 138, 138, .4);
  border-right: 1px solid rgba(138, 138, 138, .4);
  margin-top: -1px;
}

.div-block-14 {
  align-self: stretch;
}

.button-6 {
  text-transform: uppercase;
}

.button-primary {
  text-transform: uppercase;
  background-color: #0f495c;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  height: 54px;
  margin-top: 40px;
  padding: 0 40px;
  display: flex;
}

.button-primary:hover {
  background-color: #2f6f85;
}

.button-primary.is-pad {
  margin-left: 20%;
}

.image-12 {
  object-fit: cover;
  object-position: 100% 50%;
  height: 100%;
}

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

.img-moodboard.is-right {
  object-position: 100% 50%;
}

.quick-stack {
  padding: 5px 0 0;
}

.image_moodboard {
  background-image: url('../images/detail3.webp');
  background-position: 0 0;
  background-size: cover;
  height: 30vh;
}

.image_moodboard.is-01 {
  background-image: url('../images/detail1.webp');
}

.image_moodboard.is-02 {
  background-image: url('../images/palazzoada2.webp');
  background-position: 100%;
  height: 100%;
}

.image_moodboard.is-03 {
  background-image: url('../images/labicum02.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  height: 100%;
}

.image_moodboard.is-04 {
  background-image: url('../images/detail4.webp');
}

.image_moodboard.is-05 {
  background-image: url('../images/detail2.webp');
}

.vetrina-card-labicum {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto auto;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

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

  .header_component.is-nobackground.is-small.is-evaluate {
    height: 50vh;
  }

  .nav_logo_wrapper {
    z-index: 3;
  }

  .nav_link_wrapper.is-hide {
    display: none;
  }

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

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

  .section.background-color-light.is-max {
    height: 60vh;
  }

  .section.is-nopad.is-top-bot {
    padding-bottom: 0;
  }

  .section.is-mosaic.is-104 {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-medium {
    font-size: 40px;
  }

  .heading-medium.is-45 {
    font-size: 36px;
  }

  .heading-medium.is-right {
    width: 100%;
    font-size: 34px;
  }

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

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

  .container.is-header-home.is-center.is-cen {
    justify-content: center;
    align-items: center;
  }

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

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

  .container.is-full {
    padding-left: 3%;
    padding-right: 3%;
  }

  .container.is-full.is-reverse {
    flex-direction: column;
    align-items: stretch;
    padding-right: 0;
  }

  .container.is-full.is-hero.is-sell {
    padding-left: 4%;
    padding-right: 4%;
  }

  .container.is-full.is-4pad.is-pad-bottom {
    padding-top: 12%;
  }

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

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

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

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

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

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

  .contact_item {
    flex-direction: column;
  }

  .footer_column {
    order: 3;
  }

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

  .footer_column.tablet-is-explore {
    grid-row-gap: 0px;
    order: 2;
    justify-content: center;
    align-items: flex-start;
  }

  .footer_title {
    margin-bottom: 0;
  }

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

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

  .header_par {
    font-size: 1.2rem;
  }

  .contact_component {
    flex-direction: column;
  }

  .x_wrapper {
    background-color: rgba(0, 0, 0, 0);
    width: 60px;
    height: 60px;
  }

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

  .heading-small {
    padding-bottom: 56px;
    font-size: 36px;
  }

  .list_grid {
    flex-wrap: wrap;
  }

  .list_grid_item {
    min-width: 40%;
  }

  .slider_mask {
    width: 49%;
  }

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

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

  .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.is-home {
    align-self: flex-start;
    max-width: none;
  }

  .header_container.is-home.is-left, .header_container.is-home.is-right {
    align-self: center;
  }

  .header_container.is-home.is-labicum {
    max-width: none;
    padding-right: 0;
  }

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

  .footer_wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: row;
    justify-content: space-between;
    width: 100%;
  }

  .nav_link_container {
    z-index: 2;
  }

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

  .slide_image_wrapper {
    flex: none;
  }

  .footer_component {
    padding: 64px 32px;
  }

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

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

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

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

  .header-home_h1 {
    font-size: 4rem;
  }

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

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

  .text_container.is-full {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-self: stretch;
    width: auto;
    max-width: 490px;
    margin-left: auto;
    margin-right: 0;
    padding-left: 32px;
    padding-right: 0;
  }

  .text_container.is-full.is-contact {
    max-width: 580px;
  }

  .text_container.is-full.is-ingrid {
    padding-left: 0;
  }

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

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

  .text_container.is-50 {
    width: 50%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .text_container.is-50.is-medium {
    width: 50%;
    padding-left: 10%;
  }

  .text_container.is-55 {
    width: 31%;
    margin-right: 0%;
  }

  .text_container.is-home {
    max-width: 450px;
  }

  .floorplan_txt_wrapper {
    align-items: center;
    width: auto;
  }

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

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

  .floorplan_component.is-showroom {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-self: center;
    max-width: 100%;
  }

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

  .showroom_plani {
    max-width: 100%;
    max-height: 52vw;
  }

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

  .accordion_image_wrapper {
    height: 30vw;
  }

  .page_wrapper {
    padding: 3% 4%;
  }

  .page_wrapper.is-noheader {
    padding-top: 140px;
  }

  .arrow_box {
    height: 40px;
  }

  .download_component {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 100%;
  }

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

  .download_image {
    flex: none;
    align-self: auto;
    width: 100%;
  }

  .form-download_component {
    height: auto;
  }

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

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

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

  .lightbox_logo {
    display: none;
  }

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

  .lightbox_slider {
    padding-bottom: 80px;
  }

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

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

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

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

  .nav_logo {
    background-position: 0%;
  }

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

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

  .poi_number.is-absolute.is-02 {
    left: 38%;
  }

  .poi_number.is-absolute.is-11 {
    left: 45%;
  }

  .poi_number.is-absolute.is-08 {
    left: 79%;
  }

  .poi_number.is-absolute.is-06 {
    left: 21%;
  }

  .poi_number.is-absolute.is-07 {
    left: 61%;
  }

  .poi_number.is-absolute.is-09 {
    left: 85%;
  }

  .poi_number.is-absolute.is-03 {
    left: 64%;
  }

  .poi_number.is-absolute.is-05 {
    left: 50%;
  }

  .poi_number.is-absolute.is-12 {
    left: 75%;
  }

  .poi_number.is-absolute.is-04 {
    left: 22%;
  }

  .poi_number.is-absolute.is-01 {
    left: 45%;
  }

  .poi_number.is-absolute.is-10 {
    left: 47%;
  }

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

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

  .left-container.is-grid {
    width: 62%;
  }

  .paragraph {
    font-size: 12px;
    line-height: 1.6;
  }

  .paragraph.is-right {
    width: 100%;
  }

  .first-section_container {
    justify-content: space-between;
    padding-right: 0;
  }

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

  .button-link.is-20 {
    margin-top: 20px;
  }

  .double-right_container {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    justify-content: flex-start;
    align-items: center;
    height: 50vh;
  }

  .double-right_container.is-background {
    justify-content: center;
    align-items: center;
    padding-left: 32px;
    padding-right: 32px;
  }

  .text-wrap {
    height: 150px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .image-wrap {
    height: 40vw;
  }

  .double-container-img {
    padding-top: 40px;
  }

  .double-container-img.is-paddingbot {
    padding-bottom: 80px;
  }

  .double-container-contact {
    height: auto;
  }

  .form-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .quote {
    width: 100%;
    font-size: 33px;
  }

  .title-small {
    font-size: 32px;
  }

  .pages-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }

  .is-services-grid {
    grid-column-gap: 50px;
    grid-row-gap: 100px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .is-services-grid.is-about {
    padding-left: 4%;
    padding-right: 4%;
  }

  .image-container {
    display: none;
  }

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

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

  .vertical-scroll-wrapper {
    width: 34rem;
    height: 65px;
    overflow: hidden;
  }

  .text-rotation-wrapper.is-tablet {
    display: flex;
  }

  .text-rotation-wrapper.is-desktop, .text-rotation-wrapper.is-mobile1, .text-rotation-wrapper.is-mobile2 {
    display: none;
  }

  .slider-10_component {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .text-wrap-2 {
    height: 150px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .splide__list {
    padding-left: 0;
  }

  .double-card_container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .card-novita {
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .name-card {
    font-size: 32px;
  }

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

  .div-block-11 {
    width: 100%;
  }

  .is-subtitle {
    font-size: 1.7rem;
  }

  .fs-styleguide_2-col {
    grid-template-columns: 1fr;
  }

  .form-sp_container {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    flex-flow: column;
    grid-template-columns: 1fr;
    align-items: flex-start;
    display: flex;
  }

  .contactus_field {
    height: 42px;
    line-height: 20px;
  }

  .form_checkbox_label-2 {
    font-size: 10px;
  }

  .form-contactus_wrapper {
    margin-top: 0;
    margin-bottom: auto;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .right_container {
    width: 100%;
    padding-top: 40px;
  }

  .left_container {
    width: 100%;
    margin-top: 160px;
  }

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

  .container-2.is-technical.is-error {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    min-height: 89vh;
  }

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

  .container-3.is-technical.is-error {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    min-height: 89vh;
  }

  .gdpr-title1 {
    font-size: 50px;
  }

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

  .grid-form {
    grid-template-columns: 1fr;
    padding-left: 8%;
    padding-right: 8%;
  }

  .grid-form.is-tablet {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding-left: 0%;
    padding-right: 0%;
  }

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

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

  .image_moodboard {
    height: 20vh;
  }
}

@media screen and (max-width: 767px) {
  .form_field {
    margin-bottom: 15px;
  }

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

  .header_component.is-nobackground.is-small {
    min-height: 60vh;
  }

  .header_component.is-nobackground.is-xs {
    min-height: 0;
  }

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

  .section.is-mosaic.is-104 {
    padding-top: 80px;
  }

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

  .heading-medium.is-right {
    margin-bottom: 16px;
  }

  .container.is-header-home {
    grid-column-gap: 56px;
    grid-row-gap: 56px;
    flex-flow: column;
  }

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

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

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

  .heading-small {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .list_grid {
    grid-column-gap: 10vw;
    grid-row-gap: 10vw;
  }

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

  .slider_arrow {
    background-size: 100%;
    width: 30px;
  }

  .slider_component {
    max-height: 80vw;
  }

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

  .poi_column {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex: 1;
    min-width: 40%;
    margin-bottom: 40px;
  }

  .header_container.is-home.is-left, .header_container.is-home.is-right {
    transform: rotate(0);
  }

  .fixed_flags {
    right: 0;
  }

  .footer_wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 50px;
    flex-flow: column;
  }

  .flag_component {
    top: 28px;
  }

  .nav_hamburger {
    height: 40px;
  }

  .footer_component {
    padding: 56px 40px;
  }

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

  .header-home_h1 {
    font-size: 3.6rem;
  }

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

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

  .moodboard.is-gap.is-showroom {
    grid-template-columns: 1fr 1fr;
  }

  .text_container.is-full {
    margin-left: 0;
    padding-top: 40px;
    padding-left: 0;
  }

  .text_container.is-full.is-aboutus {
    max-width: 480px;
  }

  .text_container.is-full.is-topzero {
    padding-top: 0;
  }

  .text_container.is-50 {
    width: 90%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .text_container.is-50.is-medium {
    padding-left: 0%;
  }

  .text_container.is-50.is-milano {
    width: 50%;
  }

  .text_container.is-55 {
    order: -1;
    width: 70%;
    margin-bottom: 10%;
    position: static;
  }

  .floorplan_component.is-showroom {
    align-self: stretch;
  }

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

  .accordion_wrapper {
    align-self: stretch;
  }

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

  .accordion_image_wrapper {
    height: 44vw;
  }

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

  .lightbox_list {
    flex-direction: column;
    justify-content: flex-start;
  }

  .lightbox_slide {
    margin-right: 10px;
  }

  .slider_container, .video_container {
    flex-direction: column;
  }

  .poi_number.is-absolute {
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
  }

  .technical_wrapper {
    padding-top: 100px;
  }

  .left-container.is-grid {
    width: 100%;
  }

  .paragraph.is-right {
    padding-top: 2%;
  }

  .first-section_container {
    flex-flow: column;
    justify-content: flex-start;
  }

  .first-section_container.is-104pad {
    flex-flow: column;
    padding-top: 80px;
  }

  .divider-vertial {
    width: 100%;
    height: 3px;
  }

  .double-right_container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    height: auto;
  }

  .double-right_container.is-background {
    justify-content: flex-start;
    align-items: center;
  }

  .img-contain-wrap {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-wrap {
    height: 120px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .slide-10_title {
    font-size: 27px;
  }

  .paragraph-2.is-large {
    padding-left: 0%;
    padding-right: 10%;
  }

  .double-container-img.is-paddingbot {
    flex-flow: column;
  }

  .double-img {
    width: 100%;
  }

  .double-container-contact {
    flex-flow: column;
    align-items: stretch;
  }

  .quote-container, .form-container {
    width: 100%;
    padding: 8%;
  }

  .pages-list {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .is-hero.is-height {
    height: 330px;
  }

  .image-hero {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .number-text {
    font-size: 40px;
  }

  .text-grid-container {
    padding: 0 16px 0 0;
  }

  .text-grid-container.is-right-stroke {
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
  }

  .description-grid-text {
    text-align: center;
    font-size: 12px;
  }

  .is-services-grid {
    grid-column-gap: 40px;
  }

  .is-services-grid.is-about {
    grid-column-gap: 40px;
    grid-row-gap: 100px;
  }

  .name-aboutus {
    font-size: 27px;
  }

  .role {
    font-size: 13px;
  }

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

  .vertical-scroll-wrapper {
    width: 28rem;
    height: 4rem;
    overflow: hidden;
  }

  .text-rotation-wrapper {
    margin-left: 0%;
  }

  .text-rotation-wrapper.is-tablet {
    display: none;
  }

  .text-rotation-wrapper.is-mobile1 {
    display: flex;
  }

  .text-rotation-wrapper.is-mobile2 {
    display: none;
  }

  .slider-10_component {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .text-wrap-2 {
    height: 120px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .splide__slide {
    width: 50%;
  }

  .double-card_container {
    flex-flow: column;
  }

  .name-card {
    font-size: 26px;
  }

  .vetrina-card_container {
    width: 100%;
  }

  .label-01c_component {
    border-radius: 0;
    top: auto;
    bottom: 2%;
    left: auto;
    right: 2%;
  }

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

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

  .label-01c_text_wrapper {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 0;
    line-height: 1;
    display: flex;
  }

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

  .label-01c_title.no-border.is-big {
    padding-bottom: 20px;
    font-size: 23px;
  }

  .div-block-9 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-top: 10px;
  }

  .div-block-11 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    align-items: center;
    margin-top: 40px;
  }

  .contactus_field {
    margin-bottom: 15px;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .left_container {
    margin-top: 120px;
    padding-right: 6%;
  }

  .container-2.is-technical.is-error, .container-3.is-technical.is-error {
    min-height: 70vh;
  }

  .cookie_tab_wrapper {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
  }

  .cookie_tab {
    min-width: 750px;
  }

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

  .form_field-2 {
    margin-bottom: 15px;
  }

  .image_moodboard {
    height: 15vh;
  }
}

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

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

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

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

  .header_component.is-nobackground {
    height: 90vh;
  }

  .header_component.is-nobackground.is-small {
    height: 60vh;
    min-height: 0;
  }

  .header_component.is-nobackground.is-small.is-evaluate {
    margin-bottom: 20px;
  }

  .header_component.is-nobackground.is-sell {
    height: auto;
    min-height: 80vh;
  }

  .header_component.is-nobackground.is-about {
    height: auto;
    min-height: 0;
  }

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

  .section.background-color-light.is-max {
    padding-left: 0;
    padding-right: 0;
  }

  .section.is-mosaic.is-104 {
    padding-top: 64px;
  }

  .section.is-nopadtop {
    padding-left: 0;
    padding-right: 0;
  }

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

  .heading-medium {
    margin-bottom: 24px;
    font-size: 1.8rem;
  }

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

  .container.is-evaluate {
    grid-column-gap: 90px;
    grid-row-gap: 90px;
    flex-flow: column;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .contact_item {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    min-width: auto;
  }

  .footer_column, .footer_column.is-first, .footer_column.tablet-is-explore {
    order: 0;
  }

  .footer_title {
    margin-bottom: 20px;
  }

  .header_par {
    justify-content: center;
    align-items: center;
    font-size: 12px;
    display: flex;
  }

  .button.is-submit {
    margin-top: 20px;
  }

  .heading-small {
    padding-top: 0;
    padding-bottom: 24px;
    font-size: 1.8rem;
  }

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

  .list_grid_item {
    flex: 1;
    min-width: 170px;
  }

  .slider_component {
    max-height: 130vw;
  }

  .slider_slide {
    margin-right: 10px;
  }

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

  .header_container {
    font-size: 1.2rem;
  }

  .header_container.is-home, .header_container.is-home.is-left, .header_container.is-home.is-right {
    padding-right: 0;
  }

  .fixed_flags {
    right: 0;
  }

  .footer_wrapper {
    grid-row-gap: 60px;
  }

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

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

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

  .popup-area_wrapper {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .popup-area_box {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .popup-area_box.is-accedi {
    align-self: stretch;
    max-width: none;
  }

  .area_row {
    grid-row-gap: 20px;
    text-align: center;
    flex-direction: column;
  }

  .footer_gdpr {
    text-align: center;
  }

  .header-home_h1 {
    font-size: 2.2rem;
  }

  .text_container.is-full {
    padding-left: 0;
    padding-right: 0;
  }

  .text_container.is-50 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .text_container.is-50.is-medium, .text_container.is-50.is-milano {
    width: 100%;
  }

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

  .floorplan_txt_wrapper {
    align-self: flex-start;
    align-items: flex-start;
    margin-right: auto;
  }

  .floorplan_img_wrapper {
    height: 80vw;
    min-height: 250px;
  }

  .floorplan_cone {
    width: 28px;
    height: 28px;
    margin-top: -14px;
    margin-left: -14px;
  }

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

  .poi_distance {
    line-height: 2;
  }

  .download_component {
    padding: 0 20px 40px;
  }

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

  .download_image {
    order: -1;
    align-self: stretch;
    width: auto;
    height: 70vw;
    margin-left: -20px;
    margin-right: -20px;
  }

  .form-download_container {
    grid-template-columns: 1fr;
  }

  .lightbox_img_wrapper {
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }

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

  .slider_container {
    align-items: center;
  }

  .lightbox_wrapper {
    flex-direction: column;
  }

  .video_container {
    align-items: center;
  }

  .contact_title {
    font-size: 1.8rem;
  }

  .image-fullscreen.is-map {
    min-height: 80vw;
  }

  .form_heading {
    font-size: 1.8rem;
  }

  .card_heading {
    font-size: 1.1rem;
  }

  .paragraph {
    width: 100%;
    padding-left: 0%;
  }

  .button-link.is-20 {
    margin-left: 0%;
  }

  .text-wrap {
    padding-top: 30px;
  }

  .image-wrap {
    height: 80vw;
  }

  .double-container-img {
    flex-flow: column;
  }

  .quote-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .form-container {
    padding-top: 12%;
    padding-bottom: 12%;
  }

  .quote {
    font-size: 26px;
  }

  .title-small {
    font-size: 32px;
  }

  .is-hero.is-height {
    width: 100%;
    max-width: none;
    height: 300px;
  }

  .image-hero {
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: .75fr;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .image-hero.is-block {
    padding-left: 0;
    padding-right: 0;
  }

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

  .number-text {
    font-size: 31px;
  }

  .text-grid-container {
    padding-right: 0;
  }

  .text-grid-container.is-right-stroke {
    border-bottom: 2px solid #f6f2ee;
    border-right-width: 0;
    padding-bottom: 20px;
    padding-right: 0;
  }

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

  .is-services-grid.is-about {
    grid-template-rows: auto auto auto auto auto;
    margin-bottom: 60px;
  }

  .form-evaluate_container {
    order: -1;
    width: 100%;
  }

  .image-container {
    width: 100%;
    min-height: 0;
  }

  .image-6 {
    min-height: 0;
  }

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

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

  .vertical-scroll-wrapper {
    width: 19rem;
    height: 2.1rem;
  }

  .text-rotation-wrapper.is-mobile1 {
    display: none;
  }

  .text-rotation-wrapper.is-mobile2 {
    display: flex;
  }

  .slider-10_component {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .text-wrap-2 {
    padding-top: 30px;
  }

  .splide__slide {
    width: 100%;
  }

  .title-image {
    font-size: 1.6rem;
  }

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

  .card-novita {
    height: 34vh;
    padding-left: 20px;
    padding-right: 20px;
  }

  .name-card {
    font-size: 33px;
  }

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

  .vetrina-card_container.is-reverse {
    grid-template-columns: 1fr 1fr;
  }

  .label-01c_component {
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .label-01c_text_wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .label-text {
    max-width: 310px;
  }

  .is-subtitle {
    font-size: 1.5rem;
  }

  .modal-scroll-popup {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .wrap-modal {
    grid-auto-flow: row;
  }

  .hide-me-overlay {
    display: none;
  }

  .button-3.is-submit {
    margin-top: 24px;
  }

  .form-contactus_disclaimer {
    margin-top: 12px;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .slider_vision {
    justify-content: flex-start;
    display: flex;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .mask_slider-vision {
    width: 80%;
  }

  .slider_arrow-2 {
    left: auto;
    right: 53%;
  }

  .slider_arrow-2.is-right {
    left: 53%;
  }

  .c-slider_vision {
    grid-auto-flow: column;
  }

  .text-block-5 {
    font-size: 14px;
  }

  .container-2.is-technical.is-error {
    min-height: 58vh;
  }

  .title-xl {
    font-size: 40px;
    line-height: 50px;
  }

  .container-3.is-technical.is-error {
    min-height: 58vh;
  }

  .title-xl-2 {
    font-size: 40px;
    line-height: 50px;
  }

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

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

  .grid-form.is-tablet {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .image_moodboard, .image_moodboard.is-01 {
    height: 12vh;
  }

  .image_moodboard.is-02.is-mobile-hide, .image_moodboard.is-03.is-mobile-hide {
    display: none;
  }

  .vetrina-card-labicum {
    grid-template-columns: 1fr 1fr;
  }
}

#w-node-_77b6e906-9fa5-7b52-92ec-f638a86e5509-9307ab27 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_77b6e906-9fa5-7b52-92ec-f638a86e5513-9307ab27 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_77b6e906-9fa5-7b52-92ec-f638a86e5515-9307ab27 {
  grid-area: 1 / 3 / 3 / 4;
}

#w-node-_53cd7a68-4bd1-46d4-3b59-bad90ee360fa-9307ab27 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_53cd7a68-4bd1-46d4-3b59-bad90ee36103-9307ab27 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_53cd7a68-4bd1-46d4-3b59-bad90ee36104-9307ab27 {
  grid-area: 1 / 3 / 3 / 4;
}

#w-node-_0130405c-4381-dc67-cffd-d61a76b42224-9307ab27, #w-node-_2fa8f7cf-a38d-b529-de82-634208fcc978-9307ab27, #w-node-e0a917dc-64c7-d32e-c792-2a2993b3e60b-9307ab27, #w-node-_48dcb112-946f-2e87-5195-e3bd547a3263-9307ab27, #w-node-db47d602-fd61-b2ad-91da-3633446c49bd-9307ab27, #w-node-_1cd06976-61dd-8aca-8a3b-6a76bfeacc24-9307ab27 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c8bd0d35-ba4a-92af-c1a9-d05574dc5e5c-9307ab27 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-b083d043-28ff-3af3-ac64-f1efb04a8beb-9307ab27 {
  grid-area: 2 / 1 / 4 / 3;
}

#w-node-f712d783-040b-193f-672a-9b889b894ad5-9307ab27 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_9a5c76ab-4631-2deb-f362-928c4c1f4a31-9307ab27 {
  grid-area: 3 / 3 / 4 / 4;
}

#w-node-f285da11-6d0d-88f1-b5d4-db4b30713d58-9307ab27 {
  grid-area: 4 / 2 / 6 / 4;
}

#w-node-a0c8ff2a-9df9-ca37-7c63-e4334bb801ef-9307ab27 {
  grid-area: 4 / 1 / 5 / 2;
}

#w-node-_297249d2-fe3a-1268-692a-81366736c93e-9307ab27 {
  grid-area: 5 / 1 / 6 / 2;
}

#w-node-d9137470-c60b-e618-1cb0-2c373ff2d006-e7fa3508 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#messaggio.w-node-d9137470-c60b-e618-1cb0-2c373ff2d00a-e7fa3508, #w-node-d9137470-c60b-e618-1cb0-2c373ff2d00b-e7fa3508, #w-node-d9137470-c60b-e618-1cb0-2c373ff2d015-e7fa3508, #w-node-d9137470-c60b-e618-1cb0-2c373ff2d01f-e7fa3508 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#btn-form3.w-node-d9137470-c60b-e618-1cb0-2c373ff2d021-e7fa3508 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-c1be50a6-8878-0f3e-49e8-b23849206195-e7fa3508, #w-node-c1be50a6-8878-0f3e-49e8-b238492061a1-e7fa3508, #w-node-c1be50a6-8878-0f3e-49e8-b238492061d9-e7fa3508, #policyFlagsContainer.w-node-c1be50a6-8878-0f3e-49e8-b238492061dc-e7fa3508 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c1be50a6-8878-0f3e-49e8-b238492061df-e7fa3508 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-c1be50a6-8878-0f3e-49e8-b238492061e0-e7fa3508 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b6eb8067-f363-0aac-8f4d-b5224ecffcc3-9307ab45 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-b6eb8067-f363-0aac-8f4d-b5224ecffccc-9307ab45 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-b6eb8067-f363-0aac-8f4d-b5224ecffccd-9307ab45 {
  grid-area: 1 / 3 / 3 / 4;
}

#w-node-eb10030f-5307-a0a0-8bbf-422962711d44-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-eb10030f-5307-a0a0-8bbf-422962711d45-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_75867711-b74d-b135-ff71-4034429000b0-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_75867711-b74d-b135-ff71-4034429000b1-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_99e0002a-70e6-76f1-2082-502abf0623bb-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_99e0002a-70e6-76f1-2082-502abf0623bc-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-bec49f0f-714d-e4d0-f465-79eda891acbe-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-bec49f0f-714d-e4d0-f465-79eda891acbf-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_80e3950c-5078-33dc-09a8-ba54b16b30fa-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_80e3950c-5078-33dc-09a8-ba54b16b30fb-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e00-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e01-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e08-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e09-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e10-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e11-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e20-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e21-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e28-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e29-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e36-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e37-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e44-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071e45-9307ab45, #w-node-_193089af-cc8f-147f-af45-abd6ba071e72-9307ab45, #w-node-_193089af-cc8f-147f-af45-abd6ba071e92-9307ab45, #w-node-_233ff339-56be-233b-9cd9-8298bf244444-9307ab45, #w-node-_193089af-cc8f-147f-af45-abd6ba071ec7-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071ef2-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_193089af-cc8f-147f-af45-abd6ba071ef3-9307ab45 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: start;
}

#field.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea412-ca8ea40c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#note.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea413-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea414-ca8ea40c, #policyFlagsContainer.w-node-_4453a11f-4f8d-c8be-abfe-84467ecd7191-ca8ea40c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e9743b6f-05e6-a5de-12f4-252dca8ea427-ca8ea40c {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_2c60b7b6-a391-7817-805a-fcf1b24b7288-ca8ea40c {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

#w-node-_076d0d7b-0a3c-d0bd-eeff-ed07ed92ba73-68526fa5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#Indirizzo.w-node-_7cd35a4e-8710-50d0-31aa-1b394b275067-68526fa5, #metri.w-node-_8eb2a75a-7c3c-a514-207b-d7ccc33b033d-68526fa5, #locali.w-node-ed0732e3-037e-74b9-f60f-359dce8491f5-68526fa5, #anno.w-node-_795ed419-de9d-9959-42b5-986c5735c154-68526fa5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e0838893-34f3-9c81-6e22-e511205b250b-68526fa5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ac50cfad-1de3-8f69-f017-ec56c8acf461-68526fa5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7cd35a4e-8710-50d0-31aa-1b394b27506c-68526fa5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: stretch;
}

#w-node-_7cd35a4e-8710-50d0-31aa-1b394b275076-68526fa5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#btn-form3.w-node-_7cd35a4e-8710-50d0-31aa-1b394b275078-68526fa5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_6adf43ff-acc8-faf8-fa1e-97674ade7cc5-2a0c3d29 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#messaggio-2.w-node-_6adf43ff-acc8-faf8-fa1e-97674ade7cc9-2a0c3d29, #w-node-_6adf43ff-acc8-faf8-fa1e-97674ade7cca-2a0c3d29, #w-node-_6adf43ff-acc8-faf8-fa1e-97674ade7ccf-2a0c3d29, #w-node-_6adf43ff-acc8-faf8-fa1e-97674ade7cd4-2a0c3d29 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#btn-form3.w-node-_6adf43ff-acc8-faf8-fa1e-97674ade7cd6-2a0c3d29 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-a0437377-4484-9d82-7f5e-74857e6781ff-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678201-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678203-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678205-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678207-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678209-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67820b-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67820d-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67820f-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678211-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678214-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678216-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678218-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67821a-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67821d-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67821f-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678221-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678223-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678226-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678228-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67823c-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67823e-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678240-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678242-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678244-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678246-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678249-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67824b-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67824d-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67824f-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678252-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678254-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678256-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678258-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67825b-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67825d-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67825f-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678261-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678264-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678266-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678268-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67826a-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67826d-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67826f-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678271-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678273-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678276-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678278-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67827a-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67827c-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67827f-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678281-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678283-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678285-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678288-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67828a-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67828c-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67828e-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678291-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678293-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678295-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e678297-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67829a-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e67829c-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782bb-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782bd-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782bf-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782c1-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782c3-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782c5-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782c8-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782ca-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782cc-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782ce-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782d1-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782d3-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782d5-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782d7-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782da-01e6cc26, #w-node-a0437377-4484-9d82-7f5e-74857e6782dc-01e6cc26 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #field.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea412-ca8ea40c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c1be50a6-8878-0f3e-49e8-b23849206195-e7fa3508, #w-node-c1be50a6-8878-0f3e-49e8-b238492061a1-e7fa3508, #w-node-c1be50a6-8878-0f3e-49e8-b238492061d9-e7fa3508, #policyFlagsContainer.w-node-c1be50a6-8878-0f3e-49e8-b238492061dc-e7fa3508, #w-node-c1be50a6-8878-0f3e-49e8-b238492061df-e7fa3508 {
    grid-column: span 1 / span 1;
  }

  #field.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea412-ca8ea40c {
    grid-column: span 2 / span 2;
  }

  #w-node-a769fec1-7de7-4db7-9a82-d4718c5a719d-68526fa5 {
    order: 9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_77b6e906-9fa5-7b52-92ec-f638a86e5509-9307ab27 {
    order: -9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_77b6e906-9fa5-7b52-92ec-f638a86e5511-9307ab27 {
    order: 9999;
  }

  #w-node-_77b6e906-9fa5-7b52-92ec-f638a86e5513-9307ab27 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_77b6e906-9fa5-7b52-92ec-f638a86e5515-9307ab27 {
    grid-column: 3 / 4;
    grid-row-end: 3;
  }

  #w-node-_53cd7a68-4bd1-46d4-3b59-bad90ee360fa-9307ab27 {
    order: -9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_53cd7a68-4bd1-46d4-3b59-bad90ee36102-9307ab27 {
    order: 9999;
  }

  #w-node-_53cd7a68-4bd1-46d4-3b59-bad90ee36103-9307ab27 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_53cd7a68-4bd1-46d4-3b59-bad90ee36104-9307ab27 {
    grid-column: 3 / 4;
    grid-row-end: 3;
  }

  #w-node-b6eb8067-f363-0aac-8f4d-b5224ecffcc3-9307ab45, #firstName.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea40e-ca8ea40c, #lastName.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea40f-ca8ea40c, #field.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea410-ca8ea40c, #tel.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea411-ca8ea40c, #field.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea412-ca8ea40c, #note.w-node-e9743b6f-05e6-a5de-12f4-252dca8ea413-ca8ea40c, #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea414-ca8ea40c, #policyFlagsContainer.w-node-_4453a11f-4f8d-c8be-abfe-84467ecd7191-ca8ea40c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e9743b6f-05e6-a5de-12f4-252dca8ea427-ca8ea40c {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
  }
}


