/*=========================================================
                PAGE TRANSITIONS
=========================================================*/

html{

    scroll-behavior:smooth;

}

body{

    opacity:1;

    transition:opacity .35s ease-in-out;

}

/* Fade Out */

body.fade-out{

    opacity:0;

}

/* Fade In */

body.fade-in{

    opacity:1;

}
