body {
    margin: 0;
    height: 100vh;
    font-family: 'Mooli', sans-serif;
}

.loader-page {
    height: 100vh;
    width: 100%;
    position: absolute;
    z-index: 999;
    top: 0;
}

.loader-page .loading-page-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
}

.loader-page .loading-page-container .loading-page {
    background: #242424;
    height: 100vh;
    flex: 1;
    display: flex;
    transform-origin: top;
    justify-content: center;
    align-items: center;
}

.loader-page .loading-page-container .loading-page .client-img-loding {
    width: 200px;
    height: 200px;
    aspect-ratio: 3/2;
    object-fit: contain;
    border: 10px solid rgb(52, 51, 51) !important;
    box-shadow: 0px 0px 4px 0px #000000;
    animation: loading 0.75s alternate infinite;
    border-radius: 50%;
}

@keyframes loading {
    from {
        transform: scale(1.21);
    }
    to {
        transform: scale(1.1);
    }
}
