

.header__outer {
    background: rgb(0 0 0);
    height: 80px;
    display: block;
    position: relative;
    z-index: 1;
}

.header_mob {
    display: none;
}

.header__outer:before {
    position: absolute;
    content: '';
    left: 50%;
    top: 0px;
    z-index: -1;
    width: 542px;
    height: 158px;
    margin-top: -1px;
    transform: translateX(-50%);
    background: url(../img/header-lower-bg.png) no-repeat;
    background-position: center center;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.header__menu {
    display: flex;
    justify-content: space-between;
}

.header__logo {
    width: 100px;
    height: auto;
}

.header__logo-image {
    width: 100%;
}

.header__menu-item {
    margin: 0 20px;
}

.header__menu-link {
    font-weight: 500;
    font-size: 17px;
    color: white;
    text-decoration: none;
}

.header__header-mobile {
    display: none;
}

.header__open-icon {
    display: none;
}

.header__buttons {
    display: flex;
}

.header__btn {
    margin-right: 10px;
}


.header__lang {
    cursor: pointer;
    position: relative;
    font-weight: 900;
}

.header__lang-list {
    position: absolute;
    content: "";
    top: 44px;
    left: -60px;
    font-weight: 900;
    background: rgba(0, 0, 0, 0.599);
    padding: 10px;
    border-radius: 7px;
    width: fit-content;
    transition-duration: 0.2s;
    opacity: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 10px;
}

.header__lang-image {
    text-transform: uppercase;
}

.header__lang-list-item,
.header__lang-image {
    background: #ffff9b;
    color: black;
    border-radius: 10%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: 0.2s;
}

.header__lang-list-item:hover,
.header__lang-image:hover {
    background: black;
    color: #ffff9b;
    font-weight: 700;
}

.header__lang-link {
    margin: 10px 0;
    color: white;
}

.header__lang-list_active {
    z-index: 10;
    opacity: 1;
}

@media (max-width: 1000px) {

    .header_mob {
        display: none;
        margin-top: -60px;
    }

    .header__outer:before {
        display: none;
    }

    .header_mob.header_active {
        display: block;
    }

    .header__outer {
        height: unset;
        min-height: 60px;
    }


    .header__lang {
        display: none;
    }

    .header__lang_mob {
        display: block;
    }

    .header__menu {
        display: none;
        margin: auto;
    }

    .header_active .header__menu {
        display: block;
    }

    .header__menu-item {
        margin: 20px 0;
        text-align: center;
    }

    .header__header svg {
        cursor: pointer;
    }

    .header__open-icon {
        display: block;
        fill: white;
    }

    .header__header-mobile {
        position: relative;
        background: rgb(100 86 209);
        margin-top: -100px;
    }

    .header__header-mobile .header__header-inner {
        flex-direction: column;
    }

    .header__menu svg {
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
        fill: white;
    }

    .header__lang-link {
        margin-right: 10px;
    }

    .header__lang-list {
        position: relative;
        content: "";
        top: 0px;
        left: -10px;
        background: transparent;
        border-radius: 5px;
        padding: 10px;
        width: unset;
        transition-duration: 0.4s;
        opacity: 1;
        display: flex;
    }

    .header_mob .header__lang-list {
        background: transparent;
    }

    .header_mob .header__inner {
        display: block;
    }

    .header__lang-list {
        justify-content: flex-end;
        gap: 10px;
    }

    .header__lang-link {
        margin-right: 0;
    }
}


