*{
    text-decoration: none;
    list-style-type: none;
}


#main-header{
    width: 100%;
    position: fixed;
    transition: top 0.3s ease-in-out;
}



.main-header{
    z-index: 2;
    display: flex;
    justify-content: space-between;
    background: #000000;
    border-bottom: 10px solid  #00E0FF;
    padding: 10px 20px;
    
}

#menu-trigger{
    display: none;
}

.menu-hidde{
    display: none;
}

@media (min-width: 320px) and (max-width: 1024px){
    .main-header .nav-bar{
        display: none;
    }

    #menu-trigger {
        display: block;
        width: 30px;
        height: 20px;
        position: absolute;
        top: 30px;
        margin-right: 22px;
        right: 35px;
        cursor: pointer;
        z-index: 5;
    }
         
    .menu-trigger div {
        width: 30px;
        height: 4px;
        background: rgb(51, 51, 51) none repeat scroll 0% 0%;
        margin-top: 3px;
    }
    
    .menu-hidde {
        display: block;
        background: black none repeat scroll 0% 0%;
        width: 100%;
        height: 500px;
        position: fixed;
        box-shadow: 1px 2px 3px #DDD;
        right: -100%;
        transition: right .5s;
        top: 0px;
        display: flex;
    }
    
         
    .menu-hidde li {
        color: #fff;
        font-size: 20px;
        padding: 18px;
        cursor: pointer;
        padding-bottom: 50px;
        display: flex;
        justify-content: space-between;
    }
         
    .menu-hidde ul {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}