a.mmdonor {
    display: block;
    position: absolute;
    bottom: 0;
}
.nav-icon-5 {
    width: 45px;
    height: 30px;
    margin: 0;
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.nav-icon-5 span{
  background-color:#07263A;
  position: absolute;
  border-radius: 2px;
  transition: .3s cubic-bezier(.8, .5, .2, 1.4);
  width:100%;
  height: 4px;
  transition-duration: 500ms
}
.nav-icon-5 span:nth-child(1){
  top:0px;
  left: 0px;
}
.nav-icon-5 span:nth-child(2) {
    top: 13px;
    left: 0px;
    opacity: 1;
}
.nav-icon-5 span:nth-child(3){
  bottom:0px;
  left: 0px;
}
/*
.nav-icon-5:not(.open):hover span:nth-child(1){
  transform: rotate(-3deg) scaleY(1.1);
}
.nav-icon-5:not(.open):hover span:nth-child(2){
  transform: rotate(3deg) scaleY(1.1);
}
.nav-icon-5:not(.open):hover span:nth-child(3){
  transform: rotate(-4deg) scaleY(1.1);
}
*/
.menu-open .nav-icon-5 span:nth-child(1){
  transform: rotate(45deg);
  top: 13px;
}
.menu-open .nav-icon-5 span:nth-child(2){
  opacity:0;
}
.menu-open .nav-icon-5 span:nth-child(3){
  transform: rotate(-45deg);
  top: 13px;
}




@keyframes youtubeAnim{
  0%,100%{
    color:#c9110f;
  }
  50%{
    color:#ff0000;
  }
}