body {
    font-family: "Inter", sans-serif;
    margin: 0;
    background: #0e1823;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

img {
    display: block;
    height: auto;
}

.header-page {
    background: #fbfbfb;
    border: 1px solid #fbfbfb;
    border-radius: 8px;
    width: 1240px;
    margin: 0 auto;
    padding: 4px 30px;
}

.header-page .container {
    display: flex;
    align-items: center;
}

.header-page-navigation {
    display: flex;
    align-items: center;
    gap: 375px;
}

.header-page-logo {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.03em;
    color: #1b414b;
}

.header-page-nav-list {
    display: flex;
    gap: 4px;
}

.nav-list-item {}

.nav-list-link {
    background: rgba(27, 65, 75, 0.5);
    border-radius: 8px;
    padding: 15px 25px 15px 24px;
    display: block;
    font-weight: 400;
    font-size: 9px;
    /* line-height: 12px; */
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
    color: #fbfbfb;
}

.nav-list-link:hover,
.nav-list-link:focus {
    background: #1b414b;
}

.current {}

.header-page-social-list {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.social-list-item {
    width: 24px;
    height: 24px;
}

.social-link {
    background-color: #1b414b;
    color: #fbfbfb;
    width: 100%;
    height: 100%;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.social-link:hover,
.social-link:focus {
    background: rgba(27, 65, 75, 0.5);
}