:root {
  --font--san-serif: lato, sans-serif;
  --palette--dim-grey: #727272;
  --dimensione--margin-navbar-0: 0px;
  --dimensione--padding-large: 7vw;
  --palette--white: white;
  --palette--black-2: #333;
  --palette--black: black;
  --palette--firebrick: #c22015;
  --palette--dark-cyan: #008686;
  --palette--light-sea-green: #55b9ac;
  --palette--maroon: #83130c;
  --dimensione--padding-medium: 5vw;
  --palette--teal: #006d72;
  --palette--white-smoke: #f2f2f2;
  --palette--pale-turquoise: #99d5cd;
  --font--serif: ivymode, sans-serif;
  --palette--green-extra-light: #e4ecec;
  --palette--grey-light: #f1f1f1;
  --palette--green-light: #93cebc;
  --dimensione--margin-navbar: 30px;
}

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

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

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

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

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

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

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

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

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

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

body {
  font-family: var(--font--san-serif);
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

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

strong {
  color: var(--palette--dim-grey);
  font-weight: 700;
}

blockquote {
  z-index: 2;
  letter-spacing: .5px;
  border-left: 1px #000;
  width: 65%;
  max-width: 900px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: ivymode, sans-serif;
  font-size: 30px;
  font-style: italic;
  line-height: 50px;
  position: relative;
}

.navbar {
  z-index: 53;
  margin-top: var(--dimensione--margin-navbar-0);
  padding: 15px var(--dimensione--padding-large);
  color: var(--palette--white);
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0 0% auto;
}

.nav_link {
  color: var(--palette--black-2);
  text-align: center;
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: ivymode, sans-serif;
  text-decoration: none;
  transition: color .2s;
}

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

.nav_logo {
  justify-content: center;
  align-items: center;
  width: 200px;
  min-width: 100px;
  height: 55px;
  margin-right: 10px;
  display: flex;
  position: relative;
}

.nav_logo.w--current {
  min-width: 100px;
}

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

.image-logo.is-negative {
  position: absolute;
  inset: 0%;
}

.image-logo.is-negative:where(.w-variant-edacca7c-587b-dc1b-b068-3d12b95b27c8) {
  display: none;
}

.icon-embed {
  width: 20px;
  color: var(--palette--black-2);
}

.icon-embed.in-configurator {
  width: 30px;
  height: 30px;
  color: var(--palette--firebrick);
}

.icon-embed.in-form-popup {
  width: 40px;
  height: 40px;
  color: var(--palette--white);
}

.button {
  background-color: var(--palette--dark-cyan);
  cursor: pointer;
  border-radius: 200px;
  min-width: 145px;
  padding: 9px 30px;
  text-decoration: none;
  transition: background-color .4s;
}

.button:hover {
  background-color: var(--palette--light-sea-green);
}

.button.is-form {
  color: var(--palette--white);
  text-transform: uppercase;
  margin-top: 50px;
  text-decoration: none;
  transition: font-variation-settings .35s, background-color .4s;
}

.button.is-red {
  background-color: var(--palette--firebrick);
  color: var(--palette--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 60px;
  text-decoration: none;
  transition: font-variation-settings .35s, background-color .4s;
}

.button.is-red:where(.w-variant-d8f0b779-3358-3b09-4eb8-0ab73a52a71a) {
  margin-top: 0;
}

.button.is-red:hover {
  background-color: var(--palette--maroon);
}

.button.is-submit {
  color: var(--palette--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  align-self: flex-start;
}

.button.is-date-picker {
  color: var(--palette--white);
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
}

.nav-list_container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  align-items: center;
  display: flex;
}

.hero_component {
  z-index: 51;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.hero_component.is-page {
  height: 65vh;
  min-height: 720px;
}

.hero_background {
  z-index: -1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.hero_background.video {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.hero_hover {
  z-index: 3;
  background-color: #00000080;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-text_wrapper {
  z-index: 2;
  text-align: center;
}

.heading-1 {
  color: var(--palette--white);
  text-align: center;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: ivymode, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
}

.heading-1.is-medium {
  color: #c3ece7;
  font-size: 26px;
  line-height: 35px;
}

.heading-2 {
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
}

.point-red {
  color: #0000;
  background-image: url('../images/TownLife_tondo-rosso.svg');
  background-position: 50% 60%;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 38px;
  position: relative;
}

.datepicker_component {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}

.datepicker_component.is-fixed {
  z-index: 50;
  background-color: var(--palette--dim-grey);
  width: 100%;
  min-height: 70px;
  position: fixed;
  bottom: 0;
}

.datepicker_element {
  z-index: 1;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background-color: #ffffff1a;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1080px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 40px;
  display: flex;
}

.datepicker_element.is-fixed {
  background-color: #fff0;
  flex: none;
  width: 100%;
  max-width: none;
  min-height: 150px;
}

.page_wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

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

.section:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
  padding-bottom: 0;
}

.section.is-news {
  padding-top: 10%;
  padding-bottom: 10%;
  display: flex;
}

.section.padding-top-bot {
  padding-top: var(--dimensione--padding-large);
  padding-bottom: var(--dimensione--padding-large);
  position: relative;
}

.section.padding-top-bot.is-grey {
  background-color: #7272721a;
}

.section.padding-top-bot.is-grey.padding-lateral {
  padding-right: var(--dimensione--padding-large);
  padding-left: var(--dimensione--padding-large);
}

.section.padding-top-bot.is-sticky-grey {
  background-color: #7272721a;
}

.section.padding-top-bot.background-color_green-extra-light.padding-lateral, .section.padding-top-bot.padding-lateral {
  padding-right: var(--dimensione--padding-large);
  padding-left: var(--dimensione--padding-large);
}

.section.is-servizi {
  padding-bottom: 4vw;
  display: flex;
}

.section.is-vertical {
  padding-top: var(--dimensione--padding-large);
  padding-bottom: var(--dimensione--padding-large);
  display: flex;
}

.section.is-footer-relink {
  padding-top: var(--dimensione--padding-medium);
  padding-bottom: var(--dimensione--padding-medium);
  background-color: #015053;
  background-image: url('../images/tl_pat-item-parallax_09.svg');
  background-position: -70px;
  background-repeat: no-repeat;
  background-size: 140px;
}

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

.section.max-height {
  min-height: 600px;
}

.section.padding-top {
  padding-top: var(--dimensione--padding-large);
  position: relative;
}

.section.padding-top.is-grey {
  background-color: #7272721a;
}

.section.is-relink-right {
  background-color: #015053;
  background-image: url('../images/tl_pat-item-parallax_09.svg');
  background-position: 106%;
  background-repeat: no-repeat;
  background-size: 140px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section.padding-all {
  padding: 5vw;
}

.section.padding {
  padding: 8% 6vw;
  position: relative;
}

.section.padding.is-grey, .section.padding.is-sticky-grey {
  background-color: #7272721a;
}

.section.pad-top-bot {
  padding-top: var(--dimensione--padding-medium);
  padding-bottom: var(--dimensione--padding-medium);
}

.section.pad-top-bot:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
  padding-bottom: 0;
}

.section.is-technical {
  padding: 10vw var(--dimensione--padding-large) var(--dimensione--padding-large);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.intro_wrapper {
  width: 100%;
  padding-top: var(--dimensione--padding-medium);
  padding-bottom: var(--dimensione--padding-medium);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.intro_wrapper.in-section {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  position: relative;
}

.intro_wrapper.is-align-left {
  padding: var(--dimensione--padding-large) var(--dimensione--padding-medium);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.intro_wrapper.is-align-center {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  justify-content: center;
  align-items: center;
  padding: 100px 6vw;
  position: relative;
}

.title-paragraph {
  letter-spacing: .5px;
  margin-bottom: 10px;
  font-family: ivymode, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 46px;
}

.title-paragraph.is-white {
  color: var(--palette--white);
}

.title-paragraph.allign-center {
  text-align: center;
}

.title-paragraph.allign-center.is-white.in-contact {
  max-width: 500px;
  margin-bottom: 0;
  font-size: 35px;
  line-height: 45px;
}

.title-paragraph.margin-40 {
  margin-bottom: 40px;
}

.title-paragraph.is-medium {
  font-size: 26px;
}

.title-paragraph.is-small {
  max-width: 800px;
  font-family: lato, sans-serif;
  font-size: 20px;
  line-height: 29px;
}

.paragraph {
  max-width: 750px;
  color: var(--palette--dim-grey);
  font-family: lato, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.paragraph.align-center {
  text-align: center;
  max-width: 700px;
  display: block;
}

.paragraph.small {
  font-size: 14px;
  line-height: 20px;
}

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

.container.padding-vertical {
  padding-top: 4vw;
}

.container.padding-vertical.is-grey {
  background-color: #7272721a;
  flex-direction: column;
  padding-top: 6vw;
  padding-bottom: 6vw;
  position: relative;
}

.container.is-contact {
  align-items: stretch;
}

.container.is-grey {
  background-color: #7272721a;
  justify-content: space-between;
  padding: 30px;
}

.container.margin-bottom {
  margin-bottom: 4vw;
}

.container.margin-bottom._0desk {
  margin-bottom: 0;
}

.container.hero-btn_wrapper {
  justify-content: center;
  align-items: center;
}

.container.hero-btn_wrapper.align-top {
  z-index: 2;
  justify-content: center;
  align-items: flex-start;
}

.container.flex-vertical {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}

.container.flex-vertical.gap {
  grid-column-gap: var(--dimensione--padding-medium);
  grid-row-gap: var(--dimensione--padding-medium);
}

.container.flex-vertical.padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.container.max-width {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.container.is-relink {
  width: 100%;
  max-width: 1100px;
  color: var(--palette--white);
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container.is-masterplan {
  max-width: 1300px;
  padding: var(--dimensione--padding-medium) var(--dimensione--padding-large);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
}

.container.is-vertical-left {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.container.is-flex-full {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: stretch;
  overflow: hidden;
}

.container.is-flex-small {
  margin-top: 40px;
}

.container.is-tiles {
  width: 100%;
}

.container.padding-sx-dx:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
  padding-right: var(--dimensione--padding-medium);
  padding-left: var(--dimensione--padding-medium);
}

.container.tablet-tab-0:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.container.is-map {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  padding: 7vw;
}

.container.is-technical {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

.paragraph-section-container {
  justify-content: center;
  align-items: center;
  width: 50vw;
  height: 100%;
  display: flex;
}

.paragraph-section-container.width-40 {
  width: 40vw;
  padding-left: 25px;
  padding-right: 25px;
}

.paragraph-section-container.width-40.is-sticky {
  position: sticky;
  top: 140px;
}

.image-wrap-curve {
  border-top-right-radius: 20vw;
  width: 50vw;
  height: 35vw;
  min-height: 500px;
  overflow: hidden;
}

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

.image-cover.in-servizi {
  flex: 1;
}

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

.image-cover.position_70-50 {
  object-position: 70% 50%;
}

.image-cover.position_50-15 {
  object-position: 50% 15%;
}

.image-cover.is-animation {
  height: 110%;
}

.subtitle-paragraph {
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: ivymode, sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 22px;
}

.subtitle-paragraph.is-red {
  color: var(--palette--firebrick);
  font-size: 18px;
}

.subtitle-paragraph.is-red.margin-10 {
  margin-bottom: 10px;
}

.subtitle-paragraph.allign-center {
  text-align: center;
}

.text_wrapper {
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
  display: flex;
  position: relative;
}

.text_wrapper.is-allign-center {
  text-align: center;
  align-items: center;
  max-width: 700px;
}

.text_wrapper.is-allign-center.in-contact {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.text_wrapper.is-allign-center.is-white {
  background-color: #fffffff2;
}

.text_wrapper.is-allign-center.is-white.in-gallery {
  max-width: none;
  padding: 40px;
}

.text_wrapper.is-allign-center.max-w-auto:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589), .text_wrapper.width-auto {
  max-width: none;
}

.text_wrapper.width-auto.text-align-center {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.text_wrapper.is-double {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  max-width: 1100px;
}

.heading-3 {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.span-firebrick {
  color: var(--palette--firebrick);
  font-style: italic;
}

.pittogramma {
  background-image: url('../images/TownLife---pittogramma.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin-bottom: 30px;
}

.pittogramma.margin-top20.align-center {
  align-self: center;
}

.pattern {
  opacity: .3;
  background-image: url('../images/pattern-white.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 22vw;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.pattern.allign-right {
  transform-style: preserve-3d;
  left: auto;
  right: 0;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.pattern.is-big {
  z-index: 0;
  background-image: url('../images/pattern-white-big.svg');
  width: 30vw;
}

.pattern.is-big.allign-right {
  inset: auto 0% 0% auto;
  transform: rotate(180deg);
}

.right-arrow, .left-arrow {
  justify-content: center;
  align-items: center;
  display: flex;
}

.slide-nav {
  display: none;
}

.sezione_img-griglia {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: flex-end;
  width: 50vw;
  height: 50vw;
  display: grid;
}

.grid-configurator {
  z-index: 1;
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 4vw;
  position: relative;
}

.grid-configurator_wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 220px;
  display: flex;
}

.title-icons {
  color: var(--palette--black-2);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.title-icons.in-contact {
  color: var(--palette--teal);
  margin-top: 20px;
  margin-bottom: 10px;
}

.icon-wrapper {
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  display: flex;
}

.margin-top20 {
  align-self: flex-start;
  margin-top: 20px;
}

.form_field {
  border-style: none none solid;
  border-width: 1px;
  border-color: #f2f2f2 #f2f2f2 var(--palette--white);
  color: var(--palette--teal);
  letter-spacing: .5px;
  background-color: #fff0;
  border-radius: 0;
  font-family: lato, sans-serif;
}

.form_field::placeholder {
  color: var(--palette--teal);
}

.nowrap {
  white-space: nowrap;
}

.form {
  flex-direction: column;
  display: flex;
}

.map_container {
  background-image: url('../images/TownLife_mappa_rev02_1200px.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
}

.slide03_fake {
  justify-content: flex-end;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
}

.slide03_fake.last {
  justify-content: flex-start;
  margin-left: 20px;
  display: flex;
  left: 100%;
  right: auto;
}

.slider-servizi {
  background-color: #0000;
  justify-content: center;
  width: 100%;
  height: 500px;
  margin-top: 40px;
  padding-bottom: 70px;
  display: flex;
  overflow: hidden;
}

.slide_txt__wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 60px;
  display: flex;
}

.slide03 {
  margin-right: 40px;
}

.mask03 {
  width: 300px;
  position: relative;
  overflow: visible;
}

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

.slider03_container {
  background-color: var(--palette--white-smoke);
  opacity: 1;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 100%;
  padding: 40px 20px;
  text-decoration: none;
  transition: opacity .5s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  box-shadow: 1px 3px 4px #0000001a;
}

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

.slider03_container._01 {
  border-bottom-left-radius: 80px;
}

.slider03_container._02 {
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
}

.slider03_container._03 {
  border-top-right-radius: 80px;
}

.slider03_container._04 {
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
}

.slider03_container._05 {
  border-bottom-right-radius: 80px;
}

.slider-servizi_container {
  width: 100%;
  display: none;
}

.text-servizi {
  color: var(--palette--black-2);
  margin-top: 0;
  margin-bottom: 0;
  font-family: ivymode, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
}

.arrow {
  background-color: var(--palette--light-sea-green);
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.menu {
  display: none;
}

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

.button_component.is-datepicker, .button_component.is-bookingwidget-01 {
  display: none;
}

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

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

.display-none {
  display: none;
}

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

.img-vert {
  object-fit: cover;
  flex: 1;
  height: 100%;
  max-height: 100vh;
}

.elem-grafico_angolo-bassosx-2 {
  background-color: #f2f2f2;
  border-bottom-left-radius: 50%;
}

.elem-grafico_angolo-bassosx-2.img {
  background-color: #0000;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.elem-grafico_angoli-altodxbassosx-2 {
  background-color: #f2f2f2;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.elem-grafico_angoli-altodxbassosx-2.img {
  background-color: #0000;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.elem-grafico_angoli-altodxbassosx-2.img.varie3 {
  background-image: url('../images/iStock-467166226_mod.webp');
}

.elem-grafico_angoli-altodxbassodx-2 {
  background-color: #f2f2f2;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.elem-grafico_angoli-altodxbassodx-2.img {
  background-color: #0000;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.elem-grafico_angolo-bassodx-2 {
  background-color: #f2f2f2;
  border-bottom-right-radius: 50%;
}

.elem-grafico_angolo-bassodx-2.img {
  background-color: #0000;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

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

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

.grid_img.bilo04 {
  background-image: url('../images/Maggiolina_TownLife_VPinterior_Living04_MiddleCloseUp_rev00-copia.webp');
}

.grid_img.bilo02 {
  background-image: url('../images/Maggiolina_TownLife_VPinterior_Living02_MiddleCloseUp_rev02-copia.webp');
}

.grid_img.angolo-stondato {
  border-top-left-radius: 10vw;
}

.grid_img.angolo-stondato.bilo01 {
  background-image: url('../images/Maggiolina_TownLife_VPinterior_Living02_rev01-copia.webp');
}

.grid_img.angolo-stondato.trilo01 {
  background-image: url('../images/Maggiolina_TownLife_VPinterior_Living03_export_rev02-copia.webp');
}

.grid_img.angolo-stondato.quadri01 {
  background-image: url('../images/MaggiolinaTownLife_VPinterior_Living_01_rev03.webp');
}

.grid_img.angolo-stondato.mono01 {
  background-image: url('../images/AQ1057_Milano_TownLifeMaggiolina_VPInt10_rev01_Post-copia.webp');
  background-position: 0%;
}

.grid_img.bilo03 {
  background-image: url('../images/Maggiolina_TownLife_VPinterior_Living02_Dettaglio_rev00-copia.webp');
}

.grid_img.trilo02 {
  background-image: url('../images/Maggiolina_TownLife_VPinterior_Living03_MedioDettaglio_export_rev00.jpg');
}

.grid_img.trilo03 {
  background-image: url('../images/MaggiolinaTownLife_InteriorTour_VP03_rev00-copia.webp');
}

.grid_img.trilo04 {
  background-image: url('../images/MaggiolinaTownLife_InteriorTour_VP05_rev00-copia.webp');
}

.grid_img.quadri02 {
  background-image: url('../images/MaggiolinaTownLife_InteriorTour_VP04_rev00-copia.webp');
}

.grid_img.quadri03 {
  background-image: url('../images/MaggiolinaTownLife_VPinterior_Living_CloseUp02_rev00-copia.webp');
}

.grid_img.quadri04 {
  background-image: url('../images/VP_Interior_MaggiolinaTownLife_CloseUp_06_rev01-copia.webp');
}

.grid_img.mono02 {
  background-image: url('../images/AQ1057_Milano_TownLifeMaggiolina_VPInt_10_dettaglio_rev00_Post-1-copia.webp');
}

.grid_img.mono03 {
  background-image: url('../images/Maggiolina_TownLife_InteriorTourVP03_Camera_Dettaglio_export_rev00-copia.webp');
}

.grid_img.mono04 {
  background-image: url('../images/Maggiolina_TownLife_InteriorTourVP04_Bagno_Dettaglio_export_rev01-copia.webp');
}

.sezione_img-griglia-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: flex-end;
  width: 50vw;
  height: 50vw;
  display: grid;
}

.sezione_img-griglia-3.tipologie {
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1.5fr .5fr;
  width: 60vw;
  height: 35vw;
  min-height: 650px;
}

.sezione_img-forma-2 {
  background-image: url('../images/img_angolo_verde-home.png');
  background-position: 20%;
  background-repeat: no-repeat;
  background-size: 200px;
  justify-content: flex-end;
  align-items: center;
  width: 10vw;
  margin-left: 35px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sezione_img-forma-2.wood {
  background-image: url('../images/Risorsa-2.webp');
  background-position: 0%;
}

.form__wrap {
  z-index: 1;
  border-top-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60vw;
  padding-top: 75px;
  padding-bottom: 75px;
  display: flex;
  position: relative;
}

.form__wrap.footer {
  border-top-style: none;
}

.form__wrap.footer.width-1 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 5%;
}

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

.text-checkbox-form {
  align-self: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: lato, sans-serif;
  font-size: 12px;
}

.sezione {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 10%;
  display: flex;
  position: relative;
}

.sezione.flex-vertical {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10%;
}

.sezione.flex-vertical.color_turchese.pad-top-60px {
  padding-top: 60px;
}

.sezione.flex-vertical.color_turchese.pad-top-60px.is-popup {
  z-index: 60;
  width: auto;
  padding-top: 0;
  padding-bottom: 0%;
  display: none;
  position: fixed;
  inset: 0%;
}

.sezione.img-fs {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100vh;
  min-height: 700px;
  margin-bottom: 10%;
  padding-bottom: 0%;
}

.sezione.img-fs.city {
  background-image: url('../images/Dasù---Dils---Maggiolina---00025_crop.webp');
  margin-bottom: 0%;
}

.sezione.img-fs.is-bg {
  background-image: none;
  margin-bottom: 0%;
}

.sezione.align-stretch {
  align-items: stretch;
  padding-bottom: 0%;
}

.sezione.padding-top {
  padding-top: 5%;
  padding-bottom: 0%;
}

.sezione.padding-top.align-dx {
  padding-top: 3%;
}

.contact-map_component {
  z-index: 1;
  background-color: #f2f2f25c;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.contact-map_component.is-popup {
  margin-top: auto;
  margin-bottom: auto;
}

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

.no-wrap.bold {
  font-weight: 700;
}

.form_link-2 {
  color: #008686;
}

.form_link-2:hover {
  color: #006d72;
}

.pattern-2 {
  background-image: url('../images/TownLife_pattern01_bianco.svg');
  background-position: 100% 80%;
  background-repeat: no-repeat;
  background-size: auto 210%;
  width: 35vw;
  height: 100%;
  position: absolute;
  left: 0;
}

.pattern-2.trasp {
  opacity: .5;
  background-position: 0 80%;
  left: auto;
  right: 0;
}

.pattern-2.trasp._10 {
  opacity: .1;
  inset: 0% 0% 0% auto;
}

.checkbox-2 {
  color: #000;
  background-color: #fff;
  border-style: none;
}

.checkbox-2.w--redirected-checked {
  background-color: #008686;
}

.checkbox-2.w--redirected-focus {
  box-shadow: 0 0 3px 1px #008686;
}

.sezione_text__container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  display: flex;
  position: relative;
}

.sezione_text__container.bg-trasp {
  background-color: #ffffffd9;
  border-top-right-radius: 50%;
  width: 40vw;
  min-width: 450px;
  max-width: 600px;
  height: 40vw;
  min-height: 450px;
  max-height: 600px;
}

.sezione_text__container.bg-trasp.valori {
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
}

.sezione_text__container.width50 {
  width: 50vw;
}

.contact-map_wrapper {
  margin-top: 0;
  display: flex;
}

.checkbox_label-2 {
  text-align: left;
  font-size: 12px;
  line-height: 18px;
}

.div-block-8 {
  width: 30px;
}

.color_turchese {
  background-color: var(--palette--pale-turquoise);
}

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

.text-form-contatti {
  font-size: 20px;
  line-height: 24px;
}

.text-form-contatti.text-color-verde {
  line-height: 30px;
}

.text_wrapper-contatti {
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.text_wrapper-contatti.is-allign-center {
  align-items: center;
  max-width: 700px;
}

.hero-btn_wrapper {
  position: relative;
}

.image {
  height: 15px;
}

.image.date-piker {
  width: 1000px;
  height: auto;
}

.navbar-icon {
  justify-content: flex-start;
  width: 15px;
  margin-right: 5px;
  display: flex;
}

.nav-link-wrap {
  opacity: .8;
  justify-content: flex-start;
  text-decoration: none;
  display: flex;
}

.nav-link-wrap:hover {
  opacity: 1;
}

.nav-link-wrap.hide {
  display: none;
}

.date-pickeer-image {
  flex: none;
  max-width: 950px;
}

.chiudi {
  z-index: 1000;
  width: 25px;
  height: 25px;
  color: var(--palette--white);
  cursor: pointer;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  display: flex;
  position: absolute;
  top: 10px;
  left: auto;
  right: 17px;
}

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

.contact_container {
  width: 50%;
  min-height: 600px;
  padding: var(--dimensione--padding-medium);
  background-color: var(--palette--pale-turquoise);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.icon-mail {
  background-color: var(--palette--teal);
  cursor: pointer;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.div-block-15 {
  width: 250px;
  height: 65px;
}

.item-line {
  background-color: var(--palette--white);
  width: 75%;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.lottie-animation-8 {
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
}

.close-popup {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  position: absolute;
  inset: 30px 30px auto auto;
}

.navbar_loghi__wrap {
  align-items: flex-end;
  margin-left: 25px;
  display: flex;
}

.hero_logo-generali {
  background-image: url('../images/gre-red.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 115px;
  height: 35px;
}

.linea {
  background-color: var(--palette--dim-grey);
  outline-offset: 0px;
  outline: 3px #fff;
  width: 1px;
  height: 35px;
}

.linea.h-50 {
  height: 50px;
}

.linea.hide {
  display: none;
}

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

.countdown-01_column {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #4071e3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.countdown-01_number {
  color: var(--palette--white);
  letter-spacing: 1px;
  font-family: ivymode, sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
}

.countdown-01_text {
  color: var(--palette--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 14px;
}

.countdown-01_text.color {
  color: var(--palette--pale-turquoise);
  font-weight: 400;
}

.countdown-01_line {
  background-color: #f2f2f280;
  align-self: stretch;
  width: 1px;
}

.txt-red {
  color: #c22015;
}

.sezione_img-fs {
  display: none;
}

.sezione_text__wrap {
  z-index: 1;
  flex-direction: column;
  align-items: flex-start;
  max-width: 375px;
  display: flex;
  position: relative;
}

.sezione_text__wrap.center-mobile.max-width {
  max-width: 500px;
}

.sezione_text__wrap.align-center-vertical {
  justify-content: center;
  align-items: flex-start;
  max-width: none;
}

.btn {
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #c22015;
  border-radius: 50px;
  margin-top: 50px;
  padding-left: 35px;
  padding-right: 35px;
  font-family: lato, sans-serif;
  font-size: 14px;
  transition: all .4s;
}

.btn:hover {
  background-color: #83130c;
}

.btn.radius {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn.is-fixed {
  z-index: 53;
  text-align: center;
  border-radius: 0;
  margin-top: 0;
  padding: 5px 0;
  font-size: 12px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.btn.hero {
  margin-top: 0;
}

.btn.is-link:where(.w-variant-d8f0b779-3358-3b09-4eb8-0ab73a52a71a) {
  margin-top: 0;
  padding: 5px 10px;
}

.btn.is-configura {
  background-color: var(--palette--firebrick);
  color: var(--palette--white-smoke);
  flex: 1;
  margin-top: 0;
  padding: 5px 15px;
  font-size: 13px;
}

.navlink__wrap {
  flex-direction: row;
  align-items: center;
  margin-bottom: -5px;
  display: flex;
}

.navlink_container {
  color: #333;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 1vw;
  margin-right: 1vw;
  text-decoration: none;
  display: flex;
  position: relative;
}

.navlink_container.margin-auto-bottom {
  cursor: pointer;
}

.navlink {
  letter-spacing: 1px;
  font-family: ivymode, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.navlink:hover {
  color: var(--palette--firebrick);
}

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

.navlink_dot {
  opacity: 0;
  background-color: #c22015;
  border-radius: 20px;
  width: 5px;
  height: 5px;
  margin-top: 2px;
}

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

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

.stondamento {
  background-color: #fff;
  border-bottom-left-radius: 15vw;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
}

.sezione_img-vert {
  flex-direction: column;
  min-width: 500px;
  max-width: 45vw;
  height: 100%;
  margin-right: 35px;
  overflow: hidden;
}

.stondamento__wrap {
  z-index: 0;
  background-color: #99d5cd;
  width: 35vw;
  min-width: 400px;
  height: 85%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.stondamento__wrap.mobile-sx-alto {
  display: none;
}

.tabs {
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.tabs-menu {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.tab-link {
  letter-spacing: 1px;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 213.484px;
  font-family: ivymode, sans-serif;
  font-size: 25px;
  display: flex;
}

.tab-link.w--current {
  color: var(--palette--firebrick);
  background-color: #0000;
}

.tab-link.borders {
  border-left: 1px solid var(--palette--dim-grey);
}

.div-block-19 {
  grid-column-gap: 10px;
  grid-row-gap: 40px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

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

.div-block-20.align-horizontal {
  flex-flow: row;
  width: 100%;
}

.div-block-20.align-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.text-block-4 {
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.icona-servizi {
  width: 50px;
  height: 50px;
}

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

.text-block-6 {
  background-color: var(--palette--white-smoke);
  white-space: nowrap;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  justify-content: center;
  align-items: center;
  height: 38px;
  margin-top: 50px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 15px;
  display: flex;
}

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

.sezione_icone-griglia {
  grid-column-gap: 60px;
  grid-row-gap: 80px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  justify-content: flex-start;
  place-items: flex-start stretch;
  width: 60vw;
  padding-right: 20px;
  display: grid;
}

.sezione_icone-griglia.is-sticky {
  width: 50vw;
  display: flex;
}

.div-block-22 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 200px;
  display: flex;
}

.div-block-22:where(.w-variant-b00834e4-4a05-0b6e-bc90-e53bf0f63f3e) {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  min-width: 200px;
}

.no-wrap-bold {
  white-space: nowrap;
  font-weight: 700;
}

.div-block-23 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: none;
  position: relative;
}

.text-block-7 {
  color: var(--palette--white);
  letter-spacing: .5px;
  font-size: 16px;
}

.scroll-gif {
  z-index: 2;
  background-image: url('../images/scroll-1.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  margin-top: 25px;
  position: absolute;
  inset: auto auto 40px;
}

.text-servizi-2 {
  color: #333;
  text-align: center;
  letter-spacing: 1px;
  font-family: ivymode, sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.button02 {
  cursor: pointer;
  background-color: #008686;
  border-radius: 200px;
  min-width: 145px;
  padding: 9px 30px;
  text-decoration: none;
  transition: background-color .4s;
}

.button02:hover {
  background-color: #55b9ac;
}

.button02.is-link {
  color: var(--palette--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.button02.is-text {
  color: #fff;
  letter-spacing: 1px;
  background-color: #00868600;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  min-width: auto;
  padding-left: 0;
  padding-right: 0;
  font-family: ivymode, sans-serif;
  text-decoration: none;
}

.button02.is-text:hover {
  color: #99d5cd;
  border-bottom-color: #99d5cd;
}

.icon-embed-2 {
  color: #333;
  width: 20px;
}

.icon-embed-2.arrow {
  color: #fff;
  width: 30px;
  height: 30px;
}

.arrow-2 {
  background-color: #55b9ac;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.text-small {
  color: var(--palette--dim-grey);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 14px;
}

.pattern-dx {
  background-image: url('../images/TownLife_pattern01_bianco.svg');
  background-position: 0 80%;
  background-repeat: no-repeat;
  background-size: auto 210%;
  width: 35vw;
  height: 100%;
  position: absolute;
  right: 0;
}

.pattern-dx.trasp {
  opacity: .5;
}

.pattern-dx.trasp._10 {
  opacity: .1;
}

.sezione-quote {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 10%;
  padding-bottom: 10%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sezione-quote.dark-green, .sezione-quote.is-quote {
  background-color: var(--palette--dark-cyan);
}

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

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

.social__wrap {
  align-items: center;
  display: flex;
}

.footer-logo_wrap {
  margin-top: 6px;
}

.social {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  margin-top: 5px;
  transition: all .4s;
}

.social.ig {
  background-image: url('../images/icons8-instagram_dark-green.svg');
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.social.ig:hover {
  background-image: url('../images/icons8-instagram_red.svg');
}

.social.fb {
  background-image: url('../images/logo_facebook_dark-green.svg');
}

.social.fb:hover {
  background-image: url('../images/logo_facebook-red.svg');
}

.logo_container {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-right: 25px;
  display: flex;
}

.logo_container.center {
  align-items: center;
  margin-top: 15px;
}

.footer_logo {
  width: 160px;
}

.footer_logo.generali {
  width: 170px;
}

.div-block-10 {
  grid-column-gap: 40px;
  min-height: 70px;
  display: flex;
}

.sezione-vert {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.sezione-vert.gray-bg {
  z-index: 10;
  grid-column-gap: 20px;
  background-color: #f2f2f2;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 30px;
  position: relative;
}

.footer {
  border-top: 1px solid #f2f2f2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px 5%;
  display: flex;
  position: relative;
}

.footer.z-index {
  z-index: 10;
  background-color: #fff;
  width: 100%;
}

.footer_link__container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

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

.footer_link {
  color: #333;
  text-align: center;
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: lato, sans-serif;
  text-decoration: underline;
  transition: color .35s;
}

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

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

.footer_link_divisorio {
  background-color: #006d72;
  width: 1px;
  height: 17px;
}

.footer_txt {
  color: #333;
  letter-spacing: .5px;
  font-family: lato, sans-serif;
  font-size: 12px;
}

.footer_txt.size10 {
  text-align: center;
  margin-top: 15px;
  font-size: 10px;
  line-height: 13px;
}

.text-span {
  color: var(--palette--pale-turquoise);
}

.slide_txt__wrap-2 {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-top: 10px;
  display: flex;
}

.slide_txt__wrap-2.align-end {
  justify-content: flex-end;
  padding-top: 0;
  padding-bottom: 10px;
}

.text-servizi-3 {
  color: #333;
  margin-bottom: 20px;
  font-family: ivymode, sans-serif;
  font-size: 20px;
  line-height: 25px;
}

.slide03-2 {
  background-color: #fff;
  margin-right: 40px;
}

.slider03_container-2 {
  opacity: 1;
  background-color: #fff;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 100%;
  margin-right: 40px;
  font-size: 2em;
  text-decoration: none;
  transition: opacity .5s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

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

.slider-servizi_container-2 {
  width: 100%;
}

.slide_img__wrap-2 {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 65%;
  display: flex;
}

.slide_img__wrap-2.radius-right {
  border-top-right-radius: 10vw;
  overflow: hidden;
}

.slide_img__wrap-2.radius-left {
  border-bottom-left-radius: 10vw;
  overflow: hidden;
}

.arrow-3 {
  background-color: #55b9ac;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.text-quote_small {
  font-size: 28px;
  line-height: 45px;
}

.heading-2-copy {
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.heading-small01 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  font-family: lato, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.heading-small01.is-point {
  background-image: url('../images/tl_pat-item-parallax_09.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto 5px;
  padding-left: 20px;
}

.heading-small01.text-opacity {
  opacity: .68;
}

.heading-small01.is-large {
  font-size: 16px;
  font-weight: 600;
}

.header-slide_txt {
  z-index: 2;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  max-width: 700px;
  display: flex;
  position: absolute;
  inset: auto auto 20vh 4vw;
}

.header-slide_txt.is-marya {
  padding-bottom: 60px;
}

.header-slide_hover {
  z-index: 1;
  background-image: linear-gradient(#0006, #fff0 30%), linear-gradient(0deg, #0006, #fff0 30%), linear-gradient(#0006, #0006);
  position: absolute;
  inset: 0%;
}

.cta_icon {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  background-color: #f0f0e81a;
  border: 1px solid #abcbd1;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: background-color .4s;
  display: flex;
}

.cta_icon:hover {
  background-color: #fff3;
}

.cta_icon.w--current {
  color: #fff;
}

.cta_icon.is-rotate {
  transform: rotate(-90deg);
}

.cta_icon.is-rotate:hover {
  background-color: #ffffff4d;
}

.header-arrow_right {
  width: 50px;
  height: 50px;
  font-size: 15px;
  inset: auto 20px 9.8vh auto;
}

.header-arrow_left {
  width: 50px;
  height: 50px;
  font-size: 15px;
  inset: auto 145px 9.8vh auto;
}

.subtitle-m {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
}

.subtitle-m.in-slider {
  border: 1px solid var(--palette--pale-turquoise);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  border-radius: 50px;
  align-self: flex-start;
  padding: 5px 10px;
}

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

.text-span-4 {
  letter-spacing: 1px;
  text-transform: capitalize;
}

.div-block-47 {
  position: absolute;
  inset: 0%;
}

.title-s {
  font-size: 25px;
  line-height: 35px;
}

.progress-bar {
  background-color: #f0f0e84d;
  width: 100%;
  height: 1px;
  position: relative;
}

.progres {
  background-color: #abcbd1;
  width: 0%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.header-slider_wrapper {
  z-index: 2;
  width: 100%;
  display: flex;
  position: absolute;
  inset: auto 0% 1vh;
}

.header-slide_img {
  object-fit: cover;
  object-position: 50% 100%;
  width: 100%;
  height: 100%;
}

.header-slide_column {
  opacity: .3;
  color: #fff;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 2vw;
  padding-left: 2vw;
  padding-right: 2vw;
  text-decoration: none;
  display: flex;
}

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

.link-block-2 {
  z-index: 5;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

.header_mask {
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 50px;
  overflow: hidden;
}

.header_mask.is-slider {
  width: 100%;
  height: 100%;
  inset: 0;
}

.header-slide_container {
  width: 100%;
  height: 100%;
  color: var(--palette--white);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-block-9 {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 12px;
}

.hero_overlay {
  z-index: 2;
  opacity: .5;
  background-image: url('../images/noise_1noise.png'), linear-gradient(#abcbd1, #543d42);
  background-size: auto, auto;
  position: absolute;
  inset: 0;
}

.hero_overlay._02 {
  opacity: .3;
  background-image: linear-gradient(#abcbd1, #543d42);
  background-size: auto;
}

.hero_overlay.is-black {
  z-index: 2;
  opacity: 0;
  background-image: linear-gradient(#554548, #554548);
}

.hero_overlay._03 {
  opacity: 1;
  background-image: linear-gradient(#0000004d, #fff0 50%), linear-gradient(#abcbd180, #fff0 50%), linear-gradient(90deg, #abcbd100 26%, #543d42);
}

.text-block-19 {
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 24px;
}

.header-slider_nav {
  z-index: 4;
  width: 96px;
  inset: auto 60px 10vh auto;
}

.ic-item01 {
  width: 20px;
}

.map-lightbox1 {
  position: absolute;
  inset: 0%;
}

.div-block-9 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.contact_link {
  color: #006d72;
  cursor: pointer;
  border-bottom: 1px solid #c22015;
  margin-bottom: 20px;
  font-family: lato, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.contact_link:hover {
  color: #c22015;
}

.contact_link.rosso {
  border-bottom-style: none;
  text-decoration: none;
}

.contact_link.rosso.tablet__show {
  display: none;
}

.div-block-48 {
  width: 30px;
}

.infopoint-map_wrapper {
  flex-direction: column;
  display: none;
}

.map-lightbox {
  background-color: #c22015;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.map_wrapper {
  border: 1px solid #c22015;
  width: 350px;
  display: flex;
  position: relative;
}

.img-cover {
  object-fit: cover;
}

.line_x {
  background-color: #fff;
  width: 32px;
  height: 1px;
  margin-left: -5px;
  position: absolute;
  transform: rotate(45deg);
}

.line_x.vertical {
  width: 20px;
  margin-left: 0;
  transform: rotate(90deg);
}

.line_x.line2_x {
  transform: rotate(-45deg);
}

.line_x.line2_x.horizontal {
  width: 20px;
  margin-left: 0;
  transform: none;
}

.item-pittogr.is-small {
  width: 20px;
}

.item-pittogr.is-map {
  width: 25px;
}

.titles-logo {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.titles_component {
  cursor: pointer;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 25vw;
  min-width: 290px;
  height: 30vw;
  min-height: 500px;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 2px 20px 3px #0003;
}

.titles_component.card-full {
  cursor: auto;
  width: 100%;
}

.text-block-11 {
  z-index: 5;
  width: 100%;
  font-family: var(--font--serif);
  color: #fbfbfb;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 1px 6px #0003;
  font-size: 35px;
  font-weight: 400;
  line-height: 48px;
}

.text-block-11.is-small {
  font-family: var(--font--san-serif);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  display: none;
}

.text-block-11.is-positive {
  color: var(--palette--teal);
  text-shadow: none;
}

.div-block-49 {
  z-index: 1;
  color: #31357a;
  width: 200px;
  position: relative;
}

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

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

.text-item {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}

.titles_paragraph {
  z-index: 2;
  color: var(--palette--white);
  text-align: center;
  background-color: #d1e9e6;
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.titles_paragraph.is-dark {
  background-color: var(--palette--teal);
  text-align: center;
}

.titles_paragraph.is-medium-dark {
  background-color: #44a79a;
}

.titles_paragraph.is-light {
  background-color: #7fbba9;
  background-image: linear-gradient(#0000000d, #0000000d);
}

.titles_background {
  z-index: 3;
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-san-serif {
  z-index: 5;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.text-san-serif.is-absolute {
  position: absolute;
  bottom: 20px;
}

.titles-logo_div {
  z-index: 5;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
  inset: 2vw auto auto;
}

.image-bg-title {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.image-bg-title.is-dark {
  background-color: #008686a6;
  background-image: linear-gradient(#0000001a, #0000001a), radial-gradient(circle, #00000045, #fff0);
}

.image-bg-title.is-dark.is-color100 {
  background-image: none;
}

.image-bg-title.is-medium-dark {
  background-color: #55b9aca6;
  background-image: linear-gradient(#0000001a, #0000001a), radial-gradient(circle, #00000045, #fff0);
}

.image-bg-title.is-medium-dark.is-color100 {
  background-image: none;
}

.image-bg-title.is-light {
  background-color: #93cebcb0;
  background-image: linear-gradient(#0000001a, #0000001a), radial-gradient(circle, #00000045, #0000);
}

.image-bg-title.is-light.is-color100 {
  background-image: none;
}

.text_wrapper-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.text_wrapper-2.max-width {
  max-width: 250px;
}

.div-block-72 {
  z-index: 1;
  grid-column-gap: 30%;
  grid-row-gap: 30%;
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 100px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.text-paragraph.in-title {
  z-index: 1;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  font-size: 16px;
  line-height: 22px;
}

.image-wrap {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.image-wrap.is-absolute {
  inset: 0%;
  position: static;
  inset: 0%;
  overflow: hidden;
}

.div-block-73 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.card_flex {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  flex: 1;
  align-items: center;
  max-width: 65%;
  display: flex;
}

.card_flex.is-full {
  justify-content: center;
  align-items: center;
  max-width: none;
  margin-right: 10px;
  padding-left: 10px;
}

.card_flex.is-full.is-top {
  justify-content: center;
  align-items: flex-start;
}

.card_flex.is-full.max-width {
  max-width: 1300px;
}

.card_flex.is-profili {
  justify-content: center;
  align-items: center;
  max-width: none;
  margin-right: 10px;
  padding-left: 10px;
}

.card_flex.is-profili.is-top {
  justify-content: center;
  align-items: flex-start;
}

.card_flex.is-valori {
  justify-content: center;
  align-items: center;
  max-width: none;
  margin-right: 10px;
  padding-left: 10px;
}

.card_flex.is-valori.is-top {
  justify-content: center;
  align-items: flex-start;
}

.card_flex.is-profili-footer {
  justify-content: center;
  align-items: center;
  max-width: none;
  margin-left: 40px;
  margin-right: 10px;
  padding-left: 10px;
}

.card_flex.is-profili-footer.is-top {
  justify-content: center;
  align-items: flex-start;
}

.image-section_container.is-50 {
  width: 50%;
}

.image-section_container.is-masterplan {
  width: 50%;
  height: 100%;
}

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

.item-brush01 {
  opacity: 1;
}

.grid {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 60vw;
  min-height: 500px;
  max-height: 80vh;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.grid.small {
  grid-template-rows: 2fr 1fr;
  grid-template-columns: 1.5fr 1fr .5fr;
  width: 100%;
  min-height: 400px;
  max-height: 70vh;
}

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

.grid_img_wrap.is-curve-tr {
  border-top-right-radius: 50%;
}

.bg-pattern01 {
  background-color: #414d32;
  background-image: linear-gradient(#414d32a8, #414d32a8), url('../images/eurora_pattern01.svg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 150%;
}

.bg-pattern01.is-full {
  width: 100%;
  height: 100%;
}

.item-brush01_wrap {
  z-index: -2;
  align-items: flex-end;
  width: 50%;
  max-width: 700px;
  height: auto;
  position: absolute;
  inset: auto 10% -15% auto;
}

.item-brush01_wrap.z-index {
  z-index: 1;
  bottom: -10%;
  right: -2%;
}

.div-block-68 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 650px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.div-block-68.align-center.text-align-center {
  color: var(--palette--white);
}

.header-text-change {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  margin-top: 20px;
  display: flex;
}

.slider_hero {
  background-color: #ddd0;
  width: 100%;
  height: 100vh;
  min-height: 850px;
  display: flex;
}

.slider_hero.z-index {
  z-index: 4;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.heading-medium-var {
  text-transform: none;
  font-size: 44px;
  line-height: 1.2;
}

.heading-medium-var.is-animation {
  font-family: var(--font--serif);
  color: var(--palette--pale-turquoise);
  text-align: center;
  letter-spacing: 1px;
  white-space: nowrap;
  margin-left: 0;
  margin-right: 0;
  font-size: 40px;
  font-weight: 400;
}

.heading-medium-var.is-small {
  margin-bottom: 10px;
  font-size: 38px;
}

.header_container {
  z-index: 3;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.header_container.is-home-full {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

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

.text-section {
  letter-spacing: 2px;
  font-weight: 400;
}

.tablet_logo-wrapper {
  display: flex;
}

.arrow_hero {
  opacity: .7;
  filter: invert();
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 10px;
  width: 30px;
  height: 60px;
  margin-bottom: 60px;
  font-size: 30px;
  transition: all .1s;
  display: none;
  bottom: 60px;
  right: 60px;
}

.arrow_hero.left {
  background-image: url('../images/ic-arrow-left.svg');
  background-size: 25px;
  margin-bottom: 0;
  margin-right: 0;
  inset: auto auto 45% 4vw;
}

.arrow_hero.left:hover {
  background-position: 30%;
}

.arrow_hero.right {
  background-image: url('../images/ic-arrow-right.svg');
  background-size: 25px;
  margin-top: 0;
  margin-bottom: 0;
  top: auto;
  bottom: 45%;
  right: 4vw;
}

.arrow_hero.right:hover {
  background-position: 70%;
}

.dot_wrap {
  z-index: 2;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fbac5d;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 20px;
  height: 160px;
  margin-left: auto;
  margin-right: 50px;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.text-span-46 {
  text-transform: uppercase;
  margin-right: 5px;
  font-size: 17px;
}

.scroll-hero_wrapper {
  grid-row-gap: 30px;
  color: #fff;
  flex-direction: column;
  text-decoration: underline;
  display: flex;
  position: absolute;
  bottom: 0;
}

.scroll-hero_wrapper.is-static {
  z-index: 5;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  cursor: pointer;
  align-items: center;
  text-decoration: none;
  position: absolute;
  bottom: 40px;
}

.text-block-26 {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Open Sans, sans-serif;
  font-size: 12px;
  text-decoration: none;
}

.div-block-77 {
  width: 50px;
  height: 50px;
}

.arrow-from-bottom-to-top {
  width: 50px;
  height: 50px;
  transform: rotate(180deg);
}

.text-keyword {
  color: #93cebc;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  font-family: lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.map-embed {
  width: 100%;
  height: 100%;
}

.pattern_div {
  z-index: 1;
  width: 200px;
  height: 200px;
  position: absolute;
  inset: auto 0% -6vw auto;
  overflow: hidden;
}

.pattern_div.is-opt1 {
  width: auto;
  height: 10vw;
  inset: -5vw 1% auto auto;
}

.pattern_div.is-opt1.pos02 {
  height: 5vw;
  top: .3vw;
  right: 10%;
}

.pattern_div.is-opt1.pos03 {
  height: 5vw;
  top: 6vw;
  bottom: 8px;
  right: 5%;
}

.pattern_div.is-opt2 {
  opacity: .5;
  width: 30vw;
  height: 100%;
  inset: 0% auto auto 0%;
}

.pattern_div.is-opt3 {
  opacity: .5;
  width: 30vw;
  height: 100%;
  inset: 0% 0% auto auto;
}

.pattern_div.is-opt4 {
  opacity: .5;
  width: auto;
  height: 50%;
  inset: 10% auto auto 20%;
}

.pattern_div.is-reverse {
  width: auto;
  height: 5vw;
  top: .3vw;
  bottom: 0;
  right: 10%;
}

.pattern_div.is-big {
  opacity: .15;
  width: 50vw;
  height: 100%;
  inset: 0 auto auto 0;
}

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

.image_contain.is-pattern-2 {
  object-position: 100% 0%;
}

.background-color_grey {
  background-color: #f1f1f1;
}

.background-color_green {
  background-color: #d2ece4;
}

.background-color_gradient-green {
  background-image: linear-gradient(358deg, #d2ece4, #fff);
}

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

.container-2 {
  grid-column-gap: 10vw;
  grid-row-gap: 0px;
  flex-direction: column;
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-2.is-full-max-width {
  flex-flow: row;
  width: 100%;
  max-width: 1100px;
}

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

.card-name {
  z-index: 1;
  width: 100%;
  position: static;
}

.card-name.is-page {
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  display: flex;
  position: static;
  inset: auto 0% -14%;
}

.div-block-78 {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  display: flex;
}

.txt-l {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 35px;
  font-weight: 100;
  line-height: 38px;
}

.item_arrow {
  width: 13px;
  transform: rotate(180deg);
}

.item_arrow.invert {
  filter: invert();
}

.txt__wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  min-width: 400px;
  max-width: 500px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.txt__wrap.width-auto {
  min-width: auto;
  max-width: none;
}

.txt__wrap.width-auto.align-center-horizontal {
  justify-content: center;
}

.txt__wrap.is-20 {
  justify-content: center;
  align-items: flex-start;
  width: 20%;
  min-width: auto;
  max-width: none;
}

.section-2 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 10vw;
  padding-bottom: 10vw;
  display: flex;
  position: relative;
}

.section-2.is-footer {
  padding-top: 5vw;
  padding-bottom: 5vw;
}

.div-block-82 {
  opacity: 1;
  filter: invert();
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-82.is-absolute {
  filter: none;
  background-color: #fff;
  width: 30px;
  height: 30px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: rotate(-90deg);
}

.div-block-82.is-absolute-copy {
  filter: none;
  background-color: #fff;
  width: 30px;
  height: 30px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  position: static;
  inset: 0% 0% auto auto;
  transform: rotate(-90deg);
}

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

.card-section {
  z-index: 5;
  color: #ebded9;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
  font-size: 27px;
  font-weight: 400;
}

.card-section.is-page {
  width: auto;
  font-family: var(--font--serif);
  color: #143b3d;
  text-transform: none;
  font-size: 20px;
}

.titles_component-2 {
  background-color: var(--palette--white);
  cursor: pointer;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 290px;
  min-height: 280px;
  padding: 40px;
  display: flex;
  position: relative;
}

.titles_component-2.is-page {
  background-color: var(--palette--white);
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  min-height: 290px;
  padding: 0;
  overflow: hidden;
}

.titles_component-2.is-page.is-right {
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
}

.heading-xs {
  letter-spacing: .5px;
  text-transform: uppercase;
  background-image: url('../images/Line_Title_01.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 50px;
  margin-top: 0;
  margin-bottom: 40px;
  padding-top: 2px;
  padding-left: 70px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.heading-xs.is-center {
  background-image: none;
  padding-left: 0;
}

.heading-3-medium {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  font-family: lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.item-circle {
  background-color: var(--palette--firebrick);
  border-radius: 100%;
  flex: none;
  width: 20px;
  height: 20px;
}

.item-circle.is-medum {
  width: 10px;
  height: 10px;
}

.item-circle.margin-top {
  margin-top: 10px;
}

.flex-vertical {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.flex-vertical.is-horizontal {
  flex-flow: row;
  margin-bottom: 20px;
}

.flex-vertical.is-hero {
  margin-bottom: 20px;
}

.card-tag {
  z-index: 1;
  letter-spacing: .5px;
  text-transform: uppercase;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  inset: auto auto 0;
}

.card-tag.is-sold-out {
  color: #fff;
  background-color: #a8a8a8;
}

.card-tag.is-available {
  color: var(--palette--firebrick);
}

.card-tag.is-available.is-top:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
  background-color: #c22015;
  border-radius: 0 0 10px 10px;
  top: 0;
  bottom: auto;
}

.card-tag.is-medium {
  padding: 5px 15px;
  font-size: 20px;
}

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

.pattern_div_reverse {
  z-index: 1;
  width: 200px;
  height: 200px;
  position: absolute;
  inset: auto 0% -6vw auto;
  overflow: hidden;
}

.pattern_div_reverse.is-opt1 {
  width: auto;
  height: 10vw;
  inset: -5vw 1% auto auto;
}

.pattern_div_reverse.is-opt1.pos02 {
  height: 5vw;
  top: .3vw;
  right: 10%;
}

.pattern_div_reverse.is-opt1.pos03 {
  height: 5vw;
  top: 6vw;
  bottom: 8px;
  right: 5%;
}

.pattern_div_reverse.is-opt2 {
  opacity: .5;
  width: 30vw;
  height: 100%;
  inset: 0% auto auto 0%;
}

.pattern_div_reverse.is-opt3 {
  opacity: .5;
  width: 30vw;
  height: 100%;
  inset: 0% 0% auto auto;
}

.pattern_div_reverse.is-opt4 {
  opacity: .5;
  width: auto;
  height: 50%;
  inset: 10% auto auto 20%;
}

.pattern_div_reverse.is-reverse {
  width: auto;
  height: 5vw;
  top: .3vw;
  bottom: 0;
  right: 10%;
}

.navbar_background {
  z-index: -1;
  background-color: var(--palette--white);
  height: 0%;
  position: absolute;
  inset: 0%;
}

.navbar_background:where(.w-variant-edacca7c-587b-dc1b-b068-3d12b95b27c8) {
  height: 100%;
}

.counter_section {
  z-index: 3;
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.counter_line {
  background-color: var(--palette--light-sea-green);
  flex: 1;
  height: 1px;
}

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

.counter_component {
  border: 1px solid var(--palette--light-sea-green);
  padding: 20px 40px;
}

.heading-xsmall-2 {
  text-transform: uppercase;
  font-size: .9em;
}

.heading-medium-2 {
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.4;
}

.counter_number {
  font-size: 3.9em;
  line-height: 1.2;
}

.hero_wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 650px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.container-3 {
  grid-column-gap: 10vw;
  grid-row-gap: 0px;
  flex-direction: column;
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-3.is-masterplan-area {
  grid-column-gap: 3vw;
  flex-flow: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1300px;
}

.slide_point {
  background-color: #61b0a6;
  border-radius: 100px;
  width: 10px;
  height: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.slide_point.is-poi-rose {
  background-color: #bda8a0;
  flex: none;
  margin-top: 0;
  margin-bottom: 0;
}

.slide_point.is-poi {
  flex: none;
  margin-top: 0;
  margin-bottom: 0;
}

.slide_point.is-poi-green {
  background-color: #143b3d;
  flex: none;
  margin-top: 0;
  margin-bottom: 0;
}

.map_pointer {
  z-index: 5;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  display: none;
  position: absolute;
  bottom: 100%;
  overflow: hidden;
}

.map-number {
  z-index: 1;
  cursor: pointer;
  background-color: #143b3d;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: none;
  position: absolute;
  bottom: 14.4%;
  right: 34%;
  box-shadow: 0 2px 5px #0003;
}

.map-number.loc-pos04 {
  bottom: 27%;
  right: 30%;
}

.map-number.loc-pos06 {
  bottom: 59.4%;
  right: 54%;
}

.map-number.loc-pos07 {
  bottom: 52%;
  right: 42%;
}

.map-number.loc-pos08 {
  bottom: 46%;
  right: 54%;
}

.map-number.loc-pos03 {
  bottom: 18%;
  right: 41%;
}

.map-number.loc-pos01 {
  bottom: 12%;
  right: 59%;
}

.map-number.loc-pos05 {
  bottom: 65%;
  right: 46%;
}

.map-number.loc-pos02 {
  bottom: 20%;
  right: 52%;
}

.poi-number {
  color: #fff;
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 400;
}

.poi_wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: none;
}

.section-3 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 10vw;
  padding-bottom: 10vw;
  display: flex;
  position: relative;
}

.section-3.masterplan-distretto-zoom {
  z-index: 3;
  background-color: #f6f6f6;
  background-image: url('../images/townlife-keyplan-infopoint-sitoweb-REV03.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: row;
  height: 700px;
  max-height: 90vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section-3.masterplan-amanities {
  z-index: 3;
  background-image: url('../images/TownLife_mappa_rev02_1200px.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: row;
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.point-2 {
  background-color: #ebded9;
  border-radius: 15px;
  width: 15px;
  height: 15px;
}

.point-2.is-arrow-green {
  background-color: #ebded900;
  background-image: url('../images/bliss-ic-masterplan-direction_green.svg');
  background-position: 50% 100%;
  background-repeat: repeat-y;
  background-size: 13px;
  position: absolute;
  bottom: 100%;
  transform: rotate(180deg);
}

.point-2.is-arrow-green.pos-bliss-med {
  background-image: url('../images/tl_ic-arrow.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 29px;
  width: 40px;
  height: 20px;
  top: 105%;
  bottom: auto;
  right: 36.5625px;
  transform: rotate(0);
}

.pointer_logo {
  background-image: url('../images/bliss_ic-masterplan_dark.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 55px;
  height: 70px;
  position: absolute;
  bottom: 31.6%;
  right: 45%;
}

.pointer_logo.is-pos02 {
  display: none;
  bottom: 54.6%;
  right: 54%;
}

.image_wrapper {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.image_wrapper.is-70 {
  width: 40%;
}

.image_wrapper.is-70.is-border {
  border: 40px solid var(--palette--white);
  width: 70%;
}

.image_wrapper.is-50 {
  aspect-ratio: 1;
  width: 50%;
}

.image_wrapper.is-50.is-border {
  background-color: var(--palette--white);
  width: 70%;
  padding: 40px;
}

.pointer_txt-3 {
  color: #fff;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
  display: flex;
  position: static;
}

.pointer_txt-3.is-bliss {
  padding: 5px 5px 5px 10px;
}

.map_pointer-bliss {
  z-index: 5;
  background-color: var(--palette--firebrick);
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  padding-left: 24px;
  padding-right: 5px;
  display: flex;
  position: absolute;
  bottom: 100%;
  overflow: hidden;
}

.map_pointer-bliss.is-fix {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  bottom: 32%;
  right: 37%;
  overflow: visible;
}

.poi-text {
  letter-spacing: .5px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 2px;
  padding-left: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.button_text-2 {
  z-index: 1;
  position: relative;
}

.button_text-2.is-hover {
  z-index: 3;
  color: #f36a45;
  position: absolute;
  transform: translate(0, 50px);
}

.sublist_text {
  font-size: .87em;
  line-height: 1.3;
}

.section-4 {
  grid-column-gap: 6vw;
  grid-row-gap: 6vw;
  flex-flow: column;
  padding: 140px 6vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-4.is-appartamenti {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  padding: 0;
  overflow: visible;
}

.list_icon {
  opacity: .55;
  width: 1.6em;
  height: 1.6em;
}

.mood_nav {
  z-index: 3;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 10px 10px auto auto;
}

.tablet_tipologia-mood_wrapper {
  display: none;
}

.text_container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 500px;
  margin: auto;
  display: flex;
}

.text_container.is-appartamenti {
  background-image: linear-gradient(#fff0, #ffffffba 53%, #fff0);
  justify-content: center;
  align-self: auto;
  align-items: flex-start;
  max-width: none;
  min-height: calc(100vh - 123px);
  margin-bottom: 10vh;
  padding: 100px 6vw;
  position: static;
}

.text_container.is-appartamenti.is-last {
  margin-bottom: 0;
}

.text_container.is-appartamenti_wrapper {
  max-width: 40%;
  position: static;
}

.list_item {
  flex: 1;
  min-width: 150px;
  max-width: 100%;
}

.sublist_subheading {
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 400;
}

.heading-medium-3 {
  max-width: 21em;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1.2;
}

.sublist {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  justify-content: space-between;
  margin-top: 12px;
  display: flex;
}

.sublist.is-icon {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  margin-bottom: 0;
  display: grid;
}

.icon {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.heading-small-2 {
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  top: -3px;
}

.mood_checked {
  width: 12px;
  height: 12px;
  color: var(--palette--firebrick);
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  overflow: hidden;
}

.button_component-2 {
  color: #ffdcd6;
  letter-spacing: .06em;
  text-transform: uppercase;
  background-color: #f36a45;
  border: 2px solid #f36a45;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin-top: 48px;
  padding-left: 40px;
  padding-right: 40px;
  text-decoration: none;
  transition: color .35s, background-color .35s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button_component-2:hover {
  color: #000;
  background-color: #0000;
}

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

.mood_tab {
  z-index: 1;
  width: 100%;
  height: 100%;
}

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

.sublist_item.is-icon {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
}

.image_wrapper-2 {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image_wrapper-2.is-grid {
  z-index: 1;
  opacity: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  max-height: none;
  position: absolute;
  inset: 0%;
}

.image_wrapper-2.is-grid.is-studio {
  opacity: 1;
}

.image_wrapper-2.is-sticky {
  flex: 1;
  max-width: 60%;
  height: calc(100vh - 250px);
  max-height: none;
  position: sticky;
  top: 88px;
}

.button_hover {
  z-index: 2;
  background-color: #ffdcd6;
  height: 300%;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.sublist_heading {
  text-transform: uppercase;
  font-size: .85em;
  font-weight: 700;
}

.list {
  flex-flow: column;
  flex: 1;
  align-self: stretch;
  max-width: none;
  margin-top: 16px;
  margin-bottom: 0;
  padding-left: 20px;
  display: flex;
}

.list.is-appartamenti {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex: none;
  margin-top: 48px;
}

.mood_nav_link {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--palette--green-extra-light);
  color: #000;
  text-align: left;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 30px;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 1;
  transition: all .2s;
  display: flex;
}

.mood_nav_link.w--current {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--palette--pale-turquoise);
  padding-right: 14px;
}

.cta_pretext {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 1.2em;
}

.list_icon-2 {
  opacity: .55;
  width: 24px;
  height: 24px;
}

.apt-img {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: minmax(auto, 800px);
  grid-template-columns: 1fr 50px;
  grid-auto-columns: 1fr;
  align-self: stretch;
  width: 100%;
  height: 100%;
  display: grid;
}

.apt-img.is-grid {
  grid-template-rows: minmax(auto, auto);
  grid-template-columns: 50px 1fr;
}

.apt-img.is-grid.is-reverse {
  grid-template-columns: 1fr 50px;
}

.image-wrap-2 {
  height: 15vw;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.image-wrap-2.is-grid {
  height: auto;
  min-height: auto;
}

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

.background-color_green-extra-light {
  background-color: var(--palette--green-extra-light);
}

.wrap-elenco-puntato {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: auto;
  margin-top: 20px;
  display: flex;
}

.wrap-elenco {
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.wrap-elenco.is-vertical {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
}

.voce-elenco {
  font-family: var(--font--serif);
  color: var(--palette--dark-cyan);
  font-size: 22px;
  text-decoration: none;
}

.voce-elenco:hover {
  text-decoration: none;
}

.punto {
  background-color: var(--palette--firebrick);
  border-radius: 2.5px;
  width: 5px;
  height: 5px;
  margin-left: 10px;
  margin-right: 10px;
}

.text-color-verde-medio {
  color: var(--palette--dark-cyan);
}

.button_text-3 {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  font-family: ivymode, sans-serif;
}

.heading-3-2 {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: lato, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 20px;
}

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

.heading-3-2.align-center.in-gallery {
  margin-top: 0;
}

.title-paragraph-2 {
  color: #333;
  letter-spacing: .5px;
  margin-bottom: 10px;
  font-family: ivymode, sans-serif;
  font-size: 27px;
  line-height: 35px;
}

.title-paragraph-2.allign-center {
  text-align: center;
}

.paragraph-2 {
  color: #727272;
  max-width: 750px;
  margin-bottom: 0;
  font-family: lato, sans-serif;
  line-height: 22px;
}

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

.paragraph-2.align-center.in-gallery {
  max-width: none;
  margin-bottom: 30px;
}

.button-2 {
  cursor: pointer;
  background-color: #008686;
  border-radius: 200px;
  min-width: 145px;
  padding: 9px 30px;
  text-decoration: none;
  transition: background-color .4s;
}

.button-2:hover {
  background-color: #55b9ac;
}

.button-2.is-link {
  text-decoration: none;
}

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

.container-4.is-gallery {
  margin-top: 4vw;
  margin-bottom: 4vw;
}

.container-bg-image {
  background-image: linear-gradient(#006d72ab, #006d72ab), url('../images/istockphoto-1391623288_mod.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 80vw;
  height: 45vw;
  min-height: 650px;
  display: flex;
}

.container-bg-image:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
  width: 100%;
  height: auto;
  min-height: auto;
}

.container-bg-image.padding:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
  padding: var(--dimensione--padding-medium);
}

.icon-service_wrapper {
  width: 100px;
}

.icon-service_wrapper.is-extra-large {
  width: 30vw;
  max-width: 420px;
}

.icon-service {
  object-fit: contain;
}

.logo_partners {
  max-width: 250px;
  margin-top: 20px;
}

.div-block-83 {
  margin-top: 20px;
}

.item-01 {
  opacity: .42;
  background-image: url('../images/tl_pat-item-parallax_04.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 10vw;
  min-width: 150px;
  height: 10vw;
  min-height: 150px;
  position: absolute;
  inset: auto auto 0% -50px;
}

.item-01.is-fix {
  z-index: 3;
  opacity: 1;
  background-image: url('../images/tl_pit-ic_01.svg');
  width: 50px;
  min-width: auto;
  height: 50px;
  min-height: auto;
  inset: auto 10px 10px auto;
}

.item-01.is-fix.is-02 {
  background-image: url('../images/tl_pat-item-parallax_15.svg');
  background-position: 20px 0;
  background-size: auto 90px;
  width: 100px;
  height: 70px;
  bottom: 0;
  right: 0;
}

.item-01.is-fix.is-03 {
  background-image: url('../images/tl_pat-item-parallax_09.svg');
  background-position: 20px 0;
  background-size: auto 90px;
  width: 100px;
  bottom: 0;
  right: 0;
}

.item-01.is-fix.is-04 {
  background-image: url('../images/tl_ic-arrow.svg');
  background-position: 20px 0;
  background-size: auto 120px;
  width: 100px;
  bottom: 0;
  right: 0;
}

.item-01.is-fix.is-01 {
  background-image: url('../images/tl_pat-item-parallax_11.svg');
  background-position: 20px 0;
  background-size: auto 90px;
  width: 100px;
  height: 70px;
  bottom: 0;
  right: 0;
}

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

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

.splide_embed {
  line-height: 1;
}

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

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

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

.slide-content.is-alingn-center {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.splide__arrow {
  background-color: var(--palette--dark-cyan);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  transition: background-color .2s;
}

.splide__arrow:hover {
  background-color: var(--palette--light-sea-green);
}

.splide__arrow.splide__arrow--prev {
  background-image: url('../images/arrow-left.svg');
  background-size: 10px;
}

.splide__arrow.splide__arrow--next {
  background-image: url('../images/arrow-right.svg');
  background-size: 10px;
}

.text-wrap {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0 25px 30px 30px;
  display: flex;
}

.text-wrap.is-card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  padding: 20px;
}

.title-service {
  color: var(--palette--dark-cyan);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 26px;
}

.title-service.serivizi {
  color: var(--palette--teal);
}

.title-service.is-abs {
  z-index: 3;
  font-family: var(--font--serif);
  color: var(--palette--white);
  text-transform: none;
  font-size: 29px;
  font-weight: 400;
  position: absolute;
  inset: 20px auto auto 20px;
}

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

.splide__track {
  width: 100%;
  margin-left: 5vw;
  margin-right: 5vw;
}

.image-wrap-card {
  height: 15vw;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.image-wrap-card.is-large {
  min-height: 400px;
}

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

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

.display-none-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: none;
}

.slider-10_component {
  width: 100%;
  overflow: hidden;
}

.splide__slide {
  flex: none;
  width: 20%;
  padding: 10px;
  list-style-type: none;
}

.icona-progetto {
  width: 50px;
  height: 50px;
  transition: all .675s;
}

.icona-progetto.circle {
  background-color: #f6ae0d;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
}

.icona-progetto.circle.bg-trasparent {
  background-color: #0000;
}

.sezione-2 {
  flex-direction: column;
  align-items: flex-start;
  width: 80vw;
  max-width: 1350px;
  padding-top: 75px;
  padding-bottom: 75px;
  display: flex;
}

.sezione-2.oriz {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.sezione-2.oriz.pad-top {
  padding-top: 100px;
}

.sezione-2.oriz.pad-top.relative {
  grid-column-gap: 50px;
  padding-top: 0;
  padding-bottom: 40px;
  position: relative;
}

.sezione-2.oriz.pad-top.relative.gap-50px {
  grid-column-gap: 50px;
  align-items: center;
  padding-bottom: 100px;
}

.box {
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.box.arrow {
  z-index: 2;
  flex: none;
  min-width: auto;
  min-height: auto;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.box.min-width {
  z-index: 2;
  min-width: 200px;
  min-height: auto;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.box.min-width.gap-20 {
  grid-row-gap: 10px;
  text-align: center;
  min-width: 200px;
  max-width: 200px;
}

.titoletto {
  color: #f29a15;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.titoletto.is-medium {
  font-size: 20px;
}

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

.img-contain.width-small {
  width: 40px;
  height: 40px;
}

.img-contain.width-fix {
  width: 30px;
  height: 20px;
}

.img-contain.width-fix:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
  width: 20px;
}

.image-wrapper_square {
  justify-content: center;
  align-items: center;
  max-width: 20%;
  display: flex;
}

.titles_component-static {
  aspect-ratio: 1;
  cursor: pointer;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  max-height: 300px;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 2px 20px 3px #0003;
}

.titles_component-static.is-small {
  min-width: 18vw;
  min-height: 18vw;
}

.icon_wrapper-medium {
  background-color: var(--palette--dark-cyan);
  border: 1px solid #fff;
  border-radius: 5200%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
}

.icon-mail-2 {
  width: 27px;
}

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

.poi_wrapper {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 60px;
  margin-bottom: 40px;
  display: flex;
}

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

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

.poi_icon {
  width: 25px;
}

.poi_distance {
  display: flex;
}

.gridhome_cell_text {
  max-width: 360px;
  font-size: 18px;
  line-height: 23px;
}

.gridhome_title {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.2;
}

.card_hover {
  z-index: 2;
  background-color: #13141b33;
  background-image: linear-gradient(#0000, #0000004d);
  position: absolute;
  inset: 0%;
}

.card_hover.is-60 {
  background-image: radial-gradient(circle, #0000008f, #0000);
  display: none;
}

.image-abs {
  width: 100%;
  height: 100%;
  transform: scale3d(1none, 1none, 1none);
  object-fit: cover;
  object-position: 50% 50%;
  transform-style: preserve-3d;
  transition: transform 1.5s cubic-bezier(.165, .84, .44, 1);
  position: absolute;
  inset: 0%;
}

.image-abs.position-left-80 {
  object-position: 80% 50%;
}

.mood-grid {
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.mood-grid.is-gridhome {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #f3f1ef;
  grid-template-rows: auto 140px auto auto;
  grid-template-columns: 1fr minmax(300px, 1fr) minmax(300px, 1fr) 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.square {
  background-color: var(--palette--firebrick);
  border-radius: 50px;
  width: 6px;
  height: 6px;
}

.gridhome_cell {
  background-color: var(--palette--green-extra-light);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 445px;
  padding: 5vw 40px;
  display: flex;
  position: relative;
}

.gridhome_cell.is-black {
  background-color: #13141b;
}

.nowrap-2 {
  white-space: nowrap;
}

.gridhome_cell_container {
  z-index: 3;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  flex: 1;
  align-items: flex-start;
  max-width: 270px;
  display: flex;
  position: relative;
}

.gridhome_cell_container.is-30-bot-mobile {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.gridhome_cell_container.is-big {
  grid-column-gap: 40px;
  grid-row-gap: 60px;
  color: #fff;
  text-align: center;
  justify-content: flex-end;
  align-items: center;
  max-width: none;
  padding-bottom: 5%;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 14px;
}

.text-page {
  font-family: var(--font--serif);
  color: var(--palette--pale-turquoise);
  letter-spacing: 1px;
  font-size: 14px;
}

.div-block-85 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.prezzo_cta__wrap {
  color: var(--palette--black-2);
  cursor: pointer;
  flex-direction: column;
  margin-top: 40px;
  text-decoration: none;
  display: flex;
  position: static;
  inset: auto 0% 0%;
}

.prezzo {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 2px solid var(--palette--firebrick);
  border-radius: 500px;
  flex-flow: row;
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  padding-right: 0;
  display: flex;
  overflow: hidden;
}

.txt-prezzo-apt {
  white-space: nowrap;
  margin-right: 0;
}

.txt-prezzo-apt.is-price {
  font-weight: 700;
}

.prezzo-bigger {
  font-size: 20px;
  line-height: 26px;
}

.card-value.is-large {
  width: 100%;
}

.card-02_image_wrapper {
  z-index: 1;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-02_component {
  flex: 1;
}

.card-02_component.is-sold {
  min-width: 200px;
  max-width: 400px;
  box-shadow: none;
}

.text-block-21 {
  color: #006d72;
  font-family: lato, sans-serif;
  font-size: 17px;
  line-height: 30px;
}

.text-block-20 {
  padding: 0;
  font-family: lato, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

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

.image-fit-cover-4.is-sold {
  filter: grayscale();
}

.card-02_button_icon {
  color: #4d5632;
  width: 35px;
  height: 35px;
  margin-top: 10px;
  margin-right: 10px;
  padding: 4px;
  position: absolute;
  inset: 0 0 auto auto;
}

.price {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #c22015;
  width: 100%;
  padding: 10px;
  font-size: 24px;
  line-height: 24px;
}

.price.is-sold-out {
  color: #c22015;
  background-color: #c2201500;
  border-top: 1px solid #c22015;
}

.price.is-promo {
  color: #c22015;
  letter-spacing: 0;
  text-transform: none;
  background-color: #c2201500;
  border-top: 1px #c22015;
  padding-top: 20px;
  padding-bottom: 0;
  font-size: 18px;
  font-weight: 400;
}

.image-containre-round {
  border-top-right-radius: 200px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-02_container {
  color: #2b2b2b;
  cursor: pointer;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.card-02_container.no-pointer {
  cursor: auto;
}

.card-02_text_wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.card-02_text_wrapper.is-sold {
  background-color: #dfdfdf;
}

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

.card-02_image_hover.is-card {
  background-image: linear-gradient(355deg, #000000ab, #0000 37%);
  border-top-right-radius: 200px;
}

.div-block-14 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  text-align: center;
  border-top: 1px solid #99d5cd;
  border-bottom: 1px solid #99d5cd;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 210px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-14.is-tile {
  border-top-width: 1px;
  border-top-color: var(--palette--light-sea-green);
  color: var(--palette--teal);
  flex-flow: row;
  padding-top: 10px;
}

.icona-tipologici {
  z-index: 3;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 20px;
  left: auto;
}

.icona-tipologici.quadri {
  background-image: url('../images/townlife_ic-tipologici_01.svg');
}

.icona-tipologici.trilo {
  background-image: url('../images/tl_ic-tipologia_01.svg');
}

.icona-tipologici.bilo {
  background-image: url('../images/tl_ic-tipologia_02.svg');
}

.card-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  height: 100%;
  margin-top: 40px;
  padding: 40px;
  display: flex;
}

.card-02_title {
  color: #333;
  margin: 10px 20px;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.3;
}

.text-card-tipologici {
  text-align: center;
  margin-bottom: 20px;
}

.background-color_gradient-grey {
  background-image: linear-gradient(358deg, var(--palette--grey-light), white);
}

.item-sub-logo {
  width: 50px;
  height: 50px;
}

.div-block-86 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-wrap-row {
  height: 30vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.item-pittogr-parte01 {
  filter: grayscale();
  background-image: url('../images/tl_pit-ic-green_01.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  flex: none;
  width: 30px;
  height: 30px;
}

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

.icon-wrap {
  grid-column-gap: 8px;
  border-top: .5px solid #848484;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.circle-item {
  width: auto;
  margin-bottom: 3px;
  position: relative;
}

.circle-item.is-tab {
  background-color: #f2be79;
  border-radius: 50px;
  width: 10px;
  height: 10px;
}

.icon-title {
  color: #23302b;
  font-size: 12px;
}

.text-card-subline {
  text-transform: uppercase;
  text-shadow: 0 1px 9px #0003;
}

.text-card-subline.is-accent {
  color: #d0f0e6;
}

.div-block-87 {
  background-color: var(--palette--green-light);
  width: 50px;
  height: 1px;
  margin-bottom: 20px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.label-arredo {
  background-color: var(--palette--pale-turquoise);
  max-width: 120px;
  color: var(--palette--firebrick);
  border-radius: 5px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -5px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
  font-weight: 700;
}

.text-bold {
  color: var(--palette--firebrick);
  font-weight: 400;
}

.text-span-47 {
  border-bottom: 1px solid var(--palette--firebrick);
  font-family: var(--font--san-serif);
  color: var(--palette--firebrick);
  text-transform: uppercase;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  display: block;
}

.item-line-vertical {
  background-color: var(--palette--firebrick);
  width: 1px;
}

.div-block-88 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 10px 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.paragraph-double {
  width: 100%;
  max-width: 100%;
  color: var(--palette--dim-grey);
  text-align: left;
  column-count: 2;
  column-gap: 2em;
  margin-top: 40px;
  font-size: 16px;
  line-height: 24px;
}

.text-didascalia {
  color: var(--palette--firebrick);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-left: 10px;
  font-size: 11px;
  font-weight: 500;
}

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

.div-block-89 {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  font-size: 13px;
  display: flex;
}

.ancora {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -50px;
}

.elem-grafico_angolo-altosx {
  background-color: #f2f2f2;
  border-top-left-radius: 50%;
}

.elem-grafico_angolo-altosx.img {
  background-color: #0000;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.elem-grafico_angolo-altosx.img.varie2 {
  background-image: url('../images/iStock-184615394_mod.webp');
}

.elem-grafico_angolo-altodx {
  background-color: #f2f2f2;
  border-top-right-radius: 50%;
}

.elem-grafico_angolo-altodx.img {
  background-color: #0000;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.elem-grafico_angolo-altodx.img.varie4 {
  background-image: url('../images/_MG_0595-1_mod.webp');
}

.elem-grafico_angoli-altosxbassosx {
  background-color: #f2f2f2;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.elem-grafico_angoli-altosxbassosx.img {
  background-color: #0000;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.elem-grafico_angoli-altosxbassosx.img.varie1 {
  background-image: url('../images/_MG_0606-1_mod_mod.webp');
}

.bookingwidget-fake {
  text-align: left;
  background-color: #ffffffb3;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 90%;
  max-width: 1100px;
  min-height: 90px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 60px;
  display: flex;
  position: relative;
}

.div-block-90 {
  background-image: url('../images/Townlife_datepicker-mockup_REV03.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 65px;
}

.label-arredo-2 {
  color: #c22015;
  background-color: #99d5cd;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 178px;
  margin-top: -5px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
  font-weight: 700;
}

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

.footer_text {
  text-align: center;
  font-size: .8em;
}

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

.container-5.is-technical {
  z-index: 1;
  padding: var(--dimensione--padding-large);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--palette--black-2);
  text-align: center;
  background-color: #fffc;
  border-radius: 5px 100px 5px 5px;
  align-items: center;
  position: relative;
}

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

.header_component.is-technical {
  background-color: var(--palette--light-sea-green);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.patter-technical {
  z-index: 0;
  opacity: .08;
  background-image: url('../images/TownLife_pattern01_bianco.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto 210%;
  width: 50vw;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.heading-technical {
  font-family: var(--font--serif);
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 50px;
}

.text-technical {
  font-size: 18px;
  line-height: 25px;
}

.text-technical.is-404 {
  font-family: var(--font--serif);
  color: var(--palette--teal);
  font-weight: 600;
}

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

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

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

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

.button-4.is-icon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--palette--teal);
  align-items: center;
  font-size: 20px;
  line-height: 30px;
  text-decoration: none;
  transition: color .35s;
  display: flex;
}

.button-4.is-icon:hover {
  color: var(--palette--black-2);
}

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

.button_icon {
  border: 1px solid var(--palette--teal);
  width: 30px;
  height: 30px;
  color: var(--palette--teal);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  padding: 5px;
  display: flex;
}

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

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

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

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

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

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

.form_link {
  color: var(--palette--black-2);
  text-align: left;
  font-style: normal;
  text-decoration: underline;
  transition: color .35s;
}

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

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

.dropdown_choice:hover {
  background-color: var(--palette--green-extra-light);
}

.dropdown_choice.w--current {
  background-color: var(--palette--light-sea-green);
  color: var(--palette--green-extra-light);
}

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

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

.dropdown_list {
  z-index: 1;
  font-weight: 400;
}

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

.form_field-2 {
  z-index: 2;
  width: 100%;
  color: var(--palette--teal);
  background-color: #ffffff4d;
  border: 1px solid #0000;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.form_field-2:active {
  color: var(--palette--teal);
}

.form_field-2:focus {
  border-color: transparent transparent var(--palette--dark-cyan);
  color: var(--palette--teal);
}

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

.form_field-2::placeholder {
  color: var(--palette--dim-grey);
}

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

.form_field-2.is-message {
  z-index: 0;
  min-height: 100px;
  position: relative;
}

.form_field-2.is-interest {
  z-index: 3;
}

.policy-flag {
  color: var(--palette--black-2);
  text-align: left;
  flex-direction: row;
  align-items: flex-start;
  font-style: normal;
  display: flex;
}

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

.form_field_wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.form_label {
  color: var(--palette--teal);
  margin-bottom: 0;
}

.form_wrapper {
  width: 100%;
}

.dropdown_close {
  width: 100%;
  color: var(--palette--dim-grey);
  background-color: #ffffff4d;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

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

.form_container {
  grid-row-gap: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.form_text {
  color: var(--palette--dim-grey);
  text-align: left;
}

.bookingwidget-01 {
  text-align: left;
  background-color: #ffffffb3;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  min-height: 90px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 60px;
  display: flex;
  position: relative;
}

.bookingwidget-01.is-fixed {
  background-color: #0000;
}

.bookingwidget-01_fixed {
  z-index: 8;
  border-top: 2px solid var(--palette--dark-cyan);
  background-color: var(--palette--green-extra-light);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.bookingwidget-01_close {
  display: none;
}

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

.button_component-6.is-bookingwidget-01 {
  display: none;
}

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

.gdpr h1 {
  font-family: var(--font--serif);
  color: var(--palette--dark-cyan);
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}

.gdpr h2 {
  font-family: var(--font--serif);
  color: var(--palette--dark-cyan);
  letter-spacing: 1px;
  margin-top: 30px;
  font-size: 21px;
  line-height: 31px;
}

.gdpr h3 {
  color: var(--palette--dark-cyan);
  margin-top: 40px;
  font-size: 18px;
  line-height: 28px;
}

.gdpr h4 {
  color: var(--palette--dark-cyan);
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 500;
}

.gdpr p {
  color: var(--palette--black-2);
  letter-spacing: .5px;
  line-height: 24px;
}

.gdpr a {
  color: var(--palette--dark-cyan);
  transition: color .35s;
}

.gdpr a:hover {
  color: var(--palette--firebrick);
}

.gdpr strong {
  color: var(--palette--black);
  font-weight: 700;
}

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

.list-numeri {
  list-style-type: decimal;
}

.link-icon {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 15px;
  width: auto;
  max-width: none;
  padding: 0 0 0 25px;
  font-family: lato, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.link-icon.is-posta {
  background-image: url('../images/townlife_icon-posta.svg');
  background-size: 15px 15px;
}

.link-icon.is-mail {
  background-image: url('../images/townlife_icon-mail1.svg');
}

.link-icon.is-website {
  background-image: url('../images/townlife_icon-website.svg');
}

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

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

.text-block-27:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
  color: var(--palette--white);
  font-weight: 600;
}

.notification-text {
  background-color: var(--palette--firebrick);
  color: #fff;
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: 5px;
  flex: none;
  width: 65px;
  padding: 2px 3px 2px 5px;
  font-size: 7px;
  line-height: 12px;
  position: absolute;
  inset: 20px auto auto;
}

.video-fallback {
  width: 100%;
  height: 100%;
  display: flex;
}

.bold-text {
  color: #333;
}

@media screen and (min-width: 1440px) {
  .section.is-technical {
    padding-top: 9vw;
  }

  .container-bg-image {
    background-image: linear-gradient(#008686ab, #008686ab), url('../images/istockphoto-1391623288_mod.webp');
  }

  .container-bg-image.padding {
    padding-right: 0;
  }

  .price {
    line-height: 24px;
  }

  .icona-tipologici.trilo {
    background-image: url('../images/townlife_ic-tipologici_01.svg');
  }

  .icona-tipologici.bilo {
    background-image: url('../images/townlife_ic-tipologici_03.svg');
  }

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

@media screen and (min-width: 1920px) {
  .section.is-technical {
    padding-top: 8vw;
  }

  .container-2.is-full-max-width {
    max-width: 1300px;
  }

  .txt__wrap {
    width: auto;
    min-width: auto;
    max-width: 900px;
  }

  .txt__wrap.width-auto {
    width: auto;
  }

  .section-2 {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .titles_component-2 {
    cursor: default;
  }

  .titles_component-2.is-page {
    cursor: pointer;
  }

  .section-3 {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .image_wrapper {
    position: relative;
  }
}

@media screen and (max-width: 991px) {
  .nav_link {
    font-size: 30px;
    line-height: 35px;
  }

  .nav_link.is-languages {
    font-size: 20px;
    line-height: 25px;
  }

  .nav_logo {
    z-index: 10;
  }

  .nav-list_container {
    background-color: #ffffffe6;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding-top: 140px;
    padding-bottom: 40px;
    display: flex;
    position: fixed;
    inset: 0% 0% 0% 100%;
    overflow: auto;
  }

  .hero-text_wrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
    left: auto;
  }

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

  .section.is-footer-relink {
    background-image: url('../images/tl_pat-item-parallax_09.svg');
    background-position: -70px 10%;
    background-size: 120px;
  }

  .section.is-technical {
    padding-top: 15vw;
    padding-bottom: 5vw;
  }

  .intro_wrapper.in-section {
    margin-bottom: 0;
    padding: 30px 40px;
  }

  .intro_wrapper.is-align-left {
    margin-bottom: 0;
  }

  .intro_wrapper.is-align-center {
    margin-bottom: 0;
    padding: 30px 40px;
  }

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

  .paragraph.small {
    max-width: none;
  }

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

  .paragraph.width {
    text-align: left;
    width: auto;
    max-width: none;
  }

  .container {
    padding: var(--dimensione--padding-large);
    flex-direction: column;
  }

  .container:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
    padding: var(--dimensione--padding-medium);
  }

  .container.is-contact {
    flex-flow: column-reverse;
    padding: 0;
  }

  .container.margin-bottom {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column-reverse;
    margin-bottom: 0;
  }

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

  .container.flex-vertical.gap {
    padding: 0;
  }

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

  .container.max-width.tablet-padding-0 {
    padding: 0;
  }

  .container.is-relink {
    padding-right: var(--dimensione--padding-medium);
    padding-left: var(--dimensione--padding-medium);
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
  }

  .container.is-flex-full {
    grid-column-gap: 7vw;
    grid-row-gap: 7vw;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
  }

  .container.is-tiles {
    padding: 0;
  }

  .container.tablet-tab-0 {
    flex-flow: wrap;
    padding: 0;
  }

  .container.tablet-tab-0:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .container.paddin-0-tablet {
    padding: 0;
  }

  .container.tiles-profili {
    width: 100%;
    padding: 0;
  }

  .container.is-technical {
    padding: 0;
  }

  .paragraph-section-container {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .paragraph-section-container.width-40 {
    width: 100%;
  }

  .paragraph-section-container.width-40.is-sticky {
    padding-left: 0;
    padding-right: 0;
    position: relative;
    top: auto;
  }

  .image-wrap-curve {
    width: 100%;
  }

  .text_wrapper, .text_wrapper.is-allign-center:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
    max-width: none;
  }

  .text_wrapper.is-allign-center.in-contact {
    width: 100%;
    max-width: none;
  }

  .text_wrapper.is-allign-center.is-white.in-gallery {
    width: 100%;
  }

  .sezione_img-griglia {
    width: 55vw;
    height: 55vw;
  }

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

  .grid-configurator_wrapper {
    max-width: 250px;
  }

  .margin-top20 {
    align-self: flex-start;
  }

  .form_field {
    line-height: 20px;
  }

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

  .slider03_container {
    flex: 1;
  }

  .slider-servizi_container {
    flex: none;
    margin-top: 0;
  }

  .menu {
    z-index: 12;
    filter: invert();
    cursor: pointer;
    flex: none;
    width: 50px;
    height: 50px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .lottie-animation {
    width: 50px;
    height: 50px;
  }

  .button_component.is-bookingwidget-01 {
    background-color: var(--palette--firebrick);
    min-width: 145px;
    color: var(--palette--white);
    text-transform: uppercase;
    border-radius: 200px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 9px 30px;
    text-decoration: none;
    transition: border-color .35s, font-variation-settings .35s;
    display: flex;
  }

  .button_component.is-bookingwidget-01:hover {
    background-color: var(--palette--maroon);
    font-weight: 700;
  }

  .img-vert {
    z-index: 1;
    position: relative;
  }

  .heading-2 {
    margin-bottom: 20px;
  }

  .sezione_img-griglia-3 {
    width: 55vw;
    height: 55vw;
  }

  .sezione_img-griglia-3.tipologie {
    width: 100%;
    min-height: 600px;
  }

  .sezione_img-forma-2 {
    width: 8vw;
    min-width: 50px;
    margin-right: 45px;
    display: none;
  }

  .form__wrap.footer {
    width: auto;
    padding-bottom: 25px;
  }

  .form__wrap.footer.width-1 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .sezione {
    flex-direction: column-reverse;
    padding-bottom: 0%;
  }

  .sezione.img-fs {
    height: 65vw;
    min-height: 500px;
  }

  .sezione.img-fs.city {
    height: auto;
    min-height: auto;
  }

  .sezione.img-fs.is-bg {
    height: 80vw;
    padding-bottom: 0%;
    padding-left: 0;
    padding-right: 0;
  }

  .sezione.align-stretch {
    flex-flow: column-reverse;
    padding-bottom: 0%;
  }

  .sezione.padding-top.align-dx {
    flex-flow: column;
    padding-top: 0%;
  }

  .contact-map_component {
    width: 90%;
    padding-right: 0;
  }

  .pattern-2.trasp {
    z-index: 1;
  }

  .pattern-2.trasp._10 {
    width: 40vw;
    height: 65vw;
    inset: 0% 0% 0% auto;
  }

  .sezione_text__container {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .sezione_text__container.bg-trasp {
    min-width: 400px;
    min-height: 425px;
    padding-left: 0;
  }

  .sezione_text__container.bg-trasp.valori {
    border-top-right-radius: 35%;
    min-width: 500px;
    height: auto;
    min-height: auto;
    max-height: none;
    margin-top: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
  }

  .sezione_text__container.width50.centred {
    width: 100%;
    padding-top: 3%;
    padding-bottom: 3%;
  }

  .contact-map_wrapper {
    grid-row-gap: 60px;
    flex-direction: column;
  }

  .checkbox_label-2 {
    text-align: left;
  }

  .text_wrapper-contatti {
    max-width: 600px;
  }

  .nav-link-wrap.hide {
    display: none;
  }

  .chiudi {
    z-index: 1000;
    color: #000;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding-bottom: 3px;
    font-size: 18px;
    display: none;
    position: absolute;
    top: 30px;
    right: 30px;
  }

  .contact_container {
    width: 100%;
  }

  .navbar_loghi__wrap {
    display: none;
    right: 8%;
  }

  .hero_logo-generali {
    background-image: url('../images/gre-bianco.svg');
  }

  .sezione_text__wrap {
    max-width: 265px;
  }

  .sezione_text__wrap.center-mobile {
    text-align: center;
    align-items: center;
    max-width: 400px;
  }

  .sezione_text__wrap.center-mobile.box-radius {
    text-align: left;
    align-items: flex-start;
  }

  .sezione_text__wrap.center-mobile.max-width {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .btn {
    margin-top: 25px;
  }

  .navlink__wrap {
    z-index: 10;
    background-color: var(--palette--white-smoke);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-image: linear-gradient(#f2f2f280, #f2f2f280), url('../images/TownLife_pattern01_bianco.svg');
    background-position: 0 0, 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, auto 210%;
    flex-direction: column;
    flex: none;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    padding-top: 85px;
    padding-bottom: 30px;
    position: fixed;
    inset: 0% 0% 0% 100%;
    overflow: auto;
  }

  .navlink__wrap.z11 {
    z-index: 11;
  }

  .navlink_container {
    z-index: 5;
    color: var(--palette--black-2);
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 1vw;
    transition: color .35s;
    display: flex;
  }

  .navlink_container:hover {
    color: var(--palette--firebrick);
  }

  .navlink_container.w--current {
    color: #c22015;
  }

  .navlink_container.margin-auto-top {
    margin-top: auto;
  }

  .navlink_container.margin-auto-bottom {
    margin-bottom: auto;
  }

  .navlink {
    margin-top: 2vw;
    margin-bottom: 1vw;
    font-size: 2rem;
    line-height: 40px;
  }

  .navlink_dot {
    width: 10px;
    height: 10px;
  }

  .stondamento.mobile-sx-alto {
    border-top-left-radius: 10vw;
    border-bottom-left-radius: 0;
  }

  .stondamento.mobile-sx-alto.blu-bg {
    background-color: #008686;
  }

  .sezione_img-vert {
    min-width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .sezione_img-vert.h-900 {
    flex-flow: column-reverse;
    align-items: center;
    height: 900px;
    padding-top: 10%;
    display: flex;
  }

  .stondamento__wrap {
    width: 50vw;
    height: 75%;
    bottom: 0;
  }

  .stondamento__wrap.mobile-sx-alto {
    background-color: #f2f2f2;
    display: flex;
    inset: 0% auto auto 0%;
  }

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

  .tabs-menu {
    margin-left: 10px;
    margin-right: 10px;
  }

  .tab-link.borders {
    width: 200px;
  }

  .div-block-21 {
    justify-content: center;
    align-items: flex-end;
  }

  .sezione_icone-griglia {
    width: 100%;
  }

  .sezione_icone-griglia.is-sticky {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    width: 100%;
    padding-right: 0;
  }

  .div-block-22:where(.w-variant-b00834e4-4a05-0b6e-bc90-e53bf0f63f3e) {
    min-width: 150px;
  }

  .div-block-23 {
    margin-right: 0;
  }

  .scroll-gif {
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    top: auto;
    left: 0%;
    right: 0%;
  }

  .sezione-quote.dark-green, .sezione-quote.is-quote {
    padding-left: 40px;
    padding-right: 40px;
  }

  .logo_container {
    align-items: center;
  }

  .footer {
    flex-direction: column;
  }

  .footer_link__wrap {
    justify-content: center;
  }

  .footer_link_divisorio.tab-hide {
    display: none;
  }

  .slider03_container-2 {
    flex: 1;
  }

  .slider-servizi_container-2 {
    flex: none;
    margin-top: 0;
  }

  .text-quote_small {
    width: auto;
    max-width: 600px;
    font-size: 26px;
    line-height: 42px;
  }

  .text-block-17 {
    text-align: left;
  }

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

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

  .text-block-18 {
    text-align: left;
  }

  .header-slide_txt {
    max-width: 500px;
    bottom: 20vh;
  }

  .subtitle-m.in-slider {
    font-size: 10px;
    line-height: 14px;
  }

  .scroll-icon {
    color: #fff;
  }

  .title-s.is-hero {
    font-size: 20px;
    line-height: 30px;
  }

  .header-slider_wrapper {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .map-lightbox1 {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
  }

  .div-block-9 {
    margin-bottom: 20px;
  }

  .contact_link.rosso.tablet__show {
    display: flex;
  }

  .infopoint-map_wrapper {
    align-items: center;
  }

  .map-lightbox {
    display: flex;
  }

  .map_wrapper {
    height: 350px;
    overflow: hidden;
  }

  .titles_component {
    width: 100%;
    min-width: auto;
    height: 450px;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .text-block-11 {
    font-size: 40px;
  }

  .titles-logo_div {
    top: 30px;
  }

  .div-block-72 {
    grid-column-gap: 20%;
    grid-row-gap: 20%;
  }

  .text-paragraph.in-title {
    text-align: center;
    max-width: 75%;
  }

  .card_flex.is-full, .card_flex.is-profili {
    width: 100%;
    margin-right: 0;
    padding-left: 0;
  }

  .card_flex.is-valori {
    grid-column-gap: 1vw;
    grid-row-gap: 1vw;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    margin-right: 0;
    padding-left: 0;
    display: grid;
  }

  .card_flex.is-profili-footer {
    grid-column-gap: 8px;
    grid-row-gap: 30px;
    flex-flow: wrap;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .image-section_container.is-50 {
    width: 100%;
  }

  .grid.small {
    height: auto;
    min-height: auto;
    max-height: 600px;
  }

  .mask {
    width: 100%;
  }

  .slider_hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heading-medium-var {
    font-size: 30px;
    font-weight: 400;
  }

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

  .heading-medium-var.is-small {
    font-size: 26px;
  }

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

  .tablet_logo-wrapper {
    margin-bottom: 20px;
    display: flex;
  }

  .arrow_hero {
    bottom: 35%;
    right: 2%;
  }

  .arrow_hero.left {
    width: 26px;
    height: 50px;
    bottom: 50px;
    left: auto;
    right: 4vw;
  }

  .arrow_hero.right {
    width: 26px;
    height: 50px;
    bottom: 120px;
  }

  .dot_wrap {
    flex-direction: column;
    margin-right: 0;
    bottom: 40px;
    right: 40px;
  }

  .scroll-hero_wrapper {
    align-items: center;
    position: static;
    bottom: 40px;
  }

  .pattern_div {
    width: 150px;
    height: 150px;
  }

  .pattern_div.is-opt1, .pattern_div.is-opt3, .pattern_div.is-opt4 {
    top: -5vw;
  }

  .container-2.is-full-max-width {
    grid-row-gap: 10vw;
    flex-flow: column;
  }

  .titles_background-2 {
    justify-content: center;
  }

  .card-name {
    position: relative;
  }

  .div-block-78 {
    width: 80%;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .txt-l {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .txt__wrap {
    text-align: center;
    max-width: 700px;
  }

  .txt__wrap.is-20 {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .txt__wrap.is-20.pad-bot-50px {
    margin-bottom: 50px;
  }

  .section-2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-2.is-footer {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }

  .titles_component-2 {
    cursor: auto;
    width: 100%;
    min-width: auto;
    height: 450px;
    min-height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .titles_component-2.is-page {
    cursor: pointer;
    height: auto;
  }

  .heading-xs {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-left: 0;
  }

  .pattern_div_reverse {
    width: 150px;
    height: 150px;
  }

  .pattern_div_reverse.is-opt1, .pattern_div_reverse.is-opt2, .pattern_div_reverse.is-opt3, .pattern_div_reverse.is-opt4 {
    top: -5vw;
  }

  .container-3.is-masterplan-area {
    flex-flow: column-reverse;
  }

  .section-3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-3.masterplan-distretto-zoom {
    align-items: flex-start;
    height: 90vw;
    margin-top: 0;
  }

  .section-3.masterplan-amanities {
    align-items: flex-start;
  }

  .pointer_logo {
    bottom: 54.8vw;
    right: 45.3vw;
  }

  .image_wrapper.is-70 {
    width: 100%;
  }

  .image_wrapper.is-70.is-border {
    border-width: 20px;
  }

  .image_wrapper.is-50 {
    width: 100%;
  }

  .image_wrapper.is-50.is-border {
    border-width: 20px;
    width: 100%;
  }

  .poi_container {
    grid-column-gap: 5vw;
    grid-row-gap: 1vw;
    flex-flow: wrap;
    justify-content: center;
  }

  .poi-text {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-left: 0;
  }

  .section-4 {
    padding: 100px 40px;
  }

  .section-4.is-appartamenti {
    padding-top: var(--dimensione--padding-medium);
    padding-bottom: var(--dimensione--padding-medium);
    flex-flow: column;
  }

  .tablet_tipologia-mood_wrapper {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    margin-top: 40px;
    display: flex;
  }

  .text_container {
    max-width: none;
  }

  .text_container.is-appartamenti {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .text_container.is-appartamenti_wrapper {
    max-width: none;
  }

  .heading-medium-3 {
    max-width: 17em;
  }

  .sublist {
    grid-column-gap: 7vw;
    grid-row-gap: 7vw;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    display: flex;
  }

  .sublist.is-icon {
    grid-column-gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .sublist_item.is-icon {
    text-align: center;
    flex-flow: column;
  }

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

  .image_wrapper-2.is-grid.is-bilocali, .image_wrapper-2.is-grid.is-trilocali {
    opacity: 1;
    position: static;
  }

  .image_wrapper-2.is-grid.is-studio {
    position: static;
  }

  .image_wrapper-2.is-grid.is-duplex {
    opacity: 1;
    position: static;
  }

  .image_wrapper-2.is-sticky {
    max-width: 100%;
    display: none;
  }

  .list {
    align-self: flex-start;
  }

  .apt-img {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    height: 400px;
    margin-bottom: 35px;
    display: flex;
  }

  .wrap-elenco-puntato {
    align-items: center;
  }

  .paragraph-2.align-center {
    max-width: 500px;
  }

  .container-4 {
    flex-direction: column;
    padding: 30px;
  }

  .container-4.is-gallery {
    margin-bottom: 0;
    padding: 0;
  }

  .container-bg-image {
    width: 100%;
    height: 500px;
  }

  .container-bg-image:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
    height: auto;
    min-height: auto;
    padding-top: var(--dimensione--padding-large);
    padding-bottom: var(--dimensione--padding-large);
  }

  .container-bg-image.padding {
    height: auto;
    min-height: auto;
    padding: 20px;
  }

  .icon-service_wrapper.is-extra-large {
    min-width: 250px;
  }

  .item-01 {
    background-position: 0 100%;
    background-size: contain;
  }

  .text-wrap {
    height: 150px;
  }

  .text-wrap.is-card {
    justify-content: flex-start;
    align-items: center;
  }

  .text-wrap.is-card.background-color_grey {
    height: auto;
    padding: 40px;
  }

  .splide__list {
    padding-left: 0;
  }

  .splide__slide {
    flex: none;
    width: 50%;
  }

  .sezione-2.oriz {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 35px;
  }

  .sezione-2.oriz.pad-top.relative {
    grid-row-gap: 30px;
    padding-bottom: 0;
  }

  .box.arrow {
    display: none;
  }

  .img-contain.width-fix:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
    width: 20px;
  }

  .image-wrapper_square {
    max-width: 100%;
  }

  .poi_wrapper {
    grid-column-gap: 10vw;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .poi_line {
    max-width: 40%;
  }

  .gridhome_cell_text {
    font-size: 16px;
  }

  .gridhome_title {
    margin-top: 0;
    margin-bottom: 0;
  }

  .image-abs.position-left-80 {
    object-position: 0% 0%;
  }

  .mood-grid.is-gridhome {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 25% 25% 25% 25%;
    grid-auto-columns: auto;
  }

  .gridhome_cell {
    min-height: 400px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .gridhome_cell.is-black {
    min-height: 450px;
  }

  .gridhome_cell.is-black.is-bigger {
    display: none;
  }

  .gridhome_cell_container {
    justify-content: center;
  }

  .gridhome_cell_container.is-30-bot-mobile {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .gridhome_cell_container.is-big {
    grid-row-gap: 40px;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 0%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .prezzo_cta__wrap {
    position: static;
  }

  .prezzo {
    justify-content: space-between;
  }

  .card-value.is-large {
    flex-flow: column-reverse;
    display: flex;
  }

  .card-02_image_wrapper {
    flex: none;
  }

  .card-02_component {
    min-width: 260px;
  }

  .card-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
    overflow: auto;
  }

  .bookingwidget-fake {
    padding-left: 40px;
    padding-right: 40px;
  }

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

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

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

  .bookingwidget-01 {
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: none;
  }

  .bookingwidget-01_fixed {
    max-height: 100vh;
    display: flex;
    overflow: auto;
  }

  .bookingwidget-01_close {
    z-index: 1000;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 4px;
    display: none;
    position: absolute;
    top: 0;
    right: 0;
  }

  .button_component-6.is-bookingwidget-01 {
    margin-top: 24px;
    margin-bottom: 24px;
    display: flex;
  }

  .notification-text {
    width: auto;
    height: auto;
    margin-left: 5px;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: .9rem;
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .nav_logo {
    width: 180px;
    height: 80px;
    margin-right: 15px;
  }

  .button.is-red {
    margin-top: 40px;
  }

  .hero_component {
    padding-bottom: 60px;
  }

  .hero_component.is-page {
    min-height: 800px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-1 {
    line-height: 60px;
  }

  .datepicker_element {
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px;
  }

  .section.is-footer-relink {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .section.is-technical {
    padding-top: 130px;
  }

  .title-paragraph, .title-paragraph.allign-center.is-white.in-contact {
    font-size: 30px;
    line-height: 40px;
  }

  .title-paragraph.align-left {
    text-align: left;
  }

  .paragraph.small {
    max-width: 150px;
  }

  .paragraph.width {
    width: auto;
  }

  .container.margin-bottom {
    padding-right: var(--dimensione--padding-medium);
    padding-left: var(--dimensione--padding-medium);
  }

  .container.flex-vertical.gap {
    grid-column-gap: var(--dimensione--padding-large);
    grid-row-gap: var(--dimensione--padding-large);
  }

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

  .container.tablet-tab-0:where(.w-variant-67edec23-c2eb-d12f-0716-8d5937011589) {
    margin-top: 20px;
  }

  .container.is-map {
    align-items: stretch;
  }

  .sezione_img-griglia {
    border-top-right-radius: 75%;
    width: 65vw;
    height: 65vw;
  }

  .form_field {
    margin-bottom: 15px;
  }

  .mask03, .slider03_container {
    max-width: 100%;
  }

  .slider-servizi_container {
    margin-top: 0;
  }

  .button_component.is-bookingwidget-01 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .img-vert {
    width: 75%;
    max-width: none;
    max-height: 650px;
  }

  .heading-2 {
    font-size: 34px;
    line-height: 40px;
  }

  .heading-3 {
    font-size: 30px;
    line-height: 38px;
  }

  .grid_img.bilo03, .grid_img.mono03 {
    border-top-right-radius: 0;
  }

  .sezione_img-griglia-3 {
    border-top-right-radius: 75%;
    width: 65vw;
    height: 65vw;
  }

  .sezione_img-griglia-3.tipologie {
    min-height: 500px;
  }

  .sezione_img-forma-2 {
    width: 10vw;
    margin-right: 0;
    display: none;
    position: absolute;
    bottom: 15px;
    left: 0;
  }

  .form__wrap {
    width: 75%;
    max-width: 400px;
    padding-top: 50px;
    padding-bottom: 0;
  }

  .form__wrap.footer {
    padding-top: 0;
  }

  .form__wrap.footer.width-1 {
    max-width: none;
  }

  .align-center {
    width: 90%;
  }

  .sezione {
    z-index: 0;
    flex-direction: column-reverse;
    align-items: center;
    padding: 65px 0%;
  }

  .sezione.flex-vertical {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-bottom: 0;
  }

  .sezione.img-fs {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    align-items: center;
    height: auto;
    min-height: auto;
    margin-bottom: 0%;
    padding-top: 0;
  }

  .sezione.img-fs.city {
    justify-content: flex-end;
    align-items: flex-start;
  }

  .sezione.img-fs.is-bg {
    height: auto;
    padding-bottom: var(--dimensione--padding-large);
    grid-column-gap: 10vw;
    grid-row-gap: 10vw;
    flex-flow: column-reverse;
    justify-content: flex-start;
    align-items: center;
  }

  .sezione.align-stretch {
    padding-top: 0;
  }

  .sezione.padding-top {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 35px;
  }

  .sezione.padding-top.align-dx {
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 0;
  }

  .contact-map_component {
    width: 80%;
  }

  .no-wrap.bold {
    font-weight: 700;
  }

  .pattern-2 {
    background-position: 100% 100%;
    background-size: auto 210%;
    width: 40vw;
    max-height: 600px;
    top: 0;
  }

  .sezione_text__container {
    width: 100%;
    height: auto;
    margin-top: 25px;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .sezione_text__container.bg-trasp {
    background-color: #fff;
    border-top-right-radius: 10%;
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-top: 0;
    padding-right: 0;
    top: -40px;
  }

  .sezione_text__container.bg-trasp.valori {
    background-color: var(--palette--white);
    border-top-right-radius: 0%;
    min-width: auto;
    height: auto;
    min-height: auto;
    max-height: none;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    top: auto;
  }

  .sezione_text__container.width50 {
    width: 90%;
    height: auto;
  }

  .sezione_text__container.width50.centred {
    margin-top: 0;
    padding-top: 0%;
  }

  .chiudi {
    z-index: 1000;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding-right: 0;
    display: none;
  }

  .navbar_loghi__wrap {
    justify-content: center;
    left: 0;
    right: 0%;
  }

  .hero_logo-generali {
    width: 120px;
    height: 30px;
    top: 20px;
    right: 20px;
  }

  .countdown-01_container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .countdown-01_number {
    font-size: 40px;
  }

  .sezione_img-fs {
    background-image: url('../images/Maggiolina_TownLife_VPinterior_Living03_export_rev02.jpg');
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 70vw;
    display: block;
  }

  .sezione_text__wrap {
    max-width: 275px;
  }

  .sezione_text__wrap.center-mobile {
    align-items: center;
    width: 85%;
    max-width: 400px;
  }

  .sezione_text__wrap.center-mobile.box-radius {
    width: 100%;
    max-width: none;
    padding-right: var(--dimensione--padding-large);
    padding-left: var(--dimensione--padding-large);
    text-align: left;
  }

  .btn {
    margin-top: 30px;
  }

  .navlink__wrap {
    padding-top: 80px;
  }

  .navlink_container {
    margin-bottom: 2vw;
  }

  .navlink {
    margin-top: 2vw;
    margin-bottom: 1vw;
    font-size: 25px;
    line-height: 30px;
  }

  .stondamento {
    background-color: #f2f2f2;
    background-image: none;
    border-top-left-radius: 10vw;
    border-bottom-right-radius: 0%;
  }

  .stondamento.mobile-sx-alto {
    background-color: #fff;
    border-top-left-radius: 10%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sezione_img-vert {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
  }

  .sezione_img-vert.h-900 {
    height: auto;
    margin-bottom: 0;
    padding-top: 0%;
  }

  .stondamento__wrap {
    background-color: #fff;
    width: 100%;
    height: 100%;
    inset: 0 auto auto 0;
  }

  .stondamento__wrap.mobile-sx-alto {
    z-index: -1;
    background-color: #f2f2f2;
    height: 50%;
    display: block;
    left: auto;
    right: 0;
  }

  .tabs {
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
  }

  .tabs-menu {
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    overflow: auto;
  }

  .tab-link.borders {
    width: auto;
  }

  .sezione_icone-griglia {
    border-top-right-radius: 75%;
  }

  .sezione_icone-griglia.is-sticky {
    grid-column-gap: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-22:where(.w-variant-b00834e4-4a05-0b6e-bc90-e53bf0f63f3e) {
    min-width: 150px;
  }

  .div-block-23 {
    margin-left: 20px;
    margin-right: 20px;
  }

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

  .pattern-dx {
    background-position: 0 100%;
    background-size: auto 190%;
    width: 40vw;
    top: 0;
  }

  .sezione-quote {
    z-index: 0;
    padding: 65px 0%;
  }

  .sezione-quote.dark-green, .sezione-quote.is-quote {
    z-index: 0;
  }

  .logo_container {
    align-items: center;
    margin-right: 0;
  }

  .logo_container.center {
    align-items: center;
  }

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

  .footer.z-index {
    z-index: 5;
    background-color: #fff;
  }

  .footer_link__wrap {
    grid-column-gap: 30px;
    grid-row-gap: 15px;
  }

  .footer_link_divisorio {
    display: none;
  }

  .footer_txt {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .footer_txt.size10 {
    margin-top: 25px;
    margin-bottom: 0;
  }

  .slider03_container-2 {
    max-width: 100%;
  }

  .slider-servizi_container-2 {
    margin-top: 0;
  }

  .text-quote_small {
    width: 90%;
    font-size: 21px;
    line-height: 35px;
  }

  .heading-2-copy {
    font-size: 16px;
    line-height: 26px;
  }

  .header-slide_txt {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    left: auto;
  }

  .header-arrow_right {
    inset: auto 0% 9.7vh 110px;
  }

  .header-arrow_left {
    inset: auto 110px 9.7vh 0%;
  }

  .subtitle-m.in-slider {
    align-self: center;
  }

  .title-s {
    font-size: 20px;
    line-height: 30px;
  }

  .title-s.is-hero {
    font-size: 18px;
    line-height: 28px;
  }

  .link-block-2 {
    align-self: center;
  }

  .header_mask {
    inset: 0;
  }

  .text-block-19 {
    display: none;
  }

  .header-slider_nav {
    inset: auto 0% 10vh;
  }

  .contact_link {
    font-size: 16px;
    line-height: 18px;
  }

  .titles-logo {
    height: 60px;
  }

  .titles_component {
    width: 100%;
    height: 390px;
  }

  .text-block-11 {
    font-size: 30px;
  }

  .text-item {
    font-size: 14px;
    line-height: 18px;
  }

  .text-san-serif {
    font-size: 30px;
  }

  .div-block-72 {
    grid-column-gap: 15%;
    grid-row-gap: 15%;
    padding-bottom: 60px;
  }

  .text-paragraph.in-title {
    font-size: 25px;
    line-height: 30px;
  }

  .card_flex.is-full.is-top {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .card_flex.is-profili {
    flex-flow: column;
    max-width: 360px;
  }

  .card_flex.is-valori {
    grid-column-gap: 8vw;
    grid-row-gap: 8vw;
    flex-flow: column;
    display: flex;
  }

  .card_flex.is-profili-footer {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

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

  .grid.small {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    height: 110vw;
  }

  .grid_img_wrap.is-curve-tr {
    border-top-right-radius: 140px;
    min-height: 280px;
  }

  .slider_hero {
    height: auto;
    min-height: 600px;
  }

  .heading-medium-var {
    font-size: 28px;
  }

  .heading-medium-var.is-animation {
    font-size: 35px;
  }

  .arrow_hero {
    opacity: .64;
    filter: invert();
    bottom: 35%;
  }

  .dot_wrap {
    flex-flow: row;
    width: auto;
    height: 20px;
    margin-bottom: 0;
    margin-right: auto;
    font-size: 12px;
    bottom: 120px;
    left: auto;
    right: auto;
  }

  .div-block-77, .arrow-from-bottom-to-top {
    width: 35px;
    height: 35px;
  }

  .sezione_image_container-croll {
    position: relative;
  }

  .div-block-78 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
  }

  .txt-l {
    font-size: 30px;
    line-height: 33px;
  }

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

  .section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .card-section {
    font-size: 30px;
  }

  .titles_component-2 {
    width: 100%;
    height: 350px;
  }

  .titles_component-2.is-page {
    border-width: 15px;
    min-height: 200px;
  }

  .heading-xs {
    margin-bottom: 20px;
  }

  .map-number {
    width: 22px;
    height: 22px;
  }

  .poi-number {
    font-size: 10px;
    font-weight: 300;
  }

  .section-3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-3.masterplan-distretto-zoom {
    height: 120vw;
    min-height: 400px;
  }

  .section-3.masterplan-amanities {
    min-width: auto;
    min-height: auto;
  }

  .pointer_logo {
    bottom: 70vw;
    right: 35vw;
  }

  .image_wrapper.is-50.is-border {
    height: auto;
    padding: 20px;
  }

  .heading-medium-3 {
    font-size: 2.1em;
  }

  .apt-img {
    height: 30vh;
    min-height: 300px;
    max-height: 400px;
  }

  .wrap-elenco-puntato {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    margin-top: 40px;
  }

  .wrap-elenco-puntato.tipologie {
    flex-flow: wrap;
  }

  .voce-elenco {
    white-space: nowrap;
  }

  .text-wrap {
    height: 120px;
  }

  .text-wrap.is-card {
    height: 100%;
    padding: 15px;
  }

  .splide__slide {
    width: 50%;
  }

  .sezione-2.oriz {
    padding-bottom: 0;
  }

  .box.tab-rotate {
    display: none;
  }

  .titoletto {
    font-size: 13px;
    line-height: 18px;
  }

  .titles_component-static {
    width: 100%;
    max-width: none;
  }

  .poi_wrapper {
    grid-column-gap: 10vw;
    grid-row-gap: 10px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 40px;
    margin-bottom: 20px;
    display: grid;
  }

  .poi_line {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    display: flex;
  }

  .poi_name {
    width: 121px;
  }

  .gridhome_cell_text {
    font-size: 14px;
    line-height: 20px;
  }

  .gridhome_title {
    font-size: 20px;
    line-height: 1.1;
  }

  .card_hover {
    background-color: #13141b66;
  }

  .mood-grid.is-gridhome {
    grid-template-rows: auto auto auto auto auto auto auto auto;
    height: auto;
  }

  .gridhome_cell {
    min-height: 300px;
  }

  .gridhome_cell.is-black {
    min-height: 400px;
  }

  .gridhome_cell_container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    max-width: none;
  }

  .prezzo {
    padding-right: 0;
  }

  .txt-prezzo-apt {
    text-align: center;
    white-space: nowrap;
    margin-top: 9px;
    margin-bottom: 9px;
  }

  .card-02_component {
    width: auto;
  }

  .text-block-20 {
    padding: 5px 10px;
    font-size: 22px;
  }

  .price {
    font-size: 20px;
  }

  .card-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: row;
    padding: 20px;
  }

  .flex-icon {
    grid-column-gap: 20px;
  }

  .circle-item {
    margin-bottom: 0;
  }

  .paragraph-double {
    column-count: 1;
  }

  .div-block-89 {
    line-height: 10px;
  }

  .bookingwidget-fake {
    padding: 20px;
  }

  .header_component.is-technical {
    padding-left: 40px;
    padding-right: 40px;
  }

  .heading-technical {
    font-size: 30px;
    line-height: 40px;
  }

  .text-technical {
    font-size: 16px;
    line-height: 22px;
  }

  .button-4.is-icon {
    font-size: 18px;
    line-height: 25px;
  }

  .button_icon {
    width: 25px;
    height: 25px;
  }

  .form_container {
    grid-row-gap: 15px;
    display: flex;
  }

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

  .bookingwidget-01_close {
    justify-content: center;
    align-items: center;
  }

  .button_component-6.is-bookingwidget-01 {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .gdpr h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .gdpr h2 {
    font-size: 18px;
    line-height: 28px;
  }
}

@media screen and (max-width: 479px) {
  body {
    --font--san-serif: lato, sans-serif;
    --palette--dim-grey: #727272;
    --dimensione--margin-navbar-0: 0px;
    --dimensione--padding-large: 10vw;
    --palette--white: white;
    --palette--black-2: #333;
    --palette--black: black;
    --palette--firebrick: #c22015;
    --palette--dark-cyan: #008686;
    --palette--light-sea-green: #55b9ac;
    --palette--maroon: #83130c;
    --dimensione--padding-medium: 7vw;
    --palette--teal: #006d72;
    --palette--white-smoke: #f2f2f2;
    --palette--pale-turquoise: #99d5cd;
    --font--serif: ivymode, sans-serif;
    --palette--green-extra-light: #e4ecec;
    --palette--grey-light: #f1f1f1;
    --palette--green-light: #93cebc;
    --dimensione--margin-navbar: 30px;
  }

  .nav_logo {
    width: 160px;
  }

  .nav_logo:where(.w-variant-edacca7c-587b-dc1b-b068-3d12b95b27c8) {
    bottom: auto;
  }

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

  .hero_component.is-page {
    padding-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero_component.is-home {
    min-height: 550px;
  }

  .heading-1 {
    font-size: 30px;
    line-height: 40px;
  }

  .point-red {
    font-size: 28px;
    line-height: 55px;
  }

  .datepicker_element {
    padding: 10px;
  }

  .section {
    position: static;
  }

  .section.padding-top-bot.is-grey.padding-lateral, .section.padding-top-bot.background-color_green-extra-light.padding-lateral, .section.padding-top-bot.padding-lateral {
    padding-left: 0;
    padding-right: 0;
  }

  .section.padding-all {
    padding: 0;
  }

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

  .section.is-technical {
    padding-right: var(--dimensione--padding-medium);
    padding-left: var(--dimensione--padding-medium);
  }

  .intro_wrapper.in-section {
    padding-left: 20px;
  }

  .intro_wrapper.is-align-left {
    padding-top: var(--dimensione--padding-medium);
    padding-bottom: var(--dimensione--padding-medium);
  }

  .intro_wrapper.is-align-center {
    padding-left: 20px;
  }

  .title-paragraph {
    font-size: 26px;
    line-height: 36px;
  }

  .title-paragraph.allign-center.is-white.in-contact {
    max-width: 300px;
    font-size: 26px;
  }

  .title-paragraph.margin-40 {
    margin-bottom: 20px;
  }

  .title-paragraph.min270 {
    min-width: 270px;
  }

  .paragraph {
    font-size: 14px;
  }

  .paragraph.small, .paragraph.width {
    max-width: none;
  }

  .container.margin-bottom {
    padding-right: var(--dimensione--padding-medium);
    padding-left: var(--dimensione--padding-medium);
  }

  .container.margin-bottom._0desk {
    position: static;
  }

  .container.hero-btn_wrapper.align-top {
    padding-right: var(--dimensione--padding-medium);
    padding-left: var(--dimensione--padding-medium);
  }

  .container.flex-vertical.gap {
    padding-left: 0;
    padding-right: 0;
  }

  .container.is-vertical-left.padding-lateral, .container.tablet-tab-0 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .container.is-map {
    padding: var(--dimensione--padding-medium);
    position: static;
  }

  .subtitle-paragraph {
    margin-bottom: 30px;
  }

  .subtitle-paragraph.is-red {
    margin-bottom: 0;
  }

  .text_wrapper.is-allign-center {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sezione_img-griglia {
    border-top-right-radius: 70vw;
    width: 85vw;
    max-width: 400px;
    height: 85vw;
  }

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

  .slider-servizi {
    height: 450px;
  }

  .slide_txt__wrap {
    text-align: center;
    justify-content: center;
    padding-top: 0;
  }

  .slide_img__wrap {
    height: 65%;
  }

  .text-servizi {
    font-size: 18px;
    line-height: 24px;
  }

  .img-vert {
    width: 85%;
    max-width: 400px;
  }

  .grid_img.mono02, .grid_img.mono03, .grid_img.mono04 {
    display: none;
  }

  .sezione_img-griglia-3 {
    border-top-right-radius: 70vw;
    width: 85vw;
    max-width: 400px;
    height: 85vw;
  }

  .sezione_img-griglia-3.tipologie {
    border-top-right-radius: 0;
    grid-template-columns: 1.5fr;
    max-width: none;
    min-height: 300px;
    overflow: hidden;
  }

  .form__wrap.footer {
    padding-bottom: 65px;
  }

  .sezione, .sezione.padding-top {
    padding-bottom: 0;
  }

  .sezione.padding-top.align-dx {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .sezione_text__container {
    height: auto;
    margin-top: 0;
  }

  .sezione_text__container.bg-trasp {
    height: auto;
    min-height: auto;
    max-height: none;
    margin-bottom: 0;
    padding-top: 65px;
  }

  .sezione_text__container.bg-trasp.valori {
    max-width: none;
  }

  .sezione_text__container.width50.centred {
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .contact-map_wrapper {
    align-items: center;
  }

  .chiudi {
    display: none;
  }

  .background-video {
    min-height: 300px;
  }

  .contact_container {
    min-height: auto;
    padding: var(--dimensione--padding-medium);
  }

  .hero_logo-generali {
    width: 125px;
    height: 50px;
  }

  .countdown-01_container {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .countdown-01_number {
    font-size: 30px;
  }

  .sezione_text__wrap {
    align-items: center;
    max-width: 275px;
  }

  .sezione_text__wrap.center-mobile {
    width: 85%;
  }

  .sezione_text__wrap.center-mobile.box-radius {
    padding-right: var(--dimensione--padding-medium);
    padding-left: var(--dimensione--padding-medium);
  }

  .sezione_text__wrap.center-mobile.max-width {
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    width: auto;
    max-width: none;
  }

  .sezione_text__wrap.align-center-vertical {
    position: static;
  }

  .sezione_text__wrap.align-center-vertical.is-30pad-mobile {
    padding-left: 30px;
    padding-right: 30px;
  }

  .btn.radius {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-top: 0;
  }

  .btn.is-configura {
    text-align: center;
    border-radius: 0;
    width: 100%;
  }

  .navlink__wrap {
    padding-bottom: 0;
  }

  .navlink_container, .navlink_container.margin-auto-top {
    margin-bottom: 2vw;
  }

  .navlink {
    margin-top: 3vw;
    margin-bottom: 2vw;
  }

  .sezione_img-vert {
    margin-bottom: 0;
  }

  .sezione_img-vert.h-900 {
    height: 100%;
  }

  .stondamento__wrap {
    min-width: auto;
  }

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

  .div-block-19 {
    overflow: auto;
  }

  .icona-servizi {
    width: 35px;
    height: 35px;
  }

  .div-block-21 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .text-block-6 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .sezione_icone-griglia {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    border-top-right-radius: 70vw;
    grid-template-columns: 1fr 1fr;
    padding-right: 0;
  }

  .sezione_icone-griglia.is-sticky {
    grid-column-gap: 10px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    display: flex;
  }

  .logo_container {
    align-items: center;
    margin-bottom: 30px;
  }

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

  .sezione-vert.gray-bg {
    flex-direction: column;
    position: relative;
  }

  .footer_link__wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
  }

  .footer_txt {
    text-align: center;
  }

  .slide_txt__wrap-2 {
    text-align: center;
    justify-content: center;
    padding-top: 0;
  }

  .slide_img__wrap-2 {
    height: 65%;
  }

  .text-quote_small {
    margin-bottom: 0;
    padding: 0;
    font-size: 18px;
    line-height: 28px;
  }

  .flex-block-2 {
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
  }

  .heading-2-copy {
    text-align: center;
    font-size: 14px;
  }

  .text-block-18 {
    text-align: left;
  }

  .header-slide_txt {
    bottom: 15vh;
  }

  .header-slide_hover {
    background-image: linear-gradient(#0006, #fff0 30%), linear-gradient(0deg, #0009, #fff0 60%), linear-gradient(#0006, #0006);
  }

  .header-arrow_right, .header-arrow_left {
    bottom: 5.9vh;
  }

  .subtitle-m.in-slider {
    align-self: center;
    font-size: 10px;
  }

  .header-slider_nav {
    bottom: 6vh;
  }

  .div-block-9 {
    width: auto;
  }

  .contact_link {
    font-size: 14px;
  }

  .map_wrapper {
    width: 250px;
    min-width: 0;
    height: 250px;
  }

  .line_x {
    margin-bottom: -5px;
    margin-left: 0;
  }

  .titles-logo {
    height: 40px;
  }

  .titles_component {
    min-width: 250px;
    padding: 30px;
  }

  .titles_component.card-full {
    height: 350px;
  }

  .text-block-11 {
    font-size: 24px;
    line-height: 30px;
  }

  .div-block-49 {
    width: 230px;
  }

  .text-san-serif {
    font-size: 22px;
    line-height: 28px;
  }

  .div-block-72 {
    grid-column-gap: 20%;
    grid-row-gap: 20%;
  }

  .text-paragraph.in-title {
    max-width: 90%;
    font-size: 20px;
    line-height: 25px;
  }

  .image-wrap {
    width: 100%;
  }

  .card_flex.is-full {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    flex-flow: column;
  }

  .card_flex.is-full.is-top {
    justify-content: center;
    align-items: center;
  }

  .card_flex.is-profili {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    flex-flow: column;
  }

  .card_flex.is-valori, .card_flex.is-profili-footer {
    grid-column-gap: 5vw;
    grid-row-gap: 5vw;
    flex-flow: column;
    display: flex;
  }

  .grid.small {
    grid-template-rows: auto auto;
    height: auto;
    max-height: 400px;
  }

  .grid_img_wrap {
    min-height: 150px;
  }

  .grid_img_wrap.is-curve-tr {
    border-top-right-radius: 100px;
    min-height: 150px;
  }

  .item-brush01_wrap.z-index {
    bottom: -2%;
  }

  .div-block-68.align-center.text-align-center {
    padding-left: 45px;
    padding-right: 45px;
  }

  .slider_hero {
    flex: 1;
    min-height: 700px;
  }

  .heading-medium-var.is-animation {
    font-size: 25px;
  }

  .heading-medium-var.is-small {
    font-size: 20px;
  }

  .arrow_hero {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    inset: auto 20px 20px auto;
  }

  .arrow_hero.left {
    height: 40px;
    margin-right: 0;
    top: auto;
    bottom: 20vw;
    right: 18.4vw;
  }

  .arrow_hero.right {
    height: 40px;
    bottom: 20vw;
  }

  .dot_wrap {
    flex-flow: column;
    width: 20px;
    height: 150px;
    top: auto;
    bottom: auto;
    right: 20px;
  }

  .div-block-77, .arrow-from-bottom-to-top {
    width: 35px;
    height: 35px;
  }

  .pattern_div {
    display: none;
  }

  .txt__wrap {
    min-width: auto;
    max-width: 400px;
  }

  .section-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .titles_component-2 {
    min-width: 250px;
    padding: 30px;
  }

  .item-circle {
    width: 10px;
    height: 10px;
  }

  .pattern_div_reverse {
    display: none;
  }

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

  .hero_wrapper.align-center.text-align-center {
    padding-left: 45px;
    padding-right: 45px;
  }

  .section-3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-3.masterplan-amanities {
    min-width: auto;
    min-height: auto;
  }

  .pointer_logo {
    bottom: 71.3vw;
    right: 35.2vw;
  }

  .image_wrapper.is-50.is-border {
    padding: 10px;
    position: static;
  }

  .section-4 {
    padding: 100px 20px;
  }

  .tablet_tipologia-mood_wrapper {
    height: 30vh;
    min-height: auto;
  }

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

  .text_container.is-appartamenti_wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .list_item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .heading-medium-3 {
    max-width: 12em;
    font-size: 1.8rem;
  }

  .sublist {
    flex-flow: wrap;
    justify-content: flex-start;
  }

  .sublist.is-icon {
    grid-column-gap: 7vw;
    grid-row-gap: 7vw;
    grid-template-columns: auto auto;
    display: flex;
  }

  .heading-small-2 {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
    display: flex;
  }

  .sublist_item.is-icon {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .image_wrapper-2 {
    width: auto;
    height: 76vw;
  }

  .image_wrapper-2.is-grid.is-bilocali, .image_wrapper-2.is-grid.is-trilocali, .image_wrapper-2.is-grid.is-studio, .image_wrapper-2.is-grid.is-duplex {
    margin-left: 0;
    margin-right: 0;
  }

  .list.is-appartamenti {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
    margin-top: 20px;
  }

  .mood_nav_link {
    height: 30px;
  }

  .apt-img {
    height: 250px;
    min-height: auto;
    max-height: none;
  }

  .wrap-elenco-puntato {
    grid-column-gap: 40px;
    grid-row-gap: 0px;
    flex-flow: row;
    align-content: center;
    align-items: flex-start;
  }

  .wrap-elenco-puntato.tipologie {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    grid-auto-columns: 1fr;
    place-items: center start;
    display: grid;
  }

  .wrap-elenco {
    flex-direction: row-reverse;
  }

  .punto {
    display: block;
  }

  .text-wrap.is-card.background-color_grey {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-wrap-card.is-large {
    min-height: 200px;
  }

  .splide__slide {
    width: 100%;
  }

  .sezione-2 {
    width: 85vw;
    min-width: auto;
  }

  .sezione-2.oriz {
    padding-top: 0;
  }

  .titles_component-static {
    max-width: 200px;
    max-height: 200px;
    padding: 30px;
  }

  .poi_wrapper {
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .poi_line {
    max-width: none;
  }

  .poi_name {
    width: 130px;
  }

  .gridhome_title {
    margin-bottom: 0;
    line-height: 1.6;
  }

  .card_hover {
    background-color: #13141b4d;
    background-image: none;
  }

  .card_hover.is-60 {
    background-color: #13141b99;
  }

  .mood-grid.is-gridhome {
    grid-template-rows: auto auto auto auto auto auto auto auto auto;
  }

  .gridhome_cell {
    padding: 30px;
  }

  .gridhome_cell.mobile_display-none {
    display: none;
  }

  .gridhome_cell.is-black {
    padding: 0 30px;
  }

  .gridhome_cell.is-black.is-bigger {
    min-height: 500px;
  }

  .nowrap-2 {
    white-space: nowrap;
  }

  .gridhome_cell_container {
    grid-row-gap: 20px;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: none;
    font-size: 18px;
  }

  .gridhome_cell_container.is-30-bot-mobile {
    justify-content: center;
    padding-bottom: 30px;
  }

  .gridhome_cell_container.is-big {
    grid-row-gap: 40px;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .prezzo_cta__wrap {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .prezzo {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-style: solid;
    border-width: 1px;
    border-radius: 18px;
    flex-direction: column;
    width: 100%;
    min-width: 250px;
    margin-bottom: 0;
    padding: 0 0;
  }

  .txt-prezzo-apt {
    flex-direction: row;
    margin-bottom: 10px;
    margin-left: 1vw;
    margin-right: 1vw;
    display: block;
  }

  .card-02_component {
    min-width: 220px;
  }

  .card-02_component.is-sold {
    min-width: 190px;
  }

  .price.is-promo {
    font-size: 20px;
    line-height: 22px;
  }

  .div-block-14 {
    border-bottom-style: none;
  }

  .div-block-14.is-tile {
    border-bottom-style: none;
    padding-bottom: 25px;
  }

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

  .card-02_title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.7rem;
  }

  .div-block-86 {
    grid-template-columns: 2fr 1fr;
    display: block;
  }

  .image-wrap-row.mobile-hide {
    display: none;
  }

  .item-line-vertical {
    flex: none;
    height: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .div-block-88 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-89 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .container-5.is-technical {
    padding-right: var(--dimensione--padding-medium);
    padding-left: var(--dimensione--padding-medium);
    border-top-right-radius: 50px;
  }

  .header_component.is-technical {
    padding: 40px 20px;
  }

  .gdpr h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .gdpr h2 {
    font-size: 16px;
    line-height: 26px;
  }

  .gdpr h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .video-fallback {
    min-height: 300px;
  }
}

#w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b21-13fa9504, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b23-13fa9504, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b25-13fa9504, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b27-13fa9504 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9aa8-13fa9504 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9aad-13fa9504 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9aae-13fa9504 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ab3-13fa9504 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ab4-13fa9504 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ac0-13fa9504 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9add-13fa9504 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9adf-13fa9504, #w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ae0-13fa9504 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7da5f3c2-0aa8-869a-6623-faf622407a96-13fa9504 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_170dc6ed-59f3-7633-b02d-1e887085bd15-13fa9504 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_277823ce-1f03-6aef-7ed9-4eee2eaa5fed-13fa9504 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_3de3cf6d-5345-18bb-8028-4027cfb06f15-13fa9504 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-_28c712cb-87d5-19f3-8d4f-90c29c6e1b31-13fa9504 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_3c0a77c9-992e-a330-84b3-85d3f3f93562-13fa9504 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a9ac626-b622-260e-c051-c1a47f7fb008-13fa9504 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_9a9ac626-b622-260e-c051-c1a47f7fb00a-13fa9504, #w-node-_9a9ac626-b622-260e-c051-c1a47f7fb00b-13fa9504 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f460681b-13fa9504 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606820-13fa9504 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606821-13fa9504 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606826-13fa9504 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606827-13fa9504 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606833-13fa9504 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8d8def4c-a0a7-3ea8-8295-21bc82e7936c-13fa9504 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_8d8def4c-a0a7-3ea8-8295-21bc82e7936e-13fa9504, #w-node-_8d8def4c-a0a7-3ea8-8295-21bc82e7936f-13fa9504 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a60-13fa9504 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a65-13fa9504 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a66-13fa9504 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a6b-13fa9504 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a6c-13fa9504 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a78-13fa9504 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8cc32379-8641-9c96-8db8-2d913b94058d-13fa9504 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_8cc32379-8641-9c96-8db8-2d913b94058f-13fa9504, #w-node-_8cc32379-8641-9c96-8db8-2d913b940590-13fa9504 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_12726368-6815-21d6-d261-ed322d3a27ff-13fa9504 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2ee7994a-c238-353b-0fae-72a690ec8a74-13fa9504 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_30ea9ed8-9fd1-d818-74d4-cf77b50e8b0a-13fa9504 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_4c8ccd45-9008-0fe0-21aa-2472b2bf8e51-13fa9504 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_97d1fc26-41ac-f738-7897-0ac8535ee6e3-13fa9504 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_12e2535c-7eca-17cf-ee6b-22c761ef3ec7-13fa9504 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b21-f2faf8f7, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b23-f2faf8f7, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b25-f2faf8f7, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b27-f2faf8f7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a2f-f2faf8f7 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a31-f2faf8f7 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a33-f2faf8f7 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_0dfc38d7-b6ae-a79b-c3bc-f284be4f5c1b-f2faf8f7, #w-node-_0dfc38d7-b6ae-a79b-c3bc-f284be4f5c21-f2faf8f7, #w-node-_0dfc38d7-b6ae-a79b-c3bc-f284be4f5c25-f2faf8f7, #w-node-_0dfc38d7-b6ae-a79b-c3bc-f284be4f5c2b-f2faf8f7, #w-node-_0dfc38d7-b6ae-a79b-c3bc-f284be4f5c2f-f2faf8f7, #w-node-_0dfc38d7-b6ae-a79b-c3bc-f284be4f5c35-f2faf8f7, #w-node-_0dfc38d7-b6ae-a79b-c3bc-f284be4f5c39-f2faf8f7, #w-node-_0dfc38d7-b6ae-a79b-c3bc-f284be4f5c3f-f2faf8f7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_67707c66-fab2-732d-53a0-d3feb0a0bdf0-b0a0bdc5, #w-node-_67707c66-fab2-732d-53a0-d3feb0a0bdfc-b0a0bdc5, #w-node-_67707c66-fab2-732d-53a0-d3feb0a0be00-b0a0bdc5, #policyFlagsContainer.w-node-_67707c66-fab2-732d-53a0-d3feb0a0be03-b0a0bdc5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_67707c66-fab2-732d-53a0-d3feb0a0be06-b0a0bdc5 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_67707c66-fab2-732d-53a0-d3feb0a0be07-b0a0bdc5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee841116-2af4-9b7a-c3f8-c4ada896c98e-a896c98e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b21-5fe7039c, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b23-5fe7039c, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b25-5fe7039c, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b27-5fe7039c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a2f-5fe7039c {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a31-5fe7039c {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a33-5fe7039c {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9aa8-5fe7039c {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9aad-5fe7039c {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9aae-5fe7039c {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ab3-5fe7039c {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ab4-5fe7039c {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ac0-5fe7039c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9add-5fe7039c {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9adf-5fe7039c, #w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ae0-5fe7039c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7da5f3c2-0aa8-869a-6623-faf622407a96-5fe7039c {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_170dc6ed-59f3-7633-b02d-1e887085bd15-5fe7039c {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_277823ce-1f03-6aef-7ed9-4eee2eaa5fed-5fe7039c {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_3de3cf6d-5345-18bb-8028-4027cfb06f15-5fe7039c {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-_28c712cb-87d5-19f3-8d4f-90c29c6e1b31-5fe7039c {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_3c0a77c9-992e-a330-84b3-85d3f3f93562-5fe7039c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a9ac626-b622-260e-c051-c1a47f7fb008-5fe7039c {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_9a9ac626-b622-260e-c051-c1a47f7fb00a-5fe7039c, #w-node-_9a9ac626-b622-260e-c051-c1a47f7fb00b-5fe7039c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f460681b-5fe7039c {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606820-5fe7039c {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606821-5fe7039c {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606826-5fe7039c {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606827-5fe7039c {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606833-5fe7039c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8d8def4c-a0a7-3ea8-8295-21bc82e7936c-5fe7039c {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_8d8def4c-a0a7-3ea8-8295-21bc82e7936e-5fe7039c, #w-node-_8d8def4c-a0a7-3ea8-8295-21bc82e7936f-5fe7039c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a60-5fe7039c {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a65-5fe7039c {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a66-5fe7039c {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a6b-5fe7039c {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a6c-5fe7039c {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a78-5fe7039c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8cc32379-8641-9c96-8db8-2d913b94058d-5fe7039c {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_8cc32379-8641-9c96-8db8-2d913b94058f-5fe7039c, #w-node-_8cc32379-8641-9c96-8db8-2d913b940590-5fe7039c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ee7994a-c238-353b-0fae-72a690ec8a74-5fe7039c {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_30ea9ed8-9fd1-d818-74d4-cf77b50e8b0a-5fe7039c {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_4c8ccd45-9008-0fe0-21aa-2472b2bf8e51-5fe7039c {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_97d1fc26-41ac-f738-7897-0ac8535ee6e3-5fe7039c {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_12e2535c-7eca-17cf-ee6b-22c761ef3ec7-5fe7039c {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b21-677bf7b0, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b23-677bf7b0, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b25-677bf7b0, #w-node-a3db0d31-5deb-5a4a-7c0e-8be4e5f47b27-677bf7b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a2f-677bf7b0 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a31-677bf7b0 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a33-677bf7b0 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-b844aba5-2b0a-6f18-2c2c-a6146812b2dd-677bf7b0 {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ca-677bf7b0 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1cc-677bf7b0 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ce-677bf7b0 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9aa8-677bf7b0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9aad-677bf7b0 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9aae-677bf7b0 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ab3-677bf7b0 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ab4-677bf7b0 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ac0-677bf7b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9add-677bf7b0 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9adf-677bf7b0, #w-node-eb67f4e3-c84e-b8b7-7372-7a4cfbfb9ae0-677bf7b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7da5f3c2-0aa8-869a-6623-faf622407a96-677bf7b0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_170dc6ed-59f3-7633-b02d-1e887085bd15-677bf7b0 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_277823ce-1f03-6aef-7ed9-4eee2eaa5fed-677bf7b0 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_3de3cf6d-5345-18bb-8028-4027cfb06f15-677bf7b0 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-_28c712cb-87d5-19f3-8d4f-90c29c6e1b31-677bf7b0 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_3c0a77c9-992e-a330-84b3-85d3f3f93562-677bf7b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a9ac626-b622-260e-c051-c1a47f7fb008-677bf7b0 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_9a9ac626-b622-260e-c051-c1a47f7fb00a-677bf7b0, #w-node-_9a9ac626-b622-260e-c051-c1a47f7fb00b-677bf7b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f460681b-677bf7b0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606820-677bf7b0 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606821-677bf7b0 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606826-677bf7b0 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606827-677bf7b0 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_0748cfc2-a34b-a3da-91c0-2839f4606833-677bf7b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8d8def4c-a0a7-3ea8-8295-21bc82e7936c-677bf7b0 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_8d8def4c-a0a7-3ea8-8295-21bc82e7936e-677bf7b0, #w-node-_8d8def4c-a0a7-3ea8-8295-21bc82e7936f-677bf7b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a60-677bf7b0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a65-677bf7b0 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a66-677bf7b0 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a6b-677bf7b0 {
  grid-area: 1 / 4 / 2 / 5;
  justify-self: center;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a6c-677bf7b0 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_3937256d-d7d7-4b56-5efe-c87c51bf0a78-677bf7b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8cc32379-8641-9c96-8db8-2d913b94058d-677bf7b0 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_8cc32379-8641-9c96-8db8-2d913b94058f-677bf7b0, #w-node-_8cc32379-8641-9c96-8db8-2d913b940590-677bf7b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3c0697f0-db41-e0d6-f63d-ce1fffa2e9d0-677bf7b0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_3c0697f0-db41-e0d6-f63d-ce1fffa2e9d2-677bf7b0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-dc01a81e-df1a-447f-fd74-f6fe83ad7063-677bf7b0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-dc01a81e-df1a-447f-fd74-f6fe83ad7065-677bf7b0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-e2cad1f5-8269-9d77-4e26-ef7f490247d3-677bf7b0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-e2cad1f5-8269-9d77-4e26-ef7f490247d5-677bf7b0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-fc3e7a57-63aa-2b55-e23c-a010e075e20c-677bf7b0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-fc3e7a57-63aa-2b55-e23c-a010e075e20e-677bf7b0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_00ed4014-9e65-1645-84ba-223b6646c806-677bf7b0, #w-node-_00ed4014-9e65-1645-84ba-223b6646c809-677bf7b0, #w-node-_00ed4014-9e65-1645-84ba-223b6646c810-677bf7b0, #w-node-_00ed4014-9e65-1645-84ba-223b6646c813-677bf7b0, #w-node-_00ed4014-9e65-1645-84ba-223b6646c81a-677bf7b0, #w-node-_00ed4014-9e65-1645-84ba-223b6646c81d-677bf7b0, #w-node-_00ed4014-9e65-1645-84ba-223b6646c826-677bf7b0, #w-node-_00ed4014-9e65-1645-84ba-223b6646c829-677bf7b0, #w-node-_00ed4014-9e65-1645-84ba-223b6646c830-677bf7b0, #w-node-_00ed4014-9e65-1645-84ba-223b6646c833-677bf7b0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e95cd047-45a3-0e63-cd09-dc8f7694a264-b28f3226 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-e95cd047-45a3-0e63-cd09-dc8f7694a266-b28f3226 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-e95cd047-45a3-0e63-cd09-dc8f7694a268-b28f3226 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_36be5a89-473f-c83a-5305-03ac79086d02-b28f3226, #w-node-_36be5a89-473f-c83a-5305-03ac79086d08-b28f3226, #w-node-_36be5a89-473f-c83a-5305-03ac79086d0c-b28f3226, #w-node-_36be5a89-473f-c83a-5305-03ac79086d12-b28f3226, #w-node-_36be5a89-473f-c83a-5305-03ac79086d16-b28f3226, #w-node-_36be5a89-473f-c83a-5305-03ac79086d1c-b28f3226, #w-node-_36be5a89-473f-c83a-5305-03ac79086d20-b28f3226, #w-node-_36be5a89-473f-c83a-5305-03ac79086d26-b28f3226, #w-node-a60ab233-b02e-00cb-76c6-fb1e998cdaf5-998cdaf3, #w-node-a60ab233-b02e-00cb-76c6-fb1e998cdaf8-998cdaf3, #w-node-_0404037b-9aef-ed78-08df-201feaa35ec5-eaa35ec3, #w-node-_0404037b-9aef-ed78-08df-201feaa35ec8-eaa35ec3, #w-node-d940900d-83b6-448a-64b1-2eeda0872a67-a0872a65, #w-node-d940900d-83b6-448a-64b1-2eeda0872a6a-a0872a65, #w-node-c5c7f38c-4a7a-1c3c-5e5b-38c92600f98a-2600f988, #w-node-c5c7f38c-4a7a-1c3c-5e5b-38c92600f98d-2600f988, #w-node-_6194175d-8321-9733-88b4-d85ebb473244-bb473242, #w-node-_6194175d-8321-9733-88b4-d85ebb473247-bb473242, #w-node-af1db707-40c4-d910-10de-75723d5b4411-3d5b440f, #w-node-af1db707-40c4-d910-10de-75723d5b4414-3d5b440f, #w-node-_7d26cba7-f8b5-e9e8-9a9a-dbe71355bbc9-1355bbc7, #w-node-_7d26cba7-f8b5-e9e8-9a9a-dbe71355bbcc-1355bbc7, #w-node-_17884afa-0f52-6df0-cf65-c57ce300188a-e3001888, #w-node-_17884afa-0f52-6df0-cf65-c57ce300188d-e3001888, #w-node-_4ae4bbd7-c002-a309-b743-114600b0d2cb-00b0d2c9, #w-node-_4ae4bbd7-c002-a309-b743-114600b0d2ce-00b0d2c9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e0b699e9-272e-1b08-fdad-6edfe8066655-e8066427 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-e0b699e9-272e-1b08-fdad-6edfe8066657-e8066427 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-e0b699e9-272e-1b08-fdad-6edfe806665c-e8066427 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-e0b699e9-272e-1b08-fdad-6edfe806665e-e8066427 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-e0b699e9-272e-1b08-fdad-6edfe8066663-e8066427 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-e0b699e9-272e-1b08-fdad-6edfe8066665-e8066427 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-e0b699e9-272e-1b08-fdad-6edfe806666a-e8066427 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-e0b699e9-272e-1b08-fdad-6edfe806666c-e8066427 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_0c28047b-926a-d8b1-0b8c-e3b7627de8f9-8cc75b74 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_0c28047b-926a-d8b1-0b8c-e3b7627de8fb-8cc75b74 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_0c28047b-926a-d8b1-0b8c-e3b7627de8fd-8cc75b74 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-ec22c3fe-0ebf-235c-217c-a7afb6add405-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add406-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add408-8cc75b74, #w-node-fd680cab-f357-a265-4b31-7fb7abfa505f-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add40c-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add40e-8cc75b74, #w-node-_74fd5fb5-48d1-d4e2-a740-419ab434ebfa-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add412-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add414-8cc75b74, #w-node-_4beb1415-9314-3597-64c6-a5e1137fcee5-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add418-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add41a-8cc75b74, #w-node-_228c2dd3-359c-20ee-81f5-ee5676d831b2-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add41e-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add420-8cc75b74, #w-node-e8f5b3e2-6c02-f5c0-3193-714590409eb4-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add424-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add426-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add429-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add42a-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add42c-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add42f-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add430-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add432-8cc75b74, #w-node-_91e95871-10e7-f050-eb68-4bc4479de41e-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add436-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add438-8cc75b74, #w-node-_93a7aa6a-5d47-3e3f-fbeb-d3df15790154-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add43c-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add43e-8cc75b74, #w-node-_95b9a1e9-eefd-0191-1b85-f5f97276f901-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add442-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add444-8cc75b74, #w-node-dbd31c31-2ecb-1468-3b70-401441c49bb1-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add448-8cc75b74, #w-node-ec22c3fe-0ebf-235c-217c-a7afb6add44a-8cc75b74 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4ab99e40-3255-f9a6-15d2-3b88683a56dc-8cc75b74 {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4b9-8cc75b74 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4c5-8cc75b74, #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4ce-8cc75b74 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4d0-8cc75b74 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4d9-8cc75b74, #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4db-8cc75b74 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_75c8fc9e-9354-9997-e99f-f30b31e42b54-8cc75b74 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_790336b3-900e-0036-5573-a3a88fada76a-8cc75b74, #w-node-_925ad865-dfe4-ae73-8a63-fc044f872a1b-8cc75b74, #w-node-_1422931c-ce71-b249-72b4-80501f165358-92e16b4e, #w-node-_1422931c-ce71-b249-72b4-80501f165366-92e16b4e, #w-node-_1422931c-ce71-b249-72b4-80501f165374-92e16b4e, #w-node-_1422931c-ce71-b249-72b4-80501f165382-92e16b4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1422931c-ce71-b249-72b4-80501f1653ac-92e16b4e {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_1422931c-ce71-b249-72b4-80501f1653ae-92e16b4e {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_1422931c-ce71-b249-72b4-80501f1653b0-92e16b4e {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_850b6af8-600b-73c2-1d59-3278fe08a311-92e16b4e, #w-node-_5f912da7-3ab8-0264-8190-3cd59efc77b3-92e16b4e, #w-node-_5f912da7-3ab8-0264-8190-3cd59efc77b9-92e16b4e, #w-node-_5f912da7-3ab8-0264-8190-3cd59efc77a9-92e16b4e, #w-node-_5f912da7-3ab8-0264-8190-3cd59efc77af-92e16b4e, #w-node-a9e5d280-2610-08cd-b312-d74f001691a9-92e16b4e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b844aba5-2b0a-6f18-2c2c-a6146812b2dd-af66a3b7 {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ca-af66a3b7 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1cc-af66a3b7 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ce-af66a3b7 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ca-1019d26f {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1cc-1019d26f {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ce-1019d26f {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_0bbf9e43-1e16-cc1a-6102-17b1d2971be4-1019d26f, #w-node-_0bbf9e43-1e16-cc1a-6102-17b1d2971bea-1019d26f, #w-node-_0bbf9e43-1e16-cc1a-6102-17b1d2971bec-1019d26f, #w-node-_0bbf9e43-1e16-cc1a-6102-17b1d2971bf2-1019d26f, #w-node-_0bbf9e43-1e16-cc1a-6102-17b1d2971bf4-1019d26f, #w-node-_0bbf9e43-1e16-cc1a-6102-17b1d2971bfa-1019d26f, #w-node-_0bbf9e43-1e16-cc1a-6102-17b1d2971bfc-1019d26f, #w-node-_0bbf9e43-1e16-cc1a-6102-17b1d2971c02-1019d26f, #w-node-_888e67f0-fa71-b6dd-9694-778eeafbc884-eafbc882, #w-node-_888e67f0-fa71-b6dd-9694-778eeafbc887-eafbc882, #w-node-_0faf1edf-9b48-3a9d-fb44-a734dac7d83c-dac7d83a, #w-node-_0faf1edf-9b48-3a9d-fb44-a734dac7d83f-dac7d83a, #w-node-_4e18a539-2c2b-f267-198e-3f2d434bfad6-434bfad4, #w-node-_4e18a539-2c2b-f267-198e-3f2d434bfad9-434bfad4, #w-node-f8203997-cedf-1496-f23b-bfe366782f16-66782f14, #w-node-f8203997-cedf-1496-f23b-bfe366782f19-66782f14 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a2f-04679c61 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a31-04679c61 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a33-04679c61 {
  grid-area: 2 / 2 / 3 / 4;
}

@media screen and (min-width: 1440px) {
  #w-node-_5f73efdc-760e-a23f-2257-a938454c6d44-b0a0bdc5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_67707c66-fab2-732d-53a0-d3feb0a0be06-b0a0bdc5 {
    justify-self: start;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_67707c66-fab2-732d-53a0-d3feb0a0bdf0-b0a0bdc5, #w-node-_5f73efdc-760e-a23f-2257-a938454c6d44-b0a0bdc5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4b9-8cc75b74 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4c5-8cc75b74 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4ce-8cc75b74 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4d0-8cc75b74 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4d9-8cc75b74 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4db-8cc75b74 {
    grid-area: 3 / 3 / 4 / 5;
  }

  #w-node-_75c8fc9e-9354-9997-e99f-f30b31e42b54-8cc75b74 {
    grid-area: 6 / 1 / 7 / 5;
  }

  #w-node-_790336b3-900e-0036-5573-a3a88fada76a-8cc75b74 {
    grid-area: 5 / 1 / 6 / 3;
  }

  #w-node-_925ad865-dfe4-ae73-8a63-fc044f872a1b-8cc75b74 {
    grid-area: 5 / 3 / 6 / 5;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a2f-f2faf8f7 {
    grid-area: 2 / 1 / 2 / 3;
  }

  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a31-f2faf8f7 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a33-f2faf8f7 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-_67707c66-fab2-732d-53a0-d3feb0a0bdf0-b0a0bdc5, #w-node-_67707c66-fab2-732d-53a0-d3feb0a0bdfc-b0a0bdc5, #w-node-_67707c66-fab2-732d-53a0-d3feb0a0be00-b0a0bdc5, #policyFlagsContainer.w-node-_67707c66-fab2-732d-53a0-d3feb0a0be03-b0a0bdc5, #w-node-_67707c66-fab2-732d-53a0-d3feb0a0be06-b0a0bdc5 {
    grid-column: span 1 / span 1;
  }

  #w-node-fe8f3083-992d-b15f-0db5-21370e69cc2d-999da16c {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a2f-5fe7039c {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a31-5fe7039c {
    grid-area: 2 / 2 / 3 / 5;
  }

  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a33-5fe7039c {
    grid-area: 1 / 4 / 2 / 5;
  }

  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a2f-677bf7b0 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a31-677bf7b0 {
    grid-area: 2 / 2 / 3 / 5;
  }

  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a33-677bf7b0 {
    grid-area: 1 / 4 / 2 / 5;
  }

  #w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ca-677bf7b0 {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1cc-677bf7b0 {
    grid-area: 2 / 2 / 3 / 5;
  }

  #w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ce-677bf7b0 {
    grid-area: 1 / 4 / 2 / 5;
  }

  #w-node-e95cd047-45a3-0e63-cd09-dc8f7694a264-b28f3226 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-e95cd047-45a3-0e63-cd09-dc8f7694a266-b28f3226 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-e95cd047-45a3-0e63-cd09-dc8f7694a268-b28f3226 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-_0c28047b-926a-d8b1-0b8c-e3b7627de8f9-8cc75b74 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_0c28047b-926a-d8b1-0b8c-e3b7627de8fb-8cc75b74 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_0c28047b-926a-d8b1-0b8c-e3b7627de8fd-8cc75b74 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-_1422931c-ce71-b249-72b4-80501f1653ac-92e16b4e {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_1422931c-ce71-b249-72b4-80501f1653ae-92e16b4e {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_1422931c-ce71-b249-72b4-80501f1653b0-92e16b4e {
    grid-area: 2 / 4 / 3 / 5;
  }

  #w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ca-af66a3b7 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1cc-af66a3b7 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ce-af66a3b7 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ca-1019d26f {
    grid-area: 2 / 1 / 3 / 4;
  }

  #w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1cc-1019d26f {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ce-1019d26f {
    grid-area: 2 / 4 / 3 / 5;
  }

  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a2f-04679c61 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a31-04679c61 {
    grid-area: 1 / 3 / 2 / 5;
  }

  #w-node-e1f921a6-fe0d-3303-0384-f6ae74df0a33-04679c61 {
    grid-area: 2 / 1 / 3 / 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_12726368-6815-21d6-d261-ed322d3a27ff-13fa9504, #w-node-_2ee7994a-c238-353b-0fae-72a690ec8a74-13fa9504, #w-node-_30ea9ed8-9fd1-d818-74d4-cf77b50e8b0a-13fa9504, #w-node-_4c8ccd45-9008-0fe0-21aa-2472b2bf8e51-13fa9504, #w-node-_97d1fc26-41ac-f738-7897-0ac8535ee6e3-13fa9504, #w-node-_12e2535c-7eca-17cf-ee6b-22c761ef3ec7-13fa9504, #w-node-ee841116-2af4-9b7a-c3f8-c4ada896c98e-a896c98e, #w-node-_2ee7994a-c238-353b-0fae-72a690ec8a74-5fe7039c, #w-node-_30ea9ed8-9fd1-d818-74d4-cf77b50e8b0a-5fe7039c, #w-node-_4c8ccd45-9008-0fe0-21aa-2472b2bf8e51-5fe7039c, #w-node-_97d1fc26-41ac-f738-7897-0ac8535ee6e3-5fe7039c, #w-node-_12e2535c-7eca-17cf-ee6b-22c761ef3ec7-5fe7039c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4c5-8cc75b74 {
    grid-column-end: 5;
  }

  #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4ce-8cc75b74 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4d0-8cc75b74 {
    grid-area: 8 / 1 / 9 / 5;
  }

  #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4d9-8cc75b74 {
    grid-row: 5 / 6;
    grid-column-end: 5;
  }

  #w-node-fddce3b9-cb75-99e7-ae92-0a5dcf6ee4db-8cc75b74 {
    grid-row: 4 / 5;
    grid-column-start: 1;
  }

  #w-node-_75c8fc9e-9354-9997-e99f-f30b31e42b54-8cc75b74 {
    grid-row: 5 / 6;
  }

  #w-node-_790336b3-900e-0036-5573-a3a88fada76a-8cc75b74 {
    grid-row: 6 / 7;
    grid-column-end: 5;
  }

  #w-node-_925ad865-dfe4-ae73-8a63-fc044f872a1b-8cc75b74 {
    grid-row: 3 / 4;
    grid-column-start: 1;
  }

  #w-node-_1422931c-ce71-b249-72b4-80501f1653ac-92e16b4e {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_1422931c-ce71-b249-72b4-80501f1653b0-92e16b4e {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-_850b6af8-600b-73c2-1d59-3278fe08a312-92e16b4e, #w-node-a9e5d280-2610-08cd-b312-d74f001691aa-92e16b4e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ca-1019d26f {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_0b33dcd5-5591-ad72-ec4b-01ba9ef1c1ce-1019d26f {
    grid-area: 2 / 3 / 3 / 5;
  }
}


