body{
    &.active-nav{
        height: 100vh;
        overflow: hidden;
    }
}
header{
    &.active-nav{
        position: sticky;
        top: 0;
        left: 0;
        z-index: 3;
    }
    ul{
        &.pri-nav{
            flex-direction: column;
            background-color: #fff;
            position: fixed;
            left: -100%;
            top: 93px;
            opacity: 0;
            z-index: 2;
            height: 100vh;
            justify-content: unset;
            padding: 32px 0 0 16px;
            transition: all .3s ease;

            &.active{
                left: 0;
                opacity: 1;
            }


            li{
                a{
                    height: 44px;
                    margin-bottom: 20px;
                }
            }
        }

        &.sec-nav{
            position: fixed;
            left: -100%;
            top: 445px;
            z-index: 3;
            opacity: 0;
            transition: all .3s ease-out;

            &.active{
                left: 0;
                opacity: 1;
            }
        }

    }
    #menuToggleBtn{
        display: inline-block;
        font-size: 40px;
        transition: all .2s ease-out;

        .display-none{
            display: none;
        }

        &:hover{
            color: #fad03b;
        }
    }
}