:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --font-size: 14px;
    --color-key-pale: #56B901;
    --color-key-dark: #27831E;
    --color-key-dark-1: #045B33;
    --color-key: #DE0F0F;
    --color-title-product: #dc3545;
    --color-price-product: #c71c1c;
    --bg-gradient: linear-gradient(90deg, rgba(88, 187, 0, 1) 0%, rgba(2, 89, 52, 1) 100%);
    --bg-gradient-end: linear-gradient(90deg, rgba(2, 89, 52, 1) 0%, rgba(88, 187, 0, 1) 100%);
    --bg-gradient-center: linear-gradient(90deg, rgba(14, 113, 0, 1) 0%, rgba(92, 196, 0, 1) 50%, rgba(14, 113, 0, 1) 100%);
    --bg-gradient-btn-center: linear-gradient(90deg, rgba(51, 177, 94, 1) 0%, rgba(179, 209, 51, 1) 100%);
}

body {
    font-family: 'Roboto', 'Arial', cursive;
    font-weight: 400;
    background: #fff;
    overflow-x: hidden;
    font-size: var(--font-size);
}

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

button,
input,
select,
textarea,
a {
    outline: none;
}

ul,
ol {
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
}

a:hover {
    color: var(--color-key);
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([tabindex]):focus {
    outline: 0
}

strong,
b {
    font-weight: 700;
}

h1.hidden-h1 {
    font-size: 0px;
    visibility: hidden;
    overflow: hidden;
    text-indent: -9999999999px;
}

.hidden-micro {
    font-size: 0px;
    visibility: hidden;
    overflow: hidden;
    text-indent: -9999999999px;
    width: 0px;
    height: 0px;
    opacity: 0;
    margin: 0px;
    padding: 0px;
    top: 100000000px;
    position: fixed;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0px 10px;
}

.fixed-menu.fixed-open {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1002;
}

.fixed-menu.fixed-open #menu .item-category {
    display: none;
}

.fixed-menu.fixed-open .menu-category:hover .item-category {
    display: block !important;
}

.fixed-menu.fixed-open .header-two {
    display: none;
}

.img-block {
    max-width: 100%;
    display: block;
}

.img-block-auto {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.img-100 {
    width: 100%;
}

.section {}

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

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-justify {
    text-align: justify !important;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.backtop {
    position: fixed;
    bottom: -50px;
    z-index: 99;
    top: auto;
    right: 15px;
    width: 60px;
    height: 60px;
    opacity: 0;
    line-height: 60px;
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background: #FFF;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0 !important;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: 0px 0px 20px #CCC;
    transition: all cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.6s;
}

.backtop.show {
    bottom: 50px;
    opacity: 1 !important;
    display: block !important;
}

.backtop .fa {
    font-size: 22px;
    color: var(--color-key);
    font-weight: bold;
}

.menu-fixed {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2010;
}

ul.top-header li {
    margin: 14px 0px;
    display: flex;
    align-items: center;
    padding: 0px 15px;
    color: #FFF;
}

ul.top-header li:not(:last-child) {
    border-right: 1px solid #FFF;
}

ul.top-header li i {
    margin-right: 5px;
}

/*Header*/
#header.header {
    position: sticky;
    width: 100%;
    left: 0px;
    top: 0px;
    z-index: 200;
}

#header.header:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    content: '';
    width: 100%;
    height: 100%;
    background: #151515;
    /* background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(255,255,255,0) 100%); */
    z-index: 1;
}

#header.header .container {
    position: relative;
    z-index: 2;
}

.header-box {
    background: #151515;
    height: 76px;
    padding-left: 10px;
}

#header.header.headroom {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    will-change: transform;
    transition: transform 200ms linear;
    z-index: 909;
    background: #FFF;
}

.headroom--pinned {
    transform: translateY(0%);
}

.headroom--unpinned {
    transform: translateY(-100%);
}

#header.header.header-in {
    height: auto;
}

#header.header.header-in #menu {
    padding-top: 0px !important;
}

#header.header.header-in .item:nth-child(2) {
    align-items: center;
}

#header .logo {
    display: flex;
    transition: all 0.3s;
}

#header .hotline {
    width: 240px;
    padding: 6px 10px 6px 80px;
    position: relative;
}

#header .hotline>span {
    display: block;
    width: 100%;
    font-size: 12px;
    padding-left: 3px;
    line-height: 20px;
}

#header .hotline i {
    position: absolute;
    width: 72px;
    height: 73px;
    background: #FFF url('../images/icon-hotline.png') no-repeat center;
    content: '';
    top: 0px;
    left: 0px;
}

#header .hotline p {
    color: var(--color-key);
    font-size: 26px;
    padding-left: 3px;
    font-family: 'Anton';
    position: relative;
    line-height: 30px;
}

#header .hotline p span {
    color: #333;
    position: relative;
    z-index: 1;
}

#header .cooperate {
    padding: 8px;
    background: #FFF;
    border: 2px solid #e6e6e6;
    border-radius: 5px;
    position: relative;
    animation: mymove 1s infinite alternate;
}

#header .cooperate:after,
#header .cooperate:before {
    width: 2px;
    height: 40px;
    top: -40px;
    content: '';
    background: #e6e6e6;
    position: absolute;
}

#header .cooperate:after {
    right: 36px;
}

#header .cooperate:before {
    left: 36px;
}

@keyframes mymove {
    0% {
        transform: rotate(-5deg)
    }

    10% {
        transform: rotate(-4deg)
    }

    20% {
        transform: rotate(-3deg)
    }

    30% {
        transform: rotate(-2deg)
    }

    40% {
        transform: rotate(-1deg)
    }

    50% {
        transform: rotate(0deg)
    }

    60% {
        transform: rotate(1deg)
    }

    70% {
        transform: rotate(2deg)
    }

    80% {
        transform: rotate(3deg)
    }

    90% {
        transform: rotate(4deg)
    }

    100% {
        transform: rotate(5deg)
    }
}

#header .cooperate a {
    display: block;
    width: 200px;
    height: 45px;
    background: #f5b91e;
    border-radius: 5px;
    color: #FFF;
    font-size: 16px;
    font-family: 'Muli';
    font-weight: 700;
    text-align: center;
    line-height: 45px;
    text-transform: uppercase;
}

/*Service*/
#service {
    padding: 50px 0px;
}

.service-one {
    background: url('../images/bg-dichvu.jpg') no-repeat top center;
    background-size: cover;
}

.title-service {
    text-align: left;
}

.title-service h5 {
    font-size: 34px;
    text-align: left;
    color: #333;
    display: block;
    position: relative;
    padding-bottom: 5px;
    font-family: 'VL_GoodVibesPro';
}

.title-service h5:after {
    position: absolute;
    width: 60%;
    height: 20px;
    content: '';
    background: url('../images/linenews.png') repeat-x bottom;
    right: 0px;
    bottom: 13px;
}

/* .title-service h5:before {position: absolute;width: 12%;height: 5px;content: '';background: var(--color-key);left: 0px;bottom: 0px;z-index: 1;transform: skewX(40deg);} */
.title-service p {
    text-align: center;
    font-size: 15px;
}

.content-service {
    color: #FFF;
    margin-top: 20px;
    text-align: center;
    line-height: 20px;
}

.content-service a {
    display: block;
    overflow: hidden;
}

.img-border {
    width: 272px;
    height: 272px;
    background: var(--color-key);
    border-radius: 50%;
    margin: 0px auto;
    padding: 10px;
    position: relative;
}

.img-border:before {
    position: absolute;
    width: 262px;
    height: 262px;
    background: #FFF;
    border-radius: 50%;
    left: 2px;
    top: 2px;
    content: '';
}

.content-service img {
    transition: all 0.6s;
    position: relative;
    z-index: 2;
    border-radius: 50%;
}

.content-service:hover img {
    transform: scale(1.04);
}

.content-service h2 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.content-service h2 a {
    color: #FFF;
    font-size: 22px;
    font-weight: 300;
    font-family: 'Oswald';
    line-height: 1.4;
}

.content-service:hover h2 a {
    color: #ffa800;
}

.content-service1 a {
    display: block;
    overflow: hidden;
}

.content-service1 img {
    transition: all 0.6s;
}

.content-service1:hover img {
    transform: scale(1.04);
}

.content-service1 h3 {
    text-align: center;
    margin-top: 10px;
}

.content-service1 h3 a {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.content-service1:hover h3 a {
    color: var(--color-key)
}

.slider_mb {
    display: none
}

/*About*/
.about {
    padding: 50px 0px;
    position: relative;
    padding-bottom: 91px;
}

.about h6 {
    text-transform: capitalize;
    color: #D6CDC3;
    font-size: 140px;
    font-family: 'Champion';
    display: block;
    line-height: 145px;
}

.about h2 {
    color: #151515;
    text-transform: uppercase;
    font-size: 45px;
    font-family: Tinos-Regular;
    margin: 0;
}

/*.about h2:after { width: 200px; background: #e6e6e6; height: 4px; content: ''; position: absolute; left: 0px; bottom: 0px; }
.about h2:before { width: 100px; background: #cd1818; height: 4px; content: ''; position: absolute; left: 0px; bottom: 0px; z-index: 2; }*/
.about h5 {
    padding-left: 70px;
    position: relative;
    font-style: italic;
}

.about h5:before {
    width: 5px;
    height: 5px;
    border: 1px solid var(--color-key);
    content: '';
    position: absolute;
    left: 0px;
    transform: rotate(45deg);
    top: 5px;
    background: #FFF;
    z-index: 2;
}

.about h5:after {
    width: 60px;
    height: 1px;
    background: var(--color-key);
    content: '';
    position: absolute;
    left: 3px;
    top: 8px;
    z-index: 1
}

.about .desc {
    margin-top: 10px;
    line-height: 22px;
    color: #333;
}

.about .desc p {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.about a.readmore {
    background: #FDB00B;
    font-size: 15px;
    padding: 8px 20px 8px;
    color: #333;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s;
    /* background: #FFF; */
    transition: all 0.6s;
    line-height: 23px;
    border: 1px solid #333;
    text-transform: uppercase;
}

.about a.readmore:hover {
    margin-left: 10px;
}

.desc-img {
    margin-top: -50px;
    position: absolute;
    z-index: 1;
    width: 20%;
    padding: 26px;
    text-align: center;
}

.right-gt {
    padding: 0 40px 0 40px
}

/*.about .desc-img { position: relative; transition: all 0.6s; padding: 10px; border: 1px solid #dae0f2; }
.about .desc-img:after { width: 380px; height: 54px; background: var(--color-key); content: ''; position: absolute; bottom: -15px; left: -15px; }
.about .desc-img:before { width: 214px; height: 54px; background: #dae0f2; content: ''; position: absolute; top: -15px; right: -15px; }
.about .desc-img img { position: relative; z-index: 1; }*/
.tabs-one {
    overflow: hidden;
}

.tabs-one .tabs {
    display: flex;
    margin: 0 auto;
    border: 1.2px dashed #CCC;
    border-radius: 10px;
}

.tabs-one .tabs li {
    padding: 10px 30px;
    text-transform: uppercase;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.tabs-one .tabs li:not(:last-child):after {
    position: absolute;
    content: '';
    width: 1px;
    height: 20px;
    background: #CCC;
    right: 0px;
    top: 50%;
    transform: translateY(-50%)
}

.tabs-one .tabs li.active {
    color: #c70003;
}

.tabs-one .tabs li.active:before {
    width: 80%;
    content: '';
    bottom: -1px;
    height: 5px;
    background: #c70003;
    left: 10%;
    position: absolute;
}

.diachi_left,
.thoigian_left,
.phone_left {
    padding: 15px 10px 15px 10px;
}

.diachi_left i,
.thoigian_left i,
.phone_left i {
    color: #FDB00B;
    font-size: 30px
}

.diachi_left span,
.thoigian_left span,
.phone_left p {
    padding: 10px 0;
    display: block;
    color: #FDB00B;
    font-family: Muli;
    text-transform: uppercase;
    font-size: 17px;
}

.phone_left p {
    font-size: 20px;
}

.phone_left p span {
    color: #fff;
}

.diachi_left p {
    color: #fff;
    font-family: Muli;
    font-size: 15px;
    padding: 0 10px;
}

.logo img {
    margin: 0 auto;
}

.giomocua {
    padding: 10px 0;
    margin: 0;
    font-family: Muli;
    color: #707070;
}

.giomocua2 {
    margin: 0;
    color: #FFFFFF;
    font-family: Muli;
    font-size: 20px;
}

.giomocua3 {
    padding: 10px 0;
    margin: 0;
    font-family: Muli;
    color: #707070;
    font-size: 15px;
    letter-spacing: 2px;
}

/*dich vu*/

.img-list {
    padding: 0px 20px;
}

.dichvu {
    padding: 30px 0;
}

.dvdichvu {
    text-align: center;
    border: 5px solid #CCCCCC;
    padding: 10px;
    margin: 10px 0;
}

.dvdichvu:hover {
    border: 5px solid #FDB00C;
}

#dvdichvu {
    border: 1px solid #CCCCCC;
    padding: 55px 20px;
    text-align: center;
}

.dichvuhinh img {
    max-width: 100px;
    width: auto !important;
    margin: 0 auto;
    filter: grayscale(100%);
}

.dvdichvu:hover .dichvuhinh img {
    filter: grayscale(0%);
}

.dichvuten {
    padding: 10px 0 10px;
}

.dichvuten a {
    text-transform: uppercase;
    color: #101010;
    font-family: Muli;
    font-size: 20px;
    font-weight: bold;
}

.dvdichvu:hover .dichvuten a {
    color: #FDB00C;
}

.dichvumota a {
    color: #101010;
}

.dichvumota {
    color: #101010;
    font-family: Muli;
    font-size: 14px;
    color: #101010;
    display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 5px 0 40px;
    line-height: 25px;
}

.dichvuxemct a {
    background: #101010;
    color: #fff;
    font-family: Muli;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-block;
}

.dvdichvu:hover .dichvuxemct a {
    background: #FDB00C;
}

.title_index {
    width: 100%;
    text-align: center;
    color: #0D0D0D;
    text-transform: uppercase;
    font-size: 16px;
    padding: 0 0 30px 0;
    background: url(../images/line.png) bottom center no-repeat;
    margin: 10px 0;
}

.title_index_trong {
    width: 100%;
    text-align: center;
    color: #0D0D0D;
    text-transform: uppercase;
    font-size: 16px;
    padding: 0 0 30px 0;
    background: url(../images/line.png) bottom center no-repeat;
    margin: 10px 0;
}

.title_index span {
    font-family: VL_GoodVibesPro;
    text-transform: capitalize;
    font-size: 50px;
    display: block;
}

.title_index_trong span {
    font-family: 'Roboto';
    text-transform: capitalize;
    font-size: 25px;
    display: block;
}

.title_index .trang {
    color: #fff;
}

/*icon*/
.nav_fix {
    position: absolute;
    z-index: 9999;
    top: 20px;
    left: 90px;
    width: 92px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#yt-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: -55px;
    left: 0
}

#yt-bg #ytplayer-shield {
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    top: 0;
}


.effect-rotate,
.effect-scale {
    overflow: hidden;
}

.effect-scale img {
    -webkit-transition: 1s all;
    -o-transition: 1s all;
    transition: 1s all;
}

.effect-scale img:hover {
    transform: scale(1.1);
}

.effect-rotate img {
    -webkit-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
}

.effect-rotate:hover img {
    transform: rotate(360deg);
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.img_ {
    position: relative;
    overflow: hidden;
}

.img_ img {
    margin: 0 auto;
    -moz-transition: all 0.9s;
    -webkit-transition: all 0.9s;
    transition: all 0.9s;
}

.img_:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.item-sr {
    position: relative;
}

a.search {
    width: 42px;
    height: 42px;
    z-index: 100;
    background: url(../images/nav4.png) no-repeat center center;
    font-size: 0;
    text-indent: -9999px;
    display: block;
    padding: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 0;
    top: 25px;
}

.search-form {
    margin-top: 0;
    background-color: #fff;
    width: 0px;
    height: 35px;
    position: absolute;
    display: block;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    top: 0px;
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(220, 220, 220, 1);
    opacity: 0;
    left: 100%;
    z-index: 23;
    bottom: 0;
    top: 0;
    margin: auto;
}

.form-row-search {
    width: 100%;
    height: 35px;
    position: absolute;
    top: 0;
    left: 0;
}

.box_search {
    position: absolute;
    font-family: 'fontB';
    font-size: 15px;
    color: white;
    text-transform: uppercase;
    bottom: 66px;
    right: 163px;
}

#search_frm_vi {
    position: absolute;
    right: 10px;
    top: 12px;
}

.form-row-search input[type="text"] {
    border: none;
    background: none;
    width: 100%;
    height: 35px;
    padding: 0 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 35px;
    position: absolute;
    display: block;
    opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-border-radius: 20px 0 20px 20px;
    -o-border-radius: 20px 0 20px 20px;
    -ms-border-radius: 20px 0 20px 20px;
    border-radius: 20px 0 20px 20px;
}

.nav_fix_item {
    padding: 2px;
}

#social-airfix {
    position: fixed;
    top: 120px;
    width: 0;
    opacity: 0;
    height: auto;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    overflow: hidden;
}

#social-airfix a {
    padding: 0 5px 0 0;
}

#social-airfix.active {
    opacity: 1;
    width: auto;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.main-nav {
    float: right;
    width: 65%;
}

/*Why*/
#why-box {
    padding: 10px 0px;
    background: var(--color-key);
}

.box-why {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.box-i-why {
    width: calc(100% / 3);
    padding: 24px 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.box-i-why:not(:last-child):after {
    position: absolute;
    content: '';
    width: 21px;
    height: 100%;
    right: -10px;
    top: 0px;
    background: url('../images/ar.png') no-repeat top center;
}

.box-i-why .cycle {
    width: 104px;
}

.slick-page * {
    outline: none !important;
}

.desc-why {
    width: calc(100% - 104px);
    line-height: 23px;
    text-align: justify;
}

.desc-why h4 a {
    display: inline-block;
    padding: 8px 0px;
    font-size: 15px;
    padding-left: 20px;
    text-transform: uppercase;
    color: #FFF;
}

.why-list li {
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 17px;
    background: #ededed;
    line-height: 60px;
    padding: 0px 15px 0px 124px;
    color: #333;
    position: relative;
    margin-bottom: 25px;
    transition: all 0.6s;
    cursor: pointer;
    border-radius: 5px;
}

.why-list li:last-child {
    margin-bottom: 0px;
}

.why-list li:hover,
.why-list li.active {
    background: #FFF;
    box-shadow: 0px 0px 6px #eee;
}

.why-list li span {
    position: absolute;
    width: 75px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/v.png') no-repeat center;
    left: 20px;
    top: -11px;
    font-size: 30px;
    color: #FFF;
    font-weight: 700;
    transition: all 0.6s;
}

.why-list li:hover span,
.why-list li.active span {
    background: url('../images/v_hover.png') no-repeat center;
}

.box-why .wraptem {
    margin: 10px 15px;
    transition: all 0.6s;
}

.box-why .wraptem .img {
    width: 89px;
    height: 89px;
    background: var(--color-key);
    border: 2px solid #FFF;
    text-align: center;
    line-height: 89px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.box-why .wraptem .img img {
    max-width: 100%;
    display: block;
}

.box-why .wraptem .content_right {
    width: 100%;
    display: block;
    text-align: center;
    border: 1px solid var(--color-key);
    padding: 60px 10px 10px 10px;
    margin-top: -40px;
    transition: all 0.6s
}

.box-why .wraptem .content_right p {
    font-size: 17px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 400;
    color: #FFF;
    text-align: center;
    margin-bottom: 5px;
}

.box-why .wraptem .content_right span {
    font-size: 14px;
    color: #FFF;
    line-height: 24px;
}

.box-why .wraptem:hover .content_right p {
    color: var(--color-key)
}

.box-why .wraptem:hover .content_right {
    border: 1px solid #FFF;
}

.box-why .wraptem:hover {
    transform: translateY(-10px)
}

/*Partner*/
.partner-one {
    padding: 20px 0px 0px 0px;
    background: #000;
}

.partner-one img {
    max-width: 100%;
}

.partner-one .img-partner a {
    display: block;
    /*border: 1px solid #ebebeb;*/
    text-align: center;
}

.desc-partner {
    padding: 5px 0px;
    position: relative;
    background: #fff;
}

.title-partner {
    width: 69px;
    height: 129px;
    position: absolute;
    left: 0px;
    top: 0px;
    background: url('../images/bg-doitac.png') no-repeat top center;
}

.title-partner h5 {
    font-size: 22px;
    color: #FFF;
    text-transform: uppercase;
    transform: rotate(-90deg);
    display: block;
    width: 129px;
    margin-left: -30px;
    margin-top: 20px;
    font-weight: 700;
}

/*Title - page*/
.title-section-module {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.title-section-module:after {
    width: 60px;
    height: 5px;
    background: var(--color-key);
    content: '';
    position: absolute;
    left: calc(50% - 30px);
    z-index: 1;
    transform: skewX(50deg);
}

.title-section-module h3,
.title-section-module h4 {
    font-size: 34px;
    text-transform: uppercase;
    color: #333333;
    text-align: center;
    position: relative;
    display: block;
    padding-bottom: 5px;
    cursor: pointer;
    font-family: 'SFUFuturaBook';
}

.title-section-module span {
    color: #218acd !important;
}

.title-section-module h3 a {
    color: #333333;
}

.title-section-module h3 span {
    color: #333;
}

.title-section-module.none h3:after {
    position: absolute;
    bottom: -11px;
    background: var(--color-key);
    height: 5px;
    width: 100%;
    content: '';
    left: 0px;
    z-index: 10;
}

.title-section-module>a {
    position: absolute;
    right: 0px;
    color: #FFF;
    top: -3px;
    font-size: 15px;
    background: var(--color-key);
    padding: 11px 30px;
    border-radius: 30px;
}

.title-section-module h3:hover a {
    text-decoration: none;
}

.title-section {
    position: relative;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 24px;
    text-align: left;
}

.title-section h4 {
    display: inline-block;
    position: relative;
    height: 40px;
    color: var(--color-key);
    font-size: 26px;
    line-height: 40px;
    text-transform: uppercase;
    font-family: 'Oswald';
    font-weight: 600;
}

.title-section h4:after {
    content: '';
    width: 122px;
    height: 1px;
    background: #eb9243;
    left: 0px;
    bottom: -1px;
    margin-top: 0px;
    position: absolute;
    z-index: 2;
}

.title-section h4:before {
    content: '';
    width: 9px;
    height: 6px;
    background: url('../images/arow.jpg') no-repeat bottom center;
    left: 55px;
    bottom: -6px;
    position: absolute;
    z-index: 3;
}

.title-section a {
    position: absolute;
    right: 10px;
    top: 15px;
    font-size: 15px;
    text-transform: uppercase;
    color: #333;
}

.head-title {
    text-align: left;
}

.head-title h1,
.head-title h2 {
    color: #333;
    font-size: 25px;
    text-transform: uppercase;
    padding-bottom: 15px;
    position: relative;
    font-weight: 700;
}

.head-title h1:after,
.head-title h2:after,
.head-title h1:before,
.head-title h2:before {
    content: '';
    position: absolute;
    left: 0px;
    height: 2px;
    background: var(--color-key);
}

.head-title h1:after,
.head-title h2:after {
    width: 100px;
    bottom: 8px;
    left: 0%;
}

.head-title h1:before,
.head-title h2:before {
    width: 80px;
    bottom: 12px;
    left: 0%;
}

h1.title-page {
    color: var(--color-key);
    font-size: 19px;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 25px;
}

/*breadcrumb*/
#title-breadcrumbs {
    background-color: #eee;
}

#breadcrumb {
    padding: 10px 0px;
    list-style: none;
}

#breadcrumb li {
    display: inline;
    font-size: 14px;
}

#breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

#breadcrumb li a {
    color: #333;
    text-decoration: none;
}

#breadcrumb li a:hover {
    color: #01447e;
}

/*Menu*/
#menu {
    transition: all 0.6s;
}

#menu.sticky {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9000;
}

#menu-box {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    width: 100%;
}

.logo-menu {
    width: 200px;
    height: 80px
}

.list-btn {
    display: inline-block;
    min-width: 270px;
    height: 76px;
    background: var(--color-key);
    position: relative;
}

.list-btn h5 {
    text-transform: uppercase;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 76px;
    text-align: center;
    padding-right: 15px;
    position: relative;
    cursor: pointer;
}

.list-btn h5 span {
    position: absolute;
    display: inline-block;
    width: 24px;
    height: 4px;
    background: #FFF;
    right: 18px;
    top: calc(50% - 2px);
    content: '';
}

.list-btn h5 span:after {
    position: absolute;
    display: inline-block;
    width: 24px;
    height: 4px;
    background: #FFF;
    right: 0px;
    top: -8px;
    content: '';
}

.list-btn h5 span:before {
    position: absolute;
    display: inline-block;
    width: 24px;
    height: 4px;
    background: #FFF;
    right: 0px;
    bottom: -8px;
    content: '';
}


.list-btn-position {
    list-style: none;
    position: absolute;
    top: 130%;
    width: 100%;
    left: 0px;
    z-index: 5;
    opacity: 0;
    transition: all 0.6s;
    background: #FFF;
    visibility: hidden;
}

.list-btn-position.show {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.list-btn-position li {
    padding: 10px 10px;
    position: relative;
}

.list-btn-position li:hover {
    background: var(--color-key);
}

.list-btn-position li:hover>a,
.list-btn-position li:hover>span {
    color: #FFF;
}

.list-btn-position li span {
    position: absolute;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    top: 0px;
    z-index: 9;
    cursor: pointer;
}

.list-btn-position li a {
    color: #333;
    display: block;
    font-size: 15px;
}

.list-btn-position ul {
    position: absolute;
    width: 100%;
    background: #FFF;
    left: 0px;
    top: 0px;
    transform: translateX(70%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.list-btn-position ul.open {
    transform: translateX(100%);
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.menu-list {
    width: calc(100% - 0%);
}

.cart-temp {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-left: 20px;
    cursor: pointer;
}

.cart-temp>span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #ff5151;
    color: #FFF;
    margin-right: 10px;
    border-radius: 3px;
}

.cart-temp>div>p:nth-child(1) {
    font-weight: 700;
}

.search-bar {
    width: 100%;
    height: 50px;
    border: none;
    background-color: rgb(0 0 0 / .8);
    transition: all 0.6s;
    z-index: 12;
    border: none;
    position: absolute;
    border-radius: 0px;
    overflow: hidden;
    display: block;
    top: 130%;
    opacity: 0;
    transition: all 0.6s;
    visibility: hidden;
}

.search-bar.open {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.search-bar input.search-text {
    background-color: transparent;
    border: none;
    height: 50px;
    width: 100%;
    font-size: 14px;
    padding: 5px 10px 5px 10px;
    outline: none;
    position: relative;
    z-index: 2;
    color: #FFF;
}

.search-bar .search-btn {
    width: 50px;
    height: 50px;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    z-index: 2;
}

#menu .item-big {
    text-align: center;
    position: relative;
    margin-bottom: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

#menu .item-big .nav-item {
    display: inline-block;
    position: relative;
}

#menu .item-big .nav-item>a {
    padding: 0px 10px;
    display: block;
    text-align: center;
    font-size: 15px;
    line-height: 76px;
    text-decoration: none;
    color: #FFF;
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
}

#menu .item-big .nav-item>span {
    padding: 0px 22px;
    display: none;
    text-align: center;
    font-size: 14px;
    line-height: 76px;
    text-decoration: none;
    color: #FFF;
    font-weight: 400;
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
}

#menu .item-big .nav-item>a i {
    font-size: 15px;
}

#menu .item-big .nav-item>a i.home {
    font-size: 25px;
}

#menu .item-big .nav-item {
    position: relative;
}

#menu .item-big .nav-item:last-child {
    width: 57px;
}

#menu .item-big .nav-item.active>a,
#menu .item-big .nav-item:hover>a {
    color: #F4C251;
}

#menu .item-big .nav-item>.item_small {
    overflow: hidden;
    display: block;
    max-height: 0px;
    max-width: 0px;
    opacity: 0;
    -webkit-transform: perspective(600px) rotateX(-90deg);
    -moz-transform: perspective(600px) rotateX(-90deg);
    -ms-transform: perspective(600px) rotateX(-90deg);
    -o-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
    -o-transition: -o-transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
    transition: transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
    position: absolute;
    top: 100%;
    left: 0px;
    width: 250px;
    padding: 0;
    background-color: #fff;
    box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -o-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -os-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -webkit-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    z-index: 99;
}

#menu .item-big .nav-item:hover>ul {
    overflow: visible;
    max-height: 3000px;
    max-width: 3000px;
    opacity: 1;
    -webkit-transform: perspective(600px) rotateX(0deg);
    -moz-transform: perspective(600px) rotateX(0deg);
    -ms-transform: perspective(600px) rotateX(0deg);
    -o-transform: perspective(600px) rotateX(0deg);
    transform: perspective(600px) rotateX(0deg);
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    -o-transition: -o-transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    transition: transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
}

#menu .item-big .nav-item.has-mega {
    position: static !important;
}

#menu .item-big .mega-content {
    background: #151515;
    overflow: hidden;
    display: block;
    max-height: 0px;
    max-width: 0px;
    opacity: 0;
    -webkit-transform: perspective(600px) rotateX(-90deg);
    -moz-transform: perspective(600px) rotateX(-90deg);
    -ms-transform: perspective(600px) rotateX(-90deg);
    -o-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
    -o-transition: -o-transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
    transition: transform 0.5s ease, opacity 0.6s ease, max-height 0.6s step-end, max-width 0.6s step-end, padding 0.6s step-end;
    box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
    -webkit-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    margin: 0;
    padding: 15px 15px;
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 99;
    width: 250px;
    border: none;
    text-align: left;
    box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -o-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -os-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
}

#menu .item-big .nav-item:hover>.mega-content {
    overflow: visible;
    max-height: 3000px;
    max-width: 3000px;
    opacity: 1;
    -webkit-transform: perspective(600px) rotateX(0deg);
    -moz-transform: perspective(600px) rotateX(0deg);
    -ms-transform: perspective(600px) rotateX(0deg);
    -o-transform: perspective(600px) rotateX(0deg);
    transform: perspective(600px) rotateX(0deg);
    -webkit-transition: -webkit-transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    -o-transition: -o-transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
    transition: transform 0.5s ease, opacity 0.2s ease, max-height 0s step-end, max-width 0s step-end, padding 0s step-end;
}

#menu .item-big .nav-item:hover>.mega-content {
    width: 250px;
    display: block;
}

#menu .item-big .mega-content .parent {
    width: calc(100% / 3);
    padding: 0px 20px;
}

#menu .item-big .mega-content .parent h4 a {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
    color: #0056BB;
    margin-bottom: 5px;
}

#menu .item-big .mega-content .parent h4 a:hover,
#menu .item-big .mega-content .level1 .level2 a:hover,
#menu .item-big .nav-item>ul>li>a:hover,
#menu .item-big .nav-item>ul>li>ul>li>a:hover {
    color: #eeb92e;
}

#menu .item-big .mega-content .level1 .level2 a {
    font-size: 14px;
    color: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 20px;
    padding: 5px 0px 5px;
    border-bottom: 1px dashed #CCC;
}

#menu .item-big .nav-item>ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    display: block;
    padding: 7px 5px 7px 0px;
    color: #fff;
    position: relative;
    border-bottom: solid 1px #e5e6ec;
    text-align: left;
}

#menu .item-big .nav-item>ul li:last-child>a {
    border-bottom: 0;
}

#menu .item-big .nav-item>ul li a i {
    position: absolute;
    right: -10px;
    padding: 0px 10px;
    top: 0;
    line-height: 38px;
}

#menu .item-big .nav-item>ul li {
    padding: 0px 10px;
}

#menu .item-big .nav-item li {
    position: relative;
}

#menu .item-big .nav-item>ul li ul {
    visibility: hidden;
    opacity: 0;
    margin-top: 20px;
    left: 100%;
    top: 0px;
    position: absolute;
    width: 250px;
    padding: 0;
    background-color: #151515;
    z-index: 99;
    box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -o-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    -os-box-shadow: 0px 10px 21.6px 2.4px rgba(0, 0, 0, 0.06);
    transition: all 0.6s;
}

#menu .item-big .nav-item>ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
}

/*full-page*/
#full-page {}

.in-page .bg-content {
    background: #000000;
}

.wrap-bg-in {
    width: 100%;
    background: #fff;
    margin-top: 30px;
}

/*Product*/
#sort-by {
    text-align: left;
    width: 200px;
}

#sort-by label {
    font-family: 'Arial';
    font-weight: 400;
    line-height: 33px;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 0;
    color: #222;
    display: inline-block;
}

#sort-by ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
}

#sort-by>ul>li {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: .01px;
    cursor: pointer;
    line-height: 34px;
    border-radius: 3px;
    position: relative
}

#sort-by ul ul {
    position: absolute;
    visibility: hidden;
    width: 180px;
    right: 0;
    top: 100%;
    z-index: 10000;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    overflow: hidden;
    background: #fff;
    padding-left: 0px !important;
}

#sort-by li li {
    width: 100%;
    margin-top: 0px;
    border-top: none;
    border-right: none;
    border-left: none;
    padding: 5px 10px;
    line-height: 20px;
}

#sort-by li>a {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    transition: all 0s ease-in-out;
}

#sort-by a:link,
#sort-by a:visited {
    color: #333;
    text-decoration: none;
}

#sort-by li:hover>ul {
    visibility: visible;
}

.col-38 {
    width: 380px;
}

.col-62 {
    width: calc(100% - 380px);
}

.product-page {
    padding: 45px 0px 0px;
}

.item-product-main {
    width: 100%;
    background: ;
}

.item-product-main.none-border {
    border: dashed 0px #ebebeb;
}

.item-product-main .product-item-main {
    padding: 5px;
    margin-bottom: 0px;
    position: relative;
    border: 1px #ccc solid;
}

.item-product-main .product-item-main .product-thumbnail {
    position: relative;
    overflow: hidden;
}

.item-product-main .action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 9;
}

.item-product-main .action .btn-views {
    height: 40px;
    width: auto;
    text-align: center;
    line-height: 36px;
    background: #fff;
    border: 1px solid #fff;
    padding: 0px;
    box-shadow: none;
    font-size: 18px;
    font-weight: 500;
    color: #303f39;
    z-index: 6;
    display: block !important;
    opacity: 0;
    vertical-align: middle;
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    transition: all 0.6s;
    cursor: pointer;
    width: 100%;
}

.item-product-main .product-item-main:hover .btn-views {
    background: var(--color-key);
    border-color: var(--color-key);
    color: #fff;
}

.item-product-main .product-item-main:hover .btn-views {
    webkit-animation: hover-imagecategory 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1;
    -moz-animation: hover-imagecategory 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1;
    -o-animation: hover-imagecategory 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1;
    animation: hover-imagecategory 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1;
    display: block !important;
    opacity: 1 !important;
}

/*Animate*/
@-webkit-keyframes hover-imagecategory {
    0% {
        transform: perspective(200px) rotate3d(0, 1, 0, -90deg) translateX(-100%)
    }

    100% {
        transform: perspective(200px) rotate3d(0, 1, 0, 0deg) translateX(0px)
    }
}

@-moz-keyframes hover-imagecategory {
    0% {
        transform: perspective(200px) rotate3d(0, 1, 0, -90deg) translateX(-100%)
    }

    100% {
        transform: perspective(200px) rotate3d(0, 1, 0, 0deg) translateX(0px)
    }
}

@-o-keyframes hover-imagecategory {
    0% {
        transform: perspective(200px) rotate3d(0, 1, 0, -90deg) translateX(-100%)
    }

    100% {
        transform: perspective(200px) rotate3d(0, 1, 0, 0deg) translateX(0px)
    }
}

@keyframes hover-imagecategory {
    0% {
        transform: perspective(200px) rotate3d(0, 1, 0, -90deg) translateX(-100%)
    }

    100% {
        transform: perspective(200px) rotate3d(0, 1, 0, 0deg) translateX(0px)
    }
}

.item-product-main .product-item-main .product-thumbnail .image_thumb {
    justify-content: center;
    display: flex;
    -o-justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -os-justify-content: center;
    -o-display: flex;
    -moz-display: flex;
    -webkit-display: flex;
    -os-display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: ;
}

.item-product-main .product-item-main .product-thumbnail .product-moi {
    display: inline-block;
    width: 83px;
    height: 72px;
    background: url('../images/icon-new.png') no-repeat top center;
    left: 0px;
    top: 0px;
    z-index: 2;
    position: absolute;
}

.item-product-main .product-item-main .product-thumbnail .product-sale {
    display: inline-block;
    width: 37px;
    height: 37px;
    background: url(../images/icon-5.png) no-repeat top center;
    right: 15px;
    top: 15px;
    position: absolute;
    color: #FFF;
    text-align: center;
    line-height: 37px;
    font-size: 12px;
    z-index: 2;
}

.item-product-main .product-item-main .product-thumbnail .image_thumb {
    position: relative;
}

.item-product-main .product-item-main .product-thumbnail .image_thumb img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    transition: all 0.6s;
}

.item-product-main .product-item-main .product-thumbnail .image_thumb img.post-img {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    opacity: 0;
}

.item-product-main:hover img {
    transform: scale(1.03);
}

.item-product-main .product-item-main .product-bottom-mt {
    padding: 8px 10px 10px 10px;
    position: absolute;
    text-align: center;
    border-top: 0px;
}

.item-product-main .product-item-main .product-bottom {
    padding: 8px 10px 10px 10px;
    position: relative;
    text-align: center;
    border-top: 0px;
}

.item-product-main .product-item-main .product-bottom .status span {
    color: var(--color-key);
    font-weight: 700;
}

.item-product-main.none-border-bottom .product-item-main .product-bottom {
    padding: 10px 10px 10px;
    border: 0px dashed #DDD;
}

.item-product-main .product-item-main .product-bottom .product-name {
    font-size: 15px;
    margin: 0px 0 10px;
    word-wrap: break-word;
    line-height: 20px;
    padding: 0 0px;
    overflow: hidden;
    font-weight: 400;
}

.item-product-main .product-item-main .product-bottom .product-name a {
    color: #1B1B1B;
    text-transform: uppercase;
    font-family: Muli;
    font-size: 15px;
    display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-product-main .product-item-main:hover .product-bottom .product-name a {
    color: var(--color-key)
}

.item-product-main .product-item-main .product-bottom .block-width-min-height {
    padding: 10px 10px 0px;
    border-top: solid 1px #ebebeb;
    min-height: 45px;
    position: relative;
    border-top: dashed 1px #ebebeb;
}

.item-product-main .product-item-main .product-bottom .blockprice {
    width: 70%;
    text-align: left;
}

.item-product-main .product-item-main .product-bottom .price-box {
    font-size: 14px;
    line-height: 16px;
    color: #282828;
    transition: all 0.6s;
}

.item-product-main .product-item-main .product-bottom .price-box p {
    display: inline-block;
    font-size: 15px;
}

.item-product-main .product-item-main .product-bottom .price-box p a {
    margin-left: 5px;
}

.item-product-main .product-item-main .product-bottom .price-box p:first-child {
    font-size: 15px;
    font-weight: 700;
}

.item-product-main .product-item-main .product-bottom .compare-price {
    color: #969292;
    text-decoration: line-through;
    display: inline-block;
}

.item-product-main .product-item-main .product-bottom .price-box p+p {
    margin-left: 10px;
}

.item-product-main .product-item-main .product-bottom .product-price {
    color: #de0f0f;
    display: inline-block;
}

.item-product-main .product-item-main .product-bottom .a_url {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    background: var(--bg-gradient);
    padding: 7px 13px;
    position: absolute;
    width: 90px;
    right: 10px;
    bottom: 10px;
    border-radius: 5px;
    font-family: 'Nunito';
}

.item-product-main .product-item-main .product-bottom .block-width-min-height:after {
    content: "";
    width: 10px;
    height: 18px;
    background: #ffffff;
    position: absolute;
    top: -9px;
    right: -2px;
    bottom: auto;
    border-radius: 18px 0 0 18px;
    border-top: solid #ececec 2px;
    border-left: solid #ececec 1px;
}

.item-product-main .product-item-main .product-bottom .block-width-min-height:before {
    content: "";
    width: 10px;
    height: 18px;
    background: #ffffff;
    position: absolute;
    top: -9px;
    left: -2px;
    border-radius: 0 18px 18px 0;
    border-top: solid #ececec 2px;
    border-right: solid #ececec 1px;
}

.readmore-product {
    text-align: center;
}

.readmore-product a {
    display: inline-block;
    padding: 10px 30px;
    color: #FFF;
    border: 1px solid var(--color-key);
    border-radius: 29px;
    background: var(--color-key);
}

.readmore-product a img {
    vertical-align: middle;
    margin-left: 5px;
}

.adv-product {
    width: 100%;
}

/*mau tÃƒÂ³c*/
.item-product-main:hover .name_mautoc p {
    background: #FDB00B
}

.name_mautoc {
    text-align: center;
    padding: 0 20px;
    position: absolute;
    z-index: 99;
    width: 100%;
    bottom: -50px;
}

.name_mautoc p {
    background: #fff;
    padding: 15px 0;
}

.name_mautoc p span {
    display: block;
    color: #525252;
    font-family: 'Muli';
    font-size: 14px;
    font-style: italic;
}

.name_mautoc p a {
    color: #151515;
    text-transform: uppercase;
    font-family: 'Muli';
    font-size: 16px;
    display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
}

/*slider4*/
#slider {
    z-index: -1;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 0 -80px;
}

#slider:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

.nav_fix {
    position: absolute;
    z-index: 9999;
    top: 20px;
    left: 90px;
    width: 92px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#yt-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: -55px;
    left: 0
}

#yt-bg #ytplayer-shield {
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    top: 0;
}


.adv-content {
    margin: 0 auto;
}

.adv-content h5 {
    font-size: 30px;
    text-transform: uppercase;
    color: #FFFC00;
    font-family: 'UTMHelvetIns';
    text-align: center;
    position: relative;
    display: block;
    font-weight: 400;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.adv-content h5:after {
    position: absolute;
    bottom: 0px;
    background: #FFFC00;
    height: 3px;
    width: 50px;
    content: '';
    left: 50%;
    margin-left: -25px;
    z-index: 10;
}

.adv-content p {
    font-size: 16px;
    color: #FFF;
    margin-bottom: 20px;
}

.adv-content p a {
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--bg-gradient-btn-center);
    color: #FFF;
    display: inline-block;
    text-transform: uppercase;
}

.adv-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}

.adv-content p a span {
    font-weight: 800
}

.wrap-destitle {
    padding: 40px 40px 0 40px;
}

.wrap-destitle p {
    display: block;
    font-size: 14px;
    color: #282828;
    line-height: 25px;
    margin-bottom: 20px;
}

.wrap-destitle .more {
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    color: #282828;
    position: relative;
    text-transform: uppercase;
}

a.button_more {
    display: inline-block;
    background: transparent;
    padding: 0 25px;
    height: 35px;
    line-height: 35px;
    font-weight: 500;
    font-size: 14px;
    color: #C71C1C;
    border-radius: 30px;
    text-transform: uppercase;
    border: 2px solid #C71C1C;
}

.list-index {
    padding-bottom: 20px;
    position: relative;
}

.list-index:after {
    width: 300px;
    content: '';
    position: absolute;
    bottom: 0px;
    border-bottom: 1px dashed #CCC;
    left: 50%;
    margin-left: -150px;
}

.list-index .img-li-mt {
    display: none;
    text-align: center;
    cursor: pointer;
    padding: 10px 15px;
    margin: 4px 5px;
    border: 1px dashed #000;
    border-radius: 5px;
    background: transparent;
    transform: skewX(20deg);
}

.list-index .img-li {
    display: none;
    text-align: center;
    cursor: pointer;
    padding: 10px 15px;
    margin: 4px 5px;
    border: 1px dashed #000;
    border-radius: 5px;
    background: transparent;
    transform: skewX(20deg);
}

.list-index .img-li .name {
    transform: skewX(-20deg)
}

.list-index .img-li.active,
.list-index .img-li:hover {
    color: #333;
    border-color: #EE1C25;
    background: #EE1C25;
}

.list-index .img-li .img {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ebebeb;
    border-radius: 50%;
    margin: 0 auto;
}

.list-index .img-li .name {
    font-weight: 600;
    display: block;
    color: #333;
    text-transform: uppercase;
}

.list-index .img-li:hover .name,
.list-index .img-li.active .name {
    color: #FFF
}

.slider-one {
    margin: 0 auto;
    position: relative;
}

.home-slider {
    height: 100vh;
}

#vegasSliderInner {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    content: '';
}

#vegasSliderInner div.full-href {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    content: '';
    z-index: 1;
}

#detail-product {
    width: 100%;
    background: #FFF;
    position: relative;
}

#detail-product .left {
    width: 45%;
}

#detail-product .right {
    width: 55%;
}

#detail-product .img-top img {
    max-width: 100%;
    display: block;
}

#detail-product .img-bottom {
    padding-top: 10px;
    margin-top: 10px;
    position: relative;
    width: 80%;
    margin: auto;
}

#detail-product .img-bottom .img {
    padding: 0px 5px;
}

#detail-product .img-bottom .img img {
    border: 1px solid #e5e5e5;
    padding: 3px;
    max-width: 100%;
    display: block;
}

#detail-product .img-bottom .img .mz-thumb-selected img {
    border: 1px solid var(--color-key) !important;
}

#detail-product .img-bottom .img .mz-thumb:hover img {
    border: 1px solid var(--color-key) !important;
}

#detail-product .img-bottom .owl-prev,
#detail-product .img-bottom .owl-next {
    position: absolute;
    font-size: 30px;
    top: 50%;
    margin-top: -20px;
}

#detail-product .img-bottom .owl-prev {
    left: -20px;
}

#detail-product .img-bottom .owl-next {
    right: -20px;
}

#detail-product .header {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

#detail-product .header h3,
#detail-product .header h1 {
    color: #333;
    font-weight: 600;
    border-bottom: 1px dashed #CCC;
    padding-bottom: 6px;
    text-transform: uppercase;
    font-size: 28px;
}

#detail-product .quickview-info {
    margin-bottom: 10px;
}

#detail-product .quickview-info .status-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 10px;
}

#detail-product .quickview-info .status-page .status {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #CCC;
}

#detail-product .quickview-info .status-page .status .status-class {
    color: var(--color-key);
}

#detail-product .quickview-info .status-page .status:last-child {
    margin-right: 0px;
    padding-right: 0px;
    border-right: 0px solid #CCC;
}

#detail-product .quickview-info .reviews {
    margin-bottom: 10px;
}

#detail-product .quickview-info .reviews span {
    color: #ffe20f;
}

#detail-product .quickview-info .prices {
    margin-bottom: 15px;
}

#detail-product .quickview-info .prices .price {
    font-size: 25px;
    color: #ee1c25;
    margin-right: 10px;
}

#detail-product .quickview-info .prices .product-price-save {
    font-size: 14px;
    color: #333;
    font-weight: 700;
}

#detail-product .quickview-info .prices .old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #acacac;
    margin-right: 10px;
}

#detail-product .product-description {
    color: #000;
    font-size: 15px;
    line-height: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

#detail-product .product-description a {
    font-size: 14px;
    color: var(--color-key);
    font-weight: 400;
    font-style: italic;
}

#detail-product .qty-ant {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#detail-product .qty-ant label {
    width: 100px;
    line-height: 35px;
}

#detail-product .qty-ant .custom {
    width: 298px;
    border: 1px solid #CCC;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#detail-product .qty-ant .custom .btn-cts {
    font-size: 20px;
    line-height: 0px;
    border: none;
    display: block;
    width: 46px;
    height: 46px;
    background: #ececec;
    float: left;
    color: #333;
    text-align: center;
    padding: 0px;
    border-radius: 0;
    cursor: pointer;
}

#detail-product .qty-ant .custom .qty {
    height: 46px;
    font-size: 1em;
    margin: 0;
    padding: 0 2px;
    text-align: center;
    background: #fff;
    min-height: unset;
    display: block;
    float: left;
    box-shadow: none;
    border-radius: 0px;
    border: none;
    flex-grow: 1;
}

#detail-product .btn-mua {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 320px;
    margin-bottom: 10px;
}

#detail-product .btn-mua .buy,
#detail-product .btn-mua .buypayment {
    color: #fff;
    background-color: #000;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    height: auto;
    line-height: inherit;
    box-shadow: none;
    padding: 15px 10px;
    width: auto;
    border: none;
    cursor: pointer;
    width: calc(100% / 2 - 4px);
}

#detail-product .btn-mua .buy {
    background-color: #181818;
}

#detail-product .btn-mua .buypayment {
    background-color: var(--color-key);
}

#detail-product .btn-mua .buy .txt-main,
#detail-product .btn-mua .buypayment .txt-main {
    font-size: 15px;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    width: 100%;
}

#detail-product .btn-mua .buy .text-add,
#detail-product .btn-mua .buypayment .text-add {
    font-size: 12px;
    text-transform: none;
    font-weight: 400;
    display: block;
    width: 100%;
}

#detail-product .element {
    margin-bottom: 10px;
}

#detail-product .element .head {
    margin: 0px 0px 10px;
    text-align: left;
    min-width: 100px;
    font-weight: 400;
    font-size: 14px;
}

#detail-product .element .cont {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#detail-product .element .cont .el {
    margin-right: 5px;
    margin-bottom: 5px;
    position: relative;
    cursor: pointer;
}

#detail-product .element .cont .el label {
    min-width: 35px !important;
    height: 35px !important;
    margin: 0;
    padding: 0 5px;
    border: #d7d7d7 1px solid;
    background-color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 35px;
    white-space: nowrap;
    display: inline-block;
    font-weight: normal;
    background-color: unset !important;
    text-transform: uppercase;
}

#detail-product .element .cont .el input:checked+label {
    color: var(--color-key);
    border: 1px solid var(--color-key);
}

#detail-product .element .cont .el input[type="checkbox"],
#detail-product .element .cont .el input[type="radio"] {
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 40px;
    position: absolute;
    background: transparent;
    outline: none;
    opacity: 0;
    left: 0px;
    cursor: pointer;
}

#detail-product .hotline-product {
    font-size: 15px;
}

#detail-product .hotline-product a {
    color: var(--color-key);
    font-weight: 700;
    font-size: 20px;
}

#detail-product .product-tab ul.tabs {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    margin: 0 0 25px;
    justify-content: flex-start;
}

#detail-product .product-tab .tabs-title li {
    margin-right: 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f33;
    display: block;
    padding: 15px 0px;
    position: relative;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin: 0px 20px 0px 0px;
}

#detail-product .product-tab .tabs-title li:hover:after,
#detail-product .product-tab .tabs-title li.current:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -1px;
    height: 2px;
    background: #1c1c1c;
    width: 100%;
    left: 0;
}

#detail-product .product-tab .tabs-title li:hover,
#detail-product .product-tab .tabs-title li.current {
    color: #1c1c1c;
}

#detail-product .product-tab .tab-content {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

#detail-product .product-tab .tab-content.current {
    min-height: 1px;
}

#detail-product .product-tab .tab-content.current {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.box-pi {
    padding: 15px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.box-pi span {
    margin-right: 10px;
}

.box-pi h6 {
    font-size: 20px;
    color: #FFF;
    flex-grow: 1;
    text-transform: uppercase;
}

.box-pi.bg1 {
    background: #C61A1A
}

.box-pi.bg2 {
    background: #DA721D
}

.box-pi.bg3 {
    background: #88D519
}

.form-phone {
    padding: 20px;
    background: #f2f2f2;
    border: 1px solid #ebebeb;
}

.form-phone h5 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #646464;
}

.form-phone p {
    line-height: 20px;
    margin-bottom: 5px;
}

.form-box {
    display: flex;
}

.form-box input[type=text] {
    padding: 12px 10px;
    background: #FFF;
    border: none;
    outline: none;
    flex-grow: 1;
}

.form-box button[type=button] {
    padding: 0px 20px;
    background: #000;
    border: none;
    color: #FFF;
    cursor: pointer;
}

.detail-set {
    line-height: 22px;
}

.detail-set p,
.detail-set h1,
.detail-set h2,
.detail-set h3,
.detail-set h4,
.detail-set h5,
.detail-set h6 {
    margin-bottom: 10px;
}

.detail-set img {
    max-width: 100% !important;
    height: auto !important;
}

.item-product .img {
    overflow: hidden;
}

.item-product .img img {
    max-width: 100%;
    display: block;
    transition: all 0.6s;
}

.item-product:hover .img img {
    transform: scale(1.05);
}

.item-product .desc a {
    color: #333;
    display: block;
    text-align: center;
    padding: 10px 0px 20px;
    font-size: 15px;
}

.item-product:hover .desc a {
    color: var(--color-key);
}

.item-product .desc p {
    margin-top: 5px;
}

.item-product .desc p .price {
    color: #FF0000;
    font-weight: 700;
}

/*Ãƒâ€žÃ¢â‚¬ËœÃƒÆ’Ã‚Â o tÃƒÂ¡Ã‚ÂºÃ‚Â¡o*/
.col_daotao {
    min-height: 600px;
    max-height: 600px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 65px 40px 90px;
    color: #fff;
    text-align: center;
}

.col_dangky {
    min-height: 600px;
    max-height: 600px;
    padding: 25px;
}

.title_daotao {
    font-family: Tinos-Regular;
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    padding: 0 0 15px 0;
    background: url(../images/linet.png) bottom center no-repeat;
    margin: 0 0 20px;
}

.title_dangky {
    font-family: Tinos-Regular;
    text-transform: uppercase;
    text-align: center;
    font-size: 30px;
    padding: 0px 0 25px 0;
    background: url(../images/lined.png) bottom center no-repeat;
    margin: 0 0 20px;
    color: #000;
}

.title_dangky span {
    font-family: 'Muli';
    font-size: 15px;
    color: #000;
    display: block;
    text-transform: none;
    padding: 10px 0;
}

.mota_daotao {
    display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 30px;
    color: #DFDFDF;
    font-family: MuliRegular;
    margin: 15px 0 45px;
    text-align: justify;
}

.gioithieuxemthem a {
    background: #FDB00B;
    color: #000000;
    text-transform: uppercase;
    padding: 8px 20px;
    display: inline-block;
    font-family: 'Open Sans';
}

.rowdknt {
    padding: 45px;
    border: 1px solid #966A0D;
}

.rowinput {
    overflow: hidden;
    margin: 0 -10px;
}

.col5input {
    width: 50%;
    float: left;
    padding: 0 7px;
}

.textarea {
    width: 100%;
    float: left;
    padding: 0 7px;
}

.input_index,
.textarea_index {
    display: block;
    padding: 7px 0;
}

.input_index input {
    background: transparent;
    border: 1px solid #835D0F;
    height: 45px;
    border-radius: 0;
    text-indent: 10px;
    padding: 5px 0;
    color: #452D01;
    font-family: Muli;
}

.textarea_index textarea {
    background: transparent;
    border: 1px solid #835D0F;
    height: 125px;
    border-radius: 0;
    text-indent: 10px;
    padding: 5px 0;
    color: #452D01;
    font-family: Muli font-size: 13px;
}

.input_index input::-webkit-input-placeholder,
.textarea_index textarea::-webkit-input-placeholder {
    color: #452D01;
    font-family: Muli;
    font-size: 13px;
}

.buton_gui {
    text-align: center;
    padding: 25px 0 10px;
}

.buton_gui button {
    background: #000000;
    color: #fff;
    font-family: MuliBold;
    font-size: 15px;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    text-indent: 0;
    padding: 8px 20px;
    height: 45px;
}

.form-control {
    width: 100%
}


/*Posts*/
.post-inner {}

.post-inner .post-img {
    position: relative;
}

.post-inner .meta-time {
    color: #888
}

.post-inner .meta-time a {
    color: var(--color-key);
    font-weight: 700;
}

.post-inner .post-content {
    border-top: 0px;
    background: #FFF;
}

.post-inner .post-content h3.nowrap {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-inner .post-content .padd-leftnew {
    width: 100%;
    background: #FFF;
    padding: 10px 10px 10px 10px;
    position: relative;
}

.post-inner .time-post {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: var(--color-key);
    padding: 25px 10px;
    color: #FFF;
    width: 58px;
}

.post-inner .time-post span:first-child {
    font-size: 15px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.post-inner .time-post span:last-child {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    font-weight: 700;
    text-align: center;
}

.post-inner .post-content h3 {
    padding-bottom: 10px;
}

.post-inner .post-content h3 a {
    font-size: 17px;
    color: #333;
    font-weight: 700;
    line-height: 20px;
}

.post-inner .post-content .meta-article {
    font-size: 14px;
    color: #777;
    font-weight: 400;
    margin-bottom: 10px;
}

.post-inner .post-content .meta-article i {
    color: var(--color-key);
}

.post-inner .post-content .meta-content {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.post-inner .post-content .meta-view {
    margin-top: 10px;
}

.post-inner .post-content .meta-view .view-more {
    color: var(--color-key);
    display: inline-block;
}

.post-inner .post-content .meta-time {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e2e2;
    font-size: 13px;
}

.post-inner .post-content .meta-time span:nth-child(1) {
    color: #D90000;
    font-weight: 700;
}

/*.img-list{
    position: relative;
}
.img-list:after{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 70px;
    content:'';
    bottom: 0px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(255,255,255,0) 100%);
    transition: all 0.6s;
}
.position-list{
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    bottom: -50px;
    z-index: 2;
    transition: all 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.list-title a{
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
}
.position-list p{
    visibility: hidden;
    opacity: 0;
    color: #FFF;
    margin-top: 10px;
    line-height: 22px;
    transition: all 0.6s;
}
.img-list:hover .position-list{
    
    bottom: 0px;
    top: 0px;
}
.img-list:hover:after{
    background: rgba(0,0,0,0.5);
    height: 100%;
}
.img-list:hover .position-list p{
    opacity: 1;
    visibility: visible;
} */
/*News*/
.news-one {
    padding: 30px 0px 30px;
}

.news-one .title-news {
    text-align: center;
    margin-bottom: 20px;
}

.news-one .title-news h4 {
    font-size: 25px;
    text-transform: uppercase;
    color: #333;
    display: inline-block;
    font-weight: 700;
    position: relative;
    padding-bottom: 5px;
}

.news-one .title-news h4:after,
.news-one .title-news h4:before {
    width: 70px;
    height: 1px;
    background: var(--color-key);
    content: '';
    position: absolute;
}

.news-one .title-news h4:after {
    left: 50%;
    margin-left: -35px;
    bottom: 0px;
}

.news-one .title-news h4:before {
    left: 50%;
    margin-left: -25px;
    bottom: -5px;
}

.news-one .post-inner {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.news-one .post-inner1 {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.news-one .post-inner .order1 {
    order: 1;
}

.news-one .post-inner .order2 {
    order: 2;
}

.ngaytao {
    display: inline-block;
    color: #777777;
    font-family: Muli;
    font-size: 13px;
    font-style: italic;
}

.xemthemttone a {
    display: inline-block;
    color: #777777;
    font-family: Muli;
    font-size: 14px;
    font-style: italic;
}

.news-one .post-inner .post-img {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.news-one .post-inner .post-img img {
    transition: all 0.6s;
}

.news-one .post-inner:hover .post-img img {
    transform: scale(1.04)
}

.news-one .post-inner .meta-time {
    color: #FFF;
    position: absolute;
    top: 0px;
    left: 10px;
    width: 68px;
    height: 68px;
    background: #EE1C25;
    padding: 10px 15px;
}

.news-one .post-inner .meta-time span {
    display: block;
    text-align: center;
    line-height: 23px;
}

.news-one .post-inner .meta-time span+span {
    border-top: 1px solid #FFF;
    text-transform: uppercase;
}

.news-one .post-inner .post-content {
    border-top: 0px;
    transition: all 0.6s;
    background: transparent;
    width: 100%;
    padding: 10px;
    background: #f5f5f5;
}

.news-one .post-inner1 .post-content1 {
    border-top: 0px;
    transition: all 0.6s;
    background: transparent;
    width: 100%;
    padding: 10px;
    background: #f5f5f5;
}

.news-one .post-inner .post-content.new {
    border-top: 0px;
    transition: all 0.6s;
    background: transparent;
    width: calc(100% - 95px);
}

.news-one .post-inner h3.nowrap {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-one .post-inner h3 {
    margin-bottom: 3px;
    border-bottom: 0px;
    padding-bottom: 0px;
    line-height: 18px;
}

.news-one .post-inner h3 a {
    font-size: 15px;
    color: #333;
    font-weight: 700;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-one .post-inner1 h3 a {
    margin: 5px 0;
    font-size: 15px;
    color: #333;
    font-weight: 700;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-one .post-inner1 h2 a {
    font-weight: 400;
    font-family: Muli;
    color: #2F2F2F;
    font-size: 12pt;
    display: inline-block;
    padding: 10px 0 5px 0px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-one .post-inner:hover h3 a {
    color: var(--color-key);
}

.news-one .post-inner .post-content .padd-leftnew {
    width: calc(100% - 50px);
    background: #333;
    padding: 30px 10px 30px 30px;
    position: relative;
    margin-left: 50px;
}

.news-one .post-inner .time-post {
    color: #908e8e;
    position: relative;
    padding: 0px;
    font-style: italic;
    margin-bottom: 5px;
    width: 100%;
    background: transparent;
    font-size: 12px;
}

.news-one .post-inner .time-post.new {
    color: #FFF;
    position: relative;
    padding: 0px;
    font-style: italic;
    background: var(--color-key);
    padding: 10px;
    width: 70px;
    margin-right: 15px;
    margin-bottom: 0px;
}

.news-one .post-inner .time-post span:first-child {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    text-align: center;
    font-weight: 700;
}

.news-one .post-inner .time-post span:last-child {
    font-size: 13px;
    text-transform: uppercase;
    display: block;
    font-weight: 700;
    text-align: center;
}

.news-one .post-inner .post-content .meta-article {
    font-size: 14px;
    color: #777;
    padding: 10px 0px;
    border-bottom: 1px dashed #e6e6e6;
    font-weight: 400;
    margin-bottom: 10px;
}

.news-one .post-inner .post-content .meta-article i {
    color: var(--color-key);
}

.news-one .post-inner .post-content .meta-content {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #333;
    margin-top: 3px;
}

.news-one .post-inner .post-content .meta-view {
    margin-top: 10px;
}

.news-one .post-inner .post-content .meta-view .view-more {
    color: #333;
    display: inline-block;
    padding: 7px 10px;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.news-one .post-inner:hover .post-content .meta-view .view-more {
    border: 1px solid var(--color-key);
    color: #FFF;
    background: var(--color-key);
}

.news-one .post-inner .post-content .meta-time {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e2e2;
    font-size: 13px;
}

.news-one .post-inner .post-content .meta-time span:nth-child(1) {
    color: #D90000;
    font-weight: 700;
}

.video-title {
    font-size: 15px;
    margin-top: 20px;
    color: #333;
    padding: 0px 20px;
    font-weight: 700;
}

.img-video {
    overflow: hidden;
    height: 300px;
    position: relative;
    margin-bottom: 20px;
}

.img-video1 {
    overflow: hidden;
    height: 98px;
    position: relative;
}

.img-video img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-container {
    position: relative;
    padding-bottom: 72%;
    padding-top: 70px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.change-video {
    width: 100%;
    height: 43px;
    border: 1px solid #ddd;
    margin-top: 5px;
    display: none;
}

.click-video {
    height: 244px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.click-video img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url('../images/play.png') no-repeat center;
}

/*Paging*/
.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #333;
    background-color: #fff;
    border: 1px solid #dee2e6
}

.page-link:hover {
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.page-link:not(:disabled):not(.disabled) {
    cursor: pointer
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--color-key);
    border-color: var(--color-key)
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6
}

.mfp-close {
    border-radius: 50%;
    top: -22px;
    right: -22px;
    background: #333 !important;
    color: #FFF !important;
    opacity: 1 !important;
}

.mfp-close:active {
    top: -22px;
}

/*Contact*/
#contact-body h4.title {
    font-size: 18px;
    display: block;
    font-weight: 700;
    color: #444;
}

#contact-body .box-frame-map {
    width: 100%;
    padding: 5px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
}

#contact-body .box-frame-map iframe {
    width: 100% !important;
    height: 350px !important;
    display: block;
}

#contact-body .content-contact {
    line-height: 22px;
}

#contact-body .content-contact p {
    margin-top: 7px;
    margin-bottom: 7px;
}

#contact-body .form-contact .input-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px #c9eee2 dashed;
    box-shadow: none;
    min-height: 42px;
    font-size: 14px;
    border-radius: 5px;
}

#contact-body .form-contact .input-control.error {
    border-color: #ff0000 !important;
}

#contact-body .form-contact .error {
    font-size: 13px;
    display: block;
    margin-top: 5px;
    color: #FF0000;
}

#contact-body .form-contact textarea.input-control {
    height: 146px;
}

#contact-body .form-contact .button-control {
    height: 42px;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #fdae1b;
    padding: 0px 15px;
    background: #fdae1b;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

/*Detail box*/
.detail-box {
    line-height: 20px;
}

.detail-box p {
    margin-bottom: 10px;
}

.detail-box h1,
.detail-box h2,
.detail-box h3,
.detail-box h4,
.detail-box h5,
.detail-box h6 {
    margin-bottom: 10px;
}

.detail-box .meta-desc {
    font-weight: 700;
    margin-bottom: 20px;
    background-color: #f7f7f7;
    padding: 10px 20px;
    border: 3px solid #d0d0d0;
    border-radius: 4px;
    margin: 20px 0px;
    text-align: justify;
}

.detail-box .meta-desc::after {
    content: "";
    background-image: url('../images/after.png');
    display: block;
    width: 32px;
    height: 26px;
    float: right;
}

.detail-box .meta-desc::before {
    content: "";
    background-image: url('../images/before.png');
    display: block;
    width: 32px;
    height: 26px;
    float: left;
    margin-right: 20px;
}

.detail-box img {
    max-width: 100% !important;
    height: auto !important;
}

.detail-box table {
    width: 100%;
    border-collapse: collapse;
}

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

.detail-box table td {
    padding: 10px;
    border: 1px solid #f0f0f0;
}

.page-scrol-social .detail-box {
    width: 100%;
    margin-left: 20px;
}

.page-scrol-social .detail-box.page {
    width: calc(100% - 60px);
    margin-left: 0px;
    margin-right: 20px;
}

.page-scrol-social .social {
    width: 40px;
}

.page-scrol-social .right-post-other {
    width: 280px;
    margin-left: 20px;
}

.sticky-new {
    position: sticky;
    top: 60px;
}

.page-scrol-social .social ul {
    position: sticky;
    top: 130px;
}

.page-scrol-social .social li {
    margin-bottom: 5px;
}

.page-scrol-social .social button {
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    color: var(--color-key)
}

.tabs-about {
    background: var(--color-key);
    padding: 5px 5px;
}

.tabs-about li {
    font-size: 16px;
    display: inline-block;
    padding: 8px 10px;
    text-transform: uppercase;
    color: #FFF;
    cursor: pointer;
}

.content-page {
    display: none;
    opacity: 0;
}

.tabs-about li.active,
.tabs-about li:hover {
    color: var(--color-key);
    background: #FFF;
}

.title-right {
    padding: 5px 10px;
    background: var(--color-key);
}

.title-right h5 {
    font-size: 15px;
    color: #FFF;
    text-transform: uppercase;
}

.content-other {
    padding: 15px;
    background: #F8F8F8;
}

.content-other h5 {
    color: #222;
    margin: 0;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.content-other h3 {
    font-size: 15px;
    margin: 5px 0px;
}

.content-other h3 a {
    color: #222;
    display: table;
}

.content-other h3 a:hover {
    color: var(--color-key)
}

.other-post {
    border: 1px solid #e7e7e7;
}

.other-post li {
    padding: 10px;
    border-bottom: 1px solid #e7e7e7;
}

.other-post .img {
    width: 100px;
    margin-right: 10px;
}

.other-post h4 {
    display: inline-block;
    width: calc(100% - 110px);
}

.other-post li:last-child {
    border-bottom: 0px solid #e7e7e7;
}

.other-post li a {
    color: #333;
    font-size: 14px;
    display: block;
    line-height: 18px;
}

.other-post li a span {
    font-size: 13px;
    font-style: italic;
}

.other-post li a:hover {
    color: var(--color-key)
}

.other-post.none {
    border: 0px solid #e7e7e7;
}

.other-post li.none {
    padding: 10px 0px;
    border-bottom: 1px solid #e7e7e7;
}

.other-post li.none:last-child {
    padding-bottom: 0px;
    border-bottom: 0px solid #e7e7e7;
}

#gallery .img-album {
    overflow: hidden;
}

#gallery .img-album img {
    transition: all 0.6s
}

#gallery .img-album:hover img {
    transform: scale(1.06);
}


/*Tags*/
.tags {
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
}

.tags li {
    float: left;
}

.tag {
    background: #eee;
    border-radius: 3px 0 0 3px;
    color: #999;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
}

.tag::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
}

.tag::after {
    background: #fff;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #eee;
    border-top: 13px solid transparent;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
}

.tag:hover {
    background-color: crimson;
    color: white;
}

.tag:hover::after {
    border-left-color: crimson;
}

.content-detail-desc {
    color: #5e5f5f;
}

.content-detail-desc p {
    line-height: 22px;
    margin: 0px 0px 15px 0px;
}

/*Menu MObile*/
.opacity-menu.open-opacity {
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0px !important;
    left: 0px;
    z-index: 9999;
}

.opacity-menu-list.open-opacity {
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0px !important;
    left: 0px;
    z-index: 9999;
}


.header-left-fixwidth {
    top: 0 !important;
    width: 255px;
    min-height: 100vh;
    position: fixed;
    float: left;
    background: #000000;
    width: 290px;
    position: fixed;
    z-index: 999999999999999;
    left: 0;
    top: 0;
    visibility: hidden;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    -webkit-transform: translateX(-280px);
    -ms-transform: translateX(-280px);
    -o-transform: translateX(-280px);
    transform: translateX(-280px);
}

.header-left-fixwidth.open-sidebar-menu {
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0)
}

.header-left-fixwidth.open-menu {
    padding-top: 15px;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0)
}

.header-left-fixwidth .wrap-header {
    overflow-y: auto;
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    border-left: 1px solid #252424;
    border-right: 1px solid #252424;
    padding: 0 15px;
}

.header-left-fixwidth .wrap-header::-webkit-scrollbar-track {
    -webkit-box-shadow: inset transparent;
    background-color: transparent
}

.header-left-fixwidth .wrap-header::-webkit-scrollbar {
    width: 1px;
    background-color: transparent
}

.header-left-fixwidth .wrap-header::-webkit-scrollbar-thumb {
    border: 1px solid transparent
}

.header-left-fixwidth .wrap-header .logos-menu {
    padding: 20px 0px;
}

.header-left-fixwidth .wrap-header .logos-menu img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    max-height: 100px;
}

.header-left-fixwidth .wrap-header .searchs-menu .search-bar {
    width: 100%;
    position: relative;
}

.header-left-fixwidth .wrap-header .searchs-menu .search-text {
    width: 100%;
    height: 38px;
    border-radius: 5px;
    border: solid 1px transparent;
    padding: 0 40px 0 10px;
    outline: none;
    font-size: var(--font-size);
    background: #FFF;
}

.header-left-fixwidth .wrap-header .searchs-menu .search-btn {
    position: absolute;
    right: 0px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F00;
    top: 0px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.header-left-fixwidth .wrap-header .account-cart-menu {
    text-align: left;
    padding: 20px 0px;
}

.header-left-fixwidth .wrap-header .account-cart-menu a {
    color: var(--color-key);
}

.header-left-fixwidth .wrap-header .account-cart-menu span {
    padding: 0px 5px;
}

.header-left-fixwidth .wrap-header .nav-menu ul a {
    display: block;
    font-size: 15px;
    color: #525252;
    padding: 12px 10px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-left-fixwidth .wrap-header .nav-menu ul li {
    position: relative;
    border-top: 1px solid #252424;
}

.header-left-fixwidth .wrap-header .nav-menu ul li a:hover {
    background-color: #101010;
}

.header-left-fixwidth .wrap-header .nav-menu ul li span.btn-dropdown-menu {
    position: absolute;
    right: 0px;
    font-size: 25px;
    display: flex;
    width: 43px;
    height: 43px;
    background: transparent;
    top: 0px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    color: #525252;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.6s;
    border-left: 1px solid #252424;
    border-right: 1px solid #252424;
}

.header-left-fixwidth .wrap-header .nav-menu ul li span.btn-dropdown-menu i {
    transition: all 0.6s;
}

.header-left-fixwidth .wrap-header .nav-menu ul li span.btn-dropdown-menu.active i {
    transform: rotate(90deg);
    color: var(--color-key);
}

.header-left-fixwidth .wrap-header .nav-menu ul li a i {}

.header-left-fixwidth .wrap-header .nav-menu ul.sub-menu a {
    padding: 12px 20px;
}

.header-left-fixwidth .wrap-header .nav-menu ul.sub-menu ul.sub-menu a {
    padding: 12px 35px;
}

.header-left-fixwidth .wrap-header .nav-menu ul.sub-menu.none {
    display: none;
}

.header-left-fixwidth .wrap-header .nav-menu ul.sub-menu.block {
    display: block;
}

.left-sub.mb-24 {
    margin-bottom: 24px;
}

.left-sub .head-left span {
    display: block;
    position: relative;
    background: var(--color-key);
    height: 45px;
    color: #fff;
    padding-left: 17px;
    padding-right: 17px;
    font-size: 18px;
    line-height: 45px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

.left-sub .head-left span:after {
    content: '';
    width: 2px;
    height: 24px;
    background: var(--color-key);
    left: 50%;
    top: 100%;
    margin-left: -1px;
    position: absolute;
    z-index: 2;
}

.desc-left {
    margin-top: 24px;
    padding: 30px 15px;
    background: #EFEFEF;
}

.menu-left {
    margin-top: 24px;
    margin-bottom: 24px;
    background: #EFEFEF;
}

.menu-left li {
    width: 100%;
    padding: 13px 10px;
    position: relative;
}

.menu-left li:not(:last-child) {
    border-bottom: 1px solid #FFF;
}

.menu-left li:hover {
    background: #F5F5F5
}

.menu-left li a {
    display: block;
    color: #333;
    font-size: 15px;
    transition: all 0.3s;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
}

.menu-left li ul {
    position: absolute;
    width: 250px;
    top: 0px;
    left: 100%;
    background: #f7f7f7;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    margin-top: 20px;
    transition: all 0.6s;
}

.menu-left li:hover ul {
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
}

.menu-left>li a:hover {
    color: var(--color-key);
}

.menu-left>li>ul>li:hover>a {
    color: var(--color-key);
}

.box-menu {
    position: relative;
}

.menu-mobile {
    width: 40px;
    height: 40px;
    background: transparent;
    padding: 5px 6px;
    border-radius: 5px;
    display: none;
    cursor: pointer;
}

.menu-mobile span {
    display: block;
    width: 100%;
    height: 4px;
    margin: 12.5px 0px;
    background: #FFF;
    position: relative;
}

.menu-mobile span:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    top: -8px;
    background: #FFF;
    left: 0px;
}

.menu-mobile span:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    bottom: -8px;
    background: #FFF;
    left: 0px;
}

#notfound {
    display: block;
    position: relative;
    width: 100%;
    margin: 150px 0;
    text-align: center;
}

#notfound .positioned {
    display: block;
    width: 85%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #CCCCCC;
}

#notfound .positioned h1 {
    margin: 0 0 0 20px;
    padding: 0;
    display: inline;
    font-size: 60px;
    text-transform: uppercase;
}

#notfound .positioned p {
    margin: 25px 0 0 0;
    padding: 0;
    font-size: 16px;
}

#notfound a.go-back,
#notfound a.go-home {
    display: block;
    position: absolute;
    top: 30px;
    width: 100px;
    padding: 20px 0;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: var(--color-key);
}

#notfound a.go-back {
    left: 0;
}

#notfound a.go-home {
    right: 0;
}

#notfound .positioned,
#notfound a.go-back,
#notfound a.go-home {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
}

#popup {
    text-align: center;
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.content-popup img {
    max-width: 100%;
}

.hotline-box {
    position: fixed;
    right: -200px;
    top: 20%;
    width: 200px;
    min-height: 300px;
    background: #ffffff;
    box-shadow: 0px 0px 10px #f0f0f0;
    transition: all 0.7s;
    z-index: 1001;
}

.hotline-box:hover {
    right: 0px;
}

.hotline-box .name-hotline {
    display: inline-block;
    padding: 5px 10px;
    background: var(--color-key);
    font-size: 14px;
    color: #FFF;
    text-transform: uppercase;
    position: absolute;
    transform: rotate(-90deg);
    left: -100px;
    top: 60px;
    width: 160px;
    line-height: 30px;
    text-align: center;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    z-index: 10;
}

.hotline-box .desc-hotline {
    padding: 10px;
}

.hotline-box .desc-hotline p {
    font-size: 15px;
    padding: 5px 0px;
}

.grecaptcha-badge {
    opacity: 0;
}

/*phone*/
.sticky-info {
    width: 100%;
    text-align: center;
    padding: 10px 10px;
    color: #444;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Nunito';
    font-weight: 800;
    background: rgba(255, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 0, 0.6);
    border-radius: 5px;
}

#pagination {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

#pagination .link {
    padding: 5px 10px;
    background: #f5f5f5;
    border: 1px solid #ebebeb;
    cursor: pointer;
    color: #333;
    margin: 0px 4px;
    border-radius: 3px;
    display: inline-block;
}

#pagination .disabled {
    cursor: not-allowed;
    color: #bccfd8;
}

#pagination .current {
    background: #d2d2d2;
    box-shadow: 0px 0px 10px #eaeaea;
}

#pagination .link:hover {
    background: #d2d2d2;
    box-shadow: 0px 0px 10px #eaeaea;
}

#pagination .dot {
    padding: 10px 15px;
    background: transparent;
}

#pagination .first {}

.social-link a {
    display: inline-block;
    margin-right: 10px;
}

.social-product ul {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.social-product li {
    margin-top: 5px;
    margin-right: 5px;
}

.social-product button {
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    color: var(--color-key)
}

.tool-right {
    position: fixed;
    width: 50px;
    right: 23px;
    bottom: 115px;
    z-index: 9090;
    margin-top: -90px;
}

.tool-right li {
    margin: 5px 0px;
}

/*Toc*/
.box-readmore {
    padding: 10px;
    border: 1px solid #dedede;
    margin-bottom: 1rem
}

.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: 10px
}

.box-readmore ul li a {
    color: #cd1818 !important;
    cursor: pointer;
    font-weight: 700;
}

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

.owl-theme .owl-nav [class*=owl-] {
    margin: 0px;
}

.owl-carousel .owl-item img {
    /*width: auto;*/
    transition: all 0.6s;
}

footer.footer {
    width: 100%;
    position: relative;
    padding: 40px 0px 0px;
    background-size: cover;
}

.footer-maps {
    position: absolute;
    width: 50%;
    top: 0px;
    right: 0px;
    height: 100%;
}

.about-footer {
    max-width: 756px;
    padding-top: 30px;
    margin-top: 10px;
    cursor: pointer;
    border-top: 1px dashed #333;
}

.about-footer h2 {
    font-size: 20px;
    color: #FFF;
    margin: 10px 0px;
}

.footer-top {
    padding-bottom: 30px;

    /*margin-bottom: 90px;*/
    position: relative;
}

.f-social {
    font-weight: 800;
    font-size: 24px;
    width: 350px;
    color: #FFF;
    font-family: 'SFUGrenoble';
}

.f-name {
    width: calc(100% - 282px - 354px);
    padding: 0px 20px;
}

.f-name p {
    padding: 3px 0px;
    font-size: 18px;
    color: #fff;
}

.f-mail {
    color: #fff;
    width: 354px;

}

.f-mail p {
    padding: 15px 0px;
    font-size: 15px;
    font-family: 'SFUGrenoble';
}

.f-mail span {
    font-weight: 800;
    font-family: 'SFUGrenoble';
    padding: 26px 0;
    font-size: 24px;
}

footer.footer .logo-footer {
    width: 100%;
}

footer.footer .widget-ft {
    width: calc(100% - 209px - 15px);
}

footer.footer .info-footer {
    color: #333;
    margin-bottom: 100px;
}

footer.footer .info-footer a {
    color: #FFF;
}

footer.footer .info-footer img {
    vertical-align: middle;
}

footer.footer .info-footer p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 5px;
    color: #FFF;
}

footer.footer .info-footer h5 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 5px;
}

footer.footer .info-footer p {
    text-align: left;
}

footer.footer .name-company {
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'SFUGrenoble';
    font-weight: 800;
}

footer.footer .name-dangky {
    font-size: 20px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 15px;
}

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

footer.footer .title-menu {
    margin: 0;
    line-height: normal;
    letter-spacing: 0.5px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-top: 0px;
    color: #333;
}

footer.footer .title-menu a,
footer.footer .title-menu span {
    cursor: default;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    color: #FFF;
    display: block;
    padding-bottom: 4px;
}

footer.footer .title-menu a:hover {
    color: #fff;
}

footer.footer .title-menu a:before {
    position: absolute;
    left: 0px;
    width: 40px;
    height: 2px;
    background: #FFF;
    content: '';
    bottom: 0px;
}

footer.footer .title-menu a i.fa,
footer.footer .title-menu span i.fa {
    display: none;
}

footer.footer .list-menu {
    line-height: 22px;
    padding-left: 0px;
}

footer.footer .list-menu {
    color: #FFF;
}

footer.footer .list-menu li {
    position: relative;
}

footer.footer .list-menu .li_menu {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 23px;
    color: #FFF;
    width: 100%;
}

footer.footer .list-menu .li_menu a {
    color: #FFF;
    position: relative;
    display: block;
}

footer.footer .list-menu .li_menu a:hover {
    color: #ff0;
}

footer.footer .video-container {
    position: relative;
    padding-bottom: 40%;
    padding-top: 66px;
    height: 0;
    overflow: hidden;
}

footer.footer .video-container iframe,
footer.footer .video-container object,
footer.footer .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer.footer .change-video {
    width: 100%;
    height: 43px;
    border: 1px solid #FFF;
    margin-top: 5px;
    background: #1f9000;
    color: #FFF;
}

#mail .content-mail h5 {
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'SVNAvo';
    color: #FFF;
}

#mail .content-mail p {
    color: #FFF;
    text-transform: uppercase;
    font-family: 'SVNAvo';
    font-size: 12px;
}

#mail .content-mail h5 span {
    font-size: 35px;
    font-style: italic;
}

.form-mail {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

#subscribe-form {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

#subscribe-form .input {
    border: 1px solid #000;
    padding: 0px 10px;
    line-height: 50px;
    outline: none;
    font-size: 14px;
    width: 100%;
    color: #000;
    background: transparent;
}

#subscribe-form .input::-webkit-input-placeholder {
    color: #333;
}

#subscribe-form .input:-ms-input-placeholder {
    color: #333;
}

#subscribe-form .input::placeholder {
    color: #333;
}

#subscribe-form button[type=submit] {
    background: transparent;
    border: none;
    line-height: 50px;
    outline: none;
    cursor: pointer;
    text-align: center;
    color: #FFF;
    font-weight: 700;
    position: absolute;
    text-transform: uppercase;
    right: 0px;
    padding: 0px 10px;
    background: url('../images/send.png') no-repeat center;
    text-indent: -99999999px;
}

.btn-sup {
    margin-left: 20px;
    display: inline-block;
    width: 145px;
    text-align: center;
    height: 44px;
    border: 0px;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-sup.lienhe {
    background: transparent;
    border: 2px solid #FFF;
    color: #FFF;
}

.btn-sup.hotro {
    background: #333;
    border: 2px solid #333;
    color: #FFF;
}

#subscribe-form input.error {
    border: 1px solid #900007;
}

#subscribe-form label.error {
    position: absolute;
    top: calc(100% + 5px);
    color: #ff2d37;
    font-size: 13px;
    display: none !important;
}

.copyright {
    color: #FFF;
    display: block;
    width: 100%;
    position: relative;
    padding: 30px 0px;
    background: rgba(0, 0, 0, 0.4);
}

.copyright a {
    color: #eaa915;
}

.footer .follow_option {
    padding-left: 0px;
    margin-top: 3px;
}

.footer .follow_option li {
    display: inline-block;
    color: #FFF;
}

.footer .follow_option li a {
    height: 40px;
    width: 40px;
    text-align: center;
    background: #ff2d37;
    color: #fff;
    line-height: 40px;
    color: #fff;
    display: block;
    margin-right: 5px;
    border-radius: 50%;
}

.footer .follow_option li a .fa {
    color: #fff;
    font-size: 20px;
    line-height: 40px;
}

.footer .follow_option li a.facebook {
    background: #4B69B0
}

.footer .follow_option li a.twitter {
    background: #37B1E1;
}

.footer .follow_option li a.instagram {
    background: #0678B6
}

.footer .follow_option li a.youtube-play {
    background: #E83F3A;
}

.footer .follow_option li a.pinterest {
    background: #E83F3A;
}

#maps-load-frame {
    overflow: hidden;
    width: 100%;
    height: 230px;
}

#maps-load-frame iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

#contact-maps {
    position: relative;
    padding: 30px 0px;
    background: url('../images/bg-footer.png');
}

#contact-form-maps {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 30px;
    height: 100%;
    background: var(--color-key);
    border-radius: 30px;
}

#contact-form-maps h6 {
    font-size: 23px;
    text-transform: uppercase;
    color: #FFF;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    display: block;
    text-align: center;
}

#contact-form-maps p {
    text-align: center;
    color: #FFF;
    padding-bottom: 10px;
}

#contact-form-maps .r {
    margin-bottom: 5px;
}

#contact-form-maps .input {
    width: 100%;
    height: 38px;
    background: #FFF;
    padding: 5px 10px;
    color: #666;
    font-size: 15px;
    outline: none;
    border: none;
}

#contact-form-maps .input.text {
    height: 78px;
}

#contact-form-maps .error {
    color: #ff0000;
    margin-top: 5px;
    display: block;
}

#contact-form-maps .button {
    display: inline-block;
    padding: 8px 15px;
    background: #506D00;
    color: #FFF;
    border: none;
    border-radius: 3px;
    margin: 0 auto;
    text-transform: uppercase;
}

ul.social li {
    transition: all 0.6s;
    color: #FFF;
}

ul.social li:hover {
    transform: translateY(-10px);
}

ul.social li img {
    transition: all 0.6s;
    border-radius: 50%;
    height: 20px;
}

ul.social li:hover img {
    -webkit-box-shadow: 0px 0px 6px #666;
    box-shadow: 0px 0px 6px #666;
}

svg .a {
    fill: none;
    stroke: #fff;
    stroke-width: 360;
    stroke-miterlimit: 10;
}

.owlleft,
.owlright {
    width: 55px;
    height: 55px;
    display: block;
    position: absolute;
    cursor: pointer;
    top: 50%;
    margin-top: calc(-55px / 2);
}

.owlleft {
    left: 10px;
}

.owlright {
    right: 10px;
}

.owlleft-icon {
    position: absolute;
    left: 0px;
    top: 50%;
    margin-top: -16.5px;
    width: 33px;
    height: 33px;
    opacity: 0;
    transition: all 0.6s;
}

.owlright-icon {
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -16.5px;
    width: 33px;
    height: 33px;
    opacity: 0;
    transition: all 0.6s;
}


.mxhft {
    margin: 0px 0 0;
}

.mxhft span {
    color: #A7A7A6;
    text-transform: uppercase;
    font-size: 20px;
    font-family: Muli;
}

.mxhft a {
    margin: 0 10px 0 0;
}

.maxhft {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0 0;
}

.linemxh {
    flex-grow: 1;
    border-top: 1px solid #B2B2B2;
    border-bottom: 1px solid #B2B2B2;
    height: 5px;
}

.in-product:hover .owlleft-icon {
    left: 10px;
    opacity: 1
}

.in-product:hover .owlright-icon {
    right: 10px;
    opacity: 1
}

.line-page {
    width: 100%;
    height: 1px;
    background: #ccc;
    margin: 30px 0px;
    position: relative;
}

.line-page:after {
    width: 38px;
    height: 14px;
    position: absolute;
    left: 50%;
    margin-left: -19px;
    top: -7px;
    content: '';
    background: url('../images/icon-line.jpg') no-repeat top center;
}

.name-title-page {
    font-size: 18px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}

.name-title-page h3 {
    display: inline-block;
}

.status.checkbox {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.status.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FFF;
    border-radius: 50%;
}

.status.checkbox:hover input~.checkmark {
    background-color: #FFF;
}

.status.checkbox {
    color: #02bd02;
}

.status.checkbox input:checked~.checkmark {
    background-color: #02bd02;
}

.status.checkbox.red input:checked~.checkmark {
    background-color: #FF0000;
}

.status.checkbox.red {
    color: #FF0000;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.status.checkbox input:checked~.checkmark:after {
    display: block;
}

.status.checkbox .checkmark:after {
    left: 8px;
    top: 4px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fanpage-overflow {
    width: 100%;
    overflow: hidden;
}



@media screen and (max-width:1220px) {
    #header .logo {
        margin-right: 10px;
    }

    #menu .item-big .nav-item>a {
        padding: 0px 13px;
    }

    .left-why {
        width: 100%;
    }

    .why-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .why-list li {
        width: calc(100% / 2 - 10px)
    }

    .why-list li {
        margin: 10px 0px;
        height: 60px;
    }

    .right-why {
        width: 100%;
    }

    .right-why-box {
        width: 100%;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .info-mail {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .form-mail {
        width: 100%;
    }

    #subscribe-form {
        flex-grow: 1;
    }

    .news-one .row65 {
        margin: 0px -30px;
    }

    .news-one .item65 {
        padding: 0px 30px;
    }

    .box-65 {
        margin: 20px auto !important;
    }

    .box-i-why {
        padding: 14px 0px;
    }

    .box-i-why:not(:last-child):after {
        display: none;
    }
}

@media screen and (max-width:1048px) {
    .hotline {
        display: none;
    }

    .cart-temp>span {
        margin-right: 0px;
    }

    .cart-temp>div {
        display: none
    }
}

@media screen and (max-width:1024px) {
    #header.header {
        height: auto;
    }

    #header.header #menu {
        width: 100%;
    }

    .menu-mobile {
        display: block;
    }

    #menu {}

    #menu .item-big .nav-item:not(:last-child) {
        display: none;
    }

    .list-btn {
        display: none;
    }

    #menu .item-big {
        order: 2;
    }

    .search-bar {
        display: block;
        flex-grow: 1;
    }

    .header-box {
        margin-top: 0px;
    }

    .header-box .logo {
        margin-bottom: -45px;
    }

    .menu-list {
        width: calc(100% - 130px);
    }

    #menu-box {
        display: flex;
        justify-content: flex-end;
    }
}

@media screen and (max-width:992px) {
    .logo-menu {
        height: 60px
    }

    .img-block-auto1 {
        height: 60px
    }

    .nav_fix {
        top: 12px;
        left: 12px;
    }

    .slider_dt {
        display: none
    }

    .slider_mb {
        display: block
    }

    .phone_left p {
        font-size: 18px;
    }

    .menu-mobile {
        height: 65px
    }

    .news-one .col--2 {
        width: 100%;
    }

    #video-load .col-9 {
        width: 100%;
    }

    #video-load .col-3 {
        display: none;
    }

    .change-video {
        display: block;
    }

    .item-product-main .product-item-main .product-thumbnail .image_thumb {
        height: auto;
    }

    footer.footer .cl1 {
        width: 100%;
    }

    footer.footer .cl2 {
        width: 100%;
        margin-top: 20px;
    }

    #detail-product .left {
        width: 100%;
    }

    #detail-product .right {
        width: 100%;
        margin-top: 20px;
    }

    .img-top {
        text-align: center;
    }

    .box-slider-in h3 {
        font-size: 20px;
        margin: 5px 0px;
    }

    .header .item:last-child {
        display: none !important;
    }

    .news-one .row65 {
        margin: 0px -10px;
    }

    .news-one .item65 {
        padding: 0px 10px;
    }

    .news-one .item65 {
        width: calc(100% / 2);
    }

    .img-video {
        height: 480px;
    }

    .img-video1 {
        height: 200px;
    }
}

@media screen and (max-width:872px) {
    .col--3 {
        width: 100%;
    }

    .hotline {
        display: block;
    }

    .item-product-main .product-item-main .product-bottom .price-box {
        justify-content: center;
        flex-wrap: wrap;
    }

    .item-product-main .product-item-main .product-bottom .price-box p {
        text-align: center;
    }

    .item-product-main .product-item-main .product-bottom .price-box p:last-child {
        justify-content: center;
    }

    .item-product-main .product-item-main .product-bottom .price-box p {
        justify-content: center;
        margin-bottom: 10px
    }

    .left-page {
        display: none;
    }

    .right-page {
        width: 100%;
    }

    .page-scrol-social .detail-box {
        width: 100%;
        order: 0;
        margin-left: 0px;
    }

    .page-scrol-social .social {
        width: 100%;
        position: relative;
        order: 1;
        margin-left: 0px;
    }

    .page-scrol-social .right-post-other {
        width: 100%;
        margin-left: 0px;
        order: 2;
    }

    .page-scrol-social .social ul {
        display: flex;
        margin-bottom: 16px;
        justify-content: flex-start;
    }

    .page-scrol-social .social ul li {
        margin-right: 10px;
    }

    .page-scrol-social .detail-box.page {
        width: 100%;
        margin-right: 0px;
    }

    .box-i-why .cycle {
        width: 80px;
    }

    .box-i-why .cycle img {
        max-width: 100%;
    }

    .box-i-why .desc-why {
        width: calc(100% - 120px);
        text-align: left;
    }

    .desc-why h4 a {
        font-size: 15px;
    }
}

@media screen and (max-width:768px) {
    .mxhft a {
        margin: 0px
    }

    .rowdknt {
        padding: 20px
    }

    .menu-mobile {
        height: 50px;
    }

    .about h6 {
        font-size: 70px;
    }

    .header-box {
        height: 60px;
    }

    .left-tt {
        display: none
    }

    .col--2 {
        width: 100%
    }

    .col_daotao {
        width: 100%;
        padding: 10px
    }

    .col_dangky {
        padding: 10px
    }

    .col-8 {
        width: 100%
    }

    .left-gt {
        display: none
    }

    .about .col--2 {
        width: 100%;
    }

    .about .desc-img {
        margin-top: 20px;
    }

    .about .desc-img img {
        margin: 0 auto;
    }

    .product-view .col--4 {
        width: calc(100% / 2);
    }

    .product-view .col--3 {
        width: calc(100% / 2);
    }

    .why-list li {
        width: 100%;
    }

    .desc-why {
        padding: 0px 20px;
    }

    .photo-body .col--3 {
        width: calc(100% / 2);
    }

    #copyright {
        padding: 15px 0px 60px;
    }

    .contact-body .item.col-4 {
        width: 100%;
    }

    .contact-body .item.col-8 {
        width: 100%;
        margin-top: 20px;
    }

    .info-footer .col--2 {
        width: calc(100% / 1);
    }

    .info-footer .col--4 {
        width: calc(100% / 2);
        margin: 10px 0px;
    }

    .form-phone .col--2 {
        width: 100%;
    }

    .form-phone .col--2+.col--2 {
        margin-top: 20px;
    }

    .video-title {
        padding: 0px 0px;
    }

    #detail-product .qty-ant .custom {
        width: 180px;
    }

    #top .item:nth-child(1) {
        width: 100%;
    }

    #top .item:nth-child(2) {
        display: none;
    }

    .box-65 {
        width: 230px;
        height: 230px;
    }

    .box-65 .meta-content {
        display: none;
    }

    .footer-top {
        flex-wrap: wrap;
    }

    .f-social {
        text-align: center;
        justify-content: center !important;
    }

    .f-social,
    .f-name,
    .f-mail {
        width: 100%;
        margin: 20px 0px;
    }

    .copyright div {
        flex-wrap: wrap;
    }

    .copyright div p {
        width: 100%;
        text-align: center;
        margin: 5px 0px -5px 0px;
    }

}

@media screen and (max-width:600px) {
    footer.footer .widget-ft {
        width: 100%;
    }

    footer.footer .logo-footer {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    footer.footer .cl1 {
        flex-wrap: wrap;
    }

    footer.footer .cl2 .col-5 {
        width: 100%;
    }

    footer.footer .cl2 .col-6 {
        width: 100%;
        margin-top: 20px;
    }

    .tabs-one .tabs li {
        padding: 10px 10px;
        font-size: 18px;
    }

    .img-video {
        height: 230px;
    }

    .img-video1 {
        height: 120px;
    }

    #detail-product .qty-ant .custom {
        width: 120px;
    }

    .info-footer .col--4 {
        width: calc(100% / 1);
        margin: 10px 0px;
    }

    .news-one .post-inner .post-img img {
        width: 100%;
    }

    .box-i-why {
        width: 100%;
    }

    .box-i-why:not(:last-child) {
        border-bottom: 1px solid #f00;
    }

    .desc-why h4 a {
        font-size: 18px;
    }
}

@media screen and (max-width:520px) {
    .box-slider-in {
        display: none;
    }

    .post-img.col-4 {
        width: 100%;
    }

    .post-img img {
        width: 100%;
    }

    .post-content.col-8 {
        width: 100%;
        margin-top: 10px;
    }

    .form-mail {
        flex-wrap: wrap;
    }

    #subscribe-form {
        width: 100%;
    }

    .btn-sup {
        width: calc(100% / 2 - 10px);
        margin-left: 0px;
        margin-top: 20px;
    }

    .btn-sup+.btn-sup {
        margin-left: 20px;
    }

    #detail-product .qty-ant .custom {
        width: 100%;
    }

    #detail-product .btn-mua {
        width: 100%;
    }

    .box-65 p:nth-child(1) {
        font-size: 51px;
    }

    .box-65 {
        width: 180px;
        height: 180px;
        padding: 15px 15px;
    }
}

@media screen and (max-width:480px) {
    .about h6 {
        font-size: 50px;
        line-height: unset;
    }


    .news-one .item65 {
        width: calc(100% / 1);
    }
}