:root {
  --blue: #3f5f72;
  --slate-grey: #9db3bf;
  --black: black;
  --old-lace: #ced0cd;
  --white: white;
  --dark: #253238;
  --cta: #70161e;
}

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

body {
  color: #333;
  font-family: brandon-grotesque, sans-serif;
  font-size: 14px;
}

h1 {
  color: var(--blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 500;
  line-height: 44px;
}

h2 {
  color: var(--blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: var(--blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

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

p {
  color: var(--slate-grey);
  margin-bottom: 10px;
}

a {
  color: #a58d72;
  text-decoration: underline;
}

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

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

li {
  color: var(--slate-grey);
}

label {
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}

strong {
  font-weight: 500;
}

.todelete {
  z-index: 14;
  text-align: left;
  background-color: #ffe837;
  flex-direction: column;
  margin-bottom: 0;
  padding: 40px 15%;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  display: none;
  position: relative;
}

.todelete strong {
  font-weight: 800;
}

.form_component {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer_component {
  z-index: 5;
  grid-row-gap: 10px;
  background-color: var(--blue);
  flex-direction: column;
  align-items: center;
  padding: 40px 5vw;
  display: flex;
  position: relative;
}

.returnbtn {
  z-index: 1000;
  background-color: #fff;
  background-image: url('../images/left-arrow.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  border: 2px solid #000;
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  inset: 10px auto auto 10px;
}

.contact_component {
  z-index: 5;
  background-color: var(--blue);
  width: 100%;
  padding-top: 5vw;
  padding-bottom: 5vw;
  position: relative;
}

.button {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #a39bff;
  border: 1px solid #a39bff;
  border-radius: 5px;
  padding: 10px 20px;
  text-decoration: none;
  transition: color .35s cubic-bezier(.25, .46, .45, .94), border-color .35s cubic-bezier(.25, .46, .45, .94), background-color .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.button:hover {
  background-color: #5b4dff;
  border-color: #5b4dff;
}

.button.is-negative {
  color: #a39bff;
  background-color: #fff;
  border-color: #fff;
}

.button.is-negative:hover {
  color: #fff;
  background-color: #5b4dff;
  border-color: #5b4dff;
}

.button.is-secondary {
  color: #a39bff;
  background-color: #5b4cff00;
}

.button.is-secondary:hover {
  color: #fff;
  background-color: #5b4dff;
}

.button.is-secondary.is-negative {
  color: #fff;
}

.button.is-text {
  border-style: none none solid;
  border-bottom-color: var(--black);
  color: var(--black);
  background-color: #0000;
  border-radius: 0;
  padding: 0;
}

.button.is-text:hover {
  color: #a39bff;
  border-bottom-color: #a39bff;
}

.button.is-text.is-negative {
  color: #fff;
  border-bottom-color: #fff;
}

.button.is-text.is-negative:hover {
  color: #a39bff;
  background-color: #0000;
  border-bottom-color: #a39bff;
}

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

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

.page_wrapper {
  position: relative;
}

.page_wrapper.informative {
  background-color: #9db3bf66;
  padding-top: 180px;
}

.page_wrapper.margin-top {
  margin-top: 79px;
}

.page_wrapper.is-contatti {
  background-color: var(--blue);
  min-height: 100vh;
  padding-top: 80px;
}

.container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.container.no-marging-dx {
  align-items: flex-start;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.container.no-marging-dx.reverse {
  flex-direction: row-reverse;
}

.container.no-marging-dx.reverse.vertical-centred {
  align-items: center;
}

.container.vertical {
  flex-direction: column;
  max-width: none;
  padding-left: 5vw;
  padding-right: 5vw;
}

.container.contatti {
  align-items: stretch;
  max-width: 1200px;
  padding-left: 60px;
  padding-right: 60px;
}

.container.plus {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: 82px;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  display: grid;
}

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

.section.is-technical {
  background-color: var(--old-lace);
  background-image: linear-gradient(135deg, #ced0cdcc, var(--old-lace) 25%, var(--old-lace) 75%, #ced0cdcc), url('../images/pattern-dark-blue.svg');
  background-position: 0 0, 0 0;
  background-size: auto, 250px;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.is-technical.bg-color {
  z-index: 1;
  background-color: var(--old-lace);
  border-bottom: 1px solid #787c66;
}

.section.grid {
  grid-column-gap: 40px;
  grid-row-gap: 10px;
  background-color: var(--old-lace);
  grid-template-rows: 1fr .5fr .25fr;
  grid-template-columns: 1.5fr 1.5fr .5fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.section.centred {
  padding-top: 5vw;
  padding-bottom: 5vw;
}

.section.centred.bk-color {
  background-color: var(--old-lace);
  background-image: linear-gradient(#9db3bf00, #9db3bf99 38%, #9db3bffc 92%);
  padding-bottom: 10vw;
  position: relative;
}

.section.centred.lifestyle {
  padding-bottom: 10vw;
}

.section.form {
  z-index: 0;
  object-position: 50% 0%;
  background-color: #c0c4a8;
  border-bottom: 1px solid #787c66;
  padding-top: 220px;
  overflow: hidden;
}

.section.grid-progetto {
  grid-column-gap: 40px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1.75fr 1.5fr .25fr;
  grid-auto-columns: 1fr;
  padding-bottom: 5vw;
  display: grid;
}

.section.fullscreen {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.section.grid-2 {
  grid-column-gap: 40px;
  grid-row-gap: 10px;
  grid-template-rows: .25fr 1fr 1fr .25fr;
  grid-template-columns: 1fr 1.25fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section.grid-lifestyle {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr .5fr;
  grid-auto-columns: 1fr;
  padding-top: 0;
  padding-bottom: 5vw;
  display: grid;
}

.section.pattern {
  background-image: linear-gradient(#ffffff40, #ffffff40), url('../images/pattern-dark-blue-2.svg');
  background-position: 0 0, 100%;
  background-repeat: repeat, repeat-y;
  background-size: auto, 7vw;
}

.section.pattern.pattern-reverse {
  background-image: linear-gradient(#ffffff40, #ffffff40), url('../images/pattern-dark-blue-2.svg');
  background-position: 0 0, 0%;
}

.section.bg_grey {
  background-color: #ced0cd66;
}

.section.bg_lightblue {
  background-color: #9db3bf66;
}

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

.header_component {
  color: var(--white);
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  min-height: 750px;
  display: flex;
  position: relative;
}

.header_container {
  z-index: 3;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  position: absolute;
  bottom: 0;
}

.header_hover {
  z-index: 2;
  background-image: linear-gradient(to top, #0009, #0000);
  position: absolute;
  inset: 0%;
}

.header_hover.hover_progetto {
  background-image: linear-gradient(to top, #000000a6 25%, #0000 85%);
}

.header_background {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.header_background.is-hp {
  align-items: flex-start;
  display: none;
}

.scroll_lottie {
  width: 40px;
  height: 40px;
}

.nav_component {
  z-index: 10;
  grid-column-gap: 60px;
  border-bottom: 1px solid var(--blue);
  background-color: #fffffff2;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 0;
  display: flex;
  position: fixed;
  top: 0;
}

.nav_component.menu-mobile {
  display: none;
}

.list {
  grid-column-gap: 30px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  list-style-type: none;
  display: flex;
}

.logo-navbar {
  width: 190px;
  height: 45px;
  margin-bottom: 10px;
}

.navbar_link {
  color: var(--dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  padding-bottom: 28px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
  transition: color .15s cubic-bezier(.455, .03, .515, .955);
}

.navbar_link:hover {
  color: var(--cta);
  background-repeat: repeat;
  background-size: auto;
}

.navbar_link.w--current {
  color: var(--cta);
  background-image: url('../images/pointer.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 15px 15px;
}

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

.list-item.is-logo {
  width: auto;
}

.section-intro {
  background-color: var(--blue);
  color: var(--old-lace);
  background-image: linear-gradient(22deg, #253238cc, #2532384d 19%, #253238cc 36%, #2532384d 70%, #253238cc 86%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 35vh;
  padding-top: 5vw;
  padding-bottom: 5vw;
  display: flex;
}

.section-intro.hide {
  display: none;
}

.h1-titolo-hero {
  color: var(--old-lace);
  text-align: center;
  width: 800px;
  font-family: Modern Deluxe, sans-serif;
  font-weight: 400;
  line-height: 45px;
}

.h2-sottotitolo-hero {
  color: var(--old-lace);
  text-align: center;
  width: 700px;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  display: none;
}

.citazione {
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 920px;
  padding-left: 60px;
  padding-right: 60px;
  font-size: 26px;
  font-style: italic;
  line-height: 36px;
  position: relative;
}

.section-info {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 5vw;
  padding-bottom: 5vw;
  display: flex;
}

.video-embed {
  width: 80%;
  height: 100%;
}

.txt-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.txt-wrap.centred {
  justify-content: center;
  align-items: center;
}

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

.image-wrap.grid {
  width: 100%;
}

.image-wrap._w-50 {
  width: 50%;
}

.image-wrap.poi_map {
  align-items: stretch;
  width: 50%;
  display: flex;
}

.titolo-paragrafo {
  color: var(--dark);
  text-align: center;
  max-width: 450px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.titolo-paragrafo.centred {
  text-align: center;
  width: 450px;
}

.sottotitolo-paragrafo {
  color: var(--blue);
  text-align: center;
  letter-spacing: 2px;
  -webkit-text-stroke-width: .5px;
  text-transform: uppercase;
  max-width: 450px;
  margin-top: 10px;
  font-family: Modern Deluxe, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 25px;
}

.p-paragrafo {
  color: var(--dark);
  text-align: center;
  max-width: 450px;
  margin-top: 30px;
  margin-bottom: 80px;
  font-size: 18px;
  line-height: 26px;
}

.p-paragrafo.centred {
  text-align: center;
  width: 450px;
}

.p-paragrafo.pad-0px {
  margin-top: 0;
  margin-bottom: 0;
}

.p-paragrafo.pad-0px.text-color-cta {
  color: var(--cta);
}

.txt-container {
  flex-direction: column;
  flex: none;
  align-items: center;
  padding: 40px 8%;
  display: flex;
  position: relative;
}

.txt-container.width {
  z-index: 2;
  width: 50%;
  position: sticky;
  top: 10vw;
}

.txt-container.width.not-sticky {
  position: static;
}

.txt-container.grid {
  align-items: center;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.txt-container.grid-progetto {
  justify-content: flex-start;
  margin-top: auto;
  margin-bottom: auto;
}

.pattern-1 {
  opacity: 1;
  width: 100px;
  height: 275px;
  display: none;
  position: absolute;
  top: -30px;
  right: -56px;
}

.pattern-1.reverse {
  left: -55px;
  right: auto;
}

.slider {
  background-color: #0000;
  width: 80%;
  height: 100%;
  margin-top: 5vw;
}

.slide-nav {
  display: none;
}

.img-lifestyle {
  object-fit: contain;
}

.left-arrow {
  background-color: var(--blue);
  border-radius: 100%;
  width: 50px;
  height: 50px;
  left: -25px;
}

.left-arrow:hover {
  background-color: var(--dark);
}

.icon {
  font-size: 25px;
}

.right-arrow {
  background-color: var(--blue);
  border-radius: 100%;
  width: 50px;
  height: 50px;
  transition: background-color .2s cubic-bezier(.455, .03, .515, .955);
  right: -25px;
}

.right-arrow:hover {
  background-color: var(--dark);
}

.icon-2 {
  font-size: 25px;
}

.contact-container {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  padding-left: 60px;
  display: flex;
}

.logo-footer {
  width: 190px;
  height: 40px;
  margin-bottom: 40px;
}

.contact-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 5px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  height: 120px;
  margin-top: 40px;
  padding-top: 20px;
  display: grid;
}

.wrap-contatti {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact-img {
  width: 30px;
  height: 30px;
  margin-right: 20px;
}

.txt-contact {
  color: var(--white);
  flex-direction: column;
  max-width: 350px;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  transition: color .15s;
  display: flex;
}

.txt-contact:hover {
  color: var(--old-lace);
}

.partner-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-top: 1px solid var(--white);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  height: 120px;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
}

.txt-partner {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 12px;
}

.logo-partner {
  object-fit: contain;
  width: 100%;
  max-width: 110px;
  height: 100%;
  margin-bottom: 20px;
}

.logo-partner.colliers {
  margin-bottom: 0;
}

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

.footer-link {
  color: var(--slate-grey);
  cursor: pointer;
  text-decoration: none;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--old-lace);
}

.footer_txt {
  color: var(--white);
  font-size: 14px;
}

.cookie-prefs_nascondi {
  display: none;
}

.cookie-prefs_wrapper {
  z-index: 997;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #00000026;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 60px 32px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.cookie-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 20px;
  height: 20px;
}

.banner_close {
  opacity: 1;
  cursor: pointer;
  justify-content: center;
  align-self: flex-end;
  align-items: center;
  padding: 10px;
  display: flex;
}

.banner_close.is-x {
  z-index: 3;
  padding: 6px;
  position: absolute;
  top: 0;
  right: 0;
}

.cookie-prefs_checkbox-old {
  z-index: 1;
  cursor: pointer;
  background-color: #f2ceb7;
  background-image: url('../images/check_dot.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  border-width: 2px;
  border-color: #f2ceb7;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.cookie-prefs_checkbox-old.w--redirected-checked {
  background-color: #f09d88;
  background-image: url('../images/check_dot.svg');
  background-position: 100%;
  background-size: contain;
  border-color: #f09d88;
}

.cookie-prefs_checkbox-old.w--redirected-focus {
  box-shadow: none;
}

.manager_trigger {
  display: none;
}

.cookie-prefs_arrow {
  background-image: url('../images/freccia.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  margin-top: 2px;
  margin-left: 6px;
  display: flex;
  transform: rotate(0);
}

.cookie-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 24px;
  margin-bottom: 16px;
  display: flex;
}

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

.cookie-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-bottom: 16px;
  position: relative;
}

.cookie-prefs_trigger {
  display: none;
}

.cookie-banner_buttons-wrapper {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.cookie-prefs_open-txt-old {
  opacity: .5;
  color: #787c66;
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  height: 24px;
  display: flex;
  position: absolute;
  top: 0;
  right: 70px;
}

.cookie-banner_close_icon {
  color: #424b54;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  display: flex;
}

.cookie-banner_trigger, .cookie-prefs_checkbox-label {
  display: none;
}

.cookie-prefs_checkbox-field {
  border-radius: 999px;
  width: 44px;
  height: 24px;
  margin-bottom: 0;
  padding: 2px;
  display: flex;
  position: relative;
}

.cookie-banner_title_wrap {
  grid-row-gap: 20px;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.cookie-prefs_buttons-wrapper {
  margin-bottom: 40px;
}

.cookie-prefs_buttons-wrapper.is-pref {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  display: flex;
}

.form-block {
  width: 75%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.form-block.contatti {
  max-width: 800px;
}

.form-popup {
  z-index: 25;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #9db3bf99;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  display: none;
  position: fixed;
  inset: 0;
  overflow: auto;
}

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

.form_link {
  color: var(--slate-grey);
  font-weight: 300;
}

.form_link:hover {
  color: var(--old-lace);
}

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

.text-block-9 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 18px;
}

.cornice-form-2 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 40px;
  margin-right: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  position: relative;
}

.x-chiudi {
  background-image: url('../images/x-chiudi.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  flex: none;
  width: 30px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  transition: all .5s;
  position: absolute;
  top: 40px;
  right: 5px;
}

.x-chiudi:hover {
  transform: scale(1.1);
}

.form_message {
  background-color: #0000;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

.policy-flags {
  align-self: stretch;
}

.p-txt-2 {
  color: #4d5632;
  font-size: 1em;
  line-height: 22px;
}

.p-txt-2.bianco {
  color: var(--white);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 60px;
  font-size: 1.2em;
  font-style: normal;
}

.policy-flag {
  color: #fcf6f0;
  flex-direction: row;
  align-items: flex-start;
  font-weight: 300;
  display: flex;
}

.sec-titolo-txt {
  margin-top: 0;
  font-size: 2.3em;
  font-weight: 400;
  line-height: 30px;
  position: relative;
}

.sec-titolo-txt.centre {
  text-align: center;
  margin-top: 10px;
  font-size: 2em;
}

.sec-titolo-txt.centre.width {
  color: var(--old-lace);
  font-family: Modern Deluxe, sans-serif;
}

.area-form-nascosto {
  background-color: var(--dark);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-width: 800px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  overflow: visible;
}

.button-submit {
  color: var(--white);
  text-transform: uppercase;
  background-color: #0000;
  border-bottom: 2px solid #a58d72;
  align-self: center;
  min-width: 30%;
  font-weight: 400;
  transition: background-color .2s;
}

.button-submit:hover {
  background-color: #a58d72;
}

.button-submit.is-submit {
  border-bottom-color: var(--slate-grey);
  background-color: var(--white);
  color: var(--dark);
  letter-spacing: 2px;
  margin-top: 10px;
  margin-left: 0;
  margin-right: auto;
  font-family: Modern Deluxe, sans-serif;
  display: block;
}

.button-submit.is-submit:hover {
  background-color: var(--slate-grey);
  color: var(--dark);
}

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

.form_field-old {
  color: var(--white);
  background-color: #0000;
  border: 1px solid #fcf6f0;
  transition: background-color .15s;
}

.form_field-old:active {
  border-color: #fff;
}

.form_field-old:focus {
  background-color: var(--slate-grey);
  color: #fff;
  border-color: #fff;
}

.form_field-old::placeholder {
  color: #fff;
}

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

.form_field-old.message::placeholder {
  color: #fff;
}

.background-image {
  object-fit: cover;
  object-position: 50% 50%;
  min-width: 100%;
  min-height: 100%;
  position: relative;
}

.background-image.align-over {
  object-position: 50% 50%;
}

.background-image.is-hp {
  width: 100vw;
  height: 125vw;
}

.form-wrap {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.link-logo {
  margin-left: 30px;
  margin-right: 30px;
}

.image-full {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.image-80 {
  z-index: 0;
  max-width: 80%;
  position: relative;
}

.decoro {
  z-index: 1;
  opacity: .2;
  background-color: #a58d72;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0%;
  left: 14%;
}

.wrap-image-element {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.container-2.is-technical {
  z-index: 3;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--dark);
  color: var(--white);
  text-align: center;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px;
  display: flex;
  position: relative;
}

.heading.grazie {
  color: var(--old-lace);
  margin-bottom: 0;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
}

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

.button-4 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  cursor: pointer;
  background-color: #a39bff;
  border: 1px solid #a39bff;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
  transition: color .35s cubic-bezier(.25, .46, .45, .94), border-color .35s cubic-bezier(.25, .46, .45, .94), background-color .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.button-4:hover {
  background-color: #5b4dff;
  border-color: #5b4dff;
}

.button-4.is-icon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #f09d88;
  border-color: #f09d88;
  border-radius: 30px;
  font-family: Karla;
  display: flex;
}

.button-4.is-icon:hover {
  color: #f09d88;
  background-color: #0000;
  border-top-color: #f09d88;
  border-left-color: #f09d88;
  border-right-color: #f09d88;
}

.button-4.is-text {
  color: #fcf6f0;
  background-color: #0000;
  border-style: none none solid;
  border-bottom-color: #fcf6f0;
  border-radius: 0;
  padding: 0;
}

.button-4.is-text {
  padding: 0;
  font-family: Karla;
}

.button-4.is-text:hover {
  color: #787c66;
  border-bottom-color: #787c66;
}

.button-4.is-icon {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-color: var(--old-lace);
  background-color: var(--cta);
  display: flex;
}

.button-4.is-icon:hover {
  border-color: var(--white);
  color: var(--white);
}

.button-4.is-text {
  background-color: #0000;
  border-radius: 0;
  padding: 0;
}

._404 {
  color: var(--old-lace);
  font-family: brandon-grotesque, sans-serif;
  font-size: 72px;
  line-height: 80px;
}

.heading-4 {
  color: var(--old-lace);
  margin-top: 0;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
}

.text-block-16 {
  color: var(--white);
  font-family: brandon-grotesque, sans-serif;
  font-size: 25px;
}

.tipologie-wrap {
  background-color: var(--cta);
  color: var(--blue);
  border: 1px solid #a58d72;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  transition: background-color .4s;
  display: flex;
  position: relative;
}

.tipologie-wrap:hover {
  background-color: var(--dark);
}

.tipologie-wrap.last {
  margin-right: 0;
}

.tipologie-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
}

.tipologie-container.is-hp {
  grid-template-rows: auto;
  margin-bottom: 40px;
}

.titolo-tipologia {
  background-image: url('../images/icon-paragraph.svg'), linear-gradient(to right, var(--white) 80%, #fff0);
  text-align: center;
  text-transform: uppercase;
  background-position: 12px, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto 18px, auto;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.wrap-txt-tipologie {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 20px;
  left: 0;
}

.flags_popup_x {
  z-index: 2;
  opacity: 1;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.flags_popup_x:hover {
  opacity: .5;
}

.flag_component01 {
  cursor: pointer;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  display: flex;
  position: relative;
}

.wrap-btn-contatti {
  z-index: 4;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  transition: width .5s;
  display: flex;
  position: fixed;
  top: 35%;
  right: 20px;
}

.btn_contatti {
  cursor: pointer;
  background-color: #a58d72;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 25px;
  width: 50px;
  height: 50px;
  transition: transform .2s cubic-bezier(.455, .03, .515, .955);
  position: static;
  top: 10px;
  right: 10px;
}

.btn_contatti:hover {
  transform: scale(1.1);
}

.btn_contatti.mail {
  background-color: var(--cta);
  background-image: url('../images/Icona-mail.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: auto;
  right: auto;
}

.btn_contatti.mail:hover {
  transform: scale(1.1);
}

.btn_contatti.tel {
  background-color: var(--cta);
  background-image: url('../images/Icona-telefono-light.svg');
  position: relative;
  top: auto;
  right: auto;
}

.btn_contatti.tel:hover {
  transform: scale(1.1);
}

.mappa {
  flex: 1;
  width: 100%;
}

.mappa.is-poi {
  display: flex;
}

.x-menu {
  display: none;
}

.navlink_tabletmobile {
  z-index: 50;
  display: none;
  position: relative;
}

.close__wrap {
  background-image: url('../images/Icon_X.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 15px;
  border: 1px solid #fff3;
  border-radius: 100%;
  width: 50px;
  height: 50px;
}

.hamburger_wrap {
  display: none;
}

.link-partner {
  height: auto;
}

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

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

.text-medium {
  color: #787c66;
  max-width: 450px;
  margin-top: 40px;
  margin-bottom: 100px;
  font-family: Karla;
  font-size: 18px;
  line-height: 22px;
}

.text-medium.grazie {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 40px;
  font-family: brandon-grotesque, sans-serif;
}

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

.img-cover.h-200 {
  height: 200px;
  overflow: hidden;
}

.img-cover.side_home {
  object-position: 90% 50%;
}

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

.cta {
  background-color: var(--cta);
  color: var(--old-lace);
  text-align: center;
  -webkit-text-stroke-width: .5px;
  text-transform: none;
  cursor: pointer;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Modern Deluxe, sans-serif;
  line-height: 40px;
  text-decoration: none;
  position: relative;
}

.cta-txt {
  z-index: 1;
  letter-spacing: 1px;
  text-transform: none;
  position: relative;
}

.cta-hover {
  background-color: var(--dark);
  height: 2px;
  position: absolute;
  inset: auto 0% 0%;
}

.h1-titolo-hero-high {
  color: var(--slate-grey);
}

.cta-negative {
  background-color: var(--old-lace);
  color: var(--cta);
  -webkit-text-stroke-width: .5px;
  text-transform: none;
  cursor: pointer;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: Modern Deluxe, sans-serif;
  line-height: 40px;
  text-decoration: none;
  position: relative;
}

.prezzo-tipologie {
  color: var(--old-lace);
  text-align: center;
  letter-spacing: 1px;
  background-color: #0000;
  width: 100%;
  padding: 5px 10px;
}

.nowrap {
  white-space: nowrap;
}

.flag-03_lottie {
  z-index: 1;
  flex: none;
  width: 60px;
  height: 56px;
  position: relative;
  top: 2px;
}

.flag-03_lottie.is-acquista {
  width: 70px;
  height: 70px;
}

.flag-05_popup_row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  align-items: center;
  max-width: 370px;
  margin-bottom: 16px;
  line-height: 1.2;
  display: flex;
}

.flag-03_mask {
  width: 0;
  margin-right: -30px;
  overflow: hidden;
}

.flag-03_text {
  z-index: 1;
  white-space: nowrap;
  background-color: #fff;
  min-width: 130px;
  padding: 8px 40px 8px 10px;
  position: relative;
  overflow: hidden;
}

.flag-03_text.is-scegli {
  border: 1px solid var(--blue);
  color: #424b54;
}

.flag-03_text.is-acquista {
  color: #a39bff;
}

.flag-03_text.is-red {
  color: #fff;
  letter-spacing: 1px;
  background-color: #ad1b1b;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  border-radius: 30px 0 0 30px;
  padding-left: 30px;
  font-weight: 700;
}

.flag-03_text.is-red.mobile {
  display: none;
}

.flag-03_popup_box {
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  min-width: 350px;
  padding: 40px 40px 60px;
  display: flex;
  position: relative;
  box-shadow: 0 0 3px 2px #0000001a;
}

.flag-03_popup_box.is-acquista {
  background-color: #ececec;
}

.flag-03_popup_container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
}

.flag-03_popup_icon {
  object-fit: contain;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: none;
  width: 80px;
  height: 80px;
}

.flag-03_popup_x {
  z-index: 2;
  opacity: 1;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .2s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.flag-03_popup_x:hover {
  opacity: .5;
}

.flag-03_popup {
  z-index: 2;
  background-color: #23201bd9;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 20px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
  box-shadow: inset 0 0 3px 2px #0003;
}

.flag-03_icon {
  z-index: 2;
  border-radius: 100%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  padding-bottom: 3px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.flag-03_icon.is-acquista {
  background-color: #a39bff;
}

.flag-03_icon.is-scegli {
  border: 1px solid var(--white);
  background-color: var(--dark);
}

.flag-03_icon.is-test {
  border: 1px solid var(--old-lace);
  background-color: var(--cta);
  color: var(--white);
  background-image: url('../images/plani-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 28px 28px;
}

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

.flag-03_popup_asta {
  background-color: #2b2b2b;
  flex: none;
  width: 1px;
  height: 70%;
  position: absolute;
  transform: rotate(45deg);
}

.flag-03_popup_asta._2 {
  transform: rotate(-45deg);
}

.flag-03_container {
  z-index: 4;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: fixed;
  top: 20%;
  right: 20px;
}

.flag-03_popup_row {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  align-items: center;
  max-width: 370px;
  margin-bottom: 16px;
  line-height: 1.2;
  display: flex;
}

.flag-03_component {
  text-transform: uppercase;
  cursor: pointer;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  min-width: 56px;
  text-decoration: none;
  transition: all .35s cubic-bezier(.455, .03, .515, .955);
  display: none;
  overflow: hidden;
}

.flag-03_component.hide {
  display: none;
}

.container-privacy {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.container-privacy.is-gdpr {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  max-width: 1000px;
  padding: 0 60px 100px;
  display: flex;
}

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

.cookie_tab_cell.is-title {
  background-color: var(--blue);
  color: #fff;
  border-top-style: solid;
  align-items: center;
  display: flex;
}

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

.cookie_tab_wrap {
  margin-bottom: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.gdpr_richtext.is-client {
  margin-top: -10px;
  margin-bottom: -10px;
}

.gdpr_richtext.is-client p {
  color: var(--dark);
}

.gdpr_richtext p {
  color: var(--dark);
  font-size: 16px;
  line-height: 22px;
}

.gdpr_richtext h2 {
  -webkit-text-stroke-width: .5px;
  font-family: Modern Deluxe, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
}

.gdpr_richtext h3 {
  -webkit-text-stroke-width: .5px;
  font-family: Modern Deluxe, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.gdpr_richtext li {
  color: var(--dark);
  font-size: 16px;
}

.gdpr_richtext a {
  color: var(--cta);
  transition: color .2s;
}

.gdpr_richtext a:hover {
  color: var(--blue);
}

.cookie_tab_link {
  color: var(--cta);
  transition: color .2s;
}

.cookie_tab_link:hover {
  color: var(--blue);
}

.todelete-2 {
  text-align: left;
  background-color: #ffe837;
  margin-bottom: 0;
  padding: 40px 15%;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.todelete-2.is-gdpr {
  display: none;
}

.form_text {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 10px;
}

.button-6 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--cta);
  background-color: var(--cta);
  color: #fff;
  cursor: pointer;
  border-radius: 0;
  padding: 10px 20px;
  font-size: 14px;
  text-decoration: none;
  transition: color .35s cubic-bezier(.25, .46, .45, .94), border-color .35s cubic-bezier(.25, .46, .45, .94), background-color .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.button-6:hover {
  background-color: var(--blue);
  border-color: #274e58;
}

.button-6.is-secondary {
  border-color: var(--cta);
  color: var(--cta);
  background-color: #5b4cff00;
}

.button-6.is-secondary:hover {
  border-color: var(--blue);
  background-color: var(--blue);
  color: #fff;
}

.button-6.is-text {
  color: var(--cta);
  background-color: #0000;
  border-style: none none solid;
  border-bottom-color: #a58d72;
  border-radius: 0;
  padding: 0;
}

.button-6.is-text:hover {
  color: var(--blue);
  border-bottom-color: #274e58;
}

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

.form_field {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: #0000;
  border-radius: 0;
  width: 100%;
  margin-bottom: 10px;
  line-height: 20px;
}

.form_field::placeholder {
  color: var(--old-lace);
}

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

.form_field.is-message {
  line-height: 25px;
}

.form_field.form_select {
  display: none;
}

.form_field.dropdown {
  line-height: 40px;
}

.dropdown-toggle {
  color: var(--old-lace);
  width: 100%;
  padding: 0 12px;
}

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

.form_wrapper {
  width: 100%;
  max-width: 500px;
}

.form_container {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  width: 100%;
  display: flex;
}

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

.dropdown-link {
  background-color: var(--old-lace);
  color: var(--dark);
  padding-top: 0;
  padding-bottom: 0;
  line-height: 40px;
}

.dropdown-link:hover {
  background-color: var(--slate-grey);
  color: var(--blue);
}

.dropdown-link.w--current {
  background-color: var(--blue);
  color: var(--old-lace);
}

.display-none {
  display: none;
}

.cookie-banner_wrap {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: auto auto 0 0;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 0 14px 3px #0000001a;
}

.banner_title {
  color: var(--blue);
  font-family: Modern Deluxe, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 2em;
}

.cookie-prefs_name {
  color: #5c5c5c;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: auto;
  font-size: 16px;
  font-weight: 700;
}

.cookie-prefs_checkbox {
  z-index: 1;
  cursor: pointer;
  background-color: #cacaca;
  background-image: url('../images/check_dot.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  border-width: 2px;
  border-color: #cacaca;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  transition: all .2s;
  position: absolute;
  inset: 0%;
}

.cookie-prefs_checkbox.w--redirected-checked {
  border-color: var(--cta);
  background-color: var(--cta);
  background-image: url('../images/check_dot.svg');
  background-position: 100%;
  background-size: contain;
}

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

.cookie-prefs_text {
  line-height: 1.4;
  transition: height .25s cubic-bezier(.455, .03, .515, .955);
  overflow: hidden;
}

.cookie-banner_close_txt-2 {
  color: var(--cta);
  border-bottom: 1px solid #a58d72;
  font-size: 14px;
  transition: border-color .25s, color .35s;
}

.cookie-banner_close_txt-2:hover {
  color: var(--blue);
  border-bottom-color: #274e58;
}

.cookie-prefs_label {
  font-weight: 700;
}

.cookie-banner_wrapper {
  z-index: 998;
  background-color: #0003;
  flex-direction: column;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: 0;
  overflow: auto;
}

.cookie-prefs_open-txt {
  opacity: .5;
  color: #000;
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  height: 24px;
  display: flex;
  position: absolute;
  top: 0;
  right: 70px;
}

.cookie-prefs_open-txt.is-first {
  top: 0;
}

.cookie-prefs_container {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #333;
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 48px 40px;
  font-size: 12px;
  line-height: 1;
  display: flex;
  position: relative;
}

.cookie-banner_link {
  color: var(--cta);
  transition: color .35s;
}

.cookie-banner_link:hover {
  color: var(--blue);
}

.cookie-prefs_title {
  color: #383838;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.cookie_close_icon-2 {
  color: #a58d72;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  display: flex;
}

.cookie-banner_text {
  color: var(--dark);
}

.cookie-prefs_description {
  line-height: 1.4;
}

.pattern-1-copy {
  background-color: var(--blue);
  opacity: 1;
  background-image: url('../images/deco-dark.svg');
  background-position: 50% 0;
  background-repeat: repeat-y;
  background-size: auto 8.33%;
  width: 100px;
  height: 275px;
  display: none;
  position: absolute;
  top: -30px;
  right: -56px;
}

.break-highlight {
  color: var(--slate-grey);
  font-family: Modern Deluxe, sans-serif;
  font-style: normal;
}

.author {
  font-size: 22px;
  font-style: normal;
}

.icon-par {
  width: 13px;
  margin-top: 20px;
}

.icon-par.icon-apt {
  margin-top: 0;
}

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

.apt-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  min-width: 400px;
  margin-top: 40px;
  display: grid;
}

.number {
  color: var(--dark);
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
}

.number-wrapper {
  border: 1px solid var(--dark);
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
}

.apt-txt {
  color: var(--dark);
  text-align: center;
  -webkit-text-stroke-width: .5px;
  text-transform: uppercase;
  font-family: Modern Deluxe, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

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

.flag-03_mask-2 {
  margin-right: -30px;
  overflow: hidden;
}

.flag_new {
  z-index: 4;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
  position: fixed;
  top: 20%;
  right: 20px;
}

.flag-03_component-2 {
  transform: scale3d(1none, 1none, 1none);
  text-transform: uppercase;
  cursor: pointer;
  transform-style: preserve-3d;
  border-radius: 30px;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  min-width: 56px;
  text-decoration: none;
  transition: all .35s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 #0006;
}

.flag-03_component-2:hover {
  transform: scale(1.05);
  box-shadow: 2px 0 4px 1px #0006;
}

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

.section-video {
  background-color: #9db3bf66;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 5vw;
  padding-bottom: 5vw;
  display: flex;
}

.section-plus-abitativi {
  color: var(--old-lace);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding-top: 2vw;
  padding-bottom: 2vw;
  display: flex;
}

.plus-txt {
  color: var(--dark);
  text-align: center;
  -webkit-text-stroke-width: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  font-family: Modern Deluxe, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 31px;
}

.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_name {
  color: var(--dark);
  font-size: 22px;
}

.poi_distance {
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.poi_map_gradient {
  background-image: linear-gradient(270deg, var(--white), #fff0 25%);
  display: none;
  position: absolute;
  inset: 0%;
}

.divisore {
  background-color: var(--dark);
  width: 1px;
  height: 100%;
}

.poi_map {
  display: none;
}

.poi_list {
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding: 5vw 8%;
  display: flex;
  position: relative;
}

.poi_section {
  display: flex;
}

.address {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.address.centred {
  align-items: center;
}

.virgola {
  font-family: Open Sans, sans-serif;
}

@media screen and (max-width: 991px) {
  .footer_component {
    padding-left: 60px;
    padding-right: 60px;
  }

  .contact_component {
    height: auto;
    min-height: auto;
    max-height: none;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page_wrapper.informative {
    padding-top: 140px;
  }

  .page_wrapper.margin-top {
    margin-top: 90px;
  }

  .container.no-marging-dx {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
  }

  .container.no-marging-dx.reverse {
    flex-direction: column;
  }

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

  .container.contatti {
    flex-direction: column-reverse;
    margin-left: 0;
    margin-right: 0;
  }

  .container.plus {
    grid-template-rows: 60px;
  }

  .section {
    padding: 60px;
  }

  .section.grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
  }

  .section.centred.bk-color {
    padding: 60px;
  }

  .section.centred.lifestyle, .section.centred.bg_lightblue {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.form {
    padding-top: 140px;
  }

  .section.grid-progetto {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
    display: flex;
  }

  .section.fullscreen {
    padding-left: 0;
    padding-right: 0;
  }

  .section.grid-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .section.pattern, .section.pattern.pattern-reverse {
    background-image: linear-gradient(to bottom, null, null), url('../images/pattern-dark-blue-2.svg');
    background-size: auto, 100px;
  }

  .header_component {
    display: flex;
  }

  .nav_component {
    z-index: 14;
    background-color: var(--white);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 90px;
    padding: 10px 10px 10px 32px;
  }

  .nav_component.menu-mobile {
    z-index: 15;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    display: none;
    inset: 0%;
    overflow: auto;
  }

  .list {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .logo-navbar {
    width: 170px;
    height: 40px;
    margin-bottom: 0;
  }

  .navbar_link {
    font-size: 18px;
  }

  .navbar_link.menu-mobile {
    padding-bottom: 15px;
  }

  .list-item {
    width: 100px;
    display: none;
  }

  .list-item.is-logo {
    order: -1;
    display: block;
  }

  .list-item.menu-mobile {
    display: flex;
  }

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

  .h1-titolo-hero {
    width: 100%;
    font-size: 30px;
    line-height: 40px;
  }

  .h2-sottotitolo-hero {
    width: 100%;
    max-width: 450px;
  }

  .citazione {
    max-width: none;
  }

  .section-info {
    padding: 60px;
  }

  .video-embed {
    width: 100%;
  }

  .txt-wrap {
    align-items: center;
  }

  .image-wrap {
    order: -1;
  }

  .image-wrap.grid {
    width: 100%;
  }

  .image-wrap.grid.hide-tablet {
    display: none;
  }

  .image-wrap._w-50 {
    order: 1;
    width: 100%;
  }

  .image-wrap.poi_map {
    flex-direction: column;
  }

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

  .p-paragrafo {
    text-align: center;
    margin-bottom: 40px;
  }

  .txt-container {
    padding: 0;
  }

  .txt-container.width {
    width: 100%;
    padding: 0;
    position: static;
  }

  .txt-container.grid {
    width: 80%;
    margin: 0;
    padding: 0;
  }

  .txt-container.grid-progetto {
    margin-bottom: 0;
  }

  .pattern-1 {
    width: 80px;
    height: 230px;
    display: none;
    top: 40%;
    left: 6%;
    right: auto;
  }

  .pattern-1.reverse {
    top: 35%;
    left: 6%;
  }

  .slider {
    width: 100%;
    margin-top: 0;
  }

  .contact-container {
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
    padding-left: 0;
  }

  .logo-footer {
    width: 200px;
  }

  .contact-wrapper {
    flex-direction: row;
    align-items: flex-start;
    margin-top: 20px;
    padding-bottom: 40px;
    padding-left: 0;
  }

  .wrap-contatti {
    flex-direction: column;
  }

  .txt-contact {
    max-width: 350px;
  }

  .partner-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
    margin-top: 40px;
    padding-left: 0;
  }

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

  .form-block.contatti {
    max-width: 600px;
  }

  .form-popup {
    z-index: 55;
    overflow: auto;
  }

  .cornice-form-2 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .x-chiudi {
    margin-bottom: 10px;
    top: 20px;
  }

  .area-form-nascosto {
    width: 85%;
    min-width: auto;
    max-width: 800px;
    padding: 40px;
  }

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

  .link-logo {
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .link-logo.w--current {
    margin-left: 0;
    margin-right: 0;
  }

  .decoro {
    width: 150px;
    height: 150px;
  }

  .wrap-image-element, .wrap-image-element.grid {
    width: 100%;
  }

  .wrap-image-element.hide {
    display: none;
  }

  .container-2.is-technical {
    width: 80%;
    max-width: 750px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .text-block-16 {
    line-height: 30px;
  }

  .tipologie-wrap {
    width: 100%;
    margin-right: 0;
  }

  .tipologie-container {
    grid-column-gap: 20px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: grid;
  }

  .flags_popup_x {
    flex: none;
    position: fixed;
  }

  .wrap-btn-contatti {
    z-index: 4;
    top: 210px;
    right: 10px;
  }

  .mappa {
    flex: none;
    width: 100%;
    height: 500px;
  }

  .mappa.is-poi {
    flex: 1;
  }

  .x-menu {
    cursor: pointer;
    align-self: center;
    align-items: center;
    width: 35px;
    height: 35px;
    display: flex;
    position: absolute;
    inset: 32% 5% auto auto;
    overflow: hidden;
  }

  .lottie-animation {
    align-self: flex-end;
    width: 100%;
  }

  .foglia-menu {
    opacity: .1;
    background-image: url('../images/Foglia-4.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    height: 200px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: auto 0% 0% auto;
  }

  .navlink_tabletmobile {
    z-index: 50;
    background-color: var(--old-lace);
    background-image: linear-gradient(270deg, #f0e9d6d9, var(--old-lace) 25%, #f0e9d6 75%, #f0e9d6d9), url('../images/texture.svg');
    background-position: 0 0, 0 0;
    background-size: auto, 250px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 120px;
    display: none;
    position: fixed;
    inset: 0%;
    overflow: auto;
  }

  .navlink__wrap_tm {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
  }

  .close__wrap {
    cursor: pointer;
    background-image: url('../images/Icon_X.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 15px;
    border: 1px solid #fff3;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    padding-bottom: 0;
    padding-right: 0;
    position: static;
    top: 4vw;
    right: auto;
  }

  .close__wrap.menuclose {
    background-color: var(--dark);
    border-color: #a58d72;
    flex: none;
    margin-bottom: 140px;
    position: absolute;
  }

  .hamburger_wrap {
    background-color: var(--dark);
    cursor: pointer;
    background-image: url('../images/Icon_Menu.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px;
    border-radius: 100%;
    flex: none;
    width: 50px;
    height: 50px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
    position: absolute;
    right: 10px;
  }

  .link-partner {
    flex-direction: column;
    align-items: center;
    width: auto;
    display: flex;
  }

  .partner-wrap {
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }

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

  .img-cover.side, .flag-03_text.is-red.mobile {
    display: none;
  }

  .flag-03_popup_box {
    align-self: center;
    max-width: 100%;
  }

  .flag-03_popup_container {
    flex-direction: column;
    flex: none;
  }

  .flag-03_popup_x {
    flex: none;
    position: fixed;
  }

  .flag-03_popup_asta {
    background-color: #fff;
  }

  .flag-03_container {
    margin-top: 0;
    top: 140px;
    right: 10px;
  }

  .gdpr_richtext h2 {
    font-size: 16px;
    line-height: 24px;
  }

  .gdpr_richtext h3 {
    font-size: 14px;
    line-height: 20px;
  }

  .gdpr_richtext h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .form_field {
    line-height: 20px;
  }

  .dropdown-toggle {
    height: 40px;
    line-height: 40px;
  }

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

  .cookie-banner_wrapper {
    padding-bottom: 40px;
  }

  .pattern-1-copy {
    width: 80px;
    height: 230px;
    display: none;
    top: 40%;
    left: 6%;
    right: auto;
  }

  .apt-wrap {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }

  .number {
    font-size: 40px;
  }

  .number-wrapper {
    width: 60px;
    height: 60px;
  }

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

  .section-video {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-plus-abitativi {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .plus-txt {
    font-size: 12px;
    line-height: 20px;
  }

  .poi_list {
    padding: 60px;
  }

  .poi_section {
    align-items: stretch;
  }
}

@media screen and (max-width: 767px) {
  .contact_component {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page_wrapper.informative {
    padding-top: 120px;
  }

  .page_wrapper.margin-top {
    margin-top: 70px;
  }

  .container.citazione {
    width: 100%;
  }

  .container.contatti {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .section {
    padding: 40px;
  }

  .section.centred {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.centred.bk-color {
    background-image: none;
  }

  .section.pattern {
    background-image: linear-gradient(to bottom, null, null), url('../images/pattern-dark-blue-2.svg');
    background-size: auto, 9vw;
  }

  .section.pattern.pattern-reverse {
    background-image: linear-gradient(#0000, #0000), url('../images/pattern-dark-blue-2.svg');
    background-size: auto, 9vw;
  }

  .nav_component {
    height: 70px;
  }

  .list {
    overflow: visible;
  }

  .section-intro {
    padding: 60px 40px;
  }

  .h1-titolo-hero {
    width: 460px;
    font-size: 30px;
    line-height: 38px;
  }

  .h2-sottotitolo-hero {
    line-height: 25px;
  }

  .citazione {
    padding-left: 0;
    padding-right: 0;
    font-size: 26px;
    line-height: 35px;
  }

  .txt-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .image-wrap.poi_map {
    width: 100%;
    height: 400px;
  }

  .titolo-paragrafo.centred {
    width: auto;
    max-width: 450px;
  }

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

  .p-paragrafo.centred {
    width: auto;
    max-width: 450px;
  }

  .txt-container, .txt-container.width, .txt-container.grid {
    width: 100%;
  }

  .txt-container.grid-progetto {
    width: 100%;
    margin-bottom: 20px;
  }

  .pattern-1 {
    top: 48%;
  }

  .pattern-1.reverse {
    top: 42%;
  }

  .slider {
    width: 100%;
  }

  .left-arrow {
    width: 40px;
    height: 40px;
    left: -4%;
  }

  .icon {
    font-size: 20px;
  }

  .right-arrow {
    width: 40px;
    height: 40px;
    right: -4%;
  }

  .icon-2 {
    font-size: 20px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 5px;
    grid-template-rows: auto;
    height: auto;
    padding-bottom: 0;
  }

  .wrap-contatti {
    flex-direction: column;
  }

  .contact-img {
    margin-right: 10px;
  }

  .partner-container {
    align-items: flex-start;
  }

  .footer_row {
    grid-column-gap: 0px;
    grid-row-gap: 10px;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .footer_txt {
    text-align: center;
  }

  .cookie-banner_title_wrap {
    align-items: center;
  }

  .cornice-form-2 {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .p-txt-2.bianco, .sec-titolo-txt.centre.width {
    width: 80%;
  }

  .area-form-nascosto {
    padding: 20px;
  }

  .form_field-old {
    margin-bottom: 15px;
  }

  .decoro {
    width: 100px;
    height: 100px;
  }

  .container-2.is-technical {
    max-width: 460px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-4 {
    font-size: 30px;
    line-height: 35px;
  }

  .text-block-16 {
    font-size: 20px;
    line-height: 25px;
  }

  .tipologie-wrap {
    color: var(--dark);
  }

  .tipologie-container {
    grid-row-gap: 40px;
    flex-direction: column;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    max-width: 350px;
    display: flex;
  }

  .flag_component01 {
    top: 28px;
  }

  .wrap-btn-contatti {
    z-index: 4;
    top: 210px;
  }

  .btn_contatti.mail, .btn_contatti.tel {
    width: 45px;
    height: 45px;
  }

  .mappa {
    height: 400px;
  }

  .flag-05_popup_row {
    max-width: 100%;
  }

  .flag-03_text.is-red {
    height: 45px;
    font-size: 12px;
    line-height: 14px;
  }

  .flag-03_text.is-red.mobile {
    display: none;
  }

  .flag-03_popup_box {
    text-align: center;
    min-width: auto;
  }

  .flag-03_popup {
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .flag-03_icon.is-scegli, .flag-03_icon.is-test {
    width: 45px;
    height: 45px;
  }

  .flag-03_container {
    top: 140px;
    right: 10px;
  }

  .flag-03_popup_row {
    max-width: 100%;
  }

  .flag-03_component {
    top: 28px;
  }

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

  .container-privacy.is-gdpr {
    padding-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .cookie_tab {
    min-width: 750px;
  }

  .cookie_tab_wrap {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
  }

  .gdpr_richtext h1 {
    font-size: 28px;
    line-height: 35px;
  }

  .form_field {
    margin-bottom: 15px;
  }

  .form_wrapper {
    width: 100%;
  }

  .cookie-banner_wrap {
    flex-direction: column;
    align-items: center;
  }

  .banner_title, .cookie-prefs_title {
    font-size: 20px;
  }

  .pattern-1-copy {
    top: 48%;
  }

  .apt-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr 10px 1fr 10px 1fr;
  }

  .flag_new {
    top: 120px;
    right: 10px;
  }

  .flag-03_component-2 {
    top: 28px;
  }

  .section-plus-abitativi {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .plus-txt {
    max-height: none;
  }

  .divisore.landscaper-d-none {
    display: none;
  }

  .poi_list {
    width: 100%;
    padding: 40px;
  }

  .poi_section {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 30px;
    line-height: 35px;
  }

  h2 {
    font-size: 26px;
    line-height: 28px;
  }

  .page_wrapper.informative {
    padding-top: 100px;
  }

  .page_wrapper.margin-top {
    margin-top: 60px;
  }

  .container.no-marging-dx, .container.vertical {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .container.contatti {
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.plus {
    flex-direction: column;
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .section {
    padding: 40px 20px;
  }

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

  .section.centred.bk-color {
    padding: 40px 20px;
  }

  .section.centred.lifestyle {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.grid-progetto {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-bottom: 40px;
  }

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

  .section.grid-lifestyle {
    flex-direction: column;
    display: none;
  }

  .section.pattern {
    background-image: linear-gradient(#0000, #0000), url('../images/pattern-dark-blue-2.svg');
    background-position: 0 0, 50% 100%;
    background-repeat: repeat, repeat-x;
    background-size: auto, 30vw;
  }

  .section.pattern.pattern-reverse {
    background-image: linear-gradient(#0000, #0000), url('../images/pattern-dark-blue-2.svg');
    background-position: 0 0, 0 100%;
    background-repeat: repeat, repeat-x;
    background-size: auto, 30vw;
  }

  .header_component {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: auto;
    padding: 0;
  }

  .header_container {
    width: 100%;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    position: static;
  }

  .header_hover {
    display: none;
    position: relative;
  }

  .header_background {
    height: auto;
    min-height: auto;
    position: relative;
  }

  .scroll_component {
    display: none;
  }

  .nav_component {
    height: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-navbar {
    width: 150px;
    height: 35px;
  }

  .list-item.is-logo {
    align-items: flex-start;
  }

  .list-item.menu-mobile {
    width: auto;
  }

  .section-intro {
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .h1-titolo-hero {
    color: var(--blue);
    width: 100%;
    max-width: 300px;
    font-size: 24px;
    line-height: 30px;
  }

  .h2-sottotitolo-hero {
    color: var(--slate-grey);
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    line-height: 22px;
  }

  .citazione {
    font-size: 18px;
    line-height: 30px;
  }

  .section-info {
    padding: 40px 20px;
  }

  .image-wrap, .image-wrap.grid {
    width: 100%;
  }

  .titolo-paragrafo {
    font-size: 28px;
    line-height: 30px;
  }

  .sottotitolo-paragrafo {
    background-image: none;
    line-height: 20px;
  }

  .p-paragrafo {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .p-paragrafo.centred {
    margin-bottom: 60px;
  }

  .txt-container.grid {
    width: 100%;
  }

  .pattern-1 {
    display: none;
  }

  .contact-container {
    margin-bottom: 40px;
  }

  .logo-footer {
    width: 150px;
    margin-bottom: 20px;
  }

  .contact-wrapper {
    grid-row-gap: 31px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    align-items: center;
    height: auto;
    padding-bottom: 0;
  }

  .txt-contact {
    max-width: 320px;
  }

  .partner-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    align-items: center;
    height: auto;
    display: flex;
  }

  .cookie-prefs_wrapper {
    padding: 24px;
  }

  .cookie-banner_buttons-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
  }

  .cookie-prefs_open-txt-old {
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
    position: static;
  }

  .cookie-banner_title_wrap {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .cookie-prefs_buttons-wrapper.is-pref {
    flex-wrap: wrap;
  }

  .form-popup {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .cornice-form-2 {
    padding-top: 100px;
  }

  .x-chiudi {
    right: auto;
  }

  .area-form-nascosto {
    width: 90%;
    padding: 10px;
  }

  .link-logo {
    margin-left: 0;
    margin-right: 0;
  }

  .image-80 {
    max-width: 100%;
  }

  .decoro {
    width: 50px;
    height: 50px;
    left: 3%;
  }

  .wrap-image-element {
    width: 100%;
  }

  .container-2.is-technical {
    width: 90%;
    min-width: 250px;
    max-width: none;
    padding: 60px 40px;
  }

  .heading-4 {
    font-size: 32px;
  }

  .tipologie-wrap {
    margin-bottom: 15px;
  }

  .tipologie-wrap.last {
    margin-bottom: 0;
  }

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

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

  .btn_contatti.mail, .btn_contatti.tel {
    width: 40px;
    height: 40px;
  }

  .mappa {
    min-height: 300px;
  }

  .navlink_tabletmobile {
    z-index: 52;
  }

  .close__wrap.menuclose, .hamburger_wrap {
    width: 40px;
    height: 40px;
  }

  .partner-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
  }

  .text-medium {
    margin-bottom: 60px;
  }

  .cta-txt {
    letter-spacing: 0;
  }

  .h1-titolo-hero-high {
    color: var(--slate-grey);
  }

  .flag-05_popup_row {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
  }

  .flag-03_text.is-red {
    border-radius: 0;
  }

  .flag-03_text.is-red.mobile {
    text-align: center;
    border: 1px solid #fff;
    border-right-style: none;
    justify-content: center;
    padding-right: 30px;
    line-height: 29px;
    display: flex;
  }

  .flag-03_text.is-red.dsk {
    display: none;
  }

  .flag-03_popup_box {
    text-align: center;
    align-self: auto;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .flag-03_popup_container {
    align-items: stretch;
  }

  .flag-03_popup_icon {
    width: 60px;
    height: 60px;
  }

  .flag-03_popup {
    padding-left: 16px;
    padding-right: 16px;
  }

  .flag-03_icon.is-test {
    border-radius: 0%;
  }

  .flag-03_popup_row {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
  }

  .flag-03_component {
    top: auto;
    bottom: 0;
    left: 0;
  }

  .container-privacy.is-gdpr {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .cookie-banner_wrap {
    padding: 20px;
  }

  .cookie-banner_wrapper {
    padding-left: 20px;
    padding-right: 20px;
    display: none;
  }

  .cookie-prefs_open-txt {
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
    position: static;
  }

  .cookie-prefs_container {
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .pattern-1-copy {
    display: none;
  }

  .author {
    font-size: 14px;
  }

  .icon-par.icon-apt {
    padding-bottom: 20px;
  }

  .background-video {
    height: 56.25vw;
  }

  .apt-wrap {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    min-width: auto;
  }

  .flag-03_mask-2 {
    width: 100%;
    margin-right: 0;
  }

  .flag_new {
    width: 100%;
    top: auto;
    bottom: 0;
    right: 0;
  }

  .flag-03_component-2 {
    border-radius: 0;
    width: 100%;
    top: auto;
    bottom: 0;
    left: 0;
  }

  .flag-03_component-2:hover {
    transform: none;
  }

  .map_container {
    width: 100%;
  }

  .section-plus-abitativi {
    padding: 40px 20px;
  }

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

  .divisore.landscaper-d-none {
    display: block;
  }

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

  .text-block-17, .text-block-18 {
    font-family: brandon-grotesque, sans-serif;
    font-size: 16px;
  }
}

#w-node-_7a96f3be-7ad8-eacb-f720-4ff6fa9534a7-6797b20a, #w-node-_6a3a4fbd-c5de-e715-2f71-0cf3bb287b9a-6797b20a, #w-node-_9bc98193-99e6-3ed6-64cb-b74ac4e85e02-6797b20a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_510e8e1a-6563-2034-8717-baacdac79e87-6797b20a {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-f67fa2c7-3460-bedc-a021-1352517b99df-6797b20a {
  grid-area: 1 / 2 / 4 / 3;
  align-self: center;
}

#w-node-_865da779-4a7f-1e56-58c1-759ec59cca99-6797b20a {
  grid-area: 1 / 3 / 3 / 4;
}

#w-node-_02880b5b-6612-45cf-7cf3-639e27896556-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896558-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789655a-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789655c-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789655e-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896560-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896562-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896564-6797b212 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_02880b5b-6612-45cf-7cf3-639e27896566-6797b212 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_02880b5b-6612-45cf-7cf3-639e27896573-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896575-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896578-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789657a-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789657c-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789657e-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896581-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896583-6797b212 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_02880b5b-6612-45cf-7cf3-639e27896585-6797b212 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_02880b5b-6612-45cf-7cf3-639e27896592-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896594-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896597-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896599-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965ac-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965ae-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965b0-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965b2-6797b212 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_02880b5b-6612-45cf-7cf3-639e278965b4-6797b212 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_02880b5b-6612-45cf-7cf3-639e278965c5-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965c7-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965ca-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965cc-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965ce-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965d0-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965d3-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965d5-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965d7-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965d9-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965dc-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965de-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965e0-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965e2-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965e5-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965e7-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965e9-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965eb-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965ee-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e278965f0-6797b212 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_02880b5b-6612-45cf-7cf3-639e278965f2-6797b212 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_02880b5b-6612-45cf-7cf3-639e278965ff-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896601-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896604-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896606-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896608-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789660a-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789660d-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789660f-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896611-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896613-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896616-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896618-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789661a-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789661c-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789661f-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896621-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896623-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896625-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896628-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789662a-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896646-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896648-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789664a-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789664c-6797b212 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_02880b5b-6612-45cf-7cf3-639e2789664e-6797b212 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_02880b5b-6612-45cf-7cf3-639e2789665b-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789665d-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896660-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896662-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896664-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896666-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896669-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789666b-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789666d-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e2789666f-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896672-6797b212, #w-node-_02880b5b-6612-45cf-7cf3-639e27896674-6797b212 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7dcda2be-6375-3da4-5dbd-db53c488cf0b-6797b214 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_3d3c53d8-39a2-5c7b-9eee-e13816e934c4-6797b214 {
  grid-area: 1 / 1 / 5 / 2;
}

#w-node-_5bfdc162-b423-4e97-ca84-8d23ce832679-6797b214 {
  grid-area: 1 / 2 / 5 / 3;
}

#w-node-c0464d1a-5038-6d3a-1dc4-e845826fef74-6797b214 {
  grid-area: 2 / 3 / 4 / 4;
}

#w-node-b93f5e0c-dac0-2c53-02af-8d03ff7ba2da-6797b215 {
  grid-area: 1 / 2 / 5 / 3;
}

#w-node-d5258a16-3751-e9c7-a46d-823bc2ca41c4-6797b215 {
  grid-area: 1 / 1 / 5 / 2;
}

#w-node-e84f50f7-b142-fd38-7aaa-fa19ba34dcd1-6797b215 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_6ecb2485-aa80-042d-0976-747a82468bff-6797b215 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_6ab03114-2562-11a2-77fa-e8009748d786-6797b215 {
  grid-area: 3 / 3 / 4 / 4;
}

#w-node-d14abbb7-7e2b-bb36-024d-fecf86f6d0e9-6797b215 {
  grid-area: 4 / 3 / 5 / 4;
}

#w-node-_018306bf-7dee-534a-d973-59993385bdea-6797b215, #w-node-da1850eb-92c7-13ae-d1c1-74818f4e6785-6797b215, #w-node-d61c0644-46e0-4b9f-4c04-c30a612ead8e-6797b215, #w-node-_4f38e60a-3699-d888-76b6-8ca7fc81104b-6797b215, #w-node-_5248d5bd-306c-1fbf-5df7-307723e1adaa-6797b215, #w-node-de59f208-a07e-85aa-7863-ad3bdff39aa4-6797b215, #w-node-a8b78028-1379-c7a1-a0cd-1008c9711339-6797b215, #w-node-a8b78028-1379-c7a1-a0cd-1008c971133a-6797b215, #w-node-a8b78028-1379-c7a1-a0cd-1008c971133c-6797b215, #w-node-ce0de555-92a8-3ba2-09de-a06cbe384cae-6797b215, #w-node-ce0de555-92a8-3ba2-09de-a06cbe384caf-6797b215, #w-node-ce0de555-92a8-3ba2-09de-a06cbe384cb1-6797b215, #w-node-_6da315eb-8cb3-bc25-790e-3b753726454a-6797b215, #w-node-_6da315eb-8cb3-bc25-790e-3b753726454b-6797b215, #w-node-_6da315eb-8cb3-bc25-790e-3b753726454d-6797b215, #w-node-c70629a6-ef58-d328-40a0-3a5bc86ca0cf-6797b215, #w-node-c70629a6-ef58-d328-40a0-3a5bc86ca0d0-6797b215, #w-node-c70629a6-ef58-d328-40a0-3a5bc86ca0d2-6797b215, #w-node-e08f22dc-ad7b-8bfc-b80b-53487efa495f-6797b215, #w-node-e08f22dc-ad7b-8bfc-b80b-53487efa4960-6797b215, #w-node-e08f22dc-ad7b-8bfc-b80b-53487efa4962-6797b215, #w-node-_16a53ad4-38ba-c06e-20bb-23ce4dd13774-6797b215, #w-node-_16a53ad4-38ba-c06e-20bb-23ce4dd13775-6797b215, #w-node-_16a53ad4-38ba-c06e-20bb-23ce4dd13777-6797b215, #w-node-ed6e06dd-10b4-01dc-ee14-96a328087469-6797b215, #w-node-ed6e06dd-10b4-01dc-ee14-96a32808746a-6797b215, #w-node-ed6e06dd-10b4-01dc-ee14-96a32808746c-6797b215, #w-node-_62b39125-8066-f121-8a79-42aa8ce64312-6797b215, #w-node-_62b39125-8066-f121-8a79-42aa8ce64313-6797b215, #w-node-_62b39125-8066-f121-8a79-42aa8ce64315-6797b215, #w-node-b4100026-8f76-d979-e06d-62816a0675db-6797b215, #w-node-b4100026-8f76-d979-e06d-62816a0675dc-6797b215, #w-node-b4100026-8f76-d979-e06d-62816a0675de-6797b215, #w-node-_5f7aaa08-6bf0-c2ea-f92b-7aaf0292f9e6-6797b215, #w-node-_5f7aaa08-6bf0-c2ea-f92b-7aaf0292f9e7-6797b215, #w-node-_5f7aaa08-6bf0-c2ea-f92b-7aaf0292f9e9-6797b215, #w-node-_25b46ba3-be2d-3956-94a9-7fc39ec58cb7-6797b215, #w-node-_25b46ba3-be2d-3956-94a9-7fc39ec58cb8-6797b215, #w-node-_25b46ba3-be2d-3956-94a9-7fc39ec58cba-6797b215, #w-node-df13f190-349d-189d-a4b5-22f22f9215ac-6797b216, #w-node-_442ac4d8-0795-f4a0-2f79-4d149f211516-6797b216, #w-node-a539f113-3fcb-3232-d60a-1c052350a4aa-6797b216, #w-node-_054362d3-68e8-3be7-c84a-c2847af792e0-6797b216, #w-node-af1093d0-9af2-2f4f-3213-fd735bb19ecc-6797b216, #w-node-ff8c3fbf-b64a-2af3-a01e-f2d1244dbe99-6797b216 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bd3d7e11-cfb1-8a36-b70e-4730d8d67629-6797b216 {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-ecb1e5d2-7ae8-ba88-50a4-35e71e5dcd28-6797b216 {
  grid-area: 1 / 1 / 4 / 2;
}

#w-node-e6cfffcb-1f88-10aa-8685-da3faa3c057c-6797b216 {
  grid-area: 1 / 3 / 3 / 4;
}

@media screen and (max-width: 767px) {
  #w-node-_442ac4d8-0795-f4a0-2f79-4d149f211516-6797b216 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-af1093d0-9af2-2f4f-3213-fd735bb19ecc-6797b216 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Modern Deluxe';
  src: url('../fonts/Modern-Deluxe.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}