.elementor-kit-8{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-65dc19b:#182A3E;--e-global-color-f1dff27:#03151F;--e-global-color-5e5b3f4:#CDAA68;--e-global-color-b04c98c:#826425;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-size:25px;--e-global-typography-primary-font-weight:bold;--e-global-typography-secondary-font-family:"Montserrat";--e-global-typography-secondary-font-size:20px;--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-weight:600;font-family:"Montserrat", Sans-serif;font-size:16px;font-weight:400;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-kit-8 a{color:var( --e-global-color-5e5b3f4 );}.elementor-kit-8 a:hover{color:var( --e-global-color-text );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* GENERAL */

p:last-of-type {
    margin-bottom: 0;
}

[data-elementor-type="wp-page"] {
    ul {
        margin: 1rem 0;
        padding-left: 2rem;
        
        li {
            margin: 1rem 0;
            
            &::marker {
                color: var(--e-global-color-primary);
            }
            
            ul li {
                margin: 0.5rem 0;
            }
        }
    }
}

.elementor-widget-container {
    ul {
        &:first-child {
            margin-top: 0;
            
            li:first-child {
                margin-top: 0;
            }
        }
        
        &:last-child {
            margin-bottom: 0;
            
            li:last-child {
                margin-bottom: 0;
            }
        }
    }
}
/* HEADER */
.mon-header {
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  background: transparent !important; /* Transparent au départ */
}

.mon-header.avec-bg {
  background: linear-gradient(180deg, #182A3E 0%, #03151F 100%) !important;
}

.mon-header.cache {
  transform: translateY(-100%);
  opacity: 0;
}

/* CONTAINER */
/* 1️⃣ Cachons le texte initialement */
.texte1 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* 2️⃣ Créons la bordure qui va apparaître */
.container1 {
    position: relative;
    overflow: hidden; /* Pour éviter les débordements */
}

/* Bordure animée */
.container1::after {
    content: "";
    position: absolute;
    inset: 0; /* Prend toute la place */
    border: 0px solid #CDAA68; /* Bordure invisible au départ */
    transition: border-width 0.5s ease-in-out, clip-path 0.5s ease-in-out;
    clip-path: inset(100% 0% 0% 0%); /* Cachée en bas */
    pointer-events: none; /* Pour ne pas gêner les interactions */
}

/* 3️⃣ Effet au survol */
.container1:hover .texte1 {
    opacity: 1;
    transform: translateY(0);
}

.container1:hover::after {
    border-width: 1px; /* Épaisseur de la bordure */
    clip-path: inset(0% 0% 0% 0%); /* Animation de bas en haut */
}

/* 4️⃣ Animation de l'icône */
.icone1 {
    transition: transform 0.5s ease-out;
}

.container1:hover .icone1 {
    transform: translateY(10px); /* Déplacement vers le bas */
}    
    
/* --- Animation de rotation fluide sur survol du container --- */
.icon-tilt-container:hover .elementor-icon {
  animation: icon-tilt 0.8s ease-in-out; /* durée augmentée pour un effet plus lent */
}

/* Définition de l’animation */
@keyframes icon-tilt {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* Style du point avec contour et effet pulse */
#custom-cursor {
    position: fixed;
    width: 15px; /* Taille du cercle */
    height: 15px;
    border: 1px solid #CDAA68; /* Contour orange */
    background-color: transparent; /* Centre transparent */
    border-radius: 50%; /* Forme arrondie */
    pointer-events: none; /* Ne bloque pas les clics */
    transform: translate(-50%, -50%);
    z-index: 10000; /* S'assure qu'il est au-dessus de tout */
    transition: transform 0.1s ease-out, top 0.1s ease-out, left 0.1s ease-out; /* Animation fluide */
    animation: pulse 1.5s infinite ease-in-out;
    will-change: transform;
}

/* Animation pulse */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}/* End custom CSS */