.header-top .menu{
    display: flex;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.header-top .menu a{
    padding-left: 10px;
    padding-right: 10px;
    text-decoration: none;

    color: var(--color-FFF);
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

ul.navmenu {
display: flex;
    list-style: none;
    padding-left: 0;
    max-width: 900px;
    width: 100%;
    column-gap: 35px;
    justify-content: end;
    margin-right: 35px;
    margin-bottom: 0;
}


/* Responsive css  */
@media(max-width: 991px){
    .header-top .menu {
        display: grid;
        row-gap: 10px;
        margin-top: 25px;
        padding-bottom: 25px;
    }
}