/*nav*/
.nav_header {
    height: 100%;
    margin-left: auto;
}
.nav__item {
    height: 100%;
}
.nav__list {
    height: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-end;
}
.nav__link {
    font-family: 'Inter-Medium', sans-serif;

    font-size: 15px;
    color: #fff;
    text-decoration: none;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.nav__link:before {
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s linear;
}
.nav__link:hover:before {
    width: 100%;
}
.nav__item_active .nav__link:before {
    width: 100%;
}
/*nav footer*/
.nav_footer .nav__link {
    color: #131619;
}
.nav_footer .nav__item_active .nav__link {
    color: #DD1E31;
}
.nav_footer .nav__item_active .nav__link:before {
    display: none;
}


@media screen and (max-width: 1440px){
    .nav__list {
        gap: 26px;
    }
}
@media screen and (max-width: 1024px) {
    .header__col_logo {
        flex: 0 0 50%;
    }
    .nav__btn-mobile {
        width: 60px;
        height: 60px;
        cursor: pointer;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
    }
    .nav__btn-mobile span {
        width: 21px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        transition: all 0.3s linear;
        pointer-events: none;
    }
    .nav__btn-mobile span:after {
        content: "";
        width: 21px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        position: absolute;
        margin: auto;
        top: -14px;
        bottom: 0;
        left: 0;
        right: 0;
        transition: all 0.3s linear;
    }
    .nav__btn-mobile span:before {
        content: "";
        width: 21px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        position: absolute;
        margin: auto;
        top: 8px;
        bottom: 0;
        left: 0;
        right: 0;
        transition: all 0.3s linear;
    }

    .nav__list {
        display: none;
    }

    .nav_open .nav__list {
        display: flex;
        width: 100vw;
        height: 100vh;
        background: #B81F20;
        z-index: 1000;
        position: absolute;
        top: 80px;
        left: 0;
        flex-direction: column;
        gap: 20px;
        justify-content: flex-start;
        padding: 50px 0 0;
    }
    .nav_open .nav__item {
        height: auto;
    }
}


