/* Delete initial configuration*/
.vs-section .vs-wrapper .vs-heading ~ .tpl-grid-popup-cards-4cols {
    transform: none;
}

.vs-animate.vs-section .vs-wrapper .vs-heading ~ .tpl-grid-popup-cards-4cols {
    transform: initial;
}

/*  New animation  */
.vs-section .vs-wrapper .vs-heading ~ .tpl-grid-popup-cards-4cols {
    position: relative;
    top: 15px;
    opacity: 0;
    transition: all 600ms cubic-bezier(0, 0, 0.5, 1) 300ms;
}

.vs-animate.vs-section .vs-wrapper .vs-heading ~ .tpl-grid-popup-cards-4cols {
    opacity: 1;
    top: 0;
}