.menu_section {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    min-height: 100vh;
    background-color: #676D59;
}

.menu_section .menu_slider_container {
    position: relative;
}

.menu_section .menu_slider_container .slider {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
}

.menu_section .menu_slider_container .slider > div {
    width: 100%;
    height: 100vh;
}

.menu_section .menu_slider_container .slider .slide {
    position: relative;
    width: 100%;
    height: 100vh;
}

.menu_section .menu_slider_container .slider .slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.menu_section .menu_container {
    position: relative;
    padding: 7% 5%;
    padding-top: calc(60px + 7%);
}

.menu_section .menu_container::before {
    content: '';
    position: absolute;
    top: 120px;
    right: 5%;
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 
    0px 0.5px 4px 0px rgba(0, 0, 0, 0.12),
    0px 6px 13px 0px rgba(0, 0, 0, 0.12);
}

.menu_section .menu_container::after {
    content: '';
    position: absolute;
    top: 120px;
    right: calc(5% + 12px);
    width: 2px;
    height: calc(100% - 240px);
    background-color: rgba(255, 255, 255, 0.05);
}

.menu_section .menu_container h1, .menu_section .menu_container > h2 {
    margin-bottom: 20px;
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
}

.menu_section .menu_container .product {
    width: calc(100% - 26px);
    margin-bottom: 20px;
}

.menu_section .menu_container .product h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
}

.menu_section .menu_container .product p {
    max-width: 80%;
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
}

.menu_section .menu_container .light_btn {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.menu_section .menu_container .dark_btn {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

@media (max-width: 996px) {
    .menu_section {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    
    .menu_section .menu_slider_container {
        grid-row: 1;
        --slider-height: 450px;
        height: var(--slider-height);
        overflow: hidden;
    }
    
    .menu_section .menu_slider_container .slider {
        position: relative;
        height: var(--slider-height);
    }
    
    .menu_section .menu_slider_container .slider > div {
        height: var(--slider-height);
    }
    
    .menu_section .menu_slider_container .slider .slide {
        position: relative;
        width: 100%;
        height: var(--slider-height);
    }

    .menu_section .menu_container {
        position: relative;
        padding: 7% 5%;
        padding-top: 7%;
    }
    
    .menu_section .menu_container::before {
        top: 10%;
    }
    
    .menu_section .menu_container::after {
        top: 10%;
        right: calc(5% + 12px);
        height: calc(100% - 17%);
    }
    
    .menu_section .menu_container h1, .menu_section .menu_container > h2 {
        margin-bottom: 20px;
        font-family: Tetra;
        font-size: 3rem;
        font-weight: 100;
        letter-spacing: 1px;
        color: #fff;
    }
    
    .menu_section .menu_container .product {
        width: calc(100% - 26px);
        margin-bottom: 20px;
    }
    
    .menu_section .menu_container .product h2 {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 500;
    }
    
    .menu_section .menu_container .product p {
        max-width: 90%;
        font-size: 1.2rem;
        font-weight: 300;
        color: #fff;
    }
}