/* style css des titres */
/* On définit une base propre pour le document
html {
  font-size: 16px !important;
}

h1 {
  /* Min: 36px | Fluide: 3.7vw | Max: conseillé autour de 72px-80px */
  font-size: clamp(2.25rem, 3.7vw, 5rem) !important;
  line-height: 1.2 !important;
}

h2 {
  /* Min: 30px | Fluide: 2.5vw | Max: conseillé autour de 48px */
  font-size: clamp(1.875rem, 2.5vw, 3rem) !important;
  line-height: 1.3 !important;
}

h3 {
  /* Min: 24px | Fluide: 1.5vw | Max: conseillé autour de 32px */
  font-size: clamp(1.5rem, 1.5vw, 2rem) !important;
  line-height: 1.4 !important;
}
*/

/* faire disparaitre les titres pour que seule le JS les affiche 
 * Le reste de l'animation lettre par lettre se fait en JS via un snipper JS inséré via WpCodeLite */
h1, h2, h3 {
  visibility: hidden;
}

/* animation du reste des éléments aynat la bonne classe CSS */
/* ============================================
   1) FADE-UP au chargement
   ============================================ */
.AnimateOnLoad p, .AnimateOnLoad a {
  visibility: hidden;
    opacity: 0;
}
.AnimateOnLoad p,
.AnimateOnLoad a {
  transition: opacity 3s ease, transform 3s ease !important;
    transform: translateY(-20px);
}
.AnimateOnLoad.is-visible p,
.AnimateOnLoad.is-visible a {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   2) FADE-UP au Scroll
   ============================================ */
.AnimateOnScroll p, .AnimateOnScroll a {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-20px);
}

.AnimateOnScroll p,
.AnimateOnScroll a,
.AnimateOnScroll.is-visible h3 {
  transition: opacity 1.5s ease, transform 1.5s ease !important;
}

.AnimateOnScroll.is-visible p,
.AnimateOnScroll.is-visible a,
.AnimateOnScroll.is-visible h3 {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   3) animation au survol des cartes avec .HoverCard
   ============================================ */
.HoverCard {
  transform: translateY(0);
	transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}

.HoverCard:hover {
  transform: translateY(-10px);
	transition-delay: 0.3s;
}

#HeroHomepage {
background-image:
  linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 80px 80px;}

/* couleur des puces des listes UL */
ul li::marker {
  color: #f1f1f1;
}

/* style survol boutons */
.RefdigButtonVide a:hover {
		background-color: #f1f1f1 !important;
		color: #1d1d1d !important;
}

.RefdigButtonPlein a:hover {
		background-color: #1d1d1d !important;
		color: #f1f1f1 !important;
}

.logoRefdig {
		visibility: visible;
}

.LiensRefdig a:hover {
	color: #f1f1f1 !important;
}