header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 80%, transparent 100%);
}
header .hd-menu a {
    position: relative;
    color: #c1c0c0;
    text-decoration: none;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    white-space: nowrap;
    margin: 0 8px;
}
header .hd-menu a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    background-color: #a28c59;
    transition: transform 0.3s;
}
header .hd-menu a:hover {
    color: #fff;
}
header .hd-menu a:hover:after {
    transform: scaleX(1);
}
header ul li {
    list-style: none;
}
header ul#menu-primary-navigation {
    display: flex;
}
header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    height: 122px;
    transition: 0.3s ease-in-out;
}
@media (max-width: 992px) {
    header.sticky {
        position: absolute;
    }
}
header.sticky .align-these-items {
    align-items: start;
}
header.sticky:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    background: black;
    transition: 0.3s;
}
header.sticky.sticky-backfade:before {
    opacity: 0.7;
}
header.sticky.sticky-backfade {
    height: 122px;
}
header.sticky.sticky-backfade .align-these-items {
    align-items: center !important;
}