.block-menu-card{
    position: relative;
    background-color: var(--color-beige);
    padding: 4.875rem 0 8rem 0;
    background-size: cover;
    background-repeat: no-repeat;
}

body:not(.home) .block-menu-card::before{
    position: absolute;
    content: '';
    top: -45px;
    right: 309px;
    background: url('../../img/mushroom.png') no-repeat;
    width: 204px;
    height: 122px;
}


.block-menu-card .menu-card_wrapper {
    position: relative; 
}

.block-menu-card .menu-card_content {
    position: relative;
    max-width: 68.75rem; /* 1100px */
    margin: 4.5rem auto;
    padding: 4rem 5.688rem; /* 64px 91px */
    background: white;
}
.block-menu-card .menu-card_content::before {
    content: "";
    position: absolute;
    top: -1.25rem;
    left: 0;
    right: 0;
    background: url('../../img/menu-zigzag.png');
    height: 1.25rem;
    width: 100%;
}
.block-menu-card .menu-card_content::after {
    content: "";
    position: absolute;
    bottom: -1.25rem;
    left: 0;
    right: 0;
    background: url('../../img/menu-zigzag.png');
    height: 1.25rem;
    width: 100%;
    transform: rotate(180deg);
}

.block-menu-card .menu-card_wrapper h2{
    text-align: center;
    margin-bottom: 3.625rem; /* 58px */
}

.menu-card_item-title{
    color: var(--color-primary);
    margin-bottom: 1.867rem;
}

.block-menu-card .menu-card_items {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:1.875rem 7.375rem; /* 30px 118px */
}

.block-menu-card .menu-card_item {
    margin-bottom: 2rem;
}

.block-menu-card .menu-card-subtitle-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.625rem; /* 10px */
}

.block-menu-card .menu-card_item-subtitle{
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-secondary);
}

.block-menu-card .menu-card_item-price{
    font-size: 20px;
    line-height: 28px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-secondary);
}

.block-menu-card .menu-card_item-description{
    font-size: 1rem;
    line-height: 24px;
    color: var(--text-color);
    font-weight: var(--font-weight-regular);
    font-family: var(--font-family-secondary);
}

.block-menu-card .button-wrapper {
    text-align: center;
    margin-top: 2rem;
}


/* title slide */
.title-slides {
    max-width: 46.933rem;
    margin: 0 auto;
    display: none;
}
.title-slides a {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.867rem;
    line-height: 2.267rem;
    text-decoration: none;
    margin: 0 0.8rem;
}

.title-slides .slick-prev:before,.title-slides .slick-next:before {
    content: '';
    font-family: inherit;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 1;
   background: url("data:image/svg+xml;charset=utf-8,<svg viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'><path d='M26.5525 20L15.6432 8L13.4453 9.99871L22.5377 20L13.4453 30.0013L15.6432 32L26.5525 20Z' fill='%23DE241B'/></svg>") no-repeat center;
}
.title-slides .slick-prev, .title-slides .slick-next {
    width: 2.667rem;
    height: 2.667rem;
}
.title-slides .slick-disabled:before{
    opacity: 0;
}
/* Responsive Styles */
@media (max-width: 992px) {
    body:not(.home) .block-menu-card::before{
    position: absolute;
    content: '';
    top: -3rem;
    right: -3.067rem;
    }
    .block-menu-card .menu-card_wrapper h2 {
    font-size: 3.733rem;
    line-height: 4rem;
    margin-bottom: 3.2rem;
    }
    .block-menu-card .menu-card_items {
        grid-template-columns: 1fr;
        gap: 0rem;
    }
    .block-menu-card .menu-card_item {
        margin-bottom: 2.133rem;
    }
    .block-menu-card .menu-card_content {
        max-width:46.933rem;
        margin: 4.5rem auto;
        padding: 4.267rem 6.067rem;
    }
}

@media (max-width:767px) {
    .title-slides {
        display: block;
    }
    .block-menu-card{
        padding: 6.4rem 0;
    }
    body.home .title-slides {
    display: none;
    }
    body:not(.home) .block-menu-card .menu-card_content::before{
            top: -1.333rem;
            right: -1.333rem;
            background: url('../../img/menu-zigzag-mobile-menu.png');
            height: 1.333rem;
    }
    body:not(.home) .block-menu-card .menu-card_content::after{
            bottom: -1.333rem;
            right: -1.333rem;
            background: url('../../img/menu-zigzag-mobile-menu.png');
            height: 1.333rem;
    }
    .block-menu-card .menu-card_content::before {
        top: -1.067rem;
        height: 1.067rem;
        background: url('../../img/menu-zigzag-mobile.png');
    }
    .block-menu-card .menu-card_content::after {
        bottom: -1.067rem;
        height: 1.067rem;
        background: url('../../img/menu-zigzag-mobile.png');
    }
    .block-menu-card .menu-card_content {
        margin: 4.5rem auto;
        padding: 4.267rem 1.067rem;
    }
    .block-menu-card .menu-card_wrapper h2 {
    text-align: left;
    margin-bottom: 3.2rem;
    font-size: 2.667rem;
    line-height: 3.067rem;
    }
    .block-menu-card .menu-card_item-subtitle{
        font-size: 1.333rem;
    }
    .block-menu-card .menu-card_item-description{
        font-size: 1.067rem;
    }
}
