.header {
    max-width: 1600px;
    height: 80px;
    padding: 0 220px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 63px;
    background-color: var(--black);
}

.logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 82px;
    height: 52px;
    border: 1px solid var(--white);
    border-radius: 2px;
}

.logo__img {
    position: absolute;
    top: 21px;
    left: 9px;
}

.logo__link {
    text-decoration: none;
}

.logo__text {
    padding: 4px 5px;
    font-size: 19px;
    text-align: center;
    line-height: 120%;
    font-weight: normal;
    color: var(--white);
}

.logo:hover .logo__text {
    cursor: pointer;
    color: var(--orange);
}

.logo:hover {
    border: 1px solid var(--orange);
}

.logo:hover .logo__img {
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.header-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header-nav__links-wrap {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    gap: 58px;

}

.header-nav__link {
    text-decoration: none;
    color: var(--white);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.header-nav__link:hover {
    cursor: pointer;
    color: var(--orange);
}

.link__default {
    color: var(--orange);
    pointer-events: none;
}

.burger-menu__wrap {
    display: none;
}