.menu_burger{
    display: none;
}
.offcanvas{
    display: none;
}
@media (max-width: 1306px) {
    .menu_burger {
        position: fixed;
        top: 18px;
        right: 18px;
        display: inline-grid;
        place-items: center;
        background-color: var(--color-header);
        border-radius: 10px;
        width: 46px;
        height: 46px;
        transition: background-color 0.5s ease;
        backdrop-filter: blur(12px);
        z-index: 21;
    }
    .burger__lines {
        width: 20px;
        height: 14px;
        position: relative;
        display: block
    }
    .burger__lines span {
        position: absolute;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--text-color);
        display: block;
        transition: transform 300ms ease, opacity 300ms ease, top 300ms ease;
    }
    .burger__lines span:nth-child(1) {
        top: 0
    }
    .burger__lines span:nth-child(2) {
        top: 6px
    }
    .burger__lines span:nth-child(3) {
        top: 12px
    }
    .offcanvas {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 390px;
        max-width: 100%;
        background: var(--bg-color);
        transform: translateX(100%);
        transition: all 0.5s;
        z-index: 20;
        display: flex;
        flex-direction: column;
        padding: 18px;
    }
    .offcanvas.open {
        transform: translateX(0)
    }
    .backdrop.visible {
        opacity: 1;
        pointer-events: auto
    }
    .offcanvas__header {
        display: flex;
        width: 83%;
        justify-content: space-between;
    }
    .nav a {
        font-weight: 500;
        font-family: 'TT_Fors_Variable', sans-serif;
        font-size: 16px;
        color: var(--text-color);
        transition: color 0.5s ease;
        margin: 16px 0 0 0;
    }

    .nav a p {
        margin: 16px 0 0 0;
    }

    .nav {
        margin: 26px 0 0 0;
        height: 184px;
    }

    .menu_burger.open .burger__lines span:nth-child(1) {
        transform: translateY(6px) rotate(45deg)
    }

    .menu_burger.open .burger__lines span:nth-child(2) {
        opacity: 0
    }
    .menu_burger.open .burger__lines span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg)
    }
    .btn_personal_account {
        margin: 40px 0 0 0;
    }
    aside .btn_personal_account {
        background-color: var(--text-color);
        color: var(--bg-color);
    }
    aside .logo{
        fill: #ffffff;
    }
    body.dark-mode aside .logo{
        fill: #141414FF;
    }
    .block_btns_burger{
        display: flex;
        margin: 40px 0 0 0;
        gap: 16px;
    }
    .btn_card{
        width: 195px;
        height: 100px;
        padding: 12px;
        border: 1px solid var(--brdr-block-btn);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: border 0.5s ease;
    }
    .btn_card p{
        color: var(--text-color);
        font-weight: 500;
        font-size: 16px;
        text-align: left;
        transition: color 0.5s ease;
    }
    .btn_card:hover{
        border: 1px solid var(--color-block-btn);
    }
    .btn_card:hover .blue_block{
        background-color: rgba(32, 73, 185, 1);
    }
    .blue_block{
        width: 24px;
        height: 24px;
        background-color: #1365FD;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 0 0 auto;
        transition: background 0.5s ease;
    }
    .btn_card:hover .blue_block{
        background-color: rgba(32, 73, 185, 1);
    }
    .burger_card_btn{
        margin: 16px 0 0 0;
        width: 100%;
    }
    .burger_connection{
        display: flex;
        flex-direction: column;
        margin: 34px 0 0 0;
    }
    .burger_connection a{
        color: var(--text-color);
        font-weight: 600;
        font-size: 24px;
        line-height: 30px;
        transition: color 0.5s ease;
        font-family: 'TT_Fors_Variable', sans-serif;
        cursor: pointer;
    }
    .burger_connection a:hover{
        color: var(--color-accent);
    }
    .burger_light_dark{
        display: flex;
        top: 16px;
        left: 269px;
        transform: translateX(0);
    }
}