@charset "UTF-8";

/* Main */
:root {
    --color-main: #2E328D;
    --color-hover: #e50e0e;
    --color-red: #ec2d3f;
    --color-medium-red: #cc2c32;
    --color-dark-red: #c31829;
    --color-green: #61c472;
    --color-dark-green: #207d36;
    --color-black: #212529;
    --color-gray: #6c757d;
    --color-while: #fff;
}

body {
    font-size: 14px;
    width: 100%;
    color: #333;
    line-height: 1.5;
}

#wrapper {
    width: 100%;
    margin: auto;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top
}

a, input, textarea {
    outline: none;
    padding: 0px;
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#pre-loader {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    display: flex;
    align-items: center;
    text-align: center;
}

.spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner > div {
    background-color: var(--color-main);
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }

}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }

}

.w-clear:after {
    display: block;
    content: "";
    clear: both;
}

.hidden {
    display: none;
}

.clear {
    clear: both;
}

.none {
    display: none;
}

.hidden-seoh {
    font-size: 20px;
    position: absolute;
    top: 0px;
    color: transparent;
    left: 0px;
    z-index: -1;
}

.wrap-main {
    width: 100%;
    display: inline-block;
    margin: 0px auto;
    float: left;
}

.banner-pagin {
    margin-bottom: 30px;
}

.banner-pagin.no-marba {
    margin-bottom: 0px;
}

.mjb-text-section {
    background-color: #ebebeb;
    padding: 60px 0;
    width: 100%;
    display: inline-block;
    float: left;
}

.text-center h2 {
    font-size: 30px;
    color: #157A8C;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 30px;
}

.images-about {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-attachment: fixed;
    display: inline-block;
    float: left;
}

.slide-about {
    width: 100%;
    display: inline-block;
}

.wrap-home {
    max-width: 100%;
    padding: 0px;
}

.wrap-content {
    max-width: 1220px;
    padding: 0px 10px;
    margin: auto;
}

.transition, .hover_scale, .hover_rotate, .hover_opacity, .hover_scaleing {
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.hover_scale:hover {
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.hover_scaleing:hover img{
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.hover_rotate:hover {
    transform: rotate(360deg);
    -moz-transform: scale(360deg);
    -webkit-transform: scale(360deg);
    -o-transform: scale(360deg);
}

.hover_opacity:hover {
    opacity: 0.7;
}

/* General */

.time-main {
    margin-bottom: 0.75rem;
    color: #999999;
}

.time-main i {
    vertical-align: top;
    margin: 3px 7px 0px 0px;
}

.time-main span {
    vertical-align: top;
    display: inline-block;
}

.logo-newsletter {
    padding: 20px 0px;
    border-bottom: 1px solid #363636;
}

.social {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.social span {
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'RobotoBold';
    position: relative;
    display: inline-block;
    margin-right: 50px;
}

.social span:before {
    position: absolute;
    width: 50px;
    height: 1px;
    background: #fff;
    content: '';
    left: 0px;
    bottom: 0px;
}

.social li {
    display: inline-block;
    vertical-align: top;
}

.social li:last-child {
    margin-right: 0px;
}

.control-carousel {
    position: absolute;
    top: calc(50% - 30px/2);
    margin-bottom: 0px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #eee;
    z-index: 2;
    background-color: #fff;
    color: #ccc;
    cursor: pointer;
}

.control-carousel:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: #fff;
}

.prev-carousel {
    left: 0px;
}

.next-carousel {
    right: 0px;
}

/* Header */
.header {
    position: relative;
    top: 0px;
    z-index: 123;
    left: 0px;
    width: 100%;
    display: inline-block;
    float: left;
}
.logo-banner{
    background: url(../images/img-data/bg_baner.png)no-repeat;
    background-size: 100% auto;
    display: inline-block;
    float: left;
}
.top_head{
    padding: 20px 0px;
    color: #fff;
    width: 100%;
    display: inline-block;
    height: 82px;
}

.fix_head .wrapmenu{
    top: 0px;
    position: fixed;
    left: 0px;
    z-index: 123;
}
.fix_head .khung_search{
    top: 26px;
}
.top_head p{
    margin-bottom: 0px;
}
.open-hotline{
    float: right;
    margin-top: 12px;
}
span.open{
    padding-right: 20px;
}
.address{
    width: 50%;
    float: left;
    position: relative;
    padding-left: 30px;
}
.address i{
    position: absolute;
    left: 0px;
    top: 6px;
    font-size: 30px;
}
.logo-header {
    width: 20%;
    float: left;
    text-align: left;
    position: relative;
    padding: 10px 0px;
}

.logo {
    position: absolute;
    left: calc(50% - 85px);
    top: -65px;
    z-index: 12;
    width: 195px;
    text-align: center;
}

.fix_head .logo{
    top: -40px;
}
.fix_head .logo img{
    max-width: 150px;
}


.banner-header {
    width: 59%;
    float: left;
    text-align: center;
}

.header .wrap-content {
    position: relative;
}


.content-hotline {
    width: 175px;
    height: 30px;
    background: #ed1b23;
    text-align: center;
    color: #fed700;
    font-family: 'RobotoBold';
    border-radius: 15px;
}
.hotline-search{
    width: 20%;
    float: right;
    margin-top: 10px;
}
.hotline{
    background: url(../images/img-data/hotline.png)left center no-repeat;
    padding-left: 60px;
    color: #e50e0e;
    font-family: 'SFUCenturySchoolbookBTBold';
    float: right;
    line-height: 1.1;
    font-size: 15px;
}
.hotline p{
    margin-bottom: 0px;
}

.logo-banner {
    /* padding: 10px 0px; */
    width: 100%;
    display: inline-block;
    float: left;
}

/* Menu */
.full-menu {
    width: 100%;
    display: inline-block;
    float: left;
    position: relative;
    height: 50px;
}

.wrapmenu {
    width: 100%;
    margin: auto;
    position: relative;
    background: #2E328D;
    height: 50px;
    border-bottom: 1px solid #1d2057;
}

.lang-header {
    position: absolute;
    right: 0px;
    top: 35px;
    text-transform: uppercase;
}

.label-lang {
    border: 1px solid #fff;
    text-align: center;
    padding: 5px 10px;
    cursor: pointer;
    color: #fff;
}

.lang-header ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    background: #fff;
    box-shadow: 0px 0px 5px #333;
    text-align: center;
    position: absolute;
    width: 100%;
    top: calc(100% - 2px);
    display: none;
}

.lang-header ul li a {
    width: 100%;
    display: block;
    padding: 5px;
    padding-left: 12px;
    text-align: left;
    color: #333;
    text-shadow: 0px 0px 0px;
}

.menu-price{
    width: 22%;
    float: left;
    position: relative;
}
.label-menu-price{
    width: 100%;
    height: 50px;
    background: var(--color-hover);
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-family: 'RobotoRegular';
    font-size: 16px;
    line-height: 50px;
    cursor: pointer;
}
.label-menu-price i{
    font-size: 22px;
    margin-left: 10px;
    position: relative;
    top: 2px;
}
.menu-price ul{
    position: absolute;
    top: 100%;
    width: 100%;
    padding: 0px;
    margin: 0px;
    list-style: none;
    background: #fff;
    height: 406px;
    overflow: auto;
    border: 1px solid #f5f5f5;
}
.headin .menu-price ul{
    display: none;
}
.fix_head .menu-price ul{
    display: none;
}
.menu-price:hover ul{
    display: block;
}
.menu-price ul li{
    border-bottom: 1px solid #f5f5f5;
}
.menu-price ul li:last-child{
    border-bottom: none;
}
.menu-price ul li a{
    width: 100%;
    padding: 9px 10px;
    display: block;
    color: #4e4e4e;
}
.menu-price ul li a:hover{
    color: var(--color-hover);
}
.menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}

.menu ul, .menu ul li {
    list-style: none;
    margin: 0px;
}

.menu .wrap-content {
    position: relative;
}

.menu>ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    padding-right: 250px;
}

.menu>ul>li {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: relative;
    line-height: 50px;
}

.menu>ul>li.wili {
    width: 195px;
}
.menu #hover_scroll {
    position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: var(--color-hover);
    z-index: 1;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.menu ul, .menu ul li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.menu>ul>li a {
    color: #fff;
    display: block;
    font-size: 14px;
    position: relative;
    font-family: 'RobotoRegular';
}

.menu>ul>li>a {
    color: #fff;
    display: block;
    font-size: 16px;
    width: 100%;
    position: relative;
    text-transform: uppercase;
}

.menu ul>li i {
    font-size: 19px;
    position: relative;
}

.menu>ul>li>a>span {
    display: block;
    position: relative;
    z-index: 12;
}

.menu>ul>li.active>a, .menu>ul>li:hover>a {
    color: #fff;
}
.menu>ul>li.active.mousego>a{
    color: #fff;
}
.menu>ul>li ul {
    position: absolute;
    left: 0px;
    z-index: 3000;
    top: 150%;
    visibility: hidden;
    opacity: 0;
    background: var(--color-main);
    width: 230px;
    text-align: left;
}

.menu ul li:hover>ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.menu>ul>li ul li ul {
    left: 100%;
}

.menu ul li ul li:hover>ul {
    top: 0px;
}

.menu>ul>li ul li {
    line-height: 1.5;
    position: relative;
}

.menu>ul>li li a {
    padding: 7px 10px;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.menu>ul>li li:hover>a {
    color: #fff;
    background: var(--color-hover);
}

.menu>ul>li li>a:before {
    position: absolute;
    top: 0px;
    left: -2px;
    height: 100%;
    width: 2px;
    background: var(--color-hover);
    content: '';
}

.menu>ul>li li:hover>a:before {
    background: var(--color-main);
}


/* Search */
.khung_search {
    position: absolute;
    top: 34px;
    right: 0px;
    z-index: 123;
}
.btn_search_display {
    display: inline-block;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 7px;
    border: 1px solid #fff;
}
.btn_search_display.active .lup{
    display: none;
}
.khung_search span i {
    color: #fff;
    font-size: 17px;
}
.closese {
    display: none;
}
.btn_search_display.active .closese{
    display: block;
}

.khung_search span.closese i {
    font-size: 22px;
    top: 2px;
    position: relative;
}
.search {
    width: 210px;
    opacity: 1;
    height: 33px;
    overflow: hidden;
    position: relative;
    z-index: 100;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 20px;
    float: right;
    margin-top: 10px;
}

.search p {
    width: 35px;
    height: 33px;
    line-height: 33px;
    cursor: pointer;
    text-align: center;
    margin: 0px;
    color: #000;
    font-size: 16px;
    position: absolute;
    right: 5px;
    top: -1px;
}

.search input {
    width: calc(100% - 35px);
    height: 31px;
    float: left;
    outline: none;
    padding: 0px;
    border: 0px;
    background: transparent;
    text-indent: 10px;
    font-size: 13px;
}

.search input::-webkit-input-placeholder {
    color: #808080;
    font-size: 13px;
}

.search input:-moz-placeholder {
    color: #808080;
    font-size: 13px;
}

.search input::-moz-placeholder {
    color: #808080;
    font-size: 13px;
}

.search input:-ms-input-placeholder {
    color: #808080;
    font-size: 13px;
}

.face-head {
    float: left;
}

.cart-head {
    float: left;
    margin-left: 15px;
    margin-top: 13px;
}

.cart-head a {
    width: 45px;
    height: 40px;
    display: inline-block;
    background: url(../images/img-data/cart.png)no-repeat;
}

.count-cart {
    float: right;
    width: 23px;
    text-align: center;
    color: #fff;
    font-size: 13px;
}

/* Menu RP */
.menu-res {
    display: none;
    height: 55px;
    z-index: 10;
    background: var(--color-red);
    position: relative;
    line-height: normal;
}

.menu-bar-res {
    height: 55px;
    padding: 0px 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#menu {
    display: none;
}

#hamburger {
    display: block;
    width: 45px;
    height: 23px;
    position: relative;
}

#hamburger:before, #hamburger:after, #hamburger span {
    background: #fff;
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0px;
}

#hamburger:before {
    top: 0px;
}

#hamburger span {
    top: 10px;
}

#hamburger:after {
    top: 20px;
}

#hamburger:before, #hamburger:after, #hamburger span {
    -webkit-transition: none 0.5s ease 0.5s;
    transition: none 0.5s ease 0.5s;
    -webkit-transition-property: transform, top, bottom, left, opacity;
    transition-property: transform, top, bottom, left, opacity;
}

.mm-wrapper_opening #hamburger:before, .mm-wrapper_opening #hamburger:after {
    top: 10px;
}

.mm-wrapper_opening #hamburger span {
    left: -50px;
    opacity: 0;
}

.mm-wrapper_opening #hamburger:before {
    transform: rotate(45deg);
}

.mm-wrapper_opening #hamburger:after {
    transform: rotate(-45deg);
}

.mm-menu_opened {
    display: block !important;
}

/* Search RP */
.search-res {
    position: relative;
}

.search-res .icon-search {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 42px;
    color: #fff;
    font-size: 17px;
    margin: 0px;
}

.search-res .icon-search.active {
    color: var(--color-red);
    background: #fff;
    border-radius: 100%;
}

.search-res .search-grid {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 0px;
    height: 40px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--color-red);
    z-index: 2;
    opacity: 0;
    border-radius: 25px;
    line-height: normal;
}

.search-res .search-grid p {
    float: left;
    width: 35px;
    height: 38px;
    cursor: pointer;
    outline: none;
    border: none;
    margin: 0px;
    font-size: 17px;
    display: block;
    color: var(--color-red);
    line-height: 40px;
    text-align: center;
}

.search-res .search-grid input {
    width: calc(100% - 35px);
    float: right;
    line-height: 38px;
    outline: none;
    border: none;
    color: var(--color-red);
}

.search-res .search-grid input::-webkit-input-placeholder {
    color: #ccc;
}

.search-res .search-grid input:-moz-placeholder {
    color: #ccc;
}

.search-res .search-grid input::-moz-placeholder {
    color: #ccc;
}

.search-res .search-grid input:-ms-input-placeholder {
    color: #ccc;
}

/*Product*/
.wrap-product {
    padding-top: 15px;
    padding-bottom: 15px;
}

.product h3 {
    color: #2a2a2a;
    font-size: 14px;
    margin-bottom: 5px;
    height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-family: 'RobotoBold';
}

.product:hover h3 {
    color: #f00;
}

.list-top {
    width: 100%;
    margin: 25px 0px 25px 0px;
}

.img-list {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: auto;
}

.over-img {
    overflow: hidden;
    position: relative;
}

.name-list {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.name-list h3 {
    font-family: 'SFUFuturaBold';
    text-align: center;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-size: 22px;
    text-shadow: 0px 0px 5px #000;
}

.img-list:hover .name-list h3 {
    color: #F37F2B;
}

.img-list:hover img {
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.legic {
    width: 100%;
    display: inline-block;
    margin-top: 30px;
}

.mar-legic {
    margin: 0px -15px;
}

.padd-leg {
    padding: 0px 5px;
}

.about-index {
    padding: 45px 0px 45px 0px;
    position: relative;
    width: 100%;
    display: inline-block;
}

.content-about{
    width: 50%;
    margin: auto;
    font-family: 'MuliRegular';
    float: left;
    color: #4d4d4d;
}
.title-about{border-left: 3px solid #666666; padding-left: 20px; margin-bottom: 10px;}
.title-about p{
    color: #333333;
    font-family: 'MuliBold';
    font-size: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.title-about h3{
    font-family: 'OpenSansBold';
    font-size: 35px;
    color: #009b9b;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.content-about a{
    display: inline-block;
    padding: 7px 10px;
    color: #ff0000;
    border: 1px solid;
    margin-top: 15px;
    text-decoration: none;
    font-family: 'MuliBold';
}
.content-about a:hover{
    background:#ff0000;
    color: #fff;
}
.img-about{
    width: 50%;
    float: left;
    text-align: right;
    padding-left: 10px;
}
.item-vdeo{
    position: relative;
}
.item-vdeo:before{
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    content: '';
    background: url(../images/img-data/play.png)no-repeat;
    width: 80px;
    height: 80px;
    z-index: 1;
}
.left-about {
    float: right;
}
.item-imgab{
    padding: 0px 5px;
}
.scroll_imgab .slick-slide img{
    width: 100%;
    max-height: 330px;
    position: relative;
    top: 25px;
}
.slick-slide.slick-current.slick-active.slick-center img{
    max-height: inherit;
    top: 0px;
}
.right-about {
    font-family: 'RobotoRegular';
    font-size: 16px;
    color: #282828;
    width: 100%;
    float: left;
    padding-right: 30px;
}

.right-about h3 {
    font-family: 'UTMBeautifulCaps';
    font-size: 40px;
    color: #000000;
    margin-bottom: 15px;
}

.right-about h2 {
    font-family: 'UTMHelvetIns';
    text-transform: uppercase;
    color: #1159bb;
    font-size: 43px;
}

.descr {
    line-height: 2;
}

.readmore {
    width: 145px;
    height: 50px;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
    line-height: 50px;
    background: #1159BB;
    color: #fff;
    font-family: 'Roboto-Light';
    text-transform: uppercase;
    font-size: 15px;
}

.readmore:hover {
    background: #ED2227;
    color: #fff;
}
/*Tiêu chí*/
.tchi{
    background-image: url(../images/img-data/bg_tchi.png);
    background-attachment: fixed;
    padding: 20px 0px;
    min-height: 260px;
    display: flex;
    align-items: center;
}
.padd-tchi{
    padding: 0px 15px;
}
.item-tchi{
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    display: inline-block;
}
.item-tchi:hover{
    background: #2E328D;
    color: #fff;
}
.sjd-tc{
    width: 100%;
}
.item-tchi img{
    float: left;
    margin-right: 20px;
}
.item-tchi h4{
    color: #2e328d;
    font-family: 'SFUCenturySchoolbookBTBoldCondensed';
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
}
.item-tchi:hover h4{
    color: #fff;
}
/*Dự án*/
.title-project-detail{
    font-family: 'QuicksandBold';
    text-align: center;
    margin-bottom: 20px;
}
.mar-project{
    margin-right: -5px;
    margin-left: -5px;
}
.wrap-project{
    padding: 5px;
}
.item-project{
    position: relative;
    overflow: hidden;
}
.item-project h3{
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 10px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-family: 'MuliRegular';
    font-size: 15px;
    width: 100%;
    background: rgba(0,0,0,0.5);
    margin-bottom: 0px;
}
.item-project:hover h3{
    background: rgba(0,155,155,0.8);
    color: var(--color-hover);
}

/*Quy trình làm việc*/
.working-process{
    background:url(../images/img-data/bgqtrinh.png)no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 0px;
    margin-top: 50px;
    color: #fff;
}

.title-working{
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    background: url(../images/img-data/title_kh.png)bottom center no-repeat;
    padding-bottom: 20px;
    color: #fff;
}
.title-working h3{
    font-family: 'QuicksandBold';
    text-transform: uppercase;
    font-size: 33px;
    color: #fff;
}
.item-work{
    width: 100%;
    max-width: 130px;
    margin: auto;
    position: relative;
    padding-bottom: 50px;
}
.item-work:before{
    position: absolute;
    width: 1px;
    height: 50px;
    left: 50%;
    bottom: 0px;
    content: '';
    background: #fff;
}
.name-work{
    width: 130px;
    height: 130px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 14px;
    text-transform: uppercase;
    font-size: 15px;
    background: #009B9B;
    cursor: pointer;
}
.slick-slide.slick-current.slick-active .item-work .name-work{
    background: transparent;
}
.scroll-nav{
    border-bottom: 1px solid #fff;
    margin-bottom: 30px;
}
.item-for a{
    color: #a1a1a1;
    display: inline-block;
    padding-left: 10px;
    text-decoration: underline;
    font-size: 13px;
}
.item-for a:hover {
    color: var(--color-hover);
}
/*Product top*/
.purchase {
    width: 100%;
    display: inline-block;
    padding: 55px 0px;
}

.mar-pur {
    margin: 0px -15px;
}

.padd-pur {
    padding: 10px 5px;
}

.item-pur {
    width: 100%;
    max-width: 380px;
    margin: auto;
    position: relative;
}

.item-pur .content-pur {
    width: 100%;
    max-width: 335px;
    margin: auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 12;
    margin-top: -70px;
    padding: 10px;
    box-shadow: 0px 0px 11px #abaaaa;
}

.wrap-contpur {
    background: #fff;
    padding: 20px;
    color: #282828;
    font-size: 16px;
}

.wrap-contpur h4 {
    text-transform: uppercase;
    font-size: 22px;
    color: #212121;
    height: 26px;
    font-family: 'UTMHelvetIns';
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.wrap-contpur p {
    height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-bottom: 0px;
}

.item-pur:hover h4 {
    color: #CF1118;
}

/*End Thu mua*/
.title-leftpro {
    background: #125bbe;
    text-transform: uppercase;
}

.title-leftpro h3 {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    margin: 0px;
    font-family: 'OpenSansExtraBold';
}

.wrap-left {
    position: sticky;
    top: 60px;
    width: 100%;
}

.wrap-left ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.wrap-left>ul {
    border: 1px solid #ccc;
    border-top: none;
    padding: 10px;
}

.wrap-left > ul > li {
    position: relative;
    border-bottom: solid 1px #ccc;
    list-style: none;
    margin: 0;
    padding: 4px 0;
}

.wrap-left > ul > li:last-child {
    border-bottom: none;
}

.wrap-left > ul > li > a {
    font-size: 15px;
    line-height: 35px;
    text-decoration: none;
    color: #333;
    width: 100%;
    display: block;
}

.wrap-left > ul > li > a:hover {
    color: #f00;
}

.wrap-left > ul > li > ul > li:after {
    content: "";
    position: absolute;
    top: 18px;
    left: -10px;
    height: 1px;
    width: 5px;
    background: #666;
}

.wrap-left > ul > li > ul li {
    list-style: none;
    margin-right: 10px;
    margin-left: 10px;
    border-bottom: solid 1px #ccc;
    position: relative;
}

.wrap-left > ul li:last-child {
    border: none;
}

.wrap-left > ul > li > ul li a {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    text-transform: uppercase;
    padding: 10px 0;
    font-family: 'MinionPro-Bold';
}
/*Nước giải khát*/
.beverage{
    background-image: url(../images/img-data/bg_nuoc.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 575px;
    display: flex;
    align-items: center;
    padding: 20px 0px;
}
.padd-beverage{
    padding: 0px 5px;
}
.item-beverage{
    width: 100%;
    max-width: 280px;
    margin: auto;
    text-align: center;
}
.img-beverage{
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}
.img-beverage:before{
    position: absolute;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    left: 8px;
    top: 8px;
    border:2px solid rgba(255,255,255,0.5);
    content: '';
    border-radius: 50%;
    z-index: 1;
}
.img-beverage img{
    border-radius: 50%;
}
.item-beverage h3 {
    color: #fff;
    font-size: 15px;
    font-family: 'RobotoRegular';
    margin-bottom: 5px;
    height: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-top: 10px;
}
.item-beverage:hover h3{
    color: #FFC000;
}
/*picture*/
.picture{
    width: 100%;
    display: inline-block;
    padding: 40px 0px;
}
.mar-pic{
    margin: 0px -10px;
}
.item-pic{
    width: 50%;
    float: left;
}
.pic1{
    width: 100%;
    padding: 5px;
    float: left;
}
.pic2{
    width: 100%;
    padding: 5px;
    float: left;
}
.wrap-picright{
    padding: 5px;
}
/*product index*/
.padd-pro{
    padding: 0px 5px;
}
.product-hot {
    padding: 50px 0px 50px 0px;
    width: 100%;
    display: inline-block;
    position: relative;
    background: url(../images/img-data/bg_banhmi.png)no-repeat;
    background-size: cover;
    z-index: 1;
}
.name-price{
    margin-top: 10px;
}
.honey {
    position: absolute;
    left: 0px;
    top: -30px;
    background: url(../images/img-data/matong.png)no-repeat;
    width: 134px;
    height: 266px;
}

.left-pronb {
    width: 55%;
    float: left;
    padding-right: 120px;
    position: relative;
}

.slide-right {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 110px;
}

.item-slidenav {
    border: 1px dashed #d8d8d8;
    margin-bottom: 10px;
    cursor: pointer;
}

.slick-slide.slick-current.slick-active .item-slidenav {
    border: 1px dashed #f69a02;
}

.slick-for {
    margin-top: 25px;
}

.right-pronb {
    width: 45%;
    float: left;
    margin-top: 25px;
    padding-left: 20px;
}

.item-pronb .img-pronb {
    width: 54%;
    float: right;
    padding-left: 20px;
}

.item-pronb:hover .img-pronb img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
}

.right-pronb .item-pronb .img-pronb {
    float: left;
    padding-left: inherit;
    padding-right: 20px;
}

.item-pronb {
    font-size: 18px;
    color: #010101;
}

.item-pronb h3 {
    color: #f69a02;
    text-transform: uppercase;
    font-family: 'MYRIADPROREGULAR';
    font-size: 23px;
    padding-top: 50px;
}

.item-pronb:hover h3 {
    color: #3e3e3e;
}

.slide-right .slick-prev {
    background: url(../images/img-data/nextver.png) no-repeat;
    width: 35px;
    height: 35px;
    font-size: 0px;
    outline: none;
    left: calc(50% - 17px);
    top: inherit;
    bottom: -7px;
}

.slide-right .slick-next {
    background: url(../images/img-data/prever.png) no-repeat;
    width: 35px;
    height: 35px;
    font-size: 0px;
    outline: none;
    left: calc(50% - 17px);
    top: 17px;
}

.slide-right .slick-prev:before, .slide-right  .slick-next:before {
    display: none;
}

/*HEXAGON*/
.acticle-prohot {
    width: 100%;
    display: inline-block;
    margin-top: 60px;
    min-height: 395px;
    position: relative;
}

.actic1 {
    position: absolute;
    top: 0px;
    left: 0px;
}

.actic2 {
    position: absolute;
    top: 130px;
    left: 225px;
}

.actic3 {
    position: absolute;
    top: 0px;
    left: 450px;
}

.actic4 {
    position: absolute;
    top: 130px;
    left: 675px;
}

.actic5 {
    position: absolute;
    top: 0px;
    left: 900px;
}

.hexa img {
    width: 100%;
}

.hexa, .hexa div {
    margin: 0 auto;
    transform-origin: 50% 50%;
    overflow: hidden;
}

.hexa {
    text-align: center;
    margin: 0;
    width: 290px;
    height: 250px;
}

.hexrow {
    width: 296px;
    height: 256px;
}

.hexa div {
    width: 100%;
    height: 100%;
}

.absohex {
    position: absolute;
    top: 3px;
    left: 3px;
}

.hexa {
    transform: rotate(120deg);
}

.hex1 {
    transform: rotate(-60deg);
}

.hex2 {
    transform: rotate(-60deg);
}

.borhex {
    background: #E7A11F;
}

.hex-row {
    clear: left;
}

.hexaHolder.even {
    margin-top: 57.5px;
}

.hover-hexa {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    opacity: 0;
}

.hover-hexa h4 {
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    width: 100%;
    color: #fff;
}

.hexa:hover .hover-hexa {
    opacity: 1;
}

/*Hình ảnh lịch sử công ty*/
.item-rightls {
    position: relative;
    width: 100%;
    max-width: 138px;
    margin: auto;
}

.hexals img {
    width: 100%;
}

.hexals, .hexals div {
    margin: 0 auto;
    transform-origin: 50% 50%;
    overflow: hidden;
}

.hexals {
    text-align: center;
    margin: 0;
    width: 136px;
    height: 116px;
}

.hexrowls {
    width: 138px;
    height: 121px;
}

.hexals div {
    width: 100%;
    height: 100%;
}

.absohex {
    position: absolute;
    top: 2px;
    left: 2px;
}

.hexals {
    transform: rotate(120deg);
}

.hex1 {
    transform: rotate(-60deg);
}

.hex2 {
    transform: rotate(-60deg);
}

.borhexls {
    background: #f9d774;
}

.wrap-lsu {
    position: relative;
}

.wrap-lsu:before {
    position: absolute;
    width: 3px;
    height: 100%;
    background: #000000;
    content: '';
    left: calc(50% - 2px);
    top: 0px;
}

.left-cten-ls {
    padding: 20px 50px;
}

.right-cten-ls {
    padding: 20px 50px;
}

.item-lsu {
    position: relative;
}

.item-lsu span.date {
    position: absolute;
    font-weight: bold;
    font-size: 18px;
    color: #dfa719;
    background: #fff;
    left: calc(50% - 35px);
    top: 35px;
}

.item-lsu:nth-child(2n) .left-cten-ls {
    order: 2;
}

.wr-itel {
    background: #E0A71A;
    border-radius: 10px;
    border: 2px solid #f9d773;
    width: 100%;
    padding: 1px;
    padding-bottom: 5px;
    position: relative;
}

.wr-itel:before {
    position: absolute;
    width: 22px;
    height: 28px;
    background: url(../images/img-data/before1.png)no-repeat;
    top: 27px;
    right: -20px;
    content: '';
}

.item-lsu:nth-child(2n) .wr-itel:before {
    background: url(../images/img-data/before2.png)no-repeat;
    right: inherit;
    left: -20px;
}

.item-lsu:nth-child(2n) .wr-itel {
    background: #030303;
    border: 2px solid #030303;
}

.item-lsu:nth-child(2n) .title_lsu {
    text-align: right;
}

.item-lsu:nth-child(2n) .img-lsu {
    background: #030303;
    float: right;
    margin-right: 0px;
    margin-left: 20px;
}

.detail-lsu {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

.title_lsu {
    width: 100%;
    display: inline-block;
    padding: 0px 20px;
}

.img-lsu {
    width: 65px;
    height: 65px;
    float: left;
    border: 2px solid #F1C756;
    border-radius: 50%;
    margin-top: -20px;
    background: #E0A71A;
    margin-right: 20px;
}

.title_lsu h4 {
    margin: 0px;
    margin-top: 9px;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    height: 24px;
}

.detail-lsu {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    color: #3e3e3e;
    font-family: 'Arial';
    text-align: center;
}

.detail-lsu p {
    margin-bottom: 0px;
}

.scroll_album img {
    height: 100vh;
}

.item-alb {
    position: relative;
}

.item-alb:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: '';
    left: 0px;
    top: 0px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.owl-item.active.center .item-alb:before {
    background: transparent;
}

.owl-carousel .owl-nav button.owl-prev {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    font: inherit;
    color: #fff;
    font-size: 40px;
    padding: 0px 15px 5px 15px !important;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: calc(50% - 25px);
    left: 0px;
}

.owl-carousel .owl-nav button.owl-next {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    font: inherit;
    color: #fff;
    font-size: 40px;
    padding: 0px 15px 5px 15px !important;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 0px;
}

.owl-theme .owl-nav {
    margin-top: 0px;
}

.owl-dots {
    display: block;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot {
    outline: none;
}

.itemt-sldab {
    position: relative;
}

.itemt-sldab img {
    width: 100%;
}

.content-slide {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    top: 0px;
    left: 0px;
    width: 100%;
    color: #fff;
    height: 100%;
}

.center-cte {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 650px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-size: 13px;
}

/*Video index*/
.video-index-content {
    width: 100%;
    padding-right: 320px;
    position: relative;
}

#box_video {
    width: 100%;
    height: 500px;
    position: relative;
}

.item_video img{
    width: 100%;
}
.item_video{
    position: relative;
}
.playvd{
    position: absolute;
    width: 120px;
    height: 80px;
    background: #D32322;
    color: #fff;
    line-height: 80px;
    font-size: 32px;
    left: calc(50% - 60px);
    top: calc(50% - 40px);
    z-index: 1;
    margin-bottom: 0px;
    text-align: center;
    border-radius: 20px;
}

.playvd:hover{
    background: #9a1615;
}

.img_video img {
    width: 145px;
    height: 80px;
}

.select_video {
    width: 295px;
    position: absolute;
    top: 0px;
    right: 0px;
}

.itemvideo {
    width: 100%;
    display: inline-block;
    margin-bottom: 22px;
    font-family: 'MontserratBold';
}

.itemvideo img {
    float: left;
    margin-right: 10px;
}

/*Product index*/
.content-pro {
    padding: 10px;
    display: inline-block;
    width: 100%;
    color: #000;
}

.content-pro h3 {
    font-size: 14px;
    font-family: 'RobotoBold';
    color: #000;
}

.item-pro:hover h3 {
    color: #123a82;
}

.content-pro p {
    margin-bottom: 3px;
    position: relative;
    padding-left: 18px;
}

.content-pro p i {
    color: #9c9c9c;
    font-size: 13px;
}

.content-pro p>i {
    position: absolute;
    top: 4px;
    left: 0px;
    width: 15px;
    text-align: center;
}

.content-pro p span {
    float: right;
}

.content-pro p span b {
    color: #f00;
}

.content-pro p span strong {
    font-weight: normal;
    color: #4c4c4c;
}

.item-pro {
    width: 100%;
    max-width: 282px;
    border: 1px solid #ccc;
    margin: auto;
    position: relative;
}

/* News top - Searchadvan */
.search-advance {
    padding: 20px 0px;
    background: #F4F4F4;
    width: 100%;
    display: inline-block;
}

.left-seacrh {
    width: 69%;
    float: left;
    padding-right: 10px;
}

.for-news {
    width: 55%;
    float: left;
}

.nav-news {
    width: 45%;
    float: left;
    padding: 0px 15px 0px 25px;
}

.item-for h3 {
    font-size: 24px;
    color: #123a82;
    font-family: 'RobotoRegular';
    margin: 10px 0px;
}

.item-for:hover h3 {
    color: #f00;
}

.item-for p {
    color: #8f8f8f;
}

.item-nav {
    padding: 10px 0px;
    border-bottom: 1px solid #e7e7e7;
    color: #222222;
    font-size: 16px;
    font-family: 'RobotoRegular';
    cursor: pointer;
}

.slick-slide.slick-current.slick-active .item-nav {
    text-shadow: 0px 0px 0px;
    color: #123a82;
}

.item-nav:hover {
    text-shadow: 0px 0px 0px;
    color: #123a82;
}

.right-search {
    width: 31%;
    float: left;
}

.wrap-search {
    border: 1px solid #D7D7D7;
    border-radius: 5px;
    background: #fff;
}

.title-search {
    background: #266AE7;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-family: 'RobotoBold';
    font-size: 16px;
    padding: 7px 10px;
}

.title-search i {
    font-size: 20px;
    margin-left: 7px;
}

.list-search {
    background: #E8E8E8;
    padding-top: 5px;
}

.list-search ul {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 10px;
}

.list-search ul li {
    width: 50%;
    text-align: center;
}

.list-search ul li a {
    width: 100%;
    display: block;
    border-top: 1px solid transparent;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    color: #0865b2;
    font-family: 'RobotoBold';
    padding: 7px;
}

.list-search ul li a.active {
    background: #fff;
    border-top: 1px solid #919191;
}

.show-search {
    padding: 10px;
}

.show-search select {
    width: 100%;
    padding: 5px;
    outline: none;
    border: 1px solid #D7D7D7;
    color: #3e3e3e;
    margin-bottom: 10px;
    font-family: 'RobotoRegular';
}

.button-search {
    width: 100%;
    text-align: center;
}

.button-search button {
    background-image: linear-gradient(#2468E3, #0a378b);
    color: #fff;
    font-family: 'RobotoBold';
    border: none;
    padding: 0px 10px;
    border-radius: 5px;
    outline: none;
}

.button-search button span {
    background: url(../images/img-data/iconsearch.png)0px 6px no-repeat;
    width: 100%;
    display: inline-block;
    padding: 7px 10px 7px 30px;
}

.typebds {
    display: none;
}

.typebds.acti {
    display: block;
}

.banner-pagin img {
    width: 100%;
}

/* Breadcrumb */
.breadCrumbs {
    width: 100%;
    display: inline-block;
    margin-bottom: 40px;
    background: #f1f1f1;
    margin-top: -10px;
    padding-top: 10px;
}

.breadCrumbs .wrap-content {
    padding: 0.75rem 10px;
    max-width: 1200px;
}

.breadCrumbs .wrap-content .breadcrumb {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}

.breadCrumbs .wrap-content .breadcrumb-item a {
    color: #333;
    text-transform: capitalize;
}

.breadCrumbs .wrap-content .breadcrumb-item.active a {
    color: #ff000b;
}

/*slider*/
#slider {
    width: 100%;
    display: inline-block;
    float: left;
}
.description-slider{
    position: absolute;
    z-index: 123456789;
    background: rgba(0,0,0,0.5);
    width: 495px;
    height: 210px;
    color: #fff;
    left: 8%;
    top: 50px;
    padding: 30px;
    font-size: 16px;
}
.description-slider h3{
    color: #2e328d;
    text-transform: uppercase;
    font-size: 30px;
    text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
    font-family: 'SFUCenturySchoolbookBTBoldCondensed';
    margin-bottom: 10px;
}
/* Top content */
.top_content {
    width: 100%;
    display: inline-block;
    padding-top: 30px;
}
.tch{
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}
.mar-tch{
    margin: 0px -4px;
}
.padd-tch{
    padding: 0px 4px;
}
.item-tch {
    position: relative;
    background: #009b13;
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
}

.item-tch img {
    float: left;
}

.item-tch h4 {
    color: #fff;
    text-transform: capitalize;
    font-size: 16px;
    font-family: 'RobotoBold';
    padding-left: 8px;
    width: 100px;
    float: left;
    margin-top: 15px;
}
.item-tch:hover{
    background: #FEA20C;
}

/*Video*/
.item-video {
    position: relative;
}

.item-video:before {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    background: url(../images/img-data/play.png) no-repeat;
    content: '';
    width: 94px;
    height: 94px;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.item-video:hover:before {
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
}

/*News-Event*/
.news-event {
    background: #F1F1F1;
    padding: 40px 0px;
}

.title-top {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
    background: url(../images/img-data/title_main2.png) top center no-repeat;
    padding-top: 40px;
    padding-bottom: 20px;
}
.title-top:before{
    position: absolute;
    width: 300px;
    height: 1px;
    border-bottom: 1px dashed #fff;
    content: '';
    left: calc(50% - 150px);
    bottom: 0px;
}
.title-top:after{
    position: absolute;
    width: 300px;
    height: 1px;
    border-bottom: 1px dashed #fff;
    content: '';
    left: calc(50% - 150px);
    bottom: -3px;
}

.title-top h2 {
    text-transform: uppercase;
    font-size: 29px;
    color: #000;
    font-family: 'UTMAlbertaHeavy';
    position: relative;
    display: inline-block;
    margin-bottom: 0px;
} 

.title-beverage {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
    background: url(../images/img-data/title_main.png) top center no-repeat;
    padding-top: 40px;
    padding-bottom: 20px;
}
.title-beverage:before{
    position: absolute;
    width: 300px;
    height: 1px;
    border-bottom: 1px dashed #fff;
    content: '';
    left: calc(50% - 150px);
    bottom: 0px;
}
.title-beverage:after{
    position: absolute;
    width: 300px;
    height: 1px;
    border-bottom: 1px dashed #fff;
    content: '';
    left: calc(50% - 150px);
    bottom: -3px;
}

.title-beverage h2 {
    text-transform: uppercase;
    font-size: 29px;
    color: #fff;
    font-family: 'UTMAlbertaHeavy';
    position: relative;
    display: inline-block;
    margin-bottom: 0px;
}

.title-main {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    overflow: hidden;
    background: url(../images/img-data/bg_title.png) bottom center no-repeat;
    padding-bottom: 20px;
}

.title-main h2 {
    font-size: 40px;
    color: var(--color-main);
    position: relative;
    display: inline-block;
    margin-bottom: 7px;
    font-family: 'SFUCenturySchoolbookBTBoldCondensed';
    text-transform: uppercase;
}
.title-main p{
    margin-bottom: 5px;
    color: #727272;
    font-family: 'RobotoRegular';
    font-size: 14px;
}
.title-main a.read-list {
    text-transform: uppercase;
    right: 10px;
    position: absolute;
    bottom: 10px;
    color: #575757;
    font-size: 13px;
}

.title-main a.read-list:hover{
    color: var(--color-hover);
}

.viewall {
    float: right;
    margin-top: 13px;
    margin-right: 10px;
    color: #c91414;
    font-family: 'RobotoBold';
    font-size: 13px;
}

.viewall i {
    font-size: 10px;
}

.bannerqc img {
    width: 100%;
}

/*Chi nhanh*/
.branch{
    position: relative;
}

.wrap-map{
    width: 100%;
    box-shadow: 0px 0px 3px #333;
    border-radius: 5px;
    margin-top: -155px;
    background: #fff;
    padding: 7px;
    position: relative;
}
.showmap{
    position: relative;
    height: 380px;
    display: none;
}
.wrap-map iframe{
    position: absolute;
    width: 100%;
    height: 100%;
}
.title-list{
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: center;
    z-index: 123;
}
.title-list ul{
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.title-list ul li{
    display: inline-block;
    padding: 10px;
}
.title-list ul li a{
    background: #fff;
    height: 44px;
    padding: 0px 20px;
    border-radius: 22px;
    border: 1px dashed #000;
    color: #000;
    font-family: 'RobotoBold';
    display: inline-block;
    line-height: 44px;
}
.title-list ul li a.active{
    border:1px solid var(--color-main);
}

.title-main h3 {
    font-size: 30px;
    color: #013186;
    font-family: 'UTMAvoBold';
    text-transform: uppercase;
    background-image: url(../images/img-data/title_center.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    padding-bottom: 10px;
}


.title-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.title-main ul li {
    display: inline-block;
    padding: 5px;
}

.title-main ul li a {
    color: #222222;
    font-size: 17px;
    display: inline-block;
    font-family: 'Nunito-Regular';
    padding: 10px 0px;
    position: relative;
    text-decoration: none;
}
.title-main ul li a:before{
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0px;
    left: 0px;
    content: '';
    background: #ff000b;
    opacity: 0;
}

.title-main ul li a.active:before, .title-main ul li a:hover:before {
    opacity: 1;
}
/*Tin tức trang chủ*/
.mar-news {
    margin: 0px -15px;
}

.news-index {
    width: 100%;
    display: inline-block;
    padding: 30px 0px;
    background: url(../images/img-data/bg_tin.png)repeat;
}

.padd-news {
    padding: 0px 5px;
}

.item-news-in {
    width: 100%;
    max-width: 280px;
    margin: auto;
    color: #575757;
    font-family: 'Roboto-Light';
}

.item-news-in h4 {
    color: #292929;
    font-family: 'RobotoMedium';
    font-size: 13px;
    position: relative;
    margin-bottom: 0px;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    height: 30px;
}

.item-news-in .name-news {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #c2c2c2;
}

.item-news-in .name-news:after {
    position: absolute;
    left: 30px;
    bottom: -6px;
    background: url(../images/img-data/arow.png)no-repeat;
    width: 9px;
    height: 6px;
    content: '';
}

.item-news-in .name-news:before {
    position: absolute;
    width: 3px;
    height: 28px;
    content: '';
    left: 0px;
    top: 0px;
    background: #1159bb;
}

.item-news-in:hover h4 {
    color: #f00;
}

.item-news-in p {
    margin-bottom: 0px;
}

.descr-news {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

/*End tin tức*/
.wrap-news {
    padding: 15px 0px;
}

.item-news {
    width: 100%;
    margin: auto;
    font-family: 'OpenSansRegular';
    color: #666666;
}

.item-news img {
    float: left;
    margin-right: 15px;
}

.item-news h4 {
    color: #333333;
    font-size: 15px;
    font-family: 'OpenSansBold';
    margin-top: 10px;
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.item-news p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.item-news:hover h4 {
    color: #f00;
}

.content-news {
    width: 100%;
    display: inline-block;
}

.descr-news a {
    text-decoration: none;
}

.descr-news h4 {
    font-family: 'UTMAvoBold';
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.item-news:hover .descr-news h4 {
    color: #f00;
}

/*Bottom*/
.bottom_content {
    background: #f8f8f8;
    padding: 30px 0px;
}

.listbottom h3 a {
    font-family: 'RobotoBold';
    color: #2a2a2a;
    font-size: 15px;
}

.listbottom h3 a:hover {
    color: #00509a;
}

.listbottom p {
    margin-bottom: 5px;
}

.listbottom p a {
    color: #474747;
    font-size: 14px;
    text-decoration: none;
    font-family: 'RobotoRegular';
}

.listbottom p a:hover {
    text-decoration: underline;
    text-shadow: 0px 0px 0px;
}

.wrap-partner {
    padding: 0px 50px;
}
.partner{
    background: #F1F1F1;
    padding: 30px 0px;
}
.padd-part{
    padding: 0px 5px;
}
/*Album*/
.album-video {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
    position: relative;
}

.flower-right {
    background: url(../images/img-data/hoa2.png) no-repeat;
    position: absolute;
    right: 30px;
    top: -130px;
    width: 286px;
    height: 325px;
}

.album-index {
    width: 55%;
    float: left;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.title-album h3 {
    text-transform: uppercase;
    font-family: 'MYRIADPRO-SEMIBOLD';
    font-size: 30px;
    line-height: 1;
    color: #f69b02;
    margin-bottom: 0px;
}

.title-album p {
    font-family: 'SVN-SnellRoundhandScript';
    font-size: 19px;
    line-height: 1;
    margin-top: 10px;
}

.video-index {
    width: 45%;
    float: right;
}

.descr-album {
    padding-right: 50px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #626262;
    line-height: 1.2;
}

.item-thumb {
    width: 100%;
    max-width: 175px;
    margin: auto;
    border: 5px solid #fff;
    cursor: pointer;
}

.galle-thumb {
    position: relative;
    width: calc(100% + 95px);
    z-index: 1;
    margin-left: -12px;
}

.item-album {
    padding: 15px;
    text-align: center;
}

.item-album h3 {
    color: #333;
    font-size: 20px;
    margin-top: 10px;
    font-family: 'RobotoBold';
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.readm-album {
    text-align: center;
    margin-top: 20px;
}

.readm-album a {
    color: #000;
    border: 1px solid #7992bf;
    padding: 10px 20px;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
}

.readm-album a:hover {
    background: #f00;
    border: 1px solid #f00;
    color: #fff;
}

/*Đối tác*/
.partner-brand {
    width: 100%;
    display: inline-block;
    padding: 80px 0px 0px 0px;
}

.left-partner {
    width: 45%;
    float: left;
    padding-right: 10px;
    padding-top: 20px;
}

.right-partner {
    width: 55%;
    float: right;
}

.item-partner {
    width: 33.33%;
    float: left;
    text-align: center;
    padding: 15px;
}

.readnews {
    color: #4b4532;
    display: inline-block;
    width: 170px;
    height: 50px;
    border-radius: 25px;
    border: 2px solid #d6a423;
    text-align: center;
    text-transform: uppercase;
    line-height: 48px;
    font-size: 16px;
    text-shadow: 0px 0px 0px;
}

.readnews:hover {
    background: #d6a423;
    color: #333;
}

/*Contact index*/
.contact-index {
    background-image: url(../images/img-data/img_lhe.png);
    background-size: cover;
    height: 247px;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    color: #fff;
    font-family: 'UTMAvoBold';
    font-size: 14px;
}

.contact-index .wrap-content {
    text-align: center;
}

.contact-index h4 {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contact-index p {
    max-width: 585px;
    margin: auto;
}

.contact-index a {
    padding: 10px 20px;
    display: inline-block;
    background: #fff;
    margin-top: 20px;
    color: #013186;
    text-decoration: none;
}

.contact-index a:hover {
    background: #013186;
    color: #fff;
}

/* Intro */
.news-video{
    padding: 50px 0px 0px 0px;
    position: relative;
    width: 100%;
}
.title-tin{
    color: #797979;
    font-size: 14px;
    border-left: 2px solid #cd272f;
    line-height: 1;
    padding-left: 20px;
    margin-bottom: 30px;
}
.title-tin h3{
    font-size: 40px;
    color: var(--color-main);
    position: relative;
    display: inline-block;
    font-family: 'SFUCenturySchoolbookBTBoldCondensed';
    text-transform: uppercase;
    line-height: 0.5;
    margin-bottom: 20px;
}
.title-tin p{
    margin-bottom: 0px;
    color: #797979;
    font-size: 14px;
}
.wrap-intro {
    margin-top: 40px;
}

.left-intro {
    width: 65%;
    padding-right: 35px;
    float: left;
}

.right-intro {
    width: 35%;
    float: left;
}

.title-intro {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ebebeb;
}

.title-intro span {
    font-size: 30px;
    color: #50a000;
    font-family: 'utmavo';
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    border-bottom: 1px solid #d71919;
    margin-bottom: -1px;
}


.newshome-best {
    width: 51%;
    display: block;
    float: left;
    padding-right: 20px;
}

.pic-newshome-best img {
    width: 100%;
}

.name-newshome {
    color: var(--color-black);
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0.25rem;
}

.name-newshome.text-split {
    -webkit-line-clamp: 2;
    color: #424242;
    font-family: 'Nunito-SemiBold';
    font-size: 17px;
    margin-bottom: 10px;
}

.time-newshome {
    color: var(--color-gray);
    margin-bottom: 0.25rem;
    font-style: italic;
    font-size: 13px;
}

.desc-newshome {
    color: #595959;
    margin-bottom: 10px;
    font-size: 14px;
}
p.xemt{
    color: #424242;
}
p.xemt:hover{
    color: #f00;
}

.view-newshome {
    display: inline-block;
    border: 2px solid var(--color-black);
    padding: 8px 15px;
    color: var(--color-black);
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 1rem;
    text-transform: uppercase;
}

.view-newshome:hover {
    background-color: var(--color-black);
    color: #fff;
}

.newshome-scroll {
    width: 100%;
    height: 445px;
    overflow: hidden;
    float: left;
}

.newshome-scroll ul li {
    margin-bottom: 15px !important;
}


.newshome-normal {
    display: block;
    font-family: 'RobotoRegular';
    position: relative;
}

.newshome-normal:hover .name-newshome.text-split {
    color: #f00;
}
.date-new{
    width: 65px;
    height: 65px;
    position: absolute;
    left: 20px;
    background: #FEDA32;
    color: #000000;
    text-align: center;
    border-radius: 50%;
    line-height: 1.2;
    padding-top: 15px;
    font-size: 15px;
    font-family: 'RobotoMedium';
}

.pic-newshome-normal {
    float: left;
    margin-right: 3%;
    margin-bottom: 0px;
}

.pic-newshome-normal img {
    width: 100%;
}

.video-main {
    position: relative;
    height: 400px;
}

.video-main iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.listvideos {
    width: 100%;
    height: 40px;
    padding: 0px 10px;
    border: 1px solid #ccc;
    color: var(--color-black);
    margin-top: 10px;
    cursor: pointer;
}

/*Vì Sao chọn chúng tôi*/
.whychoose {
    background-image: url(../images/img-data/bg_why.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    height: 580px;
    padding: 40px 0px;
}

.title-why {
    text-align: center;
    color: #fff;
    font-family: 'MuliRegular';
    margin-bottom: 40px;
}

.title-why h3 {
    font-family: 'SVN-AvenirNextBold';
    text-transform: uppercase;
    font-size: 32px;
    background: url(../images/img-data/title_why.png) bottom center no-repeat;
    padding-bottom: 5px;
    margin-top: 5px;
}

.wrap-why {
    width: 50%;
    float: left;
    margin-bottom: 25px;
}

.item-why {
    width: 100%;
    max-width: 375px;
    float: left;
    padding-right: 76px;
    position: relative;
    font-family: 'MuliRegular';
    color: #fff;
}

.item-why img {
    position: absolute;
    right: 0px;
}

.wrap-why:nth-child(2n) .item-why {
    float: right;
    padding-left: 76px;
    padding-right: 0px;
}

.wrap-why:nth-child(2n+1) {
    clear: both;
}

.wrap-why:nth-child(2n) .item-why img {
    right: inherit;
    left: 0px;
}

.item-why h4 {
    font-family: 'MuliBold';
    font-size: 15px;
    color: #fff;
}

.item-why:hover h4 {
    color: #e5bd44;
}

/*Giá tốt nhất*/
.pricehot {
    width: 100%;
    display: inline-block;
    padding: 40px 0px;
    background: url(../images/img-data/la1.png)0px 30px no-repeat, url(../images/img-data/la2.png)top right no-repeat, url(../images/img-data/la3.png)bottom right no-repeat;
}

.productscroll {
    width: 100%;
    max-width: 282px;
    text-align: center;
}

.productscroll:hover .name-product.text-split {
    color: #d61a1a;
}

.scroll-price .owl-prev {
    position: absolute;
    top: calc(50% - 80px);
    left: -26px;
    background: url(../images/pre.png) no-repeat !important;
    font-size: 0px !important;
    width: 56px;
    height: 56px;
    outline: none;
}

.scroll-price .owl-next {
    position: absolute;
    top: calc(50% - 80px);
    right: -22px;
    background: url(../images/next.png) no-repeat !important;
    font-size: 0px !important;
    width: 56px;
    height: 56px;
    outline: none;
}

/*Catalogue*/
.catalogue {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
}

.item-catalogue {
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.item-catalogue h5 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    color: #2e2e2e;
    font-family: 'MuliRegular';
    height: 38px;
    font-size: 16px;
    margin: 10px 0px 0px;
}

.item-catalogue:hover h5 {
    color: #f00;
}

/* Video */
.video {
    float: left;
    width: 23.5%;
    margin: 0 2% 2% 0;
    text-align: center;
    cursor: pointer;
}

.video:nth-child(4n+1) {
    clear: both;
}

.video:nth-child(4n) {
    margin-right: 0px;
}

.pic-video {
    position: relative;
}

.pic-video:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 35px;
    top: calc(50% - 50px/2);
    left: calc(50% - 35px/2);
    z-index: 1;
    background-repeat: no-repeat;
    background-image: url(../images/play.png);
}

.pic-video img {
    width: 100%;
}

.name-video {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 0px;
}

/* Album */
.album {
    float: left;
    width: 23.5%;
    margin: 0 2% 2% 0;
    text-align: center;
    cursor: pointer;
}

.album:nth-child(4n+1) {
    clear: both;
}

.album:nth-child(4n) {
    margin-right: 0px;
}

.pic-album {
    position: relative;
}

.pic-album img {
    width: 100%;
}

.name-album {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 0px;
}

/* Brand */
.wrap-brand {
    margin-bottom: 50px;
    padding: 0px 10px;
}

.wrap-brand .wrap-content {
    max-width: 1200px;
    padding: 0px;
    position: relative;
}

.owl-brand {
    padding: 0px 40px;
}

.brand {
    display: block;
    border: 1px solid #eee;
}

.brand img {
    width: 100%;
}

/*Tầm Nhìn*/
.col-tnhin {
    border-right: 1px solid #e0e0e0;
}

.wrap-tnhin {
    width: 100%;
    max-width: 275px;
    margin: auto;
    text-align: center;
}

.content-tnhin {
    margin-top: 10px;
}

.title-tnhin h2 {
    text-transform: uppercase;
    font-size: 26px;
    position: relative;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.title-tnhin h2:before {
    background: #DFA818;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    content: '';
}

.col-tnhin:nth-child(3n) {
    border-right: none;
}

.col-tnhin:nth-child(2) .title-tnhin h2:before {
    background: #45A4DA;
}

.col-tnhin:nth-child(3) .title-tnhin h2:before {
    background: #E4573A;
}

.col-tnhin:nth-child(4) .title-tnhin h2:before {
    background: #DFA818;
}

.col-tnhin:nth-child(5) .title-tnhin h2:before {
    background: #45A4DA;
}

.col-tnhin:nth-child(6) .title-tnhin h2:before {
    background: #E4573A;
}

/*Danh mục cấp 2*/
.leftacticle {
    width: 39%;
    float: left;
    position: relative;
    z-index: 1;
}

.rightacticle {
    width: 61%;
    float: left;
}

.rightacticle img {
    width: 100%;
}

.content-acticle {
    width: calc(100% + 65px);
    position: relative;
    z-index: 1;
    padding: 20px 85px 20px 50px;
    border: 2px solid #f69b02;
}

.title-menu {
    text-align: center;
}

.title-menu h2 {
    font-family: 'Arial';
    color: #fab136;
    font-size: 30px;
    text-transform: uppercase;
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
}

.title-menu h2:before {
    position: absolute;
    width: 60px;
    height: 8px;
    content: '';
    left: calc(50% - 30px);
    bottom: 0px;
    background: #3EA6E3;
}

.content-menu {
    color: #010101;
    font-size: 20px;
    font-family: 'Arial';
}

.acticle-menu {
    margin-bottom: 50px;
}

.multi-acticle {
    margin-top: 50px;
    margin-bottom: 30px;
    width: 100%;
    display: inline-block;
}

.item-mtact {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
}

.left-mtact {
    width: 50%;
    float: left;
}

.left-mtact img {
    width: 100%;
}

.right-mtact {
    width: 50%;
    float: left;
    padding: 50px;
}

.name-mtact {
    font-family: 'Arial';
    color: #fab136;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.descr-mtact {
    color: #010101;
    font-size: 20px;
    font-family: 'Arial';
}

.item-mtact:nth-child(2n) .left-mtact {
    order: 2;
}

.read-menu {
    text-align: center;
}

.read-menu a {
    border: 1px solid #f69b02;
    text-transform: uppercase;
    padding: 10px 20px;
    display: inline-block;
    color: #555555;
}

.read-menu a:hover {
    background: #f69b02;
    color: #fff;
}

/* Sản Phẩm */
.full-product {
    width: 100%;
    display: inline-block;
    margin-bottom: 55px;
}

.content-product {
    margin-top: 30px;
}

.box-product {
    position: relative;
    display: block;
}

.pic-product {
    background: #fff;
}

.name-product {
    font-size: 16px;
    color: var(--color-black);
}

.name-product.text-split {
    -webkit-line-clamp: 1;
    font-family: 'Arial';
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
    line-height: 1.3;
}

.mar-scroll {
    margin: 0px -12px;
}

.product {
    width: 100%;
    position: relative;
    margin: auto;
    text-align: center;
    font-family: 'MuliRegular';
    color: #4c4c4c;
    font-size: 16px;
    border: 1px solid #ebebeb;
}

.weight-price {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.weight {
    display: inline-block;
    padding: 0px 5px;
}

.price {
    margin-bottom: 10px;
    text-align: center;
}
.price span{
    display: inline-block;
    padding: 0px 10px;
}
.price span.pricenew{
    color: #e50e0e;
    font-size: 18px;
    font-family: 'SFUCenturySchoolbookBTBoldCondensed';
}
.price span.priceold{
    font-family: 'RobotoRegular';
    color: #a0a0a0;
    font-size: 13px;
    text-decoration: line-through;
}
.price a {
    color: #e50e0e;
}

a.readpro {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    color: #020202;
    border: 1px solid #ff9f0f;
    padding: 3px 10px;
    border-radius: 5px;
    margin-top: 10px;
}

a.readpro:hover {
    background: #ff9f0f;
}
.sale{
    position: absolute;
    right: 10px;
    top: 10px;
    background: url(../images/img-data/sale.png) no-repeat;
    color: #fff;
    font-family: 'RobotoBold';
    font-size: 12px;
    z-index: 12;
    width: 35px;
    height: 26px;
    text-align: center;
}

.product p.date {
    color: #818181;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.add-bds span {
    color: #0066b3;
}


.wrap-product:nth-child(3n+1) {
    clear: both;
}

.img-product {
    margin-bottom: 10px;
}

.over-img {
    overflow: hidden;
}

.price-product {
    margin-bottom: 0px;
}

.price-product span {
    padding: 0px 5px;
}

.price-new {
    font-size: 17px;
    color: #d61a1a;
    font-family: 'MuliBold';
}

.price-old {
    font-size: 13px;
    color: #808080;
    text-decoration: line-through;
}

.price-per {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    background: var(--color-red);
    font-size: 11px;
    border-radius: 2px;
    width: 45px;
    height: 25px;
    text-align: center;
    line-height: 25px;
}

.cart-product {
    margin-bottom: 0px;
}

.cart-product span {
    cursor: pointer;
    width: 49%;
    float: left;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    padding: 7px 5px;
    border-radius: 3px;
}

.cart-add {
    margin-right: 2%;
    background-color: var(--color-red);
}

.cart-add:hover {
    background-color: var(--color-dark-red);
}

.cart-buy {
    background-color: var(--color-green);
}

.cart-buy:hover {
    background-color: var(--color-dark-green);
}

.viewproduct {
    width: 100%;
    text-align: center;
    display: inline-block;
}

.viewproduct a {
    color: #252525;
    padding: 10px 20px;
    display: inline-block;
    border: 1px solid #262626;
    border-radius: 25px;
    font-family: 'MuliRegular';
}

.viewproduct a:hover {
    color: #fff;
    background: #262626;
}

.hot {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 12;
}

/*Right*/
.wrap-right {
    margin-bottom: 25px;
}

.title-right {
    background: #F37F2B;
    position: relative;
}

.title-right:before {
    position: absolute;
    top: 5px;
    left: 0px;
    width: 100%;
    height: 1px;
    content: '';
    background: url(../images/img-data/linetitle.png) center no-repeat;
}

.title-right h3 {
    padding: 13px 15px;
    text-transform: uppercase;
    margin-bottom: 0px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-family: 'Oswald-Bold';
}

.wrap-right>ul {
    padding: 0px;
    margin-bottom: 0px;
    list-style: none;
    border: 1px solid #e1e1e1;
    border-top: none;
    background: #F9F9F9;
}

.wrap-right li {
    position: relative;
    padding: 0px 10px;
}

.wrap-right li:last-child {
    border-bottom: none;
}

.wrap-right li a {
    color: #333333;
    font-family: 'RobotoMedium';
    width: 100%;
    display: block;
    position: relative;
    padding: 10px 10px 10px 15px;
    border-bottom: 1px dotted #dbdbdb;
}

.wrap-right li:last-child a {
    border-bottom: none;
}

.wrap-right li a i {
    position: absolute;
    top: 12px;
    left: 0px;
}

.wrap-right li:hover>a {
    color: #f00;
}

.wrap-right li ul {
    position: absolute;
    top: 50%;
    left: 100%;
    border: 1px solid #e1e1e1;
    padding: 0px;
    margin: 0px;
    background: #fff;
    z-index: 12;
    width: 250px;
    visibility: hidden;
    opacity: 0;
    list-style: none;
}

.wrap-right li:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.content-support {
    border: 1px solid #e1e1e1;
    border-top: none;
    padding: 10px;
}

img.imgsup {
    width: 100%;
}

.hotline-sup {
    background: #c91313;
    padding: 5px 10px;
    text-align: center;
    font-family: 'utmavo';
    color: #fff;
}

.hotline-sup span {
    font-family: 'UTMAvoBold';
    font-size: 20px;
    color: #fff200;
}

.item-support {
    border-bottom: 1px dotted #dbdbdb;
    padding: 15px 10px;
}

.img-soci {
    float: left;
}

.right-sup {
    float: left;
    line-height: 1;
    font-family: 'RobotoBold';
    margin-left: 10px;
}

.right-sup h5 {
    font-size: 12px;
    font-family: 'RobotoBold';
    margin-bottom: 0px;
}

.right-sup p {
    margin-bottom: 0px;
    font-size: 12px;
}

.mail-sup {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

/* Sản Phẩm Detail */
.grid-pro-detail {
    margin-bottom: 50px;
}

.left-pro-detail {
    position: relative;
    float: left;
    width: 40%;
    text-align: center;
    margin-right: 2%;
    background: white;
}

.left-pro-detail .MagicZoom {
    border: 1px solid #eee;
    padding: 7px;
    border-radius: 5px;
}

.right-pro-detail {
    width: calc(100% - 42%);
    float: left;
}

.gallery-thumb-pro {
    position: relative;
    margin-top: 10px;
}

.slick-thumb-pro {
    margin: 0px !important;
    padding: 0px 30px;
}

.control-thumb-pro {
    position: absolute;
    top: calc(50% - 25px/2);
    margin-bottom: 0px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 23px;
    border: 1px solid #eee;
    z-index: 2;
    background-color: #fff;
    color: #ccc;
    cursor: pointer;
}

.control-thumb-pro:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: #fff;
}

.prev-thumb-pro {
    left: 0px;
}

.next-thumb-pro {
    right: 0px;
}

.thumb-pro-detail {
    display: block !important;
    margin: auto;
    max-width: 90%;
    border: 1px solid #eee;
    padding: 5px;
}

.thumb-pro-detail.mz-thumb-selected.mz-thumb {
    border-color: rgba(0, 0, 0, 0.2);
}

.thumb-pro-detail img {
    box-shadow: none !important;
    filter: brightness(100%) !important;
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.title-pro-detail {
    color: #ff000b;
    font-size: 18px;
    font-family: 'OpenSansBold';
}

.other-pro {
    margin-top: 40px;
    width: 100%;
    display: inline-block;
}

.det-ct {
    font-size: 13px;
    color: #055699;
}

.det-ct b {
    color: #000;
}

.colbl {
    color: #e70808;
    font-weight: bold;
}

.tabdetail ul {
    margin: 0px;
    list-style: none;
    background: #F37F2B;
    padding: 5px 10px 0px 10px;
    display: inline-block;
    width: 100%;
    float: left;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabdetail ul li {
    display: inline-block;
    float: left;
    margin-right: 5px;
}

.tabdetail ul li a {
    color: #fff;
    padding: 7px 10px;
    display: inline-block;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-family: 'RobotoBold';
}

.tabdetail ul li a.active {
    background: #F0F0F0;
    color: #333;
}

.content-tab {
    width: 100%;
    display: inline-block;
    padding: 20px;
    background: #F0F0F0;
}

.showtab {
    display: none;
}

.showtab.active {
    display: block;
}

.tabdetail {
    margin-bottom: 30px;
}

.showtab iframe {
    width: 100%;
    height: 400px;
}

.social-plugin-pro-detail {
    margin-bottom: 1rem;
    margin-top: 0px !important;
}

.desc-pro-detail {
    margin-bottom: 1rem;
}

.attr-pro-detail {
    list-style: none;
    padding: 0px;
}

.attr-pro-detail li {
    margin-bottom: 0.5rem;
}

.attr-label-pro-detail {
    margin: 0px 5px 0px 0px;
}

.attr-label-pro-detail.d-block {
    display: block;
    margin: 0px 0px 5px 0px;
}

.attr-content-pro-detail {
    display: inline-block;
    margin-bottom: 0px;
}

.price-new-pro-detail {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-red);
}

.price-old-pro-detail {
    font-weight: 500;
    color: var(--color-gray);
    text-decoration: line-through;
    padding-left: 10px;
}

.color-pro-detail {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 35px;
    height: 30px;
    margin: 0px 0px 3px 0px;
    border: 1px solid transparent;
}

.size-pro-detail {
    border: 1px solid #ccc;
    padding: 3px 10px 4px 10px;
    display: inline-block;
    position: relative;
}

.size-pro-detail.active, .color-pro-detail.active {
    border-color: #e5101d;
    color: #e5101d;
}

.color-pro-detail.active:before, .size-pro-detail.active:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    margin: auto;
    z-index: 1;
    background-image: url(../images/check-cart.png);
    background-repeat: no-repeat;
    background-position: bottom right;
}

.color-pro-detail input[type=radio], .size-pro-detail input[type=radio] {
    outline: none;
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    border: 0px;
    top: 0px;
    left: 0px;
}

.quantity-pro-detail {
    width: 100%;
    max-width: 110px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.quantity-pro-detail span {
    line-height: 25px;
    padding: 0px;
    width: 30px;
    height: 30px;
    color: #5f5f5f;
    cursor: pointer;
    font-size: 22px;
    border: 1px solid #cccccc;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
    border-left: 0px;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
    border-right: 0px;
}

.quantity-pro-detail input {
    height: 30px;
    border: 1px solid #cccccc;
    width: calc(100% - 60px);
    text-align: center;
    font-size: 14px;
    padding: 5px;
}

.cart-pro-detail {
    margin-bottom: 1rem;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.cart-pro-detail a {
    width: auto;
    text-align: center;
    color: #fff;
    padding: 8px 15px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}

.cart-pro-detail a.addnow {
    margin-right: 10px;
    background: #fd6e1d;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fd6e1d), to(#f59000));
    background: -webkit-linear-gradient(top, #f59000, #fd6e1d);
    background: -moz-linear-gradient(top, #f59000, #fd6e1d);
    background: -ms-linear-gradient(top, #f59000, #fd6e1d);
    background: -o-linear-gradient(top, #f59000, #fd6e1d);
}

.cart-pro-detail a.buynow {
    background-color: var(--color-green);
}

.cart-pro-detail a.buynow:hover {
    background-color: var(--color-dark-green);
}

.cart-pro-detail a i {
    vertical-align: top;
    margin-top: 3px;
    margin-right: 8px;
}

.tags-pro-detail {
    margin: 1rem 0px 2rem 0px;
}

.tags-pro-detail a {
    float: left;
    font-size: 12px;
    color: #fff;
    padding: 5px 10px 7px 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: var(--color-red);
    border-radius: 3px;
}

.tags-pro-detail a:hover {
    background-color: var(--color-medium-red);
}

.tags-pro-detail a i {
    font-size: 10px;
    float: left;
    margin: 5px 5px 0px 0px;
}

.tabs-pro-detail .ul-tabs-pro-detail {
    padding: 0px;
    list-style: none;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e7e7e7;
    margin-top: 20px;
}

.tabs-pro-detail .ul-tabs-pro-detail li {
    cursor: pointer;
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    background: #eee;
    padding: 5px 10px;
}

.tabs-pro-detail .ul-tabs-pro-detail li.active {
    background: #333;
    color: #fafafa;
}

.tabs-pro-detail .ul-tabs-pro-detail li:last-child {
    margin-right: 0px;
}

.tabs-pro-detail .content-tabs-pro-detail {
    display: none;
}

.tabs-pro-detail .content-tabs-pro-detail.active {
    display: block;
}

/* Toc */
.box-readmore {
    padding: 8px 15px;
    border: 1px solid #dedede;
    margin-bottom: 2rem;
    border-radius: 5px;
    background-color: #eeeeee;
}

.box-readmore li ul>li {
    margin: 0;
    margin-bottom: 8px
}

.box-readmore li ul>li:before {
    content: counters(item, ".") " "
}

.box-readmore ul {
    list-style-type: none;
    counter-reset: item;
    margin-bottom: 0px;
    padding-left: 0px !important;
    margin-top: 8px;
}

.box-readmore ul li {
    display: table;
    counter-increment: item;
    margin-bottom: 5px
}

.box-readmore ul li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 5px
}

.box-readmore ul li a {
    color: #333333;
    cursor: pointer;
    font-weight: 600;
}

.box-readmore ul li a:hover {
    color: #767676;
}

/* Bài viết */
.news {
    width: 100%;
    float: left;
    margin-bottom: 25px;
    display: block;
}

.news:nth-child(2n) {
    float: right;
}

.news:nth-child(2n+1) {
    clear: both;
}

.pic-news {
    float: left;
    margin-right: 15px;
}

.pic-news img {
    width: 100%;
}

.info-news {

    /* float:left; *//* width:60%; */
}

.time-news {
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}

.desc-news {
    color: #333333;
    margin-top: 5px;
    line-height: 22px;
}

.share {
    line-height: normal;
    margin-top: 15px;
}

.share b {
    display: block;
    margin-bottom: 5px;
}

.othernews b {
    margin-bottom: 10px;
}

.list-news-other {
    padding-left: 17px;
    list-style: square;
}

.list-news-other li {
    margin-bottom: 2px;
}

.list-news-other li a {
    text-transform: none;
    color: #333;
}

.list-news-other li a:hover {
    color: var(--color-hover);
}

/* Contact */
.top-contact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}

.top-contact .article-contact {
    width: 48%;
}

.form-contact {
    width: 47%;
}

.input-contact {
    position: relative;
    margin-bottom: 15px;
}

.input-contact input, .input-contact textarea {
    width: 100%;
    padding: 0px;
    outline: none;
    font-size: 14px;
}

.input-contact input {
    text-indent: 10px;
}

.input-contact textarea {
    resize: none;
    height: 150px;
    padding: 10px;
}

.input-contact .custom-file-label::after {
    content: attr(title);
}

.bottom-contact {
    position: relative;
    height: 500px;
}

.bottom-contact iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100% !important;
    height: 100% !important;
}

/*Ý kiến khách hàng*/
.customer-comment{
    width: 100%;
    margin-top: 50px;
}
.img-title{
    width: 100%;
}

.comment{
    background: url(../images/img-data/bg_kh.jpg)no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 455px;
    padding: 20px 0px;
    display: flex;
    align-items: center;
}
.padd-comment{
    padding: 0px 17px;
}
.item-comment{
    text-align: left;
    font-family: 'RobotoRegular';
    color: #fff;
    width: 100%;
    margin: auto;
    position: relative;
    background: rgba(0,0,0,0.7);
    padding: 25px;
    padding-left: 60px;
}
.item-comment:before{
    position: absolute;
    left: 0px;
    top: 15px;
    background:#009b9b url(../images/img-data/nhay.png)center no-repeat;
    content: '';
    width: 40px;
    height: 40px;
}
.title-name{
    display: inline-block;
    margin-top: 10px;
    color: #fffc00;
}
.img-comment{
    border-radius: 50%;
    position: absolute;
    bottom: -38px;
    right: -2px;
}

.img-comment img{
    border-radius: 50%;
}
.decr-coment{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: 2;
}
.slick-dots li button:before{
    display: none;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0px;
    background: #fff;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    border-radius: 50%;
}
.slick-dots li.slick-active button {
    background: var(--color-hover);
}
.comment-news{
    width: 100%;
    display: inline-block;
    margin-top: 50px;
    margin-bottom: 50px;
}
/*Phân phối trên toàn quốc*/
.item-pph{
    color: #5a5a5a;
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
}
.item-pph img{
    float: left;
    margin-right: 20px;
}
.item-pph h4{
    color: #1b1b1b;
    font-family: 'RobotoBold';
    font-size: 15px;
}
.item-pph p{
    overflow: hidden;
   text-overflow: ellipsis;
   white-space:normal;
   -webkit-line-clamp:3;
   -webkit-box-orient: vertical;
   display: -webkit-box;
}
.item-pph:hover h4{
    color: var(--color-hover);
}
.item-pph:nth-child(2n) img{
    float: right;
    margin-right: 0px;
    margin-left: 20px;
}
/* Footer */
.footer {
    background: url(../images/img-data/bg_footer.png) no-repeat;
    background-size: cover;
    width: 100%;
    display: inline-block;
    float: left;
    color: #fff;
    padding: 55px 0px 0px 0px;
    margin-top: 50px;
}

.info-footer p {
    margin-bottom: 5px;
}

.content-foo {
    padding: 10px 0px;
    font-family: 'futurabook';
    color: #eeecec;
}

.content-foo p {
    margin-bottom: 5px;
}

.social img {
    padding-right: 5px;
}

.footer.fooin {
    margin-top: 40px;
}

.cmefoo {
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    padding: 10px;
}

.cmefoo h4.namecomp {
    font-family: 'SFUFuturaBold';
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 20px;
}

.logo-footer {
    text-align: center;
    width: 100%;
    display: inline-block;
}

.footercenter {
    background: url(../images/img-data/bgfooter.png) no-repeat;
    min-height: 375px;
    width: 100%;
    background-size: cover;
    position: relative;
}

.footercenter:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    content: '';
}

.title-footer {
    margin-bottom: 10px;
    position: relative;
    font-size: 22px;
    text-transform: uppercase;
    display: inline-block;
    font-family: 'SFUCenturySchoolbookBTBoldCondensed';
}
.title-footer h3{
    font-size: 40px;
    color: #fff;
    position: relative;
    display: inline-block;
    font-family: 'SFUCenturySchoolbookBTBoldCondensed';
    text-transform: uppercase;
    margin-bottom: 20px;
}

h3.name-company {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'UTMAlbertaHeavy';
    color: #ffc000;
}

.title-cs {
    text-transform: uppercase;
    font-size: 25px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    font-family: 'Oswald-Bold';
    color: #F37F2B;
    border-bottom: 1px solid #ebebeb;
}

.title-cs:before {
    position: absolute;
    width: 123px;
    height: 6px;
    background: url(../images/img-data/linefb.png) no-repeat;
    content: '';
    left: 0px;
    bottom: -6px;
}

.text-footer {
    float: right;
}

.item_sup p {
    margin-bottom: 5px;
}

.item_sup {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.item_sup:last-child {
    border-bottom: none;
}

.footer-ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.footer-ul li {
    margin-bottom: 10px;
}

.footer-ul li:last-child {
    margin-bottom: 0px;
}

.footer-ul li a {
    width: 100%;
    position: relative;
    color: #fff;
    font-family: 'MuliRegular';
}

.footer-ul li a:hover {
    color: var(--color-hover);
}

.footer-ul li a i {
    font-size: 13px;
    margin-right: 5px;
}

.slogan-newsletter {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
}

.form-newsletter {
    width: 100%;
    position: relative;
}

.newsletter {
    width: 100%;
    display: inline-block;
    margin-top: 20px;
    max-width: 300px;
}

.content-newsletter {
    width: 100%;
    display: inline-block;
    position: relative;
}

.newsletter-input {
    width: 100%;
    margin-bottom: 15px;
}

.newsletter-input input {
    font-size: 14px;
    border: none;
    border-radius: 0px;
    height: 40px;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #ccc;
}

.newsletter-input input::-webkit-input-placeholder {
    color: #b2b2b2;
}

.newsletter-input input::-moz-placeholder {
    color: #b2b2b2;
}

.newsletter-input input:-ms-input-placeholder {
    color: #b2b2b2;
}

.newsletter-input input:-moz-placeholder {
    color: #b2b2b2;
}



.label-newsletter {
    font-family: 'MontserratBold';
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.newsletter-teara {
    width: 100%;
    margin-bottom: 15px;
}

.newsletter-teara textarea {
    width: 100%;
    height: 95px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 0px;
}

.newsletter-button {
    text-align: center;
    position: relative;

}

.newsletter-button input[type=submit] {
    border: 0px;
    background: #ff0000;
    color: var(--color-hover);
    display: inline-block;
    height: 40px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    width: 100px;
}
.newsletter-button input[type=submit]:hover {
    background: var(--color-main);
}
.footer-tags {
    margin-top: 40px;
}

.label-tags {
    float: left;
    text-transform: uppercase;
    margin-bottom: 0px;
    margin-top: 4px;
    padding-right: 10px;
}

.list-tags {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.list-tags li {
    float: left;
}

.list-tags li a {
    color: #fff;
    padding: 5px;
    display: inline-block;
}

.list-tags li a:hover {
    color: #F37F2B;
}

.wrapit-foo {
    width: 100%;
}

.footer-powered {
    width: 100%;
    display: inline-block;
    float: left;
    padding: 15px 0px;
    position: relative;
    margin-top: 50px;
    font-size: 14px;
    background: #CD272F;
    color: #fff;
}

.copyright {
    margin-bottom: 0px;
    text-align: center;
    position: relative;
    z-index: 12;
}

.footer-powered span{
    color: #f6ff00;
}

.statistic {
    float: right;
}

.statistic {
    margin-bottom: 0px;
    font-family: 'RobotoRegular';
}

.statistic span {
    padding-right: 10px;
}

.statistic span:last-child {
    padding-right: 0px;
}

.top-foo{
    position: absolute;
    background: url(../images/img-data/bgtop.png) no-repeat;
    width: 116px;
    left: calc(50% - 58px);
    top: -24px;
    text-align: center;
}

.top-foo img{
    cursor: pointer;
}

#footer-map {
    position: relative;
    width: 100%;
    height: 375px;
    display: inline-block;
    float: left;
}

#footer-map iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.info-newsletter {
    padding: 20px 0px;
    color: #d6a423;
    font-family: 'Arial';
}

.list-footer {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.list-footer li {
    width: 100%;
    position: relative;
    padding: 5px 0px;
    padding-left: 30px;
    border-bottom: 1px solid #1b6bd8;
}

.list-footer li.online {
    background: url(../images/img-data/online.png) left center no-repeat;
}

.list-footer li.week {
    background: url(../images/img-data/week.png) left center no-repeat;
}

.list-footer li.month {
    background: url(../images/img-data/month.png) left center no-repeat;
}

.list-footer li.total {
    background: url(../images/img-data/total.png) left center no-repeat;
}

.list-footer li:before {
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0px;
    bottom: -2px;
    background: #0b3876;
    content: '';
}

.list-footer li span {
    display: inline-block;
    width: 50%;
    float: left;
}

.list-footer li a {
    color: #fff;
    padding: 5px 0px;
    width: 100%;
    display: inline-block;
    font-size: 15px;
}

.list-footer li:hover a {
    color: #3854A4;
}

.mangxhfoo {
    margin-top: 30px;
    text-align: left;
}


p.inf {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    padding-top: 0px;
    display: flex;
    align-items: center;
    min-height: 30px;
    border-bottom: 1px dotted #fff;
    padding-bottom: 10px;
    max-width: 520px;
}

p.inf i {
    color: #fff;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    line-height: 22px;
    text-align: center;
    /* border: 1px solid #fff; */
    font-size: 17px;
    border-radius: 5px;
}

h3.company {
    text-transform: uppercase;
    color: #fff;
    font-family: 'MontserratBold';
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Like Share */
.social-plugin {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.social-plugin .at-share-btn {
    margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
    margin-left: 3px;
}

/* Phân Trang */
.pagination-home .pagination .page-item .page-link {
    color: #212529;
    font-size: .875rem;
}

.pagination-home .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #212529;
    border-color: #212529;
}

/* Phân Trang Ajax */
.pagination-ajax {
    text-align: center;
}

.pagination-ajax a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 2px 3px 2px;
    color: #333;
    background: #eee;
    border: 1px solid rgba(161, 161, 161, 0.4);
    font-size: 12px;
    cursor: pointer;
    padding: 3px 10px 5px 10px;
    border-radius: 2px;
}

.pagination-ajax a.current, .pagination-ajax a:hover {
    background: var(--color-hover);
    color: #fff;
    border-color: var(--color-hover);
}

/* Popup custom */
.modal-custom .modal-footer {
    padding: 0.5rem;
}

.modal-custom .modal-footer .btn {
    font-size: 14px;
}

/* Popup */
#popup .modal-body {
    padding: 0px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    visibility: hidden !important;
    overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
    display: none;
}

/* Scroll Top */
.scrollToTop {
    width: 41px;
    height: 41px;
    text-align: center;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position: fixed;
    bottom: 65px;
    right: 25px;
    display: none;
    z-index: 10;
    cursor: pointer;
}

.centerscrtop {
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    background: #E69F12;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 30px);
    top: -30px;
}

/* Text Hide */
.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

/* Transition All */
.transition {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

/* Scale IMG */
.scale-img {
    overflow: hidden;
    display: block;
}

.scale-img img {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.scale-img:hover > img {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

/* Blink */
.blink {
    -webkit-animation-name: blink;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blink;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: blink;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blink {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }

}

@-webkit-keyframes blink {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }

}

@keyframes blink {
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }

}

/* Button Frame */
.btn-frame {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

.btn-frame i {
    display: flex;
    display: -ms-flex;
    justify-content: center;
    align-items: center;
    -ms-flex-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1182FC;
    position: relative;
    z-index: 1;
}

.btn-frame i img {
    vertical-align: middle;
    width: 70%;
}

.btn-frame .animated.infinite {
    animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
    width: 60px;
    height: 60px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: .1;
    border-color: #1182FC;
    opacity: .5;
}

.btn-frame .zoomIn {
    animation-name: zoomIn;
}

.btn-frame .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
    width: 70px;
    height: 70px;
    top: -10px;
    right: -10px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: rgba(7, 41, 103, 0.35);
    opacity: .4;
}

.btn-frame .pulse {
    animation-name: pulse;
}

/* Zalo */
.btn-zalo {
    bottom: 315px;
}

/* Phone */
.btn-phone {
    bottom: 230px;
}

/* Messenger */
.js-facebook-messenger-container.closed, .js-facebook-messenger-tooltip.closed {
    display: none !important
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-tooltip {
    display: none;
    position: fixed;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    z-index: 1.0E+30
}

.js-facebook-messenger-close-tooltip {
    width: 10px;
    height: 10px;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px
}

.js-facebook-messenger-box.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

.js-facebook-messenger-box.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-box {
    display: block;
    position: fixed;
    cursor: pointer;
    bottom: 150px;
    right: 17px;
    width: 56px;
    height: 56px;
    text-align: center;
    background: #1182FC;
    border-radius: 100%;
    overflow: hidden;
    z-index: 99;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3)
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
    transform: rotate(0deg)
}

.js-facebook-messenger-box svg#fb-msng-icon {
    width: 32px;
    height: 33px;
    position: absolute;
    top: 13px;
    left: 12px;
    opacity: 1;
    overflow: hidden;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
    transform: rotate(-45deg)
}

.js-facebook-messenger-box svg#close-icon {
    opacity: 0;
    width: 19px;
    height: 20px;
    position: absolute;
    top: 19px;
    left: 19px;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000
}

.js-facebook-messenger-container {
    position: fixed;
    opacity: 0;
    transform: translateY(50px);
    bottom: 110px;
    right: 90px;
    border-radius: 10px;
    pointer-events: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -moz-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -o-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out
}

.js-facebook-messenger-top-header {
    width: 220px
}

.js-facebook-messenger-top-header {
    color: #fff;
    background: #1182FC
}

.js-facebook-messenger-top-header {
    display: block;
    position: relative;
    width: 220px;
    background: #1182FC;
    color: #fff;
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.js-facebook-messenger-container iframe, .js-facebook-messenger-container-button iframe {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px
}

.js-facebook-messenger-box, .js-facebook-messenger-button, .js-facebook-messenger-tooltip {
    z-index: 999
}

.js-facebook-messenger-container, .js-facebook-messenger-container-button {
    z-index: 1000
}

.js-facebook-messenger-top-header {
    color: #fff;
    background: #1182FC
}

.js-facebook-messenger-top-header {
    width: 220px
}

.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff
}

.js-facebook-messenger-container.open {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all
}

.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
    opacity: 0
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
    transform: rotate(0deg)
}

.js-facebook-messenger-box.open svg#close-icon {
    opacity: 1
}

/* Cart fix */
.cart-fixed {
    position: fixed;
    right: -100px;
    bottom: 390px;
    z-index: 10;
    background: #4b4f56;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff !important;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-fixed i {
    font-size: 20px;
}

.cart-fixed span {
    position: absolute;
    top: 0px;
    right: -5px;
    color: #fff;
    width: 25px;
    height: 25px;
    background: var(--color-red);
    text-align: center;
    line-height: 25px;
    font-size: 11px;
    border-radius: 100%;
}

.fix_head .cart-fixed {
    right: 20px;
}

.alert-warning{
    width: 100%;
}

/* Toolbar */
.toolbar {
    background: var(--color-red);
    width: 100%;
    padding: 3vw;
    bottom: 0px;
    position: fixed;
    z-index: 500;
    height: auto;
    left: 0px;
}

.toolbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
}

.toolbar ul li {
    text-align: center;
    width: 25%;
}

.toolbar ul li a {
    display: block;
    width: 100%;
    cursor: pointer;
}

.toolbar ul li a img {
    height: 6vw;
    width: auto;
}

.toolbar ul li a span {
    font-weight: 400;
    color: #fff;
    font-size: 3.5vw;
    display: none;
}

/* Fixbar */
.fixbar {
    bottom: 0;
    display: block;
    background: #f0eff4;
    border-top: 1px solid #ddd;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    margin: 0;
    z-index: 500;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 50px;
}

.fixbar ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.fixbar ul li {
    display: inline-block;
    margin: 0 auto 10px;
    text-align: center;
    width: 25%;
    float: left;
}

.fixbar .icon-cart-mobile, .fixbar .icon-cart-new, .fixbar .icon-home-new, .fixbar .icon-hotdeal-new {
    width: 20px;
    height: 20px;
    display: block;
    margin: 8px auto 0;
}

.fixbar .icon-cart-mobile {
    background: url(../images/cart-mobile.png) no-repeat;
}

.cart-total-header-mobile {
    font-size: 10px;
    position: absolute;
    background: red;
    color: #fff !important;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    line-height: 15px;
    top: 5px;
    margin-left: 5px;
}

.fixbar ul li a {
    font-size: 11px;
    text-decoration: none;
    color: #333;
}

.fixbar ul li a i {
    font-size: 20px;
}

/* Plugbar */
.plugbar {
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid #eae6e6;
    width: 100%;
    right: 0;
    max-width: 767px;
    margin: 0 auto;
    background: #fff;
    padding: 9px 10px 10px 7px;
    z-index: 10;
}

.plugbar ul {
    list-style: none;
    padding: 0;
    margin: 0px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plugbar ul li {
    width: 20%;
    float: left;
}

.plugbar ul li a {
    display: block;
    color: #696969;
    font-size: 12px;
    text-align: center;
    position: relative;
}

.plugbar ul li a i {
    font-size: 20px;
    color: #696969;
}

.plugbar ul li a span {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -40px;
    left: calc(50% - 50px/2);
    font-size: 14px;
    display: block;
    border: 1px solid rgba(234, 230, 230, 0.5);
    border-radius: 100%;
}

.videoabout {
    width: 100%;
    height: 500px;
    position: relative;
    display: inline-block;
}

.videoabout iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

.supports{
    margin-bottom: 60px;
}
.your-cant-support{
    background: #F2F2F2;
    padding: 20px;
    padding-bottom: 35px;
}
/* Combo Phone */
.support-online {
    position: fixed;
    z-index: 999;
    left: 10px;
    bottom: 0px;
}

.support-online a {
    position: relative;
    margin: 20px 10px;
    text-align: left;
    width: 40px;
    height: 40px;
}

.support-online i {
    width: 40px;
    height: 40px;
    background: #43a1f3;
    color: #fff;
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    line-height: 1.9;
    position: relative;
    z-index: 999;
}

.support-online a span {
    border-radius: 2px;
    text-align: center;
    background: rgb(103, 182, 52);
    padding: 9px;
    display: none;
    width: 180px;
    margin-left: 10px;
    position: absolute;
    color: #ffffff;
    z-index: 999;
    top: 0px;
    left: 40px;
    transition: all 0.2s ease-in-out 0s;
    -moz-animation: headerAnimation 0.7s 1;
    -webkit-animation: headerAnimation 0.7s 1;
    -o-animation: headerAnimation 0.7s 1;
    animation: headerAnimation 0.7s 1;
}

.support-online a:hover span {
    display: block;
}

.support-online a {
    display: block;
}

.support-online a span:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent  rgb(103, 182, 52) transparent transparent;
    position: absolute;
    left: -10px;
    top: 10px;
}

.support-online .kenit-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -10px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: rgba(0, 175, 242, 0.5);
    opacity: .75;
    right: -10px;
}

.support-online .kenit-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: .1;
    border-color: #0089B9;
    opacity: .5;
}

.support-online .support-online .btn-support {
    cursor: pointer;
}

.support-online .mes i {
    background: orange;
}

.support-online .sms i {
    background: red;
}

.support-online .call-now i {
    background: green;
}

/* Phone Switch */
.widget-mobile {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    z-index: 9999999;
}

#my-phone-circle {
    position: relative;
    width: 50px !important;
    height: 50px !important;
}

.wcircle-open .wcircle-icon i:before {
    content: '\f00d';
}

.wcircle-icon {
    background: #1282fc;
    border-radius: 50%;
    display: flex !important;
    display: -ms-flex !important;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative !important;
}

.wcircle-icon:before {
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    background: rgba(18, 130, 252, .5);
    border: 1px solid #fff;
    border-radius: 50%;
    left: -5px;
    top: -5px;
    -webkit-animation: pulse 1s infinite ease-in-out;
    -moz-animation: pulse 1s infinite ease-in-out;
    -ms-animation: pulse 1s infinite ease-in-out;
    -o-animation: pulse 1s infinite ease-in-out;
    animation: pulse 1s infinite ease-in-out;
}

.wcircle-icon:after {
    position: absolute;
    content: '';
    width: 80px;
    height: 80px;
    background: rgba(18, 130, 252, .5);
    border-radius: 50%;
    left: -15px;
    top: -15px;
    -webkit-animation: zoomIn 2s infinite ease-in-out;
    -moz-animation: zoomIn 2s infinite ease-in-out;
    -ms-animation: zoomIn 2s infinite ease-in-out;
    -o-animation: zoomIn 2s infinite ease-in-out;
    animation: zoomIn 2s infinite ease-in-out;
}

.wcircle-menu {
    position: absolute !important;
    left: 0;
    top: 0;
    display: none;
}

.wcircle-menu-item {
    width: 50px;
    height: 50px;
    background: #1282fc;
    border-radius: 50%;
    display: flex;
    display: -ms-flex;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wcircle-menu-item img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
}

.wcircle-menu-item i, .wcircle-icon i {
    font-size: 25px;
    color: #fff;
    position: relative;
    z-index: 9999;
}

.shake-anim {
    -webkit-animation: shake-anim 1s infinite ease-in-out;
    -moz-animation: shake-anim 1s infinite ease-in-out;
    -ms-animation: shake-anim 1s infinite ease-in-out;
    -o-animation: shake-anim 1s infinite ease-in-out;
    animation: shake-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

@-moz-keyframes shake-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10%, 30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%, 40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    100%, 50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }

}

@-webkit-keyframes shake-anim {
    0%, 100%, 50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10%, 30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%, 40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

}

@-o-keyframes shake-anim {
    0%, 100%, 50% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }

    10%, 30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20%, 40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }

}