
   .navbar-hidden {
    transform: translateY(-100%);
}
.all_menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: transform .8s ease-in-out;
    z-index: 10;
}



.top-bar {
    background-color: #0288D1;
    color: white;
    padding: 5px 0;
    font-size: 14px;
}

.nav-link {
    font-weight: 500;
}

.navbar-brand img {
    height: 40px;
}

.flag-icon {
    width: 25px;
    height: auto;
}


/*mobilemenu*/
  .menu-moble {
        position: absolute;
        top: 67px;
        z-index: 999;
        width: 100%;
        background: linear-gradient(to bottom, #0288d1, #0c3851);
        color: #fff;
        padding: 0;
        list-style: none;
        display: none;
    }

    .menu-moble li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .menu-moble li:hover {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .menu-moble li a{
       color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    }    

    @media (max-width: 991px) {
        .menu-moble {
            display: none;
        }
    }
/*mobilemenu*/

/*search bar */

    .search-bar-area {
        width: 400px;
        overflow: hidden;
        transition: width 0.6s ease;
    }
    
    .search-container {
        width: 400px;
       
    }


    .search-container {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 600px;
        position: relative;
        /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
        border-radius: 50px;
        overflow: hidden;
        margin: 0 auto;
        padding-right: 10px;
    }

    .search-input {
        flex: 1;
        border: none;
        outline: none;
        /*padding: 10px 25px;*/
        padding: 6px 25px;
        font-size: 18px;
        color: #666;
        background-color: #efefef;
        border-radius: 50px;
        width: 100%;
    }

    .search-input::placeholder {
        color: #aaa;
    }

    .search-button {
        position: absolute;
        right: 0;
        height: 32px;
        aspect-ratio: 1/1;
        border: none;
        background-color: #0288d1;
        color: white;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 5px;
    }

    .search-icon {
        width: 24px;
        height: 24px;
    }
    
    @media (max-width:768px){
        .search-bar-area {
            order: 3;
            width: 100%;
        }
        #search-submit-desk{
            display: none;
        }
    }
/*search bar */