#preloader{
    width: 100%; 
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 10000;
    overflow: hidden;
}

.preloader-logo{ 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#abc{    
    animation: animateOne -0.5s linear 0.8s infinite alternate;
}

#healthcare{
    animation: animateTwo 0.8s linear 0.8s infinite alternate;
}

#egypt{
    animation: animateThree -0.5s linear 1s infinite alternate;
}

@keyframes animateOne {
    0%{
        opacity: 0;
    }
    100%{   
        opacity: 1;
    }
}
@keyframes animateTwo {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes animateThree {
    0%{
        opacity: 0; 
        r: 0;
        cx: 10;
        cy: -30;
    }
    50%{   
        opacity: 0.5;
        cx: 24.994;
        cy: 24.994;
    }
    100%{
        opacity: 1;
        opacity: 0.5;
        r: 24.994;
        cx: 24.994;
        cy: 24.994;
    }
}


