.header-content {
    position: fixed;
    z-index: 3;
    transition: 0.3s ease;
}
.header-bar {
    height: 4rem;
    justify-content: space-around;   
}

.header-logo {
    height: 65%;
    margin: calc(4rem * 0.35 / 2) 0;
}

.header-logo > img {
    filter: drop-shadow(0px 4px 4px rgba(0,0, 0, 50%)) brightness(5);
}

.header-menu a {
    text-decoration: none;
    color: #fff;
    text-shadow: 0px 4px 4px rgba(0,0, 0, 50%);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 4rem;
    padding: 1.5rem 1rem;
    transition: 0.25s ease;
}

.header-menu__list>.header-menu__item {
    width: 10rem;
    text-align: center;
    overflow: hidden;
}

.header-menu__item:hover > a {
    color: #e8b968;
}

.active-menu-list {
    height: 0;
    transition: 0.5s ease;
    margin-top: 3px;
}

.active-menu-list li {
    background-color: rgba(21, 21, 21, 0.25);
}

.active-menu-label:hover > .active-menu-list {
    height: 25rem;
}

.header-line {
    height: 3px;
    border-radius: 3px;
    background-color: #AFAFAF;
    width: 80%;
    margin: auto;
    transition: 0.3s ease;
}

.black-header {
    background-color: rgba(21, 21, 21, 0.95);
}

.black-header > .header-line {
    width: 100%;
}

.black-header .active-menu-list li {
    background-color: rgba(21, 21, 21, 0.95);
}