nav > .container-fluid > .nav-animation > ul > .nav-item{
    transform: translateX(100rem);
    animation: slideIn .8s forwards;
}
nav > .container-fluid > .nav-animation > ul > .nav-item:nth-child(1){
    animation-delay: 0s;
}
nav > .container-fluid > .nav-animation > ul > .nav-item:nth-child(2){
    animation-delay: .1s;
}
nav > .container-fluid > .nav-animation > ul > .nav-item:nth-child(3){
    animation-delay: .2s;
}
nav > .container-fluid > .nav-animation > ul > .nav-item:nth-child(4){
    animation-delay: .3s;
}
nav > .container-fluid > .nav-animation > ul > .nav-item:nth-child(5){
    animation-delay: .4s;
}
.div-fade{
    animation-duration: 3s;
    animation-name: textfade;
}
@keyframes textfade{
    from{
      opacity: 0;
    }
    to{
      opacity: 1;
    }
}
@keyframes slideIn{
    from{
          
    }
    to{
        transform: translateX(0);
    }
}