.navbar{
    width:100%;
    position: fixed;
    color:white;
    background-color: black;
    z-index: 100;
    height:80px;
}

.navbar ul{
    margin:0;
}

.navbarlogo{
    width:auto;
    height:80px;
    position:absolute;
    top:0;
    left:0;
}

.navbarlogo img{
    width:auto;
    height:100%;
}

.menu{
    width:50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position:absolute;
    top:0;
    right:0;
}

.menu li{
    font-size: 15px;
    height:80px;
    line-height: 80px;
    list-style-type:none;
    cursor: pointer;
    color:white;
}

.hambugermenuicon{
    width:30px;
    height:24px;
    position: fixed;
    top:18px;
    right:18px;
    z-index: 100;
    display: none;
}

.bar1{
    width:100%;
    height:2px;
    background-color: white;
    position: absolute;
    top:0px;
    transition: 0.3s;
}

.bar2{
    width:100%;
    height:2px;
    background-color: white;
    position: absolute;
    top:12px;
    transition: 0.3s;
}

.bar3{
    width:100%;
    height:2px;
    background-color: white;
    position: absolute;
    top:24px;
    transition: 0.3s;
}

.mobilemenu{
    display: none;
    position: fixed;
    z-index: 99;
    top:60px;
    height:0px;
    width:100%;
    overflow: hidden;
    color:white;
    background-color: #29292c;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: 0.5s;
}

.mobilemenu::-webkit-scrollbar {
    display: none;
}

.mobilemenu ul{
    padding-inline-start: 0px;
}


.mobilemenu li{
    font-size: 13px;
    text-align: center;
    height:80px;
    line-height: 80px;
    list-style-type:none;
    cursor: pointer;
    color:white;
}

a:link {
    text-decoration: none;
    color:inherit;
}

@media only screen and (max-width: 1380px){
    .menu li{
        font-size: 12px;
    }
}

@media only screen and (max-width: 1124px){
    .navbar{
        width:100%;
        position: fixed;
        color:white;
        background-color: black;
        z-index: 100;
        height:60px;
    }
    
    .navbarlogo{
        width:auto;
        height:60px;
        position:absolute;
        top:0;
        left:0;
    }

    .navbar .menu{
        display: none;
    }

    .hambugermenuicon{
        display: block;
    }

    .mobilemenu{
        display: block;
    }
}
