        
        .main-menu ul li a {
            padding: 10px 7px 20px 0px;
            font-size:12px;
            
        }
        
        @media only screen and (min-width : 1200px){
      #link{
       
        transform: translateX(-85px);
      }
  
     

    }
        
        @media only screen and (min-width : 1366px){
      .main-menu ul li a {
          padding: 10px 18px 20px 0px;
          font-size:15px;
             }
  
    }
    
    .dropdown ul  li a {
            padding: 10px 12px 20px 8px;
        }
        .main-menu ul {
            float: left;
        }

        .menu {
            list-style: none;
            margin: 27px;
            padding: 0;
            display: flex;
            justify-content:space-around !important;
        }

        .menu-item {
            position: relative;
        }

        .menu-item a {
            text-decoration: none;
            line-height: 8px !important;
            color: #333;
            display: block;
        }

        .menu-item a:hover {
            background-color: #e9ecef;
        }

        /* Styling for dropdown menus */
        .dropdown-menu {
            display: none;
            /*position: absolute;*/
            position:relative;
            
            /*top: 70%;*/
            left: 0;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            list-style: none;
            margin: 0;
            padding: 0;
           
        }

        .dropdown-menu li {
            width: 100%;
        }

        .dropdown-menu a {
            padding: 10px 10px 20px 10px;
            color: #333;
        }

        .dropdown-menu a:hover {
            background-color: #e9ecef;
        }

        /* Show dropdown menu on hover */
        .menu-item:hover>.dropdown-menu{
             display: block;
             margin-top:-1px;
        }
        .menu-item:hover>.dropdown-menu,
        .submenu-item:hover>.dropdown-menu {
            display: block;
           
        }

        /* Position nested dropdown menus to the right */
        .submenu-item {
            position: relative;
            
        }

        .submenu-item .dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: 0;
            
            
        } 

        #sub_dropdown{
            height:300px;
            overflow-y:scroll;
        }
        

        /* Styling for nested dropdown menus */
        .dropdown-link::after {
            content: " ▸";
            float: right;
        }
        
.left-dropdown {
    position: relative;
}

.left-dropdown .dropdown-menu {
    position: absolute;
    left: -200px; /* adjust this value to position the dropdown menu */
    top: 0;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 10px;
    display: none;
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
    width:200px;
}
