@media (max-width: 992px) {
    .header-list-item:not(:last-child) {
        margin-right: 30px;
    }
}

@media (max-width: 798px) {
    .header-nav {
        display: none;
    }


    /* Меню бургер */

    .burger {
        display: block;
        position: relative;
        border: 1px solid currentColor;
        border-radius: 3px;
        width: 40px;
        height: 40px;
        color: #3172b9;
        margin-right: 4%;
    }

    .burger-line {
        position: absolute;
        left: 50%;
        width: 25px;
        height: 2px;
        border-radius: inherit;
        background-color: currentColor;
        transform: translateX(-50%);
    }

    .burger-line:nth-child(1) {
        top: 13px;
    }

    .burger-line:nth-child(2) {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .burger-line:nth-child(3) {
        bottom: 13px;
    }


    /* Анимация при активации */
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
        left: 20%;
        width: 35px;
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
        left: 20%;
        width: 35px;
    }


    .active {
        display: block;
    }


    .nav-burger {
        display: block;
        position: absolute;
        top: 10%;
        left: 65%;
        width: 35%;
        background-color: rgba(224, 255, 255, 0.5);
        max-height: 300px;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .burger-list-item {
        padding: 10px;
    }


    /* раздел тренировки и питание */
    .dropdown-list {
        max-width: 100%;
        display: flex;
        text-align: center;
    }

    .menu-container {
        flex-direction: column;
    }

    .dropdown-list-link {
        flex-direction: row;
        padding: 0;
        margin-right: 35px;
    }

    .right-inf {
        width: 100%;
        padding: 0;
    }

    .dropdown-list-nutrition {
        display: block;
        text-align: start;
    }

    .table-desc th {
        padding: 1px;
    }

    .menu-container {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .nav-burger {
        left: 55%;
        width: 50%;
    }

    .burger {
        width: 55px;
    }

    .dropdown-list {
        display: block;
        text-align: start;
    }

    .container {
        padding: 7px;
    }

    .table-desc {
        font-size: 11px;
    }
}