.lang_notification{

    display: flex;
    gap: 20px;

    img{
        width: 30px;
    }

    .lang_tag{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

}
.lang_switch img {
    width: 30px;
    border-radius: 50%;
    transition: .3s;
}

.lang_switch img:hover {
    transform: scale(1.1);
}
.lang_switch {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: .3s;
}

.lang_switch:hover {
    opacity: 0.8;
}