/*section p, section img {
    opacity: 0;
    transition: all .5s;
}

section h1, section h2, section h3, section h4, section h5 {
    -ms-transform: scale(0.7); 
    -webkit-transform: scale(0.7); 
    transform: scale(0.7);
    opacity:0;
    transition: all .5s;
}

.fade-in{
    opacity: 1 !important;
}

.zoom-in{
    -ms-transform: scale(1) !important;
    -webkit-transform: scale(1) !important; 
    transform: scale(1) !important;
    opacity: 1 !important
}

*/