.btl-header {
    position: relative;
    z-index: 999;
}
.lang-dropdown {
    position: relative;
    cursor: pointer;
    font-family: "Teko", Sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    padding: 15px 0;
}

.lang-dropdown .current-lang {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    gap: 5px;
    color: var(--text-color);
    font-size: 20px;
    font-style: normal;
    line-height: 20px;
    background-color: transparent;

}

.lang-dropdown .current-lang img {
    margin-bottom: 4px;
}

.lang-dropdown .lang-list {
    display: none;
    position: absolute;
    background: #fff;
    padding: 16px;
    background: #fff;
    width: 182px;
    box-shadow: 0px 4px 16px 0px #0000001A;
    border-radius: 2px;
    list-style: none;
    top: 100%;
    color: var(--text-color);
}

.lang-list li:not(:last-child) {
    border-bottom: 1px solid #EEEEEE;
}

.lang-list li {
    letter-spacing: 0.02;
    font-size: 20px;
}


.lang-list li a {
    color: var(--text-color);
}
.lang-list li a:hover {
    color: var(--main-color);
}
.lang-dropdown:hover .lang-list {
    display: block;
}


@media screen and (min-width: 768px) {
    .btl-header-transparent .btl-header:not(.sticky) .current-lang {
        color: #FFF;
    }
}