body.is-scroll-locked {
    overflow-x: hidden;
}

.menu_top .menu-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
}

.menu_top .menu-content a {
    text-transform: none;
    font-weight: 400;
    margin: 0 0.9rem;
    line-height: 4rem;
}

.menu_top .menu-content li:last-child a {
    background-color: var(--orange);
    color: var(--white) !important;
    font-weight: 600;
    padding: 9px 15px;
    border-radius: 5px;
    margin-right: 0;
    overflow: hidden;
    white-space: nowrap;
}

.menu_top .menu-content li:last-child a::before {
    content: "\f0a9";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    font-size: 1.4rem;
    padding-right: 5px;
}

.menu_top .menu-content li:last-child:hover a {
    color: var(--color-highlight) !important;
}

.menu_top a {
    font-size: 15px;
    letter-spacing: 0.2px;
}

header {
    position: relative;
    background-color: white;
}

/* .home:not(.is-mobile) header {
    z-index: 999;
    position: absolute;
    left: 0;
    right: 0;
    background-color: transparent;
} */

header.is-scroll-fixed {
    background-color: white;
    margin: auto;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -moz-box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.09);
    -webkit-box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.09);
    box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.1);
    -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;
    transition: all 0.3s ease-in-out;
}

body:not(.home) header.fixed:not(.is-scroll-fixed) {
    position: relative;
}

header.fixed.is-scroll-fixed {
    animation: stuckMoveDown .6s;
}

@keyframes stuckMoveDown {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}

.setting-menu .menu-section > ul > li > a {
    color: var(--white);
}

body:not(.is-mobile) .setting-menu > .container > .row > div {
    display: flex;
    position: static;
    align-items: center;
}

.header-form_search {
    display: none;
    position: absolute;
    top: 3.5rem;
    width: max-content;
    z-index: 99999;
}

.header-form_search form {
    border-radius: 4px;
    padding: 6px;
    margin-top: 1rem;
}

.header-form_search input {
    background-color: transparent;
    border: none;
    color: white;
}

.header-form_search .bd_dashed {
    border: 1px dashed var(--gray-bold);
    border-radius: 4px;
}

.btn-action-header:hover .header-form_search {
    display: block;
}

.is-mobile .setting-menu .btn-action-header {
    border: 1px solid white;
    color: white;
}

.btn-menu-mobile i {
    color: var(--color-main);
    vertical-align: middle;
}

.btn-action-header i {
    font-weight: 500;
}

.slider_setting .swiper-wrapper > div:nth-child(3n) .swiper-slide--wrap {
    margin: 0 auto;
    text-align: center;
}

.slider_setting .swiper-wrapper > div:nth-child(3n-1) .swiper-slide--wrap {
    margin: 0 auto 0 0;
    text-align: left;
}

.slider_setting .swiper-wrapper > div:nth-child(3n-2) .swiper-slide--wrap {
    margin: 0 0 0 auto;
    text-align: right;
}

.slider_setting .swiper {
    padding-bottom: 0 !important;
}

.slider_setting .swiper-pagination-bullet {
    background-color: white;
}

.title_content {
    position: relative;
    padding: 3rem 0;
}

.sub-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--gray-bold);
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.right_description {
    position: relative;
    padding-top: 37px;
    padding-bottom: 20px;
}

.right_description::before {
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--color-highlight);
    top: 8px;
    left: 0;
    content: '';
}

.right_description p {
    font-size: 18px;
    color: #aaaaaa;
    line-height: 26px;
}

.title_icon_two {
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: -1;
}

.title_icon_two i {
    color: #F4FAF4;
    font-size: 111px;
}

.bd_radius {
    overflow: hidden;
    border-radius: 50%;
}

.inner-content {
}

.read_more_ct {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    display: block;
    color: var(--color-black);
}

.item_nimation-y:hover .inner-image img {
    opacity: 0.6;
}

.swiper_trademark .swiper-slide img {
    min-height: 8rem !important;
    object-fit: contain;
}

.bv_main_video video, .bv_main_video iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    border-radius: 10px;
}

.bv_title {
    display: inline-block;
    font-size: 42px;
    color: var(--color-main);
    line-height: 42px;
    margin-bottom: 2.5rem;
    position: relative;
    text-transform: uppercase;
    padding-bottom: 1.5rem;
}

.bv_title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 6rem;
    background-color: #111c2dd1;
    transition: width .4s linear;
}

.bv_title:hover::after {
    width: 100%;
}

.bv_description {
    color: var(--color-main);
    font-size: 16px;
    -webkit-line-clamp: 11 !important;
}

.swiper_trademark .swiper-slide {
    cursor: pointer;
}

.swiper_trademark {
    padding-bottom: 0 !important;
}

.feature-item {
    position: relative;
    border-radius: 10px;
    border: 2px solid #f4faf4;
    padding: 40px 25px;
    overflow: hidden;
    background-color: var(--white);
    cursor: pointer;
}

.feature-item > * {
    position: relative;
}

.feature-item .article-description {
    letter-spacing: 0;
    font-weight: 400;
}

.feature-item .overlay {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: var(--color-highlight);
    top: -100%;
    opacity: 0;
    left: 0;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
    /* z-index: -10; */
}

.feature-item:hover .overlay {
    opacity: 1;
    top: 0;
}

.sllide-title {
    font-size: 16px;
    font-weight: 600;
}

.feature-item:hover .sllide-title, .feature-item:hover .article-description {
    color: white;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.feature-item:hover .icon-contract {
    color: white;
    background: rgba(255, 255, 255, .1);
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.icon-contract {
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 35px;
    text-align: center;
    margin: 0px auto 20px;
    background: #f4faf4;
    border-radius: 50px;
    color: var(--color-highlight);
    font-weight: 500;
    display: inline-block;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.bg_thongke {
    background-image: url(https://cdn2074.cdn4s6.io.vn/media/background/hm-2-counter-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.py-custom {
    padding: 4rem 0;
}

.item_tk {
    margin: auto;
    width: max-content;
}

.icon_tk {
    font-size: 60px;
    line-height: 60px;
    color: var(--color-highlight);
}

.title_tk {
    font-size: 60px;
    line-height: 60px;
    color: #fff;
    font-weight: 700;
    margin-left: 15px;
    padding-top: 7px;
}

.description_tk {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
}

.bg_thongke .swiper {
    padding: 0 !important;
}

.gallery_item {
    position: relative;
}

.gallery_item .inner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 5px 1rem;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background-color: #43ac78d1;
}

.gallery_item .inner-content .article-title a {
    color: white !important;
}

.gallery_item .inner-content .article-title {
    font-size: 18px;
}

.w-custom {
    min-height: auto !important;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
}

.ct_icon2 {
    z-index: 1;
    top: 12%;
    right: 6%;
}

.ct_icon2 i {
    font-size: 60px;
}

.rate_custom {
    position: relative;
    margin-bottom: 10px;
}

.rate_custom ul li {
    color: #fd5e16;
}

.readmore a {
    font-size: 18px;
    font-weight: 600;
}

.join_title {
    color: #fff;
    margin: 0 auto;
    font-weight: 600;
    padding-bottom: 40px;
    font-size: 48px;
    max-width: 70%;
}

.join_link {
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--orange);
    padding: 12px 3.6rem;
    border-radius: 57px;
    text-align: center;
    background-color: var(--orange);
}

.py_custom {
    padding: 6rem 0;
}

.pt_custom {
    padding-top: 10rem;
}

.pb_custom {
    padding-bottom: 10rem;
}

.pb_5r {
    padding-bottom: 5rem;
}

.box_shadow {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, .1);
}

.bg-image {
    background-size: cover;
}

.our_blog .inner-content {
    position: relative;
    padding: 20px 30px 30px;
}

.tag_and_date {
    position: absolute;
    top: -24px;
    left: 30px;
}

.tag_and_date a {
    color: var(--color-highlight);
    font-size: 14px;
    line-height: 30px;
    border-radius: 30px;
    background: #f4faf4;
    padding: 8px 30px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.fs-12 {
    font-size: 12px !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.our_blog .article-title.sllide-title {
    line-height: 28px;
    margin-top: 18px;
    margin-bottom: 10px;
}

.radius-5 {
    overflow: hidden;
    border-radius: 5px;
}

.radius-10 {
    overflow: hidden;
    border-radius: 10px;
}

.category_custom:hover {
    color: white;
    background-color: var(--color-highlight);
    transition: all .1s linear;
}

.footer_social .social_item {
    width: 3.6rem;
    height: 3.6rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.footer_social .social_item a {
    margin: 0;
    line-height: 1;
}

.footer_social .social_item:hover {
    background-color: var(--color-highlight);
    border: 1px solid var(--color-highlight) !important;
    transition: all .3s linear;
}

.footer_social .social_item i {
    color: white;
    font-size: 16px;
}

.footer_title {
    position: relative;
    color: white;
    font-size: 1.7rem;
    padding-left: 2rem;
}

.footer_title span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--white);
}

.social_title {
    color: white;
    font-size: 20px;
}

.website_description {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: white;
    letter-spacing: 0.4px;
}

.website_description span {
    color: var(--color-highlight);
}

.border-top_cs {
    border-top: 1px solid var(--color-text);
}

.footer-menu-section ul {
    list-style-type: circle;
}

.footer-menu-section li {
    color: white;
}

.footer-menu-section li::marker {
    font-size: 2rem;
}

.footer-menu-section li:hover::marker {
    color: var(--color-highlight);
}

.ft_menu_item {
    font-size: 16px;
    font-weight: 400;
    vertical-align: baseline;
}

.tnp-email, .tnp-submit {
    height: 5rem;
    width: 100%;
    line-height: 5rem;
}

.tnp-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.fw-500 {
    font-weight: 500 !important;
}

.fs-22 {
    font-size: 22px !important;
}

.business_hours .ft_menu_item {
    font-weight: 500 !important;
    margin-bottom: 0 !important;
}

.business_hours .service24h {
    display: flex;
    flex-wrap: wrap;
}

.img-wh_custom {
    width: 50px;
    height: 50px;
}

.copyright {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
}

.footer-last .active {
    color: white !important;
}

.footer-last ul {
    text-align: right;
    margin: 0;
}

.footer-last li {
    border-right: 1px solid var(--color-text);
    margin: 0 !important;
    padding: 0 1rem;
    display: inline-block;
}

.footer-last li::marker {
    content: none;
}

.footer-last li:last-child {
    border: none;
    padding-right: 0;
}

.footer-last li > a {
    font-weight: 500;
    font-size: 14px;
    color: white;
}

.sc_top {
    position: absolute;
    top: -10px;
    right: -9px;
    font-size: 18px;
    color: var(--color-highlight);
}

.slide-product .swiper {
    padding-bottom: 5rem;
}

.breadcrum {
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin: 4rem 0;
}

.breadcrum h1 {
    color: white;
    margin: 0;
    font-size: 5rem;
}

[class*="line-clamp"] {
    display: -webkit-inline-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[class*="block-line-clamp"] {
    display: -webkit-box !important;
}

.line-clamp-1, .block-line-clamp-1 {
    -webkit-line-clamp: 1;
}

.line-clamp-2, .block-line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

.btn {
    border-radius: 6px;
}

.rounded-8 {
    border-radius: 8px !important;
}

.bg_image {
    background-image: url(https://cdn2074.cdn4s6.io.vn/media/background/page-header-image.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.search_blog {
    border: 1px solid var(--light);
    border-radius: 30px;
    overflow: hidden;
}

.search_blog input {
    border: none;
    outline: none;
    padding-left: 2rem;
    height: 44px;
}

.search_blog button {
    padding: 0 3rem;
    margin: 0.4rem;
    border-radius: 25px !important;
    overflow: hidden;
    line-height: 0;
}

.lb-content .article-title {
    font-size: 17px;
    line-height: 1.4;
}

.article-category a {
    color: var(--gray-bold);
}

.home-product .swiper {
    padding: 1rem;
}

.swiper .product-item {
    height: auto !important;
}

body:not(.home) .product-item.shadow {
    margin-bottom: 0rem !important;
    overflow: hidden;
}

body:not(.home) .product-item.shadow:hover .inner-content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.product-item.shadow:hover .hover-content {
    opacity: 1;
    transform: translateY(0);
}

.hover-content {
    position: absolute;
    bottom: 0;
    opacity: 0;
    width: 100%;
    background-color: white;
    transform: translateY(250px);
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: all 0.5s ease-in-out;
}

.hover-content .product_description {
    padding: 1rem 0;
}

.mb_2 {
    margin-bottom: 2rem;
}

.mb_8 {
    margin-bottom: 8rem;
}

.contact_icon {
    cursor: pointer;
    font-size: 6rem;
    color: var(--color-main);
}

.contact_icon:hover, .contact_title:hover {
    color: var(--color-highlight);
}

.contact_title {
    font-weight: bold;
    text-transform: capitalize;
    font-size: 17px;
    cursor: pointer;
    color: var(--color-highlight);
}

.contact_description {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-main);
}

.contact_description a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-bold);
    word-wrap: break-word;
}

.bd_top {
    border-top: 1px solid #e3e3e3;
}

.mh-52 {
    min-height: 52px;
}

.h12r {
    height: 12rem !important;
}

.img_custom {
    height: 20px;
    object-fit: contain;
}

.cs-poiter {
    cursor: pointer;
}

.btn-quantity i {
    font-size: 11px;
    font-weight: 600;
}

.home_bv .title_content, .mobie_bv .title_content .right_description {
    padding-bottom: 0;
}

.home_bv .article-item {
    margin-bottom: 0;
}

.entry-menu.dropdown .title-drop a {
    display: block;
    color: var(--white) !important;
}

.entry-menu.dropdown .title-drop a:hover {
    color: var(--color-highlight) !important;
}

.btn-black {
    border-color: var(--orange);
    background-color: var(--orange);
    color: var(--white);
    padding: 1.3rem 2.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.btn-black:hover {
    border-color: var(--color-main);
    background-color: var(--color-main);
    color: var(--white);
}

.border-box {
    padding: 16px 20px;
    border: 1px solid var(--gray);
    background-color: var(--white);
}

.product-detail-box {
    padding: 2rem;
}

.prd-thumbs {
    position: relative;
    padding: 0px 3rem;
}

.prd-thumbs div[class*="swiper-button-"] {
    background-color: var(--light);
    height: 5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.prd-thumbs div[class*="swiper-button-"] i {
    margin: 0;
}

.prd-thumbs .swiper-button-prev {
    left: 0;
}

.prd-thumbs .swiper-button-next {
    right: 0;
}

.product-content-detail {
    font-size: 1.6rem;
}

.product_detail .title_content::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    margin: auto;
    background-color: var(--gray);
}

.product_detail .title_content .title-section {
    background-color: var(--white);
    padding-right: 3rem;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    color: var(--color-main);
    font-weight: 600;
}

.prd-contact p {
    display: flex;
    align-items: center;
}

.prd-contact p i {
    background-color: var(--light);
    padding: 1rem;
    font-size: 1.6rem;
    border-radius: 4px;
    margin-right: 1rem;
}

.prd-contact p a {
    color: var(--color-main);
}

.prd-form-contact {
    background-color: var(--light);
    padding: 2.5rem 2rem;
}

.agree_policy {
    display: flex;
    align-items: center;
    padding-left: 5rem;
}

.agree_policy a {
    text-decoration: underline;
    color: var(--color-text);
    font-size: 1.6rem;
    white-space: nowrap;
}

.agree_policy .invalid-feedback {
    order: 3;
    padding-left: 2rem;
}

.company_name {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
}

.logo-section .logo_link {
    object-fit: contain;
    max-height: 35px;
}

.is-mobile .setting-menu .btn-menu-mobile i {
    color: var(--white);
}

.dsbv .row {
    margin: 0 -10px;
}

.dsbv .row [class*="col-"] {
    padding: 0 10px;
}

.dsbv .post-info {
    /* font-size: 14px; */
    /* letter-spacing: 0; */
}

.bg_attachment {
    position: relative;
    background-attachment: fixed;
    background-position: top center;
}

.bg_attachment:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background-color: #00222c52;
    width: 100%;
    height: 100%;
}

.bg_attachment > * {
    position: relative;
}

footer {
    position: relative;
}

.bg-footer div[class*="col-"] {
    position: static;
}

.bg-footer-ab {
    position: absolute;
    inset: 0;
    bottom: 50px;
    background-size: cover;
    background-position: top;
    filter: brightness(0.6);
}

.is-mobile .img_custom {
    height: 20px;
}
.search-section input.form-control {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

[nh-row="euw2bxq"] {
    min-height: 54vh;
}
.toCall .hvr-buzz-out {
    width: 4.2rem;
    height: 4.2rem;
    background-color: #1073c3;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-bottom: 10px;
}

.toCall .hvr-buzz-out img {
    width: 2rem;
    filter: brightness(0) invert(1);
}
.bg-main {
    background: var(--color-main);
}

.box-suggest .wrap-suggestion {
    width: 70rem;
}

.is-mobile .menu_top {
    display: none;
}

@media (min-width: 768px) {
    .product-detail-head > .container > .row > div[class*="col-"]:nth-child(1) {
        padding: 0;
        top: 12rem;
        height: max-content;
        position: sticky;
        z-index: 9;
    }
}

@media (min-width: 992px) {
    .item_nimation-y {
        transition: all .4s linear;
        padding: 2rem;
    }

    .item_nimation-y:hover {
        transform: translateY(-15px);
    }
}

@media (min-width: 1200px) {
    .dropdown_custome {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 !important;
        height: max(45vh, 400px);
        background-color: transparent !important;
        box-shadow: none !important;
        display: none;
    }
    
    .home:not(.is-mobile) header + div {
        /* padding-top: 55px; */
    }

    .dropdown_custome::before {
        content: "";
        display: block;
        position: absolute;
        top: -2rem;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .dropdown_custome .dropdown-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        height: 100vh;
        width: 100vw;
        transform: translateX(-50%);
    }

    .dropdown_custome li.has-child span {
        transition: all .5s ease-in-out;
    }

    .dropdown_custome li.has-child:hover > a > span {
        right: -10px;
    }

    .dropdown_custome.is-hover-open {
        display: block;
    }

    .dropdown_custome.is-force-closed {
        display: none !important;
    }

    .close-ul {
        color: var(--color-main);
        font-size: 2.4rem;
        cursor: pointer;
    }

    .close-ul:hover {
        color: var(--color-highlight);
    }

    .title-drop {
        position: relative;
        border-bottom: 1px solid var(--gray);
        padding: 1rem 0 3rem;
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }

    .menu-section .active {
        color: var(--color-highlight) !important;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (max-width: 1200px) {
    .title-drop {
        display: none !important;
    }

    .menu-section .entry-menu ul ul {
        padding-left: 1rem !important;
    }

    .is-mobile .setting-menu > .container > .row > div:last-child {
        display: flex;
        justify-content: flex-end;
    }

    .is-mobile .header-form_search {
        right: 0;
    }
}

@media (max-width: 850px) {
    .breadcrum {
        height: 150px;
    }

    .swiper-slide--tile {
        font-weight: 800;
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }

    .swiper-slide--description {
        display: none;
    }

    .swiper-slide--link {
        padding: 1rem 4.5rem;
        font-size: 1.3rem;
    }

    .swiper-slide--wrap {
        max-width: 65%;
        top: 62%;
    }

    .slider_setting .swiper-button-next, .slider_setting .swiper-button-prev, .slider_setting .swiper-pagination {
        display: none;
    }

    .sub-title {
        font-size: 17px;
    }

    .title-section {
        font-size: 28px;
        line-height: 36px;
    }

    .mobie_bv .bd_radius {
        border-radius: 10px;
    }

    .article-title {
        font-size: 20px;
    }

    .bv_main {
        padding: 0 3rem 2rem;
    }

    .bv_title {
        font-size: 26px;
        line-height: 36px;
    }

    .bv_main .article-title, .mobie_article-title {
        font-size: 22px;
    }

    .item_tk {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title_tk {
        margin-left: 0;
        padding-top: 0;
        font-size: 50px;
    }

    .join_title {
        padding: 1.5rem;
        padding-bottom: 25px;
        font-size: 26px;
        max-width: 100%;
        line-height: 36px;
    }

    .copyright {
        text-align: center;
        font-size: 14px;
    }

    .footer-last ul {
        text-align: center;
        padding: 0;
    }

    .footer-last li > a {
        font-weight: 400;
    }
}

@media (max-width: 992px) {
    .contact_form > .row > div:last-child {
        padding: 0;
        margin-top: 2rem;
    }

    #nh-admin-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-section .menu-link {
        color: var(--color-main);
    }

    .our_blog .inner-content {
        position: relative;
        padding: 10px 15px 15px;
    }

    .view_thongke .item_tk {
        margin-bottom: 7rem;
    }

    .view_thongke > div:nth-last-child(-n + 2) .item_tk {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .btn-action-header {
        width: 35px;
        height: 35px;
    }

    .btn-menu-mobile {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 3rem;
    }
}

@media (max-width: 444px) {
    .article-title {
        font-size: 18px;
    }

    .gallery_item .inner-content .article-title {
        font-size: 16px;
    }
}

/*CSS by quyettq*/
.home-product .product-item.swiper-slide {
    margin-bottom: 3rem;
}

.mb-20 {
    margin-bottom: 2rem;
}

.brand-cate .categories-section li a {
    padding-left: 3rem;
}

.brand-cate .categories-section li a::before {
    content: '';
    position: absolute;
    height: 0.5rem;
    width: 0.5rem;
    background-color: #636363;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.is-mobile .setting-menu .btn-action-header .items-number {
    background: var(--color-main);
    top: -6px;
}


@media (min-width: 1200px) {
    .setting-menu .menu-section > ul > li > a.active, .setting-menu .menu-section > ul > li > a:hover,
    .menu-section .menu-link, .menu-section ul li a:hover, .entry-menu.dropdown .title-drop a:hover {
        color: var(--white) !important;
    }
    
    .setting-menu .menu-section > ul > li > a {
        position: relative;
        display: inline-block;
    }
    
    .setting-menu .menu-section > ul > li > a:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        width: 0;
        background: var(--white);
        transition: all .3s ease;
    }
    
    .setting-menu .menu-section > ul > li:hover > a:before,
    .setting-menu .menu-section > ul > li > a.active:before {
        width: 100%;
    }
    
    .entire-action-header .btn-action-header {
        color: var(--white);
        border-color: var(--white);
    }
    .menu-section .entry-menu.dropdown ul {
        overflow: unset;
        background: var(--color-highlight);
    }
    
    .menu-section .entry-menu.dropdown {
        background: var(--color-highlight);
    }
}
/*End quyettq*/