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

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

  --color-dusty-pink: #da9881; /* Un rosa tenue con un tocco di polvere */
  --color-soft-peach: #f2d2b2; /* Un pesca delicato e chiaro */
  --color-warm-tan: #e1b38b;       /* Un beige caldo e morbido */
  --color-sand-peach: #e9dbcc; /* Un pesca sabbioso e pallido */
  --color-rosewood: #d5b5b1; /* Un tono rosa legnoso */
  --color-moss-green: #8d9372; /* Un verde muschio tenue */
  --color-deep-moss: #68714c;      /* Un verde muschio più scuro e profondo */  
  --color-muted-olive: #9d9c8d; /* Un tono oliva spento */
  --color-soft-sage: #a2bcb6;      /* Un verde salvia chiaro e delicato */

  --color-text: #ab7453;
  --color-text-grey: #5a4b3e;

  --color-background: var(--color-light);
  --font-family-sans: "Roboto", Roboto, Helvetica, Arial, sans-serif;
  --font-family-serif: "Roboto", Roboto, Helvetica, Arial, sans-serif;

  /*  --font-family-serif: 'Bree Serif', Georgia, Times New Roman, serif;*/
  --font-family-mono: Courier, monospace;
}
html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.3;
  font-weight: 400;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*::selection{
  color: var(--color-soft-peach);
  background: var(--color-moss-green); 
}
 *::-moz-selection{
  color: var(--color-soft-peach);
  background: var(--color-moss-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:inherit;
  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-grey);
}
div{
  box-sizing: border-box;
}
h1 {
  font-family: var(--font-family-serif);
  font-size: 2rem;
  line-height: 1.1;
}
h2 {
  font-family: var(--font-family-serif);
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
}
h3 {
  font-family: var(--font-family-serif);
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}
h4 {
  font-family: var(--font-family-serif);
  font-size: 1.3rem;
  line-height: 1.1;
}
h5{
  font-size: 1.2rem;
}
h6 {
  font-size: 0.9rem;
}



.full {
  width: 100%;
  overflow: hidden;
}
.boxed-1 {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}
.boxed-2 {
  margin: 0;
  overflow: hidden;
}
.bg-creme{
  background-color: var(--color-soft-peach);
  color: var(--color-text);
}
.bg-creme a{
  color: var(--color-text)
}
.bg-gold{
  background-color: var(--color-moss-green);
  color: var(--color-text);
}
.bg-gold a{
  color: var(--color-text)
}
.bg-brown{
  background-color: var(--color-text);
}
.bg-brown a{
  color: var(--color-text)
}
.bg-grey{
  background-color: var(--color-text-grey);
  color: var(--color-text);
}
.bg-grey a{
  color: var(--color-text)
}
.bg-oil{
  background-color: var(--color-dusty-pink);
  color: var(--color-black);
}
.bg-oil a{
  color: var(--color-black)
}

a.button-md{
  padding: 12px 30px 12px 38px;
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  text-align: center;
  font-weight: 700;
  float: left;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
}

a.button-md:hover {
  opacity: 1;
}
a.button-brown{
  border: 2px solid var(--color-text);
  color: var(--color-soft-peach);
  background-color: var(--color-text);
  border-radius: 4px;
}
a.button-brown:hover {
  border: 2px solid var(--color-soft-peach);
  background-color: var(--color-soft-peach);
  color: var(--color-text);
}
a.button-1{
  border: 2px solid var(--color-text);
  color: var(--color-text);
  border-radius: 4px;
}
a.button-1:hover {
  border: 2px solid var(--color-text);
  background-color: var(--color-text);
  color: var(--color-soft-peach);
}
a.button-grey{
  border: 2px solid var(--color-text);
  color: var(--color-text);
  background-color: var(--color-text-grey);
  border-radius: 4px;
}
a.button-grey:hover {
  border: 2px solid var(--color-text);
  background-color: var(--color-text);
  color: var(--color-text-grey);
}
a.button-gold{
  border: 2px solid var(--color-text);
  color: var(--color-text);
  background-color: var(--color-moss-green);
  border-radius: 4px;
}
a.button-gold:hover {
  border: 2px solid var(--color-text);
  background-color: var(--color-text);
  color: var(--color-moss-green);
}

a.button-white{
  border: 2px solid var(--color-white);
  color: var(--color-white);
  border-radius: 4px;
}
a.button-white:hover {
  border: 2px solid var(--color-white);
  background-color: var(--color-white);
  color: var(--color-text);
}

a.b-standard{

}
a.b-executive{

}
a.b-suite{

}
a.b-center{

}


.header {
  background: var(--color-background);
  /*backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);*/
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 92;
  transition: 0.5s cubic-bezier(.86,0,.07,1);
}

.scrolling .header{
  background: rgba(245, 237, 233, 0.75);
  transition: 0.5s cubic-bezier(.86,0,.07,1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.dark.scrolling .header{
  background: rgba(255, 255, 255, 0.5);
  transition: 0.5s cubic-bezier(.86,0,.07,1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.header .logo {
  
  float: left;
}


.header .logo .cls-1{
  fill: var(--color-white);
  transition: 0.5s cubic-bezier(.86,0,.07,1);
}
.header.h-home .logo .cls-1{
/*  fill: var(--color-dusty-pink);*/
  transition: 0.5s cubic-bezier(.86,0,.07,1);
}
.scrolling .header .logo .cls-1{
  fill: var(--color-white);
  transition: 0.5s cubic-bezier(.86,0,.07,1);
}
.header .logo svg{
  width: 115px;
  transition: 0.5s cubic-bezier(.86,0,.07,1);
  padding: 0 0.5rem;
  float: left;
}

.scrolling .header .logo svg{
  width: 115px;
}
.dark .header .logo .cls-1{
  fill: var(--color-dusty-pink);
}

.header nav{
  display: flex;
}
.header nav .languages{
  display: none;
}
.box-menu .mobile-languages{
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.box-menu .mobile-languages li{
  display: flex;
 
}
.box-menu .mobile-languages li:after{
  padding: 0.15rem 1rem;
  content: "|";
  color: var(--color-white);
  font-size: 2rem;
}
.dark .box-menu .mobile-languages li:after{
 
  color: var(--color-text);

}

.box-menu .mobile-languages li:last-child::after {
  display: none;
}

.box-menu .mobile-languages .active a{
  font-weight: 600;
}

.header ul{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.header ul li{
  float: left;
  padding: 0rem 0.6rem;
  text-align: center;
}
.header ul li a{
  /*color: var(--color-white);*/
  font-size: 0.9rem;
}
.header ul li a[aria-current] {
  text-decoration: underline;
}


.header a.social{
  text-transform: lowercase;
  width: auto;
  position: relative;
  top: -6px;
  right: -4px;
  padding-right: 0;
}
.header a.social svg{
  width: 28px;
  position: relative;
  top: 9px;
  fill: var(--color-text);
}


.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;
  display: none;
  height: 100%;
}
.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 li a{
  font-size: 1.8rem;
  line-height: 1;
  margin: 0;
  padding: 0.7rem 0;
  text-align: center;
  font-weight: 300;
}

.box-menu ul li a.social{
  text-transform: lowercase;
  margin-top: 2rem;
}
.box-menu ul li a.social svg{
  width: 32px;
  position: relative;
  top: 9px;
}

.dark .box-menu ul li a{
  color: var(--color-text);
}
.box-menu p{
  color: var(--color-text);
  text-align: center;
  line-height: 1.4;
  font-size: 1rem;
  letter-spacing: -0.01rem;
}
.box-menu h5{
  margin-bottom: 0.1rem;
  margin-top: 1rem;
}
.box-menu .lang{
  position: absolute;
  top: 15px;
  left: 15px;
}
.box-menu .lang ul li{
  float: left;
}
.box-menu .lang a{
  font-family: var(--font-family-serif);
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 0 15px;
}
.box-menu .social .st0{
  fill: var(--color-text) !important;
}
.box-menu .center-vertical{
  margin-top: 12vh;
  margin-bottom: 12vh;
  position: absolute;
  left: 0;
  top: 0;

}

.header ul.extended-menu{
  display: none;
}

.container-hamburger {
  position: fixed;
  right: 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: 300;
}
.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-grey);
  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%;
  overflow: auto;
}
.opened .box-menu {
  display: block;
}



.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 h1,
.h1,
.intro {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
}
.text h2,
.h2 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.text h3,
.h3 {
}
.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-grey);
}

.pure-g blockquote{
  font-family: var(--font-family-serif);
  font-size: 1.8rem;
}

.pure-g blockquote i{
  font-size: 1.4rem;
}


.pure-g blockquote footer{
  margin-top: 0.2rem;
  font-family: var(--font-family-sans);
  font-style: italic;
  font-size: 1.3rem;
  text-align: right;
  
}
.pure-g blockquote footer:before{
   content: "\2014";  

}
.pure-g blockquote .fa-quote-left{
  position: relative;
  width: 0;
  display: block;
  left: -2rem;
  top: 0.4rem;
}
.pure-g blockquote .fa-quote-right{
  position: relative;
  width: 0;
  left: 0.6rem;
  top: 0rem;
  float: right;
}


.swiper-wrapper .caption{
  position: absolute;
  bottom: 1rem;
  background-color: rgba(255,255,255, 0.7);
  margin-left: 1rem;
  padding-bottom: 0.5rem;
  padding-right: 1rem;
}

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

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

/* 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.only-text{
  min-height: auto;
  padding-top: 4rem;
}

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

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

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


.start h1{
  font-weight: 500;
  /*  color: var(--color-white);*/
  font-size: 3.2rem;
  line-height: 0.75;
  margin: 1rem 0;
  text-align: center;
  line-height: 0.9;
}
.start  h1 span{
  font-size: 1.6rem;
  font-weight: 400;
  font-family: var(--font-family-sans);
  letter-spacing: 0.05rem;
  position: relative;
  top: 0.6rem;
}
.start .pure-g{
  padding: 0;
}
.section-element h1{
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1;
  margin: 1rem 0;
}
.section-element h1 span{
  font-size: 1.8rem;
  font-weight: 300;
  font-family: var(--font-family-sans);
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}
.section-element h2{
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 1rem;
}
.section-element h2 span{
  font-size: 1.6rem;
  font-weight: 400;
  font-family: var(--font-family-sans);
  position: relative;
  top: 1rem;
}
.section-element h3{
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 1rem;
  float: left;
  width: 100%;
}
.section-element h4{
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 1rem;
  float: left;
  width: 100%;
}
.section-element p{
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.3;
  float: left;
  margin-top: 1rem;
  width: 100%;
}

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

.section-element ul li{
  list-style-type: disc;
  margin-left: 1rem;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  float: left;
  width: 100%;
}

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

.full-h{
  width: 100%;
  height: 100vh;
  background-color: var(--color-text-grey);
  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{
 padding-top: 2rem;
}
.footer .full{
  /*margin-top: -24rem;*/
}
.footer hr{
  
  float: left;
}
.footer p{
  font-size: 1.3rem;
  line-height: 1.4;
}
.footer p a{
  
  font-weight: 700;
}

.footer h3{
  text-align: center;
}
.footer .serif p {
  font-size: 1.3rem;
  line-height: 1.5;
}
.footer .logo{
  position: relative;
  top: 22rem;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}
.footer .logo svg g{
  fill: var(--color-white);
  opacity: 0.5;
}
.footer .logo-footer {
  opacity: 0.4;
  position: relative;
  top: -2rem
}


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

.footer .button-1{
  float: left;
  width: 100%;
}
.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-background);
  transition: 0.35s;
  box-sizing: border-box;
  border-radius: 4px;
}
.form-contatto form textarea{
  width: 100%;
  padding: 0.6rem 1rem;
  min-height: 200px;
  border: 2px solid var(--color-text);
  background-color: var(--color-background);
  transition: 0.35s;
  box-sizing: border-box;
  border-radius: 4px;
}
.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-soft-peach);
  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: 4px;
}
.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; 
}



.form-contatto-2 .field{
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  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-light);
  background-color: rgba(255,255,255, 0.2);
  transition: 0.35s;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 1.2rem;
}
.form-contatto-2 form textarea{

  width: 100%;
  padding: 1.2rem 2rem;
  min-height: 200px;
  border: 2px solid var(--color-light);
  background-color: rgba(255,255,255, 0.2);
  transition: 0.35s;
  box-sizing: border-box;
  border-radius: 4px;
  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.1rem;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 1rem;
  margin-bottom: 2rem;
  border: 0;
  color:  var(--color-dusty-pink);
  background-color: var(--color-white);
  text-transform: uppercase;
  cursor: pointer; 
  transition: 0.35s;
  box-sizing: border-box;
  bottom: 0;
  right: 0;
  min-width: 200px;
  max-width: 380px;
  border-radius: 4px;
}
.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-white);
  opacity: 0.8;
  font-size: 1.4rem;
  font-style: italic; /* Firefox */
  font-family: var(--font-family-serif);
}
.form-contatto-2 form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:var(--color-white);
  opacity: 0.8;
  font-size: 1.4rem;
  font-style: italic; 
  font-family: var(--font-family-serif);
}
.form-contatto-2 form input::-ms-input-placeholder { /* Microsoft Edge */
  color:var(--color-white);
  opacity: 0.8;
  font-size: 1.4rem;
  font-style: italic; 
  font-family: var(--font-family-serif);
}
.form-contatto-2 form textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color:var(--color-white);
  opacity: 0.8;
  font-size: 1.4rem;
  font-style: italic; /* Firefox */
  font-family: var(--font-family-serif);
}
.form-contatto-2 form textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:var(--color-white);
  opacity: 0.8;
  font-size: 1.4rem;
  font-style: italic; 
  font-family: var(--font-family-serif);
}
.form-contatto-2 form textarea::-ms-input-placeholder { /* Microsoft Edge */
  color:var(--color-white);
  opacity: 0.8;
  font-size: 1.4rem;
  font-style: italic; 
  font-family: var(--font-family-serif);
}

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



/* 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-sand-peach);
  z-index: 998;
}

.preloader .cls-1{
  fill: var(--color-text);
}

.preloader span {
  display: inline;
  opacity: 0.8;
  animation: pulse 1s alternate infinite ease-in-out;
  width: 260px;
}
@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-sand-peach);
}
#main-menu .serif p{
  font-size: 1.3rem;
  line-height: 1.5;
  position: relative;
  top: -3px;
}
#hamburger-button {
  margin: 35px 45px 0 0;
  display: block;
  float: right;
  position: relative;
  right: 0;
  z-index: 95;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  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: 52px;
  height: 3px;
  margin-bottom: 15px;
  margin-top: 1px;
  position: relative;
  background: var(--color-text);
  border-radius: 0;
  z-index: 96;
  transform-origin: 4px 0px;
  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(-18px, -31px);
}
.opened #hamburger-button  span:nth-last-child(2) {
  transform: rotate(-45deg) translate(-6px, 15px);
}
.opened #hamburger-button  span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}


.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;
}
#prenota-menu{
  background-color: var(--color-background);
}
#prenota-button {
  margin: 0;
  display: block;
  float: right;
  position: absolute;
  right: 125px;
  margin-top: 35px;
  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 {

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


.swiper {
  width: 100%;
}
.swiper-full{
  height: 100vh;
}
.single-image{
  height: 100vh;
}
.swiper-65{
  height: 65vh;
}
.single-image-65{
  height: 65vh;
}
.swiper-70{
  height: 70vh;
}

.swiper-gallery{
  height: auto;
}
.single-image-70{
  height: 70vh;
}
.swiper-slide{
  background-size: cover;
  filter: brightness(0.75);
}
.swiper-gallery .swiper-slide{
  background-size: cover;
  filter: brightness(1);
}
.swiper-home{
  margin-top: 115px;
  height: calc(100vh - 140px);
}
.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);*/
}



.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;
  line-height: 1.1;
  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);
  font-weight: 700;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  padding: 1.2rem;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.07rem;
  color: var(--color-light-blue);
  cursor: pointer;
  transition: var(--transition-02);
}
button.accordion:after {
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  float: right;
}
button.accordion.is-open:after {
  font-family: "Font Awesome 5 Free";
  content: '\f068';
}
button.accordion:hover, button.accordion.is-open {
  background-color: var(--color-light);
}
.accordion-content {
  padding: 0 1.2rem;
  margin-bottom: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-02);
  border-bottom: 2px solid var(--color-light-blue);
  background-color: var(--color-light);
}
.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-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{
 
}

.pure-g .btn-clear {
  clear: both;
  float: left;
  width: 100%;
}
.ancora {
  scroll-margin-top: 5rem;
}


.swiper-gallery .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}
.single-image-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 100%;
}


.hover-layer {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0); /* Trasparente di default */
  transition: background-color 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.container:hover .hover-layer,
.single-image-slide.active .hover-layer,
.swiper-gallery.active .hover-layer {
  background-color: var(--hover-bg, rgba(0, 0, 0, 0.6)); /* fallback */
}



.hover-text {
  position: absolute;
  top: 3rem;
  left: 2rem;
  right: 2rem;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 11;
  pointer-events: none;
  transform: translateY(0px);
  transition: opacity 0.3s ease, transform 0.3s ease;

}

.container:hover .hover-text {
  opacity: 1;
  transform: translateY(-10px);
}



.single-image-slide.active .hover-layer,
.swiper-gallery.active .hover-layer {
  background-color: rgba(0, 0, 0, 0.6);
}

.single-image-slide.active .hover-text,
.swiper-gallery.active .hover-text {
  opacity: 1;
}
