@charset "UTF-8";

/* Main */
:root {
    --c1: #3f9636;
    --c2: #98c036;
    --c3: #f7941d;
    --color-blue: #0d76bf;
    --color-blue-dark: #065c98;
    --color-red: #ec2d3f;
    --color-medium-red: #cc2c32;
    --color-dark-red: #c31829;
    --color-green: #28a745;
    --color-dark-green: #207d36;
    --color-black: #212529;
    --color-gray: #6c757d;
}

body {
    font-size: 14px;
    font-family: 'font1';
    max-width: 1366px;
    margin: 0px auto;
    top: 0 !important;
}

#wrap_full {
    background-color: #ffffff;
}

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;
}

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

.hidden {
    display: none;
}

.clear {
    clear: both;
}

.none {
    display: none;
}

.hidden-seoh {
    visibility: hidden;
    height: 0px;
    margin: 0px;
    overflow: hidden;
}

.wrap-main,
.wrap-content {
    max-width: 13;
    margin: 40px auto;
    padding: 0px 10px;
}

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

.wrap-content {
    margin: auto;
}

a:hover {
    text-decoration: none;
}

.fix_mmenu_mob {
    width: 0;
    height: 0;
    overflow: hidden;
}

.flex_layout_center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-between;
    align-items: center;
}




/* IMG_HOVER */
.img_hover {
    overflow: hidden;
    position: relative;
    padding: 0;
    z-index: 0;
}

.img_hover:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 22;
    display: block;
    /* content: ''; */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=15, Direction=0, Color=#000000)";
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2) inset;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2) inset;
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=15, Direction=135, Color=#000000);
}

.img_hover:before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 22;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .5) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.img_hover:hover:before {
    -webkit-animation: shine .6s;
    animation: shine .6s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* 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;
}

.social {
    list-style: none;
    padding: 0px;
    margin: 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: #0e61d2;
    border-color: #0e61d2;
    color: #fff;
}

.prev-carousel {
    left: 0px;
}

.next-carousel {
    right: 0px;
}

/* Menu RP */
.menu-res {
    display: none;
    height: 55px;
    z-index: 10;
    background: var(--c1);
    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;
}

.menu-bar-res .search.w-clear {
    margin-left: 10px;
}

/* 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;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

.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;
}

/* Slideshow */
.slideshow {
    position: relative;
}

.slideshow a {
    display: block;
    cursor: pointer;
}

.slideshow a img {
    width: 100%;
}

.slideshow:hover .control-slideshow {
    opacity: 0.3;
}

.slideshow .control-slideshow:hover {
    opacity: 0.8;
}

.control-slideshow {
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: calc(50% - 50px/2);
    width: 35px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    cursor: pointer;
    margin: 0px;
    background-color: #000000;
    border-radius: 3px;
}

.control-slideshow i {
    color: #ffffff;
}

.prev-slideshow {
    left: 20px;
    padding-right: 3px;
}

.next-slideshow {
    right: 20px;
    padding-left: 3px;
}

/* Breadcrumb */
.breadCrumbs {
    background-color: #eee;
}

.breadCrumbs .wrap-content {
    padding: 0.75rem 15px;
    max-width: 1300px;
}

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

.breadCrumbs .wrap-content .breadcrumb-item a {
    color: var(--color-black);
}

.breadCrumbs .wrap-content .breadcrumb-item.active a {
    color: var(--color-gray);
}

/* 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;
}

/* 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;
}

/* 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%;
}

/* Bài viết */
.news {
    width: 49%;
    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: 4%;
    width: 36%;
}

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

.info-news {
    float: left;
    width: 60%;
}

.name-news {
    color: #333;
    font-size: 16px;
    display: block;
    line-height: normal;
    margin-bottom: 5px;
}

.name-news:hover {
    color: var(--c1);
}

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

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

.share {
    padding: 17px 10px 10px 10px;
    line-height: normal;
    background: rgba(128, 128, 128, 0.15);
    margin-top: 15px;
    border-radius: 5px;
}

.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: #333333;
}

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

.grid_newspage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

a.newspage_items {
    display: block;
    width: 100%;
}

.newspage_img {
    width: 100%;
}

.newspage_img img {
    width: 100%;
}

.newspage_title {
    font-size: 16px;
    color: #333;
    margin: 10px 0 8px;
    font-weight: bold;
    transition: all .3s ease;
}

.newspage_title:hover {
    color: var(--c1);
    transition: all .3s ease;
}

.newspage_detail {
    color: #333333eb;
    transform: scale;
}

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

.top-contact.tuyendungpage {
    justify-content: center;
}

.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;
}

/* 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: #555555;
    font-size: .875rem;
}

.pagination-home .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: var(--c1);
    border-color: var(--c1);
}

/* Phân Trang Ajax */
.pagination-ajax {
    text-align: center;
    clear: both;
    padding-left: 0;
    width: 100%;
}

.pagination-ajax a {
    transition: all .3s ease;
    display: inline-block;
    vertical-align: top;
    margin: 0px 3px 5px 3px;
    color: #262626;
    background: #eee;
    border: 1px solid #e6e6e6;
    font-size: 13px;
    cursor: pointer;
    padding: 0 10px;
    border-radius: 0;
    height: 38px;
    min-width: 38px;
    line-height: 38px;
}

.pagination-ajax a.current,
.pagination-ajax a:hover {
    background: var(--c2);
    color: rgb(255 255 255);
    border-color: var(--c2);
    transition: all .3s ease;
}

/* 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;
}

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

.text-split-1 {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
}

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

.text-split-4 {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
}

.text-split-5 {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
}

/* 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: 999;
    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;
}

/* Google Maps */
.btn-google_map {
    bottom: 400px;
}

.btn-google_map i {
    background: #1182FC !important;
}

.toolbar ul li a#googlemap img {
    height: 8vw;
    width: auto;
    margin-top: -5px;
}

/* 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
}

/* Toolbar */
.toolbar {
    background: var(--c1);
    width: 100%;
    padding: 3vw;
    bottom: -1px;
    position: sticky;
    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;
}

/* 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;
}

@-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)
    }
}

/* Bài viết */
.news {
    width: 49%;
    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: 4%;
    width: 36%;
}

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

.info-news {
    float: left;
    width: 60%;
}

.name-news {
    color: #333;
    font-size: 16px;
    display: block;
    line-height: normal;
    margin-bottom: 5px;
}

.name-news:hover {
    color: var(--color-red);
}

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

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

.share {
    padding: 17px 10px 10px 10px;
    line-height: normal;
    background: rgba(128, 128, 128, 0.15);
    margin-top: 15px;
    border-radius: 5px;
}

.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: #333333;
}

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

/* Nav mobile end */
.mm-panels {
    height: 100vh !important;
}

/* Slide show start */
.wrap_slidershow img {
    width: 100% !important;
    height: auto !important;
}

.wrap_slidershow {
    position: relative;
    min-height: 470px;
}

.wrap_slidershow .owl-theme .custom-nav {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
}

.wrap_slidershow .owl-theme .custom-nav .owl-prev,
.wrap_slidershow .owl-theme .custom-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 100px;
    color: inherit;
    background: none;
    border: none;
    z-index: 10;
}

.wrap_slidershow .owl-theme .custom-nav .owl-prev span,
.wrap_slidershow .owl-theme .custom-nav .owl-next span {
    font-size: 2.5rem;
    color: #ffffff;
}

.wrap_slidershow .owl-theme .custom-nav .owl-prev {
    left: 85px;
    opacity: .6;
    background-image: url('../images/pre-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
}

.wrap_slidershow .owl-theme .custom-nav .owl-next {
    right: 85px;
    opacity: .6;
    background-image: url('../images/next-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
}

.wrap_slidershow .owl-carousel__slideshow .item img {
    width: 100%;
    height: 525px;
}

@media (max-width: 1200px) {
    .wrap_slidershow {
        min-height: 400px !important;
    }
}

@media (max-width: 1024px) {
    .wrap_slidershow {
        min-height: 300px !important;
    }
}

@media (max-width: 768px) {
    .wrap_slidershow {
        min-height: 200px !important;
    }
}

@media (max-width: 500px) {
    .wrap_slidershow {
        min-height: 120px !important;
    }
}


/* 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;
}

.owl-thumb-pro {
    padding: 0px 40px;
}

.thumb-pro-detail {
    display: block !important;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
}

.thumb-pro-detail.mz-thumb.mz-thumb-selected {
    border-color: #cecfd2;
}

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

.title-pro-detail {
    text-transform: capitalize;
    font-size: 20px;
    display: block;
    font-weight: 700;
}

.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;
}

.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;
}

.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: var(--c1);
    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;
}

/* Responsive */
@media(max-width:1001px) {
    .menu {
        display: none;
    }

    .menu-res {
        display: block;
    }
}

@media(max-width:850px) {
    .news {
        width: 100%;
        float: none !important;
    }
}

@media(max-width:769px) {
    .top-contact {
        flex-wrap: wrap;
    }

    .left-pro-detail,
    .right-pro-detail,
    .top-contact .form-contact,
    .top-contact .article-contact {
        width: 100%;
        margin: 0px;
    }

    .left-pro-detail,
    .top-contact .article-contact {
        margin-bottom: 30px;
    }
}

@media(max-width:440px) {

    .pic-news,
    .info-news {
        display: block;
        width: 100%;
        float: none;
        text-align: center;
        margin: 0px;
    }

    .info-news {
        margin-top: 15px;
    }

    .top-contact .form-contact .button-contact .file-contact span b {
        max-width: 105px;
    }
}

@media(max-width:369px) {
    .cart-pro-detail {
        flex-wrap: wrap;
    }

    .cart-pro-detail a {
        width: 100%;
        text-align: center;
        margin: 0px !important;
        font-size: 12px;
    }

    .cart-pro-detail a:first-child {
        margin-bottom: 5px !important;
    }

    .cart-pro-detail a i {
        display: none;
    }
}

































/* Header */
header {
    width: 100%;
    position: relative;
    background: url(../imgs/bg_header.png) center repeat-y, url(../imgs/bg_header2.png) top right no-repeat;
}

.flex_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.header_logo {
    flex-shrink: 0;
}

.header_logo a {
    display: block;
}

.header_logo a img {
    height: 115px;
    max-width: 100%;
    width: auto;
}

.header_info {
    flex-shrink: 0;
    text-align: center;
}

.header_info__title {
    font-size: 32px;
    font-family: 'font2';
    text-transform: uppercase;
    color: var(--c3);
    font-weight: bold;
}

.header_info__detail {
    font-size: 20px;
    color: #000000;
    font-family: 'font3';
    text-transform: uppercase;
}

.header_right {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
}

.header_dich {
    width: 130px;
}

.header_phone {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.header_phone__img {
    flex-shrink: 0;
    margin-right: 10px;
}

.header_phone__txt {
    flex: 1;
}

.header_phone__txt span {
    display: block;
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}

.header_phone__txt b {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #ef0d0d;
}

.header_line {
    display: block;
    width: 1px;
    height: 65px;
    background: #e9e9e9;
    margin: 0 30px;
}

/* GOOGLE DỊCH */
.goog-te-banner-frame {
    display: none;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    height: 30px !important;
}

.goog-te-gadget .goog-te-combo {
    color: #3b3b3b !important;
    padding: 9px 4px;
    font-size: 13px;
    width: 130px;
    border: 1px solid var(--c1);
    border-radius: 3px;
    margin: 0;
    font-family: 'font1';
}

/* Menu */
.menu {
    background-color: var(--c1);
    position: sticky;
    top: -1px;
    z-index: 999;
    height: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-image: url(../imgs/bg_menu.png);
    background-size: cover;
}

.bg_menu {
    position: relative;
}

.menu .container {
    transition: all .3s ease;
}

.menu ul {
    width: 100%;
    padding: 0px;
    margin: auto;
    list-style: none;
}

.menu ul li {
    position: relative;
    z-index: 99;
    flex: auto;
}

.menu ul li a h2 img {
    vertical-align: middle;
}

.menu ul li.line {
    width: 6px;
    height: 50px;
    background: rgb(255 255 255 / 15%);
    display: none;
}

.menu ul li a {
    display: block;
    position: relative;
    z-index: 1;
    text-align: center;
    text-decoration: none !important;
}

.menu ul li a h2 {
    position: relative;
    font-size: 16px;
    color: #ffffff;
    margin: 0px;
    padding: 0;
    text-transform: uppercase;
    font-weight: 600;
    height: 50px;
    line-height: 52px;
    transition: all .3s ease;
}

.menu ul li ul {
    position: absolute;
    min-width: 200px;
    width: max-content;
    background: var(--c1);
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.menu ul li:hover>ul {
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
    transition: all .7s;
}

.menu ul li ul li a {
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu ul li ul li:last-child>a {
    border-bottom: 0px;
}

.menu ul li ul li a h2 {
    font-size: 14px;
    padding: 12px 15px;
    position: relative;
    height: unset;
    line-height: unset;
}

.menu h2 svg {
    width: 22px;
    height: 22px;
    margin-top: -6px;
}

.menu ul li ul li a h2::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 0;
    background-color: yellow;
    left: 0;
    top: 0;
    transition: height .3s ease;
    background-image: none;
}

.menu ul li a.active h2::before,
.menu ul li:hover>a h2::before {
    height: 100%;
    transition: height .3s ease;
}

.menu ul li ul li ul {
    top: 0px;
    left: 100%;
}

.menu.scrolled .container {
    padding-left: 0;
    transition: all .3s ease;
}

.menu ul li a.active h2,
.menu ul li:hover>a h2 {
    transition: all .3s ease;
    background: var(--c2);
}

.menu ul li a.active h2::before,
.menu ul li a:hover h2::before,
.menu ul li a.active h2::after,
.menu ul li a:hover h2::after {
    transition: all .3s ease;
    opacity: 1;
}

.menu ul li ul li a h2::after {
    display: none;
}

/* Search */
.search {
    width: 275px;
    background: #fff;
    border-radius: 100px;
    border: none;
    height: 38px;
    padding: 5px;
    margin-left: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.search p {
    float: left;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: #fff;
    background: var(--c1);
    padding: 0;
    margin-right: -10px;
    transition: all .3s ease;
}

.search p:hover {
    background: var(--c3);
    color: #000000;
    transition: all .3s ease;
}

.search input {
    width: calc(100% - 42px);
    height: 100%;
    float: left;
    outline: none;
    padding: 0px;
    border: 0px;
    background: transparent;
    text-indent: 10px;
    font-size: 13px;
    color: #000;
    padding-left: 5px;
    padding-right: 5px;
}

.search input::-webkit-input-placeholder {
    color: #636363;
}

.search input:-moz-placeholder {
    color: #636363;
}

.search input::-moz-placeholder {
    color: #636363;
}

.search input:-ms-input-placeholder {
    color: #636363;
}

button:focus {
    outline: none;
}

/* Footer start */
footer {
    color: #333333;
    clear: both;
    background-image: url(../imgs/bg_footer.png);
}

.footer_main {
    width: 100%;
    padding: 60px 0 30px;
}

.footer_main_flex {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
}

.footer_col1 {
    width: 49%;
}

.footer_col2 {
    width: 21%;
}

.footer_col4 {
    width: 25%;
}

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

.footer_title {
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'font1';
    font-weight: 900;
    color: var(--c1);
}

.footer_line {
    width: 100%;
    height: 3px;
    background-image: url(../imgs/bg_line.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 10px 0 20px;
}

.footer_name {
    font-size: 32px;
    color: var(--c1);
    font-family: 'font2';
    text-transform: uppercase;
    margin: 5px 0 15px 0;
    font-weight: bold;
}

.footer__noidung {
    width: 100%;
    margin: 10px 0 20px;
    font-size: 14px;
}

.footer-ul {
    padding-left: 15px;
    margin: 0px;
}

.footer-ul li {
    margin-bottom: 12px;
    list-style: square;
}

.footer-ul li::marker {
    color: var(--c1);
}

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

.footer-ul li a {
    color: #333333;
    transition: all .3s ease;
    font-size: 16px;
}

.footer-ul li a:hover {
    color: var(--c1);
    transition: all .3s ease;
}

.copyright_name {
    font-weight: bold;
}

.footer_title1 {
    font-size: 17px;
    color: #333333;
    text-transform: uppercase;
    font-weight: 600;
}

div#bottom {
    width: 100%;
    background-image: url(../imgs/bottom.png);
    background-size: cover;
    background-position: top center;
}

.flex_bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    font-size: 13px;
    color: #ffffff;
}

/* WRAP GIỚI THIỆU */
.wrap_gioithieu {
    width: 100%;
    padding: 60px 0;
    background-image: url(../imgs/bg_footer.png);
}

.flex_gioithieu {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.gioithieu_txt {
    width: 46%;
}

.gioithieu__wc {
    font-size: 14px;
    color: #212121;
    text-transform: uppercase;
    font-weight: 500;
}

.gioithieu__title {
    font-size: 32px;
    font-family: 'font2';
    text-transform: uppercase;
    color: var(--c3);
    font-weight: bold;
    margin: 8px 0 12px;
}

.gioithieu__detail {
    font-size: 15px;
    color: #222121;
    line-height: 2;
    text-align: justify;
    margin-bottom: 30px;
}

a.gioithieu__link {
    display: block;
    width: 120px;
    height: 42px;
    line-height: 41px;
    border: 2px solid var(--c3);
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    color: #313131;
    transition: all .3s ease;
}

a.gioithieu__link:hover {
    background: var(--c1);
    color: #ffffff;
    transition: all .3s ease;
    border: 2px solid var(--c1);
}

.gioithieu_img {
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.gioithieu_img1 {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.gioithieu_img2 {
    position: absolute;
    left: 0;
    border: 5px solid #fff;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

/* WRAP TITLE */
.wrap_title {
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 40px;
}

.wrap_title::before {
    position: absolute;
    content: '';
    top: 105%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--c1);
}

.wrap_title.page {
    width: 100%;
    margin: 30px 0px 45px;
}

.wrap_title.detail {
    width: 100%;
    margin: 30px 0px 45px;
}

.wrap_title.detail .title_main {
    font-size: 30px;
}

.title_main {
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    color: var(--c1);
    font-weight: bold;
}

.title_detail {
    font-size: 16px;
    color: #333333;
    padding-bottom: 12px;
    padding-top: 5px;
}

/* WRAP SẢN PHẨM NỔI BẬT */
.wrap_spnb {
    width: 100%;
    padding: 60px 0;
    background-image: url(../imgs/bg_spnb.jpg);
    background-size: cover;
    margin-bottom: 30px;
}

.spnb__img {
    width: 100%;
    position: relative;
}

.spnb__img_sp {
    background: #fff;
    padding: 30px;
}

.spnb__border {
    width: 100%;
    height: max-content;
    border-radius: 100%;
    border: 10px solid rgb(255 255 255 / 10%);
    overflow: hidden;
}

.spnb__border img {
    width: 100%;
    height: 100%;
}

.spnb__title {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    transition: all .3s ease;
}

.spnb__title:hover {
    color: var(--c2);
    transition: all .3s ease;
}

/* WRAP SẢN PHẨM LIST NỔI BẬT */
.wrap_splistnb {
    width: 100%;
    padding: 30px 0;
}

.splist_nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    user-select: none;
}

.splist_title {
    flex-shrink: 0;
}

.splist_viewmore {
    flex: 1;
    text-align: right;
    border-bottom: 1px solid var(--c1);
    background: url(../imgs/bg_viewmore.png) left bottom no-repeat;
}

.splist__link {
    font-size: 17px;
    color: #333333;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .3s ease;
}

.splist__link::hover {
    color: var(--c1);
    transition: all .3s ease;
}

.splist_control {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
}

.splist_title {
    font-size: 30px;
    font-weight: bold;
    color: var(--c1);
    text-transform: uppercase;
    padding-right: 45px;
}

.bnt_control {
    width: 30px;
    height: 30px;
    background: hsl(114deg 47% 40% / 80%);
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease;
    user-select: none;
}

.bnt_control svg {
    width: 15px;
    height: 15px;
}

.bnt_control:hover {
    background: var(--c1);
    transition: all .3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.wrap_owl_sp {
    width: 100%;
    position: relative;
}

a.sanpham__items {
    display: block;
    width: 100%;
    padding-right: 10px;
}

.sanpham__img {
    width: 100%;
    box-shadow: rgb(0 0 0 / 5%) 4px 4px 5px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
}

.sanpham__img img {
    width: 100%;
}

.sanpham__title {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #000000;
    margin: 18px 0 5px;
    transition: all .3s ease;
}

.sanpham__title:hover {
    color: var(--c1);
    transition: all .3s ease;
}

.sanpham__price {
    width: 100%;
    text-align: center;
    font-size: 15px;
    color: #333333;
}

span.sanpham__price_new {
    font-weight: bold;
    color: #e80000;
}

span.sanpham__price_old {
    margin-left: 8px;
    text-decoration: line-through;
    font-size: 14px;
    color: #333;
}

/* WRAP WHY */
.wrap_why {
    width: 100%;
    background-image: url(../imgs/bg_why.jpg);
}

.flex_why {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.why_banner {
    width: 50%;
}

.why_banner img {
    width: 100%;
}

.wrap_container_why {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
}

.flex_why_txt {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.why_txt {
    width: 50%;
    padding-left: 50px;
    text-align: center;
}

.why_txt_title {
    font-size: 35px;
    color: #ffffff;
    font-family: 'font3';
}

.why_txt_detail {
    font-size: 30px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
}

.why_txt_line {
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 10px auto;
}

.why_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    margin-top: 30px;
}

.why__item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.why__img {
    flex-shrink: 0;
    margin-right: 15px;
    border: 2px solid #fff;
    border-radius: 100%;
    padding: 2px;
}

.why__border {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #fff;
    padding: 13px;
}

.why__border img {
    transition: all .5s;
}

.why__txt {
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    transition: all .3s ease;
}

.why__item:hover .why__txt {
    color: yellow;
    transition: all .3s ease;
}

.why__item:hover img {
    transform: rotateY(360deg);
    transition: all .8s ease;
}

/* WRAP FEEDBACK */
.wrap_feedback {
    width: 100%;
    padding: 30px 0;
    background-image: url(../imgs/bg_footer.png);
}

.feedback__item {
    display: flex;
    width: 100%;
    align-items: center;
}

.feedback__img {
    flex-shrink: 0;
    margin-right: 15px;
    border-radius: 100%;
    padding: 10px;
    border: 1px solid var(--c1);
}

.feedback__img img {
    margin-left: -10px;
    border-radius: 100%;
}


.feedback__txt {
    flex: 1;
}

.feedback__noidung {
    width: 100%;
    background-image: url(../imgs/bg_feedback.png);
    padding: 25px;
    background-size: 100% 100%;
    min-height: 125px;
    background-repeat: no-repeat;
    font-size: 15px;
    color: #333333;
}

.feedback__ten {
    font-size: 17px;
    color: #379236;
    font-weight: bold;
    margin-top: 10px;
    padding-left: 20px;
}

.feedback__mota {
    font-size: 15px;
    color: #333333;
    font-weight: bold;
    margin-top: 0px;
    padding-left: 20px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    transition: all .3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--c1);
    transition: all .3s ease;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 20px;
}

.wrap_video {
    width: 67%;
}

.box-main-video {
    width: 72% !important;
}

.box-carousel-video {
    width: calc(100% - 72% - 10px) !important;
}

.box-main-video iframe {
    width: 100%;
    height: 450px;
}

.wrap_newsletter {
    width: 100%;
    padding: 60px 0;
}

.newslestter {
    width: 30%;
    background-image: url(../imgs/bg_newsletter.jpg);
    background-size: cover;
    padding: 15px;
}

.border_newslestter {
    width: 100%;
    background: #f0f0f0;
    padding: 20px;
    text-align: center;
}

.newslestter_title {
    font-size: 23px;
    color: #379236;
    text-transform: uppercase;
    font-weight: bold;
}

.newslestter_detail {
    font-size: 15px;
    color: #161616;
    margin-bottom: 20px;
}

form.newsletter_form {
    width: 100%;
}

form.newsletter_form input {
    width: 100%;
    border: 1px solid #d3d3d3;
    border-radius: 2px;
    height: 40px;
    margin-bottom: 12px;
    padding: 0 12px;
}

form.newsletter_form textarea {
    width: 100%;
    border: 1px solid #d3d3d3;
    border-radius: 2px;
    height: 90px;
    margin-bottom: 12px;
    padding: 12px;
}

form.newsletter_form input[type="submit"] {
    width: 100%;
    border: 1px solid #d3d3d3;
    border-radius: 2px;
    height: 40px;
    margin-bottom: 0;
    padding: 0 12px;
    background: var(--c1);
    color: #fff;
    text-transform: uppercase;
    transition: all .3s ease;
    font-weight: bold;
}

form.newsletter_form input[type="submit"]:hover {
    background: var(--c2);
    transition: all .3s ease;
    color: #000;
}


/* WRAP BLOG */
.wrap_blognb {
    width: 100%;
    padding: 50px 0;
}

.blog__item {
    display: block;
    width: 100%;
}

.blog__img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.blog__img img {
    width: 100%;
}

.blog__txt {
    width: 90%;
    background: #f9f9f9;
    padding: 25px;
    margin-left: auto;
    margin-top: -70px;
    position: relative;
    z-index: 100;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
}

.blog__ten {
    font-size: 17px;
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
    transition: all .3s ease;
}

.blog__ten:hover {
    color: var(--c1);
    transition: all .3s ease;
}

.blog__mota {
    font-size: 15px;
    margin-bottom: 15px;
    color: #333333;
}

.blog__link {
    display: block;
    width: max-content;
    background: var(--c1);
    color: #fff;
    border-radius: 100px;
    padding: 10px 20px 11px;
    transition: all .3s ease;
}

.blog__link:hover {
    background: var(--c3);
    color: #000000;
    transition: all .3s ease;
}

/* WRAP CHỨNG NHẬN */
.wrap_chungnhan {
    width: 100%;
    padding: 50px 0;
    background-image: url(../imgs/bg_chungnhan.jpg);
    background-size: cover;
}

.flex_chungnhan {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
}

.chungnhan_txt {
    width: 22%;
}

.chungnhan_title {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
}

.chungnhan_line {
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 10px 0 20px;
}

.chungnhan_mota {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.chungnhan_control {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

span.cn_btn {
    width: 33px;
    height: 33px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border-radius: 100%;
    color: var(--c1);
    transition: all .3s ease;
    cursor: pointer;
    user-select: none;
}

span.cn_btn:hover {
    box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 8px 0px;
    transition: all .3s ease;
}

.chungnhan_list {
    width: 75%;
}

.chungnhan__item {
    display: block;
    width: 100%;
}

.chungnhan__img {
    width: 100%;
}

.chungnhan__img img {
    width: 100%;
}

.chungnhan__title {
    width: 100%;
    text-align: center;
    padding: 10px;
    color: #ffffff;
    background: var(--c2);
    font-size: 18px;
    font-weight: 500;
    transition: all .3s ease;
}

.chungnhan__title:hover {
    background: var(--c1);
    transition: all .3s ease;
}

/* WRAP PARTNER */
.wrap_partner {
    width: 100%;
    padding: 50px 0;
    background: #f5f5f5;
}

.flex_partner {
    width: 100%;
    display: flex;
}

.partner_txt {
    width: 29%;
}

.partner_title {
    font-size: 15px;
    color: #000000;
    text-transform: uppercase;
}

.partner_detail {
    font-size: 28px;
    color: #3a9436;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 5px;
}

.partner_list {
    width: 70%;
    position: relative;
    padding: 0 40px;
}

.btn_slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(0 0 0 / 15%);
    padding: 5px 6px 7px;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    transition: all .3s ease;
}

.btn_slide:hover {
    background: rgb(0 0 0 / 50%);
    transition: all .3s ease;
}

.prev_slide {
    left: 0;
}

.next_slide {
    right: 0;
}

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

.partner__item img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    transition: all .3s ease;
}

.partner__item img:hover {
    filter: none;
    -webkit-filter: grayscale(0);
    transition: all .3s ease;
}


/* GRID PRODUCT  */
.grid_product {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.grid_news {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.mmenu_google {
    flex-shrink: 0;
}

div#google_translate_element2 {
    margin-top: -15px;
    font-size: 12px;
}

div#google_translate_element2 .goog-te-combo {
    font-size: 12px;
    border-radius: 100px;
}


.mmenu_right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.email_dn a img {
    width: 41px;
}

.phone_dn a img {
    width: 41px;
}

.lienhe_doingu {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.email_dn {
    margin: 0 6px;
}

.img_doingu img {
    border-radius: 50%;
}

.box_doingu {
    text-align: center;
}

.content_doingu {
    padding: 10px 0;
}

.chucvu {
    font-size: 19px;
    text-transform: uppercase;
    color: #000;
    font-weight: bold;
}

.diachi_kh {
    font-size: 16px;
    letter-spacing: 2px;
}

.name_kh {
    font-weight: 700;
}