.loader-page{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background: rgba(255, 255, 255, 0.986);
    z-index:5000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    max-height: 100vh;
}

.loader-page .title{
    font-family: "Saira", Helvetica, sans-serif;
    margin-top: 20px;
    font-size: 11px;
    color:rgb(51, 51, 51);
}

.loader-page .loader {
    position: relative;
    width: 100px;
    height: 100px;
    padding:10px;
    margin: auto;
}

.loader-page .logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: zoomInTwo 4s ease-in-out infinite;
}

.loader-page .logo img {
    width: auto;
    height: 80%;
    object-fit: cover;
    position:relative;
    top:10px;
}

.loader-page .loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid transparent;
    border-top: 1px solid rgb(0, 89, 189); /* Couleur de la bordure de chargement */
    border-radius: 50%; /* Cercle */
    animation: spin 1s linear infinite; /* Animation de rotation */
    z-index: 0;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes zoomInTwo {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* Zoom maximal */
    }
}
