.header {
    width: 100%;
    height: 80px;
    background-color: #000000;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 22px 25px;
    box-sizing: border-box;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.header__logo-mark {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    border: 3px solid #fff;
    border-radius: 50%;
}

.header__logo-mark::before {
    position: absolute;
    top: 7px;
    left: 14px;
    width: 3px;
    height: 10px;
    background-color: #fff;
    border-radius: 2px;
    content: "";
}

.header__logo-mark::after {
    position: absolute;
    top: 15px;
    left: 14px;
    width: 9px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    content: "";
}

.header__logo-text {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav a,
.header__nav button {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.header__nav form {
    margin: 0;
}

.header__nav button {
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.header__nav a:hover,
.header__nav button:hover {
    opacity: 0.7;
}