a.nav-custom{
  color:white;
}
a.nav-custom:hover{
  color:yellow;
}

nav.navbar{
  background-color: #171717;
}

.navbar-brand img.custom{
  height: 50px;
}

.navbar{
  min-height: 50px;
}

@media only screen and (min-width: 992px){
  .navbar{
    height: 50px;
  }
  
  .navbar-brand img.custom{
    height: 150%;
    position: absolute;
    top:10%;
  }

  .animated-brand{
    height: 20vh;
    min-height: 50px;
    max-height: 100px;
    /*background: linear-gradient(to left, rgba(253, 126, 20, 1),  rgba(253, 126, 20, .01));*/
  }

  .anim-navbar-home {
    animation: anim-navbar-home 1.5s forwards normal;
  }
  @keyframes anim-navbar-home {
    100% {
        height: 50px;
    }
  }

  .anim-navbar-home img{
    animation: anim-navbar-img 1.5s forwards normal;
  }
  @keyframes anim-navbar-img {
    100% {
        width: auto;
        height: 150%;
        position: absolute;
    }
  }
  
  .anim-navbar {
    animation: anim-navbar 1.5s forwards normal;
  }
  @keyframes anim-navbar {
    0% {
        height: 25vh;
    }
    100% {
        height: 50px;
    }
  }

}