* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.container {
    max-width: 1300px;
    min-height: 100px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(78, 72, 72);
}

.header-menu_list_items {
    list-style-type: none;
}

.header-menu_list {
    display: flex;
    gap: 30px;
}

.header-link {
    color: black;
}

.header-logo {
    width: 50px;
    height: 50px;
    border: 1px solid black;
    background-color: black;
    cursor: pointer;
}

.number-item {
    color: black;
    text-decoration: none;
}