.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0 ;
}

.header__logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.header__nav-bar {
    padding: 8px 0;
    background: #87C932;
}

.header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.header__menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.header__menu li {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
    color: #474747;
    text-align: center;
}

.header__menu li:not(.current_page_item.page_item) a:hover {
    color: #242424;
}

.header__menu li.current_page_item.page_item {
    color: white;
}