.form-messages {
    display: none;
}
.form-messages.error {
    display: block;
    color: red;
}

.header{
    position: relative;
}

.languages {
    border-radius: 5px 5px 0 0;
    position: absolute;
    right: 10%;
    z-index: 5;
    color: #FFF;
    top: 48%;
    transform: translateY(-50%);
    transition: background-color 0.5s;
}

.languages svg{
    width: 16px;
    margin-left: 3px;
    height: 16px;
}

.languages path{
    fill: white;
}

.languages .head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    background: #78c300;
    color: #fff;
}

.l-header{
    position: relative;
}

.languages.is-open {
    background-color: #78c300;
}

.languages.is-open .dropdown{
    display: block;
}

.languages .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #78c300;
    border-radius: 0 0 5px 5px;
    color: #fff;
}

.languages .dropdown a {
    display: block;
    padding: 5px 10px;
    color: inherit;
    text-decoration: none;
}

@media(max-width: 767px) {
    .languages{
        right: 0;
    }
}