.header-wrap {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header {
    background-color: #1a1015;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    height: 5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 7rem;

    @media only screen and (max-width: 1200px) {
        height: 4.5rem;
        padding: 0 1.5rem;
    }
}

.header-logo__container {
    flex-shrink: 0;
}

.header-logo__link {
    text-decoration: none;
    display: block;
}

.header-logo-small {
    font-family: "Cookie";
    font-size: 2rem;
    font-weight: bold;
    color: white;
    color: var(--font-color-light);
    padding-bottom: 0.7rem;
    line-height: 0.5;
}

.header-logo-big {
    font-family: "Roboto";
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 0;
    color: #fff;
}

.big-a {
    color: #c4b5fd;
    font-size: 5rem;
    font-family: Cookie;
    text-decoration: none;
}

.header-navigation {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;

    @media only screen and (max-width: 1200px) {
        display: none;
    }
}

.header-navigation li a {
    display: block;
    padding: 0 12px;
    font-family: "Roboto", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0.65;
}

.header-navigation li a.danger {
    color: var(--font-warning);
    font-size: 15px;
}

.header-navigation li a:hover {
    opacity: 1;
}

.header-navigation li a.is-active {
    opacity: 1;
    color: #c4b5fd;
}

.header-navigation-mobile {
    display: none;

    @media only screen and (max-width: 1200px) {
        display: block;
        margin-left: auto;
    }
}

.header-navigation-mobile__icon {
    width: 28px;
    height: auto;
}

.header-navigation-mobile__list {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.header-navigation-mobile__list li a {
    font-family: "Crimson Text";
    font-size: 2rem;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.header-navigation-mobile__list li {
    margin-bottom: 1rem;
}

.header-navigation-mobile__list li a.is-active {
    color: #c4b5fd;
}
