.link-effect {
    position: relative;
    padding-bottom: 3px;
}

.link-effect:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: var(--transition-default);
}

.link-effect:hover:before {
    width: 100%;
}

.section-gap {
    padding: 70px 0;
}

.button-theme {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-flex;
    vertical-align: middle;
    text-align: center;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: var(--transition-default);
    font-size: 1em;
    overflow: hidden;
    text-transform: uppercase;
}

.button-theme::after {
    position: absolute;
    content: '';
    width: 0;
    left: auto;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 1;
    transition: var(--transition-default);
    background-color: var(--bs-black);
    color: var(--bs-white);
}

.button-theme:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.button-theme:hover span {
    position: relative;
    z-index: 2;
    color: var(--bs-white);
}

.button-theme.button-theme_primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bs-white);
    position: relative;
    border: 0;
    box-shadow: 0 10px 30px rgba(213, 210, 210, 0.19);
}


.button-theme.button-theme_primary:hover {
    background-color: var(--primary-hover);
}

.slider-button {
    background-color: var(--bs-gray-200);
    height: 38px;
    width: 38px;
    font-size: 20px;
    border: 1px solid transparent;
    transition: var(--transition-default);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: var(--bs-gray-800);
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.slider-button::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: var(--transition-default);
    background-color: var(--primary-color);

}

.slider-button:hover::after {
    transform: scale(1);
}

.slider-button:hover, .slider-button:focus {
    color: var(--bs-white) !important;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.slider-button_prev {
    left: 0;
}

.slider-button_next {
    right: 0;
}

.slider-button_next.swiper-button-disabled,
.slider-button_prev.swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: none;
}

.section-swiper:hover .slider-button_next.swiper-button-disabled,
.section-swiper:hover .slider-button_prev.swiper-button-disabled {
    opacity: 0.5 !important;
}

.section-swiper:hover .slider-button {
    opacity: 1;
}

.section-swiper:hover .slider-button_prev {
    left: -25px;
}

.section-swiper:hover .slider-button_next {
    right: -25px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--bs-gray-500);
    margin: 0 5px !important;
    opacity: 1;
    transition: var(--transition-default);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading .heading-sub {
    color: var(--primary-color);
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 6px;
}

.section-heading .heading-title {
    margin-bottom: 0;
    font-size: 2em;
    font-weight: 700;
}

.section-heading .heading-description {
    font-size: 1.15em;
    line-height: 1.6;
    color: var(--bs-gray-700);
    margin-top: 20px;
}

.section-heading .heading-description p:last-child,
.section-heading .heading-description ol:last-child,
.section-heading .heading-description ul:last-child {
    margin-bottom: 0;
}

.section-heading .heading-description ol,
.section-heading .heading-description ul {
    padding-left: 0;
}

.section-heading .heading-description ol li,
.section-heading .heading-description ul li {
    list-style: none;
}

.section-heading .heading-description ol li:before,
.section-heading .heading-description ul li:before {
    display: inline-block;
    margin-right: 6px;
    font-family: "Font Awesome 5 Pro";
    color: var(--primary-color);
    content: "\f2f7";
    font-size: 1.075em;
    font-weight: 900;
}

.section-heading .heading-description ol li + li,
.section-heading .heading-description ul li + li {
    margin-top: 6px;
}

.section-heading .heading-title-2 {
    margin-bottom: 0;
    font-size: 1.8em;
    font-weight: 700;
}

.section-heading .heading-line {
    position: relative;
    padding-bottom: 7px;
}

.section-heading .heading-line::before,
.section-heading .heading-line::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    background-color: var(--bs-gray-300);
    height: 2px;
    width: 100%;
    border-radius: 30px;
}

.section-heading .heading-line::after {
    background-color: var(--primary-color);
    width: 150px;
    height: 3px;
}

.header {
    z-index: 10;
    border-bottom: 1px solid var(--bs-gray-200);
    transition: all 0.3s ease-in;
}

.header.is-scrolled {
    animation: header-scrolled 1 500ms ease backwards;
}

.header.is-scroll {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    animation: header-scroll 0.5s forwards;
    box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
}

@keyframes header-scroll {
    0% {
        top: -50px;
    }

    100% {
        top: 0;
    }
}


@keyframes header-scrolled {
    0% {
        transform: translateY(-100%);
        background-color: var(--bs-white);
    }
    1% {
        background-color: transparent;
    }
    100% {
        transform: translateY(0);
    }
}


.header-logo {
    width: 75px;
    height: 75px;
}

.header-item .title {
    font-size: 1.1em;
}

.header-search {
    width: 100%;
    max-width: 700px;
}

.header-search .form-control {
    font-weight: 400;
    font-size: 14px;
    height: 45px;
    padding: 5px 40px 5px 20px;
    border: 1px solid var(--bs-gray-300);
}

.header-search .header-search__icon {
    width: 36px;
    height: 36px;
    top: 4px;
    right: 4px;
    bottom: 4px;
}

.header-search .search-result {
    max-height: 500px;
    border: 1px solid var(--bs-gray-200);
    box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    transform: translateY(-5px);
    z-index: 21;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header-search .search-result.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-search .search-result ul > li {
    padding: 5px;
}

.header-search .search-result ul > li > a {
    padding: 8px;
    border-radius: 5px;
}

.header-search .search-result ul > li:not(:last-child) {
    border-bottom: 1px solid var(--bs-gray-300);
}

.header-search .search-result ul > li:hover a {
    background-color: var(--bs-gray-100);
}

.search-result .image {
    width: 70px;
    height: 70px;
}

.search-result .title {
    font-size: 15px;
    color: var(--text-color);
}

.search-result .price-sale {
    color: var(--bs-gray-700);
}

.hamburger-button {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: center;
    background-color: transparent;
    border: 1px solid transparent !important;
}

.hamburger-button > span {
    background-color: var(--bs-gray-800);
    height: 2px;
    border-radius: 3px;
    display: flex;
    width: 22px;
}

.header-category__title {
    height: 48px;
    padding: 5px 18px;
    border-radius: 5px;
    background-color: var(--bs-dark);
}

.header .header-navigation > ul {
    display: flex;
    align-items: center;
}

.page-home .header .header-bottom .header-category .navigation-sub > ul > li > a,
.other-page .header .header-bottom .header-category .navigation-sub > ul > li > a,
.header .header-bottom .header-category .navigation-sub > ul > li > ul > li > a,
.header .header-navigation > ul > li > a,
.header .header-navigation > ul > li > ul > li > ul > li > a,
.header .header-navigation > ul > li > ul > li > a {
    color: var(--bs-gray-800);
    padding: 15px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);

}

.header .header-navigation > ul > li:not(:first-child)::after {
    position: absolute;
    content: '';
    top: 50%;
    height: 20px;
    width: 1px;
    transform: translateY(-50%);
    border-right: 1px solid #ffffff4f
}

.header .header-navigation > ul > li > a {
    white-space: nowrap;
    color: var(--bs-white);
    padding: 15px 18px;
}

.header .header-navigation > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-home .header .header-bottom .header-category .navigation-sub > ul > li > a,
.other-page .header .header-bottom .header-category .navigation-sub > ul > li > a,
.header .header-navigation > ul > li > ul > li > a,
.header .header-navigation > ul > li > ul > li > ul > li > a {
    border-left: 3px solid transparent;
}

.page-home .header .header-bottom .header-category .navigation-sub > ul > li > a:hover,
.other-page .header .header-bottom .header-category .navigation-sub > ul > li > a:hover,
.header .header-navigation > ul > li > ul > li > a:hover,
.header .header-navigation > ul > li > ul > li > ul > li > a:hover {
    border-left: 3px solid var(--primary-color);
    color: var(--primary-color);
}



.header .header-navigation > ul > li > ul {
    background-color: var(--bs-white);
    position: absolute;
    left: 0;
    width: 220px;
    top: 100%;
    z-index: 2;
    border-radius: 3px;
    transition: var(--transition);
    transform: translateY(20px);
    box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .header-navigation > ul > li > ul > li > ul {
    background-color: var(--bs-white);
    position: absolute;
    left: 100%;
    width: 220px;
    top: 0;
    padding-left: 0;
    z-index: 2;
    border-radius: 3px;
    transition: var(--transition);
    transform: translateY(20px);
    box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .header-bottom .header-category .navigation-sub > ul > li > ul > li {
    padding-right: 20px;
}

.header .header-bottom .header-category .navigation-sub > ul > li > ul > li .icon-lv2 {
    display: none;
}

.header .header-bottom .header-category .navigation-sub > ul > li > ul > li > ul > li > a {
    padding: 6px 10px;
    margin: -10px 0 6px 10px;
    color: var(--bs-gray-800);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    font-weight: 500;
    border-radius: 6px;
    transition: 0.25s ease;
}


.header .header-bottom .header-category
.navigation-sub > ul > li > ul > li > ul > li > a:hover {
    color: var(--primary-color);
}

.header .header-navigation > ul > li > ul > li:hover > ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.header .header-navigation > ul > li:hover > ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.other-page .header .header-bottom .header-category:hover .navigation-sub {
    height: 365px;
}

.header .header-bottom .header-category .navigation-sub > ul > li > ul {
    z-index: 5;
    left: 100% !important;
    height: 100%;
    opacity: 0 !important;
    top: 0;
    visibility: hidden !important;
    pointer-events: none !important;
}

.header .header-bottom .header-category .navigation-sub > ul > li:hover > ul {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}


.header .header-navigation > ul > li:hover > a {
    color: var(--bs-gray-300);
}

.header .header-navigation > ul > li > a > i {
    transition: var(--transition);
}

.header .header-navigation > ul > li:hover > a i {
    transform: rotate(180deg);
}

.header .header-overlay {
    background: rgb(0 0 0 / 91%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-home .header .header-bottom .header-category .navigation-sub {
    background-color: var(--bs-white);
    position: absolute;
    left: 0;
    width: 215px;
    top: 100%;
    z-index: 2;
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
    box-sizing: border-box;
    height: 365px;
}


.other-page .header .header-bottom .header-category .navigation-sub > ul,
.page-home .header .header-bottom .header-category .navigation-sub > ul {
    overflow-y: auto;
    height: 100%;
}


.page-home .header .header-bottom .header-category .navigation-sub > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.is-navigation .header .header-overlay,
.is-category .header .header-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.close-navigation {
    background-color: transparent;
    border: 1px solid transparent !important;
    color: var(--bs-black);
    font-size: 25px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.section-hero .slider-button {
    width: 50px;
    height: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    color: rgb(97 104 111);
    opacity: 0;
}

.section-hero .slider-button_prev {
    left: -25px;
}

.section-hero .slider-button_prev i {
    margin-left: 17px;
}

.section-hero .slider-button_next {
    right: -25px;
}

.section-hero .slider-button_next i {
    margin-right: 17px;
}

.section-hero__banner:hover .slider-button {
    opacity: 1;
}

.hero-item .hero-item_image video,
.hero-item .hero-item_image img {
    width: 100% !important;
    height: auto !important;
    vertical-align: middle;
}


.hero-content .hero-content_title {
    color: var(--bs-white);
    font-size: 1.8em;
}

.hero-content .hero-content_desc {
    font-size: 1.2em;
    color: var(--bs-white);
    line-height: 24px;
}

.hero-content .hero-content_desc p:last-child,
.hero-content .hero-content_desc ul:last-child,
.hero-content .hero-content_desc ol:last-child {
    margin-bottom: 0;
}

.hero-content .button-theme {
    font-size: 13px;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item {
    font-size: 1.075em;
    position: relative;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a {
    text-transform: capitalize;
    color: var(--bs-gray-700);
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a:hover {
    color: var(--primary-color);
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item + .breadcrumb-item {
    padding-left: 12px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-gray-700) !important;
}

.section-pagination {
    margin-top: 30px;
}

.section-pagination .pagination .page-item .page-link {
    outline: none !important;
    box-shadow: none !important;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-gray-200);
    color: var(--bs-gray-700);
    font-weight: 600;
    border: 0;
    font-size: 13px;
    transition: var(--transition);
}

.section-pagination .pagination .page-item.pageactive .page-link,
.section-pagination .pagination .page-item .page-link:hover {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.empty-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    padding: 15px;
    font-size: 1.25em;
    color: var(--bs-gray-700);
}

.page-article .article-content .article-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;

}

.page-article .article-content .article-meta {
    color: var(--bs-gray-600);
    position: relative;
}

.page-article .article-content .article-meta .article-meta_item + .article-meta_item {
    padding-left: 8px;
}

.page-article .article-content .article-meta .article-meta_item + .article-meta_item:before {
    color: #c0c4cb;
    margin-right: 8px;
    content: "|";
    position: relative;
    top: -1px;
}

.page-article .article-content .article-desc {
    background-color: #eee;
    padding: 20px;
    border-radius: 8px;
    font-style: italic;
    margin-top: 30px;
}

.sidebar-right .sidebar-heading .heading-title-2 {
    font-weight: 700;
    font-size: 1.4em;
    padding-bottom: 5px;
    position: relative;
}

#detailContent img {
    max-width: 100% !important;
    height: auto !important;
}

#detailContent iframe,
#detailContent video {
    max-width: 100% !important;
}

#detailContent strong,
#detailContent b {
    font-weight: 700 !important;
}

#detailContent h1,
#detailContent h2,
#detailContent h3,
#detailContent h4,
#detailContent h5,
#detailContent h6,
#detailContent strong {
    font-weight: 700 !important;
    margin-bottom: 1rem;
}

#detailContent h1 {
    font-size: 1.5em;
}

#detailContent h2 {
    font-size: 1.45em;
}

#detailContent h3 {
    font-size: 1.4em;
}

#detailContent h4 {
    font-size: 1.35em;
}

#detailContent h5 {
    font-size: 1.3em;
}

#detailContent h6 {
    font-size: 1.25em;
}

.slider-related .slider-button_next,
.slider-related .slider-button_prev {
    background-color: var(--primary-color);
    color: var(--bs-white);
    width: 40px;
    height: 40px;
    font-size: 1.5em;
}

.slider-related .slider-button_next:hover,
.slider-related .slider-button_prev:hover {
    background-color: var(--primary-hover);
}

.slider-related .slider-button_next {
    right: -45px;
}

.slider-related .slider-button_prev {
    left: -45px;
}


footer {
    padding-top: 50px;
    background-color: #9d0404;
    color: var(--bs-gray-200);
    font-size: 15px;
}

.footer-contact .icon {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: var(--primary-hover);
}

.footer-contact .title {
    color: var(--bs-white);
    opacity: 0.85;
}

.footer-contact .text:hover {
    color: var(--bs-gray-200) !important;
}

.footer-column__title {
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: capitalize;
    font-size: 1.3em;
}

.footer-text > li > a {
    color: var(--bs-white);
    transition: var(--transition);
    opacity: 0.85;
    width: max-content;
    position: relative;
    display: inline-flex;
}

.footer-text > li > a::before,
.footer-text > li > a::after {
    position: absolute;
    content: '';
    background-color: var(--bs-white);
    transition: all 300ms ease;
    opacity: 0;
}

.footer-text > li > a::before {
    width: 5px;
    height: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: -15px;
    bottom: 0;
    top: 50%;
}

.footer-text > li > a::after {
    left: 0;
    width: 0;
    bottom: 0;
    height: 1px;
    background-color: #ffffff73;
    opacity: 1;
}

.footer-text > li > a:hover::after {
    width: 100%;
}

.footer-text > li > a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-text > li > a:hover {
    opacity: 1;
    padding-left: 10px;
}

.footer-social > a {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bs-white);
    transition: var(--transition-default);
}

.footer-social > a:hover {
    background-color: var(--bs-white);
    color: var(--primary-color);
}

.footer-copyright {
    padding: 12px 0;
    color: var(--bs-gray-200);
    font-size: 14px;
    border-top: 1px solid rgba(253, 248, 248, 0.3);
}

.section-pagination__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-pagination__wrap {
    font-size: 13px;
}

.section-pagination__wrap .progressbar {
    width: 200px;
}

.section-pagination__wrap .swiper-pagination-progressbar.swiper-pagination-horizontal {
    position: unset !important;
    background-color: rgba(51, 51, 51, .25);
    height: 1px;

}

.section-pagination__wrap .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: #000000;
}

.scroll-top {
    position: fixed;
    right: 15px;
    bottom: 40px;
    border-radius: 5px;
    height: 38px;
    width: 38px;
    background-color: var(--secondary-color);
    color: var(--bs-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.1em;
    z-index: 5;
    box-shadow: 10px 6px 14px -17px rgb(24 39 75 / 59%), 0 10px 32px -4px rgba(24, 39, 75, 0.1);
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    border: 1px solid transparent;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.is-show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--secondary-hover);
}

.floating-hotline {
    position: fixed;
    display: block;
    color: #fff;
    left: 20px;
    bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 15px 8px 8px;
    border-radius: 15px;
    overflow: hidden;
    width: auto;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-box-shadow: 1.392px 9.903px 10px 0 rgba(66, 97, 234, .21);
    box-shadow: 1.392px 9.903px 10px 0 rgba(66, 97, 234, .21);
}

.floating-hotline.is-show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.floating-hotline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ab0918, #e93647 50%, #ab0918);
    background-size: 300% 300%;
    border: none;
    -webkit-animation: liner-bg 3s infinite;
    animation: liner-bg 3s infinite;
    z-index: -1
}

@-webkit-keyframes liner-bg {
    0% {
        background-position: 0 0
    }

    50% {
        background-position: 100% 100%
    }

    to {
        background-position: 0 0
    }
}

@keyframes liner-bg {
    0% {
        background-position: 0 0
    }

    50% {
        background-position: 100% 100%
    }

    to {
        background-position: 0 0
    }
}

.floating-hotline:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background-color: transparent;
    border: 1px solid var(--bs-white);
    border-radius: 12px;
}

.floating-hotline svg {
    width: 30px;
    height: 35px
}

.floating-hotline svg path {
    fill: white;
}

.floating-hotline span,
.floating-hotline svg {
    position: relative;
    display: inline-block;
    vertical-align: middle
}


.floating-hotline:hover {
    color: var(--bs-white);
}

.detail-product__images .image-thumb .image-item {
    height: 100px;
    border: 1px solid var(--bs-gray-400);
    transition: var(--transition-default);
    opacity: 0.8;
}

.detail-product__images .image-thumb .image-item:hover,
.detail-product__images .swiper-slide-thumb-active .image-item {
    border: 1px solid var(--primary-color);
    opacity: 1;
    cursor: pointer;
}

.detail-product .section-heading .heading-title {
    font-size: 2em;
}

.detail-product__price .price {
    font-size: 1.8em;
}

.detail-product__price .price-sale {
    font-size: 1.2em;
    color: var(--bs-gray-600);
}

.detail-product__price .price-sale .label {
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

.detail-product .detail-product__description ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--bs-gray-700);
}

.detail-product .detail-information_quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.detail-product .detail-information_quantity .detail-information_quantity__item .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.detail-product .detail-information_quantity .detail-information_quantity__item + .detail-information_quantity__item {
    margin-left: 15px;
}

.detail-product__item {
    transition: var(--transition-default);
    background-color: rgb(var(--secondary-rgb), 0.03);
    color: var(--bs-gray-700);
    width: 49%;
    border: 1px solid var(--bs-gray-400);
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
}

.detail-product__item .price {
    font-size: 15px;
    margin-top: auto;
}

.detail-product__item:hover,
.detail-product__item.active {
    border: 1px solid var(--secondary-color);
    color: var(--bs-gray-800);
}

.detail-product__promotion,
.detail-product .detail-product__description {
    border: 1px dashed var(--primary-color);
    padding: 30px 20px 10px 20px;
}

.detail-product__promotion .title,
.detail-product .detail-product__description .title {
    position: absolute;
    top: -20px;
    left: 20px;
    width: max-content;
    padding: 6px 15px;
    border-radius: 5px;
}

.detail-product__promotion ul,
.detail-product .detail-product__description ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 5px;
}

.detail-product__promotion ul li,
.detail-product .detail-product__description ul li {
    position: relative;
    padding-left: 20px;
}

.detail-product__promotion ul li::before,
.detail-product .detail-product__description ul li::before {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.detail-product__contact .title {
    font-size: 1.15em;
}

.detail-product__contact .image {
    max-width: 180px;
    width: 100%;
}

.detail-product__contact .contact-item {
    background-color: var(--primary-color);
    padding: 10px 10px;
    text-align: center;
    color: var(--bs-white);
    border-radius: 5px;
    font-weight: 700;
    max-width: 250px;
    width: 100%;
}

.detail-product__contact .contact-item:hover {
    background-color: var(--primary-hover);
}

.product-card {
    border-radius: 10px;
    border: 1px solid #ede8e8;
}

.product-card__title {
    font-size: 1.15em;
    font-weight: 700;
}

.product-card__price {
    font-size: 15px;
}

.product-card__price .price {
    font-size: 1.1em;
}

.product-card__price .price-sale {
    color: var(--bs-gray-600);
}

.product-card__utility {
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    padding: 5px;
    border-radius: 5px;
    height: calc(1.6em * 4);
    overflow: hidden;
}

.product-card__utility ul {
    list-style: none;
    margin: 0;
    padding-left: 5px;
    font-size: .93em;
}

.product-card__utility ul li {
    margin-bottom: 5px;
    overflow: hidden;
    white-space: nowrap;
}

.product-card__utility ul li b,
.product-card__utility ul li strong {
    min-width: 40px;
    display: inline-block;
    color: #111111;
}

.product-card .label {
    border-radius: 30px;
    padding: 3px 12px;
    width: max-content;
    top: 15px;
    left: 15px;
    font-size: 12px;
}

.product-card:hover {
    border: 1px solid rgb(var(--primary-rgb), 0.5);
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-card:hover .product-card__title {
    color: var(--bs-gray-800);
}

.sidebar-filter {
    border: 1px solid var(--bs-gray-300);
}

.sidebar-filter .search-clear {
    color: #0153ab;
    font-size: 14px;
}

.sidebar-filter .search-clear:hover {
    color: var(--primary-hover);
}

.sidebar-filter .sidebar-filter_close {
    width: 28px;
    height: 28px;
    background-color: var(--red-main);
    color: var(--bs-white);
}

.sidebar-filter .sidebar-filter_close:hover {
    background-color: var(--primary-hover);
}

.sidebar-filter .sidebar-filter_close:hover i {
    transform: rotate(180deg);
}

.sidebar-filter .sidebar-filter_header {
    padding: 15px;
    border-bottom: 1px solid var(--bs-gray-300);
    width: 100%;
    font-size: 15px;

}

.sidebar-filter .sidebar-filter_header .sidebar-filter_title {
    color: var(--bs-gray-700) !important;
}

.sidebar-filter .sidebar-filter_body {
    padding: 15px;
}

.sidebar-filter .sidebar-filter_item:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bs-gray-200);
}

.sidebar-filter .sidebar-filter_title {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5px;
}

.sidebar-filter .sidebar-filter_select .form-select {
    font-size: 14px;
    border-radius: 25px;
    padding: 7px 12px;
}

.sidebar-filter .toggle-arrow {
    width: 20px;
    height: 18px;
    font-size: 12px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-gray-200);
    color: var(--bs-gray-700);
}

.sidebar-filter .toggle-arrow[aria-expanded='true'] {
    color: var(--bs-gray-700);
}

.sidebar-filter .toggle-arrow[aria-expanded='true'] i {
    transform: rotate(180deg);
}

.sidebar-filter .sidebar-filter_body .sidebar-filter_item__radio .sidebar-filter_expand {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #F1F5F9;
}


.sidebar-filter .sidebar-filter_body .sidebar-filter_expand {
    text-align: center;
    line-height: 1;
    margin-top: 5px;
}

@keyframes bgZoomIn {
    from {
        transform: scale(0.9);
    }

    to {
        transform: scale(1);
    }
}

.section-sort .product-sort {
    width: 260px;
    color: var(--bs-gray-700);
}

.section-sort .title {
    padding: 10px 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-gray-300);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-default);
}

.section-sort .list-price-sort {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    z-index: 11;
    background-color: var(--bs-white);
    padding: 10px;
    border-radius: 5px;
    transform: translateY(3px);
    box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sort .list-price-sort {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-sort.sort .title {
    border: 1px solid var(--primary-color);
}

.section-sort .list-price-sort > li {
    padding: 4px 0;
}

.section-sort .list-price-sort > li > a {
    padding: 9px 16px;
    font-size: 14px;
    display: flex;
    transition: var(--transition-default);
    color: var(--bs-gray-800);
    border-radius: 30px;
}

.section-sort .list-price-sort > li > a.active {
    color: var(--primary-color);
}

.section-sort .list-price-sort > li:hover > a {
    background: var(--primary-color-10);
    color: var(--primary-color);
}

.section-sort .list-price-sort > li {
    border-radius: 5px;
}

.section-sort .list-price-sort > li:not(:last-child) {
    border-bottom: 1px solid var(--bs-gray-200);
}

.filter-button {
    border-radius: 30px;
    padding: 5px 28px;
    height: 39px;
    background-color: var(--primary-color);
    color: var(--bs-white);
    border: 1px solid var(--primary-color);
}

.filter-button:hover,
.filter-button.article {
    background-color: var(--primary-color);
    color: var(--bs-white);
}

.bg-overlay {
    height: 100vh;
    overflow: hidden;
    background-color: rgb(23 24 26 / 83%);
    backdrop-filter: blur(4px);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.show-filter .bg-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidebar-category {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    height: 100%;
    background-color: var(--bs-white);
    border-right: 1px solid rgba(119, 119, 119, 0.12);
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 60px;
    width: 100%;
}

.card-article-2 {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
}

.dot-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -5px;
    margin-left: -22px;
    text-align: center;
    z-index: 3;
}

.dot-animation:after,
.dot-animation:before {
    content: ""
}

.dot-animation:after,
.dot-animation:before,
.dot-animation span {
    display: inline-block;
    margin-right: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    vertical-align: middle;
    opacity: 0;
    transition: opacity .2s ease;
    animation: wd-fadeOutRight .3s ease
}

.dot-animation:after {
    margin-right: 0
}

.dot-animation span {
    transition-delay: .1s;
    animation-delay: .1s
}

.dot-animation:before {
    transition-delay: .15s;
    animation-delay: .15s
}

@keyframes wd-fadeOutRight {
    from {
        transform: none
    }

    to {
        transform: translate3d(50px, 0, 0)
    }
}

.card-article-2:hover .dot-animation:after,
.card-article-2:hover .dot-animation:before,
.card-article-2:hover .dot-animation span,
.article-card:hover .dot-animation:after,
.article-card:hover .dot-animation:before,
.article-card:hover .dot-animation span {
    opacity: 1;
    animation: wd-fadeInLeft .3s ease
}

@keyframes wd-fadeInLeft {
    from {
        transform: translate3d(-50px, 0, 0)
    }

    to {
        transform: none
    }
}

.card-article-2:hover .dot-animation:before,
.article-card:hover .dot-animation:before {
    transition-delay: .2s;
    animation-delay: .2s
}

.card-article-2:hover .dot-animation span,
.article-card:hover .dot-animation span {
    transition-delay: .1s;
    animation-delay: .1s
}


.card-article-2__image:after,
.article-card__image:after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity .7s ease;
}

.card-article-2:hover .card-article-2__image:after,
.article-card:hover .article-card__image:after {
    opacity: 1;
}

.article-card__image {
    width: 150px;
}

.card-article-2__title,
.article-card__title {
    font-weight: 700;
    font-size: 1.2em;
    color: var(--bs-gray-800);
    transition: var(--transition);
    display: flex;
}

.article-card__title {
    font-size: 1.1em;
}

.card-article-2__title {
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-article-2__title:hover,
.article-card__title:hover {
    color: var(--primary-color);
}

.card-article-2__date,
.article-card__date {
    font-size: 13px;
    color: var(--bs-gray-700);
}

.card-article-2:hover .card-article-2__image img,
.article-card:hover .article-card__image img {
    transform: scale(1.1);
    opacity: 0.9;
}

.card-article-2:hover .card-article-2__title,
.card-article-2__title:hover {
    color: var(--primary-color);
}

.card-article-2__text {
    color: var(--bs-gray-600);
    line-height: 1.5;
}

.view-all {
    position: relative;
    border-radius: 5px;
    color: var(--bs-white);
    padding: 6px 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    width: max-content;
    overflow: hidden;
    background-color: var(--primary-color);
    border: 1px solid transparent;
}

.view-all:hover {
    color: var(--bs-white);
    background-color: var(--primary-hover);
}

.view-all:hover i {
    transform: translateX(5px);
}

.modal-theme__close {
    width: 30px;
    height: 30px;
    top: -10px;
    right: -10px;
}

.modal-theme__header {
    padding: 50px 20px 40px 20px;
    background-repeat: no-repeat;
    background-size: cover;
}

.modal-theme__header .heading-title-2 {
    font-size: 1.6em;
}

.modal-theme__header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgb(28 26 26 / 59%);
}

.form-group .form-label {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
}

.form-group .form-control {
    height: 43px;
    padding: 5px 10px 5px 50px;
    border-radius: 5px;
    font-size: 14px;
}

.form-group .form-control[readonly] {
    pointer-events: none;
    background-color: var(--bs-gray-100);

}

.form-group textarea.form-control {
    height: unset;
    padding: 15px;
    resize: none;
}

.form-group .icon {
    position: absolute;
    top: 5px;
    left: 5px;
    bottom: 5px;
    width: 35px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-gray-200);
    color: var(--bs-gray-700);
    border-radius: 3px;
    font-size: 12px;
}

.floating-contact {
    position: fixed;
    right: 0;
    bottom: 95px;
    z-index: 11;
    border: 1px solid var(--bs-gray-200);
    border-radius: 8px 0 0 8px;
    padding: 10px 5px;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}


.floating-contact .floating-item {
    color: var(--text-color);
    font-size: 13px;
}

.floating-contact .floating-item.scroll-top__mobile {
    display: none !important;
}

.floating-contact .floating-item:hover {
    color: var(--primary-color);
}

.floating-contact .floating-item .icon,
.floating-contact .floating-item .image {
    width: 38px;
    height: 38px;
    color: var(--bs-white);
    background-color: var(--primary-color);
}

.floating-contact .floating-item .image {
    background-color: transparent;
}

.floating-contact .floating-item .image img {
    width: 25px;
    height: 28px;
}

.floating-contact .floating-item.hotline .icon::after,
.floating-contact .floating-item.hotline .icon::before {
    position: absolute;
    content: '';
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--primary-color);
    -webkit-animation: kfPhoneFixed 1.5s infinite ease-in-out;
    animation: animationPhone 1.5s infinite ease-in-out;
}

.floating-contact .floating-item.hotline .icon::before {
    border: 2px solid var(--primary-color);
    -webkit-animation: kfPhoneFixed2 1.5s infinite ease-in-out;
    animation: animationPhone2 1.5s infinite ease-in-out;
    background-color: transparent;
}

@keyframes animationPhone2 {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        transform: rotate(0) scale(0.5) skew(1deg);
        opacity: .1;
    }

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1;
    }
}

@keyframes animationPhone {
    0%, 100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .3;
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .3;
    }
}

.floating-contact .floating-item:hover .icon i {
    transform: scale(1.1);
}

.page-contact .image-bg {

}

.page-contact .contact-iframe iframe {
    width: 100% !important;
    height: 370px !important;
    border-radius: 10px;
}

.page-contact .contact-list {
    padding: 35px;
    border-radius: 15px;
    background-color: var(--primary-color);
}

.page-contact .contact-list > li + li {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px dashed rgba(211, 217, 216, 0.45);
}

.page-contact .contact-list > li .icon {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-color: var(--bs-white);
    color: var(--primary-color);

}

.page-contact .contact-list > li .title {
    color: var(--bs-gray-200);
    font-weight: 500;
}

.page-contact .contact-list > li .text {
    color: var(--bs-gray-800);
    font-size: 15px;
}

.card-feedback {
    padding: 35px 35px 30px 35px;
    background: linear-gradient(119.44deg, rgba(220, 233, 226, 1) 47.06%, rgba(255, 231, 219, 1) 100%);
}

.card-feedback__star i {
    color: #E19342;
    font-size: 15px;
}

.card-feedback__image {
    width: 70px;
    height: 70px;
}

.card-feedback__text {
    font-size: 1.15em;
    color: var(--bs-gray-700);
}

.card-feedback__title {
    font-size: 1.15em;
}

.card-feedback__desc {
    font-size: 1.05em;
    color: var(--bs-gray-700);
}

.card-feedback__bottom {
    border-top: 1px dashed #8080802b;
}

.gallery-item:hover {
    opacity: 0.8;
}

/*# section-product */

.section-product .product-main {
    background: radial-gradient(circle, rgba(230, 60, 65, 1) 0%, rgba(183, 8, 15, 1) 70%);
    border-radius: 20px;
    padding: 10px;
}

.section-product .section-heading {
    position: absolute;
    top: -3%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: none !important;
}

.section-product .section-heading .heading-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--bs-white);
}

.section-product .section-heading::before,
.section-product .section-heading::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40px;
    height: 22px;
    background-color: var(--primary-color);
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.section-product .section-heading::before {
    left: -13%;
    border-radius: 20px 0 0 0;
}

.section-product .section-heading::after {
    right: -13%;
    border-radius: 0 20px 0 0;
}

.section-product .section-heading .heading-top {
    background: var(--primary-color);
    width: 300px;
    text-align: center;
    padding: 10px 20px;
    border-radius: 0 0 30px 30px;
}

/* brand*/

.section-brand .brand-main {
    background: #E0E0E0;
    border-radius: 10px;
    padding: 10px;
}

.section-brand .brand-main .brand-box img {
    border-radius: 10px;
}


/* section-usage */

.section-usage .usage-box .box-image {
    border: 1px solid #e1e1e1;
    border-radius: 100%;
    padding: 10px;
    background: #fff;
    height: 56px;
    width: 56px;
}
.section-usage .usage-box .usage-box__title{
    transition: .3s all ease-in-out;
}

.section-usage .usage-box:hover .usage-box__title{
    color: var(--primary-color);
}

/* category-product */

.category-product .section-product_category {
    padding: 50px 0;
}

.category-product .section-product_category .section-heading {
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--primary-color);
    position: relative;
}

.category-product .section-product_category .section-heading .heading-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bs-white) !important;
}

.category-product .section-product_category .section-heading::before,
.category-product .section-product_category .section-heading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--bs-white);
    border-radius: 50%;
}

.category-product .section-product_category .section-heading::before {
    top: 31%;
    left: -15px;
}

.category-product .section-product_category .section-heading::after {
    top: 31%;
    right: -15px;
}


.page-productCha .main-product .section-heading {
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: var(--primary-color);
    position: relative;
}

.page-productCha .main-product .section-heading .heading-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--bs-white) !important;
}

.page-productCha .main-product .section-heading::before,
.page-productCha .main-product .section-heading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--bs-white);
    border-radius: 50%;
}

.page-productCha .main-product .section-heading::before {
    top: 31%;
    left: -15px;
}

.page-productCha .main-product .section-heading::after {
    top: 31%;
    right: -15px;
}


.section-introduction .section-introduce__image:after {
    position: absolute;
    content: '';
    left: 22px;
    bottom: 19px;
    height: 80%;
    width: 80%;
    background-color: #e5f2ff;
    border-radius: 10px;
    z-index: 1;
}

.section-introduction .section-introduce__image > img {
    position: relative;
    z-index: 2;
}

.section-introduction .section-introduce__layer {
    font-weight: 500;
    padding: 20px 30px;
    font-size: 16px;
    color: var(--bs-gray-700);
    border-radius: 15px;
    z-index: 3;
}

.section-introduce__layer .icon {
    width: 60px;
    height: 60px;
}

.section-introduce__layer .number {
    font-weight: 600;
    font-size: 2em;
    font-family: "Oswald", sans-serif;
}


/*=============================
         theme-modal
=============================*/
.theme-modal__close {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 3;
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-red);
    color: var(--bs-white);
    transition: var(--transition);
}

.theme-modal__close:hover {
    opacity: 0.8;
}
