@import url('https://fonts.googleapis.com/css2?family=Gudea:ital,wght@0,400;0,700;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-light: #E8E8E8;
  --color-grey: #C4C4C4;

  --color-form: rgba(0,0,0,0.55);

  --color-green: #40522D; 
  --color-orange: #FF8C00; 
  --color-red: #DD4B0C;

  --color-text: var(--color-black);
  --color-background: #f5f5f5;

  --font-family-sans:  'Gudea', Helvetica, Arial, sans-serif;
  --font-family-mono: Courier, monospace;
}
html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.4;
  font-weight: 400;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*::selection{
  color: var(--color-orange);
  background: var(--color-green); 
}
 *::-moz-selection{
  color: var(--color-orange);
  background: var(--color-green);
}
.pure-g {
  font-family:  var(--font-family-sans);
/*  padding: 1rem;*/
}
.pure-g [class*="pure-u"] {
  font-family:  var(--font-family-sans);
}
section .pure-g {
  padding: 0;
  overflow: hidden;
}
img {
  width: 100%;
  float: left;
}
figure{
  margin-top: 1rem;
  margin-bottom: 1rem;
  float: left;
  width: 100%;
}
body {
  margin: 0 auto;
}
li {
  list-style: none;
}
a {
  color: var(--color-text);
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
a:hover {
  opacity: 0.6;
  text-decoration: none;
}

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

.text-dark a{
 color: var(--color-text); 
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 700;
}
small {
  font-size: inherit;
  color: var(--color-text);
}
div{
  box-sizing: border-box;
}


a.button-md{
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-align: center;
  font-weight: 700;
  float: left;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0.8rem;
  width: fit-content;
}

a.button-md:hover {
  opacity: 1;
}
a.button-brown{
  border: 2px solid var(--color-text);
  color: var(--color-orange);
  background-color: var(--color-text);
  border-radius: 0.8rem;
  width: fit-content;
}
a.button-brown:hover {
  border: 2px solid var(--color-orange);
  background-color: var(--color-orange);
  color: var(--color-text);
}
a.button-1{
  border: 2px solid var(--color-text);
  color: var(--color-text);
  border-radius: 0.8rem;
  width: fit-content;
}
a.button-1:hover {
  border: 2px solid var(--color-red);
  background-color: var(--color-red);
  color: var(--color-white);
}
a.button-grey{
  border: 2px solid var(--color-text);
  color: var(--color-text);
  background-color: var(--color-text);
  border-radius: 0.8rem;
  width: fit-content;
}
a.button-grey:hover {
  border: 2px solid var(--color-text);
  background-color: var(--color-text);
  color: var(--color-text);
}
a.button-gold{
  border: 2px solid var(--color-text);
  color: var(--color-text);
  background-color: var(--color-green);
  border-radius: 0.8rem;
  width: fit-content;
}
a.button-gold:hover {
  border: 2px solid var(--color-text);
  background-color: var(--color-text);
  color: var(--color-green);
}

a.button-white{
  border: 2px solid var(--color-white);
  color: var(--color-white);
  border-radius: 0.8rem;
  width: fit-content;
}
a.button-white:hover {
  border: 2px solid var(--color-red);
  background-color: var(--color-red);
  color: var(--color-white);
}

a.b-standard{

}
a.b-executive{

}
a.b-suite{

}
a.b-center{

}


.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: calc(100% - 2.6rem);
  z-index: 92;
  transition: 0.5s cubic-bezier(.86,0,.07,1);
  padding: 1rem 1rem;
  margin: 0.3rem;
  border-radius: 2.2rem;
}
.dark .header{
  background: rgba(255, 255, 255, 1);
  transition: 0.5s cubic-bezier(.86,0,.07,1);
}

.scrolling .header{
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: 0.5s cubic-bezier(.86,0,.07,1);
  padding: 1.2rem 1rem;
}
.dark.scrolling .header{
  background: rgba(255, 255, 255, 0.3);
  transition: 0.5s cubic-bezier(.86,0,.07,1);
  padding: 1.2rem 1rem;
}

.header .logo {
  padding: 0 2rem;
  margin: 0 auto;
}

.header .logo svg{
  width: 140px;
  transition: 0.5s cubic-bezier(.86,0,.07,1);
  float: left;
}

.header.h-home .logo svg{
  fill: var(--color-white);
}

.h-home .menu-logo svg{
  fill: var(--color-white);
}

.scrolling .header .logo svg{
  width: 115px;
}


.header ul{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.header ul li{
  float: left;
  padding: 1rem;
}
.header ul li a{
  color: var(--color-white);
}
.dark .header ul li a{
  color: var(--color-text);
}
.overflowhidden{
  overflow-y: hidden;
}
.overflowauto{
  overflow-y: auto;
}
.menu1 {
  position: fixed;
  right: 0;
  /*width: 122px;*/
  width: 0; /*Per evitare sovrapposizioni*/
  z-index: 93;
  overflow-x: hidden;
  min-height: 100vh;
  height: 100%;
}
.menu1 a {
  padding: 1.5rem;
}
.menu1 a[aria-current] {
  text-decoration: underline;
}
.scrolling .menu1{
  background-color: rgba(255,255,255,0.4); 
}
.scrolling .menu1:hover{
  background-color: rgba(255,255,255,1);
  transition: 0.2s ease-in-out;
}
.menu2 {
  position: fixed;
  right: 0;
  /*width: 122px;*/
  width: 0; /*Per evitare sovrapposizioni*/
  z-index: 97;
  overflow-x: hidden;
  min-height: 100vh;
  height: 100%;
}
.menu2 a {
  padding: 1.5rem;
}
.menu2 a[aria-current] {
  text-decoration: underline;
}
.scrolling .menu2{
  background-color: rgba(255,255,255,0.4); 
}
.scrolling .menu2:hover{
  background-color: rgba(255,255,255,1);
  transition: 0.2s ease-in-out;
}

.box-menu {
/*  max-width: 1024px;*/
  margin: 0 auto 0 auto;
  margin-top: 4rem !important;
  margin-bottom: 1rem !important;
  display: none;
  height: calc(100% - 5rem);
  overflow: auto !important;
}
.box-menu .pure-g{
  width: 100%;
}
.box-menu ul{
  margin: 0.5rem 0;
  padding: 0;
}
.box-menu a{
  color: var(--color-text);
  margin: 0;
  padding: 0;
  display: block;
}
.box-menu ul.right-menu {
  margin-top: 0.3rem;
}
.box-menu ul.right-menu li a{
  font-size: 2rem;
  line-height: 1;
  margin: 0;
  padding: 0.2rem 0rem;
  font-weight: 400;
  border-radius: 0.8rem;
}
.box-menu .left-menu {
  margin-top: 0.8rem;
}

.box-menu .left-menu ul{
  width: 50%;
  float: left;
  padding-right: 1rem;
  box-sizing: border-box;
  margin-bottom: 0.5rem;
}
.box-menu .menu-video figure{
  margin-bottom: 0;
  max-width: 480px;
}

.box-menu .menu-video video{
  border-radius: 0.8rem;
}


.box-menu .menu-video-button{
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
}
.box-menu .menu-video-button a{
  color: var(--color-white);
  padding: 0.1rem 0.6rem;
}
.box-menu .block-type-video{
  position: relative;
  float: left;
}

.dark .box-menu ul li a{
  color: var(--color-text);
}
.box-menu p{
  color: var(--color-text);
  line-height: 1.4;
  font-size: 1rem;
  letter-spacing: -0.01rem;
}
.box-menu h5{
  margin-bottom: 0.1rem;
  margin-top: 1rem;
}

.box-menu .social .st0{
  fill: var(--color-text) !important;
}
.box-menu .center-vertical{
  display: flex;
  justify-content: center;
}

.square-box{
/*  aspect-ratio: 1 / 1;*/
  border-radius: 0.8rem;
  padding: 2rem;
  display:flex;
  flex-direction: column;
  justify-content: space-between;

}
.square-box h4{
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
.square-box img{
  width: auto;
  float: right;
  min-width: 100px;
}

a.square-box:hover{
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
  opacity: 1;
}

a.square-box img{
  filter: invert(0);
  transition: filter 0.3s;
}
a.square-box:hover img{
  filter: invert(1);
}



.container-hamburger {
  position: fixed;
  left: 0;
  height: 0;
  /*width: 122px;*/
  width: 0; /*Per evitare sovrapposizioni*/
  z-index: 94;
}
.container-hamburger a {
  padding: 1.5rem;
}
.container-hamburger a[aria-current] {
  text-decoration: underline;
}
.container-prenota {
  position: fixed;
  right: 0;
  /*width: 122px;*/
  width: 0; /*Per evitare sovrapposizioni*/
  z-index: 98;
}
.container-prenota a {
  padding: 1.5rem;
}
.container-prenota a[aria-current] {
  text-decoration: underline;
}



.prenota a:hover{
  opacity: 1;
}
.box-prenota {
  max-width: 100%;
  padding: 6rem 0;
  display: none;
}
.box-prenota .pure-g{
  width: 100%;
}
.box-prenota ul{
  margin: 0.5rem 0;
  padding: 0;
}
.box-prenota a{
  color: var(--color-text);
  margin: 0;
  padding: 0;
  display: block;
}
.box-prenota ul li a{
  color: var(--color-text);
  font-size: 2.2em;
  line-height: 1;
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  font-weight: 400;
}
.box-prenota p{
  color: var(--color-text);
  line-height: 1.4;
  font-size: 1rem;
  letter-spacing: -0.01rem;
}
.box-prenota h1{
  font-weight: 400;
  color: var(--color-text);
  font-size: 2.4rem;
  line-height: 0.8;
  margin: 0;
}
.box-prenota h1 span{
  font-size: 1.8rem;
  font-weight: 400;
  font-family: var(--font-family-sans);
  letter-spacing: 0.6rem;
  text-transform: uppercase;
}
.box-prenota h2{
  color: var(--color-text);
}
.box-prenota h5{
  color: var(--color-text);
  margin-top: 0.4rem;
  margin-bottom: 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}
.box-prenota span{
  margin-right: 1rem;
}
.opened .box-prenota {
  display: block;
  position: relative;
  top:0;
  height: 100%;
}
.opened .box-menu {
  display: flex;
  align-items: center;
}



.opened{
  width: 100%;
  background-size: cover;
  transition: 0.6s cubic-bezier(.86,0,.07,1);
}
.closed {
  transition: 0.6s cubic-bezier(.86,0,.07,1);
}
.hide{
  opacity: 0;
  transition: 0.6s cubic-bezier(.86,0,.07,1);
}
.show{
  opacity: 1;
  transition: 0.6s cubic-bezier(.86,0,.07,1);
}



.esito-invio {
  width: 100%;
  background-size: cover;
  transition: 0.6s cubic-bezier(.86,0,.07,1)
}
.esito-invio .box-prenota {
  display: block;
}
.esito-invio .hide {
    opacity: 1;
}



.social {
  width: 100%;
  padding: 0 2rem;
  float: left;
  text-align: center;
}
.social a {
  display: inline-block;
  padding: 0 0.6rem;
}
.social a svg{
  width: 32px;
}



.text {
  line-height: 1.5em;
}
.text a {
  text-decoration: underline;
}
.text:first-child {
  margin-top: 0;
}
.text:last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {

}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}
.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: .5rem;
  color: var(--color-text);
}

.caption{
  padding-left: 1rem;
  padding-top: 0.5rem;
  line-height: 1.5rem;
  font-style: italic;
  clear: both;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

hr.v1 {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 100%;
  margin: 2rem auto;
  color: inherit;
}
hr.v2 {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 100%;
  margin: 1rem auto;
  color: inherit;
}

.align-center {
  text-align: center;
}
.align-right {
  text-align: left;
}
.clear{
  width: 100%;
  float: left;
  display: block;
}
.upper{
  text-transform: uppercase;
}
.serif{
  font-family: var(--font-family-sans) !important;
}
.spacing{
  letter-spacing: 0.05rem;
}
.center-flex{
  display: flex;
  justify-content: center; 
}



.honeypot {
  position: absolute;
  left: -9999px;
}






.video {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(var(--h) / var(--w) * 100%);
  overflow: hidden; /* Evita problemi di dimensione */
}

.img {
  position: relative;
  display: block;
  /* Valori di default per il padding se il ratio non è "auto" */
  --w: 1;
  --h: 1;
  padding-bottom: calc(var(--h) / var(--w) * 100%);
  overflow: hidden;
  border-radius: 0.8rem;
}

/* Comportamento di default: crop attivo → object-fit: cover */
.img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}

/* Se crop NON è attivo, usiamo il contain */
.img[data-contain="true"] img {
  object-fit: contain;
}

/* Gestione del ratio "auto" */
.img[data-ratio="auto"] {
  padding-bottom: unset;
  height: auto;
}

.img[data-ratio="auto"] img {
  position: relative;
  width: 100%;
  height: auto;
}

/* (Eventuali regole per video, se necessario) */
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.img-caption,
.video-caption {
  padding-top: 0.5rem;
  line-height: 1.5rem;
  font-style: italic;
  clear: both;
}




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

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

.video-wrapper video {
  object-fit: cover;
  width: 100%;

}

.video-home{
  height: 100vh;
}
.video-home div{
  height: 100vh;
}
.video-home div video{
  height: 100vh;
}

.embedded {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
    
.embedded iframe {
  aspect-ratio: 16 / 9;
  width: 100% !important;
}

.video-wrapper figcaption {
  width: 100%;

}
.start{
  width: 100%;
/*  min-height: 100vh;*/
  background-size: cover;
  background-position: center center;
}

.start .mini-video{
  display: none;
}


.start .mini-video video{
  border-radius: 0.8rem;
}

.start.only-text{
  min-height: auto;
  padding-top: 4rem;
}

#home h1{
  color: var(--color-white);
}

.start .hero{
  position: absolute;
  width: 100%;
  top: 0;
  margin-top: 17vh;
  z-index: 90;
/*  pointer-events: none;*/
}

.start .hero2{
  position: absolute;
  width: 100%;
  top: 0;
  margin-top: 70vh;
  z-index: 91;
  pointer-events: none;
}

.start h1{
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 1rem 0;
}
.start  h1 span{
  font-size: 1.6rem;
  font-weight: 400;
  font-family: var(--font-family-sans);
  letter-spacing: 0.3rem;
  text-transform: uppercase;
}
.start .pure-g{
  padding: 0;
}
.intro-box h2{
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.intro-full-text{
  position: absolute;
  top: 8.3rem;
  z-index: 2;
  /*test*/
  pointer-events: none;
}

.intro-full-text h1{
  font-size: 3.2rem;
  text-align: center;
  font-weight: 700;
}

.intro-over-text{
  position: absolute;
  bottom: 4rem;
  right: 0;
  z-index: 2;
  background-color: var(--color-white);
  margin: 0rem;
  border-radius: 0.8rem;
}

.intro-over-text-configurator{
  position: relative;
  margin: 6rem 1.2rem 2.4rem 1.2rem;
  right: 0;
  z-index: 2;
  background-color: var(--color-white);
  border-radius: 0.8rem;
}

.single-image-conf{
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}


.intro-only-text{
  margin-top: 10.3rem;
}

.intro-only-text h1{
  font-weight: 700;
}

.intro-small-text{
  margin-top: 12.3rem;
  padding: 2rem 1.2rem;
}

.intro-small-text h1{
  font-size: 1.4rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.intro-small-text h2{
  text-align: center;
  font-weight: 700;
}

.intro-small-text p{
  text-align: center;
}





.intro-small2-text{
  padding: 1.2rem;
}
.intro-small2-text h1{
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}
.intro-small2-text h2{
  font-weight: 700;
}
.intro-small2-text p{

}

.subpages {
  background-color: var(--color-grey);
  border-radius: 0.8rem;
  position: relative;
  transition: background 0.5s ease-in-out, background-size 0.5s ease-in-out;
  background-size: 100% 100%; /* Mantiene la dimensione iniziale */
  background-position: center;
  background-repeat: no-repeat;
}

.subpages:hover {
  background-image: var(--cover-image);
  background-size: cover;
}

.subpages h1,
.subpages h2 {
  transition: opacity 0.3s ease-in-out;
}

.subpages:hover h1,
.subpages:hover h2 {
  opacity: 0;
}


.sibling {
  margin-top: 2rem;
  margin-bottom: 4rem;

}
.sibling .sibling-slide .sibling-box{
  position: absolute;
  bottom: 0;
  width: 100%;
  border-radius:  0 0 0.8rem 0.8rem;
  background-color: rgba(255,255,255, 0.7);
  transition: all 0.3s ease-in-out;

}
.sibling .sibling-slide:hover .sibling-box {
  background-color: rgba(255,255,255, 0);
  transition: all 0.3s ease-in-out;
}
.sibling .sibling-slide:hover .sibling-box *{
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.sibling .sibling-slide h3{
  margin-bottom: 0;
}


/* Contenitore immagine per gestione overlay e caption */
.small-slider .image-container {
  position: relative;
  display: flex;
/*  justify-content: center;*/
  align-items: center;
  overflow: hidden;
}

/* Overlay di colore sopra l'immagine */
.small-slider  .image-overlay {
  border-radius: 0.8rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
 
  pointer-events: none; /* Non interferisce con interazioni */
}

/* Testo caption sopra l'immagine */
 .small-slider .image-caption {
  position: absolute;
  color: #fff;
  padding: 2rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
}


.xl4{
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.xl3{
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.xxl{
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.xl{
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.lg{
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.md{
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.sm{
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.xs{
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 0rem;
}
.underline{
  text-decoration: underline;
}

.section-element {
  display: flex;
  flex-direction: column;
}
.section-element .boxed{
  width: 100%;
}

.section-element ul{
  margin-bottom: 1rem;
  float: left;
  width: 100%;
}

.section-element ul li{
  list-style-type: disc;
  margin-left: 1.4rem;
  font-weight: 400;
  font-size: 1.2rem;
  float: left;
}
.section-element .main-content{
  width: 100%;
}

.section-element .sidebar{
  width: 25%;
  height: auto;
  margin-top: 2rem;
  display: none;
}
.section-element .sidebar div {
  position: sticky;
  margin-left: 6rem;
  top: 10rem;
  height: calc(100vh - 12rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow-y: auto;
}

.section-element .sidebar ul {
  margin-top: 0;
  margin-bottom: 2rem;
  height: auto;
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.section-element .sidebar ul li {
  list-style-type: none;
  font-weight: 700;
  font-size: 1.6rem;
  margin-left: 0;
  transition: transform 0.3s ease-in-out;
}
.section-element .sidebar ul li a{
  transition: transform 0.3s ease-in-out;
}
.section-element .sidebar ul li.active a{
  
  transition: transform 0.3s ease-in-out;
}




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

.full-h{
  width: 100%;
  height: 100vh;
  background-color: var(--color-text);
  color: var(--color-white);
  background-size: cover;
}
.full-h .pure-g div{
  margin-top: 0;
}

.la-camera{
  padding-top: 4rem;
}

.la-camera-line{
  position: relative;
  z-index: 1;
}
.la-camera-line:before {
  content: '';
  height: 6rem;
  border: 2px solid var(--color-text);
  display: block;
  width: 0;
  margin: 0 auto;
  position: relative;
  top: 3rem;
  z-index: 3;

}

.text-box *{
  display: block;
  width: 100%;
}

.tabella div{
  border-top: 2px solid var(--color-text);
  border-right: 2px solid var(--color-text);
  border-bottom: 0 solid var(--color-text);
  border-left: 2px solid var(--color-text);
}
.tabella div:last-child{
  border-left: 2px solid var(--color-text);
  border-bottom: 2px solid var(--color-text);
}
.tabella p{
  font-size: 0.9rem;
  margin: 0.5rem 1.5rem;
}



.footer{
  
}

.footer .full{
  background-color: var(--color-light);
  width: calc(100% - 0.6rem);
  padding: 0;
  margin: 2rem 0.3rem;
  border-radius: 2.2rem;
}
.footer .pure-g{
  position: relative;
  min-height: 640px;
}
.footer hr{
  float: left;
}
.footer p{
}
.footer p a{

}

.footer h3{
  text-align: center;
}
.footer .serif p {
  font-size: 1.3rem;
}
/*.footer .logo{
  position: relative;
  top: 18rem;
  z-index: 1;
  pointer-events: none;
}*/
.footer .logo svg g{
  fill: var(--color-white);
  opacity: 0.5;
}
.footer .st0{
  fill: var(--color-white) !important;
}

.footer .instagram{
  max-width: 26px;
}
.footer .instagram svg{
  max-width: 26px;
  position: relative;
  top: 8px;
}

.footer .button-white{
  float: left;
  width: 100%;
}

.display-none{
  display: none;
}
.display-mobile{
  display: block;
}
.display-desktop{
  display: none;
}



.form-contatto .field{
  width: 100%;
  margin-bottom: 0.8rem;
  float: left;
  box-sizing: border-box;
}
.form-contatto .half{
  width: 50%;
}
.form-contatto .last input{
  border-left: 0 !important;
}
.form-contatto form label{
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0.1rem 0 0.2rem 0;
  float: left;
}
.form-contatto .alert{
  color: var(--color-text);
  text-decoration: underline;
  margin-right: 0;
  font-size: 0.9rem;
}
.form-contatto .error{
  color: var(--color-text);
  text-decoration: underline;
}
.form-contatto form input:not([type=submit]){
  width: 100%;
  padding: 0.6rem 1rem;
  border: 2px solid var(--color-text);
  background-color: var(--color-orange);
  transition: 0.35s;
  box-sizing: border-box;
  border-radius: 0.8rem;
}
.form-contatto form textarea{
  width: 100%;
  padding: 0.6rem 1rem;
  min-height: 200px;
  border: 2px solid var(--color-text);
  background-color: var(--color-orange);
  transition: 0.35s;
  box-sizing: border-box;
  border-radius: 0.8rem;
}
.form-contatto .camere {
  display : block;
  position: relative;
  margin: 0 0 1rem 0;
  width: 100%;
  max-height: 165px;
  overflow: hidden;
}
.form-contatto  .camere > input{ /* HIDE RADIO */
  position: absolute;
  left: 0;
  height: 100%;
  opacity: 0;
}
.form-contatto  .camere > input + div{ /* DIV STYLES */
  cursor:pointer; 
  float: left;
  transition: 0.35s;
}
.form-contatto  .camere > input:hover + div{ /* (RADIO CHECKED) DIV STYLES */
  background-color: rgba(0,0,0,.05);
  transition: 0.35s;
}
.form-contatto  .camere > input:checked + div{ /* (RADIO CHECKED) DIV STYLES */
  background-color: rgba(0,0,0,.1);
  transition: 0.35s;
}
.form-contatto .camere img{
  float: left;
  width: 50%;
}
.form-contatto .camere h4{
  float: left;
  padding-top: 1rem;
  padding-left: 1rem;
  width: 50%;
  box-sizing: border-box;
  font-size: 1.3rem;
}
.form-contatto .camere p{
  float: left;
  padding-left: 1rem;
  padding-top: 1rem;
  width: 50%;
  box-sizing: border-box;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-contatto form input[type=submit]{
  font-family: var(--font-family-sans);
  letter-spacing: 0.1rem;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 1rem;
  margin: 2rem 0 1rem 0;
  border: 0;
  color:  var(--color-orange);
  background-color: var(--color-text);
  text-transform: uppercase;
  cursor: pointer; 
  transition: 0.35s;
  box-sizing: border-box;
  bottom: 0;
  right: 0;
  min-width: 200px;
  border-radius: 0.8rem;
}
.form-contatto form input[type=submit]:hover{
  opacity: 0.7;
}
.form-contatto form input:focus {
  background-color: rgba(255,255,255,.3);
  outline: none;
}
.form-contatto form textarea:focus {
  background-color: rgba(255,255,255,.3);
  outline: none;
}
.form-contatto form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color:var(--color-text);
  opacity: 0.5; /* Firefox */
}
.form-contatto form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:var(--color-text);
  opacity: 0.5; 
}
.form-contatto form input::-ms-input-placeholder { /* Microsoft Edge */
  color:var(--color-text);
  opacity: 0.5; 
}
.form-contatto form textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color:var(--color-text);
  opacity: 0.5; /* Firefox */
}
.form-contatto form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:var(--color-text);
  opacity: 0.5; 
}
.form-contatto form textarea::-ms-input-placeholder { /* Microsoft Edge */
  color:var(--color-text);
  opacity: 0.5; 
}

.contatti{
  float: left;
  width: 100%;
  scroll-margin-top: 280px;
}

.form-contatto-2 .field-box{
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.form-contatto-2 .field{
  width: 100%;
  margin-bottom: 2rem;
  float: left;
  box-sizing: border-box;
}
.form-contatto-2 .half{
  width: 50%;
}
.form-contatto-2 .last input{
  border-left: 0 !important;
}
.form-contatto-2 form label{
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0.4rem 0 0.2rem 0;
  float: left;
  display: none;
}
.form-contatto-2 .alert{
  color: var(--color-text);
  text-decoration: underline;
  margin-right: 0;
  font-size: 0.9rem;
}
.form-contatto-2 .error{
  color: var(--color-text);
  text-decoration: underline;
}
.form-contatto-2 form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-contatto-2 form input:not([type=submit]){
  width: 100%;
  padding: 1.2rem 2rem;
  border: 2px solid var(--color-grey);
  background-color: var(--color-background);
  transition: 0.35s;
  box-sizing: border-box;
  border-radius: 0.8rem;
  font-size: 1.2rem;
}
.form-contatto-2 form textarea{

  width: 100%;
  padding: 1.2rem 2rem;
  min-height: 200px;
  border: 2px solid var(--color-grey);
  background-color: var(--color-background);
  transition: 0.35s;
  box-sizing: border-box;
  border-radius: 0.8rem;
  font-size: 1.2rem;
  font-family: var(--font-family-sans);


}
.form-contatto-2 .camere {
  display : block;
  position: relative;
  margin: 0 0 1rem 0;
  width: 100%;
  max-height: 165px;
  overflow: hidden;
}
.form-contatto-2  .camere > input{ /* HIDE RADIO */
  position: absolute;
  left: 0;
  height: 100%;
  opacity: 0;
}
.form-contatto-2  .camere > input + div{ /* DIV STYLES */
  cursor:pointer; 
  float: left;
  transition: 0.35s;
}
.form-contatto-2  .camere > input:hover + div{ /* (RADIO CHECKED) DIV STYLES */
  background-color: rgba(0,0,0,.05);
  transition: 0.35s;
}
.form-contatto-2  .camere > input:checked + div{ /* (RADIO CHECKED) DIV STYLES */
  background-color: rgba(0,0,0,.1);
  transition: 0.35s;
}
.form-contatto-2 .camere img{
  float: left;
  width: 50%;
}
.form-contatto-2 .camere h4{
  float: left;
  padding-top: 1rem;
  padding-left: 1rem;
  width: 50%;
  box-sizing: border-box;
  font-size: 1.3rem;
}
.form-contatto-2 .camere p{
  float: left;
  padding-left: 1rem;
  padding-top: 1rem;
  width: 50%;
  box-sizing: border-box;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-contatto-2 form input[type=submit]{
  font-family: var(--font-family-sans);
  letter-spacing: 0.01rem;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1rem;
  margin-bottom: 2rem;
  border: 0;
  color:  var(--color-white);
  background-color: var(--color-black);
  cursor: pointer; 
  transition: 0.35s;
  box-sizing: border-box;
  bottom: 0;
  right: 0;
  width: 100%;
  border-radius: 0.8rem;
}
.form-contatto-2 form input[type=submit]:hover{
  opacity: 0.7;
}
.form-contatto-2 form input:focus {
  background-color: rgba(255,255,255,.3);
  outline: none;
}
.form-contatto-2 form textarea:focus {
  background-color: rgba(255,255,255,.3);
  outline: none;
}
.form-contatto-2 form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color:var(--color-form);
  opacity: 0.8;
  font-size: 1.2rem;
  
  font-family: var(--font-family-sans);
}
.form-contatto-2 form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:var(--color-form);
  opacity: 0.8;
  font-size: 1.2rem;
  font-family: var(--font-family-sans);
}
.form-contatto-2 form input::-ms-input-placeholder { /* Microsoft Edge */
  color:var(--color-form);
  opacity: 0.8;
  font-size: 1.2rem;
  font-family: var(--font-family-sans);
}
.form-contatto-2 form textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color:var(--color-form);
  opacity: 0.8;
  font-size: 1.2rem;/* Firefox */
  font-family: var(--font-family-sans);
}
.form-contatto-2 form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:var(--color-form);
  opacity: 0.8;
  font-size: 1.2rem;
  font-family: var(--font-family-sans);
}
.form-contatto-2 form textarea::-ms-input-placeholder { /* Microsoft Edge */
  color:var(--color-form);
  opacity: 0.8;
  font-size: 1.2rem;
  font-family: var(--font-family-sans);
}

.success.form2 h3{
  color: var(--color-text);
}



/* Loader Styles start here */

.preloader {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background-color: var(--color-grey);
  z-index: 998;
}

.preloader svg{
  fill: var(--color-white);
}

.preloader span {
  display: inline;
  opacity: 0.8;
  animation: pulse 1s alternate infinite ease-in-out;
  width: 95%;
  bottom: -1rem;
  position: absolute;

}
@keyframes pulse {
  to {
    opacity: 0.3;
  }
}
.preloader.hiddenthis {
  animation: fadeOut 1s;
  animation-fill-mode: forwards;

}
@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}



/* --- EFFETTI MENU --- */

#main-menu{
  background-color: var(--color-grey);
}
#main-menu .serif p{
  font-size: 1.3rem;
  position: relative;
  top: -3px;
}
#hamburger-button {
  margin: 0.5rem 0 0 0.5rem;
  display: block;
  float: left;
  position: relative;
  right: 0;
  z-index: 95;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 1rem;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  transition: 0.5s cubic-bezier(.86,0,.07,1);
}

.scrolling #hamburger-button {
  transition: 0.5s cubic-bezier(.86,0,.07,1);
}

#hamburger-button a {
  transition: color 0.3s ease;
}
#hamburger-button span{
  display: block;
  width: 22px;
  height: 3px;
  margin-bottom: 6px;
  margin-top: 1px;
  position: relative;
  background: var(--color-white);
  border-radius: 0;
  z-index: 96;
  transform-origin: 0;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#hamburger-button:hover span{
  opacity: 0.7;
}
#hamburger-button span:last-child {
  margin-bottom: 0;
}
.closed #hamburger-button span:first-child {
  transform-origin: 0% 0%;
}
.opened #hamburger-button  span {
  opacity: 1;
  transform: rotate(45deg) translate(-10px, -14px);
  background: var(--color-white);
}
.opened #hamburger-button  span:nth-last-child(2) {
  transform: rotate(-45deg) translate(-4px, 7px);
}
.opened #hamburger-button  span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.dark #hamburger-button {
  border: 2px solid var(--color-black);
}
.dark #hamburger-button span{
  background: var(--color-text);
}

.menu-button {
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
.menu-button li {
  padding: 10px 0;
  font-size: 22px;
}

.right-menu .menu-element:hover {
  background-color: var(--hover-bg-color);
  opacity: 1;
  color: var(--color-white);
}


#prenota-menu{
  background-color: var(--color-orange);
}
#prenota-button {
  margin: 0;
  display: block;
  float: right;
  position: absolute;
  right: 125px;
  margin-top: 39px;
  z-index: 99;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  transform: rotate(0);
  transform-origin: bottom right;
  transition: 0.5s cubic-bezier(.86,0,.07,1);
}

.scrolling #prenota-button {
  margin-top: 33px;
  transition: 0.5s cubic-bezier(.86,0,.07,1);
}
#prenota-button a{
  font-size: 2rem;
  padding: 0;
  letter-spacing: 0.3rem;
  text-align: center;
  display: block;
}
.chiaro #prenota-button a{
  color: var(--color-text);
}
.scuro #prenota-button a{
  color: var(--color-text);
  background-color: transparent;
}
#prenota-button a:hover{
  opacity: 0.7;
}

.opened #prenota-button a{
  color: var(--color-text);
}
.opened #prenota-button a:hover{
  color: var(--color-text);
  opacity: 0.6;
}
.closed #prenota-button a:after{
  color: var(--color-white);
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: transform 2s cubic-bezier(0.77,0.2,0.05,1.0);
}

.opened #prenota-button a:after{
  content: "\f7a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: transform 2s cubic-bezier(0.77,0.2,0.05,1.0);
}
.opened #prenota-button a:before{
  content: "chiudi";
  font-weight: 500;
  letter-spacing: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  margin-right: 0.5rem;
  transition: transform 2s cubic-bezier(0.77,0.2,0.05,1.0);
  position: relative;
  bottom: 0.3rem;
}

.scrolling .home.closed #prenota-button a:after{
  transition: 0.5s cubic-bezier(.86,0,.07,1);
}

.dark .closed #prenota-button a:after{
  color: var(--color-text);
  }

.closed .menu-logo{
  opacity: 0;
  transition: 0.6s 0.6s cubic-bezier(.86,0,.07,1);
}

.opened .menu-logo{
  padding: 0;
  opacity: 1;
  width: 190px;
  display: flex;
  position: absolute;
  margin: 1rem 0 0 0;
  transition: 0.6s 0.6s cubic-bezier(.86,0,.07,1);
}

.swiper {
  width: 100%;
}

.swiper-full-home{
  height: 100vh;
}
.swiper-full-home .swiper-slide{
  height: 100vh;
}
.single-image-home{
  background-position: center;
  background-size: cover;
  height: 100vh;
}

.swiper-full{
  height: 100vh;
}
.swiper-full .swiper-slide{
  margin-top: 18rem;
  height: calc(100vh - 16rem);
}
.swiper-full-2{
  height: 100vh;
}
.swiper-full-2 .swiper-slide{
  height: 100vh;
}
.single-image{
  background-position: center;
  background-size: cover;
  margin-top: 18rem;
  height: calc(100vh - 18rem);
}
.swiper-65{
  height: 65vh;
}
.single-image-65{
  height: 65vh;
}
.swiper-70{
  height: 70vh;
}
.single-image-70{
  height: 70vh;
}
.single-image-50{
  height: 50vh;
}
.single-image-footer{
  height: 65vh;
}
.single-video{
  background-position: center;
  background-size: cover;
  margin-top: 12.8rem;
}
.single-video .video-wrapper{
  margin-top: 0;
  margin-bottom: 0;
  height: 100%;
}
.video-slide .video-wrapper{
  margin-top: 0;
  margin-bottom: 0;
  height: 100%;
}
.swiper-slide{
  background-position: center;
  background-size: cover;
}
.swiper-slide-next{
  transition: 0.6s cubic-bezier(0.77,0.2,0.05,1.0);
  /*filter: blur(30px);
  -webkit-filter: blur(30px);*/
}
.swiper-slide-prev{
  transition: 0.6s cubic-bezier(0.77,0.2,0.05,1.0);
  /*filter: blur(30px);
  -webkit-filter: blur(30px);*/
}

.swiper2{
  height: 35vh;
}
.swiper2 img{
  height: 100%;
  width: auto;
  border-radius: 0.8rem;

}
.swiper2 .swiper-slide{
  width: auto;
  
}

.swiper3{
  height: 35vh;
}
.swiper3 img{
  height: 100%;
  width: auto;
  border-radius: 0.8rem;

}
.swiper3 .swiper-slide{
  width: auto;
  
}


.swiper3-nav {
  justify-content: flex-end;
  gap: 10px;
  padding-top: 0.23rem;
  display: none;
}

.swiper3-prev,
.swiper3-next {
  position: static;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  width: auto;

}

.swiper3-prev svg,
.swiper3-next svg {
  width: 56px;
  height: 56px;
  transition: transform 0.2s ease;
  border: 2px solid black;
  border-radius: 100%;
}
.swiper3-prev svg {
  transform: rotate(180deg);
}

.swiper3-prev:hover svg {
  opacity: 0.6;
}

.swiper3-next:hover svg {
  opacity: 0.6;
}


.swiper3 .swiper-slide:first-child {
  margin-left: 2.5rem;
}



.center-line .left{
  border-right: 2px solid var(--color-black);
}
.center-line .right{
  border-left: 2px solid var(--color-text);
}

.accordion{
}
.accordion-button {
  cursor: pointer;
}
.accordion-button i{
  position: relative;
  top: -1px;
  font-size: 1.2rem;
  display: inline-block;
  transform-origin: center;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
  width: 20px;
  height: 20px;
}
.accordion-button i.rotate-90 {
  top: -3px;
  display: inline-block;
  transform-origin: center;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.accordion.close div{
  max-height: 0;
  transition: 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
  opacity: 0;
  pointer-events: none;   
}
.accordion.open div{
  opacity: 1;
  max-height: 1600px; /*Posso mettere qualsiasi valore*/
  transition: 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
}
.open .accordion-button {
}

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

.reverse{
  flex-flow: column-reverse;
}

.pure-g .flex-start{
  display: flex;
  justify-content: start;
  flex-direction: column;
}
.pure-g .flex-center{
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.pure-g .flex-end{
  display: flex;
  justify-content: end;
  flex-direction: column;
}

.pure-g .orizontal-start{
  display: flex;
  align-items: start;
  flex-direction: column;
}
.pure-g .orizontal-center{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.pure-g .orizontal-end{
  display: flex;
  align-items: end;
  flex-direction: column;
}







.container-accordion {
  display: flex;
  align-items: center;
  justify-content: center;
/*  width: 90vw;*/
  margin: 0 auto;
}
.panel-accordion {
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-color: var(--color-light-blue);
  height: 50vh;
  cursor: pointer;
  flex: 0.5;
  position: relative;
  transition: all 0.4s ease-in;
}
.panel-accordion.active {
  /*background-size: contain;*/
  /*background-size: cover;*/
  flex: 4;
  background-position: center;
}
.accordion-box{
  display: block;
  float: left;
  height: 50vh;
  /*  background-color: var(--color-light-blue); */
  border-left: 2px solid var(--color-black);
  position: absolute;
  width: 100%;

}
.container-accordion h2 {
  font-family: var(--font-family-sans);
  font-size: 1.8rem;
  padding: 0 1.5rem;
  font-style: normal;
  opacity: 0;
  text-transform: none;
}
.container-accordion h3 {
  font-family: var(--font-family-sans);
  transform: rotate(270deg);
  transform-origin: center center;
  height: 50vh;
  width: 50vh;
  position: absolute;
  font-size: 1rem;
  padding: 0.2rem 0.2rem 0rem 0.2rem;
  font-weight: 400;
  opacity: 1;
  box-sizing: border-box;
  z-index: 2;
}
.container-accordion a {
  width: 100%;
  display: block;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.container-accordion .active a {
  z-index: 3;
}
.container-accordion .active h3 {
  opacity: 0;
  transition: opacity 0.1s ease-in 0.4s;
  transform: rotate(270deg);
  display: none;
}
.container-accordion .active h2 {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;

}
.container-accordion span {
  opacity: 0;
  position: absolute;
  bottom: 0.8rem;
  left: 1.5rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03rem;
}
.container-accordion .active span {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}
.container-accordion span a{
  transition: ease-in 0.2s;
}
.container-accordion span a:hover{
  color: var(--color-white);
}

button.accordion {
  font-family: var(--font-family-sans);
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.4rem;
  color: var(--color-light-blue);
  cursor: pointer;
  padding: 0.8rem 0;
  border-bottom: black 1px solid;
  transition: 0.3s cubic-bezier(.86,0,.07,1);
}
button.accordion div {
 float: left;
  transition: 0.3s cubic-bezier(.86,0,.07,1);
}

button.accordion:hover {
  background-color: var(--color-white);
  border-radius: 0.8rem;
  transition: 0.3s cubic-bezier(.86,0,.07,1);
  border-radius: 0;
}


button.accordion:after {
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  float: right;
  font-weight: 700;
}
button.accordion.is-open:after {
  font-family: "Font Awesome 5 Free";
  content: '\f068';
  font-weight: 700;
}
button.accordion.is-open {
  /*background-color: var(--color-light);*/
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s cubic-bezier(.86,0,.07,1);
  border-bottom: 2px solid var(--color-light-blue);
}
.accordion-content .accordion-image {
  mix-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-content .accordion-image img{
  max-width: 300px;
}
.accordion-content .accordion-text {
  width: 100%;
  float: left;
}

.accordion-content .accordion-text > *{
  width: 100%;
}
.accordion-content .accordion-text p{
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.accordion-row {
  float: left;
    margin-bottom: 1.2rem;
  }

.accordion-content h3 a{
  text-decoration: none;
}

.blocks .download-list{
  float: left;
  width: 100%;
}

.blocks .download-list ul{

}
.blocks .download-list ul li{
  font-family: var(--font-family-sans);
  font-weight: 600;
  font-size: 2.2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-left: 0;
  list-style-type: none;
}
.blocks .download-list ul li:before{
  font-family: "Font Awesome 5 Free";
 
  content: "\f019";
  /*  content: "\f111";*/
  position: relative;
  top: 0rem;
  font-size: 2.5rem;
  margin-right: 1.6rem;
  float: left;
}

.blocks .download-list.text-white ul li:before{
  color: var(--color-white);
}
.blocks .download-list.text-dark ul li:before{
  color: var(--color-text);
}

.blocks .download-list ul li a{
  float: left;
  width: auto;
}
.blocks .download-list ul li a:hover{
 
}
.blocks p{
  margin-bottom: 1rem;
}
.pure-g .btn-clear {
  clear: both;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.ancora {
  scroll-margin-top: 5rem;
}




.cta-products {
  background-color: var(--color-light);
  padding: 2rem 0.5rem;
}

.cta-products > div {
  display: flex;
  width: 100%;
  position: relative;
}

/* Box base */
.product-box {
  flex: 1 1 50%;
  height: 480px; /* o 30rem, o 50vh... scegli tu */
  transition: all 0.4s ease, transform 0.4s ease;
  padding: 1rem;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
  border-radius: 0.8rem;
  z-index: 0;
  background-size: cover;
  background-position: center;
  margin: 0.75rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.product-content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.product1:hover {
  background-color: var(--color-orange);
  flex: 1 1 75%;
  z-index: 2; /* portalo sopra */
  opacity: 1;

}
.product2:hover {
  background-color: var(--color-green);
  flex: 1 1 75%;
  z-index: 2;
  opacity: 1;

}

/* Mostra contenuti in hover */
.product-box p,
.product-box span {
  position: absolute;
  bottom: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 2;
}
.product-box p {
  bottom: 4rem;
}
.product-box span {
  bottom: 0;
}

.product-box:hover p,
.product-box:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sposta lateralmente l'altro box */
.boxed-2:has(.product1:hover) .product2 {
  transform: translateX(20%);
  
}
.boxed-2:has(.product2:hover) .product1 {
  transform: translateX(-20%);
  
}
.product-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: transparent;
  transition: background-color 0.4s ease;
  z-index: 1;
}

.product1::before {
  border-radius: 0.8rem;
}

.product2::before {
  border-radius: 0.8rem;
}
/* Mostra overlay arancione su product1 hover */
.product1:hover::before {
  background-color: var(--color-green);
  
}

/* Mostra overlay verde su product2 hover */
.product2:hover::before {
  background-color: var(--color-orange);
 
}
/* Mostra in hover */
.product-box:hover p,
.product-box:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  color: var(--color-white);
}

/* Anima il titolo verso l’alto */
.product-box h3 {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  transition: transform 0.4s ease;
}

.product-box:hover h3 {
  transform: translateY(-7rem);
}

.scroll-to{
  position: absolute;
  bottom: 3.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

}
.scroll-to {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  animation: bounceY 2s ease-in-out infinite;
}

.scroll-to span {
  color: var(--color-white);
  padding-bottom: 1rem;
  font-size: 1.2rem;
}

.scroll-to svg {
  transform: scale(1.2);
  transition: 0.4s cubic-bezier(.86,0,.07,1);
}
.scroll-to:hover svg {
  transform: scale(1.6);

}

/* Animazione su e giù */
@keyframes bounceY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.box-lang{
  position: absolute;
  bottom: 0;
  left: 0;
}

.box-lang .languages{
  height: 2.6rem;
  margin-left: 0.2rem;
}
.box-lang span{
  margin-left: 3rem;
}

.newsletter{
  position: absolute;
  bottom: 4rem;
  left: 0;
  width: 100%;
 
}
.newsletter-form{
  position: relative;
}

.newsletter-form .error{
  position: absolute;
  bottom: -2rem;
  left: 0.8rem;

}
 

.newsletter-label{
  width: 100%;
  display: block;
  margin-left: 0.8rem;
}

.newsletter-submit{
  font-family: var(--font-family-sans);
  letter-spacing: 0.01rem;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.1rem 0.8rem;
  border: 0;
  color: var(--color-white);
  background-color: var(--color-black);
  cursor: pointer;
  transition: 0.35s;
  box-sizing: border-box;
  border-radius: 0.5rem;
  position: absolute;
  right: 0.45rem;
  bottom: 0.37rem;

}
#newsletter_email{
  font-family: var(--font-family-sans);
  letter-spacing: 0.01rem;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.5rem 6rem 0.5rem 1rem;
  border: 0;
  color: var(--color-black);
  background-color: var(--color-white);
  cursor: pointer;
  transition: 0.35s;
  box-sizing: border-box;
  border-radius: 0.8rem;
  width: 100%;
}

.all-accessories > *{
  float: left;
}

.button2{
  border: 2px solid white;
  padding: 0.3rem 1.2rem;
  border-radius: 2rem;
  margin: 0 0 0.8rem 0;
}

.button2:hover{
  border: 2px solid var(--color-red);
  background-color: var(--color-red);
  color: var(--color-text);
  opacity: 1;
}

.last-box-menu{
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.box-menu ul.languages{
  float: left;
}

.box-menu ul.languages li{
  float: left;
  margin-left: 0;
  margin-right: 1rem;
}
.box-menu ul.languages li::after {
  content: '|';
  margin-left: 1rem;
}

.box-menu ul.languages li:last-child::after {
  content: '';
  margin: 0;
}

.box-menu ul.languages li a{
  float: left;
}
.box-menu ul.languages li.active a{
  color: var(--color-white);
}



.languages{
  float: left;
  margin-left: 1.5rem;
}
.languages li{
  float: left;
  margin-left: 0;
  margin-right: 1rem;
}
.languages li::after {
  content: '|';
  margin-left: 1rem;
}

.languages li:last-child::after {
  content: '';
  margin: 0;
}

.languages li a{
  float: left;
}
.languages li.active a{
  color: var(--color-white);
}
.random-img{
  display: none;
}



.details-cart {
  position: absolute;
  right: 0.5rem;
  top: 1.30rem;
  
}


.details-cart summary{
  text-align: right;
  letter-spacing: 0.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  cursor: pointer;
}


.dark .details-cart summary{
  color: var(--color-black);
}


.link-cart {
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  cursor: pointer;
}
.link-cart .text{
  display: none;
}


.link-cart a{
  text-align: right;
  letter-spacing: 0.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  display: flex;
  gap: 0.4rem;
  margin-top: 0.15rem;
}
.link-cart a svg{
  width: 25px;
}
.dark .link-cart a{
  color: var(--color-black);
}

.dark .link-cart summary{
  color: var(--color-black);
}

.details-cart .text{
  display: none;
}


.details-cart.is-hidden {
  display: none !important;
}

.details-cart > summary {
  list-style: none;
  position: relative;
  top: -5px;
}
.details-cart > summary::-webkit-details-marker {
  display: none;
}
.details-cart svg{
  width: 25px;
  fill: var(--color-white);
  position: relative;
  top: 5px;

}

.dark .details-cart svg{
  width: 25px;
  fill: var(--color-black);
  position: relative;
  top: 5px;

}
.cart{
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0.82rem;
  right: 0;
  position: absolute;
  top: 4rem;
  border-radius: 0.8rem;
  max-width: calc(100vw - 1.6rem) ;
}

.cart a{
  color: var(--color-white);
}

.cart th{
  padding: 0.2rem;
  text-align: left;
}
.cart tbody th{
  display: block;
  gap: 1rem;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
}


.cart tbody tr{

}


.cart td{
  padding: 0.2rem;
  text-align: right;
}

.cart tfoot tr th{
  padding: 0.5rem 1rem;
  text-align: right;
}

.cart img{
  width: auto;
  display: none;
}




.cart-invoice{
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 1rem;
}

.cart-invoice a{
  color: var(--color-black);
}

.cart-invoice th{
  padding: 0.5rem 1rem;
  text-align: left;
}
.cart-invoice tbody th{
  display: flex;
  gap: 1rem;
  align-items: center;
  white-space: nowrap;

}

.cart-invoice tbody tr{

}


.cart-invoice td{
  padding: 0.5rem 1rem;
  text-align: right;
}

.cart-invoice tfoot tr th{
  padding: 0.5rem 1rem;
  text-align: right;
}

.cart-invoice img{
  width: auto;
}


.checkout-cart {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0.8rem;
  border-radius: 0.8rem;
}


.checkout-cart table {
  width: 100%;
  table-layout: fixed;
}

.checkout-cart th:not(:first-child),
.checkout-cart td:not(:first-child) {
  width: auto;
}

.checkout-cart th,
.checkout-cart td {
  word-break: break-word;
}

.checkout-cart a {
  color: var(--color-white);
}

.checkout-cart th {
  padding: 0.2rem;
  text-align: left;
}

.checkout-cart tbody th {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  min-width: 115px;
}

.checkout-cart tbody th img {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: none;
}

.checkout-cart tbody tr strong {
  flex-grow: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.checkout-cart td {
  text-align: right;
}

.checkout-cart tfoot tr th {
  padding: 0.5rem 1rem;
  text-align: right;
}

.checkout-cart img {
  width: auto;
}





.color-gray{
  color: var(--color-grey);
}

.cart-quantity select{
  width: 100%;
  font-size: 1.2rem;
  margin-top: 1.8rem;
  display: none;
}

.cart-quantity button span{
  display: none;
}

a.checkout-button{
  padding: 0.3rem 1.2rem;
  border-radius: 2rem;
}



.main-conf{
  margin: 2.5rem;
}

.configurator{
  flex-direction: column;
}
.configurator button{
  float: right;
  font-weight: 700;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0.3rem 0.6rem;
  margin-top: 1rem;
  border-radius: 0.8rem;
  transition: 0.2s ease-in-out;
  letter-spacing: -0.04rem;
}
.configurator button:hover{
  background-color: var(--color-red);
  color: var(--color-white);
}
.configurator .conf{
  padding: 1rem;
}
.configurator .intro{
  padding: 0 1rem;
}

.configurator .product-label{
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 0.8rem;
  cursor: pointer;
  margin-top: 1rem;
  color: white;
  background-size: cover;
  background-position: center;
  min-height: 80px;
  max-width: 640px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s ease, background-image 0.4s ease;
}

/* Nascondi input radio */
.configurator .product-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Overlay scuro permanente */
.configurator .product-label .image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* Overlay colore prodotto (hover/selezione) */
.configurator .product-label .hover-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--hover-bg);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.configurator .product-label__text {
  position: relative;
  z-index: 2;
}

.configurator .product-label .hover-text {
  display: none;
}

.configurator .product-label:hover,
.configurator .product-label:has(input:checked) {
  background-image: none !important;
}

.configurator .product-label:hover .hover-overlay,
.configurator .product-label:has(input:checked) .hover-overlay {
  opacity: 1;
}

.configurator .product-label .default-text {
  font-weight: 700;
}

/* Hover: nasconde il titolo e mostra il summary */
.configurator .product-label:hover .default-text {
  display: none;
}
.configurator .product-label:hover .hover-text {
  display: inline;
}

/* Checked: mostra solo il titolo (non mostra il summary) */
.configurator .product-label:has(input:checked) .default-text {
  display: inline;
}
.configurator .product-label:has(input:checked) .hover-text {
  display: none;
}

/* Accessori di base */
.configurator .accessory-label {
  color: var(--color-black);
  background-image: none !important;
  border: 2px solid rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.configurator .accessory-label input {
  display: none;
}


/* Hover: grigio medio */
.configurator .accessory-label:hover {
  background-color: #eee; /* o var(--color-grey-dark) */
  color: var(--color-black);
}

/* Checked: colore acceso, ad es. arancione */
.configurator .accessory-label:has(input:checked) {
  background-color: var(--color-grey); /* arancione Ubuntu */
  color: var(--color-black);
}

/* Testo nero di default */
.configurator .accessory-label .default-text {
  color: var(--color-black);
}

/* Hover: testo bianco */
.configurator .accessory-label:hover .default-text {

}

/* Checked: testo bianco */
.configurator .accessory-label:has(input:checked) .default-text {

}

/* Di base: nascondi summary */
.configurator .accessory-label .hover-text {
  display: none;
}

/* Hover: mostra summary */
.configurator .accessory-label:hover .hover-text {
  display: inline;
  color: var(--color-black);
}

/* Checked: nascondi summary anche se selezionato */
.configurator .accessory-label:has(input:checked) .hover-text {
  display: none;
}

/* Nascondi hover-text di default */
.configurator .accessory-label .hover-text {
  display: none;
}



.configurator .configurator-footer{
  background-color: var(--color-grey);
  float: left;
  width: 100%;
  border-radius: 0.8rem;
  margin-top: 1rem;
}
.configurator .step-indicator {
  display: flex;
  align-items: center;
  gap: 0; /* nessuno spazio tra wrapper */
  margin-bottom: 1rem;
}

.configurator .step-wrapper {
  display: flex;
  align-items: center;
}

.configurator .step {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  background-color: transparent;
  color: var(--color-black);
  z-index: 1;
  position: relative;
}

.configurator .step.active {
  background-color: var(--color-black);
  color: var(--color-white);
}

.configurator .step-line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--color-black);
  margin: 0 0.5rem;
  opacity: 0.2;
  width: 50px;
}

.configurator .product-total{
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 1rem;

}
.configurator .product-total span{
  float: right;
  font-weight: 700;
}
.configurator .product-total span:after{
  content: ' €';
}

.configurator .product-total small{
  float: right;
  font-weight: 400;
  clear: both;
  position: relative;
  font-size: 0.9rem;
  top: -0.4rem;
}

.configurator .summary-box {
  background: var(--color-grey);
  padding: 1.2rem;
  border-radius: 0.8rem;
}

.configurator .button-back{
  float: left;
  font-weight: 700;
  padding: 0.3rem 0;
  margin-top: 1rem;
  border-radius: 0.8rem;
  transition: 0.2s ease-in-out;
  opacity: 0.3;
  letter-spacing: -0.04rem;

}

.configurator .button-back svg{
  transform: rotate(180deg);
  position: relative;
  top: 2px;
}


.configurator .button-configurator svg{
  position: relative;
  top: 2px;
}

.checkout .field {
  margin-bottom: 0.6rem;
}

.checkout .field label {
  display: block;
  font-weight: 700;
  margin-left: 1rem;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.checkout .field label abbr {
  color: var(--color-grey);
}

.checkout .field input[type="text"],
.checkout .field input[type="email"],
.checkout .field input[type="textarea"],
.checkout .field .StripeElement {
  
  width: 100%;
  padding: 0.6rem 1rem;
  border: 2px solid var(--color-grey);
  background-color: var(--color-background);
  transition: 0.35s;
  box-sizing: border-box;
  border-radius: 0.8rem;
  font-size: 1.2rem;
}

.checkout .field[data-type="radio"],
.checkout .field[data-type="checkbox"] {
  display: flex;
  align-items: start;
}
.checkout .field[data-type="radio"] label,
.checkout .field[data-type="checkbox"] label {
  font-weight: 400;
}
.checkout .field[data-type="radio"] input,
.checkout .field[data-type="checkbox"] input {
  height: 1.4rem;
  flex-shrink: 0;
}
.checkout .field[data-type="radio"] input:disabled + label,
.checkout .field[data-type="checkbox"] input:disabled + label {
  color: var(--color-grey);
}

.checkout .field .error {

}

.checkout .notice {
  background-color: var(--color-light);
  padding: 1rem;
  float: left;
  margin-top: 2rem;
}


.checkout .buy{
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-align: center;
  font-weight: 700;
  float: left;
  box-sizing: border-box;
  border-radius: 0.8rem;
  width: fit-content;
  border: 2px solid var(--color-text);
  color: var(--color-text);
  margin-top: 1rem;

}

.checkout .buy:hover {
  opacity: 1;
  border: 2px solid var(--color-red);
  background-color: var(--color-red);
  color: var(--color-text);
}

.checkout .warning{
  background-color: var(--color-red);
  color: var(--color-white);
  padding: 0.8rem;
  border-radius: 0.8rem;
  margin-top: 1rem;
  float: left;

}
.checkout .warning hr{
  width: 100%;
  color: var(--color-white);
  padding: 0;
  margin: 1.2rem 0;
}

.checkout .warning p{
  font-size: 1.2rem;
  color: var(--color-white);
  float: left;

}
.checkout .warning a{
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: underline;
  color: var(--color-white);
}

.checkout .warning small{
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--color-white);
  float: left;
}
.order{
  padding-bottom: 2.5rem;
}
.hidden{
  display: none;
}


.checkout-form {
  display: flex;
  flex-wrap: wrap; /* Importantissimo per andare a capo */
  gap: 1rem;       /* Importantissimo per i gap */
  width: 100%;
}

.checkout-form .field {
  box-sizing: border-box;
}

/* Le larghezze relative */
.checkout-form .field[data-width="1/1"] {
  flex: 0 0 100%;
}

.checkout-form .field[data-width="1/2"] {
  flex: 0 0 100%; /* Togliamo mezzo gap */
}

.checkout-form .field[data-width="1/3"] {
  flex: 0 0 calc(33.3333% - 0.6666rem); /* Mezzo gap * 2 */
}

.checkout-form .field[data-width="2/3"] {
  flex: 0 0 calc(66.6666% - 0.3333rem); /* Mezzo gap */
}

.checkout-form .field[data-width="4/12"] {
  flex: 0 0 calc(33.3333% - 0.6666rem);
}


.checkout-form .payment-methods[data-width="1/1"] {
  flex: 0 0 100%;
}

.checkout-form .payment-methods h2 {
  margin-bottom: 1rem;
}


.global-message{
  color: var(--color-red);
}

.order-done {
    margin-top: 3rem;
}

.order-done-actions {
    margin-top: 2rem;
}

.order-done-actions .button {
    margin-right: 1rem;
    background-color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 0.8rem;
}

.order-done-actions .button:hover {
    opacity: 0.8;
}

.help-box{
  margin-left: 1rem;
}


@media print {

  @page {
    margin: 6mm; /* o meno, tipo 5mm se vuoi bordi ancora più stretti */
  }
  /* Nascondi header, footer e bottoni */
  .preloader,
  nav,
  .header,
  .footer,
  .order-done,
  .button,
  .menu,
  .breadcrumb, 
  .back-to-top, 
  .popup,
  .big-logo,
  .cta-products,
  .global-message {
    display: none !important;
  }

  /* Ottimizza contenuto principale */
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 9pt;
    margin: 0;
    padding: 0;
  }
  .intro-only-text {
    margin-top: 1rem !important;
  }

  .cart-invoice{
    padding: 0;
  }
  .cart-invoice th{
    padding: 0.2rem 0;
  }
  .box1{
    padding: 0 !important;
  }

}




.whatsapp-button {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 9999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 42px;
  height: 42px;
}