header {
    position: fixed;
    width: 100%;
    height: 5.7rem;
    max-width: 74rem;
    margin: 0 auto;
    top: 0;
    z-index: 10;
    background: #212121;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 10.7rem;
    display: inline-flex
}
.logo {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 7rem;
    height: auto;
}
#category {
    width: 3.5rem;
    height: 2.1rem;
    opacity: 0.60;
    padding: 0 0 1rem 1rem;
    cursor: pointer;
}
@media (min-width: 1024px) {
    header {
        position: absolute;
        top: 0;
    }
    .logo {
        width: 8.3rem;
        height: auto;
    }
    #category {
        display: none;
    }
}
