header {
    position: fixed;
    width: 100%;
    z-index: 20;
}

.header__notice{
    color: var(--color-black);
    padding: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-size: .85rem;
    background-color: #CDBCAD;
}

.nav--desktop,
.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    background-color: var(--color-black);
}

.menu-side{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu__header {
    z-index: 10;
    position: relative;
}

.menu-control__image {
    width: 1.5rem;
    height: 1.5rem;
    background-size: cover;
    background-repeat: no-repeat;
}

.menu-control__image--open {
    background-image: url("../icons/hamburger.svg");
}

.menu-control__image--close {
    background-image: url('../icons/close.svg');
}

.sub-menu {
    scrollbar-width: none;
    overflow-x: auto;
}

.menu-list {
    list-style: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: var(--space-sml);
}

.sub-menu-list {
    flex-direction: row;
    justify-content: start;
}

.sub-menu-list--short {
    justify-content: center;
}

.sub-menu-list__item:last-child {
    padding-right: var(--section-padding-x);
}
.sub-menu-list__item.is-active{
    font-weight: 700;
}

.lang-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    flex-direction: row;
}

.menu-list__item a {
    color: var(--color-white);
    text-transform: uppercase;
    font-size: var(--font-size-sml);
}

.sub-menu-list__item a {
    color: var(--color-black);
}

.nav--desktop {
    display: none;
}

.menu-control {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    cursor: pointer;
}

.menu-control__description {
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 700;
}

.mobile-menu__items {
    background-color: var(--color-black);
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    transition: top 0.3s;
    z-index: 0;
    padding-bottom: var(--space-inner-content);
}

.mobile-menu__items.is-visible {
    top: 4.6rem;
}

.mobile-menu-list {
    padding-bottom: var(--space-inner-content);
    border-bottom: 1px solid var(--color-grey-4);
}

.lang-switcher--mobile {
    padding-top: var(--space-inner-content);
    padding-bottom: var(--space-inner-content);
}

@media (min-width:36em) {
    .header__notice{
        font-size: 1rem;
    }
}

@media (min-width:48em) {
}

@media (min-width:62em) {
    .nav--desktop {
        display: flex;
        align-items: center;
    }

    .nav--mobile {
        display: none;
    }

    .menu-list {
        flex-direction: row;
        gap: var(--space-normal);
    }

    .sub-menu-list {
        width: 62.5rem;
    }

}

@media (min-width:75em) {
    .sub-menu-list {
        justify-content: center;
        width: var(--page-width);
    }
}