.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: 50px 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;
    position: relative;
}

.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.6 !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;
    position: relative;
    padding: 7px;
    width: max-content;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.section-heading .heading-title {
    margin-bottom: 0;
    font-size: 2em;
    font-weight: 700;
    font-family: var(--font-heading);
}

.section-heading .heading-title span {
    color: var(--primary-color);
}

.section-heading .heading-sub span {
    position: absolute;
    display: block;
    border: solid 1.2px var(--primary-color);
    width: 7px;
    height: 7px;
}

.section-heading .heading-sub span:nth-child(1) {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.section-heading .heading-sub span:nth-child(2) {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.section-heading .heading-sub span:nth-child(3) {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.section-heading .heading-sub span:nth-child(4) {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}


.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;
}

.header {
    z-index: 10;
    transition: top .3s, left .3s, right .3s, background .3s, box-shadow .3s;
    position: fixed !important;
    margin: 20px;
    top: 0;
    left: 0;
    width: 100%;
    animation: header-scroll 0.5s forwards;
}

.header.is-scrolled {
    animation: header-scrolled 1 500ms ease backwards;
}

.header .header-bottom .header-wrap {
    padding: 12px 30px;
    border-radius: 20px;
}

.other-page .header {
    position: relative !important;
    margin: 0;
    background: var(--bs-white);
}

.other-page .header .header-bottom .header-wrap {
    padding: 0 !important;
}

.page-home .header.is-scroll {
    margin: 0 !important;
    background: var(--bs-white);
    box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
}

.header.is-scroll .header-bottom .header-wrap {
    padding: 0 !important;
}

.other-page .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;
    }
}

@media (min-width: 50px) and (max-width: 100px) {
    .heading-top {
        margin-top: 60px;
    }
}


@keyframes header-scrolled {
    0% {
        transform: translateY(-100%);
        background-color: var(--bs-white);
    }
    1% {
        background-color: transparent;
    }
    100% {
        transform: translateY(0);
    }
}

.header-logo {
    width: 110px;
}

.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 > 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: 700;
    width: 100%;
    transition: var(--transition);
    font-family: var(--font-heading);

}

.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-dark);
    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;
    overflow: hidden;
}

.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%;
    tab-index: unset;
}


.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-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
===========================================*/

.section-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 63%);
    z-index: -1;
}

.section-breadcrumb .breadcrumb-title {
    font-size: 1.7em;
    font-weight: 700;
    line-height: 1.5;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item {
    color: var(--bs-white);
    font-size: 1em;
    position: relative;
    text-transform: uppercase;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white) !important;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a {
    color: var(--bs-white);
    font-weight: 400;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a:hover {
    color: var(--primary-hover);
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item + .breadcrumb-item {
    padding-left: 5px;
}

.section-breadcrumb__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.section-breadcrumb__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: breadcrumb-cinematic 3s cubic-bezier(.22, .61, .36, 1);
    will-change: transform, filter, opacity;
}

.section-breadcrumb__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


@keyframes breadcrumb-cinematic {
    0% {
        transform: scale(1.15) translateY(20px);
        filter: blur(6px);
        opacity: 0;
    }
    60% {
        filter: blur(1px);
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}


.section-breadcrumb__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    padding: 80px 1em;
}

.breadcumb-overlay {
    position: absolute;
    inset: 0;
    left: -10%;
}

/*======================================
        section-pagination
===========================================*/


.section-pagination {
    margin-top: 30px;
    padding: 10px;
}

.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;
    collapse: unset;
}

.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: #091932;
    color: var(--bs-gray-200);
    font-size: 15px;
    margin: 15px;
    border-radius: 30px;
}

footer .decor-left {
    width: 200px;
    left: 30px;
    animation: animation-footer 2s ease-in-out infinite;
}

@-webkit-keyframes animation-footer {
    0% {
        -webkit-transform: translate(0, 0px);
    }
    65% {
        -webkit-transform: translate(0, 15px);
    }
    100% {
        -webkit-transform: translate(0, 0px);
    }
}

@-moz-keyframes animation-footer {
    0% {
        -moz-transform: translate(0, 0px);
    }
    65% {
        -moz-transform: translate(0, 15px);
    }
    100% {
        -moz-transform: translate(0, 0px);
    }
}

.footer-contact .icon {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: var(--primary-color);
}

.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;
    font-family: var(--font-heading);
}

.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-column ul > li > a,
.footer-contact a,
.footer-copyright a {
    color: var(--bs-gray-300);
}

.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-map iframe {
    height: 200px;
    border-radius: 3px;
    width: 100%;
}

.footer-top .footer-column {
    border-left: 1px solid #FFFFFF1A;
}

.contact-item + .contact-item {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #FFFFFF1A;
}

.footer-copyright {
    padding: 12px 0;
    color: var(--bs-gray-200);
    font-size: 14px;
}

.footer-bottom {
    background-color: #FFFFFF0D;
}

.footer-logo {
    width: 130px;
}

.footer-social > a {
    width: 40px;
    height: 40px;
    font-size: 1.3em;
    background-color: #FFFFFF1A;
}

.footer-social > a:hover {
    background-color: var(--secondary-color);
}

.footer-form .form-control {
    border: 1px solid transparent;
    height: 50px;
    width: 350px;
    border-radius: 30px !important;
    color: var(--bs-gray-200);
    padding: 0 15px !important;
    background-color: #FFFFFF30;
}

.footer-form .form-control::placeholder {
    color: var(--bs-gray-300);
}

.footer-form .button-form {
    width: 45px;
    height: 45px;
    font-size: 1.2em;
}

.form-group .form-label {
    margin-bottom: 0 !important;
}

.footer-form .button-form:hover {
    background-color: var(--secondary-color) !important;
}

.contact-item + .contact-item {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #FFFFFF1A;
}

.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;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: conic-gradient(var(--bs-white) 0%, var(--secondary-color) 0%);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 10px 6px 14px -17px rgb(24 39 75 / 59%), 0 10px 32px -4px rgba(24, 39, 75, 0.1);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.scroll-top.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.scroll-top span {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    background-color: var(--secondary-color);
    color: var(--bs-white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.5em;
    font-weight: 600;
}

.scroll-top:hover span {
    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__right .contact-item,
.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__right .contact-item:hover,
.detail-product__contact .contact-item:hover {
    background-color: var(--primary-hover);
}

.detail-product__contact .text p {
    margin-bottom: 0;
}

.product-card {
    will-change: transform;
    border-radius: 10px;
    border: 1px solid #ede8e8;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.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(2em * 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);
}

.article-card {
    font-size: 15px;
}

.article-card__date {
    padding: 5px 15px;
    font-size: 0.9em;
    background-color: rgb(var(--primary-rgb), 0.1);
    border-radius: 0 0 5px 5px;
}

.article-card__title {
    font-size: 1.1em;
    line-height: normal;
    color: var(--bs-gray-800);
}

.article-card__link {
    font-size: 14px;
}

.article-card:hover .article-card__title {
    color: var(--primary-color);
}

.article-card:hover .article-card__link i {
    transform: translateX(3px);
}

.box-img img {
    transition: 0.6s;
}

.box-img img:first-child {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.box-img img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    z-index: 2;
}

.box-img:hover img:first-child {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.box-img:hover img:last-child {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.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);
}

/*=============================
         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;
}

.tab-wrapper {
    transform: translateY(-70px);
    z-index: 2;
    position: relative;
    padding: 30px 20px;
    border-radius: 30px;
    box-shadow: 0px 5px 50px 2px #00000012;
}

.tab-wrapper .tab-items {
    height: 100%;
    position: relative;
    padding: 0 20px;
}


.row > .col:not(:last-child) .tab-items::after {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: 0;
    width: 1px;
    background: #d9d9d9;
}

.tab-wrapper .tab-items .tab-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.tab-wrapper .tab-items .tab-content {
    font-weight: 700;
    font-size: 1.3em;
    text-transform: capitalize;
}

.section-introduction .decor-1 {
    opacity: 0.2;
    z-index: 1;
    filter: grayscale(100%);
}

.section-introduction .decor-1 img {
    animation: jumpAni 3s linear infinite;
}

@keyframes jumpAni {
    0% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}

.section-why .card-why {
    margin-top: 50px;
    border: 1px solid #EEEEEE;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 0px 50px 2px;
    padding: 50px 30px 30px;
    border-radius: 30px;

}

.card-why__image {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
            90deg,
            var(--primary-color),
            var(--secondary-color),
            var(--primary-color)
    );
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position .4s ease;
    padding: 20px;
    border-radius: 50%;
}

.section-why .card-why:hover .card-why__image {
    background-position: right center;
}

.card-why__title {
    font-weight: 800;
}

/* ------------------feedback--------------*/

.section-feedback:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    opacity: 0.20;
    border-radius: 50%;
    background-image: radial-gradient(circle closest-side, rgba(var(--primary-rgb), 1) 44%, rgba(255, 255, 255, 1) 100%);
    z-index: 0;
}

.feedback-card {
    padding: 24px 30px 30px 48px;
    border-radius: 12px;
    height: 100%;
}

.feedback-card:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff4f4;
    -webkit-clip-path: polygon(0 10%, 0% 100%, 90% 100%);
    clip-path: polygon(0 10%, 0% 100%, 90% 100%);
    border-radius: 0 0 0 12px;
}

.feedback-card .feedback-card_content {
    position: relative;
    border-radius: 24px;
    padding: 30px 24px 16px;
    background-color: #ecedf7;
    z-index: 2;
}

.feedback-card .feedback-card_content__header {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    width: 100%;
    padding: 0 24px;
}

.feedback-card .feedback-card_content__name {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 14px;
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 600;
}

.feedback-card .feedback-card_content__star {
    background-color: #f7f3f0;
    font-size: 12px;
    border-radius: 50px;
    padding: 6px 12px;
    color: #ffa832;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.feedback-card .feedback-card_content__sub {
    font-size: 15px;
    color: rgb(var(--primary-color));
    font-weight: 700;
    margin-bottom: 6px;
}

.feedback-card .feedback-card_content__desc {
    font-size: 14px;
    color: #121212;
    line-height: 1.5;
    padding-left: 24px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.feedback-card .feedback-card_content__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    bottom: 30px;
    left: -40px;
}

.feedback-card .feedback-card_content__image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loading-wrapper {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.96);
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999999999;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    -webkit-animation-fill-mode: both;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000px;
    transition: transform 0.5s ease, opacity 0.4s ease;
}

.loading-wrapper.hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 40px;
    height: 40px;
    position: relative;
    --c: no-repeat linear-gradient(#0F52BA 0 0);
    background: var(--c) center/100% 10px,
    var(--c) center/10px 100%;
}

.loader:before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--c) 0 0,
    var(--c) 100% 0,
    var(--c) 0 100%,
    var(--c) 100% 100%;
    background-size: 15.5px 15.5px;
    animation: l16 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes l16 {
    33% {
        inset: -10px;
        transform: rotate(0deg)
    }
    66% {
        inset: -10px;
        transform: rotate(90deg)
    }
    100% {
        inset: 0;
        transform: rotate(90deg)
    }
}


/*============section-gallery-========*/

.section-gallery__gird {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 225px);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.section-gallery__gird .item .layer {
    font-size: 1.8em;
    background: rgba(15, 82, 186, 0.41);
    background-blend-mode: color-burn;
    backdrop-filter: blur(8px);
    transition: var(--transition-default);
    opacity: 0;
}

.section-gallery__gird .item .layer svg {
    width: 50px;
    height: 50px;
    opacity: 0;
    transition-delay: 0.2s;
}

.section-gallery__gird .item .layer svg line {
    stroke: var(--bs-gray-100);
}

.section-gallery__gird .item:hover {
    cursor: zoom-in;
}

.section-gallery__gird .item:hover .layer,
.section-gallery__gird .item:hover .layer svg {
    opacity: 1;
}

.section-gallery__gird .item::after {
    background: hsla(0, 0%, 100%, .2);
    border-radius: 0;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0;
    z-index: 1;
}

.section-gallery__gird .item:hover::after {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}

.section-gallery__gird .item:hover img {
    transform: scale(1.1);
}

.section-gallery__gird .item:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}

.section-gallery__gird .item:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
}

.section-gallery__gird .item:nth-child(3) {
    grid-area: 1 / 2 / 3 / 3;
}

.section-gallery__gird .item:nth-child(4) {
    grid-area: 1 / 3 / 2 / 4;
}

.section-gallery__gird .item:nth-child(5) {
    grid-area: 2 / 3 / 3 / 4;
}

.section-gallery__gird .item:nth-child(6) {
    grid-area: 1 / 4 / 2 / 5;
}

.section-gallery__gird .item:nth-child(7) {
    grid-area: 2 / 4 / 4 / 5;
}

.section-gallery__gird .item:nth-child(8) {
    grid-area: 3 / 5 / 4 / 6;
}

.section-gallery__gird .item:nth-child(9) {
    grid-area: 1 / 5 / 3 / 6;
}

.section-gallery__gird .item:nth-child(10) {
    grid-area: 3 / 3 / 4 / 4;
}

.section-gallery__gird .item:nth-child(11) {
    grid-area: 3 / 1 / 4 / 3;
}

