.p-m{
    background: red;
    background-color:red;
}

@keyframes fadeInGrow {
    from    {
        opacity:0;
        max-height:0;
    }

    to      {
        opacity:1;
        max-height:400px;
    }
}

.fadeInGrow {
    animation-name: fadeInGrow;
    transition: ease-in-out all;
}

@keyframes p-fadeInDown {
    from    {
        opacity:0;
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.p-fadeInDown{
    animation-duration:1s;
    animation-name: p-fadeInDown;
}