.header__tabs {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
    gap: 15px;
}

.header__tabs .button {
    text-transform: uppercase;
    font-size: 18px;
    padding: 5px 10px;
    border-bottom: 2px solid white;
}

.header__tabs .button:hover {
    background: #f6f6f6;
}

.header__tabs .tab_active{
    border-bottom: 2px solid black;
}