header {
    height: 80px !important;
    border-bottom: 1px solid #757474;
}

#logo-hex-animate {
    animation: logo-draw 4s ease forwards;
}

@keyframes logo-draw {
    from {
        stroke-dashoffset: 300;
    }
    to {
        stroke-dashoffset: 0;
    }
}

header,
header .header__logo,
header .header__phone,
header .header__menu,
header .header__languages,
header .header__request-call {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-right: 1px solid #2C2C2C;
    color: var(--text-color-header);
    font-size: 12px;
    text-transform: uppercase;
    z-index: 2;
    cursor: pointer;
}

.header__phone {
    white-space: nowrap;
}

.header__phone p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

header .header__phone a {
    color: var(--text-color-header) !important;
    text-decoration: none;
}

header .burger__menu {
    display: none;
}

header .header__menu-item__icon {
    letter-spacing: 1px;
    margin: 5px 0 !important;
}

header .header__logo,
header .header__phone,
header .header__menu,
header .header__languages,
header .header__request-call {
    flex-direction: column;
    position: relative;
}

header .header__menu .header__menu-item.active {
    background: var(--main-filling-block);
    font-family: 'Roboto Medium';
}

.current-menu-item a,
.current-page-ancestor a,
.current-post-ancestor a {
    background: #000;
}

header .header__menu .header__menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    font-size: 12px;
    justify-content: center;
    text-align: center;
    position: relative;
}

header .header__menu .header__menu-item a {
    color: var(--text-color-header);
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

header .header__menu {
    justify-content: space-evenly;
    flex-direction: row;
}

header .header__languages .header__languages-icon.active {
    transform: rotate(90deg);
}

header .header__languages p,
header .header__languages span,
header .header__logo {
    user-select: none;
}

header .header__languages-items .item {
    height: 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

header .header__languages-items {
    display: none;
}


header .header__languages-items.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    width: 100%;
    align-content: center;
    justify-content: center;
    text-align: center;
    background: #111315;

    border-top-color: rgb(44, 44, 44);
}

header .header__languages-items.active a {
    text-decoration: none;
    color: var(--text-color-header);
}

header .header__languages-items.active a:hover {
    color: var(--main-links-color);
}


header .header__languages .header__languages-icon {
    transform: rotate(0deg);
    display: inline-block;
}

header .header__languages p,
header .header__request-call p {
    margin: 0 !important;
}

header .header__languages span {
    margin: 5px 0 0 !important;
    padding-bottom: 0;
}

header .header__languages {
    cursor: pointer;
    padding: 10px;
}


