html {
    font-family: sans-serif;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.container {
    max-width: 1320px;
    padding: 0 15px;
    margin: 0 auto;
}

.header {
}

.container_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 70px;
}

.header_icon {
    min-width: 40px;
    min-height: 40px;
    background: #252424;
}

.header_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.header_tel {
    text-decoration: none;
    color: #252424;
}

hr {
    border-color: #e9e9f1;
}