* {
    margin: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.container {
    display: flex;
    justify-content: space-between;

    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 80px;
}


#__show_menu{

    width: 44px;
    height: 44px;
    background: url("/tpl/ico/menu.svg") no-repeat center;
    background-size: contain;
display: none;
}


#mute{
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
}

._menu #mute{
    display: block;
}


.header__navbar {
    display: flex;
    gap: 76px;
    align-items: center;

    height: 48px;
}

.header__navbar-item {
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    line-height: 38px;
    color: #141D40;
}



.header__navbar-item::after,
.header__navbar-item--active::after {
    display: block;
    content: "";

    width: 0px;
    height: 0;

    opacity: 100%;
    border-bottom: 2px solid #E1662B;
}

.header__navbar-item--active::after {
    width: 40px;
}

.header__navbar-item:hover::after {
    width: 40px;

    opacity: 50%;
    transition: width 0.5s;
}

.header__navbar-item--active:hover::after {
    opacity: 1;
}


.header__navbar-button {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 165px;
    height: 48px;


    font-weight: 600;
    color: #fff;
    border-radius: 30px;
    background: linear-gradient(225deg, #2E4AAF 0%, #27397F 100%);
    box-shadow: 0px 1px 3px 0px #8282821A;
}

.header__navbar-button:hover {
    opacity: 0.8;
}

.header__navbar-button::after {
    display: none;
}

.header__logo {
    width: 72px;
    height: 42px;
}

.header__logo-img {
    width: auto;

}