@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#logo{
    height: 50px;
   
}
.li1 a{
    color: rgb(255, 225, 1);
}
nav {
    display: flex;
    height: 80px;
    width: 100%;
   
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px 0 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}



nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    z-index: 3;
}

nav ul li  {
    margin: 0 5px;
    
}

nav ul li a {
    color: blue;
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    padding: 8px 15px;
  
    letter-spacing: 1px;
    transition: all 0.3s ease;
    word-spacing: 0px;
}

nav ul li a:hover{
    
    text-shadow: 0 0 5px #fff700, 0 0 10px #078aee, 0 0 15px #0073e6, 0 0 20px #06ffd5, 0 0 25px #0073e6, 0 0 30px #01d5ff, 0 0 35px #00d5ff;
}

nav .menu-btn i {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

input[type="checkbox"] {
    display: none;
}

@media (max-width: 1000px) {
    nav {
        padding: 0 40px 0 50px;
    }
}

@media (max-width: 920px) {
    nav .menu-btn i {
        display: block;
    }

    #click:checked~.menu-btn i:before {
        content: "\f00d";
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        background: #111;
        height: 100vh;
        width: 100vw;
        text-align: center;
        display: block;
        transition: all 0.3s ease;
        z-index: 2;
    }

    #click:checked~ul {
        left: 0;
    }

    nav ul li {
        width: 100%;
        margin: 40px 0;
    }

    nav ul li a {
        width: 100%;
        margin-left: -100%;
        display: block;
        font-size: 20px;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }


   

    #click:checked~ul li a {
        margin-left: 0px;
    }

    nav ul li a.active,
    nav ul li a:hover {
        background: none;
        color: cyan;
    }
}

/* ----------setting media query for mobile--------------- */
@media only screen and (max-width:480px){
    nav .menu-btn i {
        display: block;
    }

    #click:checked~.menu-btn i:before {
        content: "\f00d";
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        background: #111;
        height: 100vh;
        width: 50vw;
        text-align: center;
        display: block;
        transition: all 0.3s ease;
        z-index: 3;
    }

    #click:checked~ul {
        left: 0;
    }

    nav ul li {
        width: 50%;
        margin: 40px 0;
    }
  

    nav ul li a {
        width: 50%;
        margin-left: -100%;
        display: block;
        font-size: 20px;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }


   

    #click:checked~ul li a {
        margin-left: 0px;
    }

    nav ul li a.active,
    nav ul li a:hover {
        background: none;
        color: cyan;
    }

}