/**
 * Theme Name: Project name
 * Author: Client name
 * Version: 1.0
**/
@media screen and (min-width: 640px) {
    #main-menu {
        display: block !important;
    }
}
.header__navigation .cell{
    position: relative;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-bar{
    height: 100%;
}

@media screen and (max-width: 640px) {
    .top-bar{
        height: fit-content;
    }
    .header__navigation .cell{
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
}
.header__language-switcher {
    position: absolute;
    right: -57px;
    top: 0px; }
@media screen and (max-width: 1250px) {
    .header__language-switcher {
        right: 15px; } }
.header__language-switcher ul li {
    list-style: none; }
.header__language-switcher ul li a {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    background: #081C25;
    border: 0.3px solid #f06000;
    text-transform: uppercase;
    width: 45px;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease; }
.header__language-switcher ul li a:hover {
    background: #f06000 !important; }
.header__language-switcher ul li:first-child a {
    border-bottom: 2px solid #f06000; }
.header__language-switcher ul li.current-lang a {
    background: #f06000 !important; }