/*
====================================================
ANIMATIONS
====================================================
*/

.gmt-fade{
    animation:fadeIn .8s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}