.nav-icon-5 {
    width: 35px;
    height: 25px;
    margin: 0;
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.nav-icon-5 span{
  background-color:var( --e-global-color-182236c );
  position: absolute;
  border-radius: 0px;
  transition: .3s cubic-bezier(.8, .5, .2, 1.4);
  width:100%;
  height: 2px;
  transition-duration: 500ms
}
.nav-icon-5 span:nth-child(1){
  top:0px;
  left: 0px;
}
.nav-icon-5 span:nth-child(2) {
    top: 11px;
    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;
}

.hero iframe {
opacity: 1;
animation-name: fadeInOpacity2;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-duration: 1.75s;
}

@Keyframes fadeInOpacity2 {
0% {
opacity: 0;
}
80% { opacity:0;
}
100% {
opacity: 1;
}
}


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