:root {
  --blu: #1c2640;
  --azzurro: #617da6;
  --cta: #a39bff;
  --hover: #5b4dff;
  --black: black;
  --bianco-sporco: #faf7f7;
  --white: white;
  --azzurro-3: #c0cbdb;
  --oro: #c7a173;
  --hover-2: #0000001a;
  --rosa: #dec9c9;
  --titolo: freight-big-pro, sans-serif;
  --sottotitolo-paragrafo-cta: brandon-grotesque, sans-serif;
}

.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-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

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

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

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

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

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

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

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

body {
  color: var(--blu);
  font-family: brandon-grotesque, sans-serif;
  font-size: 14px;
  font-weight: 100;
  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: bold;
  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 {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

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

strong {
  font-weight: bold;
}

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

.todelete strong {
  font-weight: 800;
}

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

.footer_component {
  grid-row-gap: 5px;
  background-color: var(--blu);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 30px 60px 80px;
  display: flex;
}

.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: 0;
  background-color: var(--azzurro);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.button {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--cta);
  background-color: var(--cta);
  color: #fff;
  cursor: pointer;
  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 {
  border-color: var(--hover);
  background-color: var(--hover);
}

.button.is-negative {
  color: var(--cta);
  background-color: #fff;
  border-color: #fff;
}

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

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

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

.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 {
  border-bottom-color: var(--cta);
  color: var(--cta);
}

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

.button.is-text.is-negative:hover {
  border-bottom-color: var(--cta);
  color: var(--cta);
  background-color: #0000;
}

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

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

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

.container.align-center {
  align-items: center;
}

.container.align-center.gap-20 {
  z-index: 5;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

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

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

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

.container.padding.blu {
  background-color: var(--blu);
}

.container.is-promo {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: stretch stretch;
  max-width: none;
  max-height: 75vw;
  display: grid;
}

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

.section.is-technical {
  background-image: linear-gradient(#0003, #0003), url("https://cdn.prod.website-files.com/652fa25ddcc737f51042aeaf/6548a518303b28ed06f2f691_AC1225_New%20Dimora_Cornate%20d'Adda_vp03_rev00%20copia.webp");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.section.bg-color_blu {
  background-color: var(--blu);
  position: relative;
}

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

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

.section.bg-color_blu {
  background-color: #1c2640;
}

.section.margin-bottom-50 {
  padding-bottom: 50px;
  padding-left: 100px;
  padding-right: 100px;
}

.section.margin-bottom-0 {
  padding-bottom: 0;
  padding-left: 100px;
  padding-right: 100px;
}

.section.is-tipologici {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  padding-top: 0;
  display: flex;
}

.section.is-promo {
  background-color: var(--bianco-sporco);
}

.section.is-map {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  display: flex;
}

.header_component {
  z-index: 10;
  color: var(--white);
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 750px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header_component.is-page {
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  padding: 60px 100px 100px;
  overflow: visible;
}

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

.header_container.is-home {
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 750px;
  max-height: 100vh;
  padding: 40px 60px 25vh 40px;
  position: absolute;
  top: 0;
  bottom: 0;
}

.header_hover {
  z-index: 2;
  background-color: #0000001a;
  position: absolute;
  inset: 0%;
}

.header_hover.gradient {
  background-color: #0003;
  background-image: linear-gradient(to top, #00000080 31%, #0000 52%);
}

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

.header_background.is-home {
  background-image: none;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: static;
}

.header_background.is-page {
  background-image: none;
  width: 100%;
  height: 100vh;
  min-height: 750px;
}

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

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

.nav_component {
  z-index: 11;
  grid-column-gap: 60px;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 10px;
  display: flex;
  position: absolute;
  top: 0;
}

.nav_component.scroll {
  z-index: 9;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #ffffff80;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  box-shadow: 0 2px 5px #0003;
}

.nav_component.is-page {
  z-index: 11;
  background-color: #0000;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
}

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

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

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

.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_trigger, .cookie-banner_trigger, .manager_trigger {
  display: none;
}

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

.background-image.is-home {
  object-position: 100% 0%;
  flex: none;
  min-width: 1600px;
  max-width: none;
  height: auto;
}

.background-image.is-page {
  object-position: 50% 50%;
}

.list {
  grid-column-gap: 35px;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 0;
  padding-right: 60px;
  list-style-type: none;
  display: flex;
}

.list.scroll {
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.list.tablet-mobile_vertical {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
}

.list-item {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.list-item.centred {
  justify-content: center;
}

.list-item.desktop-hide {
  display: none;
}

.navbar_link {
  color: var(--blu);
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1.5px solid #0000;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .35s;
}

.navbar_link:hover {
  border-bottom: 1.5px solid var(--oro);
}

.navbar_link.w--current {
  border-bottom-width: 1.5px;
  border-bottom-color: var(--blu);
  font-weight: 500;
}

.navbar_link.margin-bottom-0 {
  color: var(--blu);
  margin-bottom: 0;
}

.navbar_link.margin-bottom-0.w--current {
  border-bottom-color: var(--blu);
  color: var(--blu);
}

.navbar_link.margin-bottom-0.white {
  color: var(--white);
  font-weight: 400;
}

.navbar_link.margin-bottom-0.white.w--current {
  border-bottom-color: var(--white);
}

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

.link-logo.margin-dx-20 {
  margin-right: 20px;
}

.logo-navbar {
  width: 250px;
  height: 145.984px;
}

.logo-navbar.is-pittogramma {
  width: 80px;
  height: 80px;
}

.logo-navbar.is-pittogramma.tablet-mobile {
  display: none;
}

.h1-titolo-hero {
  color: var(--blu);
  text-align: right;
  letter-spacing: 1px;
  width: 400px;
  font-family: freight-big-pro, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.h1-titolo-hero.align-center {
  text-align: center;
  width: auto;
}

.h1-titolo-hero.align-center.oro {
  color: var(--oro);
  width: auto;
}

.h1-titolo-hero.margin-top {
  margin-top: 12vh;
}

.h2-sottotitolo-hero {
  color: var(--blu);
  text-align: right;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 350px;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.h2-sottotitolo-hero.align-center {
  text-align: center;
  width: auto;
}

.h2-sottotitolo-hero.align-center.white {
  color: var(--white);
  width: auto;
}

.block-quote {
  text-align: center;
  border-left-style: none;
  max-width: 750px;
  margin-bottom: 0;
  font-family: freight-big-pro, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}

.block-quote.max-w_650 {
  max-width: 650px;
}

.img_column {
  z-index: 1;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: 50%;
}

.img_column.width-100 {
  max-width: 100%;
}

.img_column.h-60vw {
  height: 60vw;
  min-height: 750px;
}

.txt_column {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 50%;
  min-height: 50px;
  padding: 100px 40px 20px;
  display: flex;
  position: sticky;
  top: 0%;
}

.txt_column.position-satic {
  padding-top: 0;
  padding-bottom: 0;
  position: static;
}

.btn_wrapper {
  grid-column-gap: 10px;
  cursor: pointer;
  border: 3px solid #6f6aae;
  align-self: flex-start;
  margin-top: 40px;
  padding: 12px 35px 10px 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  display: flex;
}

.title_section {
  color: var(--oro);
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: freight-big-pro, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
}

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

.title_section.align-center.margin-bottom-40 {
  margin-bottom: 40px;
}

.title_section.align-center.margin-bottom-40.color-white {
  color: var(--white);
  letter-spacing: 1px;
}

.title_section.align-center.size-28 {
  font-size: 28px;
}

.title_section.align-center.is-promo {
  text-transform: uppercase;
}

.title_section.no-margin {
  text-align: center;
  margin-bottom: 0;
}

.wrapper_subtitle {
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.wrapper_subtitle.align-center {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  align-self: center;
}

.wrapper_subtitle.promo {
  background-color: #fff;
  justify-content: center;
  align-self: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px 10px;
}

.img_cover-minh {
  z-index: 1;
  object-fit: cover;
  min-height: 750px;
}

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

.p_txt {
  letter-spacing: 1px;
  margin-bottom: 60px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  transition: all .15s;
}

.p_txt.white {
  color: var(--white);
  margin-bottom: 60px;
}

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

.p_txt.center.margin-bottom-0 {
  margin-bottom: 0;
}

.p_txt.center.maxw-400 {
  max-width: 400px;
  margin-bottom: 0;
}

.subtitle_txt {
  color: var(--blu);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: brandon-grotesque, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

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

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

.subtitle_txt.align-center.maxw-400 {
  max-width: 400px;
}

.container2 {
  z-index: 1;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

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

.container2.direction-vertical {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: column;
  align-items: center;
}

.container2.boxes_wrap-scroll {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: stretch;
  width: 80%;
}

.container2.is-map {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  align-items: center;
}

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

.wrapper_txt-column.is-centred {
  align-items: center;
}

.wrapper_txt-column.is-centred.max-w-600 {
  max-width: 600px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.segno {
  background-image: url('../images/element---blue.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-bottom: 2px;
}

.segno.white {
  background-image: url('../images/element---white.svg');
}

.segno.white.rotate {
  margin-bottom: 0;
  transform: rotate(90deg);
}

.segno.white.rotate.color-blu {
  background-image: url('../images/element---blue.svg');
}

.segno.rotate {
  transform-style: preserve-3d;
  background-position: 50% 0;
  transform: translate3d(0, 0, 90px);
}

.segno.reverse {
  transform: rotate(180deg);
}

.block-quote_semi-bold, .title_section_semi-bold {
  font-weight: 600;
}

.btn {
  border: 1px solid var(--oro);
  background-color: var(--oro);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 22px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 400;
  transition: color .35s, background-color .35s;
}

.btn:hover {
  color: var(--oro);
  background-color: #fff0;
}

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

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

.img-full.gallery {
  background-image: linear-gradient(#0000004d, #0000004d), url("https://cdn.prod.website-files.com/652fa25ddcc737f51042aeaf/652fa5cb660aa6157f6af37d_AC12125_New%20Dimora_Cornate%20d'Adda_vp03_rev03%20copia.webp");
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.flag-02_component {
  background-color: var(--azzurro);
  cursor: pointer;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  transition: background-color .6s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  box-shadow: 0 0 6px 1px #0000001a;
}

.flag-02_component:hover {
  background-color: var(--oro);
}

.flag-02_container {
  z-index: 9;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: fixed;
  top: 20vh;
  right: 10px;
}

.flag-02_icon.size {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.flag-02_icon.size.hide {
  display: none;
}

.button-2 {
  border: 1px solid var(--oro);
  background-color: var(--oro);
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 400;
  transition: color .35s, background-color .35s;
}

.button-2:hover {
  background-color: var(--white);
  color: var(--oro);
}

.button-2.is-text {
  color: var(--oro);
  background-color: #0000;
  border-style: none;
  text-decoration: underline;
  transition: color .35s;
}

.button-2.is-text:hover {
  color: var(--blu);
}

.button-2.is-secondary {
  border: 1px solid var(--oro);
  background-color: var(--white);
  color: var(--oro);
}

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

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

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

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

.flag-02_text {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  font-family: freight-big-pro, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.cookie-banner_close_txt {
  border-bottom: 1px solid var(--blu);
  color: var(--blu);
  font-size: 14px;
  font-weight: 400;
  transition: color .35s;
}

.cookie-banner_close_txt:hover {
  border-bottom-color: var(--oro);
  color: var(--oro);
}

.cookie-prefs_name {
  color: var(--blu);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: auto;
  font-size: 16px;
  font-weight: 400;
}

.cookie-banner_link {
  color: var(--azzurro);
  white-space: nowrap;
  transition: color .35s;
}

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

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

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

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

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

.banner_title {
  color: var(--blu);
  font-family: freight-big-pro, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2em;
}

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

.cookie-prefs_option {
  border-bottom: 1px solid var(--azzurro);
  padding-bottom: 16px;
  position: relative;
}

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

.cookie-prefs_title {
  color: var(--blu);
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2em;
}

.cookie-prefs_description {
  color: var(--blu);
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  transition: height .25s cubic-bezier(.455, .03, .515, .955);
}

.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: auto;
  padding: 48px 40px;
  font-size: 12px;
  line-height: 1;
  display: flex;
  position: relative;
}

.cookie-banner_wrapper {
  z-index: 998;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0000001a;
  flex-direction: column;
  padding: 24px 32px;
  display: none;
  position: fixed;
  inset: 0;
  overflow: auto;
}

.cookie-prefs_label {
  color: var(--blu);
  font-weight: 400;
}

.cookie-prefs_nascondi {
  display: none;
}

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

.cookie-prefs_text {
  color: var(--blu);
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  transition: height .25s cubic-bezier(.455, .03, .515, .955);
  overflow: hidden;
}

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

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

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

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

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

.cookie-banner_text {
  letter-spacing: 1px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

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

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

.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;
  background-color: var(--bianco-sporco);
  padding: 6px;
  position: absolute;
  top: 0;
  right: 0;
}

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

.wrap_maps {
  width: 100%;
  height: 600px;
}

.form_popup {
  z-index: 100;
  background-color: var(--azzurro);
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.wrap_form {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  overflow: auto;
}

.popup01_x {
  z-index: 5;
  border: 1px solid var(--white);
  color: var(--white);
  cursor: pointer;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50px;
  right: 40px;
}

.popup01_x:hover {
  border-color: var(--oro);
  background-color: var(--oro);
  color: #fff;
}

.popup01_x.popup {
  margin-bottom: 20px;
  position: absolute;
  top: auto;
  bottom: 100%;
  right: 0;
}

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

.x01_asta:hover {
  color: #222;
}

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

.form_wrapper {
  width: 70%;
  max-width: 750px;
}

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

.button-3.is-submit {
  border: 1px solid var(--oro);
  background-color: var(--oro);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  width: 150px;
  font-weight: 400;
  transition: background-color .35s;
}

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

.form_link {
  color: var(--oro);
  transition: color .35s;
}

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

.form_field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--oro);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 0;
  margin-bottom: 15px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
}

.form_field:focus {
  border-bottom-color: var(--oro);
  color: var(--oro);
  background-color: #ffffff0d;
}

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

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

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

.form_text {
  color: var(--white);
  letter-spacing: 1px;
}

.form_text.margin-top-bottom {
  margin-top: 20px;
  margin-bottom: 15px;
}

.form_text.margin-bottom-top {
  margin-top: 15px;
  margin-bottom: 20px;
}

._3-img-quad_wrapper {
  grid-column-gap: 5px;
  justify-content: flex-start;
  align-self: center;
  align-items: stretch;
  width: auto;
  display: flex;
}

._3-img-quad_wrapper.align-dx {
  justify-content: flex-end;
  align-self: flex-end;
}

._3-img-quad_wrapper.align-sx {
  justify-content: flex-start;
  align-self: flex-start;
}

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

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

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

.image-cover.is-left {
  object-position: 0% 50%;
}

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

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

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

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

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

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

.box-scroll {
  z-index: 1;
  border: 1px solid var(--blu);
  box-shadow: none;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.box_mask {
  z-index: 1;
  background-color: var(--white);
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: 30vw;
  height: 20vw;
  display: flex;
  position: relative;
}

.box_mask.is-sold-out {
  filter: grayscale();
}

.box-dida {
  z-index: 1;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: freight-big-pro, sans-serif;
  font-size: 24px;
  font-weight: 400;
  display: flex;
  position: relative;
}

.gallery_hover {
  z-index: 2;
  letter-spacing: 1px;
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  font-family: freight-big-pro, sans-serif;
  font-size: 40px;
  font-weight: 500;
  transition: background-color .35s;
  display: flex;
  position: absolute;
  inset: 0;
}

.gallery_hover:hover {
  -webkit-text-fill-color: inherit;
  background-color: #0003;
  background-clip: border-box;
}

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

.header_component_nav-small {
  z-index: 10;
  background-color: var(--azzurro);
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  position: relative;
}

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

.accordion_img_wrap {
  color: #fff;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 400px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.footer-01_partner_text {
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: freight-big-pro, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.footer-01_partner_logo {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 120px;
}

.footer-01_partner_logo.iad {
  background-image: url('../images/Logo-iad.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 140px;
  transition: all .35s;
}

.footer-01_partner_logo.iad:hover {
  background-image: url('../images/Logo-iad---color.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-01_partner {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.footer-01_partners {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.footer-01_link_wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.footer-01_link {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  transition: color .35s;
}

.footer-01_link:hover {
  color: var(--azzurro);
}

.footer-01_link.is-classe-energetica {
  text-transform: none;
  cursor: default;
  font-size: 14px;
  transition: none;
}

.footer-01_link.is-classe-energetica:hover {
  color: var(--white);
}

.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(--white);
  cursor: pointer;
  text-decoration: none;
  transition: color .35s;
}

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

.footer_txt {
  color: var(--white);
  text-align: right;
  letter-spacing: 1px;
  font-size: 12px;
}

.box-scroll-2 {
  z-index: 1;
  box-shadow: none;
  border: 1px solid #1c2640;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

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

.container3 {
  background-color: var(--bianco-sporco);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container3.reverse {
  background-color: var(--bianco-sporco);
  flex-direction: row-reverse;
}

.overlying_txt_wrap {
  background-color: var(--bianco-sporco);
  flex-direction: column;
  align-self: center;
  align-items: center;
  width: auto;
  max-width: 540px;
  padding: 100px 100px 100px 50px;
  display: flex;
}

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

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

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

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

.modal-01_button {
  cursor: default;
  border-radius: 4px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 250px;
  text-decoration: none;
  transition: none;
  display: flex;
  box-shadow: 0 0 6px 4px #0000000d;
}

.modal-01_button:hover {
  color: #a39bff;
}

.modal-01_image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
}

.modal-01_image.euro {
  background-image: url('../images/Euro.webp');
}

.modal-01_image.euro-2 {
  background-image: url('../images/Euro2.webp');
}

.modal-01_image.marazzi {
  background-image: url('../images/Marazzia.webp');
}

.modal-01_image.florim {
  background-image: url('../images/Florim.webp');
}

.modal-01_image.ali {
  background-image: linear-gradient(#ffffff1a, #ffffff1a), url('../images/ALI.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.modal-01_image.gaia {
  background-image: linear-gradient(#fff3, #fff3), url('../images/Gaia.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.modal-01_image.ideal, .modal-01_image.geberit {
  background-color: var(--bianco-sporco);
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
}

.modal-01_image.ideal-2, .modal-01_image.fondital {
  background-color: var(--hover-2);
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
}

.modal-01_image.irsap {
  background-image: linear-gradient(#ffffffb3, #ffffffb3), url('../images/AresDETT02-copia.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.modal-01_image.bticino {
  background-image: linear-gradient(#ffffffb3, #ffffffb3), url('../images/bianca-copia.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.modal-01_popup_close {
  z-index: 1;
  color: #5b4cff;
  cursor: pointer;
  background-color: #fff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  transition: all .25s;
  position: absolute;
  inset: -15px -15px auto auto;
}

.modal-01_popup_close:hover {
  color: #a39bff;
}

.modal-01_logo {
  object-fit: contain;
  width: 140px;
  height: 50px;
}

.modal-01_icon {
  color: var(--blu);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  display: flex;
}

.modal-01_component {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.image-contain {
  object-fit: contain;
  width: 100%;
  height: 100px;
  margin-bottom: 60px;
}

.image-contain.euro {
  height: 80px;
}

.image-contain.bticino {
  height: 50px;
}

.image-contain.marazzi {
  height: 40px;
}

.image-contain.florim {
  height: 60px;
}

.image-contain.gaia {
  height: 150px;
}

.image-contain.ali {
  height: 50px;
}

.image-contain.geberit {
  height: 33px;
}

.image-contain.irsap {
  height: 45px;
}

.image-contain.fondital {
  height: 60px;
}

.discover-more {
  color: var(--blu);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
  justify-content: center;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  display: none;
}

.popup-01_wrapper {
  background-color: #fff;
  border: 1px solid #6f6aae;
  flex-direction: row;
  flex: none;
  height: 600px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 20px;
  display: flex;
  position: relative;
}

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

.wrap-image.partner {
  width: 250px;
}

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

.image-cover-2.position {
  object-position: 60% 50%;
}

.image-cover-2.position_10-50 {
  object-position: 10% 50%;
}

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

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

.image-cover-2.position_40-50 {
  object-position: 40% 50%;
}

.image-cover-2.position_65-50 {
  object-position: 65% 50%;
}

.image-cover-2.position_90-50 {
  object-position: 90% 50%;
}

.popup-01_component {
  z-index: 100;
  background-color: #0009;
  flex-direction: column;
  align-items: center;
  padding: 60px;
  display: none;
  position: fixed;
  inset: 0;
  overflow: auto;
}

.popup-01_component.euro, .popup-01_component.euro-2, .popup-01_component.bticino, .popup-01_component.marazzi, .popup-01_component.florim, .popup-01_component.gaia, .popup-01_component.ali, .popup-01_component.geberit, .popup-01_component.ideal, .popup-01_component.ideal2, .popup-01_component.irsap, .popup-01_component.fondital {
  display: none;
}

.popup-01_container {
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 100px;
  display: flex;
}

.contain_sx {
  background-image: url("https://cdn.prod.website-files.com/652fa25ddcc737f51042aeaf/6548a762303b28ed06f544d3_AC12125_New%20Dimora_Cornate%20d'Adda_vp04_Rev02%20copia.webp");
  background-position: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 40%;
  display: flex;
  position: sticky;
  top: 0;
  overflow: visible;
}

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

.container-3.is-technical {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  background-color: #ffffffe6;
  align-items: center;
  padding: 40px;
}

.heading {
  color: var(--blu);
  letter-spacing: 1px;
  font-family: freight-big-pro, sans-serif;
  font-weight: 600;
}

.text-block-19 {
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

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

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

.button-5.is-icon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--blu);
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: color .35s;
  display: flex;
}

.button-5.is-icon:hover {
  color: var(--oro);
}

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

.cookie_tab_link {
  color: #1a6169;
}

.heading-2 {
  color: var(--oro);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.link-gdpr {
  color: var(--azzurro);
}

.note_txt {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1100px;
  display: flex;
}

.paragrafo-gdpr {
  color: var(--blu);
  font-family: brandon-grotesque, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.h1-gdpr {
  color: var(--oro);
  letter-spacing: 1px;
  margin-top: 0;
  font-family: freight-big-pro, sans-serif;
  font-weight: 600;
}

.text-cookie {
  color: var(--azzurro);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.text-cookie.hide {
  display: none;
}

.cookie_tab_cell {
  border: 1px #2b2b2b;
  border-style: none none solid solid;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
}

.cookie_tab_cell.is-heading {
  background-color: var(--azzurro);
  color: #fff;
  border-top-style: solid;
  align-items: center;
  font-weight: 400;
  display: flex;
}

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

.cookie_tab_wrapper.hide {
  display: none;
}

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

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

.pittogramma-absolute {
  z-index: 0;
  opacity: .1;
  background-image: url('../images/Risorsa-4.svg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 550px;
  height: 474px;
  position: absolute;
  inset: auto auto 0 0;
}

.pittogramma-absolute.reverse {
  background-image: url('../images/Risorsa-3.svg');
  background-position: 100% 100%;
  inset: auto 0% 0% auto;
}

.pittogramma-absolute.reverse.opacity5 {
  opacity: .05;
}

.lightbox_icon-2 {
  color: #1c2640;
  background-color: #ececec;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding-left: 7px;
  padding-right: 7px;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.div-block {
  opacity: .05;
  background-image: url('../images/outline-pt1.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 300px;
  height: 300px;
  margin-top: auto;
  margin-bottom: auto;
  display: block;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.div-block.sx {
  background-image: url('../images/outline-pt2.svg');
  background-position: 0%;
  inset: 0% auto 0% 0%;
}

.div-block-2 {
  background-image: url('../images/Risorsa-01.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 40px;
}

.div-block-2.top {
  transform: rotate(180deg);
}

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

.flex-block {
  align-items: flex-end;
}

.menu-wrap {
  display: none;
}

.menu_tablet-mobile {
  z-index: 100;
  background-color: var(--azzurro);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.wrap_menu {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  overflow: auto;
}

.popup02_x {
  z-index: 5;
  border: 1px solid var(--white);
  color: var(--white);
  cursor: pointer;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
  position: fixed;
  inset: 50px 40px 45px auto;
}

.popup02_x:hover {
  border-color: var(--oro);
  background-color: var(--oro);
  color: #fff;
}

.flag-02_component-2 {
  background-color: var(--azzurro);
  cursor: pointer;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  transition: background-color .6s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
  box-shadow: 0 0 6px 1px #0000001a;
}

.flag-02_component-2:hover {
  background-color: var(--oro);
}

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

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

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

.display-none {
  display: none;
}

.popup-02_logo {
  width: 60px;
  height: 60px;
  margin-bottom: 60px;
}

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

.x-02_asta._2 {
  transform: rotate(-45deg);
}

.bottommenu-02_button {
  color: #a39bff;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #fff;
  margin-top: 20px;
  padding: 13px 20px 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.popup-02_component {
  z-index: 20;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #0009;
  flex-direction: column;
  align-items: center;
  padding: 60px;
  display: none;
  position: fixed;
  inset: 0;
  overflow: auto;
}

.popup-02_x {
  border: 1px solid var(--white);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  transition: background-color .35s;
  display: flex;
  position: absolute;
  top: 60px;
  right: 60px;
}

.popup-02_x:hover {
  background-color: var(--oro);
}

.popup-02_wrapper {
  border: 1px solid var(--white);
  background-color: var(--azzurro);
  transform: scale3d(1none, 1none, 1none);
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  border-top-left-radius: 120px;
  border-bottom-right-radius: 120px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  padding: 60px 80px;
  transition: transform .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.popup-02_wrapper:hover {
  transform: scale(1.1);
}

.popup-01_title {
  letter-spacing: 1px;
  font-family: freight-big-pro, sans-serif;
  font-size: 30px;
  line-height: 40px;
}

.popup-02_promo {
  text-transform: uppercase;
  background-color: #ffffff80;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 12px 20px;
}

.subtitle_txt-2 {
  color: #1c2640;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: brandon-grotesque, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.subtitle_txt-2.white {
  color: #fff;
}

.subtitle_txt-2.white.promo {
  color: #1c2640;
  font-size: 21px;
  font-weight: 500;
}

.popup-01_subtitle {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.disclaimer {
  letter-spacing: 1px;
  margin-bottom: 30px;
}

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

.label02_component {
  z-index: 10;
  background-color: var(--azzurro);
  color: #fff;
  cursor: pointer;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 270px;
  padding: 20px 10px;
  text-decoration: none;
  transition: all .35s;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 60px;
}

.label02_component:hover {
  background-color: var(--oro);
}

.label02_title_wrap {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.label02_title {
  border-bottom: 1px solid var(--bianco-sporco);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 25px;
  padding-bottom: 5px;
  padding-left: 2px;
  padding-right: 2px;
  transition: border-color .35s;
}

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

.label02_line {
  background-color: #fff;
  flex: none;
  width: 90%;
  height: 1px;
  margin-bottom: 20px;
}

.label02_txt {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: freight-big-pro, sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
}

.label02_subtitle {
  background-color: var(--bianco-sporco);
  color: var(--blu);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 220px;
  padding: 3px 4px 2px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.capitalize {
  text-transform: uppercase;
}

.gtm {
  display: none;
}

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

.grid-tipologici {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.card-tipologico {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 25vw;
  min-width: 270px;
  height: 35vw;
  min-height: 450px;
  display: flex;
  position: relative;
  box-shadow: 0 0 15px #0000004d;
}

.txt-tipologico {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--blu);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 50%;
  padding: 30px 10px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.txt-tipologico.invert {
  justify-content: center;
  align-items: center;
}

.txt-tipologico.is-sold-out {
  background-color: #535a6d;
  justify-content: center;
  align-items: center;
  height: auto;
}

.text-block-20 {
  color: var(--white);
  text-align: center;
  font-family: brandon-grotesque, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}

.text-span-3 {
  color: var(--oro);
  font-family: freight-big-pro, sans-serif;
  font-size: 34px;
  line-height: 42px;
}

.text-block-21 {
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.text-span-4 {
  font-size: 24px;
  font-weight: 500;
}

.text-block-22 {
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.text-span-5 {
  background-color: var(--oro);
  color: var(--white);
  text-transform: uppercase;
  padding-left: 5px;
  padding-right: 5px;
  font-family: freight-big-pro, sans-serif;
}

.text-barrato {
  text-decoration: line-through;
}

.img-tipologico {
  height: 50%;
  position: absolute;
  inset: 0% 0% 250px;
  overflow: hidden;
}

.img-tipologico.is-sold-out {
  height: 100%;
}

.icon-plus {
  z-index: 2;
  background-color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  position: absolute;
  top: -18px;
  left: auto;
  right: auto;
}

.icon-embed-xxsmall {
  color: var(--oro);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.card_lightbox {
  z-index: 2;
  opacity: 0;
  background-color: #0006;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  text-decoration: none;
  transition: background-color .4s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  inset: 0;
}

.div-block-3 {
  border: 1px solid var(--oro);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 450px;
  display: flex;
}

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

.div-block-4 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60%;
  padding: 30px 30px 60px;
  display: flex;
}

.div-block-5 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-top: 1px solid var(--oro);
  background-color: #c7a17333;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40%;
  padding: 60px 30px;
  display: flex;
}

.div-block-6 {
  width: 100%;
  height: 100%;
  position: relative;
}

.div-block-6.is-mobile {
  display: none;
}

.slider_promo-cucina {
  width: 100%;
  height: 100%;
}

.right-arrow, .left-arrow, .slide-nav {
  display: none;
}

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

.div-block-7 {
  background-color: var(--bianco-sporco);
  flex: 1;
  min-width: 500px;
  height: 650px;
}

.text-block-23 {
  color: var(--oro);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: freight-big-pro, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.text-block-24 {
  text-transform: uppercase;
  font-family: brandon-grotesque, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.div-block-8 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

.icon-map_div {
  background-color: var(--azzurro);
  border-radius: 100%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: flex;
}

.icon-map_div.sport {
  background-color: #006242;
}

.icon-map_div.interesse {
  background-color: #a8745f;
}

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

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

.icon-map {
  color: var(--oro);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

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

.div-block-13 {
  width: 20px;
  height: 20px;
}

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

.div-block-14 {
  background-color: #c7a1734d;
  width: 100%;
  height: 1px;
  margin-bottom: 10px;
}

.slider_big {
  width: 100%;
  height: 55vw;
}

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

.right-arrow-2, .left-arrow-2 {
  font-size: 20px;
}

.icon {
  background-color: var(--azzurro);
  outline-color: var(--oro);
  outline-offset: -5px;
  outline-width: 1px;
  outline-style: solid;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
}

.block-quote_map {
  text-align: center;
  border-left-style: none;
  max-width: 750px;
  margin-bottom: 0;
  font-family: freight-big-pro, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
}

.block-quote_map.max-w_650 {
  max-width: 650px;
}

.ancora-mappa {
  position: absolute;
  inset: -160px auto auto 0%;
}

.text-label {
  z-index: 1;
  background-color: var(--azzurro-3);
  text-align: center;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 500;
  position: absolute;
  inset: 0% 0% auto;
}

.text-label.is-ultima-disp {
  background-color: var(--oro);
  color: var(--white);
}

.text-label.is-top {
  background-color: var(--azzurro-3);
  width: 100%;
  position: static;
  inset: auto 0% 0%;
}

.text-label.is-top.is-ultima-disp {
  background-color: var(--oro);
}

.text-label.is-top.is-invendita {
  background-color: var(--white);
}

.text-label.is-static {
  position: static;
}

.div-block-15 {
  display: flex;
}

.contact_item {
  grid-column-gap: 20px;
  grid-row-gap: 5px;
  border-top: 1px solid var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 70%;
  padding-top: 10px;
  font-style: normal;
  display: flex;
}

.contact_item.is-footer {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-top: 20px;
}

.contact_title {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

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

.contact_link:hover {
  color: #fbfaf7;
  text-decoration: none;
}

.contact_link.text-breaking-nowrap {
  background-image: url('../images/telefono.svg');
  background-position: 0 0;
  background-size: auto;
  padding-left: 20px;
}

.footer_link-2 {
  color: #ffffffb3;
  letter-spacing: .5px;
  font-size: 12px;
  text-decoration: none;
  transition: color .2s;
}

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

.footer_link-2.telefono {
  background-image: url('../images/telefono.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-left: 20px;
  font-weight: 500;
}

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

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

  .container.is-promo {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto 400px;
    grid-template-columns: 1fr;
    max-height: none;
  }

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

  .section.bg-color_blu {
    flex-direction: column;
    align-items: center;
  }

  .section.margin-bottom-50, .section.margin-bottom-0 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .section.tablet-padding-0, .section.tablet_padding-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.tablet-padding-top-0 {
    padding-top: 0;
    padding-bottom: 50px;
  }

  .section.tablet_padding-top-50_bottom-0 {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .header_component {
    background-color: var(--white);
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    min-height: auto;
    margin-bottom: 40px;
    padding-top: 150px;
  }

  .header_component.is-page {
    background-color: var(--white);
    justify-content: flex-end;
    align-items: center;
    height: auto;
    padding: 80px 0 0;
  }

  .header_container.is-home {
    justify-content: flex-start;
    align-items: center;
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 50px 0 0;
    position: relative;
    inset: 0%;
  }

  .header_container.is-page {
    padding-top: 100px;
    inset: 0%;
  }

  .header_hover {
    display: none;
  }

  .header_background.is-home {
    position: relative;
  }

  .header_background.is-page {
    height: 500px;
    min-height: auto;
    display: flex;
    position: relative;
  }

  .scroll_component.invert-tablet {
    filter: invert();
  }

  .nav_component {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .nav_component.scroll {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .nav_component.is-page {
    grid-column-gap: 0px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #ffffff80;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .background-image.is-home {
    object-position: 50% 50%;
    min-width: auto;
    max-width: 100%;
    height: 100%;
  }

  .background-image.is-page {
    min-width: auto;
  }

  .list {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  .list.scroll {
    padding-left: 0;
    padding-right: 0;
  }

  .list.tablet-mobile_vertical {
    align-self: center;
    margin-top: auto;
    margin-bottom: auto;
  }

  .list-item.centred, .list-item.is-last.tablet-hide, .list-item.tablet-hide {
    display: none;
  }

  .list-item.desktop-hide {
    display: block;
  }

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

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

  .link-logo.tablet-hide {
    display: none;
  }

  .logo-navbar.is-pittogramma, .logo-navbar.is-pittogramma.tablet-mobile {
    display: block;
  }

  .logo-navbar.is-pittogramma.is-page {
    display: none;
  }

  .h1-titolo-hero {
    color: #1f2320;
    text-align: center;
    width: 700px;
  }

  .h1-titolo-hero.margin-top {
    color: var(--oro);
    margin-top: 0;
  }

  .h2-sottotitolo-hero {
    color: #1f2320;
    text-align: center;
    width: 700px;
    margin-bottom: 30px;
  }

  .h2-sottotitolo-hero.align-center.white {
    color: var(--blu);
  }

  .block-quote {
    max-width: 600px;
  }

  .img_column {
    max-width: 90%;
  }

  .txt_column {
    max-width: 100%;
    padding-top: 20px;
    position: static;
  }

  .btn_wrapper {
    grid-column-gap: 8px;
    align-self: center;
    padding: 10px 8px;
  }

  .title_section, .title_section.align-center.margin-bottom-40.color-white {
    text-align: center;
  }

  .wrapper_subtitle {
    grid-column-gap: 0px;
    grid-row-gap: 10px;
    flex-direction: column;
    align-self: center;
  }

  .wrapper_subtitle.promo {
    flex-direction: row;
  }

  .img_cover-minh {
    object-fit: cover;
    height: 100%;
    min-height: auto;
  }

  .p_txt {
    text-align: center;
    font-size: 1.15em;
  }

  .p_txt.white, .p_txt.center {
    font-size: 20px;
  }

  .p_txt.center.tablet_margin-bottom-0 {
    margin-bottom: 0;
  }

  .subtitle_txt {
    text-align: center;
    font-size: 14px;
  }

  .subtitle_txt.white {
    font-size: 15px;
  }

  .container2 {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

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

  .wrapper_txt-column {
    grid-row-gap: 15px;
    align-self: center;
    align-items: center;
  }

  .segno {
    transform: rotate(90deg);
  }

  .segno.white {
    width: 15px;
    height: 15px;
    transform: rotate(90deg);
  }

  .segno.left {
    transform: rotate(0);
  }

  .flag-02_component {
    flex-direction: row;
    justify-content: flex-start;
  }

  .flag-02_component.reverse {
    flex-direction: row-reverse;
  }

  .flag-02_container {
    align-items: flex-start;
    margin-top: 0;
    right: 20px;
  }

  .flag-02_text {
    padding-left: 10px;
    padding-right: 10px;
  }

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

  .wrap_form {
    flex-direction: column;
    margin-top: auto;
    margin-bottom: auto;
    padding: 60px;
  }

  .popup01_x {
    flex: none;
    align-self: flex-end;
    position: relative;
    top: -40px;
    right: -40px;
  }

  .form_wrapper {
    width: 100%;
  }

  .form_field {
    line-height: 20px;
  }

  .quote_img-frame {
    display: none;
  }

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

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

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

  .box_mask {
    width: 80%;
    height: 40vw;
  }

  .box-dida {
    width: 80%;
  }

  .section-gallery {
    grid-row-gap: 4px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .header_component_nav-small {
    max-height: 750px;
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery_image-preview {
    object-position: 50% 70%;
  }

  .accordion_img_wrap {
    min-height: auto;
  }

  .footer-01_partner_text {
    margin-bottom: 15px;
  }

  .footer-01_partners {
    flex-wrap: wrap;
  }

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

  .container3 {
    flex-direction: column-reverse;
    width: 90%;
  }

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

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

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

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

  .overlying_image.reverse-hor.reverse-ver {
    margin: 0;
  }

  .overlying_image.reverse-hor.reverse-ver.spacing {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .modal-01_button {
    justify-content: center;
    width: 200px;
    margin-bottom: 0;
    position: relative;
  }

  .image-contain.is-logo {
    width: 200px;
    height: 117px;
    margin-bottom: 0;
  }

  .popup-01_component {
    padding: 40px;
  }

  .popup-01_container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .contain_sx {
    align-self: stretch;
    position: sticky;
    top: 0;
    overflow: auto;
  }

  .pittogramma-absolute {
    width: 400px;
    height: 380px;
  }

  .flex-block {
    margin-top: 20px;
  }

  .menu-wrap {
    background-color: var(--azzurro);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    overflow: hidden;
  }

  .menu-wrap.margin-top {
    margin-top: 20px;
  }

  .menu_tablet-mobile {
    z-index: 50;
    align-items: flex-start;
    display: none;
  }

  .wrap_menu {
    margin-top: auto;
    margin-bottom: auto;
  }

  .popup02_x {
    flex: none;
    align-self: flex-end;
    top: 20px;
    bottom: auto;
    right: 20px;
  }

  .popup-02_component {
    padding: 40px;
  }

  .popup-02_x {
    background-color: var(--oro);
    top: 40px;
    right: 40px;
  }

  .popup-02_wrapper:hover {
    transform: none;
  }

  .subtitle_txt-2 {
    text-align: center;
    font-size: 14px;
  }

  .subtitle_txt-2.white {
    font-size: 15px;
  }

  .subtitle_txt-2.white.promo {
    margin-left: 10px;
    margin-right: 10px;
  }

  .popup-01_subtitle {
    line-height: 28px;
  }

  .label02_component {
    border-style: solid solid none;
    right: 20px;
  }

  .label02_title_wrap {
    display: none;
  }

  .label02_title {
    border-bottom-style: none;
  }

  .label02_txt {
    padding-bottom: 0;
  }

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

  .card-tipologico {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    min-width: auto;
    height: 400px;
    min-height: auto;
  }

  .txt-tipologico {
    justify-content: center;
    align-items: center;
    width: 50%;
    height: auto;
    inset: 0% 0% 0% auto;
  }

  .txt-tipologico.invert {
    height: auto;
    inset: 0% auto 0% 0%;
  }

  .img-tipologico {
    width: 50%;
    height: 100%;
    bottom: 0%;
  }

  .img-tipologico.invert {
    inset: 0% 0% 0% auto;
  }

  .icon-plus {
    inset: auto auto auto -18px;
  }

  .icon-plus.inverse {
    inset: auto -18px auto auto;
  }

  .div-block-6.is-hide {
    display: none;
  }

  .div-block-6.is-mobile {
    display: block;
  }

  .div-block-7 {
    flex: 0 auto;
    width: 100%;
  }

  .block-quote_map {
    max-width: 600px;
  }

  .contact_item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer_component {
    justify-content: center;
    align-items: center;
  }

  .contact_component {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section {
    padding: 50px 20px;
  }

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

  .section.is-intro, .section.bg-color_blu {
    padding: 50px 20px;
  }

  .section.bg-color_blu.flex {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .section.margin-bottom-50, .section.margin-bottom-0 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.is-gdpr {
    padding-top: 100px;
  }

  .header_component {
    background-color: var(--white);
    padding-top: 150px;
  }

  .header_component.is-page {
    margin-top: 0;
  }

  .header_container.is-home {
    padding-top: 50px;
  }

  .header_container.is-page {
    width: 90%;
  }

  .nav_component {
    flex-direction: row-reverse;
    justify-content: space-between;
    display: flex;
  }

  .nav_component.scroll, .nav_component.is-page {
    flex-direction: row-reverse;
  }

  .list.mobile-hide {
    display: flex;
  }

  .list-item.desktop-hide {
    display: block;
  }

  .link-logo.tablet-hide {
    margin-bottom: 80px;
    display: none;
  }

  .logo-navbar {
    width: 200px;
    height: 120px;
  }

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

  .h2-sottotitolo-hero {
    width: 400px;
  }

  .block-quote {
    font-size: 28px;
    line-height: 38px;
  }

  .img_column {
    max-width: 100%;
  }

  .img_column.h-60vw {
    min-height: auto;
  }

  .txt_column {
    margin-top: 0;
    padding-top: 10%;
  }

  .title_section {
    width: 340px;
    font-size: 30px;
    line-height: 38px;
  }

  .title_section.align-center {
    font-size: 30px;
    line-height: 38px;
  }

  .title_section.no-margin {
    width: auto;
  }

  .img_cover-minh {
    min-height: 600px;
  }

  .p_txt {
    width: 350px;
    font-size: 1.1em;
  }

  .p_txt.white, .p_txt.center {
    font-size: 18px;
    line-height: 28px;
  }

  .subtitle_txt {
    width: 350px;
    font-size: 14px;
    font-weight: 400;
  }

  .container2, .container2.direction-vertical {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .container2.boxes_wrap-scroll {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .wrapper_txt-column.is-centred.max-w-600 {
    align-self: center;
  }

  .img-full.gallery {
    background-position: 40%;
  }

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

  .flag-02_component.reverse {
    flex-direction: row;
  }

  .flag-02_container {
    align-items: flex-end;
    top: 100px;
    left: auto;
    right: 20px;
  }

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

  .banner_title {
    font-size: 20px;
  }

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

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

  .cookie-banner_text {
    margin-right: 0;
  }

  .wrap_maps {
    height: 500px;
  }

  .wrap_form {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .popup01_x {
    right: -20px;
  }

  .form_field {
    margin-bottom: 15px;
  }

  .section-2 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-2.quote {
    grid-template-rows: 600px;
    margin-bottom: 50px;
  }

  .box_mask {
    width: 100%;
    height: 50vw;
  }

  .section-gallery {
    min-height: 90vh;
    max-height: 750px;
    margin-top: 80px;
  }

  .header_component_nav-small {
    padding-top: 0;
  }

  .gallery_image-preview {
    object-position: 50% 70%;
  }

  .lightbox_slide {
    margin-right: 10px;
  }

  .footer-01_partner_text {
    margin-bottom: 10px;
  }

  .footer-01_partners {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 0;
  }

  .footer-01_link_wrap {
    grid-row-gap: 8px;
    border-top: 1px solid #faf7f780;
    align-items: center;
    width: 100%;
    margin-top: 25px;
    padding-top: 25px;
  }

  .footer_link {
    white-space: nowrap;
  }

  .footer_txt {
    text-align: center;
  }

  .overlying_txt_wrap {
    text-align: left;
    align-items: flex-start;
    padding: 32px;
  }

  .overlying_image {
    margin: 0 -32px;
  }

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

  .modal-01_component {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .popup-01_wrapper {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
  }

  .wrap-image.partner {
    width: 350px;
    height: 300px;
  }

  .image-cover-2.position {
    object-position: 50% 30%;
  }

  .popup-01_component {
    padding: 20px;
  }

  .popup-01_container {
    padding: 40px 20px;
  }

  .contain_sx {
    display: none;
  }

  .link-gdpr {
    overflow-wrap: break-word;
  }

  .paragrafo-gdpr {
    width: 100%;
  }

  .cookie_tab_wrapper {
    align-self: stretch;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
  }

  .cookie_tab {
    min-width: 750px;
  }

  .pittogramma-absolute {
    width: 300px;
    height: 250px;
  }

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

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

  .menu_tablet-mobile {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #617da6e6;
  }

  .wrap_menu {
    width: 100%;
  }

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

  .popup-02_component {
    padding: 20px;
  }

  .popup-02_x {
    z-index: 1;
    top: 20px;
    right: 20px;
  }

  .popup-02_wrapper {
    z-index: 0;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
    padding: 40px;
  }

  .subtitle_txt-2 {
    width: 350px;
    font-size: 14px;
    font-weight: 400;
  }

  .subtitle_txt-2.white.promo {
    width: auto;
  }

  .label02_component {
    border-left-style: none;
    border-right-style: none;
    border-radius: 0;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .label02_title_wrap {
    display: none;
  }

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

  .text-span-3 {
    font-size: 30px;
    line-height: 38px;
  }

  .div-block-3 {
    min-width: auto;
  }

  .div-block-4, .div-block-5 {
    padding: 40px 20px;
  }

  .block-quote_map {
    font-size: 28px;
    line-height: 38px;
  }

  .ancora-mappa {
    top: -180px;
  }

  .footer_link-2 {
    white-space: normal;
  }
}

@media screen and (max-width: 479px) {
  .container.is-promo {
    grid-template-rows: auto 250px;
  }

  .header_component {
    padding-top: 130px;
  }

  .header_container.is-page {
    padding-top: 50px;
  }

  .header_background.is-page {
    height: 400px;
  }

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

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

  .h1-titolo-hero {
    color: #1e1e1e;
    width: 300px;
    font-size: 24px;
    line-height: 30px;
  }

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

  .h2-sottotitolo-hero {
    color: #1e1e1e;
    width: 300px;
    margin-bottom: 20px;
  }

  .block-quote {
    font-size: 24px;
    line-height: 32px;
  }

  .block-quote.tipologici {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .img_column {
    max-width: 100%;
  }

  .txt_column.position-satic {
    padding-left: 20px;
    padding-right: 20px;
  }

  .title_section {
    width: 300px;
  }

  .title_section.align-center.margin-bottom-40.color-white {
    margin-bottom: 0;
  }

  .title_section.align-center.size-28 {
    width: auto;
  }

  .img_cover-minh {
    min-height: 400px;
  }

  .p_txt {
    width: 300px;
  }

  .p_txt.white, .p_txt.center {
    font-size: 16px;
    line-height: 26px;
  }

  .p_txt.center.tablet_margin-bottom-0, .p_txt.center.maxw-400 {
    width: auto;
  }

  .subtitle_txt {
    text-align: center;
    width: 300px;
    line-height: 22px;
  }

  .subtitle_txt.white {
    font-size: 14px;
  }

  .subtitle_txt.align-center.maxw-400 {
    width: auto;
  }

  .container2.boxes_wrap-scroll {
    width: 100%;
  }

  .container2.is-map {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .wrapper_txt-column {
    max-width: 300px;
  }

  .img-full.gallery {
    min-height: 90vw;
  }

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

  .flag-02_icon_wrapper {
    width: 40px;
    height: 40px;
  }

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

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

  .cookie-banner {
    padding: 20px;
  }

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

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

  .cookie-prefs_wrapper {
    padding: 24px;
  }

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

  .cookie-banner_text {
    margin-right: 0;
  }

  .wrap_maps {
    height: 400px;
  }

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

  .popup01_x {
    right: auto;
  }

  .section-2 {
    padding: 60px 20px;
  }

  .section-2.quote {
    grid-template-rows: 400px;
  }

  .box_mask {
    height: 60vw;
  }

  .gallery_hover {
    font-size: 9vw;
  }

  .section-gallery {
    margin-top: 60px;
  }

  .header_component_nav-small {
    justify-content: flex-end;
  }

  .gallery_image-preview {
    object-position: 50% 50%;
  }

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

  .image_hover {
    font-size: 9vw;
  }

  .container3 {
    width: 100%;
  }

  .overlying_txt_wrap {
    align-items: center;
  }

  .overlying_image {
    height: 70vw;
    margin-left: -20px;
    margin-right: -20px;
  }

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

  .modal-01_button {
    position: static;
  }

  .modal-01_component {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .image-contain.is-logo {
    width: 160px;
    height: 100px;
  }

  .popup-01_wrapper {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .wrap-image.partner {
    width: 250px;
    height: 200px;
  }

  .popup-01_container {
    padding-left: 0;
    padding-right: 0;
  }

  .container-3.is-technical {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-2 {
    font-size: 16px;
  }

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

  .paragrafo-gdpr {
    width: 300px;
  }

  .h1-gdpr {
    font-size: 30px;
  }

  .pittogramma-absolute {
    width: 250px;
    height: 200px;
  }

  .div-block {
    width: 100px;
    height: 150px;
  }

  .menu-wrap {
    margin-top: 0;
  }

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

  .popup-02_x {
    margin-bottom: 60px;
  }

  .popup-02_wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .subtitle_txt-2 {
    text-align: center;
    width: 300px;
    line-height: 22px;
  }

  .subtitle_txt-2.white {
    font-size: 14px;
  }

  .disclaimer-medium {
    white-space: nowrap;
  }

  .card-tipologico {
    height: 450px;
  }

  .txt-tipologico {
    width: 100%;
    inset: auto 0% 0%;
  }

  .txt-tipologico.invert {
    inset: auto 0% 0%;
  }

  .text-span-5 {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: inline;
  }

  .text-span-5.is-single {
    justify-content: center;
    align-items: flex-start;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
  }

  .img-tipologico {
    width: 100%;
    height: 45%;
  }

  .icon-plus, .icon-plus.inverse {
    inset: -18px auto auto;
  }

  .card_lightbox {
    font-size: 9vw;
  }

  .div-block-7 {
    min-width: auto;
    height: 500px;
  }

  .slider_big {
    height: 300px;
    margin-bottom: 40px;
  }

  .right-arrow-2 {
    margin-right: 0;
    inset: auto 26vw -60px auto;
  }

  .left-arrow-2 {
    margin-left: 0;
    inset: auto auto -60px 26vw;
  }

  .icon {
    inset: 0% auto 0% 10px;
  }

  .icon.left {
    inset: 0% 10px 0% auto;
  }

  .right-arrow-3 {
    width: 50%;
    height: 50px;
    inset: auto 0% -60px auto;
  }

  .left-arrow-3 {
    width: 50%;
    height: 50px;
    inset: auto auto -60px 0%;
  }

  .block-quote_map {
    font-size: 24px;
    line-height: 32px;
  }

  .ancora-mappa {
    top: -160px;
  }

  .contact_item {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    min-width: auto;
  }

  .footer_link-2 {
    white-space: normal;
  }
}

#w-node-_9698f24b-7643-ea29-0fa6-502996483d16-1410690c, #w-node-_43430a24-f938-eaa9-5052-409c231290a9-1410690c, #w-node-e053d61e-40c1-3414-b6fc-9df27d875413-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875415-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875417-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875419-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87541b-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87541d-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87541f-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875421-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875423-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875425-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875428-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87542a-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87542c-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87542e-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875431-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875433-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875435-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875437-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87543a-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87543c-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875442-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875444-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875446-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875448-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87544a-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87544c-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87544f-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875451-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87545c-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87545e-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875461-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875463-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875465-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875467-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87546a-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87546c-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87546e-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875470-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875473-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875475-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875477-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875479-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87547c-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87547e-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875484-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875486-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875488-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87548a-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87548c-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87548e-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875491-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875493-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875495-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d875497-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87549a-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87549c-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d87549e-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d8754a0-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d8754a3-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d8754a5-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d8754a7-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d8754a9-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d8754ac-1410690d, #w-node-e053d61e-40c1-3414-b6fc-9df27d8754ae-1410690d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2bd64125-90eb-87f4-59ba-efca0a05fd3a-14106910 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2bd64125-90eb-87f4-59ba-efca0a05fd3c-14106910 {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (max-width: 991px) {
  #w-node-d93ec395-c026-864d-5ef3-3ad9a835cbf5-14106903 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c7f878bc-ed4a-c212-3167-7c1331297a9f-1410690c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_2bd64125-90eb-87f4-59ba-efca0a05fd3a-14106910 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_2bd64125-90eb-87f4-59ba-efca0a05fd3c-14106910 {
    grid-area: 2 / 1 / 3 / 2;
  }
}


