@media screen and (max-width: 1830px) {
    .header__logo {
        width: 300px;
    }
    .main-nav__list {
        align-items: center;
        text-align: center;
        margin-left: 50px;
    }
}
@media screen and (max-width: 1450px) {
    .header__logo {
        transform: translate(-15%,6%);
    }
    .header {
        position: fixed;
        top: 0;
        height: 120px;
    }
    .header-wrap {
        justify-content: space-between;
    }
    .header__menuSwitch {
        display: block;
    }
    .header__nav, .header__record {
        display: none;
    }
    .header__recordMobile {
        display: block;
    }
    .header__navMobile {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        gap: 40px;
    }
}
@media screen and (max-width: 1100px) {
    /*Отключение скролла при меню на фул экран*/
    .noScroll {
        overflow: hidden;
    }
    .header {
        height: 80px;
    }
    .header-wrap {
        height: 80px;
    }
    .header__recordMobile {
        font-size: 16px;
        padding: 7px 13px;
    }
    .header__logo {
        width: 200px;
    }
    .header__navMobile {
        z-index: 999;
        position: fixed;
        width: 100%;
        min-height: 90vh;
        left: 50%;
        top: 0;
        transform: translateX(-50%) translateY(80px) !important;
        background: #92ad6e;
        /* visibility: visible; */
        /* opacity: 1; */
    }
    .nav__listMobile {
        /* margin-top: 30px; */
        display: flex;
        flex-direction: column;
        gap: 40px;
        font-size: 24px;
    }
}
@media screen and (max-width: 600px) {
    .header__recordMobile {
        display: none;
    }
    .header__logo {
        width: 170px;
    }
    .header__menuSwitch {
        width: 24px;
        height: 20px;    
    }
    .header__recordMobile.smallMenu {
        margin-bottom: 120px;
        display: block;
        width: fit-content;
        align-self: center;
        font-size: 20px;
        padding: 14px 26px;
    }
    .nav__listMobile {
        font-size: 20px;
    }
}