 
.header_section{
    background-color:#ffffff;
    border-bottom: 1px solid #ebebeb;
}
.header_section .hamburger_btn{
    padding: 10px;
    margin-left: 10px;
}
.header_section .brand_logo img{
    width: 128px;
    height: auto;
}

.header_section .header_left{
    order: 1;
    width: 30%;
    @media(min-width:768px){
        width: 200px;
        margin-right: 5px;
        }
}
.header_section .header_right{
    order: 2;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
        @media(min-width:768px){
            order: 3;
            width: 210px;
        }
        @media(min-width:1024px){
            width: 275px;
        }
}
.header_section .header_middle{
    order: 3;
    width: 100%;
        @media(min-width:768px){
            order: 2;
            width: calc(100% - 415px);
        }
        @media(min-width:1024px){
            order: 2;
            width: calc(100% - 480px);
        }
}
.search_box_wrapper{
    margin-bottom: 10px;
        @media(min-width:768px){
            margin-bottom: 0;
        }
}
.search_box{
    position: relative;
    margin: 0px 10px;
}
.search_box .search_control{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    border-radius: 8px;
    padding: 0px 40px 0px 15px;
}
.header_section .search_box .search_control{
    background-color: #ebebeb;
}
.search_box .search_icon{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search_box .search_icon svg{
    width: 26px;
}
.sign_btn_wrapper{
    margin: 11px;
}
.login_btn{
    display: flex;
    align-items: center;
    height: 32px;
    padding: 7px 20px;
    border-radius: 5px;
    width: 100%;
    background: var(--primary_color);
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

.header_search_box {
    display: none;
    transition: opacity 0.3s ease-in-out;
}
.header_search_box.visible {
    display: block;
}

@media(min-width:1024px){
    .language.mb_none{
        display: block;
    }
}




