/* Animation Properties -START- */

    /* Animation for AesHeader -START- */
    .ANM_header{
        transform: translate(0, 60px);
        opacity: 0;
        transition: transform 0.7s, opacity 0.7s;
    }
    /* Animation for AesHeader -END- */

    /* Animation for img -START- */
    .ANM_img{
        opacity: 0;
        transition: opacity 1s 0.3s;
    }
    /* Animation for img -END- */

    /* Animation for para -START- */
    .ANM_para, .ANM_board{
        transform: scale(0.8, 0.8); 
        transition: transform 1s;
    }
    /* Animation for para -END- */

    .ANM_vid{
        opacity: 0;
        transition: opacity 0.7s 0.7s;
    }
    .ANM_spanP{
        position: relative;
        overflow: hidden;
    }
    .ANM_span{
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgb(243, 242, 242);
        transition: transform 1.2s 0.4s;
    }

/* Animation Properties -END- */

/* Specialization for Large Screen Devices -START- */ 
@media screen and (min-width: 1440px){

/* Transition Delay for Multiple Column Paragraph */
    .ANM_board.p1{
        transition-delay: 0s;
    }
    .ANM_board.p2{
        transition-delay: 0.15s;
    }
    .ANM_board.p3{
        transition-delay: 0.25s;
    }
    .ANM_board.p4{
        transition-delay: 0.35s;
    }
}

/* Specialization for Large Screen Devices -END- */ 