 .range-popup {
    position: absolute;
    background: #1a1a3a;
    color: white;
    padding: 20px;
    border-radius: 4px;
    min-width: 300px;
    z-index: 1000;
  }
  .range-popup.hidden { display: none; }
  .close-popup { position: absolute; top: 10px; right: 10px; color: white; background: none; border: none; font-size: 20px; cursor: pointer; }
  .slider-wrapper { margin: 30px 0; }
  .labels { display: flex; justify-content: space-between; font-size: 14px; }
  .actions { display: flex; justify-content: flex-end; gap: 10px; }
  .apply-range, .clear-range { background: none; border: 1px solid white; color: white; padding: 6px 12px; cursor: pointer; }
.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;
  }
}