/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


/***** WISE EVENTI*****/


/***** Custom Fonts *****/

@font-face {
    font-family: 'Saol';
    src: local('Saol-Light'), 
         url('https://145119507.fs1.hubspotusercontent-eu1.net/hubfs/145119507/Font/Saol/SaolDisplay-Light.woff') format('woff'),
         url('https://145119507.fs1.hubspotusercontent-eu1.net/hubfs/145119507/Font/Saol/SaolDisplay-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saol';
    src: local('Saol-Medium'), 
         url('https://145119507.fs1.hubspotusercontent-eu1.net/hubfs/145119507/Font/Saol/SaolDisplay-Medium.woff') format('woff'),
         url('https://145119507.fs1.hubspotusercontent-eu1.net/hubfs/145119507/Font/Saol/SaolDisplay-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saol';
    src: local('Saol-Bold'), 
         url('https://145119507.fs1.hubspotusercontent-eu1.net/hubfs/145119507/Font/Saol/SaolDisplay-Bold.woff') format('woff'),
         url('https://145119507.fs1.hubspotusercontent-eu1.net/hubfs/145119507/Font/Saol/SaolDisplay-Bold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;


}

:root {
    --ff-accent: Saol, sans-serif !important;
}

/***** end Custom Fonts *****/


/* immagini arrotondamento */
.borderzero img {
    border-radius: 0 !important;
}


img.frecciaGira {
    transition: transform 0.5s ease-in-out; margin-left:10px;
}

img.frecciaGira:hover {
    transform: rotate(675deg);
}

/* Testo sbarrato */


.lineThrough {position:relative;}
.lineThrough:before {
  position:absolute;
  left:-10%;
  top:50%; 
  width:120%;
  height:5px; 
  border-radius:2px;
  z-index:1;
  content:"";
  background:#FE5AA3;
  transform:rotate(-5deg);
  box-shadow:1px 3px 3px rgba(0, 0, 0, 0.5);
}

/* Rotazione parole header */

        .animOpacity {
            opacity: 0.3; /* All start at 30% opacity */
          animation: fadeCycle 6s ease-in-out infinite;
        }

        /* Keyframes for the animation */
        @keyframes fadeCycle {
            0%, 100% { opacity: 0.3; }    /* Start and end at 30% opacity */
            10%, 30% { opacity: 1; }      /* Fade in to 100% opacity */
            40%, 90% { opacity: 0.3; }    /* Fade back to 30% opacity */
        }

        /* Applying animation with delays */
        .unico {
        }
        .memorabile {
            animation-delay: 2s; /* Start 2 seconds after .unico */
        }
        .agile {
            animation-delay: 4s; /* Start 4 seconds after .unico */
        }




/* Bullet point gold */
.bullet-gold.pwr--dark ul:not(.hs-error-msgs):not(.inputs-list) li:before {background-color: #DBB778 !important;}

.cta-oro {
  border: 2px solid #DBB778;
  border-radius: 10px;
  padding: 1rem;
}

.cta-oro:hover {
  box-shadow: 0 0 10px #85704c;
}


/*

/* Effetto neve CSS-only sulla sezione con classe .snow 
.snow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  background-image: 
    radial-gradient(white 2px, transparent 2px),
    radial-gradient(white 1.5px, transparent 1.5px),
    radial-gradient(white 2.5px, transparent 2.5px);
  background-size: 40px 40px, 60px 60px, 80px 80px;
  animation: snowfall 30s linear infinite, sway 6s ease-in-out infinite;
  opacity: 0.5;
}

/* Animazione fiocchi con effetto diagonale 
@keyframes snowfall {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 100px 100vh, 200px 200vh, 300px 300vh;
  }
}

/* Movimento oscillatorio laterale
@keyframes sway {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
*/
/*
.snow {
  position: relative;
  overflow: hidden; /* importante per evitare che la neve esca dalla hero */
}

*/











/* List elements 
.bulletArrow li:before {
  height: 1px;
}

.bulletArrow li:after {
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #FE5AA3;  Cambia il colore del bordo qui 
  content: "";
  height: 15px;
  left: -36px;
  position: absolute;
  top: 8px;
  width: 15px;
  transform: rotate(45deg);
}


li.hs-menu-item:after {display:none} */