@font-face {
    font-family: 'UTM_HelvetIns';
    src: url('./fonts/UTMHelvetIns.eot');
    src: url('./fonts/UTMHelvetIns.eot') format('embedded-opentype'), url('./fonts/UTMHelvetIns.woff')
    format('woff2'), url('./fonts/UTMHelvetIns.woff') format('woff'), url('./fonts/UTMHelvetIns.ttf')
    format('truetype'), url('./fonts/UTMHelvetIns.svg#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'UTM_Cookies';
    src: url('./fonts/UTMCookies.eot');
    src: url('./fonts/UTMCookies.eot') format('embedded-opentype'), url('./fonts/UTMCookies.woff')
    format('woff2'), url('./fonts/UTMCookies.woff') format('woff'), url('./fonts/UTMCookies.ttf')
    format('truetype'), url('./fonts/UTMCookies.svg#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: "UVNTinTucHep";
  src: url("./fonts/UVNTinTucHepR.eot"); /* IE9 Compat Modes */
  src: url("./fonts/UVNTinTucHepR.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("./fonts/UVNTinTucHepR.otf") format("opentype"), /* Open Type Font */
    url("./fonts/UVNTinTucHepR.svg") format("svg"), /* Legacy iOS */
    url("./fonts/UVNTinTucHepR.ttf") format("truetype"), /* Safari, Android, iOS */
    url("./fonts/UVNTinTucHepR.woff") format("woff"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'Roboto_Bold';
    src: url('./fonts/Roboto-Bold.eot');
    src: url('./fonts/Roboto-Bold.eot') format('embedded-opentype'), url('./fonts/Roboto-Bold.woff')
    format('woff2'), url('./fonts/Roboto-Bold.woff') format('woff'), url('./fonts/Roboto-Bold.ttf')
    format('truetype'), url('./fonts/Roboto-Bold.svg#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face{
  font-family: OpenSans;
  src:url(../fonts/OPENSANS-REGULAR.TTF)
}
@font-face{
  font-family: UTM;
  src:url(../fonts/UTMAvoBold.ttf)
}
@font-face{
  font-family:Roboto-Regular;
  src:url(../fonts/ROBOTO-REGULAR.TTF)
}
body {
    font-size: 14px;
    font-family: Roboto-Regular;
    overflow-x: hidden;
    color: #000;
}
.container{
    max-width: 1200px;
    padding: 0;
}
/*header*/
.header_top{
    background: #fff;
    z-index: 9;
}
.header_top.fixed{
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0 5px 5px #e6e6e6;
}
.logo img{
    max-width: 100%;
    height: 108px;
}
.search_top{
    padding: 12px 10px;
    cursor: pointer;
    margin-left: 15px;
}
.hotline_top{
    display: inline-block;
    margin-top: 5px;
    padding: 6px 15px;
    border: 1px solid #ec171f;
    border-radius: 15px;
}
.hotline_top a{
    font-weight: bold;
    color: #ec171f;
}
@media(min-width: 1200px){
    .search_header{
        position: absolute;
        top: 40px;
        right: 0;
        width: 350px;
        opacity: 0;
        pointer-events: none;
        margin-top: 40px;
        transition: all 0.4s;
        z-index: 9;
    }
    .search_header.active{
        opacity: 1;
        pointer-events: all;
        margin-top: 0;
    }
}
.search_header input{
    height: 45px;
    line-height: 45px;
    border-radius: 25px;
}
.search_header input:focus{
    box-shadow: none;
}
.search_header .search{
    height: 43px;
    padding: 0px 20px;
    font-size: 18px;
    background: #fff;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    position: absolute;
    right: 1px;
    top: 1px;
    color: #000;
    border: 0;
    outline: 0;
}
.menu_main .nav.is-fixed {
    position: relative;
}
/*===========MENU==============*/
.nav-dropdown {
    display: none;
}
@media (min-width: 992px) {
    .nav-container{
        width: 100%;
    }
    .nav-menu{
        display: flex;
        justify-content: flex-end;
    }
    .nav-menu > .menu-item {
        position: relative;
    }
    .nav-menu > .menu-item > .menu-link {
        display: inline-block;
        padding: 15px;
        color: #89191d;
        font-size: 15px;
        text-transform: uppercase;
    }
    .nav-menu > .menu-item:hover > .menu-link {
        color: #000;
    }
    .nav-menu > .has-dropdown:after {
        position: absolute;
        right: 0;
        bottom: 13px;
        font-size: 14px;
        content: "\f107";
        font-family: FontAwesome;
        color: #333;
    }
    .nav-menu > .menu-item:hover.has-dropdown:after {
        color: #000;
    }
    .has-dropdown:hover:after{
        color: #000;
    }
    .nav-dropdown {
        box-shadow: 0 0 5px 3px #e6e6e6;
        left: 0;
        display: block;
        opacity: 0;
        position: absolute;
        top: 100%;
        width: 210px;
        visibility: hidden;
        -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
        z-index: 9;
    }
    .has-dropdown:hover > .nav-dropdown {
        visibility: visible;
        opacity: 1;
        -webkit-transition: all 0.35s linear;
        -moz-transition: all 0.35s linear;
        -o-transition: all 0.35s linear;
        transition: all 0.35s linear;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .nav-dropdown > .menu-item {
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #e6e6e6;
    }
    .nav-dropdown .menu-item:last-child {
        border-bottom: none;
    }
    .nav-dropdown > .menu-item > .menu-link {
        color: #333;
        display: block;
        padding: 10px;
    }
    .nav-dropdown .has-dropdown:after {
        position: absolute;
        top: 10px;
        right: 5px;
        font-size: 14px;
        content: "\f105";
        font-family: FontAwesome;
    }
    .nav-dropdown > .menu-item:hover > .menu-link,
    .nav-dropdown > .nav-dropdown > .menu-item:hover > .menu-link {
        color: #e51d2a;
    }
    .nav-dropdown .nav-dropdown {
        z-index: 998;
        top: -1px;
        left: 215px;
    }
}
@media (max-width: 991px) {
    .opacity_menu.open_opacity {
        content: " ";
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        position: fixed;
        top: 0px !important;
        left: 0px;
        z-index: 99;
    }
    .icon_close{
        width: 15px;
        height: 15px;
        stroke-width: 1.5px;
        position: absolute;
        right: 15px;
        top: 15px;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    }
    .icon_close:hover{
        transform: translate(0%, 0%) rotate(360deg);
    }
    .nav-toggle {
        padding: 15px 10px;
        font-size: 22px;
    }
    .nav-container {
        position: fixed;
        background: #fff;
        top: 0;
        left: 0;
        z-index: 9999;
        overflow-y: auto;
        visibility: hidden;
        width: 70%;
        padding-top: 30px;
        height: 100%;
        min-height: 100%;
        -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    .nav-container.is-visible {
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    .menu-item {
        display: block;
        width: 100%;
        border-top: 1px solid #e6e6e6;
    }
    .menu-item .menu-link{
        color: #333;
        display: inline-block;
        padding: 10px;
    }
    .nav-menu >  .menu-item:first-child {
        border-top: 0;
    }
    .nav-dropdown .menu-item {
        border-bottom: 0;
        border-top: 1px solid #e6e6e6;
    }
    .nav-dropdown > .menu-item > .menu-link {
        color: #333;
        padding: 10px 20px;
    }
    .nav-dropdown .nav-dropdown .menu-item > .menu-link {
        padding: 10px 30px;
    }
    .nav-dropdown .nav-dropdown .nav-dropdown .menu-item > .menu-link {
        padding: 10px 40px;
    }
    .nav-menu > .menu-item.is-active >.menu-link,
    .has-dropdown.is-active > .menu-link,
    .has-dropdown.is-active:after{
        color: #e84545;
    }
    .nav-dropdown.is-visible{
        display: block;
    }
    .has-dropdown {
        position: relative;
        cursor: pointer;
    }
    .has-dropdown:after {
        font-size: 18px;
        position: absolute;
        top: 0;
        right: 1rem;
        bottom: 0;
        height: 42px;
        content: "+";
        color: #333;
        line-height: 40px;
    }
    .has-dropdown.is-active:after {
        content: "\2013";
    }
    .logo img{
        display: block;
        margin: 0 auto;
        max-height: 75px;
    }
    .search_top{
        padding: 20px 0;
    }
    .search_header {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9999;
        overflow-y: auto;
        visibility: hidden;
        width: 80%;
        height: 100%;
        min-height: 100%;
        background: #fff;
        padding: 40px 15px 15px 15px;
        -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
    .search_header.active {
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    .search_header .search {
        right: 16px;
        top: 41px;
    }
}
/*=========*/
.title_section{
    font-size: 30px;
    margin-bottom: 20px;
    font-family: OpenSans;
}
.product_item{
    margin-bottom: 45px;
}

.pro_name{

    padding: 17px 7px 17px 7px;
    background-color: #057DCD;

}
.img_pro{
    border: 1px solid #ffe9e9;
    display: block;
    position: relative;
    
    overflow: hidden;
    height: 285px;
}
.nut{
    margin-left: 40px;
    text-align: center;
    width: 140px;
    height: 44px;
    border: 1px solid #000;
    border-radius: 27px;
    z-index: 1;
    font-size: 14px;
    font-weight: 400;
    color: #000 !important;
    background: transparent !important;
    margin-top: 25px;
    padding: 11px;

}
.mota_sp{
    line-height: 24px;
    margin-top: 10px;
}
.tieude_sp{
    margin-top: 15px;
}
.img_pro img{
    height: 278px;
}
.img_pro img{
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -ms-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.img_pro:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


.pro_name a{
    margin: 5px 0;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    min-height: 20px;
}
.pro_name a:hover{
    color: #8a191d;
}
.product_item_description{
    height: 85px;
    overflow-y: hidden;
    margin-bottom: 10px;
}
.box_price span{
    font-weight: bold;
    color: #da251c;
}
.like_share{
    display: flex;
}
@media(max-width: 576px){
    .container{
        width: 100%;
        padding: 0 15px;
    }
    .img_pro{
        height: 150px;
    }
}
/*background-color: rgba(0, 0, 0, 0.65);*/

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}
del {
    font-size: 12px;
    color: #999;
}

/*===========All=============*/ 
.w_100 {
    width: 100%;
}

.w_40 {
    width: 40%;
}

.w_60 {
    width: 60%;
}

/*==========Main============*/
.menu_mb{
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 999;
    padding: 1px 15px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.3);
}
#go_top {
    position: fixed;
    width: 24px;
    height: 25px;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    font-weight: bold;
    background-size: 100% 100%;
    display: inline-block;
    z-index: 100;
    bottom: 25px;
    right: 25px;
}
.img_logo_mb{
    max-height: 60px;
    max-width: 70%
}
.menu_main .nav.is-fixed{
    position: relative;
    z-index: 105;
}

/*======================================================================================================================*/
.qts_header_top{
    background: #f5811e;
}
.list_add_hd{
    font-size: 12px;
    color: #ffffff;
    font-weight: bold;
}
.add_hd_top{
    display: block;
    float: left;
    margin-right: 15px;
    line-height: 20px;
    padding: 6px 0px;
    color: #FFFFFF;
}
.add_hd_top i.fa{
    font-size: 14px;
    float: left;
    line-height: 20px;
    margin-right: 5px;
}
a.add_hd_top:hover{
    color: #ffffff;
}
.list_lag_hd>a{
   display: inline-block;
    float: left;
    line-height: 20px;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
    padding: 6px 0px;
}
.list_lag_hd>a:hover{
   text-decoration: underline;
}
.list_lag_hd>a>img{
    float: left;
    margin-top: 2px;
    margin-right: 5px;
}
.logo_pc{
    margin: 8.5px 0px;
}
.logo_pc img{
    max-width: 100%;
    width: 145px;
}
.slogan_header{
    text-align: center;
}
.main_slogan_hd{
    font-size: 30px;
    text-transform: uppercase;
    font-family: UTM_HelvetIns;
    color: #006279;
}
.sub_slogan_hd{
    font-family: UTM_Cookies;
    font-size: 21px;
    color: #f5811e;
    text-transform: uppercase;
}
.slogan_header{
    margin-top: 25px;
}
.form_search{
    float: right;
    width: 260px;
    max-width: 100%;
    margin-top: 54px;
    margin-bottom: 15px;
}
.form_search input.form-control{
    height: 36px;
    border-radius: 0px;
    border: 1px solid #e1e1e1;
    border-right: 0px;
}
.form_search button.btn.btn-default{
    height: 36px;
    border-radius: 0px;
    border: 1px solid #e1e1e1;
    border-left: 0px;
    color: #ffffff;
    background: #01642e;
    font-size: 16px;
    font-size: 16px;
    background-image: url(../img/icon_search.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 41px;
}
.qts_head_bot{
    background: #006279;
}
.icon_home_menu{
    font-size: 16px;
    float: left;
    line-height: 15px;
    margin-right: 11px;
}/*end header*/
/*begin footer*/


/*==========Main============*/
.menu_mb{
    position: fixed;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 1px 15px;
    border-bottom: 1px solid #ccc;
}
#go_top {
    position: fixed;
    width: 24px;
    height: 25px;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    font-weight: bold;
    background-size: 100% 100%;
    display: inline-block;
    z-index: 100;
    bottom: 25px;
    right: 25px;
}
.img_logo_mb{
    max-height: 60px;
    max-width: 70%;
}
.menu_main .nav.is-fixed{
    position: relative;
    z-index: 105;
}
#go_top {
    position: fixed;
    width: 30px;
    height: 30px;
    background: #53d267;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    font-weight: bold;
    background-size: 100% 100%;
    display: inline-block;
    z-index: 100;
    bottom: 25px;
    right: 10px;
    border-radius: 2px;
}
.icon_next{
    font-size: 16px;
    padding-top: 6px;
}
#go_top:hover {
    opacity: 0.85;
}
.qts_footer_top{
    background: #561416;
    padding: 30px 0px;
}
.title_footer{
    font-size: 15px;
    line-height: 21px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0px;
}
.ul_ass> li {
    color: #ffffff;
    font-size: 15px;
    line-height: 23px;
    padding-left: 20px;
    position: relative;

}

.ul_ass> li:before{
    content: "";
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 3px;
    background: url("./img/bf_home_ft.png") no-repeat;
    width: 16px;
    height: 15px;
}
.footer_left_top > p {
    color: #ffffff;
    font-size: 15px;
    line-height: 29px;
    position: relative;
    padding-left: 20px;
}
.bf_phone_ft:before{
    content: "";
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 4px;
    background: url("./img/bf_phone_ft.png") no-repeat;
    width: 16px;
    height: 15px;
}
.bf_gmail_ft:before{
    content: "";
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 6px;
    background: url("./img/bf_sms.png") no-repeat;
    width: 16px;
    height: 10px;
}
.bf_web_ft:before{
    content: "";
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 3px;
    background: url("./img/bf_web.png") no-repeat;
    width: 16px;
    height: 14px;
}
.ul_lick_msh> li{
   padding: 5px 0px;
}
.img_msh{
    display: inline-block;
}
.img_msh> img {
    width: 27px;
    height: 27px;
    margin-right: 10px;
}
.text_mxh{
    color: #ffffff !important;
    font-size: 13px;
}
.text_mxh:hover{
    text-decoration: underline;
}
.qts_footer_bot{
    padding: 10px 0px;
    background: #351113;
}
.left_footer_bot{
    color: #ffffff;
    font-size: 12px;
    line-height: 22px;
    float: left;
}
.left_footer_bot> span{
    color: #47d4ff;
}
.right_footer_bot{
    color: #ffffff;
    font-size: 12px;
    line-height: 22px;
    float: right;
}
.right_footer_bot> span{
    position: relative;
    display: inline-block;
    padding-left: 20px;
}
.right_footer_bot> span:before{
    content: "";
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 3px;
    background: url("./img/bf_footer_bot.png") no-repeat;
    width: 12px;
    height: 13px;
}/*end footer*/
/*begin danhmuc*/.ul_dmpsl{

    padding: 3px 20px 15px;

    background-color: #fff;

    border: 1px solid #ddd;

    box-shadow: 2px 2px 10px 0 rgba(0,0,0,0.05);

    margin-bottom: 15px;

}

.ul_dmpsl> li {

    font-size: 15px;

    line-height: 21px;

	list-style:none;

    border-top: 1px solid #ececec;

}

.ul_dmpsl> li:last-child{

    border-bottom: none;

}

.ul_dmpsl> li:first-child{

    border-top: none;

}

.ul_dmpsl> li > a {

    color: #000000;

    padding: 7px 0px;

    display: inline-block;

}

.ul_dmpsl> li > a:hover{

    color: #DD3333;

}

/*update 25/12/2017 ----->*/

 .ul_dmpsl_item>li{

     padding: 7px 0px;

     padding-left: 15px;

	 list-style:none;

     border-bottom: 1px solid #ececec;

 }

.ul_dmpsl_item>li>a{

    font-size: 14px;

}

.ul_dmpsl_item>li>a:hover i{

    margin-right: 6px;

    -webkit-transition: all 0.2s linear;

    -moz-transition: all 0.2s linear;

    -o-transition: all 0.2s linear;

    -ms-transition: all 0.2s linear;

    transition: all 0.2s linear;

}

.ul_dmpsl_item>li>a:hover{

    color: #DD3333;

}

.ul_dmpsl_item>li i{

    margin-right: 3px;

    font-size: 14px;

    -webkit-transition: all 0.2s linear;

    -moz-transition: all 0.2s linear;

    -o-transition: all 0.2s linear;

    -ms-transition: all 0.2s linear;

    transition: all 0.2s linear;

}

.ul_dmpsl_item>li:last-child{

    border-bottom: none;

}

.title{

    margin: 0px;
    font-size: 18px;
    text-align: center;
    background: #561416;
    padding: 10px;
    color: #fff;
}


/*end danhmuc*/
/*begin tintucnoibat*/@font-face {
    font-family: 'Roboto_Regular';
    src: url('./fonts/Roboto-Regular.eot');
    src: url('./fonts/Roboto-Regular.eot') format('embedded-opentype'), url('./fonts/Roboto-Regular.woff')
    format('woff2'), url('./fonts/Roboto-Regular.woff') format('woff'), url('./fonts/Roboto-Regular.ttf')
    format('truetype'), url('./fonts/Roboto-Regular.svg#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
} 
.title_dmsp{
    background-color: #ff0000;
    padding: 8px 20px 8px;
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
.box_sp_news{
    padding: 0px 20px 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    box-shadow: 2px 2px 10px 0 rgba(0,0,0,0.05);
}
.product_list_widget> li {
    list-style: none;
    padding: 10px 0 5px 75px;
    min-height: 80px;
    position: relative;
    overflow: hidden;
    vertical-align: top;
    line-height: 1.33;
}
ul.product_list_widget li a:not(.remove) {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    line-height: 19.5px;
    /* height: 40px; */
    text-transform: uppercase;
    max-height: 38px;
    font-family: Roboto_Regular;
    color: #333;
}
.product_list_widget> li a:hover{
    color: #DD3333 !important;
}
ul.product_list_widget li img {
    top: 10px;
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
    object-fit: cover;
    object-position: 50% 50%;
}
span.amount {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    color: #333;
    font-size: 13px;
    line-height: 21px;
    font-weight: bold;
    font-family: Roboto_Regular; 
}
.woocommerce-Price-currencySymbol {
    font-size: 14px;
    font-weight: bold;
    font-family: Roboto_Regular; 
}
ul.product_list_widget li+li {
    border-top: 1px solid #ececec;
}
 /*end tintucnoibat*/
/*begin sanphamnoibat*//*end sanphamnoibat*/
/*begin video*//*end video*/
/*begin hotrotructuyen*//*=============ho tro truc tuyen===============*/
    		.aside-tit {
    			font-size: 13px;
    			font-weight: bold;
    			text-transform: uppercase;
    			background: #49a823;
    			color: #fff;
    			padding: 10px 20px;
    			margin: 0;
    		}

    		.aside-tit:before {
    			content: url(./img/aside-tit-bf.png);
    			margin-left: -10px;
    			margin-right: 5px;
    		}


    		.box-hotro {
    			margin-bottom: 20px;
    		}

    		.box-hotro .bder {
    			margin-bottom: 0;
    			border: 1px solid #dddddd;
    		}

    		.box-hotro img {
    			width: initial;
    		}

    		.box-hotro img.sup {
    			width: 100%;
    		}

    		.box-hotro .as-hotline {
    			padding: 8px;
    			max-width: 300px;
    			margin: auto;
    		}

    		.box-hotro .as-hotline .red {
    			font-family: arial;
    			font-weight: bold;
    			font-size: 18px;
    			color: #ff0000;
    			padding-left: 8px;
    		}

    		.box-hotro .as-hotline .tuvan {
    			position: relative;
    			padding-left: 14px;
    			padding-bottom: 10px;
    			margin-bottom: 15px;
    		}

    		.box-hotro .as-hotline .tuvan:last-child {
    			border-bottom: none;
    		}

    		.box-hotro .as-hotline .tuvan:before {
    			content: url("./img/i-tuvan.png");
    			position: absolute;
    			top: -3px;
    			left: 0;
    		}

    		.box-hotro .as-hotline .tuvan .tuvan-text {
    			display: inline-block;
    			font-size: 14px;
    			font-family: Roboto_Bold;
    		}

    		.box-hotro .as-hotline .tuvan .tuvan-text a {
    			color: #d00000;
    		}

    		.box-hotro .as-hotline .tuvan .tuvan-text a:hover {
    			text-decoration: underline;
    		}

    		.box-hotro .as-hotline .tuvan .tuvan-text .black {
    			color: #0342ac;
    		}

    		.box-hotro .as-hotline .tuvan .tuvan-i {
    			float: right;
    			margin-top: 3px;
    			margin-right: 5px;
    		}

    		.box-hotro .as-hotline .tuvan .tuvan-i img {
    			width: initial;
    			margin-left: 3px;
    		}
    		.name_tuvan {
    			font-family: Roboto_Regular;
    		}

            .tit_right_home {
    margin: 0px;
    color: #477d00;
    font-family: Arial;
    font-size: 18px;
    overflow: hidden;
    text-transform: uppercase;
    background: #32338f;
    text-align: center;
    padding: 13px 0;
}

.tit_right_home>a, .tit_right_home>span {
    display: block;
    color: #fff;
}
    		/*================end ho tro==================*//*end hotrotructuyen*/
/*begin counter*//*end counter*/

/*begin fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*//*end fanpage*/
/*begin sanphamnoibat_home*/
@font-face {
  font-family: 'Roboto-Bold';
  src: url('./fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),  url('./fonts/Roboto-Bold.woff') format('woff'), url('./fonts/Roboto-Bold.ttf')  format('truetype'), url('./fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto-Regular';
  src: url('./fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),  url('./fonts/Roboto-Regular.woff') format('woff'), url('./fonts/Roboto-Regular.ttf')  format('truetype'), url('./fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

.duan_hot .tit_hot {
 text-align: center;
 font-family: 'Roboto-Regular';
 font-size: 24px;
 color: #0342ac;
 text-transform: uppercase;
 margin-bottom: 60px;
}
.tit_hot a {
    color: #0342ac;
}
.tit_hot a:hover {
    color: #ff7200;
}
.box_hot {
    position: relative;
}
.txt_box{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #00000054;
    text-align: center;

}
.txt_box a{
    font-size: 24px;
    font-family: UVNTinTucHep;
    text-transform: uppercase;
    color: #fff;
   text-overflow: ellipsis;
   overflow: hidden;
   white-space: nowrap;
   line-height: 50px;
}
.txt_box:hover a{
    color: #fff;
}
/*-----------------------------*/
.slider_proj .owl-nav {
    top: -30px;
    width: 65px;
    left: 0;
    right: 0;
    margin: auto;
}
.slider_proj .owl-nav .icon-slider {
    font-size: 25px;
     width: 25px;
    height: 25px;
    line-height: 23px;
    text-align: center;
    border: 1px solid #e65951;
    color: #e65951;
}/*end sanphamnoibat_home*/
/*begin sanphambanchay_home*//*end sanphambanchay_home*/
/*begin sanphammoi_home*//*end sanphammoi_home*/
/*begin sanphamkhuyenmai_home*//*end sanphamkhuyenmai_home*/
/*begin danhmucsanpham_home*//*end danhmucsanpham_home*/



/*begin partner_home*/

@font-face {
    font-family: 'UVN_HongHaHepBold';
    src: url('./fonts/UVNHongHaHepBold.eot');
    src: url('./fonts/UVNHongHaHepBold.eot') format('embedded-opentype'), url('./fonts/UVNHongHaHepBold.woff')
    format('woff2'), url('./fonts/UVNHongHaHepBold.woff') format('woff'), url('./fonts/UVNHongHaHepBold.ttf')
    format('truetype'), url('./fonts/UVNHongHaHepBold.svg#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*==========Main============*/
.menu_mb{
    position: fixed;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 1px 15px;
    border-bottom: 1px solid #ccc;
}
#go_top {
    position: fixed;
    width: 24px;
    height: 25px;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    font-weight: bold;
    background-size: 100% 100%;
    display: inline-block;
    z-index: 100;
    bottom: 25px;
    right: 25px;
}
.img_logo_mb{
    max-height: 60px;
    max-width: 70%;
}
.menu_main .nav.is-fixed{
    position: relative;
    z-index: 105;
}
#go_top {
    position: fixed;
    width: 30px;
    height: 30px;
    background: #53d267;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    font-weight: bold;
    background-size: 100% 100%;
    display: inline-block;
    z-index: 100;
    bottom: 25px;
    right: 10px;
    border-radius: 2px;
}
.icon_next{
    font-size: 16px;
    padding-top: 6px;
}
#go_top:hover {
    opacity: 0.85;
}
.qts_lider_box{
    padding: 30px 0px;
}
.title_slider_box{
  
    text-align: center;
    color: #333333;
    font-size: 25px;
    text-transform: uppercase;
    font-family: UVN_HongHaHepBold;
    margin: 0;
    position: relative;
     background: url("./img/bf_tit_sld.png") repeat-x;
     background-position: center center;
}
.title_slider_box> span{
    /*position: absolute;
    left: 35%;*/
    top: 0px;
    z-index: 10;
    background: #ffffff;
    padding: 0px 30px;
    display: inline-block;
}
/*.title_slider_box:before{
    content: "";
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 12px;
   
    width: 100%;
    height: 11px;
    z-index: 1;
}*/
.slider_content .item{
    border: 1px dotted #8b8b8b;
}
.pf_snd_border{
    padding: 20px 15px;
    border: 1px solid #cccccc;
}
.pf_snd_border{
    margin-top: 15px;
}
.slider_features {
border: 1px solid #ccc;
margin-bottom: 25px;
padding: 13px 19px;
}
.slider_features .item img {
border: 1px dotted #ccc;
}/*end partner_home*/
    
    /*begin root_content*//*end root_content*/

    /*begin title_left*//*end title_left*/
    /*begin title_right*//*end title_right*/
    /*begin title_tintuchome_home*//*end title_tintuchome_home*/
/*begin banner_home*//*end banner_home*/
/*begin banner*//*end banner*/
    /*begin product_detail*//*end product_detail*/
    /*begin title_danhmuc2*//*end title_danhmuc2*/
    /*begin title_danhmucsanpham*//*end title_danhmucsanpham*/
    /*begin title_tintuc*//*end title_tintuc*/
    /*begin title_video*//*end title_video*/
    /*begin title_partner*//*end title_partner*/
    /*begin tintuchome_home*//*end tintuchome_home*/

/*begin video_home*//*end video_home*/
/*begin pro_detail*/
/*==========Main============*/
.menu_mb{
    position: fixed;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 1px 15px;
    border-bottom: 1px solid #ccc;
}
#go_top {
    position: fixed;
    width: 24px;
    height: 25px;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    font-weight: bold;
    background-size: 100% 100%;
    display: inline-block;
    z-index: 100;
    bottom: 25px;
    right: 25px;
}
.img_logo_mb{
    max-height: 60px;
    max-width: 70%
}
.menu_main .nav.is-fixed{
    position: relative;
    z-index: 105;
}


.menu_left_prod{
    border: 1px solid #cccccc;
}
.menu_cate_prod_l{
    background: #ffffff;
    position: relative;
    z-index: 30;
    /*padding-left: 15px;*/
    /*padding-right: 15px;*/
}

.menu_cate_prod_l>li{
    position: relative;

}
.menu_cate_prod_l>li:last-child{
    border-bottom: 0;
}
.menu_cate_prod_l>li>a{
    border-bottom: 1px solid #cccccc;
    display: inline-block;
    width: 100%;
    background: -moz-linear-gradient(top,#FFFFFF,#f4f4f4);
    background: -webkit-linear-gradient(top,#FFFFFF,#f4f4f4);
    font-size: 14px;
    text-transform: uppercase;
    color: #000000;
    line-height: 20px;
    padding: 8px 5px 8px 30px;
}
.menu_cate_prod_l li:last-child a{
    border-bottom: 0;
}
i.fa.fa-caret-right {
    float: right;
    padding: 3px 0;
}


.sub_menu_cate_prod{
    display: none;
    width: 270px;
    position: absolute;
    top: 0px;
    left: 100%;
    border-left: 1px solid #cccccc;


}
.menu_cate_prod_l>li:hover .sub_menu_cate_prod{
    display: block;
    z-index: 999;
    left: 100%;

}
.sub_menu_cate_prod>li>a{
    display: inline-block;
    width: 100%;
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    line-height: 20px;
    padding: 8px 5px 8px 40px;
    background: rgba(255, 255, 255, 0.8);
}
.sub_menu_cate_prod>li:last-child>a{
    border-bottom: 0;
}
/*.menu_cate_prod_l li:hover {*/
/*background: #914d0a;*/
/*color: white !important;*/
/*}*/
.menu_cate_prod_l>li:hover>a{
    color: #127791 !important;
    font-weight: bold;
}
/*end menu danh muc*/
.sub_menu_cate_prod>li:hover .dropdown_cate>a:after{
    color: white;
}

.sub_menu_cate_prod > li:hover > a{
    font-weight: bold;
    color: #127791;
}
.sub_menu_cate_prod li a{
    position: relative;
}
.sub_menu_cate_prod li a:before{
    content: url("./img/right.png");
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 25px;
}

.tit_left {

    margin-top: 0;
    margin-bottom: 0;
    background: -moz-linear-gradient(top,#FFFFFF,#f4f4f4);
    background: -webkit-linear-gradient(top,#FFFFFF,#f4f4f4);
    border-bottom: 1px solid #cccccc;
}
.tit_left span {
    text-align: center;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: white;
    padding: 13px 10px 13px 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 230px;
    width: 100%;
    line-height: 18px;
    background: url("./img/bg_tit.png") no-repeat;
}
.menu_cate_prod_l>li>a:before {
    content: url("./img/right.png");
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 15px;
}
.tit_left .fa{
    margin-right: 15px;
}

.row_8{
    margin: 0 -8px;
}
.row_7{
    margin: 0 -7px;
}
.sub_menu_cate_prod > li > .sub_menu_cate_prod{
    display: none !important;
    border-left: 0 !important;
}
.sub_menu_cate_prod > li:hover > .sub_menu_cate_prod{
    display: block !important;
}
.sub_menu_cate_prod > li > .sub_menu_cate_prod > li > a:before{
    display: none !important;
}
.sub_menu_cate_prod > li > .sub_menu_cate_prod > li{
    margin-left: 5px !important;
}
/*.owl-dots{
    display: none;
}*/
.phone_sp{
    margin: 10px 0;
}
.phone_sp span{
    color: #ae0001;
    font-weight: bold;
    font-size: 18px;
}
.phone_sp img{
    margin-right: 5px;
}
.email_sp{
    color: #999999;
}
.email_sp a{
    font-size: 14px;
    color: #403e3e;
}
.txt_sp {
    font-size: 14px;
    color: #525252;
    font-weight: bold;
}
.nb_sp{
    color: #005fb1;
}
.name_sp .fa{
    float: left;
    margin-right: 10px;
    margin-top: 4px;
}
.txt_sp{
    overflow: hidden;
}
.list_sp{
    padding: 0 20px
}
.zs img{
    margin-top: 5px;
}
.list_sp li{
    padding: 15px 10px;
    border-bottom: 1px dashed #cccccc;
}
.suport{
    border: 1px solid #cccccc;
    padding-bottom: 20px;
    background: #f3f3f3;
}
.video{
    border: 1px solid #cccccc;
    background: #f2f2f2;
    border-radius: 5px;
}
.box_video{
    padding: 5px;
}
.name_news{
    margin: 0;
    font-size: 12px;
    font-weight: bold;
}
.name_news a{
    color: #000000;
}
.des_news{
    color: black;font-size: 12px;
}
.list_news img{
    float: left;
    margin-right: 5px;
    width: 90px;
    height: 67px;
}
.list_news img:hover{
    opacity: 0.8;
}
.sub_news{
    overflow: hidden;
    text-align: justify;
}
.name_news{
    line-height: 17px;
}
.name_news a:hover{
    text-decoration: underline;
}
.list_news{
    padding: 0px 10px;
}
.list_news li{
    padding: 10px 0;
}
.news{
    background: #f2f2f2;
    border: 1px solid #cccccc;
}
.tit_main_detail{
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    border-bottom: 1px solid #d3d3d3;
    text-align: left !important;
}
.tit_main_detail a{
    color: #006279;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid #006279;
    margin-bottom: -1px;
}
.row_7{
    margin: 0 -7px;
}
.row_8{
    margin: 0 -8px;
}
.prod {
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.prod img {
    width: 100%;
    padding: 2px;
    border: 1px solid #d3d3d3;
}
.prod h3.main {
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    font-size: 14px;
    color: #333;
    margin-top: 10px;
    margin-bottom: 5px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.prod .price {
    color: #ac0001;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}
.prod .more {
    font-size: 12px;
    color: #000;
    display: inline-block;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e6e5e5));
    background: -webkit-linear-gradient(#fff, #e6e5e5);
    background: -o-linear-gradient(#fff, #e6e5e5);
    background: linear-gradient(#fff, #e6e5e5);
    padding: 0px 20px;
    border: 1px solid #d3d3d3;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.prod:hover {
    -webkit-box-shadow: 0 10px 10px -9px rgba(0, 0, 0, 0.7), 0 0 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 10px -9px rgba(0, 0, 0, 0.7), 0 0 3px rgba(0, 0, 0, 0.5);
}
.prod h3:hover {
    color: #2973b3;
}
.prod .more:hover, .prod .more:focus {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(60%, #e6e5e5));
    background: -webkit-linear-gradient(#fff, #e6e5e5 60%);
    background: -o-linear-gradient(#fff, #e6e5e5 60%);
    background: linear-gradient(#fff, #e6e5e5 60%);
}
.headingdt {
    text-align: center;
    position: relative;
    text-transform: uppercase;
    color: #00a7e4;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.headingdt:before {
    position: absolute;
    content: '';
    width: 320px;
    height: 1px;
    background: #00a7e4;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}
.headingdt:after {
    content: url(../img/i-visa.png);
    position: absolute;
    bottom: -24px;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}
.slider_dt img{
    border: 1px solid #cccccc;
}
.slider_dt .owl-nav{
    top: 45%;
}

.qts_footer_top .ft-name {
     font-weight: bold;
    color: white;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0;
    margin-bottom: 10px;
}
.txt_add{

    font-size: 12px;
    color: white;
    line-height: 19px;
}
.link_ft a{
    margin-right: 5px;
}
.fb-area img{
    max-width: 300px;
    width: 100%;
}
.map-area img{
    max-width: 300px;
    width: 100%;
}
.phantrang_prod {
    text-align: right;
}
.phantrang li {
    display: inline-block;
    padding-right: 0px;
}
.phantrang>li:first-child>a, .phantrang>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.phantrang>li:last-child>a, .phantrang>li:last-child>span {
    margin-left: 0;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.phantrang>.active>a, .phantrang>.active>span, .phantrang>.active>a:hover, .phantrang>.active>span:hover, .phantrang>.active>a:focus, .phantrang>.active>span:focus {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #fc3f43;
    border-color: #fc3f43;
}
.phantrang>li>a, .phantrang>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #000;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0px;
}
.phantrang>li>a:hover, .phantrang>li>span:hover, .phantrang>li>a:focus, .phantrang>li>span:focus {
    color: #fff;
    background-color: #fc3f43;
    border-color: #fc3f43;
}
.phantrang{
    margin: 0;
}


.contact_daily {
    padding: 90px 0;
    background: url(img/bg_2.jpg) no-repeat;
    background-size: 100% 100%;
}

.title_contact_home {
    font-family: VLK;
    font-size: 45px;
    color: #fff;
    text-shadow: 0px 3px 3px #000;
    margin-bottom: 75px;
}

.contact_daily a:hover {
    background: #fff;
    color: #ff6d3a;
    border: 1px solid #ff6d3a;
}
.contact_daily a {
    padding: 10px 50px;
    background: #ff6d3a;
    font-family: UVN;
    font-size: 18px;
    color: #fff;
}


/*==================================================Slider detail=================================================================*/
.gc-icon.gc-icon-download{
    display: none !important;
}
.gc-thumbs-area-next .gc-icon.gc-icon-next:before{
    content: "\f105" !important;
    font: normal normal normal 24px/1 fontawesome !important;
    width: 24px;
    height: 24px;
    text-align: center;
}
.gc-thumbs-area-prev .gc-icon.gc-icon-prev:before{
    content: "\f104" !important;
    font: normal normal normal 24px/1 fontawesome !important;
    width: 24px;
    height: 24px;
    text-align: center;
}
.gc-display-area .gc-icon.gc-icon-next{
    width: 36px !important;
    height: 50px !important;
    right: 10px;
}
.gc-display-area .gc-icon.gc-icon-next:before{
    content: "\f105" !important;
    font: normal normal normal 48px/1 fontawesome !important;
    width: 36px;
    color: #fff;
    height: 50px;
    text-align: center;
}
.gc-display-area .gc-icon.gc-icon-prev{
    width: 36px !important;
    height: 50px !important;
    left: 10px;
}
.gc-display-area .gc-icon.gc-icon-prev:before{
    content: "\f104" !important;
    font: normal normal normal 48px/1 fontawesome !important;
    width: 36px;
    color: #fff;
    height: 50px;
    text-align: center;
}
.gc-overlay-right-icons .gc-icon.gc-icon-next{
    width: 36px !important;
    height: 50px !important;
    text-align: center;
}
.gc-overlay-right-icons .gc-icon.gc-icon-next:before{
    content: "\f105" !important;
    font: normal normal normal 48px/1 fontawesome !important;
    width: 36px !important;
    height: 50px !important;
    color: #fff;
}
.gc-overlay-left-icons .gc-icon.gc-icon-prev{
    width: 36px !important;
    height: 50px !important;
    text-align: center;
}
.gc-overlay-left-icons .gc-icon.gc-icon-prev:before{
    content: "\f104" !important;
    font: normal normal normal 48px/1 fontawesome !important;
    width: 36px !important;
    height: 50px !important;
    color: #fff;
}
.gc-icon.gc-icon-enlarge{
    display: none !important;
}
.gc-overlay-top-icons .gc-icon.gc-icon-close:before{
    content: "\f00d" !important;
    font: normal normal normal 25px/1 fontawesome !important;
    color: #fff;
    width: 24px;
    text-align: center;
}
.glass-case{
    margin: auto;
}
/*===================================================end slider detail======================================================*/
.name_prod_detail{
    font-size: 18px;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 30px;
}
.info_prod_detail{
    font-size: 14px;
    color: black;
    line-height: 20px;
}
.info_prod_detail form button{
    border: 0;
    background: none;
}
.add_detail{
    font-size: 14px;
    color: black;
}
.add_detail img{
    float: left;
    margin-right: 10px;
}
.txt_add_dt{
    overflow: hidden;
}
.add_detail{
    padding-top: 10px;
    border-top: 1px solid #cccccc;
}
.info_prod_detail{
    padding-bottom: 10px;
}
.w_info_dt{
    font-weight: bold;
}
.price_if_dt{
    color: #b80101;
    font-size: 18px;
}
.txt_info_dt img{
    margin-right: 5px;
}
.tab_detail li{
    display: inline-block;
}
.tab_detail li a{
    color: black;
    font-size: 14px;
    text-transform: uppercase;
    padding: 4px 10px 4px 10px;
    display: block;
    line-height: 35px;
    position: relative;
}
.tab_detail li:not(:last-child) a:after{
    content: '|';
    color: black;
    display: inline-block;
    position: absolute;
    top: 6px;
    right: -2px;
}
/*=================================================== effect tab_deatil==================================================*/
.tab_detail>li.active>a,
.tab_detail>li.active>a:hover,
.tab_detail>li.active>a:focus {
   
    background: #006279;
    color: #fff;
}
.tab_detail>li>a:hover, .tab_detail>li>a:focus {
    background: #006279;
    color: #fff;
}
/*=================================================== end effect tab_deatil==================================================*/
ul.tab_detail {
    border-bottom: 1px solid #006279;
}
.tab_detail li a:hover:after, .tab_detail li a:focus:after, .tab_detail li a:active:after {
    display: none;
}
.tab_detail>li.active>a:hover:after, .tab_detail>li.active>a:focus:after, .tab_detail>li.active>a:active:after {
    display: none;
}
.tab_detail>li.active>a:after{
    display: none;
}
.tab-content{
    font-size: 14px;
    color: black;
    padding: 20px 0;
}
.slider_lq .prod{
    margin: 2px;
}
.name_prod_lq {
    font-size: 17px;
    font-family: Roboto_Regular;
    margin: 5px 0;
}

/*end pro_detail*/
/*begin pages_home*/.title_home_page {
    text-align: center;
    margin: 30px 0px;
}
.title_home_page a {
    font-size: 30px;
    color: #0342ac;
    font-family: Roboto-Regular;
    text-transform: uppercase;
}

.item_news_home {
    padding-bottom:30px;
}
.text_home > .des_news_hot > p {
    color: #2b2c36;
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 20px;
    overflow: hidden;
    font-family: Roboto-Regular;
    text-align: justify;
}
.title_right_home{
    color: #89191e;
    font-size: 26px;
    margin: 0px;
    font-family: UTM;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.title_right_home span{
    position: relative;
}
.title_right_home span:before{
    content: "\f10d";
    font-family: FontAwesome;
    font-size: 24px;
    color: #89191e;
    padding-right: 15px;
}
.title_right_home span:after{
    content: "\f10e";
    font-family: FontAwesome;
    font-size: 24px;
    color: #89191e;
    padding-right: 15px;
}
.text_home > .des_news_hot {
    color: #2b2c36;
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 20px;
    overflow: hidden;
    font-family: Roboto-Regular;
    text-align: justify;
}
.lick_me {
    text-align: right;
}
.lick_me > a {
    display: inline-block;
    color: #ffffff;
    background: #ff7200;
    padding: 11px 35px;
    font-size: 13px;
    border-radius: 5px;
}
.lick_me > a  > i {
    padding-left: 10px;
}
/*end pages_home*/
/*begin media_image*//*end media_image*/
/*begin news1*//*end news1*/
/*begin news2*//*end news2*/
/*begin tintucnoibat_home*/
@font-face {
  font-family: 'UVNHongHaHepBold';
  src: url('./fonts/UVNHongHaHepBold.eot?#iefix') format('embedded-opentype'),  url('./fonts/UVNHongHaHepBold.woff') format('woff'), url('./fonts/UVNHongHaHepBold.ttf')  format('truetype'), url('./fonts/UVNHongHaHepBold.svg#UVNHongHaHepBold') format('svg');
  font-weight: normal;
  font-style: normal;
}

.qts_product{
    margin: 20px 0px 0 0;
}
.img_product{
    position: relative;
}
.img_product a img{
    height: 330px;
    object-fit: cover;
}
.mota{
    line-height: 20px;
    max-height: 64px;
    overflow: hidden;
}
.click_me{
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}
.click_me span{
    line-height: 50px;
}
.click_me> a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #b61f00;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    border-radius: 5px;
}
.click_me> a:hover {
    opacity: 0.8;
}

.full_product{
    margin-bottom: 30px;
    /*border: 1px solid #dddddd;*/
}
.name_sp a{
    display: block;
    font-size: 18px;
    line-height: 25px;
    margin: 10px 0;
    height: 55px;
    overflow-y: hidden;
    color: #333;
    font-weight: bold;
}
.name_sp> a:hover{
    opacity: 0.8;
}/*end tintucnoibat_home*/
/*begin tintucmoinhat_home*//*end tintucmoinhat_home*/
/*begin ykienkhachhang_home*/
@font-face {
    font-family: 'UVN_HongHaHepBold';
    src: url('./fonts/UVNHongHaHepBold.eot');
    src: url('./fonts/UVNHongHaHepBold.eot') format('embedded-opentype'), url('./fonts/UVNHongHaHepBold.woff')
    format('woff2'), url('./fonts/UVNHongHaHepBold.woff') format('woff'), url('./fonts/UVNHongHaHepBold.ttf')
    format('truetype'), url('./fonts/UVNHongHaHepBold.svg#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}


/*slider conment*/
.sc_comment{
    background: url(./img/img_fix.png) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 30px;
}
.tit_comment{
    text-align: center;
    font-family: UVN_HongHaHepBold;
    text-transform: uppercase;
    margin: 0;    font-size: 30px;

}
.tit_comment > span {
    color: #ffffff;
    margin: 25px 0px 5px 0;
    display: inline-block;

}
.tit_comment> p > img{
    width: 40px;
    height: 8px;
}

.avt_comment{
    float: left;
    margin-right: 22px;
    margin-left: 36px;
    position: relative;
    top: -15px;
}
.avt_comment img{
    width: 170px;
    height: auto;
    border-radius: 50%;
}
.box_comment{
    padding: 15px;
}
.sub_comment{
    overflow: hidden;
    max-width: 878px;
    color: #fff;
    text-align: center;
}
.content_comment{
    text-align: center;
    line-height: 23px;
    font-size: 13px;
    color: #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;


    position: relative;
}
.content_comment:before{
    content: "";
    position: absolute;
    left: 40%;
    bottom: 0px;
    display: inline-block;
    height: 2px;
    width: 18%;
    background: #ffffff;
}
.name_mb_cm{
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
    line-height: 25px;
}
.add_mb_cm{
    font-size: 12px;
    color: #ffffff;
    font-weight: bold;
    line-height: 25px;
}
.slider_comment .owl-nav .owl-prev{
    background: url("./img/pri_cm.png") no-repeat;
    width: 39px;
    height: 68px;
    display: inline-block;
}
.slider_comment .owl-nav .owl-prev:hover{
    background: url("./img/pri_cm.png") no-repeat;
}
.slider_comment .owl-nav .owl-next{
    background: url("./img/next_cm.png") no-repeat;
    width: 39px;
    height: 68px;
    display: inline-block;
}
.slider_comment .owl-nav .owl-next:hover{
    background: url("./img/next_cm.png") no-repeat;
}
/*end_slider*/
/*end ykienkhachhang_home*/
/*begin email_home*//*end email_home*/
/*begin morong_home*//*end morong_home*/
.slider_proj .owl-nav [class*='owl-'] {
    margin: 0 -5px;
}

.sc_prod_nb__tit {
    font-family: 'UVNHongHaHepBold', sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    margin-bottom: 20px;
}

.sc_prod_nb__tit a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 5px 20px;
    min-width: 300px;
    background: #fff;
}

.sc_prod_nb__tit a:before, .sc_prod_nb__tit a:after {
    content: '';
    position: absolute;
    display: block;
    width: 1000px;
    top: 0;
    bottom: 0;
    background: url(./img/tit-bg.png) center center repeat-x;
}
.sc_prod_nb__tit a:before {
    right: 100%;
}
.sc_prod_nb__tit a:after {
    left: 100%;
}

@font-face {
  font-family: 'UVN_HongHaHep';
  src: url('./fonts/UVNHongHaHep.eot?#iefix') format('embedded-opentype'),
   url('./fonts/UVNHongHaHep.woff') format('woff'), url('./fonts/UVNHongHaHep.ttf')
    format('truetype'), url('./fonts/UVNHongHaHep.svg#UVNHongHaHep') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'UVN_HongHaHepBold';
  src: url('./fonts/UVNHongHaHepBold.eot?#iefix') format('embedded-opentype'),
  url('./fonts/UVNHongHaHepBold.woff') format('woff'), url('./fonts/UVNHongHaHepBold.ttf')
  format('truetype'), url('./fonts/UVNHongHaHepBold.svg#UVNHongHaHepBold') format('svg');
  font-weight: normal;
  font-style: normal;
}
.sc_slider_info{
    background: url("./img/bg_sl.png") no-repeat;
    background-size: cover;
    padding-bottom: 30px;
    padding-top: 15px;
}
.title_info{
    color: white;
    font-size: 24px;
    font-family: UVN_HongHaHepBold;
    text-align: center;
    transform: translateY(86px);
}
.title_info span{
    font-size: 24px;
  margin-top: 45px;
    display: inline-block;
  font-family: 'UVN_HongHaHep';
}
.slider_info .item a{
    display: block;

}
.btn_slider_info {
    margin: 72px 0;
    text-align: center;
    transform: translateY(200px);
}
.btn_slider_info span{
    display: inline-block;
    margin: 0 7px;
    cursor: pointer;
}
.btn_slider_info span:active{
    opacity: 0.5;
}
.box_info h3 a{
  display: block;
  font-size: 24px;
  color: #fff;
  font-family: UVN_HongHaHep;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 5px;
  background: #006279;
}
.slider_info{
  transform: translateY(86px);
}
.sc_newshome__tit {
    font-family: 'UVNHongHaHepBold', sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}
.sc_newshome__tit a {
    position: relative;
    display: inline-block;
    color: #333;
    padding: 12px 15px;
}
.sc_newshome__tit a:after {
    content: url(./img/tit-bg2.png);
    display: block;
    margin: auto;
}
.img-news-page img{
    height: 250px;
    object-fit: cover;
}
/*---------------------------update-----------------*/


@media (min-width:1200px) /* lg*/ {

}

@media (min-width:992px) and (max-width:1199px) /* md*/{

     .btn_slider_info {
        transform: translateY(133px);
     }
}

@media (min-width:768px) and (max-width:991px) /* sm*/{
     .btn_slider_info {
         transform: translateY(100px);
          margin:35px 0;
        position: relative;
        z-index: 2
     }

     .title_info span {
        margin-top: 0;
     }
}

@media (max-width:767px) /* xs*/{
 .btn_slider_info {
         transform: translateY(90px);
          margin:35px 0;
        position: relative;
        z-index: 2
     }
     .title_slider_box {
        margin-bottom: 25px;
        font-size: 20px;
     }
     .box_comment {
        padding: 15px 0;
     }
     .tit_comment {
        margin-bottom: 5px;
     }
}

@media (max-width:480px) {
     .form_search {
        margin-top: 25px;
     }
        .avt_comment {
     float: none; 
    margin-right: 22px;
    margin-left: 36px;
    position: relative;
    top: -15px;
    width: 110px;
    height: 110px;
    margin: auto;
    }
    .slider_proj .owl-nav {
        top: 45%;
        width: 100%;
    }
    .title_slider_box> span {
        padding: 0px 15px;
    }
    .btn_slider_info {
        display: none;
    }
    .title_info {
        margin-bottom: 25px;
    }
    .text_home{
        margin-top: 15px;
    }    
    .img_product a img{
        height: 240px;
    }
    .footer_center_top{
        margin: 25px 0;
    }
}
.title_home {
    font-size: 24px;
    font-family: Roboto_Bold;
}
