.menu-title,
    .menu-item,
    .nav-item {
      font-size: 10px !important;
      padding: 1px !important;
    }

    footer,
    .right_col {
      margin-left: 0px !important;
    }

    #menu {
      background: #89171a;
      color: white;
      height: 35px !important;
      font-weight: 800;

    }

    #menu ul,
    #menu li {
      margin: 0 0;
      padding: 0 0;
      list-style: none
    }

    #menu ul {
      height: 35px
    }

    #menu li {
      float: left;
      display: inline;
      position: relative;
      font: bold 10px Arial;
      text-shadow: 0 -1px 0 #000;
      border-right: 1px solid #444;
      border-left: 1px solid #111;
      text-transform: uppercase
    }

    #menu li:first-child {
      border-left: none
    }

    #menu a {
      display: block;
      line-height: 35px;
      padding: 0 14px;
      text-decoration: none;
      color: #eee;
    }

    #menu li:hover>a,
    #menu li a:hover {
      background: #111
    }

    #menu input {
      display: none;
      margin: 0 0;
      padding: 0 0;
      width: 80px;
      height: 35px;
      opacity: 0;
      cursor: pointer
    }

    #menu label {
      font: bold 30px Arial;
      display: none;
      width: 35px;
      height: 36px;
      line-height: 36px;
      text-align: center
    }

    #menu label span {
      font-size: 12px;
      position: absolute;
      left: 35px
    }

    #menu ul.menus {
      height: auto;
      width: 175px;
      background: #111;
      position: absolute;
      z-index: 99;
      display: none;
      border: 0;
    }

    #menu ul.menus li {
      display: block;
      width: 100%;
      font: 12px Arial;
      text-transform: none;
    }

    #menu li:hover ul.menus {
      display: block
    }

    #menu a.home {
      /* background: #c00; */
    }

    #menu a.prett {
      padding: 0 27px 0 14px
    }

    #menu a.prett::after {
      content: "";
      width: 0;
      height: 0;
      border-width: 6px 5px;
      border-style: solid;
      border-color: #eee transparent transparent transparent;
      position: absolute;
      top: 15px;
      right: 9px
    }

    #menu ul.menus a:hover {
      background: #333;
    }

    #menu ul.menus .submenu {
      display: none;
      position: absolute;
      left: 180px;
      background: #111;
      top: 0;
      width: 180px;
    }

    #menu ul.menus .submenu li {
      background: #111;
    }

    #menu ul.menus .has-submenu:hover .submenu {
      display: block;
    }

    /* Desktop Styles */
    #menu {
      display: block;
    }

    .menus {
      display: block;
    }

    #menu-toggle {
      display: none;
      cursor: pointer;
    }

    .menuMob {
      display: none;
    }

    .mobLogo {
      display: none;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
      #menu {
        display: none;
      }

      .mobLogo {
        display: block;
      }

      .menuMob {
        display: none;
        font-size: 18px;
      }

      #menu-toggle {
        display: block;
        cursor: pointer;
      }
    }
    .zoom-trigger {
    position: relative;
    display: block;
    height: 100px;
    width: auto;
    
    
    transition: transform 0.3s;
}
.zoom-trigger:hover {
    transform: scale(7.5); /* You can adjust the scale factor for zoom level */
    transform-origin: center center;z-index:99999!important;top:30px;
}
   .tab {
        overflow: hidden;
        border: 1px solid #ccc;
        background-color: #000;
    }
    /* Style the buttons inside the tab */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 16px 16px;
        transition: 0.3s;
        font-size: 17px;
        color: white !important;
    }
    /* Change background color of buttons on hover */
    .tab button:hover {
        background-color: #89171a;
    }

    /* Create an active/current tablink class */
    .tab button.active {
        background-color: #89171a;
    }
    /* Style the tab content */
    .tabcontent {
        display: none;
        padding: 6px 12px;
        border: 1px solid #ccc;
        border-top: none;
    }