.menu-slides-container {
    position: relative;
    height: 735px;
    /* height: min(80vh,80rem); */
    width: 50%;
    overflow: hidden;
}

.carousel_img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel_track-container {
    /* background: lightgreen; */
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel_track {
    list-style: none;
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    transition: transform 250ms ease-in;
}

.carousel_slide {
    position: absolute;
    top:0;
    bottom:0;
    width: 100%;
}

.carousel_button {
    position: absolute;
    top : 50%;
    transform: translateY(-50%);
    background: cornflowerblue;
    border: 0;
    cursor: pointer;
}

.carousel_button-left  {
    left: 100px;
    z-index: 100;
}

.carousel_button-right {
    right: 100px;
}

.carousel_button img {
    width: 25px;
}

.is-hidden {
    display: none;
}


@media screen and (max-width:1100px) {
    
    .menu-slides-container {
        min-height: none;
    }
    .carousel_button-left  {
        left: -10px;
        z-index: 100;
    }
    
    .carousel_button-right {
        right: 10px;
    }
}