*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'gilroyregular';
    font-size: 18px;
}

.navbar-container{
    background-color: #111;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.navbar-sub-container{
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1800px;
    margin: auto;
    width: 100%;
    padding: 0 20px;
}

.navbar-logo-img-container{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.navbar-logo-img{
    width: auto;
    height: 50px;
}

.menu-bar-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    display: none;
}

.menu-icon{
    width: 34px;
    height: 34px;
    background-color: #454545;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 5px;
    padding: 5px;
}

.menu-lines{
    display: block;
    background-color: #B3D92B;
    width: 20px;
    height: 3px;
    border-radius: 5px;
}

.navbar-ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-link{
    text-decoration: none;
    color: #dcdcdc;
    padding: 10px 20px;
    width: 100%;
    border-radius: 5px;
}

.active{
    color: #fff;
    font-family: 'gilroymedium';
}

.navbar-li:hover .navbar-link{
    background-color: #B3D92B;
    color: #111;
}