.lang-wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    color: #fff;
    display: none; /*hidden lang block*/
}

.inner-lang-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.lang {
    margin-right: 10px;
    color: black;
}

.lang a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

/* ===== Mobile menu ===== */
.mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background: #252323;
    padding: 20px;
    font-family: "Montserrat", serif;
    color: #fcfcfc;
    z-index: 1000;

    transform: translateX(100%);
    transition: transform 0.3s ease;

}

.mobile.active {
    transform: translateX(0);
}

.mobile-menu-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1em;
    margin-top: 30px;
}

.mobile-menu > .menu-el {
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-align: center;
}

.menu-el a {
    color: white;
    text-decoration: none;
}

.mobile-lang-wrapper {
    margin-top: 30px;
    /* display: flex;*/
    justify-content: center;
    display: none; /*hidden lang block*/
}

.mobile-lang-wrapper > .lang {
    color: white;
}

.mob-logo-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.mob-logo img {
    width: 80%;
}

.bars, .xmark {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 1100;
    user-select: none;
}
@keyframes rotateIn {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.xmark {
    display: none;
    filter: invert(1);
}

.xmark.active {
    display: block;
    animation: rotateIn 0.5s ease-out 1;
}
