header {
    width: 100%;
    background: var(--color-3);
    height: 62px;
    position: fixed;
    top: 0;
    padding: 0 15px;
}

.header_wrapper {
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.header__nav_wrapper {
    transition: var(--base-transition);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item {
    a {
        display: flex;
        align-items: center;

        img {
            object-fit: contain;
            width: 20px;
            height: 25px;
            filter: brightness(0) saturate(100%) invert(22%) sepia(86%) saturate(4948%) hue-rotate(317deg) brightness(97%) contrast(89%);
        }
    }
}

.header__logo {
    width: 160px;
    height: 24px;
    display: block;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header__mobile_actions {
    display: none;
}

.burger {
    display: none;
    width: 40px;
    height: 30px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;

    span {
        width: 100%;
        height: 4px;
        border-radius: 6px;
        background: white;
    }
}

.header__nav {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;

    li {
        color: white;
        font-size: 13px;
        font-style: italic;
        text-transform: uppercase;
        font-weight: 700;
        padding: 0 10px;

    }


}

.header__nav_wrapper .header__logo {
    display: none;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 20px
}



@media (max-width: 900px){

    .header__nav {
        a {
            font-size: 16px;
        }

        li {
            padding: 0;
        }
    }

    .burger {
        display: flex;
    }

    .header__actions a:not(.mob-app):last-child {
        display: none;
    }

    .header__nav_wrapper .header__logo {
        display: block;
        margin-bottom: 30px;
    }

    .header__mobile_actions {
        margin-top: 40px;
        display: flex;
        flex-direction: column;

        .header__actions {
            flex-direction: column;
            align-items: flex-start;
        }

        .mob-app {
            display: block;
            img {
                height: 70px;
            }
        }
    }
}
