@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.woff2') format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.woff2') format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.woff2') format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-LightItalic.woff2') format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.woff2') format("woff2"), url('../fonts/Satoshi-VariableItalic.woff2') format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BlackItalic.woff2') format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi Variable;
  src: url('../fonts/Satoshi-Variable.woff2') format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.woff2') format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.woff2') format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BoldItalic.woff2') format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --color--background-color: #141313;
  --font-family--satoshi: "Satoshi Variable", sans-serif;
  --color--font-color: #fff;
  --text-size--regular: 1.3rem;
  --heading-style--h5: 1.8rem;
  --color--black: black;
  --color--white: white;
  --color--primary-color: #161312;
  --color--stroke: #0000;
  --heading-style--h1: 20vw;
  --text-size--logo-footer: 5rem;
  --heading-style--h6: 1.1rem;
  --radiant-ui-components-library--color--body-font-dark: #f8f8f8;
  --text-size--medium: 1rem;
  --font-family--satoshi-variable: "Satoshi Variable", sans-serif;
  --radiant-ui-components-library--color--theme-color: #264137;
  --radiant-ui-components-library--color--button-background-dark: #131218;
  --radiant-ui-components-library--color--green_table: #086743;
  --radiant-ui-components-library--color--white: white;
  --heading-style--h2: 5.5rem;
  --heading-style--h3: 4.5rem;
  --heading-style--h4: 3.5rem;
  --text_logo: 3vw;
  --text-size--large: 1.4rem;
  --text-size--small: 1rem;
  --secondary-button--gap: 1rem;
  --relume-library-lite--rl-black: black;
  --relume-library-lite--rl-white: white;
  --walsh--black: #2c2c2c;
  --conversion-flow-library--medium-purple: #b16cea;
  --conversion-flow-library--sandy-brown: #ffa84b;
  --waves-library--white: white;
  --waves-library--background: #faebe3;
  --waves-library--black: #131313;
}

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

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--color--background-color);
  font-family: var(--font-family--satoshi);
  color: var(--color--font-color);
  font-size: var(--text-size--regular);
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 30px;
}

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

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--color--font-color);
  text-decoration: none;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

.container {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  height: auto;
  margin-top: 0;
  display: flex;
}

.container.small {
  max-width: 90rem;
}

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

.text-size-regular {
  font-size: var(--text-size--regular);
  line-height: 1.5;
}

.text-weight-bold {
  font-weight: 700;
}

.heading-5 {
  font-size: var(--heading-style--h5);
  line-height: 1.15;
}

.caps {
  text-transform: uppercase;
}

.speakers-card {
  width: 100%;
  height: 100%;
  padding: 1.5rem 1.5rem 2rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.pricing-button {
  background-color: var(--color--black);
  color: var(--color--white);
  text-align: center;
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  padding: .8rem 1rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-button.w--current {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-button.password {
  margin-top: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.faq-component {
  grid-column-gap: 0px;
  grid-row-gap: 4.8125rem;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.faq-list {
  grid-row-gap: .5rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: flex;
  position: relative;
}

.faq-item {
  cursor: pointer;
  border-radius: .5rem;
  flex-flow: column;
  padding: 1.5rem;
  display: flex;
  position: relative;
}

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

.empty-state {
  text-align: center;
  background-color: #0000;
}

.faq-top {
  z-index: 1;
  cursor: pointer;
  position: relative;
}

.faq-title-wrapper {
  z-index: 10;
  height: 100%;
  padding-right: 5rem;
  position: relative;
}

.faq-action-wrapper {
  z-index: 25;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0 0% auto;
}

.arrow {
  width: auto;
  height: auto;
}

.faq-bottom {
  z-index: 10;
  margin-right: 12rem;
  position: relative;
  overflow: hidden;
}

.faq-bottom-content {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  opacity: .8;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  display: grid;
}

.team-member-component {
  flex-direction: column;
  margin-top: 15vh;
  padding-left: 6rem;
  padding-right: 6rem;
  display: flex;
}

.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6 {
  margin-bottom: 15px;
  line-height: 1.2;
}

.rich-text p {
  margin-bottom: 1rem;
}

.event-item {
  cursor: pointer;
  flex-flow: column;
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
}

.relative {
  z-index: 5;
  position: relative;
}

.button-submit-hover {
  background-color: var(--color--primary-color);
  border-radius: 50%;
  width: 35rem;
  height: 35rem;
  position: absolute;
}

.button-submit-hover.small {
  width: 16rem;
  height: 16rem;
}

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

.utility-page-content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.not-fount-text-size {
  font-size: 22rem;
  font-weight: 300;
  line-height: 1;
}

.button-home {
  background-color: var(--color--black);
  color: var(--color--white);
  text-align: center;
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  padding: .6rem 3.5rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-home.w--current {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-field-contact {
  color: var(--color--black);
  background-color: #0000;
  border: 1px solid #0000;
  border-bottom-color: #15151526;
  border-radius: 0;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 1rem;
  font-size: 1rem;
  transition: all .4s;
}

.text-field-contact:hover {
  border-width: 1px;
  border-color: transparent transparent var(--color--primary-color);
  padding-left: 1.2rem;
}

.text-field-contact:active {
  color: #212121;
}

.text-field-contact:focus {
  border-color: var(--color--primary-color);
  color: var(--color--black);
  border-radius: .5rem;
}

.submit-button {
  z-index: 3;
  color: #0000;
  background-color: #0000;
  position: absolute;
  inset: 0%;
}

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

.card-small {
  border: .1px solid #9b8f7e66;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 50vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-big {
  border: .1px solid #9b8f7e66;
  border-radius: .5rem;
  align-items: flex-start;
  width: 65%;
  height: 50vh;
  padding: 2.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sticky-small-image {
  flex: none;
  align-self: flex-end;
  width: 12vw;
  height: 12vw;
  margin-top: 7.5vw;
  margin-right: 10vw;
  overflow: hidden;
}

.product-link {
  background-color: var(--color--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
  display: flex;
  position: relative;
}

.faq-wrapper {
  grid-column-gap: 3.25rem;
  grid-row-gap: 3.25rem;
  flex-flow: column;
  align-items: center;
  margin-top: 15vh;
  display: flex;
}

.faq-heading {
  text-align: center;
  max-width: 50ch;
}

.faq-hover {
  border-radius: .5rem;
  transition: background-color .45s;
}

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

.brand {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  max-width: 8rem;
  display: flex;
}

.brand.w--current {
  justify-content: center;
  align-items: center;
  max-width: 14rem;
  margin-bottom: 5.1rem;
  transition: opacity .7s;
  display: block;
  position: static;
}

.brand.w--current:hover {
  opacity: .8;
  transform: translate(0, 1px);
}

.navbar {
  z-index: 50;
  text-align: left;
  background-color: #fff0;
  position: fixed;
  inset: 0% 0% auto;
}

.links-navbar {
  border-radius: .5rem .5rem .5rem .5px;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: .5rem 1rem;
  transition: background-color .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.links-navbar:hover {
  color: #283849;
  background-color: #f6f9fc;
}

.links-navbar.w--current {
  border: 1px solid #f6f9fc;
}

.navbar-component {
  outline-offset: 0px;
  text-align: center;
  border-radius: 0;
  outline: .5px #fff3;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2.2rem 1rem 2rem;
  display: flex;
  position: static;
}

.overlay-navbar {
  z-index: 1;
  opacity: 0;
  background-color: #040404;
  width: 100%;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0%;
}

.image-parallax {
  border-radius: 0;
  height: auto;
  margin-top: .25rem;
  margin-bottom: .25rem;
}

.hero-heading {
  z-index: 5;
  grid-column-gap: 1.125rem;
  grid-row-gap: 1.125rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: none;
  margin-top: 7vw;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  display: block;
  position: static;
}

.hero-hover {
  grid-column-gap: 1.8rem;
  grid-row-gap: 1.8rem;
  border-bottom: 1px solid var(--color--primary-color);
  background-color: var(--color--white);
  white-space: nowrap;
  border-radius: .0625rem .3125rem .3125rem;
  align-items: flex-start;
  padding: .75rem 1rem;
  display: flex;
  position: absolute;
  left: .5rem;
  overflow: hidden;
}

.hover-relative {
  position: relative;
}

.read-more-tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: var(--color--black);
  background-color: #efefef;
  border-radius: 2.3125rem;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .75rem;
  text-decoration: none;
  display: flex;
}

.footer-grid-wrap {
  grid-column-gap: 1.3rem;
  grid-row-gap: 1.3rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  display: flex;
}

.credits-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  display: flex;
}

.text-color-black:hover {
  color: #29ce8c;
}

.footer-component {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 0;
  line-height: 1;
  display: flex;
}

.footer-social {
  background-color: #a77c49;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 1.8rem;
  height: auto;
  transition: all .3s;
  display: flex;
}

.footer-social:hover {
  background-color: var(--color--stroke);
  color: #c9d4d8;
  transform: translate(0, -2px);
}

.footer-social:focus, .footer-social:visited {
  background-color: var(--color--stroke);
}

.footer-social:lang(en) {
  background-color: #a77c4900;
}

.footer-social:lang(it) {
  background-color: var(--color--stroke);
}

.icon-embed {
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.link_footer {
  text-decoration: none;
  transition: opacity .2s;
}

.link_footer:hover {
  opacity: .8;
}

.footer-links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-social-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
}

.paragraph {
  color: var(--color--white);
  font-family: Satoshi, sans-serif;
  font-size: .9rem;
  font-weight: 300;
}

.maya_size {
  color: #fff;
  font-family: Italiana, sans-serif;
  font-size: var(--heading-style--h1);
  text-align: center;
  text-transform: none;
  font-weight: 400;
  line-height: .7;
}

.text-block {
  color: var(--color--white);
  text-align: center;
  letter-spacing: normal;
  text-transform: none;
  width: 100%;
  margin-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.logo_2 {
  color: #cec3b6;
  text-transform: capitalize;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

.header {
  z-index: -100;
  object-fit: fill;
  background-image: url('../images/Tavolo_Maya_95cm_xl_header.jpg');
  background-position: 50% 35%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 58vw;
}

.heading-features-right {
  color: var(--color--font-color);
  text-align: right;
  letter-spacing: normal;
  -webkit-text-stroke-width: 0px;
  text-indent: 0;
  text-transform: uppercase;
  column-count: auto;
  white-space: normal;
  word-break: break-all;
  justify-content: center;
  align-items: flex-start;
  font-family: Italiana, sans-serif;
  font-size: 5vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.logo-footer-big {
  color: var(--color--white);
  font-family: Italiana, sans-serif;
  font-size: var(--text-size--logo-footer);
  text-align: center;
  letter-spacing: normal;
  text-transform: uppercase;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
  font-weight: 400;
  line-height: .3;
  text-decoration: none;
  display: block;
}

.section-3 {
  background-color: var(--color--primary-color);
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 1rem;
  display: flex;
}

.text_features_color_left {
  color: var(--color--black);
  font-family: Satoshi, sans-serif;
  font-size: var(--heading-style--h5);
  line-height: var(--heading-style--h6);
  text-align: left;
  display: block;
}

.sezione_faq {
  background-color: #f3f3f3;
  margin-top: 6rem;
  padding: 4rem 20%;
}

.rl_faq1_component-2 {
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.rl_faq1_accordion-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.rl_faq1_icon-wrapper-2 {
  align-self: flex-start;
}

.rl_faq1_answer-2 {
  overflow: hidden;
}

.rl_faq1_answer-wrapper-2 {
  margin-bottom: 1.5rem;
}

.contatti {
  background-color: var(--radiant-ui-components-library--color--body-font-dark);
  justify-content: center;
  align-items: center;
  display: block;
}

.heading-features-subtitle {
  color: var(--color--primary-color);
  font-family: Satoshi Variable, sans-serif;
  font-size: var(--heading-style--h6);
  text-align: left;
  letter-spacing: normal;
  -webkit-text-stroke-width: 0px;
  text-indent: 0;
  text-transform: none;
  column-count: auto;
  white-space: normal;
  word-break: normal;
  justify-content: center;
  align-items: flex-start;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
  display: block;
}

.regular-vw-right {
  font-family: Satoshi, sans-serif;
  font-size: var(--text-size--medium);
  text-align: right;
  font-weight: 500;
  line-height: 1.4;
}

.heading-features-left {
  color: var(--color--font-color);
  text-align: left;
  letter-spacing: normal;
  -webkit-text-stroke-width: 0px;
  text-indent: 0;
  text-transform: uppercase;
  column-count: auto;
  white-space: normal;
  word-break: normal;
  justify-content: center;
  align-items: flex-start;
  font-family: Italiana, sans-serif;
  font-size: 5vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.button-primary-6 {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #015c39cc;
  margin-left: 0;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.button-primary-6:hover {
  color: #fff;
  background-color: #148d5bcc;
}

.button-primary-6:active {
  background-color: #43464d;
}

.tasto_esplora {
  background-color: var(--color--black);
  font-family: var(--font-family--satoshi-variable);
  color: var(--color--white);
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  width: 16rem;
  margin-top: 20px;
  padding: 14px 0;
  font-size: 18px;
  text-decoration: none;
  display: flex;
}

.tasto_esplora:hover {
  color: var(--color--primary-color);
}

.block {
  border-style: none;
  border-width: 1px;
  flex-wrap: nowrap;
  flex: 1;
  place-content: flex-start;
  align-items: flex-start;
  min-width: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.block.vertically-centered {
  align-items: center;
  display: flex;
}

.block._58 {
  flex: 0 0 58.33%;
  justify-content: center;
  display: flex;
}

.text-block-4 {
  color: #fff;
  text-align: center;
  text-transform: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-family: Satoshi, sans-serif;
  font-size: 2vw;
  font-weight: 200;
  line-height: 1.3;
  display: flex;
}

.text-color-black-copy {
  color: var(--color--white);
  font-size: var(--heading-style--h6);
  font-weight: 300;
}

.text-color-black-copy:hover {
  color: #29ce8c;
}

.home-intro_visual {
  width: 60%;
  height: auto;
  margin-left: 1rem;
  margin-right: 1rem;
  padding-left: 0;
}

.home-intro_section {
  z-index: 2;
  background-color: #22211e;
  border-radius: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
}

.spacer {
  height: 80vh;
}

.home-intro_visual-height {
  width: auto;
  height: auto;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 100%;
  padding-left: 0;
  position: relative;
}

.home-cta_section {
  color: #000;
  text-align: center;
  mix-blend-mode: normal;
  background-image: url('../images/footer-bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 100vh;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
  position: sticky;
  top: 0;
}

.page-wrapper {
  width: 100%;
  padding-top: 0;
  font-size: 1em;
  position: relative;
  overflow: visible;
}

.home-intro_ssx {
  width: 100%;
  max-width: none;
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  position: static;
}

.home-cta_wrapper {
  background-color: #141414;
  height: 300vh;
  margin-top: -100vh;
  margin-bottom: -100vh;
}

.footer_wrapper {
  margin-top: -100vh;
}

.home-intro_image {
  z-index: 50;
  box-sizing: border-box;
  aspect-ratio: auto;
  overflow-wrap: normal;
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: 50% 100%;
  border-radius: 1rem;
  width: 100%;
  max-width: none;
  height: 100%;
  display: inline-block;
  position: absolute;
  inset: 0%;
}

.home-intro_image.is-top {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home-content_wrapper {
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.spacer-12 {
  padding-bottom: .75em;
}

.home-intro_s {
  text-align: left;
  max-width: none;
  font-family: Satoshi, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.5;
  position: static;
}

.heading-features-clame {
  color: var(--color--white);
  text-align: center;
  letter-spacing: normal;
  -webkit-text-stroke-width: 0px;
  text-indent: 0;
  text-transform: uppercase;
  column-count: auto;
  white-space: normal;
  word-break: normal;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Italiana, sans-serif;
  font-size: 6vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  display: block;
}

.text-span-3 {
  font-size: 7vw;
}

.waves---main-container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.waves---section-medium {
  padding-top: 0;
  padding-bottom: 0;
}

.waves-master-gallery-1 {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.waves-grid-gallery-1 {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  justify-content: stretch;
  place-items: center;
  padding-bottom: 0;
}

.waves-column-gallery-1 {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.immagine_doppia_001 {
  box-sizing: border-box;
  object-fit: fill;
  border-radius: 1rem;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  position: static;
}

.waves-text-wrap-gallery-1 {
  padding-top: 0;
  padding-bottom: 0;
}

.home-intro_dx {
  text-align: left;
  width: 100%;
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.immagine_doppia_002 {
  border-radius: 1rem;
  width: 100%;
  max-width: 100%;
  height: 90%;
  margin-bottom: 0;
  padding-bottom: 0;
}

.waves-master-contact-1 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.waves-form-block-contact-1 {
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.waves---input-wrap {
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-block-13 {
  text-align: right;
  margin-bottom: 0;
  padding-right: 0;
  font-size: .7em;
  line-height: 1;
}

.text-block-13-copy {
  text-align: left;
  margin-bottom: 0;
  margin-left: 10px;
  font-size: .9rem;
  line-height: 1;
}

.container-soluzione {
  z-index: 2;
  background-color: #fff5f0;
  background-image: url('../images/background_righe.png');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 11%;
  background-attachment: scroll;
  border-radius: 1rem;
  width: 100%;
  max-width: 94vw;
  margin-top: -40px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 3rem 4rem;
  position: relative;
}

.section-16 {
  background-color: #22211e;
  padding-top: 5rem;
}

.home-intro_sx {
  color: var(--color--black);
  font-family: Satoshi, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
}

.heading-features-left-copy {
  color: var(--color--black);
  text-align: left;
  letter-spacing: normal;
  -webkit-text-stroke-width: 0px;
  text-indent: 0;
  text-transform: uppercase;
  column-count: auto;
  white-space: normal;
  word-break: normal;
  justify-content: center;
  align-items: flex-start;
  font-family: Italiana, sans-serif;
  font-size: 6vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.home-intro_content-2 {
  text-align: right;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 70%;
  max-width: none;
  display: flex;
}

.text-block-13-copy-2 {
  color: #af8c6b;
  text-align: left;
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1;
}

.heading-features-right-2 {
  color: #fff;
  text-align: right;
  letter-spacing: normal;
  -webkit-text-stroke-width: 0px;
  text-indent: 0;
  text-transform: none;
  column-count: auto;
  overflow-wrap: normal;
  justify-content: center;
  align-items: flex-start;
  font-family: Italiana, sans-serif;
  font-size: 6vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.immagine_doppia_006 {
  box-sizing: border-box;
  object-fit: fill;
  border-radius: 1rem;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  position: static;
}

.tavola_stile {
  grid-row-gap: 2.5em;
  flex-flow: row-reverse;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.heading-features-left-2 {
  color: #fff;
  text-align: left;
  text-transform: none;
  justify-content: center;
  align-items: flex-start;
  font-family: Italiana, sans-serif;
  font-size: 6vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.waves-column-gallery-2 {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.tutti_giorni {
  grid-row-gap: 2.5em;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.immagine_doppia_003 {
  border-radius: 1rem;
  width: 100%;
  max-width: 100%;
  height: 90%;
  margin-bottom: 0;
  padding-bottom: 0;
}

.arreda_con_style {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  justify-content: stretch;
  place-items: center;
  padding-bottom: 0;
  position: static;
}

.lavoro_studio {
  grid-row-gap: 2.5em;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.contenitore_sezioni {
  z-index: 2;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 4rem 3rem;
  position: relative;
}

.text-block-14 {
  color: #af8c6b;
  text-align: right;
  font-size: .7em;
  line-height: 1;
}

.cucina_tempo_libero {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  justify-content: stretch;
  place-items: center;
  padding-bottom: 0;
  position: static;
}

.home-intro_content-right {
  text-align: right;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 53%;
  max-width: none;
  display: flex;
}

.divider-img {
  width: 40%;
  height: 10px;
}

.waves-text-wrap-gallery-2 {
  padding-top: 0;
  padding-bottom: 0;
}

.immagine_doppia_005 {
  box-sizing: border-box;
  object-fit: fill;
  border-radius: 1rem;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  position: static;
}

.home-intro_content_left {
  text-align: right;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 53%;
  max-width: 38em;
  display: flex;
}

.heading-features-right-3 {
  color: #fff;
  text-align: right;
  letter-spacing: normal;
  -webkit-text-stroke-width: 0px;
  text-indent: 0;
  text-transform: none;
  column-count: auto;
  white-space: normal;
  word-break: break-all;
  justify-content: center;
  align-items: flex-start;
  font-family: Italiana, sans-serif;
  font-size: 5vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.contenitore_multifunzione, .cuore_acciaio {
  grid-row-gap: 2.5em;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.container-modelli-2 {
  z-index: 0;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #f3f3f3;
  flex-flow: row;
  align-items: center;
  width: 100%;
  max-width: 100em;
  margin-top: -2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 4rem 4rem;
  display: flex;
  position: relative;
}

.card_maya_110 {
  color: #1d3c34;
  text-align: center;
  background-color: #fff;
  border: 1px solid #086743;
  border-radius: 1rem;
  width: 50%;
  margin-top: 0;
  padding: 3rem 2rem 1rem;
  position: relative;
}

.card_maya_110.growth {
  background-color: var(--radiant-ui-components-library--color--theme-color);
  box-shadow: none;
  color: #fff;
  border-color: #086743;
  width: auto;
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.plan_item-2 {
  background-image: url('../images/65c06d87870e4e91e52567dc_Vector2.svg.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 1rem;
  padding-left: 2rem;
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
}

.plan_item-2.white-icon {
  background-image: url('../images/Vector.svg');
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.text-color-white-3 {
  color: var(--radiant-ui-components-library--color--theme-color);
  -webkit-text-stroke-color: #264137;
  text-transform: uppercase;
  font-size: 52px;
}

.text-block-15 {
  font-size: 1rem;
  line-height: 1.3;
}

.text-block-16 {
  text-transform: uppercase;
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.plan_list-3 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: left;
  flex-direction: column;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 0;
  font-size: .9rem;
  list-style-type: none;
  display: flex;
}

.pricing-card-top-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  margin-bottom: 1rem;
  font-size: .9em;
  display: flex;
}

.text-color-white-4 {
  text-transform: uppercase;
  font-size: 60px;
}

.card_maya_95 {
  color: #1d3c34;
  text-align: center;
  background-color: #fff;
  border: 2px solid #086743;
  border-radius: 1rem;
  width: auto;
  margin-top: 0;
  padding: 2rem 1.5rem 1rem;
  position: relative;
}

.button-4 {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 8px;
  margin-top: 0;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: all .2s ease-in;
}

.button-4:hover {
  color: #fff;
  background-color: #284137;
  border-color: #0000;
}

.text_link_blog {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.waves---field-label-2 {
  padding-left: 0;
  font-family: Satoshi, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.waves---main-container-3 {
  max-width: none;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.waves---form-contact-2 {
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.waves-submit-wrap-contact-2 {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: auto;
  display: flex;
}

.waves-success-mesaage-2 {
  background-color: #fff;
  border-radius: 6px;
}

.waves-select-background-2 {
  background-color: var(--color--white);
  color: var(--color--black);
  border: 1px #131313;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  height: 50px;
  margin: 0;
  padding-left: 6px;
  font-size: 16px;
}

.waves-select-background-2:focus {
  border-color: #131313;
}

.titolo_cta {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Italiana, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.clame_2-copy-2 {
  text-align: center;
  width: 100%;
  max-width: none;
  font-family: Satoshi, sans-serif;
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.5;
  display: block;
  position: static;
}

.rl_faq1_icon-3 {
  color: var(--radiant-ui-components-library--color--theme-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.titolo_cta_bold {
  color: var(--radiant-ui-components-library--color--theme-color);
  -webkit-text-stroke-color: #264137;
  text-transform: uppercase;
}

.form_cta {
  background-color: #f3f3f3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 6rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.waves-text-field-background-3 {
  background-color: var(--color--white);
  color: #131313;
  border: 1px #000;
  border-radius: 0;
  height: 50px;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 6px;
  font-size: 15px;
}

.waves-text-field-background-3:focus {
  color: #131313;
  border-color: #131313;
}

.waves---section-medium-4 {
  background-color: var(--radiant-ui-components-library--color--theme-color);
  border-radius: 1rem;
  width: 80%;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
}

.text-span-5 {
  text-transform: none;
  font-size: 6vw;
}

.rl_faq1_heading-wrapper-3 {
  text-align: center;
  width: 100%;
  max-width: 48rem;
  margin-bottom: 1rem;
}

.rl_faq1_question-4 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  border-top: 1px solid #bcbcbc;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.regular-vw-3 {
  color: #161312;
  font-family: Satoshi, sans-serif;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.4;
}

.rl-padding-section-large-2 {
  padding-left: 0;
  padding-right: 0;
}

.faq_title-3 {
  color: #161312;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.titolo_03-3 {
  color: #284137;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Italiana, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.rl_faq1_list-3 {
  border-top: 1px #cacaca;
  border-bottom: 1px #cacaca;
}

.text-span-6 {
  color: var(--radiant-ui-components-library--color--theme-color);
  -webkit-text-stroke-color: #264137;
}

.contenitore_sezionii_titolo {
  z-index: 2;
  background-image: url('../images/background_righe.png');
  background-position: 0 0;
  background-size: 10svw;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 8rem 2rem;
  display: flex;
  position: relative;
}

.heading-features-left-2-copy {
  color: #af8c6b;
  text-align: left;
  text-transform: uppercase;
  justify-content: center;
  align-items: flex-start;
  font-family: Italiana, sans-serif;
  font-size: 9vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.contenitore_features {
  z-index: 2;
  width: 100%;
  max-width: 100em;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 4rem;
  position: relative;
}

.hero-image-overlay {
  background-image: linear-gradient(#0009, #0000);
  position: absolute;
}

.hero-image-overlay.bottom {
  background-image: linear-gradient(0deg, #201f1e 8%, #0000);
  height: 28svh;
  position: relative;
  inset: auto auto -31%;
}

.hero-image-overlay.top {
  z-index: -20;
  background-image: linear-gradient(#000000a6, #0000);
  height: 19svh;
  inset: 0% 0% auto;
}

.submit-button-cta {
  color: #fff;
  text-transform: none;
  background-color: #161312;
  border-radius: 0;
  height: 50px;
  margin-top: 0;
  margin-bottom: 7px;
  padding: 0;
  font-weight: 400;
  transition: all .2s;
}

.submit-button-cta:hover {
  filter: brightness(96%);
  background-color: #23644a;
}

.hero-image-overlay-copy {
  background-image: linear-gradient(#0009, #0000);
  position: absolute;
}

.hero-image-overlay-copy.top {
  z-index: -20;
  background-image: linear-gradient(#909090b0, #0000);
  border-radius: 1rem;
  height: 5svh;
  inset: 0% 0% auto;
}

.background-video-4 {
  z-index: 2;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  position: relative;
}

.background-video-5 {
  z-index: 2;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
}

.testo_spazi_dinamici {
  text-align: center;
  font-family: Satoshi, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
}

.testo_soluzione_elegante {
  color: var(--color--black);
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.contenitore_cta {
  background-color: #f3f3f3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4rem 6rem 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.titolo_03-2-copy {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Italiana, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.contatti-copy {
  background-color: var(--radiant-ui-components-library--color--body-font-dark);
  justify-content: center;
  align-items: center;
  display: block;
}

.blog_link {
  background-color: #f3f3f3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 6rem 2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text_link {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 2.2vw;
  font-weight: 500;
  line-height: 1;
}

@media screen and (min-width: 1280px) {
  .hero-heading {
    margin-top: 7vw;
  }

  .text-block {
    font-size: 1.9rem;
  }

  .header {
    height: 58vw;
  }

  .logo-footer-big {
    font-size: 6rem;
  }

  .sezione_faq {
    padding-left: 20%;
    padding-right: 20%;
  }

  .home-intro_ssx {
    width: 100%;
    max-width: none;
    font-size: 1.3rem;
  }

  .home-intro_dx {
    width: 100%;
    font-size: 1.3rem;
  }

  .text-block-13 {
    font-size: .9rem;
  }

  .section-16 {
    padding-top: 5rem;
  }

  .text-block-14 {
    font-size: .9rem;
  }

  .plan_item-2 {
    font-size: 1.1rem;
  }

  .plan_item-2.white-icon {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .text-color-white-3 {
    font-size: 3.7rem;
    line-height: 1;
  }

  .text-block-15 {
    font-size: 1.1rem;
    line-height: 1;
  }

  .text-block-16 {
    font-size: 1.3rem;
  }

  .text-color-white-4 {
    font-size: 4rem;
    line-height: 1;
  }

  .waves---field-label-2 {
    font-size: 1.4rem;
  }

  .regular-vw-3 {
    font-size: 1rem;
  }

  .faq_title-3 {
    font-size: 1.2rem;
  }

  .contenitore_sezionii_titolo {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .submit-button-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .testo_spazi_dinamici {
    width: 80%;
    font-size: 1.4rem;
  }

  .testo_soluzione_elegante {
    font-size: 1.3rem;
  }

  .text_link {
    font-size: 2.2vw;
  }
}

@media screen and (min-width: 1920px) {
  .container {
    margin-top: 1rem;
  }

  .hero-heading {
    margin-top: 7vw;
  }

  .credits-wrapper {
    font-size: 1.3rem;
  }

  .footer-component {
    padding-top: 6rem;
  }

  .footer-social {
    width: 3rem;
  }

  .footer-social-wrapper {
    margin-bottom: 3rem;
  }

  .paragraph {
    font-size: 1.4rem;
  }

  .text-block {
    font-size: 2.6rem;
  }

  .header {
    height: 58vw;
  }

  .logo-footer-big {
    font-size: 8rem;
  }

  .sezione_faq {
    margin-top: 14rem;
    padding-left: 20%;
    padding-right: 20%;
  }

  .rl_faq1_component-2 {
    width: 100%;
    margin-top: 2rem;
  }

  .body {
    background-color: #f3f3f3;
  }

  .text-color-black-copy {
    font-size: 1.9rem;
  }

  .home-intro_ssx {
    width: 80%;
    max-width: none;
    font-size: 1.8rem;
  }

  .home-intro_dx {
    font-size: 1.8rem;
  }

  .text-block-13 {
    font-size: 1.4em;
  }

  .text-block-13-copy {
    font-size: 1.4rem;
  }

  .container-soluzione {
    padding-top: 3rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .section-16 {
    padding-top: 8rem;
  }

  .home-intro_sx {
    font-size: 1.9rem;
  }

  .text-block-13-copy-2 {
    font-size: 1.4rem;
  }

  .text-block-14 {
    font-size: 1.4em;
  }

  .plan_item-2, .plan_item-2.white-icon {
    font-size: 1.8rem;
  }

  .text-color-white-3 {
    font-size: 6.1rem;
    line-height: 1;
  }

  .text-block-15 {
    font-size: 1.5rem;
  }

  .text-block-16 {
    font-size: 2rem;
  }

  .text-color-white-4 {
    font-size: 6.5rem;
    line-height: 1;
  }

  .button-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .text_link_blog {
    font-size: 5rem;
  }

  .waves---field-label-2 {
    font-size: 2rem;
  }

  .waves---main-container-3 {
    padding: 3rem 3rem 2rem;
  }

  .waves-select-background-2 {
    height: 80px;
    font-size: 1.5rem;
  }

  .clame_2-copy-2 {
    font-size: 1.4rem;
  }

  .form_cta {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .waves-text-field-background-3 {
    height: 80px;
    font-size: 1.5rem;
  }

  .rl_faq1_heading-wrapper-3 {
    max-width: none;
  }

  .rl_faq1_question-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .regular-vw-3 {
    font-size: 1.4rem;
  }

  .faq_title-3 {
    font-size: 1.8rem;
  }

  .text-span-6 {
    font-size: 6rem;
  }

  .submit-button-cta {
    width: auto;
    height: 80px;
    padding: 0;
    font-size: 2rem;
  }

  .testo_spazi_dinamici {
    font-size: 1.9rem;
  }

  .testo_soluzione_elegante {
    font-size: 1.8rem;
  }

  .contenitore_cta, .blog_link {
    padding-bottom: 3rem;
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .text_link {
    font-size: 2.2vw;
  }
}

@media screen and (max-width: 991px) {
  .container {
    max-width: 90vw;
    margin-top: 1rem;
  }

  .heading-5 {
    font-size: 2.5rem;
  }

  .speakers-card {
    padding: 1rem 1rem 2rem;
  }

  .faq-component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .faq-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .faq-title-wrapper {
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 3rem;
    display: flex;
  }

  .faq-action-wrapper {
    justify-content: center;
    align-items: center;
    height: 1.5rem;
    right: 0;
  }

  .faq-bottom {
    margin-right: 0;
  }

  .faq-bottom-content {
    grid-template-columns: 1fr;
  }

  .team-member-component {
    grid-row-gap: 4rem;
    padding-left: 0;
    padding-right: 0;
  }

  .event-item {
    padding-left: 0;
    padding-right: 0;
  }

  .button-submit-hover {
    width: 52rem;
    height: 52rem;
  }

  .card-small {
    order: 1;
    width: 100%;
  }

  .card-big {
    width: 100%;
  }

  .faq-wrapper {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .links-navbar {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar-component {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-right: 1rem;
    position: relative;
  }

  .hero-heading {
    margin-top: 7vw;
  }

  .footer-grid-wrap {
    grid-column-gap: .8rem;
    grid-row-gap: .8rem;
    flex-flow: column;
  }

  .footer-component {
    min-height: 0;
  }

  .footer-social-wrapper {
    margin-bottom: 2rem;
  }

  .paragraph {
    text-align: center;
    line-height: 1;
  }

  .text-block {
    font-size: 1.4rem;
  }

  .header {
    background-position: 50% 35%;
    height: 60vw;
  }

  .heading-features-right {
    font-size: 6vw;
  }

  .sezione_faq {
    margin-top: 5rem;
    padding-left: 15%;
    padding-right: 15%;
  }

  .heading-features-subtitle {
    font-size: 2.7rem;
  }

  .regular-vw-right {
    font-size: 1rem;
  }

  .heading-features-left {
    font-size: 6vw;
  }

  .button-primary-6 {
    width: 100%;
  }

  .block {
    flex: 0 0 100%;
    align-self: stretch;
    width: auto;
    min-height: auto;
  }

  .text-color-black-copy {
    line-height: 1;
  }

  .home-intro_visual {
    width: 100%;
  }

  .home-cta_section {
    align-items: center;
  }

  .heading-features-clame {
    font-size: 7vw;
  }

  .text-span-3 {
    font-size: 9vw;
  }

  .container-soluzione {
    background-size: 12%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .heading-features-left-copy {
    font-size: 7vw;
  }

  .home-intro_content-2 {
    width: 100%;
    max-width: 16em;
  }

  .heading-features-right-2 {
    font-size: 6vw;
  }

  .tavola_stile {
    grid-template-columns: 1fr;
  }

  .heading-features-left-2 {
    font-size: 6vw;
  }

  .waves-column-gallery-2 {
    flex-flow: wrap;
  }

  .tutti_giorni, .lavoro_studio {
    flex-flow: row;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    max-width: none;
  }

  .contenitore_sezioni {
    padding-left: 5%;
    padding-right: 5%;
  }

  .cucina_tempo_libero {
    grid-auto-flow: row dense;
  }

  .home-intro_content-right {
    width: 100%;
    max-width: 16em;
  }

  .divider-img {
    width: 50%;
  }

  .home-intro_content_left {
    width: 100%;
    max-width: 16em;
  }

  .heading-features-right-3 {
    font-size: 6vw;
  }

  .contenitore_multifunzione {
    grid-template-columns: 1fr;
    justify-content: space-around;
    align-items: center;
    max-width: none;
  }

  .cuore_acciaio {
    flex-flow: row;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    max-width: none;
  }

  .container-modelli-2 {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    justify-content: center;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
  }

  .card_maya_110 {
    width: 100%;
    max-width: 33rem;
    margin-left: auto;
    margin-right: auto;
  }

  .card_maya_110.growth {
    width: 50%;
    max-width: none;
    margin-top: 0;
  }

  .text-color-white-3, .text-color-white-4 {
    font-size: 3rem;
    line-height: 1;
  }

  .card_maya_95 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .text_link_blog {
    font-size: 22px;
  }

  .titolo_cta {
    font-size: 2.75rem;
  }

  .form_cta {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .text-span-5 {
    font-size: 6vw;
  }

  .rl_faq1_question-4 {
    font-size: 1.1rem;
  }

  .regular-vw-3 {
    font-size: .9rem;
  }

  .faq_title-3 {
    font-size: 1rem;
  }

  .titolo_03-3 {
    font-size: 2.75rem;
  }

  .contenitore_sezionii_titolo {
    padding-left: 10%;
    padding-right: 10%;
  }

  .contenitore_features {
    padding: 3rem 5%;
  }

  .hero-image-overlay.bottom {
    height: 28svh;
    bottom: -25%;
  }

  .contenitore_cta {
    padding-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .titolo_03-2-copy {
    font-size: 2.75rem;
  }

  .blog_link {
    padding-top: 0;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .text_link {
    font-size: 3vw;
  }
}

@media screen and (max-width: 767px) {
  .container {
    margin-top: 0;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .heading-5 {
    font-size: 2.3rem;
    line-height: 1.15;
  }

  .speakers-card {
    height: 100%;
  }

  .faq-bottom-content {
    padding-bottom: 0;
  }

  .team-member-component {
    grid-row-gap: 3rem;
  }

  .button-submit-hover {
    width: 42rem;
    height: 42rem;
  }

  .not-fount-text-size {
    font-size: 14rem;
  }

  .card-big {
    padding-top: 1.5rem;
    padding-left: 1.5rem;
  }

  .sticky-small-image {
    width: 10rem;
    height: 10rem;
    margin-top: 4rem;
    margin-right: 4rem;
  }

  .navbar-component {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1rem;
  }

  .hero-heading {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin-top: 33vw;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .credits-wrapper {
    flex-flow: column;
    margin-top: 1rem;
  }

  .footer-component {
    padding-top: 1rem;
  }

  .footer-social-wrapper {
    margin-bottom: 1rem;
  }

  .maya_size {
    font-size: 36vw;
  }

  .text-block {
    font-size: 4vw;
  }

  .header {
    background-position: 52%;
    background-size: 270vw;
    height: 150vw;
  }

  .heading-features-right {
    font-size: 2.5rem;
  }

  .logo-footer-big {
    font-size: 3.5rem;
  }

  .sezione_faq {
    margin-top: 2rem;
    padding-top: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .rl_faq1_icon-wrapper-2 {
    width: 1.75rem;
  }

  .rl_faq1_answer-wrapper-2 {
    margin-bottom: 1.25rem;
  }

  .heading-features-subtitle, .heading-features-left {
    font-size: 2.5rem;
  }

  .block {
    flex: 0 0 100%;
  }

  .text-block-4 {
    font-size: 4vw;
    line-height: 1.5;
  }

  .body {
    background-color: #f3f3f3;
  }

  .spacer {
    height: 100vh;
  }

  .home-intro_ssx {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .home-intro_s {
    width: 100%;
  }

  .heading-features-clame {
    text-align: left;
    font-size: 9vw;
  }

  .text-span-3 {
    font-size: 11vw;
  }

  .waves---main-container {
    padding-left: 0;
    padding-right: 0;
  }

  .waves---section-medium {
    padding-top: 0;
    padding-bottom: 0;
  }

  .waves-master-gallery-1 {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .waves-grid-gallery-1 {
    grid-template-columns: 1fr;
  }

  .home-intro_dx {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .container-soluzione {
    background-size: 9%;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section-16 {
    padding-top: 4rem;
  }

  .home-intro_sx {
    line-height: 1.6;
  }

  .heading-features-left-copy {
    font-size: 2.5rem;
  }

  .home-intro_content-2 {
    max-width: none;
  }

  .heading-features-right-2 {
    font-size: 3.5rem;
  }

  .tavola_stile {
    flex-flow: column;
  }

  .heading-features-left-2 {
    font-size: 3.5rem;
  }

  .tutti_giorni {
    flex-flow: column;
  }

  .arreda_con_style {
    grid-template-columns: 1fr;
  }

  .lavoro_studio {
    flex-flow: column;
  }

  .contenitore_sezioni {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .cucina_tempo_libero {
    flex-flow: column-reverse;
    grid-template-columns: 1fr;
    display: flex;
  }

  .home-intro_content-right {
    max-width: none;
  }

  .divider-img {
    width: 30%;
  }

  .home-intro_content_left {
    max-width: none;
  }

  .heading-features-right-3 {
    font-size: 3rem;
  }

  .contenitore_multifunzione, .cuore_acciaio {
    flex-flow: column;
  }

  .container-modelli-2 {
    flex-flow: column;
    padding-bottom: 2rem;
    display: flex;
  }

  .card_maya_110 {
    margin-top: 0;
  }

  .card_maya_110.growth {
    width: 90%;
    max-width: none;
  }

  .card_maya_95 {
    width: 90%;
    margin-top: 0;
  }

  .text_link_blog {
    font-size: 20px;
  }

  .waves---main-container-3 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .titolo_cta {
    font-size: 2.25rem;
  }

  .rl_faq1_icon-3 {
    width: 1.75rem;
    height: 1.75rem;
  }

  .waves---section-medium-4 {
    width: 90%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-span-5 {
    font-size: 3.2rem;
  }

  .rl_faq1_question-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .faq_title-3 {
    font-size: .9rem;
    line-height: 1.2;
  }

  .titolo_03-3 {
    font-size: 2.25rem;
  }

  .contenitore_sezionii_titolo {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .heading-features-left-2-copy {
    font-size: 11vw;
  }

  .contenitore_features {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-image-overlay.bottom {
    background-image: linear-gradient(0deg, #201f1e 41%, #0000);
    bottom: -41%;
  }

  .testo_spazi_dinamici {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .testo_soluzione_elegante {
    line-height: 1.6;
  }

  .titolo_03-2-copy {
    font-size: 2.25rem;
  }

  .text_link {
    font-size: 3.6vw;
  }
}

@media screen and (max-width: 479px) {
  .container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    order: 0;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    max-width: none;
    display: flex;
  }

  .padding-global {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-5 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .faq-title-wrapper {
    padding-right: 3.5rem;
  }

  .faq-bottom-content {
    display: flex;
  }

  .button-submit-hover {
    width: 25rem;
    height: 25rem;
  }

  .not-fount-text-size {
    font-size: 7rem;
  }

  .brand.w--current {
    text-align: left;
    flex-flow: column;
    margin-bottom: 1rem;
    padding-left: 0;
    display: block;
  }

  .links-navbar {
    border-top-right-radius: 0;
    border-bottom-left-radius: .5rem;
  }

  .hero-heading {
    margin-top: 42vw;
  }

  .read-more-tag {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    border-radius: 1rem;
    flex-flow: row;
    width: auto;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .footer-grid-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    line-height: 1;
  }

  .credits-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
  }

  .footer-component {
    padding-top: 0;
    padding-bottom: .125rem;
  }

  .footer-social {
    width: 1.5rem;
    padding-left: 0;
    padding-right: 0;
  }

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

  .footer-links-wrapper {
    text-align: center;
    font-size: 1.3rem;
  }

  .footer-social-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: .6rem;
  }

  .paragraph {
    font-size: 3vw;
    font-weight: 300;
    line-height: .5;
  }

  .maya_size {
    width: auto;
    font-size: 36vw;
  }

  .text-block {
    padding-top: 6px;
    font-size: 6vw;
  }

  .header {
    background-color: #a1978f;
    background-image: url('../images/Tavolo_Maya_95cm_xl_header_mobile.jpg');
    background-position: 52% 0;
    background-size: cover;
    height: 176vw;
    padding-top: 0;
  }

  .heading-features-right {
    text-transform: none;
    font-size: 13vw;
    line-height: 1;
  }

  .logo-footer-big {
    padding-top: .5rem;
    font-size: 10vw;
  }

  .sezione_faq {
    flex-flow: column;
    margin-top: auto;
    padding: 0 2rem 3rem;
    display: flex;
  }

  .contatti {
    background-color: #22211e;
    padding: 2rem 1rem 4rem;
    display: flex;
  }

  .heading-features-subtitle {
    font-size: 2.2rem;
  }

  .heading-features-left {
    text-transform: none;
    font-size: 13vw;
    line-height: 1;
  }

  .block {
    flex: 0 0 100%;
  }

  .text-block-4 {
    font-size: 4vw;
    font-weight: 300;
    line-height: 1.1;
  }

  .body {
    text-align: center;
    background-color: #f3f3f3;
  }

  .text-color-black-copy {
    color: #cecece;
    font-size: 1rem;
    line-height: .5;
  }

  .home-intro_visual {
    border-radius: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .home-intro_section {
    border-radius: 1rem;
  }

  .spacer {
    height: 100vh;
  }

  .home-intro_visual-height {
    padding-top: 100%;
  }

  .home-cta_section {
    height: 100vh;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .page-wrapper {
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }

  .home-intro_ssx {
    font-family: Satoshi, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
  }

  .home-cta_wrapper {
    height: 300vh;
  }

  .home-intro_image {
    border-radius: 1rem;
    width: 100%;
  }

  .home-content_wrapper {
    background-color: var(--color--stroke);
    background-image: none;
    border-radius: 0;
    min-height: 100vh;
  }

  .page-main {
    flex-flow: column;
  }

  .home-intro_s {
    font-family: Satoshi, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
  }

  .heading-features-clame {
    color: var(--color--white);
    text-transform: uppercase;
    min-width: auto;
    max-width: none;
    min-height: auto;
    font-size: 14vw;
    line-height: 1.1;
  }

  .text-span-3 {
    color: var(--color--white);
    font-size: 16vw;
  }

  .waves---section-medium {
    padding-top: 0;
    padding-bottom: 0;
  }

  .waves-grid-gallery-1 {
    justify-items: stretch;
  }

  .waves-column-gallery-1 {
    margin-top: 0;
  }

  .immagine_doppia_001 {
    border-radius: 1rem;
    width: 95%;
  }

  .home-intro_dx {
    font-size: 1rem;
    line-height: 1.4;
  }

  .immagine_doppia_002 {
    border-radius: 1rem;
  }

  .waves-master-contact-1 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    line-height: 1;
  }

  .waves-form-block-contact-1 {
    text-align: left;
    width: 100%;
    margin-top: 20px;
  }

  .waves---input-wrap {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-block-13 {
    padding-right: 0;
    font-family: Satoshi, sans-serif;
    font-size: .6em;
    font-weight: 300;
    line-height: 1.2;
  }

  .text-block-13-copy {
    font-family: Satoshi, sans-serif;
    font-size: .6em;
    font-weight: 300;
    line-height: 1.2;
  }

  .container-soluzione {
    background-size: 16%;
    border-radius: 1rem;
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    max-width: 92vw;
    margin-top: -40px;
    padding: 2rem 1.4rem 2rem 1.5rem;
    display: flex;
  }

  .section-16 {
    background-color: #22211e;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-intro_sx {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.3;
  }

  .heading-features-left-copy {
    text-transform: none;
    margin-bottom: 5px;
    font-size: 13vw;
    line-height: 1;
  }

  .home-intro_content-2 {
    justify-content: center;
    align-items: flex-end;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-13-copy-2 {
    font-family: Satoshi, sans-serif;
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.2;
  }

  .heading-features-right-2 {
    text-transform: none;
    font-size: 12vw;
    font-weight: 400;
    line-height: 1;
  }

  .immagine_doppia_006 {
    width: 100%;
  }

  .tavola_stile {
    grid-row-gap: 1.5rem;
  }

  .heading-features-left-2 {
    text-transform: none;
    font-size: 12vw;
    line-height: 1;
  }

  .waves-column-gallery-2 {
    grid-row-gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
  }

  .tutti_giorni {
    grid-row-gap: 1.5rem;
  }

  .immagine_doppia_003 {
    border-radius: 1rem;
  }

  .arreda_con_style {
    flex-flow: column wrap-reverse;
    justify-content: center;
    place-items: flex-start stretch;
    display: flex;
  }

  .lavoro_studio {
    grid-row-gap: 1.5em;
  }

  .contenitore_sezioni {
    border-radius: 0;
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    padding: 3rem 1.5rem 2rem;
    display: flex;
    position: relative;
  }

  .text-block-14 {
    font-family: Satoshi, sans-serif;
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.2;
  }

  .cucina_tempo_libero {
    flex-flow: column-reverse;
    justify-content: center;
    place-items: flex-start stretch;
    display: flex;
  }

  .home-intro_content-right {
    justify-content: center;
    align-items: flex-end;
    padding-left: 0;
    padding-right: 0;
  }

  .divider-img {
    width: 70%;
    display: block;
  }

  .waves-text-wrap-gallery-2 {
    flex-flow: column;
    display: block;
  }

  .immagine_doppia_005 {
    z-index: 20;
    border-radius: 1rem;
    width: 100%;
    height: auto;
    margin-top: 0;
    position: relative;
  }

  .home-intro_content_left {
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-features-right-3 {
    text-transform: none;
    font-size: 10vw;
    font-weight: 400;
    line-height: 1;
  }

  .contenitore_multifunzione {
    grid-row-gap: 1.5rem;
  }

  .cuore_acciaio {
    grid-row-gap: 1.5rem;
    justify-content: center;
    align-items: flex-start;
  }

  .container-modelli-2 {
    background-color: #f3f3f3f2;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: block;
    position: static;
  }

  .card_maya_110.growth {
    width: 100%;
    padding-top: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    line-height: 0;
    position: sticky;
    top: 5rem;
  }

  .plan_item-2 {
    font-size: 1rem;
  }

  .plan_item-2.white-icon {
    line-height: 1.3;
  }

  .text-color-white-3 {
    text-transform: uppercase;
    font-size: 11vw;
    line-height: 1;
  }

  .text-block-15 {
    font-size: .7em;
    line-height: 1.2;
  }

  .text-block-16 {
    text-transform: uppercase;
    font-size: 1rem;
  }

  .plan_list-3 {
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .pricing-card-top-2 {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    margin-bottom: 1rem;
    line-height: 0;
  }

  .text-color-white-4 {
    text-transform: uppercase;
    font-size: 12vw;
    line-height: 1;
  }

  .card_maya_95 {
    width: 100%;
    margin-bottom: 3rem;
    padding-top: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: sticky;
    top: 5rem;
  }

  .button-4 {
    margin-top: .5rem;
  }

  .text_link_blog {
    color: #fff;
    width: 90%;
    margin-top: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
  }

  .waves---field-label-2 {
    padding-bottom: 5px;
    padding-left: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
  }

  .waves---main-container-3 {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .waves---form-contact-2 {
    grid-row-gap: 15px;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .waves-select-background-2 {
    background-color: var(--color--white);
    color: var(--color--black);
    border-bottom-color: #fff;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 15px;
  }

  .waves-select-background-2:hover {
    color: #000;
  }

  .titolo_cta {
    color: #dfdfdf;
    text-align: center;
    text-transform: uppercase;
    width: 95%;
    margin-bottom: 1rem;
    font-family: Satoshi, sans-serif;
    font-size: 7vw;
    font-weight: 400;
    line-height: 1.4;
  }

  .clame_2-copy-2 {
    width: 100%;
    font-size: .7rem;
    line-height: 1;
  }

  .titolo_cta_bold {
    color: #c1ddd3;
    font-family: Italiana, sans-serif;
    font-size: 10vw;
    font-style: italic;
    font-weight: 500;
    line-height: 1;
  }

  .form_cta {
    background-color: #22211e;
    border-radius: 1rem;
    width: 100vw;
    padding: 0 0 0 0;
  }

  .waves-text-field-background-3 {
    background-color: var(--color--white);
    color: var(--color--black);
    border-bottom-color: #fff;
    padding-left: 12px;
  }

  .waves---section-medium-4 {
    background-color: var(--color--stroke);
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-span-5 {
    font-size: 12vw;
    font-style: normal;
  }

  .rl_faq1_question-4 {
    padding-top: 1rem;
    padding-bottom: .7rem;
  }

  .regular-vw-3 {
    text-align: left;
    font-size: .8rem;
  }

  .rl-padding-section-large-2 {
    flex-flow: column;
    margin-top: auto;
    padding: 0;
    display: flex;
  }

  .faq_title-3 {
    text-align: left;
    font-weight: 700;
    line-height: 1.2;
  }

  .titolo_03-3 {
    font-size: 1.8rem;
    line-height: 1;
  }

  .text-span-6 {
    text-align: left;
    font-size: 2.3rem;
    line-height: .9;
  }

  .contenitore_sezionii_titolo {
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1.5rem 2rem;
    display: flex;
    position: relative;
  }

  .heading-features-left-2-copy {
    text-align: center;
    font-size: 18vw;
    line-height: 1;
  }

  .contenitore_features {
    border-radius: 0;
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    padding: 3rem 1.5rem 2rem;
    display: flex;
    position: relative;
  }

  .hero-image-overlay.bottom {
    height: 22svh;
    top: 49%;
    bottom: 0%;
  }

  .submit-button-cta {
    background-color: var(--radiant-ui-components-library--color--theme-color);
    border-radius: 0;
  }

  .testo_spazi_dinamici {
    line-height: 1.4;
  }

  .testo_soluzione_elegante {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.3;
  }

  .contenitore_cta {
    background-color: #22211e;
    border-radius: 1rem;
    width: 100vw;
    padding: 0 0 0 0;
  }

  .titolo_03-2-copy {
    text-align: left;
    width: 90%;
    font-size: 8vw;
    line-height: 1.3;
  }

  .contatti-copy {
    background-color: #22211e;
    padding: 1rem 1rem 3rem;
    display: flex;
  }

  .blog_link {
    background-color: #302e2a;
    width: 100vw;
    padding: 1rem 1rem 1rem 1em;
  }

  .text_link {
    text-transform: none;
    width: 90%;
    font-family: Satoshi, sans-serif;
    font-weight: 300;
    line-height: 1;
  }
}

#w-node-_13edbea3-1f16-dd0e-3b4a-20856705b5e9-dec17468, #w-node-_13edbea3-1f16-dd0e-3b4a-20856705b5e7-dec17468, #w-node-_01e3b31f-820d-1b87-3109-c44ceff57c6d-dec17468, #w-node-_01e3b31f-820d-1b87-3109-c44ceff57c6f-dec17468, #w-node-ca14c229-bc6e-4978-eb11-8417e84444eb-dec17468, #w-node-ca14c229-bc6e-4978-eb11-8417e84444f8-dec17468, #w-node-ca14c229-bc6e-4978-eb11-8417e84444fa-dec17468, #w-node-ca14c229-bc6e-4978-eb11-8417e8444506-dec17468, #w-node-ca14c229-bc6e-4978-eb11-8417e844450f-dec17468, #w-node-ca14c229-bc6e-4978-eb11-8417e8444514-dec17468, #w-node-ca14c229-bc6e-4978-eb11-8417e844451d-dec17468, #w-node-_7a6d7a11-ca69-8752-6f9f-16a48cd7448b-dec17468, #w-node-_7a6d7a11-ca69-8752-6f9f-16a48cd74496-dec17468, #w-node-_902b15a4-484d-364e-6f6e-a3d28923e5f5-dec17468, #w-node-_902b15a4-484d-364e-6f6e-a3d28923e601-dec17468, #w-node-_27cdc4ca-a824-91eb-49eb-ab35f8054e02-dec17469 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_01e3b31f-820d-1b87-3109-c44ceff57c6f-dec17468 {
    order: -9999;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2'), url('../fonts/Satoshi-VariableItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}