.burvix-lang-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    font-family: inherit;
    cursor: pointer;
    z-index: 999;
    margin-left: 20px;
}

.burvix-current-lang {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
	font-size: 15px;
}

.burvix-current-lang:hover {
    color: #ffc107;
}

.arrow-down {
    font-size: 10px;
    margin-left: 2px;
}

.burvix-dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #000;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.burvix-lang-wrapper:hover .burvix-dropdown-list {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 30px;
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.2s;
	border-radius: 4px;
}

.dropdown-item:hover {
    background-color: #222;
    color: #ffc107;
}

.dropdown-item.active {
    color: #ffc107;
    font-weight: bold;
    pointer-events: none;
}

.burvix-lang-wrapper img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    display: block;
}

.header-logo-img a img{
	width: 230px !important;
}

@media (max-width: 768px){
	.header-logo-img a img{
		width: 170px !important;
	}
}
