/* menu  */

@keyframes fadeIn {

  0% { opacity: 0; }

  100% { opacity: 1; }

}

.tab-pane.fade { animation: fadeIn 3.5s; }

.menu-box {
  width: 60%;
}


.menu-box > .nav {
  width: 40%;
}


.menu-box > .tab-content {
  width: 60%;
}

@media only screen and (max-width: 991px) {

  .menu-box {
    width: 100%;
  }


  .menu-box > .nav {
    width: 50%;
  }



  .menu-box > .tab-content {
    width: 50%;
  }

}

@media only screen and (max-height: 390px) {
    .menu-tab {
        margin-bottom: 0.5rem !important;
    }
}