/*---------------------------- SCROLL REVEAL ---------------------------------*/
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    will-change: transform, opacity;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/*--------------------------------- FLECHE -------------------------------*/
#btnTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #aad1d1;
    color: white;
    padding: 9px 11px;
    border-radius: 50%;
    z-index: 1000;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

#btnTop:hover {
    background-color: #7eaaaa;
}

#btnTop.visible {
    opacity: 1;
    pointer-events: auto;
}

.flechehaut{
    width: 23px;
    height: 23px;
}