/* Codchem Header Animations */


.codchem-header {

    animation: codchemHeaderReveal 0.8s ease forwards;

}


@keyframes codchemHeaderReveal {

    from {

        opacity: 0;
        transform: translateY(-20px);

    }


    to {

        opacity: 1;
        transform: translateY(0);

    }

}



.codchem-menu li {

    opacity: 0;
    animation: codchemMenuReveal 0.6s ease forwards;

}


.codchem-menu li:nth-child(1) {
    animation-delay: .2s;
}


.codchem-menu li:nth-child(2) {
    animation-delay: .3s;
}


.codchem-menu li:nth-child(3) {
    animation-delay: .4s;
}


.codchem-menu li:nth-child(4) {
    animation-delay: .5s;
}



@keyframes codchemMenuReveal {

    from {

        opacity:0;
        transform:translateY(-10px);

    }


    to {

        opacity:1;
        transform:translateY(0);

    }

}