.burger {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    min-width: 808px;
    background-color: white;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
    z-index: 220;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins';
    transform: translateX(100%);
}

.burger--visible {
    transform: translateX(0);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
}

.burger__open {
    display: none;
    height: 48px;
    width: 48px;
    position: relative;
}

.burger__open::before,
.burger__open::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    background-color: white;
    border: 1px solid white;
    border-radius: 2px;
}

.burger__open::before {
    top: 35%;
}

.burger__open::after {
    bottom: 35%;
}

.burger__close {
    width: 24px;
    height: 24px;
}

.burger__head {
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: right;
}

.burger__items {
    padding: 40px 24px;
}

.burger__items li {
    margin-bottom: 16px;
    position: relative
}

.burger__items li:last-child {
    margin: 0;
}

.burger__items a::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 24px;
    background-color: #ccc;
    bottom: 0;
    left: 0;
}

.burger__items a.active::after {
    background-color: #222;
}

.burger__media {
    padding: 16px;
}

.burger__social {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.burger__social .icon {
    width: 24px;
}

.burger__language {
    display: flex;
    gap: 16px;
    align-items: center;
}

.burger__language img {
    width: 20px;
    height: 20px;
    filter: brightness(0)
}

.burger__language a {
    color: black;
    font-weight: 400;
}

.burger__language a.active,
.burger__language span.active {
    position: relative;
}

.burger__language a.active::after,
.burger__language span.active::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background-color: #222;
    bottom: 0;
    left: 0;
}

.burger__language span {
    color: black;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .burger {
        min-width: 100%;
        font-size: 20px;
    }

    .burger__open {
        display: block;
    }

    .burger__head {
        border: unset;
        width: max-content;
        margin-left: auto;
        margin-top: 30px;
        margin-right: 20px;
        background-color: #727176;
        padding: 7px 10px;
        border-radius: 6px;
    }

    .burger__items li {
        width: max-content;
    }

    .burger__items a::after {
        width: 100%;
    }

    .burger__head img {
        filter: brightness(0) saturate(100%) invert(100%) sepia(56%) saturate(645%) hue-rotate(190deg) brightness(114%) contrast(100%);
        width: 16px;
    }

    .burger__media {
        padding-inline: 24px;
    }

    .burger__language {
        padding-inline: 4px;
        gap: 20px;
    }
}