:root {
  --dark-jungle-green: #192021;
  --van-dyke-brown: #6b3d2a;
  --bistre: #31241e;
  --alabaster: #f3eee8;
  --white: white;
  --beaver: #a68b7b;
  --peach-orange: #ffbe99;
  --sky-blue\<deleted\|variable-5c2ee3d6\>: #98c9f9;
  --white-smoke: #f7f7f7;
  --tan\<deleted\|variable-232e075e\>: #bb9965;
  --dark-slate-grey-2\<deleted\|variable-d48c7e89\>: #1f2c2b;
  --light-blue\<deleted\|variable-2ee7c6a4\>: #6584a9;
  --light-gray\<deleted\|variable-2a91edb2\>: #dadada;
  --black: black;
}

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

body {
  color: var(--dark-jungle-green);
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Melodrama, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 44px;
}

h2 {
  color: var(--van-dyke-brown);
  text-align: center;
  letter-spacing: 1.5px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

h3 {
  color: var(--bistre);
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 400;
  line-height: 13px;
}

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

p {
  text-align: center;
  max-width: 600px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

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

label {
  color: var(--alabaster);
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

strong {
  font-weight: 600;
}

.returnbtn {
  z-index: 1000;
  background-color: var(--white);
  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;
  top: 10px;
  bottom: auto;
  left: 10px;
  right: auto;
}

.form_component {
  z-index: 0;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  background-color: var(--bistre);
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  padding: 7vw;
  display: flex;
  position: relative;
}

.footer {
  grid-row-gap: 10px;
  background-color: var(--bistre);
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 60px;
  display: flex;
}

.footer_link {
  color: var(--beaver);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  transition: color .35s;
}

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

.to-delete {
  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;
}

.to-delete p {
  margin-bottom: 0;
}

.to-delete strong {
  font-weight: 800;
}

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

.footer_txt {
  color: var(--sky-blue\<deleted\|variable-5c2ee3d6\>);
  font-size: .8em;
}

.footer_txt._5top {
  color: var(--beaver);
  text-align: center;
  margin-top: 5px;
}

.form_link {
  color: var(--peach-orange);
  font-size: 14px;
  text-decoration: underline;
  transition: color .2s;
}

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

.form {
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  display: flex;
}

.form-block {
  z-index: 30;
  flex-direction: column;
  align-items: center;
  width: 70%;
  max-width: 600px;
  display: flex;
  position: relative;
}

.form_field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--alabaster);
  color: var(--alabaster);
  letter-spacing: 1px;
  text-transform: none;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  margin-bottom: 20px;
  line-height: 15px;
}

.form_field:focus {
  border-bottom-color: var(--peach-orange);
  color: var(--alabaster);
}

.form_field::placeholder {
  color: var(--alabaster);
  font-family: Nunito, sans-serif;
}

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

.form_field.capitalize:focus {
  color: var(--white-smoke);
}

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

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

.button-submit {
  background-color: var(--peach-orange);
  color: var(--bistre);
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: center;
  min-width: 30%;
  height: 50px;
  margin-top: 30px;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  transition: background-color .35s;
}

.button-submit:hover {
  background-color: var(--alabaster);
}

.banner_component {
  z-index: 998;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, .1);
  flex-direction: column;
  padding: 24px 32px;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}

.banner-prefs {
  z-index: 1;
  background-color: var(--white-smoke);
  color: #333;
  flex-direction: column;
  padding: 48px 40px;
  font-size: 12px;
  line-height: 1;
  display: flex;
  position: relative;
}

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

.prefs_name {
  color: #5c5c5c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: auto;
  font-size: 13px;
  font-weight: 600;
}

.banner_text-link {
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid #000;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
}

.banner_text-link:hover {
  border-bottom-color: var(--tan\<deleted\|variable-232e075e\>);
  color: var(--tan\<deleted\|variable-232e075e\>);
}

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

.banner_btn {
  background-color: var(--tan\<deleted\|variable-232e075e\>);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 10px 30px;
  font-size: 13px;
  font-weight: 600;
  transition: all .25s cubic-bezier(.455, .03, .515, .955);
  display: flex;
}

.banner_btn:hover {
  background-color: var(--sky-blue\<deleted\|variable-5c2ee3d6\>);
  border-color: #707cff;
}

.banner_btn.banner {
  background-color: var(--tan\<deleted\|variable-232e075e\>);
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 5px;
  align-items: center;
  height: 40px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
  display: flex;
}

.banner_btn.banner:hover {
  background-color: var(--sky-blue\<deleted\|variable-5c2ee3d6\>);
}

.banner_btn.submit {
  align-self: flex-end;
  margin-top: 40px;
}

.banner_text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.banner_trigger {
  display: none;
}

.banner_close_txt {
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  font-size: 11px;
  font-weight: 400;
}

.prefs_title {
  color: var(--tan\<deleted\|variable-232e075e\>);
  margin-bottom: 12px;
  font-family: ivymode;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2em;
}

.banner_wrap {
  background-color: var(--white-smoke);
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: auto;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 0 0 14px 3px rgba(0, 0, 0, .1);
}

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

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

.banner_description {
  color: var(--dark-slate-grey-2\<deleted\|variable-d48c7e89\>);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.4;
  transition: height .25s cubic-bezier(.455, .03, .515, .955);
}

.prefs_component {
  z-index: 997;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, .15);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 60px 32px;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: auto;
}

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

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

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

.prefs_buttons-wrapper.pref {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

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

.prefs_trigger {
  display: none;
}

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

.banner_close.pref {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
}

.banner_close.x {
  padding: 6px;
  position: absolute;
  top: 0;
  right: 0;
}

.prefs_open-txt {
  opacity: .5;
  color: var(--dark-slate-grey-2\<deleted\|variable-d48c7e89\>);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  justify-content: flex-end;
  font-weight: 600;
  display: flex;
  position: absolute;
  top: 22px;
  right: 70px;
}

.prefs_open-txt.first {
  top: 17px;
}

.prefs_checkbox {
  z-index: 1;
  border-width: 2px;
  border-color: var(--light-blue\<deleted\|variable-2ee7c6a4\>);
  background-color: var(--light-blue\<deleted\|variable-2ee7c6a4\>);
  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;
  transition: all .2s;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.prefs_checkbox.w--redirected-checked {
  border-color: var(--tan\<deleted\|variable-232e075e\>);
  background-color: var(--tan\<deleted\|variable-232e075e\>);
  background-image: url('../images/check_dot.svg');
  background-position: 100%;
  background-size: contain;
}

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

.prefs_checkbox-label, .prefs_nascondi {
  display: none;
}

.prefs_option {
  border-bottom: 1px solid rgba(51, 51, 51, .15);
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}

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

.manager_trigger {
  display: none;
}

.prefs_label {
  color: var(--tan\<deleted\|variable-232e075e\>);
  text-align: right;
  width: 60px;
  padding-top: 2px;
  font-weight: 600;
}

.prefs_form {
  flex: none;
  width: 100%;
  max-width: 600px;
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  box-shadow: 0 0 14px 3px rgba(0, 0, 0, .1);
}

.banner_link {
  color: var(--tan\<deleted\|variable-232e075e\>);
}

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

.banner_title {
  color: var(--tan\<deleted\|variable-232e075e\>);
  font-family: ivymode;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2em;
}

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

.policy-flag {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--bistre);
  flex-direction: row;
  align-items: flex-start;
  font-size: 14px;
  display: flex;
}

.hero {
  text-align: center;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  position: relative;
}

.hero.placeholder {
  z-index: 6;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.hero.hero_int {
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.sectionxxx {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sectionxxx.fullpage {
  background-color: var(--peach-orange);
  background-image: linear-gradient(rgba(255, 190, 153, .5), rgba(255, 190, 153, .5)), url('../images/Risorsa-12.svg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-y;
  background-size: auto, auto;
  flex-flow: column;
  width: 100%;
  min-height: 100vh;
}

.sectionxxx.is-gdpr {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 80px 60px;
}

.logo {
  flex-direction: column;
  align-items: center;
  width: 200px;
  display: flex;
}

.logo.w--current {
  background-image: url('../images/logo_neg.png');
  flex: none;
  display: none;
}

.logo.footer {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Logo-orizzontale-negativo.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  width: 300px;
  margin-bottom: 100px;
}

.logo.tech-page {
  background-color: var(--dark-jungle-green);
  background-image: none;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 100px;
  padding: 20px 40px;
}

.hero_bg {
  z-index: -1;
  width: 100%;
  height: 100vh;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hero_bg.hero_int_bg {
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.txt_container {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.h3-light {
  color: var(--sky-blue\<deleted\|variable-5c2ee3d6\>);
  text-align: center;
  font-family: Neutra Text;
}

.h3-light.contact {
  color: var(--alabaster);
  letter-spacing: 0;
  text-transform: none;
  max-width: 440px;
  margin-bottom: 60px;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.h2-light {
  color: var(--light-gray\<deleted\|variable-2a91edb2\>);
  font-family: Perpetua;
}

.h2-light.form {
  color: var(--alabaster);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Melodrama, sans-serif;
  font-size: 30px;
  line-height: 40px;
}

.scroll {
  background-image: url('../images/scroll_arrow---Beaver.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 25px;
  position: absolute;
  bottom: 0;
}

.quote {
  color: var(--tan\<deleted\|variable-232e075e\>);
  margin-bottom: 0;
}

.quote.quote_footer {
  color: var(--peach-orange);
  margin-bottom: 120px;
  font-family: Melodrama, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}

.footer_separator {
  width: 70%;
  height: 1px;
  margin-bottom: 20px;
}

.logo_contact__wrap {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.contact_link {
  color: var(--alabaster);
  text-transform: uppercase;
  font-family: Nunito, sans-serif;
  text-decoration: none;
  transition: all .3s;
}

.contact_link:hover {
  color: var(--peach-orange);
}

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

.hide {
  display: none;
}

.opener__wrap {
  z-index: 60;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.logo_navbar {
  z-index: 9;
  grid-column-gap: 0vw;
  grid-row-gap: 0vw;
  flex-direction: column;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 100px 100px 0;
  display: flex;
  position: relative;
}

.logo_navbar.w--current {
  background-image: url('../images/logo_neg.png');
}

.slide-2 {
  min-width: 500px;
  margin-left: 2vw;
  margin-right: 2vw;
}

.cursor-wrapper {
  z-index: 100;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.mouse {
  background-image: url('../images/Arrow_Right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 60px;
  height: 60px;
  display: none;
  position: absolute;
}

.cursor-wrapper-sx {
  z-index: 100;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.mouse_sx {
  background-image: url('../images/Arrow_Left.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: none;
  position: absolute;
}

.blur_trigger {
  width: 20px;
  height: 40vh;
}

.arrow_trigger {
  width: 20px;
  height: 40px;
}

.hero_overlayer {
  z-index: 0;
  background-image: linear-gradient(rgba(25, 32, 33, .7), rgba(25, 32, 33, 0));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.logo_trigger {
  width: 20px;
  height: 40vh;
}

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

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

.form_text {
  color: var(--alabaster);
  font-size: 14px;
}

.display-none {
  display: none;
}

.video-opening {
  background-image: linear-gradient(rgba(28, 46, 58, .8), rgba(28, 46, 58, .8));
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.star_a {
  background-color: var(--white);
  filter: blur(.5px);
  border-radius: 50%;
  width: 2px;
  height: 2px;
  position: absolute;
  top: 2vh;
  left: 10vw;
}

.star_a.a_02 {
  top: 24vh;
  left: auto;
  right: 20vw;
}

.star_a.a_03 {
  top: 15vh;
  left: auto;
  right: 50vw;
}

.star_a.a_04 {
  top: 32.4vh;
  left: 35vw;
}

.star_a.a_05 {
  top: 7.5vh;
  left: auto;
  right: 8vw;
}

.star_b {
  background-color: var(--white);
  filter: blur(.5px);
  border-radius: 50%;
  width: 2px;
  height: 2px;
  position: absolute;
  top: 2vh;
  left: 10vw;
}

.star_b.b_01 {
  top: 18.8vh;
  left: auto;
  right: 10.8vw;
}

.star_b.b_02 {
  top: 36.5vh;
  left: 4vw;
}

.star_b.b_03 {
  top: 11vh;
  left: auto;
  right: 29.5vw;
}

.star_b.b_04 {
  top: 45.4vh;
  left: 43.6vw;
}

.star_b.b_05 {
  top: 3vh;
  left: auto;
  right: 47vw;
}

.star_c {
  background-color: var(--white);
  filter: blur(.5px);
  border-radius: 50%;
  width: 2px;
  height: 2px;
  position: absolute;
  top: 2vh;
  left: 10vw;
}

.star_c.c_01 {
  top: 27.4vh;
  left: auto;
  right: 2.7vw;
}

.star_c.c_02 {
  top: 15vh;
  left: 25vw;
}

.star_c.c_03 {
  top: 40.5vh;
  left: auto;
  right: 33.8vw;
}

.star_c.c_04 {
  top: 34.4vh;
  left: 23vw;
}

.star_c.c_05 {
  top: 31.6vh;
  left: auto;
  right: 16.3vw;
}

.coming-_soon {
  color: var(--bistre);
  letter-spacing: 7px;
  text-transform: uppercase;
  font-family: Melodrama, sans-serif;
  font-size: 22px;
  font-weight: 500;
  position: absolute;
  top: 40px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.coming-_soon.hide {
  opacity: 0;
  display: block;
}

.par {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}

.scroll_wrapper {
  z-index: 5;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 230px;
  padding-bottom: 50px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.scroll_wrapper.mobile, .scroll_wrapper.dsk-landscape {
  margin-bottom: 40px;
}

.scroll_wrapper.is-mobile {
  display: none;
}

.scroll_txt {
  color: var(--beaver);
  text-transform: uppercase;
  font-family: Nunito, sans-serif;
}

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

.image-wrap {
  width: 230px;
  height: 212px;
}

.pattern {
  z-index: 1;
  opacity: .01;
  background-image: url('../images/pattern.svg');
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.small-link {
  color: var(--beaver);
  transition: color .35s;
}

.small-link:hover {
  color: var(--peach-orange);
}

.loader-02_component {
  z-index: 40;
  background-color: var(--van-dyke-brown);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.loader-02_logo {
  z-index: 3;
  width: 240px;
  height: 222px;
  position: relative;
}

.loader-02_cta-skip {
  z-index: 3;
  cursor: pointer;
  text-decoration: none;
  transition: color .25s;
  position: absolute;
  top: auto;
  bottom: 10vh;
  left: auto;
  right: auto;
}

.loader-02_cta-skip:hover {
  color: #fcfcfc;
}

.loader-02_cta-skip.w--current {
  border-bottom: 1px solid rgba(0, 0, 0, .3);
}

.loader-02_cta-text {
  color: var(--peach-orange);
  text-align: center;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.scroll_animation {
  text-align: center;
  cursor: pointer;
  background-color: #a39bff;
  border-radius: .5rem;
  padding: 16px 20px;
}

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

.hover-video {
  z-index: 2;
  background-color: rgba(49, 36, 30, .9);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.partner-container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  margin-top: 100px;
  display: flex;
}

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

.partner-wrap.reliving {
  width: 110px;
  height: 60px;
}

.partner-wrap.investire {
  width: 150px;
  height: 45px;
}

.partner-wrap.coldwell {
  width: 200px;
  height: 49px;
}

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

.image {
  z-index: 1;
  opacity: .2;
  object-fit: contain;
  object-position: 0% 50%;
  width: 575px;
  position: absolute;
  left: -185px;
}

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

.h3_contatti {
  color: var(--peach-orange);
  margin-bottom: 5px;
}

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

.containerxxx.is-technical {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--dark-jungle-green);
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px;
}

.containerxxx.is-gdpr {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 100%;
}

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

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

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

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

.heading {
  color: var(--peach-orange);
  font-family: Melodrama, sans-serif;
}

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

.button-backhome {
  background-color: var(--peach-orange);
  color: var(--bistre);
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: center;
  min-width: 30%;
  height: 50px;
  margin-top: 30px;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
  transition: background-color .35s;
}

.button-backhome:hover {
  background-color: var(--alabaster);
}

.testo-gdpr {
  width: 100%;
  max-width: 1100px;
}

.testo-gdpr h2 {
  color: var(--beaver);
  text-align: left;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: Melodrama, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
}

.testo-gdpr h1 {
  margin-bottom: 30px;
  font-family: Melodrama, sans-serif;
  font-weight: 600;
}

.testo-gdpr p {
  text-align: left;
  max-width: none;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
}

.testo-gdpr h3 {
  color: var(--beaver);
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.testo-gdpr li {
  font-size: 14px;
}

.testo-gdpr a {
  color: var(--beaver);
}

.heading-2 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.gdpr_info {
  display: none;
}

.cookie_tab_link {
  color: var(--beaver);
}

.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_cell {
  border: 1px #2b2b2b;
  border-style: none none solid solid;
  padding: 10px 20px;
}

.cookie_tab_cell.is-head {
  background-color: var(--peach-orange);
  color: var(--dark-jungle-green);
  border-top-style: solid;
  align-items: center;
  display: flex;
}

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

.todelete.is-gdpr {
  display: block;
}

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

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

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

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

.partner-block.is-iniziativa {
  border-right: 1px solid var(--peach-orange);
  padding-right: 60px;
}

.navbar {
  z-index: 1;
  background-color: var(--alabaster);
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.page_wrapperxxxx {
  padding-top: 40px;
}

.page_wrapperxxxx.is-gdpr {
  padding-top: 80px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.button01 {
  background-color: var(--peach-orange);
  color: var(--bistre);
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 40px;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  transition: background-color .35s;
  display: flex;
}

.button01:hover {
  background-color: var(--dark-jungle-green);
  color: var(--white);
}

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

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

.slide-hero {
  width: 100%;
}

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

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

.nav_link_line {
  background-color: #fff;
  flex: none;
  height: 1px;
  margin-top: 2px;
}

.nav_link_line.w--current {
  background-color: #fff;
  width: 100%;
  display: none;
}

.nav_background {
  z-index: 1;
  opacity: 0;
  background-color: #fff;
  padding: 0;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, .1);
}

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

.nav_link_wrapper.tablet_display {
  display: none;
}

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

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

.nav_link.w--current {
  border-bottom: 1px solid #fff;
  margin-bottom: 2px;
  padding-bottom: 10px;
  font-weight: 700;
}

.nav_link_container {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 1500px;
  display: flex;
}

.nav_logo {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}

.nav_logo.is-negative {
  opacity: 0;
}

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

.nav_logo_wrapper {
  z-index: 2;
  flex: none;
  width: 155px;
  height: 40px;
  margin-bottom: 5px;
  position: relative;
}

.nav_logo_wrapper.is-responsive, .nav_hamburger {
  display: none;
}

.footer-info_wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-subtitle {
  color: var(--beaver);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

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

.text-subtitle.is-section.text-color-rose-dark {
  color: var(--beaver);
}

.text-subtitle.dark {
  color: var(--bistre);
}

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

.text-subtitle.align-left {
  padding-left: 0;
}

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

.footer_block.is-legal {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.footer_component {
  background-color: #504f4f;
  padding: 40px;
}

.div-block {
  background-image: radial-gradient(circle, rgba(167, 130, 122, .5), rgba(194, 175, 167, .5)), linear-gradient(#c2afa7, #c2afa7);
}

.form_heading {
  color: #504f4f;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.2;
}

.footer_flex {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: left;
  flex-flow: column;
  align-items: flex-start;
  max-width: 400px;
  display: flex;
}

.footer_line_sep {
  opacity: .4;
  background-color: #fff;
  width: 100%;
  max-width: 400px;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.map {
  width: 100%;
  height: 100%;
  line-height: 0;
}

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

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

.contact_component.is-footer {
  z-index: 1;
  outline-offset: 10px;
  background-color: #fff;
  border-radius: 50px;
  outline: 1px solid #fff;
  width: 50%;
  max-width: none;
  padding: 3vh 3vw;
}

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

.slide02 {
  background-color: #fff;
  border-radius: 20px;
  margin-right: 25px;
  overflow: visible;
}

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

.lightbox_component {
  z-index: 100;
  background-color: rgba(0, 0, 0, .9);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}

.slide_image_wrapper {
  z-index: 1;
  flex: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer_line_vert {
  opacity: .4;
  background-color: #fff;
  width: 1px;
  height: 15px;
}

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

.flex-horizontal {
  z-index: 2;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

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

.flex-horizontal.is-reverse.flex-gap-60px {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
}

.flex-horizontal.is-gap-card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
}

.flex-horizontal.is-full {
  flex: 1;
  justify-content: space-between;
  width: 100%;
}

.text_legal {
  color: #fff;
}

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

.slider02_arrow {
  color: #504f4f;
  background-image: url('../images/ic-arrow-left.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 25px;
  width: 50px;
  height: 35px;
  margin-bottom: 0;
  font-size: 21px;
  bottom: 0;
  left: auto;
}

.slider02_arrow:hover {
  filter: saturate();
}

.slider02_arrow.left {
  background-image: url('../images/ic-arrow_arc-left.svg');
  align-items: center;
  width: 35px;
  display: flex;
  right: 66px;
}

.slider02_arrow.right {
  background-image: url('../images/ic-arrow_arc-right.svg');
  background-position: 100%;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

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

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

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

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

.slide02_fake.last {
  justify-content: flex-start;
  width: 100%;
  margin-left: 25px;
  left: 100%;
}

.cta {
  background-color: var(--van-dyke-brown);
  color: #fff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta:hover {
  color: #fff;
}

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

.slide_title {
  color: #504f4f;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.3;
}

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

.slide_txt_wrapper.is-tipologie {
  z-index: 3;
  color: #fff;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.h2-heading {
  font-size: 2em;
  line-height: 1;
}

.h2-heading.is-apertura {
  justify-content: center;
  max-width: none;
  margin-bottom: 12px;
  font-size: 1.6em;
  line-height: 1.3;
  display: flex;
}

.h2-heading.is-apertura.text-color-rose-dark {
  color: var(--beaver);
}

.h2-heading.is-small {
  font-size: 1.5em;
}

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

.text_container.is-margin {
  justify-content: center;
  align-items: flex-start;
  margin-top: 6vh;
  padding-left: 40px;
}

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

.text_container.is-footer {
  color: #fff;
  width: 50%;
}

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

.text_container.is-align-left {
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  padding: 0 0%;
}

.text_container.is-align-left.is-33 {
  width: 33.33%;
}

.text_container.over-full-img {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--dark-jungle-green);
  background-color: rgba(243, 238, 232, .85);
  width: auto;
  padding: 60px;
}

.text_container.light {
  color: var(--white-smoke);
}

.footer_link-2 {
  color: #c2afa7;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  line-height: 1.2;
  text-decoration: none;
  transition: all .6s cubic-bezier(.455, .03, .515, .955);
}

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

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

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

.image_wrapper {
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 50%;
  display: flex;
  overflow: hidden;
}

.image_wrapper.is-66 {
  width: 66.6%;
  position: relative;
}

.image_wrapper.is-66.grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  height: 50vw;
  display: grid;
}

.image_wrapper.is-66.grid.height-30 {
  height: 30vw;
}

.image_wrapper.is-arco {
  outline-offset: 5px;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  outline: 2px solid #a7827a;
  width: 180px;
  height: 200px;
  max-height: none;
  position: absolute;
  top: auto;
  bottom: -2%;
  left: auto;
  right: -2%;
}

.image_wrapper.is-full {
  width: 100%;
  height: auto;
  max-height: none;
}

.image_wrapper.is-full.is-grid {
  z-index: 2;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  justify-items: stretch;
  height: auto;
  display: grid;
  position: relative;
}

.image_wrapper.is-full.is-grid.is-architettura {
  grid-template-rows: auto;
}

.slide_container {
  cursor: pointer;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.policy-flag-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: row;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 300;
  display: flex;
}

.form_component-2 {
  text-align: left;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
}

.footer_logo_wrapper {
  margin-bottom: 40px;
}

.lightbox_x {
  z-index: 10;
  color: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, .9);
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 5px;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
}

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

.button-hover {
  z-index: 0;
  background-image: linear-gradient(90deg, rgba(255, 190, 153, 0), var(--peach-orange) 70%);
  width: 200%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

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

.form_field-2 {
  color: #c2afa7;
  background-color: #fff;
  border: 1px #a7827a;
  border-bottom-style: solid;
  border-radius: 0;
  margin-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
}

.form_field-2:focus {
  border-bottom-color: #c2afa7;
}

.form_field-2::placeholder {
  color: #a7827a;
  font-size: 14px;
  line-height: 1;
}

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

.form_field-2.is-message:focus {
  border-color: #c2afa7;
}

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

.fit-cover.is-arco {
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

.fit-cover.is-footer {
  filter: contrast(200%) saturate(0%);
  position: absolute;
}

.fit-cover.is-pattern02 {
  z-index: -1;
  width: 80%;
  height: 80%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fit-cover.pos02 {
  object-position: 0% 50%;
}

.service_item {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slider02 {
  background-color: rgba(0, 0, 0, 0);
  border-right: 60px solid #fff;
  width: 100%;
  max-width: 1172px;
  height: auto;
  margin: 40px auto;
  padding: 10px 60px 70px 65px;
  overflow: hidden;
}

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

.slider02_container {
  opacity: 1;
  cursor: pointer;
  border-radius: 20px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 100%;
  margin-right: 25px;
  font-size: 2em;
  text-decoration: none;
  transition: opacity .5s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: relative;
  overflow: hidden;
}

.slider02_container:hover {
  outline-offset: 4px;
  outline: 1px solid #a7827a;
}

.slider02_container.w--current {
  filter: grayscale(50%);
  outline-offset: 4px;
  outline: 1px solid #a7827a;
  position: relative;
}

.lightbox_img_wrapper {
  align-self: stretch;
  width: 100%;
  height: 100%;
  padding: 40px;
  position: relative;
}

.link-partner {
  z-index: 1;
  width: 130px;
}

.link-partner.is-large {
  width: 250px;
}

.tipologia_item {
  flex: 1;
}

.footer_container {
  z-index: 10;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: auto;
  padding: 60px 40px;
  display: flex;
  position: relative;
}

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

.footer_logo-partner {
  width: 100%;
}

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

.background_img.is-scroll {
  filter: grayscale();
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 0;
  background-size: contain;
  background-attachment: fixed;
}

.background_img.is-scroll._02 {
  filter: contrast(200%) saturate(0%);
  background-image: url('../images/AC1402_Roma_TorFiorenza_VPExt_05_Rev-04.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

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

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

.contact_link-2 {
  color: #fff;
  line-height: 1.5;
  text-decoration: none;
}

.contact_link-2:hover {
  color: #e8d8d1;
}

.footer_txt-2 {
  font-size: .8em;
}

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

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

.footer_logo {
  height: 50px;
}

.footer_logo.is-large {
  height: 100px;
}

.footer_container-2 {
  grid-row-gap: 4px;
  flex-direction: column;
  display: flex;
}

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

.service_container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  width: auto;
}

.service_container.is-absolute {
  z-index: 5;
  position: absolute;
}

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

.container.is-medium {
  max-width: 1100px;
}

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

.container.accordion-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  max-width: 800px;
}

.item-pattern01 {
  z-index: 1;
  opacity: 1;
  width: 25vh;
  height: 50vh;
  position: absolute;
  top: auto;
  bottom: -20vh;
  left: 20px;
  right: auto;
}

.image-nav-footer_hover {
  z-index: 2;
  background-color: rgba(0, 0, 0, .26);
  background-image: linear-gradient(rgba(194, 175, 167, .82), rgba(194, 175, 167, .82));
  justify-content: center;
  align-items: center;
  transition: opacity .5s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.text-color-rose-dark {
  color: #a7827a;
}

.text-nav-footer {
  z-index: 3;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  position: relative;
}

.ic-arrow-bold {
  flex: none;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10px;
}

.ic-arrow-bold.is-right {
  left: auto;
  right: 10px;
}

.lightbox_img {
  flex: none;
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
}

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

.image_hover.is-gradient {
  background-image: radial-gradient(circle farthest-side at 0 100%, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2) 72%);
}

.video {
  cursor: pointer;
  background-color: #a7827a;
  width: 100%;
  line-height: 0;
}

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

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

.form_link-2 {
  color: #a7827a;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: underline;
  transition: color .2s;
}

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

.background_hover {
  z-index: 1;
  background-color: rgba(0, 0, 0, .4);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.background_hover.is-hover-effects {
  opacity: 1;
  background-image: linear-gradient(rgba(255, 190, 153, .6), rgba(255, 190, 153, .6));
}

.mask02 {
  width: 330px;
  height: 330px;
  position: relative;
  overflow: visible;
}

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

.ic-service {
  width: 50px;
  height: 50px;
}

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

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

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

.section.is-apertura {
  background-color: rgba(166, 139, 123, .3);
  align-items: center;
}

.section.bg_window_shadow {
  background-image: linear-gradient(rgba(166, 139, 123, .59), rgba(166, 139, 123, .59)), url('../images/iStock-1374647889-copia.webp');
  background-position: 0 0, 100% 100%;
  background-size: auto, cover;
  justify-content: flex-start;
  align-items: center;
}

.section.is-pad-top-180 {
  padding-top: 180px;
}

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

.section.is-bottommenu {
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.section.is-map {
  width: 100%;
  height: 600px;
  padding: 0;
}

.section.cross-section {
  margin-top: -200px;
  padding-top: 300px;
}

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

.section.is-contatti {
  background-color: var(--van-dyke-brown);
}

.section.align-center {
  background-color: var(--white-smoke);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
}

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

.section.af {
  background-image: linear-gradient(rgba(166, 139, 123, .95), rgba(166, 139, 123, .95)), url('../images/profile-afsc1612.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: flex-start;
  align-items: center;
}

.section.bg_texture {
  background-color: var(--van-dyke-brown);
  height: 100vh;
  min-height: 600px;
}

.section.bg_texture.full_img {
  height: auto;
  min-height: auto;
}

.section.bg_texture.hide {
  display: none;
}

.section.is-map_mobile {
  width: 100%;
  height: 600px;
  padding: 0;
  display: none;
}

.service_wrap {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(80, 79, 79, .14);
  border: 1px solid #a7827a;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
}

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

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

.item-line.is-full {
  width: 100%;
}

.hero-content {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(25, 32, 33, .8);
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  max-width: 350px;
  padding: 40px;
  display: flex;
}

.hero-h1 {
  z-index: 1;
  color: var(--alabaster);
  margin-bottom: 40px;
  position: relative;
}

.hero-h1.hero-h1_int {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}

.title-paragraph {
  color: var(--van-dyke-brown);
  font-family: Melodrama, sans-serif;
  font-size: 34px;
  line-height: 42px;
}

.title-paragraph.light {
  color: var(--alabaster);
}

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

.align-left {
  text-align: left;
  padding-left: 20px;
}

.tipo-row {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tipo-row.in-appartamenti {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

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

.icon-tipo {
  width: 100%;
  max-width: 90px;
}

.tipo-txt {
  justify-content: center;
  align-items: flex-end;
  height: 40px;
  margin-bottom: 0;
  line-height: 20px;
  display: flex;
}

.grid-img_block {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  max-height: none;
  display: flex;
  overflow: hidden;
}

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

.img_grid.position_left-28 {
  object-position: 28% 50%;
}

.img_grid.position_left-38 {
  object-position: 38% 50%;
}

.img_grid.position_left-22 {
  object-position: 22% 50%;
}

.navbar-trigger {
  width: 5px;
  height: 10px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

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

.hero-p {
  color: var(--alabaster);
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Melodrama, sans-serif;
  font-size: 26px;
  line-height: 32px;
}

.div-block-4 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.gallery_tile {
  aspect-ratio: 1 / 1.5;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gal_thumb {
  object-fit: cover;
  min-width: 100%;
  max-width: none;
  min-height: 100%;
}

.gal_title {
  z-index: 1;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--alabaster);
  text-align: center;
  background-color: rgba(25, 32, 33, .8);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 40px 20px;
  font-family: Melodrama, sans-serif;
  font-size: 26px;
  display: flex;
  position: absolute;
}

.gal_pitt {
  width: 30px;
}

.gallery_tiles {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1300px;
  display: grid;
}

.logo_alfonso_alfemia {
  width: 250px;
}

.accordion {
  border-bottom: 1px solid var(--alabaster);
  flex-flow: column;
  display: flex;
}

.accordion-trigger {
  background-color: var(--white-smoke);
  color: var(--dark-jungle-green);
  cursor: pointer;
  justify-content: space-between;
  align-items: stretch;
  text-decoration: none;
  display: flex;
}

.accordion-content {
  background-color: rgba(166, 139, 123, .4);
  transition: all .6s;
  overflow: hidden;
}

.accordion-label {
  flex: 1;
  padding: 20px;
  font-family: Melodrama, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
}

.accordion-arrow {
  padding: 20px;
}

.accordion-icon {
  height: 30px;
}

.accordion-content-inner {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  padding: 40px;
  display: flex;
}

.partner-row {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.partner-txt {
  width: 65%;
}

.partner-txt h3 {
  text-align: left;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 14px;
}

.partner-txt h4 {
  color: var(--van-dyke-brown);
  margin-bottom: 25px;
  font-family: Nunito, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
}

.partner-txt p {
  text-align: left;
}

.partner-img {
  outline-color: var(--van-dyke-brown);
  outline-offset: 3px;
  outline-width: 1px;
  outline-style: solid;
  width: 30%;
}

.accordion-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

.img-full {
  z-index: 2;
  position: relative;
}

.button-wrap {
  margin-top: 40px;
}

.text-quote {
  color: var(--beaver);
  max-width: 800px;
  font-size: 26px;
  font-style: italic;
  line-height: 36px;
}

.title-quote {
  text-transform: uppercase;
}

.div-block-5 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.dot {
  background-color: var(--van-dyke-brown);
  border-radius: 100%;
  width: 4px;
  height: 4px;
}

.line {
  background-color: var(--van-dyke-brown);
  width: 250px;
  height: 2px;
}

.accordion-01_accordion_body {
  overflow: hidden;
}

.accordion-01_accordion_icon {
  color: var(--peach-orange);
  width: 30px;
  height: 30px;
}

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

.accordion-01_accordion_head {
  background-color: var(--white-smoke);
  color: #222;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 20px;
  font-family: Melodrama, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  transition: background-color .4s;
  display: flex;
}

.accordion-01_item_container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: rgba(166, 139, 123, .4);
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  padding: 40px;
  display: flex;
}

.accordion-01_item {
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

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

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

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

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

.image-fit-cover.position_left {
  object-position: 0% 50%;
  object-position: 22% 50%;
}

.moodboard-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: 1fr .5fr;
  grid-template-columns: .5fr .75fr 3fr;
  height: 40vw;
  min-height: 500px;
  max-height: 650px;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 35px;
    line-height: 45px;
  }

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

  .footer_link {
    font-size: 11px;
  }

  .footer_row {
    grid-column-gap: 20px;
  }

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

  .form-block {
    width: 100%;
    max-width: 550px;
    margin: 0 auto 100px;
  }

  .form_field {
    line-height: 20px;
  }

  .hero {
    height: 100vh;
    min-height: 600px;
  }

  .sectionxxx {
    height: auto;
  }

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

  .hero_bg {
    height: 100%;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .txt_container {
    padding-top: 15vh;
    padding-bottom: 15vh;
  }

  .quote {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .quote.quote_footer {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .logo_contact__wrap {
    align-items: center;
    margin-bottom: 0;
  }

  .txt__wrap {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .logo_navbar {
    padding-left: 40px;
    padding-right: 40px;
  }

  .blur_trigger, .logo_trigger {
    height: 10vh;
  }

  .coming-_soon {
    font-size: 16px;
  }

  .par {
    font-size: 14px;
  }

  .scroll_txt {
    font-size: 15px;
  }

  .image-wrap {
    width: 180px;
  }

  .partner-container {
    margin-top: 60px;
  }

  .contact-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .image {
    opacity: .1;
  }

  .col_contatti {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .nowrap {
    white-space: nowrap;
  }

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

  .nav_background {
    opacity: 1;
  }

  .nav_link_wrapper.is-last {
    margin-bottom: auto;
  }

  .nav_link_wrapper.tablet_display {
    flex: none;
    margin-top: auto;
    margin-bottom: 40px;
    display: flex;
  }

  .nav_component {
    flex-direction: row;
    padding: 10px 27px 10px 32px;
  }

  .nav_link {
    color: #504f4f;
    text-transform: none;
    margin-top: 0;
    padding-bottom: 8px;
    font-size: 1rem;
  }

  .nav_link.w--current {
    border-bottom-color: #fff;
  }

  .text-nav-menu {
    z-index: 3;
    text-transform: uppercase;
    height: 10px;
    padding-bottom: 2px;
    font-size: 14px;
    line-height: 1;
    position: absolute;
  }

  .text-nav-menu.is-chiudi {
    opacity: 0;
  }

  .nav_link_container {
    z-index: 2;
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: 100vh;
    padding-top: 140px;
    padding-bottom: 100px;
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
  }

  .nav_logo {
    background-image: none;
    display: none;
  }

  .nav_logo.is-pittogramma {
    object-fit: contain;
    display: block;
  }

  .nav_logo.is-negative {
    background-image: none;
    display: block;
  }

  .div-block-3 {
    justify-content: flex-start;
    align-items: center;
    width: 70px;
    display: flex;
    position: absolute;
    right: 30px;
  }

  .nav_logo_wrapper {
    display: none;
  }

  .nav_logo_wrapper.is-responsive {
    width: 150px;
    height: 40px;
    display: flex;
  }

  .nav_hamburger_lottie {
    opacity: .5;
    flex: none;
  }

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

  .nav_logo_wrapper_tablet {
    width: 150px;
  }

  .footer-info_wrapper {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .footer_component {
    padding: 64px 32px;
  }

  .footer_flex {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    text-align: center;
    flex-flow: wrap;
    justify-content: center;
    align-self: stretch;
    align-items: center;
    max-width: none;
  }

  .contact_component {
    flex-direction: column;
  }

  .contact_component.is-footer {
    width: 100%;
  }

  .slide02 {
    margin-right: 20px;
  }

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

  .slide_image_wrapper {
    flex: none;
    height: 300px;
  }

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

  .flex-horizontal.is-reverse {
    flex-direction: column;
    align-self: stretch;
  }

  .flex-horizontal.is-reverse.flex-gap-60px {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column-reverse;
  }

  .flex-horizontal.is-gap-card {
    flex-flow: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .flex-horizontal.is-full {
    flex-flow: column;
  }

  .form_text-2 {
    width: 100%;
  }

  .slider02_arrow {
    margin-right: 32px;
  }

  .policy-flags {
    width: 100%;
  }

  .form_message {
    width: 0;
    height: 0;
    position: absolute;
  }

  .slide02_fake.last {
    margin-left: 20px;
  }

  .cta.is-submit {
    margin-top: 24px;
  }

  .text_container.is-margin {
    margin-top: 0;
    padding-left: 0;
  }

  .text_container.is-half {
    width: auto;
    padding: 0 0%;
  }

  .text_container.is-footer {
    width: 100%;
  }

  .text_container.is-50, .text_container.is-align-left {
    width: auto;
  }

  .text_container.is-align-left.is-33 {
    width: 100%;
  }

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

  .image_wrapper.is-66 {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 80vw;
    min-height: 500px;
    max-height: 60vh;
  }

  .image_wrapper.is-66.grid {
    width: 100%;
  }

  .image_wrapper.is-arco {
    width: 130px;
    height: 150px;
  }

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

  .footer_logo_wrapper {
    width: 100%;
  }

  .form_container {
    flex-flow: wrap;
    display: flex;
  }

  .form_field-2 {
    flex: 1;
    min-width: 250px;
    line-height: 20px;
  }

  .form_field-2.is-message {
    min-width: 100%;
  }

  .fit-cover.is-pattern02 {
    top: auto;
    left: auto;
  }

  .service_item {
    flex: none;
    width: 200px;
    height: 200px;
  }

  .slider02 {
    border-right-style: none;
    padding-left: 32px;
    padding-right: 32px;
  }

  .slider02_container {
    width: 300px;
  }

  .lightbox_img_wrapper {
    flex: none;
  }

  .tipologia_item {
    min-width: 40%;
  }

  .footer_container {
    justify-content: flex-start;
    align-items: center;
    padding: 0;
  }

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

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

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

  .item-pattern01 {
    opacity: .4;
  }

  .lightbox_img {
    min-height: auto;
  }

  .video {
    width: 100%;
  }

  .mask02 {
    width: 300px;
    height: 300px;
  }

  .text_wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    width: 100%;
  }

  .section {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

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

  .section.is-pad-top-180 {
    padding-top: 110px;
  }

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

  .section.is-map {
    height: 400px;
    display: none;
  }

  .section.cross-section {
    margin-top: -200px;
    padding-top: 260px;
  }

  .section.af {
    background-image: linear-gradient(rgba(166, 139, 123, .95), rgba(166, 139, 123, .95)), url('../images/profile-afsc1612.jpg');
    background-position: 0 0, 0%;
  }

  .section.bg_texture.no-minh {
    height: auto;
    min-height: auto;
  }

  .section.is-map_mobile {
    height: 400px;
    display: flex;
  }

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

  .item-line.is-full.color_white {
    display: none;
  }

  .hero-content {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .hero-h1 {
    font-size: 32px;
    line-height: 38px;
  }

  .icon-tipo {
    max-width: 80px;
  }

  .tipo-txt {
    font-size: 14px;
    line-height: 18px;
  }

  .hero_img.is-interni {
    object-position: 0% 50%;
  }

  .partner-row {
    justify-content: center;
    align-items: center;
  }

  .accordion-01_item_container {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .moodboard-2, .moodboard-3 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: 1fr 1fr 1fr;
    align-self: stretch;
  }

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

@media screen and (max-width: 767px) {
  .footer_row {
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .form-block {
    padding-top: 40px;
  }

  .form_field {
    margin-bottom: 15px;
  }

  .button-submit {
    width: 150px;
  }

  .banner_text-link {
    margin-right: 8px;
  }

  .banner_btn {
    flex: 1;
  }

  .banner_btn.banner {
    flex: 0 auto;
  }

  .banner_text {
    margin-right: 0;
  }

  .prefs_title {
    font-size: 20px;
  }

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

  .banner_close.pref {
    margin-left: 0;
    left: auto;
  }

  .banner_title_wrap {
    align-items: center;
  }

  .banner_title {
    font-size: 20px;
  }

  .hero.placeholder {
    height: 100vh;
  }

  .logo {
    width: 150px;
  }

  .logo.footer {
    width: 200px;
  }

  .txt_container {
    padding: 140px 60px;
  }

  .scroll {
    width: 30px;
    height: 15px;
  }

  .quote.quote_footer {
    font-size: 22px;
  }

  .logo_contact__wrap {
    width: 100%;
  }

  .contact_link {
    font-size: 14px;
  }

  .txt__wrap {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .logo_navbar {
    position: relative;
  }

  .coming-_soon {
    width: 100%;
    margin-bottom: 20px;
    position: static;
    top: 0;
  }

  .par {
    margin-top: 0;
  }

  .scroll_wrapper.mobile {
    z-index: 50;
    margin-top: 20px;
    margin-bottom: 0;
    padding-bottom: 20px;
    display: flex;
    position: relative;
    bottom: 0;
    left: auto;
  }

  .scroll_wrapper.dsk-landscape {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 20px;
    display: none;
    bottom: 53vh;
    left: 0;
  }

  .scroll_wrapper.is-mobile {
    z-index: 20;
    display: flex;
    bottom: 51vh;
    left: 176px;
  }

  .image-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    width: 130px;
    height: auto;
    margin-bottom: 0;
    display: flex;
  }

  .loader-02_logo {
    width: 160px;
    height: 150px;
  }

  .partner-container {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 60px;
  }

  .partner-wrap.reliving {
    width: 110px;
    height: 50px;
  }

  .partner-wrap.investire {
    width: 120px;
    height: 25px;
  }

  .partner-wrap.coldwell {
    width: 150px;
    height: 40px;
  }

  .h3_contatti {
    font-size: 12px;
  }

  .containerxxx.is-technical {
    width: 90%;
  }

  .cookie_tab {
    min-width: 750px;
  }

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

  .partner-block {
    justify-content: flex-start;
    align-items: center;
  }

  .partner-block.is-iniziativa {
    border-bottom: 1px solid var(--peach-orange);
    border-right-style: none;
    padding-bottom: 25px;
    padding-right: 0;
  }

  .nav_hamburger {
    height: 40px;
  }

  .footer_block.is-legal {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

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

  .contact_component.is-footer {
    padding: 24px;
  }

  .text_container.over-full-img {
    padding: 40px;
  }

  .image_wrapper.is-66 {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .image_wrapper.is-66.grid {
    min-height: 400px;
  }

  .image_wrapper.is-arco {
    bottom: -70px;
  }

  .slide_container {
    min-width: auto;
  }

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

  .service_item {
    min-width: auto;
  }

  .tipologia_item {
    flex-direction: column;
    min-width: 300px;
  }

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

  .moodboard {
    grid-template-rows: 1fr .3fr;
    grid-template-columns: 1fr 1fr;
    height: 450px;
    min-height: auto;
    max-height: none;
  }

  .moodboard.is-gap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: 1.75fr 1fr;
    grid-template-columns: 1fr 1fr;
    height: 130vw;
  }

  .item-pattern01 {
    opacity: .2;
    min-height: 300px;
  }

  .video {
    width: 100%;
  }

  .mask02 {
    width: 250px;
    height: 250px;
  }

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

  .section.cross-section {
    padding-top: 220px;
  }

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

  .tipo-row.in-appartamenti {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }

  .tipo-box {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .div-block-4 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .accordion-01_item_container {
    grid-template-columns: 1fr 1fr;
  }

  .accordion-01_item {
    align-self: stretch;
  }

  .moodboard-2 {
    grid-template-columns: 1fr 1fr;
    height: 150vw;
    max-height: none;
  }

  .moodboard-2.is-interni {
    grid-template-rows: 1fr .5fr;
  }

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

  .moodboard-3 {
    grid-template-columns: 1fr 1fr;
    height: 150vw;
    max-height: none;
  }
}

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

  .form_component {
    padding-top: 50px;
  }

  .footer_txt {
    text-align: center;
    max-width: 300px;
  }

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

  .form-block {
    margin-bottom: 80px;
  }

  .button-submit {
    width: 150px;
  }

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

  .banner-prefs {
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .banner_btn.submit {
    align-self: auto;
  }

  .banner_text {
    margin-right: 0;
  }

  .banner_wrap {
    padding: 20px;
  }

  .prefs_component {
    padding: 24px;
  }

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

  .banner_close {
    align-self: flex-end;
    height: 32px;
    margin-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .banner_close.x {
    margin-right: 0;
    top: 20px;
  }

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

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

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

  .hero {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    min-height: 600px;
    padding-top: 60px;
  }

  .hero.placeholder {
    height: 100vh;
    min-height: 600px;
  }

  .hero.hero_int {
    flex-flow: column-reverse;
    height: 90vh;
    padding-top: 0;
  }

  .sectionxxx.fullpage {
    height: 100vh;
    min-height: auto;
  }

  .sectionxxx.is-gdpr {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo.footer {
    width: 200px;
    height: 100px;
    margin-bottom: 80px;
  }

  .logo.tech-page {
    margin-bottom: 80px;
  }

  .hero_bg {
    flex: 1;
    height: 40%;
    position: relative;
  }

  .hero_bg.hero_int_bg {
    height: 45%;
  }

  .txt_container {
    padding: 15vh 20px;
  }

  .h3-light.contact {
    margin-bottom: 40px;
  }

  .scroll {
    width: 40px;
    height: 20px;
    bottom: 0;
  }

  .footer_separator {
    width: 100%;
  }

  .contact_link {
    letter-spacing: 3px;
  }

  .logo_navbar {
    height: 60%;
    padding: 0;
    position: relative;
  }

  .slide-2 {
    width: 100%;
  }

  .blur_trigger {
    position: absolute;
    top: 0;
  }

  .arrow_trigger {
    height: 2px;
    position: absolute;
    top: 0;
  }

  .hero_overlayer {
    display: none;
  }

  .logo_trigger {
    position: absolute;
    top: 0;
  }

  .coming-_soon {
    margin-bottom: 20px;
    position: static;
  }

  .par {
    margin-top: 2vh;
  }

  .scroll_wrapper.mobile {
    z-index: 6;
    margin-top: 20px;
    padding-bottom: 20px;
    display: flex;
    position: relative;
    bottom: auto;
  }

  .scroll_wrapper.dsk-landscape {
    z-index: 7;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
    display: none;
    position: absolute;
    bottom: 52vh;
    left: auto;
  }

  .scroll_wrapper.is-mobile {
    left: auto;
  }

  .scroll_txt {
    display: flex;
  }

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

  .partner-container {
    flex-flow: column;
  }

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

  .containerxxx.is-technical {
    width: 90%;
  }

  .heading {
    font-size: 32px;
    line-height: 38px;
  }

  .testo-gdpr h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .testo-gdpr h1 {
    font-size: 32px;
    line-height: 38px;
  }

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

  .button01 {
    width: auto;
    font-size: 14px;
  }

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

  .nav_logo_wrapper.is-responsive {
    width: 120px;
    height: 29px;
  }

  .text-subtitle {
    font-size: 12px;
  }

  .footer_block.is-legal {
    flex-flow: column;
    margin-top: 40px;
    padding-bottom: 0;
  }

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

  .form_heading {
    font-size: 1.8rem;
  }

  .contact_component.is-footer {
    outline-offset: 4px;
    padding: 16px;
  }

  .footer_line_vert {
    display: none;
  }

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

  .flex-horizontal.is-gap-card {
    flex-flow: column;
  }

  .slider02_arrow {
    left: auto;
    right: 50%;
  }

  .slider02_arrow.left {
    right: 80px;
  }

  .slider02_arrow.right {
    right: 20px;
  }

  .title-section {
    flex-flow: column;
  }

  .title-section.is-section {
    flex-flow: row;
  }

  .cta.is-submit {
    align-self: center;
  }

  .h2-heading.is-apertura {
    margin-bottom: 20px;
    font-size: 1.3em;
  }

  .image_wrapper.is-66 {
    height: auto;
  }

  .image_wrapper.is-66.grid {
    min-height: 300px;
  }

  .image_wrapper.is-arco {
    width: 90px;
    height: 100px;
    display: none;
    position: absolute;
  }

  .form_container {
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .fit-cover.is-pattern02 {
    width: 90%;
    height: 90%;
  }

  .slider02_container {
    width: 250px;
    margin-right: 10px;
  }

  .lightbox_img_wrapper {
    padding: 10px;
  }

  .link-partner {
    width: 110px;
  }

  .link-partner.is-large {
    width: 200px;
  }

  .tipologia_item {
    min-width: auto;
  }

  .footer_container {
    width: 100%;
  }

  .button-3 {
    padding-left: 32px;
    padding-right: 32px;
    line-height: 1.4;
  }

  .item-pattern01 {
    width: 17.5vh;
    height: 30vh;
  }

  .section.is-pad-top-180.portrait-padding-bottom-0px {
    padding-bottom: 0;
  }

  .section.is-bottommenu {
    background-color: #f2efe8;
  }

  .section.is-map {
    height: 550px;
  }

  .section.cross-section.light {
    margin-top: -100px;
    padding-top: 150px;
  }

  .lightbox_container {
    background-image: url('../images/plani_dx.webp');
    background-position: 96% 0;
    background-repeat: no-repeat;
    background-size: auto 25%;
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .item-line.is-full.color_white {
    display: block;
  }

  .hero-content {
    background-color: var(--dark-jungle-green);
    width: 100%;
    max-width: none;
    height: 100%;
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .hero-h1.hero-h1_int {
    margin-bottom: 10px;
  }

  .title-paragraph {
    font-size: 28px;
    line-height: 36px;
  }

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

  .tipo-row.in-appartamenti {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .hero-p {
    margin-bottom: 20px;
  }

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

  .accordion-content-inner {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    padding: 40px 20px;
  }

  .partner-row {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .partner-txt, .partner-img {
    width: 100%;
  }

  .text-quote {
    font-size: 22px;
    line-height: 32px;
  }

  .accordion-01_accordion_head.is-open {
    padding-right: 10px;
  }

  .title_accordion {
    font-size: 24px;
  }
}

#w-node-_03a6e7ae-ff5e-ea02-b590-4d9ae8593b48-ac81e0ac {
  grid-area: 1 / 2 / 4 / 3;
}

#w-node-_2172b15a-9975-b585-6a92-04132a181840-ac81e0ac {
  grid-area: span 4 / span 2 / span 4 / span 2;
}

#w-node-c868e502-3419-89e0-8bb7-91ab7a0be0db-ac81e0ac {
  grid-area: 2 / 5 / 6 / 7;
}

#w-node-_8bf9bff9-a854-423f-45f2-02d0373f3241-ac81e0ac {
  grid-area: 4 / 1 / 6 / 3;
}

#w-node-ddfd7a59-cf03-9a65-0442-7252fca902a6-ac81e0ac {
  grid-area: 5 / 3 / 7 / 5;
}

#w-node-e7830951-6447-9e73-26cb-86627ec32e7e-f5a2a8fc, #w-node-e7830951-6447-9e73-26cb-86627ec32e7f-f5a2a8fc, #w-node-e7830951-6447-9e73-26cb-86627ec32e82-f5a2a8fc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e7830951-6447-9e73-26cb-86627ec32e84-f5a2a8fc {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

#w-node-ed44d9d1-5eec-6fa6-8bf1-398a5f1d46fd-9ae1830a {
  grid-area: 1 / 1 / 6 / 5;
}

#w-node-ed44d9d1-5eec-6fa6-8bf1-398a5f1d46ff-9ae1830a {
  grid-area: 1 / 5 / 4 / 7;
}

#w-node-ed44d9d1-5eec-6fa6-8bf1-398a5f1d4701-9ae1830a {
  grid-area: 1 / 7 / 4 / 9;
}

#w-node-ed44d9d1-5eec-6fa6-8bf1-398a5f1d4703-9ae1830a {
  grid-area: span 2 / span 4 / span 2 / span 4;
}

#w-node-af3d3777-78f6-8cf3-53d4-2f14bced0946-9ae1830a {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-f12b50f5-9e03-3316-b231-247dc3a838a9-9ae1830a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b17d6c29-8c3f-ec81-1c7c-4bf9c4b4fc42-be7372af {
  grid-area: span 6 / span 5 / span 6 / span 5;
}

#w-node-b17d6c29-8c3f-ec81-1c7c-4bf9c4b4fc44-be7372af, #w-node-b17d6c29-8c3f-ec81-1c7c-4bf9c4b4fc48-be7372af, #w-node-b17d6c29-8c3f-ec81-1c7c-4bf9c4b4fc46-be7372af {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_2cd9e2c0-049e-a05d-9eaf-a8f7c40fbdd1-8a26b7a9 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_2cd9e2c0-049e-a05d-9eaf-a8f7c40fbdd7-8a26b7a9 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_5d93cd05-e26d-f907-f44e-e669341903c5-be7434b3 {
  grid-area: 1 / 1 / 4 / 4;
}

#w-node-_5d93cd05-e26d-f907-f44e-e669341903c7-be7434b3 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_9f23c00b-2b4c-f407-f0c5-2b8969961fc2-be7434b3 {
  grid-area: 4 / 1 / 6 / 3;
}

#w-node-_5d93cd05-e26d-f907-f44e-e669341903c9-be7434b3 {
  grid-area: 4 / 3 / 7 / 6;
}

#w-node-_5d93cd05-e26d-f907-f44e-e669341903cb-be7434b3 {
  grid-area: 2 / 4 / 4 / 7;
}

#w-node-d946c702-0f51-0187-b0c1-4ef5aa61a7c0-be7434b3 {
  grid-area: 1 / 1 / 6 / 5;
}

#w-node-_5246e2fb-6152-564a-d55c-008530167471-be7434b3 {
  grid-area: 1 / 5 / 4 / 7;
}

#w-node-cfc7d61c-e6ff-5fdb-cf08-be86cff615e9-be7434b3 {
  grid-area: 1 / 7 / 4 / 9;
}

#w-node-_61ee3a5a-71ea-070f-33a9-26270a8c448d-be7434b3 {
  grid-area: span 2 / span 4 / span 2 / span 4;
}

@media screen and (max-width: 767px) {
  #w-node-d3bffadf-6c03-ffcc-ed5f-eb4e58df0a59-9ae1830a {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-af3d3777-78f6-8cf3-53d4-2f14bced0946-9ae1830a {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_2cd9e2c0-049e-a05d-9eaf-a8f7c40fbdd1-8a26b7a9 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_2cd9e2c0-049e-a05d-9eaf-a8f7c40fbdd7-8a26b7a9 {
    order: 9999;
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b17d6c29-8c3f-ec81-1c7c-4bf9c4b4fc42-be7372af {
    grid-area: span 6 / span 4 / span 6 / span 4;
  }

  #w-node-b17d6c29-8c3f-ec81-1c7c-4bf9c4b4fc44-be7372af, #w-node-b17d6c29-8c3f-ec81-1c7c-4bf9c4b4fc48-be7372af, #w-node-b17d6c29-8c3f-ec81-1c7c-4bf9c4b4fc46-be7372af {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }
}


@font-face {
  font-family: 'Melodrama Variable';
  src: url('../fonts/Melodrama-Variable.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Melodrama';
  src: url('../fonts/Melodrama-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Melodrama';
  src: url('../fonts/Melodrama-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Melodrama';
  src: url('../fonts/Melodrama-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Melodrama';
  src: url('../fonts/Melodrama-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Melodrama';
  src: url('../fonts/Melodrama-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}