.header{
    position: relative;
    display: flex;
    padding-left: 50px;
    height: 50px;
    background-color: #f1ac20;
    justify-content: space-between;
    align-items: center;
}
.menu-wrapper{
    padding-right: 15%;
}
.brand-box{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .logo{
    width: 32px;
    height: 32px;
}
.header .brand-name{
    margin: 0px 0px 0px 10px;
}

.header .menu-icon{
    width: 25px;
    height: 25px;
    cursor: pointer;
    margin-right: 30px;
    display: none;
}
.navmenu{
    list-style: none;
    box-sizing: border-box;
    display: flex;
    gap: 30px;
}
.navmenu .menu-item{
    position: relative;
    display: flex;
    flex-direction: row;
    text-decoration: none;
    align-items: center;
    color: #000;
    height: 20px;
    gap: 15px;
    box-sizing: border-box;
}

.navmenu .menu-item::after{
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    left: 0px;
    background-color: #293855;
    bottom: -7px;
    transition: all .2s ease-in-out;
}

.navmenu .active::after{
    width: 100%;
}

.navmenu .menu-item:hover::after{
    width: 100%;
}

.header .navmenu a img{
    width: 15px;
    height: 15px;
}