.food_top_info{
  width: 100%;
  padding: 20px 0;
  position: relative;
  background: #F9BA42;
  color: white;
  margin-bottom: 50px;
}

.food_centered {
  margin: auto auto;
  max-width: 1080px;
  height: auto;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.food_tabcontent {
  width: calc(50% - 30px);
  margin-top: 40px;
  float: left;
  height: auto;
  overflow: auto;
  position: relative;
  background: #F1F1F2;
  color: rgba(0,0,0,.7);
  border: 10px solid #0F7EC2;
  border-top: 0;
}
.food_tabcontent:focus{
  outline: none;
}
.food_tabcontent:nth-child(2n+2){
  margin-left: 20px;
}
.food_tabcontent:nth-child(2){
  margin-left: 20px;
}
.food_tabcontent:nth-child(3n-1){
  border-color: #B81F24;
}
.food_tabcontent:nth-child(3n+3){
  border-color: #E09F44;
}
.menu_row{
  position: relative;
  width: 100%;
  float: left;
  height: auto;
}
.food_menu_pic{
  position: relative;
  width: 30%;
  float: left;
  height: auto;
  display: flex;
  overflow: hidden;
}
.food_menu_pic img{
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu_title {
  width: auto;
  padding: 5px 0;
  text-align: center;
  letter-spacing: 1px;
  color: white;
  background: #0F7EC2;
}
.food_tabcontent:nth-child(3n-1) .menu_title{
  background: #B81F24;
}
.food_tabcontent:nth-child(3n+3) .menu_title{
  background: #E09F44;
}

.menu_title h2{
  font-size: 36px;
}
.menu_item {
  margin: 15px 10px;
  padding: 15px 0;
  font-size: 18px;
  border-bottom: 1px solid rgba(0,0,0, .2);
}
.menu_item:last-child {
  border-bottom: none;
}

.menu_item_name{
  font-size: 18px;
  font-family: 'Asap', sans-serif;
  font-weight: bold;
  padding-bottom: 5px;
  padding-left: 10px;
  border-bottom: 1px solid rgba(255,255,255, .1);
}


.menu_item_description {
  font-family: 'Asap', sans-serif;
  font-style: italic;
  font-size: 15px;
  line-height: 20px;
  padding-left: 10px;
}

.menu_item_price{
  font-size: 18px;
  float: right;
  font-weight: bold;
  font-family: arial;
  margin-top: -25px;
  padding-right: 10px;
}

.food_guide{
  position: relative;
  height: auto;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  max-width: 1080px;
  margin: auto;
  transition: all .2s ease;
}
.food_guide_box{
  position: relative;
  height: auto;
  width: calc(50% - 10px);
  margin: 5px;
  float: left;
  overflow: hidden;
  transition: all .5s ease;
  z-index: 10;
  text-decoration: none;
}
.food_guide_box:last-child{
  margin-right: 0;
}
.food_guide_box:nth-child(3){
  width: calc(33.3% - 10px);
}
.food_guide_box:nth-child(4){
  width: calc(33.3% - 10px);
}
.food_guide_box:nth-child(5){
  width: calc(33.3% - 10px);
}
.food_overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all .5s ease;
  background: inherit;
}
.food_guide_box:hover .food_overlay{
  opacity: 0;
}
.food_hover{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  opacity: 0;
  transition: all .5s ease;
}
.food_guide_box:hover .food_hover{
  opacity: 1;
}

@media screen and (max-width: 1080px) {
}
@media screen and (max-width: 915px) {
  .food_guide_pic{
    height: 100px !important;
  }
  .food_guide{
    display: block;
  }
  .food_guide_box{
    width: calc(50% - 5px) !important;
    margin: 0;
    margin-top: 10px;
    flex: none;
  }
  .food_guide_box:nth-child(2n-1){
    margin-left: 10px;
  }
  .food_tabcontent {
    width: 100%;
  }
  .food_tabcontent:nth-child(2n+2){
    margin-left: 0;
  }
  .food_guide_box:first-child{
    width: 100% !important;
    margin-left: 0;
  }
}
.food_guide_pic{
  position: relative;
  top: 0;
  left: 0;
  height: 200px;
  transition: .5s;
}
.food_guide_pic img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.food_guide_box:hover .food_guide_pic img{
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.food_guide_box div[class*="buttoninfo"] {
  font-family: 'Bowlby One', Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  position: relative;
  width: 100%;
  text-align: center;
  margin: auto;
  padding:12px 0;
  transition: all .2s ease;
  color: white;
}

@media screen and (max-width: 950px) {
  .main_menu{
    min-width: 100% ;
  }
  .sides_menu{
    min-width: 100% ;
  }
}
