#our-menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #776021;
    min-height: 100vh;
}

#catalog-dishes{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}


.box-dishe{  
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 25%;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.banner-dishe{
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-dishe > img{
    height: 30vh;
    width: 30vh;
}

.tittle-dishe > h1{
    font-size: 20px;
    font-weight: 500;
    color: #ffff;
}

.tittle-dishe > span{
    color: #ffff;
    font-size: 15px;
    font-weight: 400;
}

.tittle-dishe > hr{
    background-color: #ffff;
    height: 1px;
}

.descritpion-dishe{
    display: flex;
    text-align: justify;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 200;
}

.stars-dishe{
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-addCart{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

.price{
    font-size: 20px;
    font-weight: 400;
}

.price-addCart > button{
    background: linear-gradient(90deg,rgb(4, 54, 35) 0%, rgb(156, 154, 40) 100%);
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border: none;
    padding: 8px;
}

button > a{
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
}

button > a:hover{
    transition: 1.5s;
    color: black;
}

@media screen and (max-width: 1170px){
    #catalog-dishes{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .box-dishe{
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 670px){
    .box-dishe{
        width: calc(100%);
    }
}