@font-face {
  font-display: swap;
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/gotham-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/gotham-400.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/gotham-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  font-family: 'Gotham';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/gotham-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.fs-16{
    font-size: 1.6rem !important;
}
.fs-15{
    font-size: 1.5rem !important;
}
.fs-14{
    font-size: 1.4rem !important;
}
.fs-20{
    font-size: 2rem !important;
}
.object-cover {
    object-fit: cover !important;
}
.fa{
    font-family: 'Font Awesome 6 Pro';
    font-weight: 500;
}
.rounded-5{
    border-radius: 5px;
}
.rounded-10{
    border-radius: 1rem;
}
.rounded-15{
    border-radius: 1.5rem;
}
.py-50 {
    padding-top: 5em;
    padding-bottom: 5em;
}
.mb-50 {
    margin-bottom: 5rem;
}
.color-red{
    color: var(--red);
}
.color-text {
    color: var(--color-text);
}
.btn-main{
    background: var(--color-main) !important;
    border-color: var(--color-main) !important;
}
.btn-main:hover{
    background: white !important;
    color: var(--color-main) !important;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: 1.4;
}
.color-gray-bold{
    color: var(--gray-bold);
}
.fw-500 {
    font-weight: 500;
}

html, body {
    overflow-x: hidden;
}

/*HEADER*/
header {
    position: relative;
}
.setting-menu .no-gutters > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}
header.fixed {
    margin: auto;
    z-index: 11;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: stuckMoveDown .6s;
    -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;
}
@keyframes stuckMoveDown {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}
.logo-section {
    text-align: center;
}
.fixed .logo-section img {
    height: 5rem;
}

.slider-text-vertical,
.slider-text-vertical .swiper-slide {
    height: 35px;
    line-height: 35px;
    font-weight: 700;
    text-align: center;
}
.menu-section > ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-section > ul > li:nth-child(1) > a,
.menu-section > ul > li:nth-child(2) > a {
    font-weight: 500;
}
.container-menu .row-menu .image-right {
    max-width: 390px;
    margin-left: auto;
    padding: 2.5rem;
}

.column-pc {
    display: block;
}
.column-mobile {
    display: none;
}

.action-header {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 3rem;
}
.btn-account {
    padding: 10px 15px;
    border: 1px solid var(--black);
    text-transform: uppercase;
    font-weight: 500;
    color: var(--black);
    white-space: nowrap;
}
.btn-account:hover {
    color: var(--black);
}
.language-section {
    padding: 3px 0;
}
.language-section > div {
    padding: 3px 0;
}

.btn-search svg {
    width: 15px;
}

.action-header .back-drop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    transition: all .3s ease-in-out;
    display: none;
}
.action-header .back-drop.show {
    z-index: 10;
    display: block;
}
.search-section {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f7f4;
    transition: all .3s ease-in-out;
    transform: translateY(-100%);
}
.search-section.show {
    z-index: 10;
    opacity: 1;
    transform: translateY(0%);
}
.search-section form {
    width: 50%;
    max-width: 450px;
}
.search-section .input-group {
    border-color: #bdbdbd !important;
}
.search-section .close-search {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1;
}
.search-section .close-search i {
    font-weight: 500;
    font-size: 2.5rem;
}

.search-small .form-dropdown {
    position: absolute;
    padding: 10px;
    background-color: #ffffff;
    width: 300px;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 1000;
    margin-bottom: 0;
    -webkit-animation: nav_menu_anim_close 0.3s both;
    -o-animation: nav_menu_anim_close 0.3s both;
    animation: nav_menu_anim_close 0.3s both;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0px 0px 3px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px rgb(0 0 0 / 15%);
}
.search-small:hover .form-dropdown {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset;
}

/*HEADER*/

/*MAIN*/
.slider-main, .slider-main img {
    width: 100%;
    object-fit: cover;
}

.product-category .row {
    margin-right: -10px;
    margin-left: -10px;
}
.product-category .row > div {
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
}
.product-category .item-column {
    flex: 1;
    height: 100%;
    display: block;
}
.product-category .item-column.text {
    background-color: #5e2747;
    position: relative;
}
.product-category .item-column.text span {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    padding: 0 3rem;
    color: var(--white);
    font-weight: 500;
    font-size: 3.5rem;
    text-transform: uppercase;
}

.item-banner::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    content: '';
    transition: transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    -ms-transition: -ms-transform 0.6s;
    -moz-transition: -moz-transform 0.6s;
    -o-transition: -o-transform 0.6s;
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -190%, 0);
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -190%, 0);
    -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -190%, 0);
    -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -190%, 0);
    -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -190%, 0);
}
.item-banner:hover:before {
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 190%, 0);
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 190%, 0);
    -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 190%, 0);
    -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 190%, 0);
    -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 190%, 0);
}

.block-top {
    max-width: 650px;
    margin: auto;
}

.newsletter .invalid-feedback {
    position: absolute;
    bottom: -30px;
    left: 0;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-control {
    border-color: #e4e4e4;
}

.newsletter .form-control {
    height: 4.5rem;
    margin-right: 10px;
    border-radius: 5px;
}
.btn-newsletter {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 0 2rem;
    height: 4.5rem;
    line-height: 4.5rem;
    transition: all .5s;
    border-radius: 5px;
}
.bg-light {
    background-color: var(--light) !important;
}

.bg-footer {
    padding: 50px 0;
    background-color: var(--light);
    color: #828282;
}
.entire-info-website {
    font-size: 14px;
    color: #747474;
}
.title-footer {
    font-weight: 500;
    text-transform: uppercase;
    color: #828282;
    font-size: 12px;
    margin-bottom: 2rem;
}

.footer-menu-section ul li {
    margin-bottom: 1rem;
}
.footer-menu-section ul li a {
    font-weight: 500;
    font-size: 14px;
}

.socials ul {
    display: flex;
    align-items: center;
    gap: 10px;
}
.socials ul li {
    overflow: hidden;
}
.item-social {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 2rem;
    /*animation: move-vertical-out .25s 1;*/
}
.item-social:hover {
    /*animation: move-vertical-hover .25s 1;*/
}
@keyframes move-vertical-out {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-35px)
    }

    50.1% {
        transform: translateY(35px)
    }

    100% {
        transform: translateY(0)
    }
}
@keyframes move-vertical-hover {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(35px)
    }

    50.1% {
        transform: translateY(-35px)
    }

    100% {
        transform: translateY(0)
    }
}

.modal button.close {
    font-size: 18px;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 1;
    z-index: 10;
    text-shadow: unset;
}

.modal .modal-dialog {
    margin-top: 3rem;
}
.invalid-feedback {
    color: #dc3545 !important;
}

#return-to-top {
    position: fixed;
    bottom: 0;
    right: 0;
    background: var(--light);
    width: 4.5rem;
    height: 4.5rem;
    display: block;
    text-decoration: none;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    color: var(--color-highlight);
}
#return-to-top i {    
    position: relative;
    font-size: 1.6rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    line-height: 4.5rem;
}
#return-to-top:hover {
    background: var(--color-highlight);
    color: white;
}

.title-form {
    font-size: 4rem;
    font-weight: 500;
    text-transform: uppercase;
}

/*DS SAN PHAM*/
.filter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #dee2e6;
}
.wrap-breadcrumbs {
    text-align: center;
    padding: 3rem 0;
}
.wrap-breadcrumbs .breadcrumbs-section {
    justify-content: center;
}
.content-filter-product .product-attribute-switch a {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start !important;
    margin: 0.6rem 0;
    width: 50% !important;
    height: auto !important;
    border: 0 !important;
}
.content-filter-product .product-attribute-switch a.active,
.content-filter-product .product-attribute-switch a:hover {
    border: 0 !important;
}
.content-filter-product .inner-switch > span {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
    display: block;
    position: relative;
    border: 0.1rem solid #e3e3e3;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.content-filter-product a:hover .inner-switch > span::after ,
.content-filter-product a.active .inner-switch > span::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.wrap-attribute {
    margin-bottom: 2rem;
}
.wrap-attribute .orderby-title {
    padding: 10px 30px 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    padding-right: 3rem;
    border: 1px solid #e0e0e0;
    line-height: 1.3;
}
.wrap-attribute .orderby-title::after {
    top: 50% !important;
    right: 10px !important;
    transform: translateY(-50%) !important;
}
.wrap-attribute .dropdown-menu {
    padding: 2.4rem;
    min-width: 50rem;
}

.filter-list {
    margin-bottom: 2rem;
}
.filter-list > a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-black);
    height: 24px;
    line-height: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0 10px;
    margin-right: 15px;
    margin-bottom: 10px;
}
.filter-list > a i {
    font-weight: 600;
    font-size: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid var(--color-black);
    line-height: 1;
}


.product-item .attributes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 2rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, .4);
    animation: move-action-bottom .15s cubic-bezier(.33, .975, .245, .91) forwards;
}
.product-item .attributes .swatch-attribute {
    margin-bottom: 1rem;
}
.product-item .attributes .swatch-attribute:last-child {
    margin-bottom: 0;
}
.product-item .list-option {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.product-item .list-option .item-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid var(--color-text);
    transition: all .3s;
    background-color: var(--white);
    line-height: 1;
    cursor: pointer;
}
.product-item .list-option .item-option.color {
    border: 0;
    position: relative;
}
.product-item .list-option .item-option.color:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    transition: all .3s;
}
.product-item .list-option .item-option:hover {
    border: 1px solid var(--black);
}
.product-item .list-option .item-option.color:hover:before {
    border: 3px solid var(--white);
}
.product-item:hover .attributes {
    animation: move-action-top .15s cubic-bezier(.33,.975,.245,.91) forwards;
}

.product-item .btn-product-action {
    position: relative;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    color: var(--color-black);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}
.product-related .product-item .btn-product-action {
    position: relative;
    z-index: 1;
    opacity: 1;
}

@keyframes move-action-top {
    0% {
        transform: translateY(10px) perspective(1px);
        opacity: 0
    }
    100% {
        transform: translateY(0px) perspective(1px);
        opacity: 1
    }
}

@keyframes move-action-bottom {
    0% {
        transform: translateY(0px) perspective(1px);
        opacity: 1
    }
    100% {
        transform: translateY(10px) perspective(1px);
        opacity: 0
    }
}
/*DS SAN PHAM*/


/*CHI TIET SAN PHAM*/
.product-detail-head > .row > div:first-child {
    flex: 0 0 60%;
    max-width: 60%;
}
.product-detail-head > .row > div:last-child {
    flex: 0 0 40%;
    max-width: 40%;
}

.product-content-detail .btn-wishlist {
    color: var(--black);
    font-size: 24px;
    line-height: 1;
    margin-left: 20px;
}
.product-content-detail .btn-wishlist.added-wishlist {
    background-color: var(--color-highlight);
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--white);
}

.attribute-color .inner-product-attribute {
    border: 1px solid transparent;
    position: relative;
    transition: all .3s;
}
.attribute-color .inner-product-attribute:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    transition: all .3s;
}
.attribute-color .inner-product-attribute:hover:before ,
.attribute-color .inner-product-attribute.active:before {
    border: 3px solid var(--white);
}

.product-image-detail-top .swiper {
    margin: 5rem;
}
.swiper-thumbs .swiper-slide {
    border: 0;
}
.swiper-thumbs .swiper-slide-thumb-active:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--black);
    z-index: 1;
}

.product-image-detail-top .swiper .swiper-button-next {
    right: -50px;
}
.product-image-detail-top .swiper .swiper-button-prev {
    left: -50px;
}
.product-image-detail-top .swiper:hover .swiper-button-next {
    right: 0;
}
.product-image-detail-top .swiper:hover .swiper-button-prev {
    left: 0;
}
.swiper-button-prev, 
.swiper-button-next {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 1px solid #dddddd;
    color: var(--color-main);
    transition: all .3s;
}
.swiper-button-prev:hover , 
.swiper-button-next:hover {
    background-color: var(--color-main);
    color: var(--white);
    border-color: var(--color-main);
}
.product-image-detail-top i {
    margin: 0;
}

.title-desc {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 15px;
}
.characteristic table {
    width: 100%;
    font-size: 14px;
}
.characteristic table td {
    padding: 10px;
    border-bottom: 1px solid #bdbdbd;
    width: 50%;
}
/*CHI TIET SAN PHAM*/

/*TRANG CAU CHUYEN*/
.content-our-story .row {
    margin-left: -5px;
    margin-right: -5px;
}
.content-our-story .row > div {
    padding-left: 5px;
    padding-right: 5px;
}
.content-our-story > .row {
    align-items: center;
}
.content-our-story > .row:nth-child(2n+1) {
    flex-direction: row-reverse;
}

.menu-our-story {
    padding: 30px 25px 20px 25px;
}
.menu-our-story ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-our-story ul > li {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid var(--color-text);
}
.menu-our-story ul > li:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}
.menu-our-story ul > li > a{
    color: var(--color-text);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
}
.menu-our-story ul > li > a.active {
    color: var(--color-main);
}

.materials-effects .row{
    display: flex;
    align-items: stretch;
}
.materials-effects .row > div {
    display: flex;
}
.materials-effects .item {
    background-color: var(--color-highlight);
    display: flex;
    width: 100%;
}
.materials-effects .item .image {
    width: 45%;
}
.materials-effects .item .content {
    width: 55%;
    padding: 15px;
}
.materials-effects .item .content .title {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}
.materials-effects .item .content ul {
    padding-left: 15px;
}
/*TRANG CAU CHUYEN*/

.banner-article-detail {
    padding-top: 40%;
}
.banner-article-detail:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
}
.banner-article-detail .title-banner{    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 3rem;
    font-weight: 500;
    text-transform: uppercase; 
    z-index: 2;
}

.entire-info-website > a {
    text-align: center;
    display: inline-block;
    width: 100%;
}

.entire-info-website address {
    text-align: justify;
}

.entire-info-website address > p {
    margin-bottom: 1rem;
}

/*CSS MOBILE*/
@media (min-width: 1025px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1356px;
    }
    .block-logo {
        width: 200px;
    }
    .block-menu, .block-action-header1 {
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
    
    .language-section > div:first-child {
        margin-right: 10px;
        padding-right: 10px;
        border-right: 1px solid var(--black);
    }
    .menu-section > ul > li.column-mobile {
        display: none;
    }
}
/*CSS MOBILE*/


.btn-filter-mobile {
    display: none;
    color: var(--color-main);
}
.btn-filter-mobile, .content-filter-head {
    display: none;
}


.toolbar__item a img {
    width: 20px !important;
    height: 20px !important;
}
.product-action .btn-product-action:last-child {
    margin-right: 0;
}

.product-detail-footer .nav li a::before {
    background-color: transparent;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transition: background-color .2s ease-out;
    width: 100%;
    z-index: 1;
}

.product-detail-footer .nav li a.active::before {
    background-color: var(--black);
}
.product-detail-footer .nav li:last-child {
    padding: 0 !important;
}
.title-article-detail {
    font-size: 2.4rem;
}

.comment-section .list-comment:empty{
    margin: 0;
    padding: 0;
    border: 0;
}
.comment-section .list-comment:empty+.total-comment{
    display: none;
}


body {
  counter-reset: section;
}

.file-number::before {
  counter-increment: section;
  content: counter(section);
}
.list-file .article-title a{
    color: var(--color-main);
}
.footer-menu-section ul li a:hover {
    color: var(--color-highlight) !important;
}


.is-mobile footer {
    
}


/*RESPONSIVE*/
.is-mobile .menu-top{
    display: block;
    position: relative;
    margin: 1.5rem;
}
.is-mobile .menu-section .close-sidebar{
    position: absolute;
    font-size: 3rem;
    color: var(--color-main);
    top: -0.5rem;
    right: 0;
}

.is-mobile .menu-section > ul {
    display: block;
}
.is-mobile .menu-section > ul li {
    display: block;
    margin-right: 0;
    margin-left: 0;
    border-bottom: 0.1rem solid #e3e3e3;
}
.is-mobile .menu-section > ul li:last-child {
    border-bottom: 0;
}
.is-mobile .menu-section > ul li a {
    display: block !important;
    height: 4rem;
    line-height: 4rem;
    padding: 0 4rem 0 1.5rem !important;
}
.is-mobile .menu-section > ul > li > a {
    text-align: left;
    color: var(--color-main);
}
.is-mobile .menu-section > ul > li:last-child {
    border-bottom: 0.1rem solid #e3e3e3;
}
.is-mobile .menu-section > ul > li.has-child:hover > a {
    background-color: transparent;
    color: var(--color-main);
}

.is-mobile .menu-section .menu-title::before {
    content: none;
}
.is-mobile .menu-section .row-menu {
    display: block;
    margin-right: 0;
    margin-left: 0;
}
.is-mobile .menu-section .row-menu > div,
.is-mobile .menu-section .row-menu li {
    max-width: 100%;
    padding: 0;
}
.is-mobile .menu-section .container-menu {
    min-height: auto !important;
}
.is-mobile .menu-section .container-menu .sub-menu {
    display: none;
    padding: 0;
    margin-bottom: 0 !important;
}
.is-mobile .menu-section .container-menu .sub-menu li {
    border-bottom: 0.1rem solid #e3e3e3;
}
.is-mobile .menu-section .container-menu .sub-menu li:last-child {
    border-bottom: 0;
}
.is-mobile .menu-section .child-indicator {
    display: none;
}
.is-mobile .menu-section .entry-menu {
    background-color: transparent;
    border-top: 0.1rem solid #e3e3e3;
}
.is-mobile .menu-section .entry-menu.dropdown ul {
    border-top: 0.1rem solid #e3e3e3;
    background-color: transparent;
    position: static;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    display: none;
    min-width: auto;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.is-mobile .menu-section .entry-menu.full-width .container-menu {
    padding: 0;
    width: 100%;
}
.is-mobile .menu-section .entry-menu.full-width .container-menu > .row-menu {
    border-bottom: 0.1rem solid #e3e3e3;
}
.is-mobile .menu-section .entry-menu.full-width .container-menu > .row-menu:last-child {
    border-bottom: 0;
}
.is-mobile .menu-section .entry-menu.full-width .container-menu > .row-menu .sub-menu {
    border-top: 0.1rem solid #e3e3e3;
}
.is-mobile .menu-section .entry-menu.multil-column .row-menu > div {
    border-bottom: 0.1rem solid #e3e3e3;
}
.is-mobile .menu-section .entry-menu.multil-column .row-menu:last-child > div {
    border-bottom: 0;
}
.is-mobile .menu-section .entry-menu.multil-column .row-menu .sub-menu {
    border-top: 0.1rem solid #e3e3e3;
}
.is-mobile .menu-section .has-child > a {
    position: relative;
}
.is-mobile .menu-section .has-child > a > span {
    display: none !important;
}
.is-mobile .menu-section .has-child > .entry-menu {
    position: static;
    padding: 0;
    min-width: auto;
    width: auto;
    display: none;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.is-mobile .menu-section .has-child > .entry-menu::before {
    content: none;
}
.is-mobile .menu-section .has-child:hover > a {
    background-color: transparent !important;
    color: var(--color-main) !important;
}
.is-mobile .back-drop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index: 1020;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
}
.is-mobile .back-drop.open {
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
}
.is-mobile .setting-menu-mb>.container>.row>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.list-product-sub-category ul li a:hover {
    background: var(--color-highlight);
    color: white !important;
}
.box-policy .policy-item {
    border: 1px solid var(--color-highlight);
    background: #fffcfc;
}
.copy__inner {
  overflow: hidden;
}

.copy__gradient {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, white 100%);
  bottom: 0;
  height: 150px;
  left: 0;
  position: absolute;
  transition: bottom 1s ease;
  width: 100%;
  z-index: 10;
}
.reveal .copy__gradient {
  bottom: -150px;
  transition: bottom 2s ease;
}

.reveal+.btn-reveal .more-less i:before {
    content: "\f0d8";
}

.product-detail-content{
    max-height: 700px;
    overflow: hidden;
    transition: .3s;
}

.item-cate .title a {
    font-size: 2.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
    display: block;
    color: var(--color-main);
}
.item-cate .description {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

/*Button Contact Fixed*/
.contact-fixed {
    z-index: 999;
    right: 2rem;
    bottom: 7rem;
    position: fixed;
    height: 6rem;
    width: 6rem;
    background: var(--color-highlight);
    border-radius: 50%;
    cursor: pointer;
}

.contact-fixed__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 1.1rem;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__button.show {
    -webkit-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

.contact-fixed__button i {
    font-size: 2.2rem;
}

.contact-fixed__pulsation {
    width: 8.4rem;
    height: 8.4rem;
    background-color: var(--color-highlight);
    border-radius: 50%;
    position: absolute;
    left: -1.2rem;
    top: -1.2rem;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: arcontactus-pulse 2s infinite;
    animation: arcontactus-pulse 2s infinite;
}

.contact-fixed__pulsation:nth-child(2n) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.contact-fixed__close {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    color: var(--white);
    font-size: 2.2rem;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__close.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__list {
    background: center no-repeat var(--white);
    box-shadow: 0 0 10px rgb(0 0 0 / 60%);
    width: 20rem;
    position: absolute;
    bottom: 8rem;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 1.4rem 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 7px;
    -webkit-transform-origin: 80% 105%;
    -ms-transform-origin: 80% 105%;
    transform-origin: 80% 105%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-out .12s all;
    -o-transition: ease-out .12s all;
    transition: ease-out .12s all;
    z-index: 10000;
}

.contact-fixed__list:before {
    position: absolute;
    bottom: -0.7rem;
    right: 2.5rem;
    left: auto;
    display: inline-block!important;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    border-left: 8px solid transparent;
    content: '';
}

.contact-fixed__list.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__item {
    display: flex;
    align-items: center;
    padding: 0.8rem 2rem;
    width: 100%;
    color: var(--color-main);
    font-weight: bold;
}

.contact-fixed__item:hover {
    background-color: #eeeeee;
    color: var(--color-text);
}

.contact-fixed__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
    background-color: red;
    border-radius: 50%;
    padding: 0.8rem;
}

.contact-fixed__item-icon.messenger {
    background: linear-gradient(45deg,#00A8FF 0%,#8A2BE2 55%,#FF5C8A 100%);
}
.contact-fixed__item-icon.zalo {
    background-color: #0068ff;
}
.contact-fixed__item-icon img {
    filter: brightness(0) invert(1);
}

@keyframes arcontactus-pulse {
	0% {
		-webkit-transform:scale(0);
		transform:scale(0);
		opacity:1
	}
	50% {
		opacity:.5
	}
	100% {
		-webkit-transform:scale(1);
		transform:scale(1);
		opacity:0
	}
}
/*End Button Contact Fixed*/


@media (max-width: 1024px) {
    .setting-menu .logo-section {
        padding: 10px 0;
    }
    .action-header [nh-mini-member],
    .action-header .language-section {
        display: none;
    }
    
    .block-menu {
        order: 3;
    }
    
    .block-action-header {
        margin-left: auto;
        margin-right: 2rem;
    }
    
    .container-menu .sub-column, 
    .container-menu .sub-column-menu {
        padding: 0 !important;
        background-color: var(--white);
    }
    
    .menu-section > ul li.column-pc {
        display: none !important;
    }
    .menu-section > ul li.column-mobile {
        display: block !important;
    }
    
    .menu-section .entry-menu.full-width .menu-title ,
    .menu-section .menu-link {
        padding-left: 0 !important;
    }
    
    .menu-section > ul > li.column-mobile {
        border-bottom: 0 !important;
    }
    .language-section {
        justify-content: center;
        gap: 15px;
    }
    .menu-section ul li a.btn-lang {
        padding: 5px 15px !important;
        display: inline-flex !important;
        gap: 10px;
        text-transform: uppercase;
        border: 1px solid var(--gray);
        border-radius: 5px !important;
        font-weight: 400;
        height: auto;
        color: var(--black);
    }
    .menu-section ul li a.btn-account {
        justify-content: start;
        line-height: 5rem;
        align-items: center !important;
    }
    
    .column-text {
        display: none;
    }
    .col-product {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .product-detail-head > .row > div {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .product-image-detail {
        margin-bottom: 5rem !important;
    }
    
    .content-our-story .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .content-our-story > .row {
        flex-direction: column-reverse !important;
    }
    
    /*DS san pham*/
    .filter-url .btn-filter-mobile {
        display: block;
        margin-bottom: 2rem;
    }
    .content-filter-product {
        position: fixed;
        width: 100%;
        top: 10%;
        bottom: 0;
        left: 0;
        height: 90%;
        z-index: 1100;
        display: flex;
        flex-direction: column;
        background-color: var(--white);
        -webkit-transition: all 0.8s ease-in-out;
        transition: all 0.8s ease-in-out;
        -webkit-transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        -o-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        -webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
        transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
        -webkit-box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
        -moz-box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
        box-shadow: -0.1rem 0 0.3rem rgba(0, 0, 0, 0.2);
    }
    .content-filter-product.open {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .filter-url .back-drop {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        z-index: 1020;
        opacity: 0;
        filter: opacity(0);
        visibility: hidden;
    }
    .filter-url .back-drop.open {
        opacity: 1;
        filter: opacity(1);
        visibility: visible;
    }
    .content-filter-head {
        background: var(--light);
        padding: 1rem 1.5rem;
        display: block;
    }
    
    .filter-top {
        padding: 1.5rem;
        flex-direction: column;
        margin-bottom: 0;
    }
    .filter-top .orderby-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .filter-top .number-product,
    .filter-top .btn-reset-filter {
        display: none;
    }
    .orderby-section .orderby-title {
        font-weight: 500;
        text-transform: unset !important;
    }
    .wrap-attribute {
        padding: 1.5rem;
        flex: 1 1 auto;
        overflow-y: auto;
        margin: 0;
    }
    .wrap-attribute .orderby-section {
        display: table;
        width: 100%;
        margin-bottom: 20px;
    }
    .wrap-attribute .orderby-title {
        display: flex;
        border: 0;
        padding: 0;
    } 
    .wrap-attribute .dropdown-menu {
        position: relative !important;
        min-width: 100% !important;
        padding: 0 !important;
        transform: unset !important;
        border: 0;
        margin-top: 1rem;
    }
    .content-filter-product .inner-switch > span {
        border: 0.1rem solid var(--black);
    }
    .wrap-attribute .orderby-title::after {
        content: "\2b";
        right: 0 !important;
        font-size: 11px;
        font-weight: 600;
    }
    .wrap-attribute .dropdown.show .orderby-title::after {
        content: "\f068";
    }
    .action-filter {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        border-top: 1px solid #dee2e6;
    }
    .action-filter > a {
        display: inline-block;
        padding: 9px 20px;
        border: 1px solid var(--color-black);
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 500;
        background-color: var(--white);
        color: var(--color-black);
    }
    .action-filter > a.btn-view-result {
        background-color: var(--color-black);
        color: var(--white);
    }
    /*DS san pham*/
}


@media only screen and (max-width:992px) {
    .footer-mb>.container>.row>div {
        flex:  0 0 50%;
        max-width: 50%;
    }

    .product-item .price-amount {
        display: block;
    }
    .product-item .price-amount.old-price {
        display: inline-block;
        margin-left: 0 !important;
    }
    
    #nh-admin-bar {
        display: none;
    }
    .newsletter h3 {
        font-size: 3rem;
    }
    .title-footer {
        font-size: 14px;
    }
}

@media (max-width:991px) {
    .banner-section .item-banner img {
        border-radius: 0.5rem !important;
    }
    .title-section {
        font-size: 2.5rem;
    }
    
    .recruiment-intro {
        height: 60vh;
    }
    .recruiment-intro h3 {
        font-size: 3rem;
    }
}

@media only screen and (max-width:767px) {
    .product-category .row {
        margin-right: -5px;
        margin-left: -5px;
    }
    .col-product {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .product-category .row > div {
        padding-right: 5px;
        padding-left: 5px;
        margin-bottom: 10px;
    }
    .search-section.show {
        justify-content: start;
        padding-left: 15px;
    }
    .search-section form {
        width: 85%;
        max-width: 85%;
    }
    .search-section .close-search span {
        display: none;
    }
    .action-header {
        gap: 1.5rem;
    }
    
    .footer-mb>.container>.row>div {
        flex:  0 0 100%;
        max-width: 100%;
    }
    .banner-description {
        font-size: 1.8rem;
    } 
    .btn-submit {
        font-size: 1.3rem;
    }
    .footer-menu-section .title-footer::after {
        content: "\f0d7";
        font-family: 'Font Awesome 6 Pro';
        font-weight: 900;
        margin-left:2rem
    }
    .footer-menu-section .ws-activearrow.title-footer::after{
         content: "\f0d8";
    }
    .footer-menu-section .title-footer:before {
        opacity: 0;
    }

}

@media (max-width:320px) {
    .btn-filter-mobile {
        font-size: 1.2rem;
    }
    
    .per-page-section {
        font-size: 1.2rem;
        margin: 0 0.8rem !important;
        padding: 0 0.8rem !important;
    }
    
    .orderby-section .orderby-title {
        font-size: 1.2rem;
    }
    .product-content-detail .add-to-cart {
        padding: 0 0.5rem;
        height: 4.2rem;
        line-height: 4.2rem;
    }
    
    .product-action-detail a {
        height: 4.2rem;
        line-height: 4.2rem;
        width: 4.2rem;
    }
    
    .product-quantity input {
        width: 5rem;
        height: 4rem;
    }
}

/*nut lien he goc man hinh*/
.hotline-phone-ring-wrap {
    right: 10px;
    bottom: 5rem;
    position: fixed;
    z-index: 990;
}

.hotline-phone-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 7rem;
    height: 7rem;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotline-phone-ring-img-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotline-phone-ring-circle {
    width: 6.5rem;
    height: 6.5rem;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgb(51 152 205);
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
    width: 5rem;
    height: 5rem;
    position: absolute;
    background-color: rgb(51 152 205);
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        -webkit-opacity: 0.1;
    }

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        -webkit-opacity: 0.5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: 0.1;
    }
}

@keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.6;
    }

    100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }
}

@keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-15deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(15deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-15deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(15deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

.tooltip-social .tooltip-text {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 4px;
    position: absolute;
    bottom: 4px;
    white-space: nowrap;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    right: 130%;
}

.tooltip-social:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-social:hover .tooltip-text::after {
    content: "";
    position: absolute;
    top: 27%;
    left: 100%;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.75);
}

.tooltip-social:hover img {
    border-radius: 50%;
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%), 0 4px 15px rgb(0 0 0 / 13%);
}

.item-partner img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.btn-banner {
    background: #5e2747;
    color: white;
}

@media (min-width: 1100px){
    .product-category > .row:nth-child(2n) {
        flex-direction: row-reverse;
    }
}