
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #076FC6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1);
    clip-path: circle(100% at 50% 50%);
}

#preloader img {
    width: 200px;
    transition: opacity 0.5s ease;
    animation: opacityPulse 1.5s ease-in-out infinite;
}

@keyframes opacityPulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

#preloader.loaded {
    clip-path: circle(0% at 50% 50%);
    pointer-events: none;
}

#preloader.loaded img {
    opacity: 0;
}