.row > .column {
    width:24%;
    margin-right:1%;
    margin-top:10px;
    box-sizing: border-box;
    border:1px solid #f0f0f0;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
  }
  .row > .column:last-of-type {
    margin-right:0;
  }

  .row > .column:hover{
    border:1px solid #212121;
  }

  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  .row > .column > div {
    overflow: hidden;
  }

  .row > .column > div > img {
    transform: scale(1);
    transition: 300ms all;
  }

  .row > .column:hover > div > img {
    transform: scale(1.05);
  }


  /* menu */
  .catego{
    padding: 10px;
    text-align: center;
    background-color: #ddd;
    font-size: 1.5em;
    font-family: 'GmarketSansMedium';
    margin-bottom: 20px;
  }

.menu_title{
  background-color: #404040;
  color: #fff;
  padding: 10px;
  font-size: 1em;
  text-align: center;
  font-family: 'GmarketSansMedium';
  text-overflow: ellipsis;
}

.menu_content{
  border-top: 1px solid #e0e0e0;
  margin: 0 10%;
  padding: 20px 0px 50px;
  font-family: 'GmarketSansMedium', sans-serif;
  font-size:1.2em;
}

  /* Create four equal columns that floats next to eachother */
  .column {
    float: left;
    width: 25%;
  }
  
  /* The Modal (background) */
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 160px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 30%;
    max-width: 1200px;
  }
  
  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 100px;
    right: 50%;
    transform:translateX(50%);
    font-size: 50px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Hide the slides by default */
  .mySlides {
    display: none;
    text-align: center;
  }
  .mySlides > img {
    padding:10px;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
      background-color:#212121;
      box-sizing: border-box;
      display: inline-block;
      width:100%;
      text-align: center;
    color: #fff;
    font-family: 'GmarketSansMedium';
    font-size: 1.5em;
    padding: 12px 12px;
    /* position: absolute; */
    top: 0;
  }
  
  /* Caption text */
  .caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
  }
  
  img.demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  }


  /* menu_tabs */

  .menu_tabs{
    margin: 0 auto 40px;
    width: 100%;
  }

    .m_list{
      border: 1px solid #e0e0e0;
    }
    
    .m_list > li{
      float: left;
      box-sizing: border-box;
      width: 25%;
      border-right: 1px solid #e0e0e0;
      text-align: center;
      padding:10px;
      white-space: nowrap;
    }

    .m_list > li:hover{
      background-color: #212121;
    }

    .m_list > li:hover > a{
      color:#fff;
    }

    .m_list > li:hover{
      background-color: #212121;
      color:#fff;
    }

    .m_list > li.on{
      background-color: #212121;
      color:#fff;
    }
    .m_list > li.on > a{
      background-color: #212121;
      color:#fff;
    }

    .m_list > li:last-of-type{
      border-right: none;
    }
    
    .m_list > li > a{
      display: block;
      font-size: 1.2em;
      font-family: 'GmarketSansMedium';
      text-overflow: ellipsis;
    }

/*******************************************************************************
	@media query
*******************************************************************************/
@media all and (max-width:540px){

  .row > .column {
    width: 49%;
  }
  .m_list > li{
    width: 50%;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
  }
  .m_list > li:nth-of-type(2){
    border-right: none;
  }
  .m_list > li:nth-of-type(3), .m_list > li:last-of-type{
    border-bottom: none;
  }

  /* Modal Content */
  .modal-content {
    width: 90%;
  }

}