
/* Шапка сайта */
header:after,
.container:after,
footer:after,
.widget-posts-list li:after,
#subscribe:after {
    content: "";
    display: table;
    clear: both;
}

header {
    width: 100%;
    background: #111827;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 15px 0;
    position: relative;
    letter-spacing: 1px;
    font-weight: 400;
}


/* ========================================
   ЛОГОТИП
   ======================================== */

.logo {
    display: block;
    float: left;
}

.logo_img {
    height: 40px;
}


/* ========================================
   ОСНОВНОЕ МЕНЮ
   ======================================== */

#menu {
    float: right;
    margin: 0;
}

#menu li {
    display: inline-block;
    margin-right: 20px;
    padding: 0;
    font-weight: normal;
    letter-spacing: 1px;
}

#menu a {
    color: #FFF;
    text-transform: uppercase;
    display: block;
    font-size: 16px;
    line-height: 40px;
    font-weight: 600;
    font-family: 'Larsseit', sans-serif;
}

#menu a:hover {
    color: #4ee37d;
}


/* Для ссылки "РЕЄСТРАЦІЯ" */
#menu a.register {
    border: 2px solid #35D46B;
    color: #35D46B;
    padding: 0 15px;
    border-radius: 5px;
}

#menu a.register:hover {
    border: 2px solid #FFF;
    color: #FFF;
}

#menu li:last-child {
    margin-right: 0;
}


/* ========================================
   МОБИЛЬНОЕ МЕНЮ
   ======================================== */

.nav-toggle {
    display: none;
    position: relative;
    float: right;
    width: 38px;
    height: 38px;
    top: 0;
    margin-left: 20px;
    background: #4ee37d;
    cursor: pointer;
    border-radius: 5px;
}

.nav-toggle span {
    display: block;
    position: absolute;
    top: 18px;
    left: 7px;
    right: 7px;
    height: 2px;
    background: #1a2e35;
}

.nav-toggle span:before,
.nav-toggle span:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a2e35;
}

.nav-toggle span:before {
    top: -8px;
}

.nav-toggle span:after {
    bottom: -8px;
}


/* Класс, который добавляется к верхнему меню
   при нажатии на мобильную кнопку */
#menu.active {
    max-height: 1000px;
    background: #0f172a;
    border-top: 1px solid #dedbe6;
    z-index: 50;
}


/* ========================================
   ПЕРЕКЛЮЧАТЕЛЬ ЯЗЫКА
   ======================================== */

#lang {
    float: right;
    margin-left: 20px;
    position: relative;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}


/* Кнопка */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    color: #FFF;
    font-size: 16px;
    line-height: 40px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: 0;
    padding: 0;
}
 
.lang-btn:hover {
    color: #4ee37d;
}

/* Код языка */
.lang-code {
    font-weight: 600;
    font-size: 16px;
}


/* Стрелка */
.lang-arrow {
    font-size: 18px;
    line-height: 1;
}


/* Выпадающее меню */
.lang-menu {
    display: none;
    position: absolute;
    left: -15px;
    top: 120%;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 10px;   padding: 8px 15px;
    z-index: 1000;
}


/* Пункты языкового меню */
.lang-menu a {
    display: block;
    padding: 8px 10px;
    border-top: 1px solid #334155;
    color: #FFF;
    text-decoration: none;
}

.lang-menu a:first-child {
    border-top: 0;
}

.lang-menu a:hover {
    background: #334155;
    border-radius: 10px;
}


/* ========================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ======================================== */

@media (max-width: 768px) {

    .container {
        width: 100%;
    }


    /* Показываем кнопку мобильного меню */
    .nav-toggle {
        display: block;
    }

    header {
        padding: 5px 0;
        width: 100%;
        max-width: 768px;
    }


    /* Скрываем верхнее меню */
    #menu {
        max-height: 0;
        background: white;
        float: none;
        position: absolute;
        overflow: hidden;
        top: 55px;
        right: 0;
        left: 0;
        margin: 0;
        padding: 0;
        z-index: 3;
    }


    /* Элементы меню вертикально */
    #menu li {
        display: block;
        text-align: center;
        border-bottom: 1px solid #EBEBE3;
        margin-right: 0;
    }

    #menu a {
        line-height: 40px;
    }


    #menu a.register {
        border: 0;
        padding: 0 15px;
        border-radius: 5px;
    }

    #menu a.register:hover {
        border: 0;
    }
}


/* ========================================
   МАЛЕНЬКИЕ ЭКРАНЫ
   ======================================== */

@media (max-width: 480px) {

    .logo_img {
        height: 30px;
        margin-top: 5px;
        display: block;
    }

    #lang {
        float: left;
        margin-left: 20px;
    }

}


/* Конец шапки сайта */

