header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--color-secondary-100);
    transition: background-color 0.25s;
    z-index: 100;
}

.navbar__container--moved {
    background-color: var(--color-secondary-100);
}

.navbar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    height: 71px;
}

.navbar__logo-container {
    width: max-content;
    height: 48px;
    text-align: center;
}

.navbar__logo-container a {
    cursor: pointer;
    display: block;
}

.navbar__logo-button {
    display: inline-flex;
    height: 48px;
    width: 48px;
}

.navbar__logo-button path {
    transition: all 0.25s;
}

.navbar__logo-button:hover>:first-child>g>path {
    fill: var(--color-primary-500);
}

.navbar__logo-button:focus>:first-child>g>path {
    stroke: var(--color-primary-600);
    stroke-width: 2px;
}

.navbar__logo-button >:last-child {
    display: none;
}

@media screen and (min-width: 768px) {
    .navbar__content {
        height: 104px;
    }
}

@media screen and (min-width: 912px) and (orientation: landscape) {
    header {
        background-color: transparent;
    }

    .navbar__content {
        padding: 0 81px;
        height: 151px;
        gap: 10%;
    }
}

@media screen and (min-width: 1200px) and (orientation: landscape) {
    .navbar__content {
        padding: 0 83px;
        justify-content: space-between;
        gap: 150px;
    }

    .navbar__logo-button >:last-child {
        display: block;
    }

    .navbar__logo-button {
        width: 273px;
    }
}
