@keyframes slideInLeft{
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

.heading-1 {
    animation-name: slideInLeft;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    transform: translateZ(100px);
    opacity: 1;
    margin-right: 400px;
    
}
