﻿

.box-img {
    position: relative;
    width: 100%;
    padding-top: 100%
}

    .box-img img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: auto;
    }

.header-login {
    position: relative
}

    .header-login span {
        font-size: 14px;
    }

    .header-login ul {
        background: #fff none repeat scroll 0 0;
        -webkit-box-shadow: 0 0 20px 0.4px rgb(0 0 0 / 10%);
        box-shadow: 0 0 20px 0.4px rgb(0 0 0 / 10%);
        display: block;
        left: 0;
        padding: 10px;
        position: absolute;
        top: 100%;
        -webkit-transform: rotateX( 90deg );
        transform: rotateX( 90deg );
        -webkit-transform-origin: center top 0;
        -ms-transform-origin: center top 0;
        transform-origin: center top 0;
        -webkit-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
        visibility: hidden;
        z-index: 99;
    }

        .header-login ul li {
            display: block;
            position: relative;
            line-height: 1;
            padding: 5px 10px;
        }

            .header-login ul li a {
                font-size: 16px !important;
            }

    .header-login:hover > ul {
        -webkit-transform: rotateX( 0deg );
        transform: rotateX( 0deg );
        visibility: visible;
    }

    .header-login ul.sub-menu-style {
        width: 190px;
        text-align: left;
    }

/*#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(200, 200, 200, .3);
    z-index: 9999999999;
    opacity: 0;
    transition: .3s;
    display: none;
}

    #loader.loadpage {
        background-color: rgba(255, 255, 255, 1);
        opacity: 1;
        display: block;
    }

    #loader.loadpage-submit {
        background-color: rgba(255, 255, 255, 1);
        opacity: 1;
        display: block;
    }
*/
.lds-heart {
    display: inline-block;
    transform: rotate(45deg);
    transform-origin: 40px 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    height: 100px;
    width: 100px;
}

    .lds-heart div {
        top: 32px;
        left: 32px;
        position: absolute;
        width: 32px;
        height: 32px;
        background: #58aa40;
        animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    }

        .lds-heart div:after,
        .lds-heart div:before {
            content: " ";
            position: absolute;
            display: block;
            width: 32px;
            height: 32px;
            background: #58aa40;
        }

        .lds-heart div:before {
            left: -24px;
            border-radius: 50% 0 0 50%;
        }

        .lds-heart div:after {
            top: -24px;
            border-radius: 50% 50% 0 0;
        }

@keyframes lds-heart {
    0% {
        transform: scale(0.95);
    }

    5% {
        transform: scale(1.1);
    }

    39% {
        transform: scale(0.85);
    }

    45% {
        transform: scale(1);
    }

    60% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(0.9);
    }
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lds-dual-ring {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    display: flex;
    align-content: center;
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 8px;
        border-radius: 50%;
        border: 6px solid #fff;
        border-color: #58aa40 transparent #fff transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }


.flat {
    border-radius: 0;
}
.flat-left {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.flat-right {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/*#preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: flex;
}

    #preloader:before,
    #preloader:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        z-index: -1;
        background-color: #fff;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }

    #preloader:after {
        left: auto;
        right: 0;
    }

    #preloader .loader_line {
        margin: auto;
        width: 1px;
        height: 250px;
        position: relative;
        overflow: hidden;
        -webkit-transition: all 0.8s ease 0s;
        -o-transition: all 0.8s ease 0s;
        transition: all 0.8s ease 0s;
    }

.loader_line:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
    -o-animation: lineheight 1000ms ease-in-out 0s forwards;
    animation: lineheight 1000ms ease-in-out 0s forwards;
}

.loader_line:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #777;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1200ms linear 0s infinite;
    -o-animation: lineround 1200ms linear 0s infinite;
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms;
}

@keyframes lineheight {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

@keyframes lineround {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
}

hiding all
.preloaded .loader_line:after {
    opacity: 0;
}

.preloaded .loader_line {
    opacity: 0;
    height: 100% !important;
}

.preloaded:before,
.preloaded:after {
    -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    animation: preloadedzero 300ms ease-in-out 500ms forwards;
}

@keyframes preloadedzero {
    0% {
        width: 50%;
    }

    100% {
        width: 0%;
    }
}*/
/*

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #BA55D3;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #FF00FF;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}*/



#container {
    width: 70px;
    height: 70px;
}

@keyframes animation {
    0% {
        stroke-dasharray: 1 98;
        stroke-dashoffset: -105;
    }

    50% {
        stroke-dasharray: 80 10;
        stroke-dashoffset: -160;
    }

    100% {
        stroke-dasharray: 1 98;
        stroke-dashoffset: -300;
    }
}

#spinner {
    transform-origin: center;
    animation-name: animation;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier;
    animation-iteration-count: infinite;
}



/*------- new ------*/



:root {
    --primary-color: #FF6B12;
}

:root {
    --text-color: #192653;
}


:root {
    --header-height: 80px;
}

.header .container {
    background-color: transparent;
}

    .header .container.row {
        min-height: 60px;
        width: 1440px;
        background: linear-gradient(to right, #004b76, #2e6ea2, #22397a, #008ddc);
    }
/*.container-fluid {
    max-width: 1280px !important;
}*/
.banner .container .row,
.gioithieu-sp .container .row,
.cam-ket .container .row {

}

/*.mau-sp .container .row {
    max-width: 1330px;
}*/

.mau-sp  {
    /*background-image: url('../client/images/image1/rectangle790.jpg');*/
    background-size: cover;
    min-height: 550px;
}

.header-row .col-lg-6 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar .nav-item a {
    font-size: 0.9rem;
}

.header .col-lg-3 img {
    margin-right: 65px;
}

.cart-wrap span i::after {
    content: "";
    position: absolute;
    top: -9px;
    right: -8px;
    width: 16px;
    height: 16px;
    color: black;
    font-size: 0.6rem;
    padding: 3px 4px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.cart-wrap span {
    color: black;
}

    .cart-wrap span i {
        color: var(--primary-color);
        margin-right: 6px;
    }

.gioithieu-sp .row-introduce .title,
.map .row-map h3 {
    color: var(--primary-color);
}

.gioithieu-sp .row-introduce .subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color)
}

.gioithieu-sp .wrap-link {
    display: flex;
    justify-content: center;
}

    .gioithieu-sp .wrap-link a{

    }

    .watch-more,
    .gioithieu-sp .wrap-link button {
        border: none;
        background: white;
        border-top: 1px solid var(--primary-color);
        border-bottom: 1px solid var(--primary-color);
        padding: 6px 18px;
        text-transform: uppercase;
    }

        .watch-more:hover,
        .gioithieu-sp .wrap-link button:hover {
            transform: translateY(-2px)
        }


        /*.mau-sp .row h2,
.inan-thietke .row h2,
.tintuc .row h2,
.brand-area .row h2,
.lienhe-dathang .row h2 {
    color: var(--text-color);
}

    .inan-thietke .row h2 span,
    .tintuc .row h2 span,
    .brand-area .row h2 span,
    .lienhe-dathang .row h2 span{
        color: black !important;
    }*/
        .mau-sp .row h2 span {
            color: black;
        }

.brand-area {
    background-color: #F7F7F7;
}

.gioithieu-sp .row-introduce h2 span {
    color: var(--text-color) !important;
}

.gioithieu-sp .row-introduce .title span {
    font-weight: 600;
    margin: 0;
    color: var(--text-color) !important;
    font-size: 2.2rem;
    text-transform: capitalize;
}

.gioithieu-sp .title-rotate-wrap span {
    display: inline-block;
    animation: flipping 4s infinite;
}

.gioithieu-sp .title-rotate-wrap span:nth-child(1) {
    animation-delay: 3s;
}

.gioithieu-sp .title-rotate-wrap span:nth-child(2) {
    animation-delay: 1s;
}

.gioithieu-sp .title-rotate-wrap span:nth-child(3) {
    animation-delay: 0.6s;
}

.gioithieu-sp .title-rotate-wrap span:nth-child(4) {
    animation-delay: 2s;
}

.gioithieu-sp .title-rotate-wrap span:nth-child(5) {
    animation-delay: 2.5s;
}

.mau-sp .row h3,
.dat-hang .row h3,
.cam-ket .row h3 {
    color: #1b55a6;
}

.row-feature .list-feature li {
    margin-bottom: 30px;
}

.feature-content {
    font-size: 1rem;
}

    .feature-content h4 {
        color: var(--text-color);
        font-size: 1.2rem;
    }

.mau-sp .col-lg-3 {
    width: 300px;
    padding: 0;
    margin-top: 30px;
}

.dat-hang {
    background-image: url('../client/images/image1/rectangle 813.jpg');
    background-size: cover;
    min-height: 280px;
    /* max-width: 1440px;*/
    position: relative;
    z-index: 1;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

    .dat-hang .container .row,
    .gioithieu-sp .container .row,
    .mau-sp .container .row,
    .cam-ket .container .row{
        max-width: 1440px;
        margin: auto;
    }

.gioithieu-row .image-gt i {
    color: white;
    font-size: 3rem;
    z-index: 9;
    transition: all 0.3s ease;
}

.gioithieu-row .image-gt a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 25%);
    transition: background 0.5s ease;
}

.gioithieu-row .image-gt a:hover i {
    scale: 1.05;
}

.gioithieu-row .image-gt a:hover::after {
    background: rgb(0 0 0 / 45%) !important;
}
/*.cam-ket .container-fluid .row-image{
    margin: 0;
}*/
.feature-content p {
    width: 100%;
}

.dat-hang .row .col-question,
.dat-hang .row .col-contact {
    height: 150px;
    width: 330px;
    background-color: white;
    border-radius: 5px;
    padding: 10px 10px;
    padding: 0px 15px;
    margin-top: 10px;
}

.dat-hang .row .col-contact-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dat-hang .row .col-question {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: white;
}

    .dat-hang .row .col-question i {
        font-size: 3rem;
        margin-right: 10px;
    }

.dat-hang .row button:hover {
    opacity: 0.7;
}

.dat-hang .row .col-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #6E5300;
    color: white;
}


.dat-hang .col-question .send-question-btn,
.dat-hang .col-contact .messenger-btn,
.dat-hang .col-contact .zalo-btn {
    border-radius: 8px;
    border: none;
    padding: 5px 10px;
    color: var(--primary-color);
}

.dat-hang .col-contact .messenger-btn {
    background-color: #15A79D;
}

.dat-hang .col-contact .zalo-btn {
    padding: 5px 32px;
    background-color: #0079DB;
}

.dat-hang .col-contact button {
    color: white !important;
}
 
    .dat-hang .row .button {
    margin-top: 20px;
}

/*.dat-hang .row .col-lg-4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: -9px;
    width: 232px;
    height: 20px;
    background-color: #15a79d;
    border-radius: 3px;
    z-index: -1;
}*/

.dat-hang .row .col-lg-4 h3 {
    font-size: 1.1rem;
    margin-top: 60px;
}

.dat-hang .row .col-contact-text h2 {
    font-size: 1.8rem;
    color: #22397A;
    font-weight: 600;
}

.cam-ket .row-camket h3::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 9%;
    width: 300px;
    height: 1px;
    background-color: #3333335e;
}

/*.gioithieu-sp .row-introduce h2::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 31%;
    width: 500px;
    height: 1px;
    background-color: #3333335e;
}*/

.gioi h3::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 39%;
    width: 300px;
    height: 1px;
    background-color: #3333335e;
}

.separate::after {
    content: "";
    position: absolute;
    bottom: var(--bottom);
    top: var(--top);
    right: var(--right);
    left: var(--left);
    width: var(--width);
    height: 2px;
    background-color: var(--primary-color);
}

.company-separate {
    --top: 45px;
    --left: 0px;
    --width: 250px;
}

.nsx-separate {
    --top: 45px;
    --left: 0px;
    --width: 250px;
}

.footer-link-separate {
    --top: 45px;
    --left: 0px;
    --width: 150px;
}

.footer-connect-separate {
    --top: 45px;
    --left: 0px;
    --width: 150px;
}

.cam-ket .row .col-lg-3 {
    text-align: center;
    font-size: 1rem;
    max-width: 320px;
}

.cam-ket .col-lg-3 h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.map  {
    min-height: 550px;
   /* max-width: 1440px;*/
    background-color: #00bcd433;
}

.lien-he {
    background-image: url('../client/images/image1/khogiay.jpg');
    background-size: cover;
    min-height: 450px;
    /*max-width: 1440px;*/
    position: relative;
}

    .lien-he .container::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .lien-he .container .content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: white;
        font-size: 1.3rem;
    }

.footer .container {
    background-image: linear-gradient(to right, #001729, #004d8c);
    min-height: 437px;
    max-width: 1440px;
}

.footer .col-sm-12 {
    color: white;
    padding-left: 50px;
}

    .footer .col-sm-12 h3 {
        margin-bottom: 40px;
        font-size: 1.4rem;
    }

.copy-right-row {
    height: 40px;
    width: 100%;
    background-color: #002543;
    bottom: 0px;
    color: white;
}

#button-toggler {
    /* box-shadow: 0 !important; */
    background-color: #001729;
}

.header-row .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    padding: 0;
    border-radius: 3px;
    border-top: 2px solid var(--primary-color);
}

    .dropdown-menu li:hover a {
        color: var(--primary-color) !important;
    }

.button-link {
    max-width: 140px;
}

i {
    cursor: pointer;
}

.header-row img {
    cursor: pointer;
    position: relative;
}

.nav-width {
    width: 900px !important
}


.bando iframe {
    width: 100%;
    height: 500px;
}

.lien-he p{
    color: white;
    font-size: 1rem;
}

.footer-widget .title h3:before{
    width: 0px;

}

.banner .carousel {
    max-height: 550px;
}

.offcanvas-body .drop-menu {
    display: none;
    position: absolute;
    z-index: 9;
    background-color: white;
    min-height: 110px;
    min-width: 175px;
    left: 0px;
    border-radius: 3px;
    padding: 0;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
}

    .offcanvas-body .drop-menu .warp-child_c3{
        display: none;
    }

    .offcanvas-body .drop-menu li {
        padding: 8px 12px;
    }

    .offcanvas-body .drop-menu li:hover {
        background-color: #DAF0FC;
        color: var(--primary-color)
    }

        .offcanvas-body .drop-menu li:hover {
            background-color: #DAF0FC;
            color: var(--primary-color)
        }

.offcanvas-body .nav-item:hover .drop-menu {
    display: block
}

/*.offcanvas-body .drop-menu .drop-menu-2{
    position: absolute;
}*/

.offcanvas-body .drop-menu .drop-menu-2:hover .warp-child_c3 {
    display: block;
    position: absolute;
    background-color: white;
    top: -1px;
    left: 100%;
    padding: 0;
    border-top: 2px solid var(--primary-color);
    border-radius: 3px;
    color: black;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
}

.button:hover{
    opacity: 0.7;
}

.banner {
    height: calc(100vw * 600 / 1440);
    /*margin-top: 45px;*/
}

.banner .banner-btn{
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
}

.navbar-pc .warp-menu_c1 .nav-link{
    padding: 10px 20px;
}

.navbar-pc .warp-menu_c2 a {
   text-decoration: none;
}

.header-large-device .submenu{
    /*border-top: 2px solid var(--primary-color);*/
    padding: 0;
}

    .header-large-device .submenu li:hover {
        color: var(--primary-color) !important;
        background-color: #DAF0FC !important;
    }

    .header-large-device .submenu li:hover a {
        color: var(--primary-color) !important;
       
    }

.cam-ket .camket-title {
    width: 500px;
    height: 340px;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(../client/images/image1/nhamay1.jpg);
    position: absolute;
    background-size: cover;
    top: 21%;
    right: 45%;
}


    .cam-ket .camket-title::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgb(0 0 0 / 80%);
    
    }

    .cam-ket .camket-title h3 {
        margin-right: 30px;
        color: white;
        font-weight: 600;
        z-index: 3;
        font-size: 1.2rem;
    }

    .cam-ket .col-lg-6 {
        width: 550px;
        height: 400px;
        overflow: hidden;
    }

.cam-ket .camket-img {
   z-index: 9;
}

.cam-ket .camket-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-nb .gallery-thumbs .swiper-slide{
    opacity: 1 !important;
}


@media (max-width: 768px) {
    .offcanvas-body .navbar-nav {
        justify-content: flex-end;
    }

    .header-row .container img {
        width: 50px !important;
        height: 50px !important;
    }

    .header-row .logo-img {
        margin-left: 30px;
    }

    .header .offcanvas {
        width: 70% !important;
    }

    .gioithieu-sp .col-content .button {
        margin-bottom: 14px;
    }


    .dat-hang .row .col-lg-4 {
        margin-bottom: 26px;
    }

        .dat-hang .row .col-lg-4:last-child {
            margin-bottom: 10px;
        }

    .dat-hang .row {
        margin-top: 16px !important;
    }


    .cam-ket .row {
        display: flex;
        justify-content: center;
    }

    .cam-ket .row-camket h3::after {
        right: 1% !important;
    }

    .copy-right-row {
        display: none;
    }

    .company-separate {
        --top: 67px !important;
    }

    .cart-wrap {
        color: black !important;
    }

    .footer .container .row {
        padding: 20px 0 !important;
    }

    .map .row-map h3::after {
        right: 11%;
    }

    .gioithieu-sp .row-introduce h2::after {
        right: 3%;
        width: 360px;
    }

    .banner .carousel {
        max-height: 158px;
    }

    .offcanvas-body {
        padding: 0;
    }

        .offcanvas-body .nav-item .nav-link {
            font-size: 1rem !important;
            font-weight: 600;
            padding: 10px 14px;
            border-bottom: 1px solid #3333337a;
        }

    .offcanvas-body .cart-wrap {
        padding-left: 10px
    }


    .cart-content .col-6 {
        padding: 0;
        width: 126px;
    }

    /*.lienhe-tuvan {
        height: 790px;
    }*/

    .more-btn{
        margin-top: 0 !important;
    }

    .blog-wrap-cotainer .col-12{
        padding-bottom: 16px;
    }

    #addtocart{
        margin-top: 40px !important;
    }
   
}

.header-small-device .cart-wrap span,
.header-small-device .cart-wrap i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.header-small-device .cart-search-wrap {
    display: flex;
    justify-content: space-around;
   /* width: 120px;*/
    height: 50px;
    align-items: center;
    left: 0;
    bottom: -2px;
}

    .header-small-device .cart-search-wrap .main-menu-icon a {
        text-decoration: none;
        font-size: 0.8rem;
        color: var(--text-color);
        font-weight: 500;
    }


    @media (min-width: 769px) and (max-width: 991px) {
        .cam-ket .row {
        display: flex;
        justify-content: center;
    }

    .dat-hang .col-lg-4 {
        margin-bottom: 26px;
    }

    .dat-hang .row .button {
        margin: 0;
    }

    .gioithieu-sp .row .button {
        margin-bottom: 20px;
    }

    .cart-wrap {
        color: black !important;
    }

    .map .row-map h3::after {
        right: 31%;
    }

    .banner .carousel {
        max-height: 329px;
    }

    .header .logo-img {
        padding: 10px;
    }

    .header .offcanvas {
        width: 70% !important;
    }

    .gioithieu-sp .row-introduce h2::after {
        right: 20%;
    }

    .offcanvas-body {
        padding: 0;
    }

        .offcanvas-body .nav-item .nav-link {
            font-size: 1.2rem !important;
            font-weight: 600;
            padding: 10px 14px;
            border-bottom: 1px solid #3333337a;
        }

        .offcanvas-body .cart-wrap {
            padding-left: 10px;
            font-size: 1rem;
        }

    .cart-wrap span,
    .cart-wrap i{
        font-size: 1.4rem;
    }

        .tab-pane .row .mb-0.mb-sm-5{
            height: 300px !important;
        }
}

@media (min-width: 992px) {
    .offcanvas-body .navbar-nav {
        margin: 0 !important;
    }

    .offcanvas-body {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .header-row .logo-img {
        margin-left: 80px;
    }

    .navbar-nav .nav-item .nav-link {
        color: white !important;
    }

    .gioithieu-sp .row-introduce h3,
    .mau-sp .row h3 {
        width: 50%;
    }

    .gioithieu-sp .row-introduce .description,
    .mau-sp .row p {
        width: 75%;
    }

    .header .container .row {
        padding: 4px 0px;
    }

    .col-content {
        padding-right: 46px;
    }

    .row-feature {
        margin-bottom: 20px;
    }

    .cam-ket .row img {
       /* height: 442px;
        width: 1124px;*/
    }

    .pro-count_cart.moblie {
        position: absolute;
        right: -3px !important;
        top: -6px !important;
        z-index: 1;
        font-size: 0.7rem !important;
    }

    .tintuc {
        background-color: #FFF3E9;
    }

    .tintuc .row-post {
        flex-wrap: nowrap;
    }

        .tintuc .row-post .col-left{
            margin-right: 5px;
        }

    .tintuc .row-tin-tuc .col-lg-6 {
        position: relative;
    }

    .tintuc .row-post .post-title-wrap {
        padding-bottom: 40px !important;
    }

    .lienhe-dathang .swiper-slide {
        margin-right: 3px !important;
    }

    .lienhe-tuvan .col-lg-6.d-flex {
        padding-right: 30px !important;
    }

    .lienhe-tuvan .form-group label {
        margin: auto;
    }

    .lienhe-tuvan .contact-form .form-group:nth-child(1) input,
    .lienhe-tuvan .contact-form .form-group:nth-child(2) input{
        width: 60% !important;
    }

    /*.footer-area{
        padding-top: 100px;
    }*/

    .danhmuc-slide{
        margin-bottom: 0 !important
    }

    .danhmuc-slide .swiper-pagination-spslide{
        margin-bottom: 0 !important;
    }

    .danhmuc-sp .col-lg-4:first-child {
        padding: 26px 0 26px 26px;
    }

    .danhmuc-sp .col-lg-4:last-child {
        padding: 26px 26px 26px 0;
    }

    .danhmuc-sp .container,
    .products-grid .container {
        padding: 0 20px;
       /* width: 75% !important;*/
    }


    .gioithieu-sp {
        padding-top: 3rem !important;
    }

    .product-wrap.rounded-0 {
        margin-bottom: 60px !important;
    }

}

.gioithieu-sp .row-introduce .description p{
    font-size: 1.1rem;
    text-align: justify;
}

.tintuc .post-title-wrap {
    background-color: white;
    padding: 20px 10px 24px 10px;
    position: relative;
}

.tintuc .swiper-slide p,
.tintuc .swiper-slide h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    
}

.tintuc .swiper-slide h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

    .tintuc .swiper-slide h3::after {
        content: "";
        height: 1px;
        width: 50px;
        background-color: #909090;
        position: absolute;
        right: 45%;
        bottom: 60%;
    }

.tintuc .row-title p {
    color: var(--primary-color);
}

.primary-button {
    min-width: 125px;
    height: 35px;
    background: linear-gradient(to right, #FF6B12 0%, #FF9900 100%);
    border: none;
    border-radius: 20px;
    color: white;
    padding: 0;
    font-size: 0.9rem;
    position: relative;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

    .primary-button i {
        position: absolute;
        padding: 3px 4px;
        border: 3px solid #FFF;
        border-radius: 50%;
        margin-left: 7px;
        right: 5px;
        top: 5px;
    }

    .primary-button span {
        margin-right: 24px;
    }

    .primary-button:hover,
     .call-number:hover {
        background: #1b2652;
        color: var(--primary-color);
    }

         .call-number:hover i {
            background-color: var(--primary-color);
        }

        .primary-button:hover i {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

    .order-btn {
        background-color: var(--primary-color);
        padding: 7px 10px;
        border-radius: 27px;
        border: 3px solid white;
        box-shadow: 0px 0px 7px 0px rgb(0 0 0 / 16%);
    }

    
  
    .order-btn i {
        padding: 10px;
        background-color: #FBC779;
        border-radius: 50%;
    }

.header-search-input .icon-button{
    right: 10px;
}

.header-search-input .icon-button i {
    color: var(--primary-color) !important;
}

.tintuc .row-tin-tuc .content-wrap {
    width: 100% !important;
    height: 100% !important;
    display: flex;
    flex-direction: row;
}

.tintuc .container .content-wrap .div-img,
.tintuc .container .row-post .div-img {
    flex: 2;
    overflow: hidden;
}

    .tintuc .container .content-wrap .wrap-text {
        flex: 1;
    }

    .tintuc .container .content-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.tintuc .content-wrap .wrap-text {
    /*display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;*/
    padding: 0 10px;
    background-color: #2E6EA2;
    color: white;
}

    .tintuc .content-wrap .wrap-text p{
        color: white;
        margin-bottom: 30px;
    }

    .tintuc .content-wrap .wrap-text h3 {
        font-size: 1rem;
        margin: 30px 0 20px 0;
        font-weight: 600;
    }

.tintuc .row-tin-tuc a {
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    margin-left: 8px;
}
   
    .tintuc .row-tin-tuc i {
        margin-right: 8px;
    }

.tintuc .row-tin-tuc .wrap-text a {
    color: white;
    
}

.tintuc .row-post .col-lg-6 {
    overflow: hidden;
    padding: 0;
    border: 1px solid #33333330;
    display: flex;
    flex-direction: column;
}

    .tintuc .row-post .col-lg-6 img {
        object-fit: cover;
        width: 100%;
        /*max-height: 209px;*/
       
    }

    .tintuc .row-post .col-lg-6 h3 {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 20px 15px 6px 15px;
        text-transform: math-auto;
    }

.tintuc .row-post .post-title-wrap {
    padding-bottom: 12px;
    flex: 1;
}

.row-title {
  /*  border-top: 1px solid #333;
    border-bottom: 1px solid #333;*/
  /*  width: 350px;
    margin: auto;*/
    /*margin-bottom: 20px;*/
}

    .row-title .title {
        background-color: var(--text-color);
        padding: 12px 24px;
        border-radius: 30px;
        font-size: 1.1rem;
        color: white;
       /* margin-bottom: 20px;*/
        text-transform: uppercase;
    }
    .row-title .subtitle {
        font-size: 1rem;
        
    }

.top-products .row-title .title {
    background-color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.1rem;
    color: white;
    /*margin-bottom: 20px;*/
    text-transform: uppercase;
}

.products-grid .list-products {
}

.products-grid .products {
    display: flex;
    flex-direction: column;
    padding: 0 5px;
}

    .products-slide .single-brand a,
    .products-slide1 .single-brand a,
    .products-slide2 .single-brand a,
    .products-grid .products a {
        display: inline-block;
        padding: 0;
        border: none;
        margin: 0;
        line-height: 0;
        text-decoration: none;
        color: black;
        width: 100%;
    }

        .products-grid .products a:last-child{
            /*margin-top: 14px;*/
        }

    .products-grid .products .img-sp{
        display: block;
        width: 100%;
        height: auto;
		aspect-ratio: 1/1;
    }
.products-slide .single-brand h2,
.products-slide1 .single-brand h2,
.products-slide2 .single-brand h2,
.products-grid .products h2 {
    font-size: 1rem;
   /* background-color: #F7F7F7;*/
    padding: 14px 4px;
    border-radius: 30px;
    text-align: center;
    font-weight: 700;
    width: 80%;
    align-self: center;
    margin-top: 6px;
    margin: auto;
    color: #1b2652;
}

.danhmuc-sp {
    background: #FFEBE4;
}

    .danhmuc-sp .collection-image-wrap {
        transition: transform 0.5s ease;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        scale: 0.9;
    }

        .danhmuc-sp .collection-image-wrap::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgb(0 0 0 / 35%);
            transition: background 0.5s ease;
        }


        .danhmuc-sp .collection-image-wrap:hover .collection-image img {
            transform: scale(1.05);
        }
    .brand-area .row-title h2,
    .danhmuc-sp .row-title h2,
    .tintuc .row-title h2 {
        background-color: transparent;
        color: var(--text-color);
        font-size: 1.6rem;
        font-weight: 600;
    }

.brand-area .row-title h2 {
    color: var(--primary-color);
   /* margin-bottom: 24px !important;*/
    font-size: 2.4rem;
}

        .danhmuc-sp .qr-code-wrap {
            background: #d9b9b945;
            padding: 34px;
            border-radius: 14px;
        }

    .danhmuc-sp .top-content img {
        width: 30px;
        height: 30px;
        animation: moveDown 1s ease infinite forwards;
    }

@keyframes moveDown {
    0% {
        transform: translateY(2px)
    }

    25% {
        transform: translateY(4px)
    }

    50% {
        transform: translateY(8px)
    }

    75% {
        transform: translateY(12px)
    }

    100% {
        transform: translateY(5px)
    }
}

@-webkit-keyframes price-tag {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-6deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(6deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-6deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(6deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes flipping{
    0%, 80% {
        transform: rotateY(360deg);
    }
}

.danhmuc-sp .zalo-call-btn span {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 3px;
    font-size: 1.6rem;
    display: inline-block;
    -webkit-animation: price-tag 1s infinite ease-in-out;
    animation: price-tag 1s infinite ease-in-out;
}

.danhmuc-sp .collection-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9;
    opacity: 1;
    transition: all 0.5s ease; 
}


    .danhmuc-sp .collection-name button {
        border: 1px solid #FDBC5A;
        background-color: transparent;
        color: #FDBC5A;
        border-radius: 5px;
        padding: 3px 10px;
    }

        .danhmuc-sp .collection-name button:hover{
            background-color: var(--primary-color);
            color: white;
        }

        .danhmuc-sp .collection-image img {
            transition: all 0.5s ease;
        }

@media only screen and (max-width : 768px) {
    .cart-content .col-6 {
        width: 118px !important;
        margin-right: 16px;
        }

    .tintuc .content-wrap .wrap-text {
        padding: 0px 7px 12px 9px !important;
    }

        .tintuc .content-wrap .wrap-text p {
            margin-bottom: 15px !important;
        }

        .tintuc .content-wrap .wrap-text a {
            margin-right: 0;
        }

    .cam-ket .camket-title {
        top: 3% !important;
    }

    .warp-title_top .product-price-cart {
        display: flex;
        flex-direction: column;
    }

    .gioithieu-sp .swiper-slide .video-slide i {
        right: 42% !important;
        top: 39% !important;
    }

    .gioithieu-sp .row .col-lg-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .footer-area .design-company {
        align-self: center;
    }

    .lienhe-tuvan .form-group{
        flex-direction: column;
    }

}

@media only screen and (max-width : 992px) {
    .primary-button {
        margin-bottom: 10px !important;
    }

    .cart-main-area .container .col2 {
        margin-top: 30px;
    }

    .chon-chung-toi .col-lg-5 {
        padding: 20px;
    }

    .chon-chung-toi .list-feature li {
        margin-bottom: 10px;
    }
}

.chon-chung-toi,
.chon-chung-toi .row {
    min-height: 450px;
}

    .chon-chung-toi .col-lg-5 {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 35px !important;
        text-align: end;
    }
        .chon-chung-toi .col-lg-5::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../client/images/image1/group 171.jpg');
            background-size: 90%;
            z-index: -1;
        }

    .chon-chung-toi .col-lg-7 {
        background: #F39A2B;
        padding: 30px;
        display: flex;
        align-items: center;
    }

    .chon-chung-toi .text-wrap h2,
    .chon-chung-toi .text-wrap span{
        color: white;
    }

    .chon-chung-toi .title {
        font-size: 2rem;
        font-weight: 600;
    }

    .chon-chung-toi .subtitle {
        color: var(--primary-color) !important;
        font-size: 1.4rem;
        font-weight: 500;
    }

    .chon-chung-toi .description p {
        color: var(--primary-color) !important;
        font-size: 1rem;
    }

    .chon-chung-toi .list-feature li {
        margin-bottom: 28px;
    }

    .chon-chung-toi .list-feature li h4 {
        font-size: 1.2rem;
    }

    .chon-chung-toi .list-feature li:last-child {
        margin: 0;
    }

    .chon-chung-toi .list-feature span {
        background: white;
        padding: 3px 22px;
        border-radius: 50%;
        font-size: 2.5rem;
        color: #24508C;
    }

        .chon-chung-toi .list-feature span:last-child {
            margin: 0;
        }

.lienhe-tuvan {
    background-color: #FFFAF5;
}

.lienhe-tuvan .col-lg-6 img{
    object-fit: contain;
}

    .lienhe-tuvan .title::after {
        content: '';
        position: absolute;
        height: 4px;
        width: 75px;
        bottom: 5px;
        left: 0;
        background: white;
        border-radius: 0 0 5px 5px;
    }



    .lienhe-tuvan .wrap-contact {
        padding: 40px 50px;
        background: white;
        box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 5%);
        border-radius: 16px;
    }


        .lienhe-tuvan .wrap-contact h2 {
            text-align: center;
            color: var(--primary-color);
            font-size: 1.7rem;
        }

    /*.lienhe-tuvan .form-group{
        display: flex;
    }*/

    .lienhe-tuvan .form-group span{
        color: red;
    }

    .lienhe-tuvan .form-group .row {
        display: flex;
        align-items: center;
    }

        .lienhe-tuvan .form-group label {
           
            color: var(--text-color);
            font-weight: bold;
            font-size: 0.9rem;
            text-wrap: nowrap;
            display: block;
        }

        .lienhe-tuvan .form-group input {
            
            border-radius: 16px;
            border-color: var(--text-color);

        }

        .lienhe-tuvan .form-group input::placeholder {
           font-size: 0.9rem;
        }

    .lienhe-tuvan .contact-form {
        border-radius: 16px;
    }

    .gioithieu-sp .col-lg-9 .div-image img {
        width: 80px;
        margin-right: 30px;
    }

.gioithieu-sp .col-lg-9 .col-lg-4 {
    margin-bottom: 20px;
}

.gioithieu-sp .col-lg-9 .div-image img:last-child {
    width: 65px !important;
}

    .gioithieu-sp .col-lg-3 .div-image img {
        margin-right: 16px;
    }

.gioithieu-sp .wrap-text span{
    display: block;
}

.gioithieu-sp .wrap-text span:nth-of-type(2) {
    color: #008024;
    font-weight: 700;
}

@media only screen and (min-width : 834px) {
    .swiper-container {
    /* margin-top: var(--header-height);*/
}
}


@media only screen and (min-width : 768px){
    /*.product-details-area .col-lg-5.col-md-6 {
        padding: 0 !important;
        margin-left: 20px !important;
    }

    .product-details-area .col-lg-7.col-md-6 {
        padding: 0 !important;
        margin-left: -60px !important;
    }*/

    .row-detail-product {
        height: 319px;
    }
}


@media only screen and (max-width : 600px) {
    .inan-thietke {
        margin: 0 !important;
    }

        .inan-thietke .container .row-title {
            width: 100% !important;
        }

    .row-title h2 {
        font-size: 1.2rem;
    }

    .dat-hang .row .col-contact-text h2 {
        text-align: center;
    }

    .dat-hang .container {
        padding: 20px 0;
    }

    .tintuc .row-tin-tuc .content-wrap {
        flex-direction: column !important;
    }

    .footer-area .row .col-lg-3:nth-child(3) {
        display: none !important;
    }

}


@media only screen and (max-width : 480px){
    .lienhe-dathang .contact-infor {
        margin-left: 24px;
    }

    .tintuc .row-title,
    .lienhe-dathang .row-title {
        /*width: 204px !important;*/
    }

    .gioithieu-sp .gioithieu-row,
    .products-grid .products-grid-row {
        flex-flow: column-reverse
    }

    .products-slide .swiper-wrapper{
        padding-top: 0 !important;
    }

    .footer-top .footer-widget .des iframe {
        max-height: 300px !important;
    }
}


@media only screen and (max-width : 991px) {
    .gioithieu-sp .col-content a {
        margin-bottom: 10px;
    }

    .tintuc .col-large {
        padding: 0 !important;
    }

    .tintuc .col1 {
        margin-bottom: 10px;
        padding: 0 !important;
    }

    .tintuc .col-lg-6 {
        margin-bottom: 8px;
    }

    .sidebar-wrapper .order-contact {
        border: none !important;
    }

    .footer-area .container .col1 {
        flex-direction: column;
    }

    .logo a img {
        margin-bottom: 20px;
    }

    .danhmuc-sp .col-lg-4.order-1 {
        padding-bottom: 20px !important;
    }

    .danhmuc-slide .swiper-pagination-spslide{
        margin-bottom: 0!important;
    }

    .top-products .container {
        margin-top: 20px !important;
    }

    .gioithieu-sp .gioithieu-row,
    .products-grid .products-grid-row{
        flex-flow: column-reverse;
    }

    .top-products .swiper-pagination-topsp{
        margin-bottom: 0 !important;
    }

    .lienhe-tuvan{ 
        padding: 0;
    }

        .lienhe-tuvan .col-lg-6.d-flex{
            margin-bottom: 20px;
        }

        /*.lienhe-tuvan .wrap-contact{
            margin-bottom: 20px;
        }*/

    .gioithieu-sp a {
        margin-bottom: 10px;
    }

    .danhmuc-sp .collection-name span {
        font-size: 0.8rem;
    }

    
}

@media only screen and (max-width : 1024px) {
    .sidebar-widget .contact-img img {
        width: 50px !important;
        height: 50px !important;
        /*margin: 12px 0;*/
    }

    .sidebar-widget .contact-img span {
        font-size: 0.7rem;
    }

    .sidebar-widget .contact-infor p {
        font-size: 0.8rem;
    }

    .sidebar-widget .contact-infor {
        margin-left: 6px!important;
    }

        .sidebar-widget .contact-infor:before {
            left: -6px !important;
            bottom: 10% !important;
        }

    .sidebar-widget .contact-img {
        padding-right: 6px !important;
    }

        .sidebar-widget .contact-img span {
            font-size: 0.7rem !important;
        }

    .hotline-small-device {
        display: block;
    }

    .hotline-large-device {
        display: none;
    }
}


@media (min-width: 600px) and (max-width: 991px) {
    .tintuc .row-post .col-lg-6 {
        /*padding: 12px !important;*/
    }
}

@media (min-width: 600px) and (max-width: 768px) {
    .cam-ket .camket-title h3 {
        margin: 0 !important
    }
}


@media (min-width: 768px) and (max-width: 991px) {
    .cart-content .col-6 {
        width: 152px !important;
        margin-right: 16px;
    }

    .tintuc .row-tin-tuc .wrap-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .tintuc .content-wrap .wrap-text p {
        margin-bottom: 18px !important;
    }

    .tintuc .col-large {
        margin-bottom: 10px;
    }

    .product-wrap.rounded-0{
        margin-bottom: 110px !important;
    }

}

@media (min-width: 769px) and (max-width: 1201px){
    .header-small-device .input-search{
        width: 70% !important;
    }
}

@media (min-width: 992px) and (max-width: 1201px) {
    .cart-content .col-6 {
        width: 188px !important;
        margin-right: 16px;
    }
    /*.tintuc .post-title-wrap {
        margin-top: 20px;
    } */

    .gioithieu-sp .row-introduce .description p{
        font-size: 0.8rem !important;
    }

    .gioithieu-sp .row-introduce .title span{
        font-size: 2rem !important;
    }
}

@media (min-width: 1202px) and (max-width: 1293px) {
    .header-area .main-menu .social-contact{
        margin: 0 !important;
    }
}

@media (min-width: 1202px) and (max-width: 1334px){
    .header-area .main-menu nav ul li:nth-child(4) {
        margin-right: 160px !important;
    }

    .header-large-device .main-menu nav {
        margin-right: 20px !important;
    }
}

@media (min-width: 1202px) and (max-width: 1600px) {
    #logo-header {
        left: 42%  !important;
        top: -20px !important;
        scale: 0.7 !important;
        transition: all 0.5s ease;
    }

    #header-large {
        padding-top: 7px !important;
    }

    #search-wrap {
        margin-left: 44px !important;
        scale: 0.9 !important;
        margin-bottom: -6px !important;
        transition: all 0.5s ease;
    }

    #main-menu {
        height: 42px !important;
    }

    .header-area .main-menu nav ul li:nth-child(4) {
        margin-right: 180px !important;
    }

    .header-large-device .main-menu nav{
        margin-right: 0 !important;
    }

    

}

@media (min-width: 1600px) {
    .social-contact {
        margin-right: -35px !important;
    }

    .header-search-input {
        margin-left: 35px !important;
    }
}

@media (min-width: 768px) {
    .tintuc .row-tin-tuc a {
        position: absolute;
        bottom: 10px;
    }

   
}

@media (min-width: 1201px) {
    .header-area .main-menu {
        /*margin-top: 80px;*/
    }

    .header-area {
        padding: 8px !important;
    }

   /* .header-area {
        margin-bottom: 127px;
    }*/

        .banner {
            margin-top: -8px !important;
        }

   /* .breadcrumb-area {
        margin-top: 120px !important;
    }*/

    .warp-title_top {
         margin-top: 140px;
    }

    .banner {
        margin-top: -135px;
    }

   


}

@media (max-width: 1200px) {
    .header-small-device .logo-header .img-logo {
        width: 60px !important;
    }


}


@media (max-width: 520px){
    .row-title .title::after {
        right: 41%;
    }

    .qua-may-mac .swiper-slide a,
    .qua-luu-niem .swiper-slide a,
    .qua-gia-dung .swiper-slide a,
    .qua-theo-mua .swiper-slide a,
    .qua-vpp .swiper-slide a {
        height: 150px !important;
    }

    .gioithieu-sp .swiper-slide h2 {
        font-size: 0.9rem !important;
    }

    .brand-area .row-title h2 {
        font-size: 1.6rem !important;
    }
}

@media (min-width: 521px) {
    .row-title .title::after {
        right: 47%;
    }
}

.header-large-device .main-menu {
    background-color: #EFEFEF;
    height: 50px;
    /* width: 100%;*/
    position: relative;
    margin-top: 14px;
}

    .header-large-device .main-menu nav{
        margin-right: 75px;
    }

.header-search-input{
    margin-left: 50px;
    display: flex;
    align-items: center;
}

.header-large-device .img-logo-header {
    left: 39%;
    left: 39%;
    top: -25px;
    z-index: 9;
    background-color: white;
    padding: 0 30px;
    scale: 1;
    transition: all 0.3s ease;
}

.header-area .main-menu nav ul {
    margin: 0;
    padding: 0;
   /* margin-left: 186px;*/
}

.header-area .main-menu .social-contact {
    margin-left: 90px;
}

.header-area .main-menu nav ul li:not(:nth-child(4)) {
    margin-right: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    width: 119px;
    justify-content: center;
}

        .header-area .main-menu nav ul li:nth-child(4) {
            margin-right: 250px;
        }

.header-area .main-menu-header:not(:nth-child(4)):not(:last-child) .main-menu-link::after {
    content: "";
    position: absolute;
    height: 30px;
    width: 1px;
    background-color: var(--text-color);
    top: -5px;
    right: -23px;
}

            .header-area .custom-drop-menu .col-lg-4 .submenu-wrap li {
                width: 100%;
            }

.main-menu .custom-drop-menu {
    position: absolute;
    display: none; 
    background: white;
    width: 100%;
    height: 0px;
    top: 42px;
    left: 0px;
    animation: header__notify-fadeIn ease-in 0.2s forwards;
    overflow: hidden;
    padding-top: 26px;
    justify-content: center;
    align-items: center;
    z-index: -1;
	box-shadow: 0 4px 12px #0000001a;
}

.main-menu .home-btn-icon {
    background: var(--primary-color); 
    width: 45px;
}
/*.custom-drop-menu .col-lg-4 ul,
.custom-drop-menu .col-lg-4 .menu-title {
    padding-left: 50px !important;
}*/
.custom-drop-menu .submenu-wrap {
    margin-bottom: 18px;
    /* margin-left: 30px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .custom-drop-menu .submenu-wrap .list-submenu {
       margin: 0 !important;
    }

    .custom-drop-menu .submenu-wrap .menu-title {
        text-transform: uppercase;
        font-weight: 600;
        color: var(--text-color);
    }

    .custom-drop-menu .submenu-wrap a {
        text-decoration: none;
        font-size: 1rem;
        font-weight: 400;
        text-transform: capitalize;
    }

    .custom-drop-menu .submenu-wrap .list-submenu a {
        font-size: 1rem;
        text-transform: capitalize;
    }

    .custom-drop-menu .submenu-wrap a:hover {
        color: var(--primary-color);
    }

        /*.main-menu .has-dropdown::after {
            content: '';
            position: absolute;
            bottom: -30px;
            width: 128px;
            height: 34px;
        }*/

.custom-drop-menu .col-lg-4 {
    padding: 0 10px !important;
}



@keyframes header__notify-fadeIn {
    0% {
       
        height: 0px;
    }
    50% {
       
        height: 50px;
    }
    75% {
        height: 200px;
    }
    100% {
       
        height: 370px;
    }
}

.main-menu .has-dropdown:hover .custom-drop-menu {
    display: flex;
}

.header-area .wrap-mid input {
    border-radius: 15px;
    border: 1px solid #E3E3E3;
    padding: 8px;
    background-color: #F3F3F3;
    width: 100%;
}

.header-area .wrap-mid .icon-button i {
    padding: 13px 30px;
    background-color: var(--primary-color);
    border-radius: 16px;
}

.header-area .wrap-mid .icon-button {
    right: 0;
}

.header-area .wrap-mid ul li {
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
}

    .header-area .wrap-mid ul li::before {
        content: attr(title);
        display: block;
        font-weight: 600;
        height: 0;
        overflow: hidden;
        text-transform: math-auto;
    }

    .header-area .wrap-mid ul li a {
        text-decoration: none;
        color: black;
        text-transform: math-auto;
    }

        .phone-btn {
        padding: 5px 10px;
        background-color: var(--primary-color);
        border-radius: 14px;
    }

        .header-area .warp-right .phone-btn span a{
            text-decoration: none;
            color: white;
            font-weight: 600;
        }


        .header-area .warp-right .phone-btn:hover,
        .header-area .wrap-mid .icon-button i:hover,
        .order-btn:hover {
            cursor: pointer;
            background-color: var(--text-color);
            color: white;
        }

            .header-area .warp-right .phone-btn span:before {
                content: "";
                position: absolute;
                background-color: white;
                height: 16px;
                width: 1px;
                top: 4px;
                left: -8px;
            }

.header-area .warp-right .phone-btn{
    margin-left: 22px;
   margin-left: 8px;
}

.header-area .search-wrap {
    width:100%;
    /*margin-left: 150px;*/
    scale: 1;
    transition: all 0.3s ease;
}

.navbar-pc .phone-wrap {
    display: flex;
    margin-top: 10px;
}

.navbar-pc .phone-btn{
    margin-right: 4px;
}

.navbar-pc .phone-btn a {
    text-decoration: none;
}

    .navbar-pc .phone-btn i {
        color: black !important;
    }

.tintuc .row-post a {
    margin-left: 17px;
}

.wrap-mid .list-inline .list-inline-item:hover {
    transform: translateY(-1px);
    cursor: pointer;
    font-weight: 600;
}

.link-sp {
    text-decoration: none;
    color: black;
}

.mau-sp .img-sp:hover,
.inan-thietke .img-sp:hover,
.tintuc .row-post .col-lg-6 img:hover {
    scale: 1.1;
    opacity: 0.8;
}

.mau-sp .col-lg-3 {
    overflow: hidden;
    border: 1px solid #33333330;
}

.mau-sp .sp-title {
    /*background-color: #bae6ff; */
    width: 300px;
    height: 45px;
    /*  padding: 10px;*/
    text-align: center;
    position: relative;
    z-index: 9;
}

    .mau-sp .sp-title .detail {
        background-color: var(--primary-color);
        width: 50%;
    }

        .sp-title .detail:hover,
        .sp-title .order:hover {
            cursor: pointer;
            opacity: 0.7;
        }

.mau-sp .detail a:hover {
    color: black;
}

    .mau-sp .sp-title .order {
        background-color: #444444;
        width: 50%;
    }

        .mau-sp .sp-title .order a {
            color: white;
        }

.mau-sp .img-sp {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mau-sp .link-sp i,
.inan-thietke .link-sp i {
    color: var(--primary-color)
}

.wrap-name {
    background-color: white;
    width: 100%;
    height: 75px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}

.img-wrap {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.mau-sp .container .row-title {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.tintuc .row-tin-tuc a:hover {
    display: inline-block;
    transform: translateY(-1px);
    font-weight: 600;
    color: #6e5300;
}

.warp-title_top {
    background: #FFFAF3;
    padding: 55px 0;
   /* margin-top: 140px;*/
}

    .warp-title_top .container,
    .warp-title_top .breadcrumb-area .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .warp-title_top .breadcrumb-area{
        background-color: transparent !important;
        border: 0;
    }

  

.section-title .title {
    color: black !important;
}

#cart_form .billing-info-wrap input {
    background: #F7F7F7;
    border-radius: 5px;
    max-width: 420px;
}

#cart_form .warp-box-item1 {
    box-shadow: 0 0 0 1px #d9d9d9;
    border-radius: 4px;
    background: #fff;
    color: #737373;
    /*padding: 12px;*/
    margin-top: 35px;
    width: 100%;
}

    #cart_form .warp-box-item1 .item .title {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-top: none;
        border-bottom: 1px solid #d9d9d9;
        padding: 15px 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }



#cart_form .warp-box-item1 .item .child-box {
    padding: 20px 10px;
    background-color: #fafafa;
    border-bottom: 1px solid #d9d9d9;
}

    #cart_form .warp-box-item1 .item .child-box input {
        width: 100%;
        border: 1px solid #d9d9d9;
        padding: 10px;
        border-radius: 5px;
    }

    #cart_form .warp-box-item1 .item .child-box i {
        position: absolute;
        right: 15px;
        top: 60%;
    }

.your-order-info .pay-top.sin-payment {
    box-shadow: 0 0 0 1px #d9d9d9;
    border-radius: 4px;
    background: #fff;
    color: #737373;
    padding: 0;
    width: 100%;
}

.your-order-info .payment {
    display: flex;
    gap: 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-top: none;
    border-bottom: 1px solid #d9d9d9;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-main-area #main_content {
    box-shadow: 0 0 8px 2px #0000002e;
    border-radius: 5px;
}

    .cart-main-area #main_content .content_right_top {
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
    }

.cart-shiping-update-wrapper2 a {
    background: #F5F5F5;
    border: 1px solid #F5F5F5;
    color: #000;
    padding: 10px 15px;
    transition: .2s linear;
    border-radius: 5px;
    text-wrap: nowrap;
    text-decoration: none;
}

.warp_plus-cart .cart-plus-minus {
    width: 120px;
    height: 30px;
    display: flex;
    align-items: center;
    border: 1px solid #3c3b3b29;
}

    .warp_plus-cart .cart-plus-minus .qtybutton {
        width: 30px;
        height: 100%;
        background: #F7F7F7;
        display: flex;
        align-items: center;
        cursor: pointer;
        justify-content: center;
        font-size: 20px;
    }

    .warp_plus-cart .cart-plus-minus .cart-plus-minus-box {
        width: 60px;
        border: 0;
        outline: none;
        text-align: center;
        height: 100%;
    }

    .warp_plus-cart .cart-plus-minus .qtybutton.inc {
        border-left: 1px solid #3c3b3b29;
    }

    .warp_plus-cart .cart-plus-minus .qtybutton.dec {
        border-right: 1px solid #3c3b3b29;
    }

.cart-main-area #main_content .warp_price {
    display: flex;
    align-items: center;
}

.cart-main-area #main_content .pro-details-quality span {
    display: flex;
    align-items: center;
    justify-content: center;
}

#giftcode_form #giftcode {
    max-width: 300px;
    border: 0;
    outline: unset;
    border: 1px solid #ced4da;
    border-right: 0;
    border-radius: 6px 0 0 5px;
    height: 41px;
    background: #F7F7F7;
    width: 70%;
}

.giftcode_submit {
    background: var(--primary-color);
    border: 0;
    outline: 0;
    font-size: 16px;
    padding: 9px 20px;
    border-radius: 0 5px 5px 0;
    min-width: 102px;
}

.table td, .table th {
    padding: .75rem !important;
}

.grand-totall2 {
    padding: 0.75rem;
}

    .grand-totall2 h5 {
        display: flex;
        justify-content: space-between;
        font-size: 15px;
        padding: 0 20px;
        font-weight: 600;
    }

    .grand-totall2 .price-ship {
        display: flex;
        padding: 0 20px;
        justify-content: space-between;
    }

#main_content textarea {
    background: #F7F7F7;
}

.grand-totall-title {
    padding: 20px 0.75rem;
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    border-radius: 5px;
}

.warp-submit_cart-parent {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 30px;
}

.warp-check-cart {
    display: flex;
    gap: 5px;
    margin: 10px 0;
    align-items: center;
    padding: 0 20px;
    justify-content: center;
}

.warp-submit_cart {
    border: 0;
    text-align: center;
    outline: 0;
    width: 100%;
    background: transparent;
    margin-top: 15px;
    margin-bottom: 30px;
}

    .warp-submit_cart span {
        font-size: 20px;
        background: #2E7C3C;
        padding: 9px 20px;
        color: #fff;
        border-radius: 5px;
        transition: .2s linear;
        border: 1px solid #2E7C3C;
        cursor: pointer;
    }

    .warp-submit_cart span {
        font-size: 20px;
        background: #2E7C3C;
        padding: 9px 20px;
        color: #fff;
        border-radius: 5px;
        transition: .2s linear;
        border: 1px solid #2E7C3C;
        cursor: pointer;
    }


.radio-item label {
    position: relative;
    /*padding-left: 30px;*/
}

.radio-item label:before {
    content: " ";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 11px;
    background-color: #D9D9D9;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
}

.radio-item input[type=radio]:checked + label:after {
    border-radius: 11px;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: -25px;
    content: " ";
    display: block;
    transform: translateY(-50%);
    background: #f39a2b;
}

.cart-shiping-update-wrapper2 a:hover {
    background: transparent;
    transition: .2s linear;
    color: #F39A2B;
    border: 1px solid #F39A2B;
}

.warp-submit_cart span:hover {
    transition: .2s linear;
    background: #fff;
    color: #2E7C3C;
}

.hotline-wrapper .contact-item{
    width: 20%;
}

.hotline-wrapper .contact-item span{
    font-size: 0.9rem;
}