.header__nav{
    align-items: center;
    justify-content: space-between;
}

.languages {
    border-radius: 5px 5px 0 0;
    z-index: 5;
    color: #FFF;
    margin-left: 20px;
    transition: background-color 0.5s;
    position: relative;
}

.languages svg{
    width: 16px;
    margin-left: 3px;
    height: 16px;
}

.languages path{
    fill: white;
}

.languages .head {
    z-index: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    background: #dbae40;
    color: #fff;
}

.l-header{
    position: relative;
}

.languages.is-open {
    background-color: #dbae40;
}

.languages.is-open .dropdown{
    display: block;
}

.languages .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #dbae40;
    border-radius: 0 0 5px 5px;
    color: #fff;
}

.languages .dropdown a {
    display: block;
    padding: 5px 10px;
    color: inherit;
    text-decoration: none;
}

.header__top{
    position: relative;
}

@media(max-width: 750px) {
    .header__nav{
        display: flex;
        flex-direction: column;
        padding-bottom: 10px;
    }
    .languages{
        margin-left: 0;
        margin-top: 5px;
    }
}