.header {
    background-color: black;
}

.header__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
    height: 82px;
    position: relative;
}

.header__logo {
    display: flex;
    margin-right: 16px;
}

.header__navigation {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    color: rgb(255, 255, 255);
    /* margin-right: 20%; */
}

.header__navigation li:last-of-type {
    margin-right: 0px;
}

.header__navigation li {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    
    line-height: 34px;
    margin-right: 24px;
}

.header__navigation li:hover {
    color: #cacccd;
}

@media only screen and (max-width: 998px) {
    .header__navigation {
        display: none;
    }
}