.header__outer {
    padding: 18px 0;
    position: fixed;
    width: 100%;
    z-index: 20;
}

.header__outer:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.733);
    content: '';
    top: 0;
    left: 0;
    z-index: -1;
    border-bottom: solid 1px rgba(192, 192, 192, 0.223);
}

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

.header__block {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header__logo {
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Shadows Into Light Two', cursive;
    font-size: 30px;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__burger {
    display: none;
}

.header__button {
    zoom: 0.8;
}

.header__link {
    font-size: 18px;
}

.header__lang-outer {
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__lang-inner {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: black;
    border-radius: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header__lang-list {
    position: absolute;
    top: 0px;
    left: -2px;
    background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
    padding-top: 43px;
    border-radius: 40px;
    z-index: -1;
    padding-bottom: 3px;
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.4s;
}

.header__lang-list.active {
    opacity: 1;
    visibility: visible;
}

.header__lang-item {
    text-align: center;
    width: 40px;
    height: 30px;
}

@media(max-width: 800px) {
    .header__outer {
        position: relative;
    }
    .header__menu {
        position: absolute;
        content: '';
        width: 100%;
        left: 0;
        top: 75px;
        background: linear-gradient(269.18deg, #4924C2 -9.55%, #EB1A82 118.48%);
        flex-direction: column;
        gap: 13px;
        padding: 20px 0;
        transform: translateY(-600px);
        z-index: -50;
    }

    .header__menu.active {
        transform: translateY(0px);
        transition-duration: 0.5s;
    }

    .header__button {
        display: none;
    }

    .header__burger {
        display: block;
        margin-bottom: -5px;
    }

    .header__outer:before {
        background: black;
    }

    .header__block {
        gap: 10px;
    }
}