.header {
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 91.5rem;
    padding: 1rem;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.header__parts {
    display: flex;
    align-items: center;
    gap: 9rem;
    position: relative;
}

.header__logo {
    width: 6.75rem;
    display: flex;
    align-items: center;
}

.header__logo img {
    width: 100%;
}

.header__menu {
    align-self: stretch;
    display: flex;
    font-size: 0.875rem;
    padding: 0.875rem 1rem;
    align-items: center;
    border-radius: 0.5rem;
}

.header__parts--buttons {
    flex: 0 0 auto;
    font-size: 0.875rem;
    font-weight: 500;
    align-self: stretch;
    gap: 1.875rem;
    display: flex;
    align-items: center;
}

.header__separator {
    width: 1px;
    height: 100%;
    max-height: 2rem;
    background-color: #fff;
}

.header__button-items {
    display: flex;
    gap: .5rem;
}

.header__mobile-menu-trigger {
    display: none;
}

.nav--navbar {
    display: flex;
    gap: 2.875rem;
    padding: 0;
    list-style: none;
    margin: 0;
}

.nav__item {
    text-decoration: none;
    color: #FFFFFF;
}

.mobile-menu {
    position: fixed;
    top: 0;
    height: 100vh;
    left: 0;
    background-color: #000C13;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 100%;
    display: flex;
    flex-flow: column;
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    padding: 1em 0.5rem;
    align-items: center;
}

.mobile-menu__navigation {
    text-transform: uppercase;
    margin: 0;
    padding: 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.mobile-menu__body {
    padding: 0 1rem;
    display: flex;
    flex-flow: column;
    gap: 1rem;
}

.mobile-menu__body .button {
    width: 100%;
}

.mobile-menu__items {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    width: 100%;
    list-style: none;
    gap: 0.5rem;
    height: 100%;
}

.mobile-menu__item {
    display: block;
    padding: 0.75rem 1rem;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #011C2D;
    border-radius: 0.5rem;
}

.mobile-menu__item:hover {
    background-color: #2A3642;
}

.mobile-menu__close {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    text-align: left;
}

@media (max-width: 992px) {
    .header__menu {
        display: none;
    }

    .header__button-items .button--primary:not(.header__mobile-menu-trigger) {
        display: none;
    }

    .header__mobile-menu-trigger {
        display: block;
    }
}

@media (max-width: 576px) {
    .header__parts--buttons {
        gap: 1rem;
    }
}