*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

        /* header */
.header-img{
    width: 100%;
    padding: 30px 0;
}
.header-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 27px;
    text-align: justify;
    margin: 20px 0;
}

.bottom-img{
    width: 10%;
    margin-right: 50px;
}
.bottom-title{
    width: 20%;
    margin-right: 50px;
    min-width: 100px;
}
.bottom-title .bottom-desc{
    font-weight: bold;
    border-bottom: solid 1px #444;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.bottom-title .more{
    color: #4e4e4e;
}
.bottom-info{
    width: 20%;
}

        /* section content */
.section-content{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    
}
.item1 , .item2 , .item3 , .item4{
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.item1{
    background: url(../img/home-restaurant-img-22.jpg) center;
    background-size: cover;
    color: #fff;
    /* padding-top: 200px; */
}
.item2{
    background: url(../img/home-restaurant-img-21.jpg) center;
    background-size: cover;
    /* padding-top: 150px; */
}
.item3{
    background: url(../img/home-restaurant-img-23.jpg) center;
    background-size: cover;
    /* padding-top: 150px; */
}
.item4{
    background: url(../img/home-restaurant-img-20.jpg) center;
    background-size: cover;
    color: #fff;
    /* padding-top: 200px; */

}

.title{
    margin-bottom: 40px;
}
.item-desc{
    margin-bottom: 40px;
    
}
.item-more1{
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    background-color: #cac27a;
}
.item-more2{
    border: none;
    border-radius: 50%;
    padding: 12px 15px;
    background-color: #fff;
    font-size: 20px;
    color:  #cac27a;
}

.item-more1 ,.item-more2:hover{
    cursor: pointer;
}

        /* section order */
.section_order{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.order_item{
    flex: 1 1 230px;
    max-width: 230px;
    text-align: center;
    border-radius: 20px 20px 5px 5px;
    margin: 30px 10px;
}
.order_item:hover{
    box-shadow: 0 0 10px lightgray;
}
.order_img{
    width: 100%;
    border-radius: 20px;
}
.order_title{
    margin-top: 15px;
    padding: 5px;
}
.order_list{
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
}
.order_word{
    color: rgb(168, 166, 166);
    font-size: 15px;
}

        /* footer */
.footer{
    margin: 110px 0;
    border-top: solid 1px lightgray;
    text-align: center;
    position: relative;
}
.footer_img{
    position: absolute;
    top: -105px;
    margin: auto;
    right: 0;
    left: 0;
}
.footer_item{
    display: inline-block;
    margin: 120px 70px;
}


/* responsive */

@media only screen and (max-width: 768px){
    .container{
        max-width: 100%;
    }

    /* header */
    .header-bottom{
        flex-direction: column;
    }
    .bottom-title{
        margin-right: 0;
        margin-bottom: 30px;
    }
    .bottom-img{
        display: none;
    }

    /* section content */
    .section-content{
        flex-direction: column;
        align-items: center;
    }
}