.header {
    position: fixed;
    width: 100vw;
    height: 7.4rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.1) 100%, rgba(0, 0, 0, 0.7) 0%);
    backdrop-filter: blur(1rem);
    z-index: 1000;
}

.header-left,
.header-center,
.header-right {
    height: 100%;
    padding: 1.25rem;
}

.header-left,
.header-right {
    width: 25%;
}

.header-center {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.nav-link {
    color: rgba(255, 255, 255, 1);
    font-family: "fys", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    width: 100%;
    height: 7.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-link {
    background: url("../assets/images/common/activityBg.svg") no-repeat center top;
    background-size: 100% 200%;
}


/* stylelint-disable-next-line selector-max-id */
#logo {
    height: 100%;
}