header.header{
    /*position: fixed;*/
    /*top: 60px;*/
    /*width: 100%;*/
    /*z-index:9999;*/
    height: 80px;
    background-color: var(--mainColor);
}
.header .container-fluid .row{
    align-items:center;
}
.header__logo{
    display: flex;
    height: 100%;
    align-items: center;
}
.header__logo a img{
    width:50%;
}
.header__menu{
    height:100%;
}
.header__menu  ul  li a{
    color:#fff;
    padding:0 5px;
}
.header__menu > ul{
    display:flex;
    height: 100%;
}

.header__menu > ul > li{
    position:relative;
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 100%;
    margin-right: 10px;;
}
.header__menu .has-child .sub-menu{
    display: flex;
    overflow: hidden;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    flex-wrap: wrap;
    z-index: 999;
    padding-top: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--mainColor);
    -webkit-transition: height .2s cubic-bezier(0.6,0,0.4,1);
    transition: height .2s cubic-bezier(0.6,0,0.4,1);
}
.header__menu .has-child .sub-menu.show{
    visibility: visible;
}
.header__menu .has-child .sub-menu li a{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    top: -20px;
    width: 224px;
    padding: 8px 24px 9px 24px;
    font-size: 14px;
    line-height: 19px;
    color: #000;
    opacity: 0;
    -webkit-transition: top .4s cubic-bezier(0.6,0,0.4,1) .1s, opacity .4s cubic-bezier(0.6,0,0.4,1) .1s;
    transition: top .4s cubic-bezier(0.6,0,0.4,1) .1s, opacity .4s cubic-bezier(0.6,0,0.4,1) .1s;
    color:#fff;
}
.header__menu .has-child .sub-menu.show li a{
    top: 0;
    opacity: 1;
}
.header__right{
    display:flex;
    align-items:center;
    justify-content: right;
    height: 100%;
}
.header-search-form{
 border-radius:30px;
     min-width: 300px;
}
.header-search-form button svg path{
    fill:#fff
}
.header-search-form input{
    border:none;
    background: #e84e0e; 
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
    font-size: 14px;
    font-style: italic;
    padding-left:1rem;
    color:#fff;
}
.header-search-form button{
     background: #e84e0e; 
     border-radius:0 30px 30px 0;
}
.header-search-form input::placeholder {
    color: #fff; /* Thay đổi mã màu theo ý bạn */
    opacity: 1; /* Đảm bảo độ mờ của placeholder */
}
.header-search-form input::-webkit-input-placeholder { /* Chrome, Safari, Opera */
    color: #fff;
}

.header-search-form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}

.header-search-form input::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}
.header__language{
    margin-left:40px;
}
.header__language ul{
        display: flex
}
.header__language ul li.devi{
    padding:0 5px;
    color:#fff;
}
.header__language ul li a{
    color:#fff;
}
.header__language ul li.active a{
    color:#a20e20;
    font-weight:bold;
    position:relative;
}
.header__language ul li.active a:after{
        content: "";
    position: absolute;
    bottom: -1rem;
    height: 5px;
    width: 100%;
    background: #a20e20;
    left: 0;
    border-radius: 5px;
}
.header__nav-bar{
    display:none;
}
@media(max-width:767px){
    .header__logo a img {
        width: 100%;
    }
}
@media(max-width:991px){
    .header__nav-bar{
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: end;
    }
}
.menu-mobile{
    width: 280px;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 99999;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all .35s ease;
}
.menu-mobile.active{
    transform: translateX(0px);
    visibility: unset;
}
.menu-mobile .nav-menu{
    height: calc(100vh);
    overflow: auto;
    background-color: #fff;
    padding: 0;
    margin: 0;
    list-style: none;
}
.menu-mobile ul a {
    padding: 12px 20px;
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    border-top: 1px solid rgb(236, 236, 236);
    display: block;
    font-weight: 700;
}
.menu-mobile ul .has-child .sub-menu{
    display:none;
}
.menu-mobile ul .has-child .sub-menu.active{
    display:block;
}
.menu-mobile ul .has-child .sub-menu li a{
    padding: 10px 30px;
    background-color: #f7f7f7;
}
.menu-mobile ul .has-child i{
    float: right;
    margin-top: -36px;
    margin-right: 10px;
    color: #205b9a;
    cursor: pointer;
    text-align: center;
    width: 28px;
    line-height: 28px;
    text-align: center;
    background: rgba(0, 0, 0, 0);
    border-radius: 14px;
    -webkit-border-radius: 14px;
    font-size: 18px;
}