.bal {
    position: relative;
    animation: slideIn 2s ease-in;
    animation-delay: 0.3ms;
    z-index: 2;
}

@keyframes slideIn {
    0% {
        opacity: 0;
    }
    
    100% {
        opacity: 1;
    }
}


