header {
    background-color: #000;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.item-header-list {
    width: 100%;
    margin-left: 110px;
    display: flex;
    align-items: center;
}

.item-header-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    position: relative;
}

.header-item-link {
    text-transform: uppercase;
    color: #fff;
    font-weight: 200;
    cursor: pointer;
    padding: 5px 15px;
    text-decoration: none;
    border: 2px solid #000;
    margin-right: 25px;
    font-family: AnekLatinRegular;
}

.header-item-link:hover {
    color: #fff !important;
    border: 2px solid #f56500;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.header-item-link.active {
    color: #fff !important;
    border: 2px solid #FF6700;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.desktop-header {

    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: padding-top .5s, padding-bottom .5s;
    transition: padding-top .5s, padding-bottom .5s;
}

.active-language {
    color: #fff !important;
    font-weight: bold;
}

.language-title {
    cursor: pointer;
    font-family: AnekLatinExtraBold;
}
li.header-item {
    position: relative;
}

ul.sub-menu-header {
    position: absolute;
    background: #000;
    display: none;
    flex-direction: column;
    /* border-top: 30px solid #000; */
    padding: 0px 0px;
    padding-top: 28px;
    width: 250px;
    align-items: end;
    right: 0;
    margin-top: 3px;
}

ul.sub-menu-header a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.header-item:hover .sub-menu-header {
    display: flex;
}

ul.sub-menu-header a:hover {
    color: #f56500;
}
.sub-menu-header > li:first-child {
    border-top: 2px solid #f56500;
}
ul.sub-menu-header li {
    width: 100%;
    text-align: right;
    padding: 0px 8px;
    padding-top: 8px;
}
.sub-menu-header li:last-child {
    padding-bottom: 8px;
}
a:hover {
    color: #f56500;
}