.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: 9px 22px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-flex;
    vertical-align: middle;
    text-align: center;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: var(--transition-default);
    font-size: 1.1em;
    overflow: hidden;

}

.button-theme span {
    position: relative;
    z-index: 2;
}

.button-theme i {
    margin-right: .25rem;
    font-size: 1.1em;
}

.button-theme.button-theme_large {
    padding-top: 18px;
    padding-bottom: 18px;
}

.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-color);
}

.button-theme.button-theme_primary:hover i {
    color: var(--bs-white);
    animation: translate-x 0.25s ease-in-out forwards;
}

@keyframes translate-x {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50%);
        opacity: 0;
    }
    51% {

        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

.button-theme.button-theme_primary > i {
    color: var(--bs-white);
    transition: var(--transition-default);
}

.button-theme.button-theme_outline {
    background-color: var(--bs-white);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.button-theme.button-theme_outline svg path {
    fill: var(--primary-color);
}

@media (max-width: 992px) {
    .button-theme {
        font-size: 0.95em;
        padding: 8px 18px;
    }
}

.slider-button_next,
.slider-button_prev {
    background-color: rgba(255, 255, 255, 0.1);
    height: 52px;
    width: 52px;
    font-size: 2.25em;
    transition: var(--transition-default);
}

.slider-button_prev {
    left: 30px;
}

.slider-button_next {
    right: 30px;
}

.slider-button_next:disabled,
.slider-button_prev:disabled {
    opacity: 0;
    visibility: hidden;
    position: relative;
}

.slider-button_next:hover,
.slider-button_prev:hover {
    background-color: var(--primary-hover);
}

.slider-shadow {
    margin: -10px !important;
}

.slider-shadow > .swiper {
    padding: 10px !important;
}

@media (max-width: 992px) {
    .slider-button_next,
    .slider-button_prev {
        width: 42px;
        height: 42px;
        font-size: 1.8em;
    }
}

@media (max-width: 576px) {
    .slider-button_next,
    .slider-button_prev {
        display: none !important;
    }
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading .heading-sub {
    font-size: 1.1em;
    color: var(--bs-gray-800);
    font-weight: 700;
    margin-top: 10px;
}

.section-heading .heading-title {
    margin-bottom: 0;
    font-size: 3.2em;
    font-weight: 500;
    background: var(--text-gradient);
    background-clip: text;
    color: transparent;
    font-family: var(--font-heading);
    text-transform: capitalize;
}

.section-heading .heading-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--bs-gray-700);
    margin-top: 20px;
}

.section-heading .heading-description p:last-child,
.section-heading .heading-description ul:last-child,
.section-heading .heading-description ol:last-child {
    margin-bottom: 0;
}

.section-heading .heading-title-2 {
    margin-bottom: 0;
    font-size: 2.2em;
    font-weight: 800;
}

.section-heading .heading-title-2.heading-line {
    position: relative;
    padding-bottom: 10px;
}

.section-heading .heading-title-2.heading-line::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    height: 2px;
    background-color: var(--primary-color);
    width: 15%;
}

@media (max-width: 1024px) {
    .section-heading .heading-title {
        font-size: 2.8em;
    }

    .section-heading .heading-description {
        font-size: 1em;
    }

    .section-heading .heading-title-2 {
        font-size: 2em;
    }

}

@media (max-width: 576px) {
    .section-heading .heading-title {
        font-size: 2.3em;
    }

    .section-heading .heading-title-2 {
        font-size: 1.7em;
    }

}

/*==============================
           header
=================================*/

.header {
    position: sticky;
    z-index: 12;
    top: 0;
    box-shadow: 0 4px 8px rgb(97 97 97 / 14%), 0 8px 16px rgb(97 97 97 / 14%);
    transition: var(--transition);
    background-color: var(--bs-white);
}

.page-home .header.is-scroll {
    animation: stickySlideDown 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes stickySlideDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-120%);
    }
    100% {
        transform: translateY(0);
    }
}

.header-logo__vietnam {
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-color: var(--bs-white);
    border-left: 7px solid var(--primary-color);
    position: absolute;
    right: 0;
    top: 0;
    width: 12vw;
    height: 100%;
    overflow: hidden;
}

.header-logo__vietnam > img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    -webkit-transform: skewX(20deg);
    -moz-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    -o-transform: skewX(20deg);
    transform: skewX(20deg);
}

.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:focus {
    border: 1px solid transparent;
}

.hamburger-button > span {
    background-color: var(--bs-gray-800);
    height: 2px;
    border-radius: 3px;
    display: flex;
    width: 22px;
}

.header-left {

    flex-shrink: 0;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-color: var(--bs-white);
    border-right: 7px solid var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    width: 18vw;
    height: 100%;
}

.header-logo {
    -webkit-transform: skewX(20deg);
    -moz-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    -o-transform: skewX(20deg);
    transform: skewX(20deg);
    width: 100%;
    height: 100%;
    padding: 5px;
}

.header-logo > img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

.header-right {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 18vw;
    padding-right: 10vw;
}

.header-right__top {
    background-color: var(--primary-color);
    padding: 5px 50px 5px 40px;
}

.header-item .header-title {
    font-weight: 700;
}

.header-item .header-title,
.header-item a,
.header-item .header-phone {
    color: var(--bs-gray-200);
    transition: var(--transition);
}

.header-item .header-phone small {
    font-weight: 500;
}

.header-item .header-phone .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-white);
    color: var(--primary-color);

}

.header-item a:hover {
    color: var(--bs-white);
}

.header-right__bottom {
    background-color: var(--bs-white);
    padding-left: 15px;
    padding-right: 60px;
}

.header .header-navigation > ul {
    display: flex;
    align-items: center;
}


.header .header-navigation > ul > li > a,
.header .header-navigation > ul > li > ul > li > a {
    color: var(--bs-gray-800);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-between;
    font-weight: 700;
    width: 100%;
    transition: var(--transition);

}

.header .header-navigation > ul > li > a {
    white-space: nowrap;
    font-weight: 800;
}

/*.header .header-navigation > ul > li:not(:last-child),*/
.header .header-navigation > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .header-navigation > ul > li > ul > li > a {
    border-left: 3px solid transparent;
}

.header .header-navigation > ul > li > ul > li > a:hover {
    border-left: 3px solid 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:hover > ul {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header .header-navigation > ul > li:hover > a {
    color: var(--primary-color);
}

.header .header-navigation > ul > li > a > i {
    transition: var(--transition);
}

.header .header-navigation > ul > li:hover > a i {
    transform: rotate(180deg);
}

.header-logo__mobile > img {
    width: 100px;
    height: auto;
}

.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;
}

.is-navigation .header .header-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.close-navigation {
    background-color: transparent;
    border: 1px solid transparent !important;
    color: var(--bs-white);
    font-size: 25px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

@media (max-width: 1200px) {
    .header-logo__mobile {
        order: 1;
    }

    .header-logo__vietnam-mobile {
        width: 80px;
        height: 55px;
        order: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-logo__vietnam-mobile > img{
        object-fit: contain;
    }

    .header-hamburger {
        order: 3;
    }

    .page-home .header {
        transform: translateY(0);
    }

    .page-home .header.is-scroll {
        animation: unset;
    }

    .header-left {
        display: none !important;
    }

    .header-right {
        padding-left: 0 !important;
        padding-right: 0;
    }

    .header-right__top {
        padding: 5px 40px;
    }

    .header-right__bottom {
        padding: 0 40px;
    }

    .header-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 400px;
        background-color: rgb(var(--primary-rgb), 0.8);
        height: 100vh;
        z-index: 6;
        transform: translateX(-200%);
        transition: all 0.5s ease-in-out;
        transition-delay: 0.1s;
        padding: 30px 35px;
        backdrop-filter: blur(10px);
    }

    .is-navigation .header-navigation {
        transform: translateX(0);
    }

    .header .header-navigation > ul {
        flex-direction: column;
        margin-top: 50px;
    }

    .header .header-navigation > ul > li {
        width: 100%;
    }

    .header .header-navigation > ul > li > a {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        color: var(--bs-gray-200);
        font-weight: 700;
    }

    .header .header-navigation > ul > li:not(:last-child) {
        border-bottom: 1px solid rgb(244 241 241 / 16%);
    }

    .header .header-navigation > ul > li > ul > li:not(:last-child) {
        border-bottom: 1px solid transparent;
    }

    .header .header-navigation > ul > li > ul {
        background-color: transparent;
        width: 100%;
        border-left: 2px solid rgb(244 241 241 / 61%);
        position: unset !important;
        top: unset !important;
        left: unset !important;
        transform: unset !important;
        opacity: unset;
        pointer-events: unset;
        visibility: unset;
        box-shadow: none !important;
    }

    .header .header-navigation > ul > li:hover > a {
        color: var(--bs-white);
    }

    .header .header-navigation > ul > li > a:hover {
        color: var(--bs-white);
    }

    .header .header-navigation > ul > li > ul > li > a {
        color: var(--bs-gray-200);
        width: 100%;
        padding: 10px 16px;
        font-weight: 500;
    }

    .header .header-navigation > ul > li > ul > li > a:hover {
        border-left: 3px solid transparent;
    }

    .header .header-navigation > ul > li > ul > li ul {

    }
}

@media (max-width: 576px) {
    .header-right__top {
        padding: 5px 20px;
    }

    .header-right__bottom {
        padding: 0 20px;
    }

    .header-item .header-title {
        margin-bottom: 0;
        font-size: 0.9em;
    }
}

@media (max-width: 400px) {
    .header-navigation {
        width: 100%;
        padding: 30px 25px;
    }
}

/*================================
      section-hero
===============================*/
.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_sub > span {
    border-radius: 20px 0;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bs-white);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    font-size: 1.25em;
    display: inline-flex;
}

.hero-content .hero-content_title {
    color: var(--bs-white);
    font-size: 4.3em;
    font-family: var(--font-heading);
}

.hero-content .hero-content_desc {
    font-size: 1.4em;
    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;
}

@media (max-width: 1024px) {
    .hero-content .hero-content_title {
        font-size: 3em;
    }
}

@media (max-width: 992px) {
    .hero-content .hero-content_title {
        font-size: 2.3em;
    }

    .hero-content .hero-content_desc {
        font-size: 1.1em;
    }
}

@media (max-width: 576px) {
    .hero-content {
        display: none !important;
    }
}

/*.======================================
      section-breadcrumb
===========================================*/
.section-breadcrumb {
    background-color: #282f3b;
    padding: 100px 0 40px;
    overflow: hidden;
}

.section-breadcrumb::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #231616a6;
    backdrop-filter: blur(1px);
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item {
    color: var(--bs-white);
    font-size: 1.075em;
    position: relative;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a {
    color: var(--bs-white);
    text-transform: capitalize;
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item > a:hover {
    color: var(--bs-white);
}

.section-breadcrumb .breadcrumb-list .breadcrumb-item + .breadcrumb-item {
    padding-left: 12px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white) !important;
}

.page-detail .section-breadcrumb .breadcrumb-list .breadcrumb-item:last-child {
    display: none;
}

/*.================================
    section-pagination
===================================*/

.section-pagination {
    margin-top: 48px;
}

.section-pagination .pagination .page-item {
    border-radius: 50%;
    min-width: 42px;
    height: 42px;
    border: 0;
    background-color: var(--bs-gray-100);
    color: var(--text-color);
    position: relative;
    box-shadow: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
}

.section-pagination .pagination .page-item .page-link {
    outline: none !important;
    box-shadow: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 0.95em;
    font-weight: 700;
    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-detail
==========================*/

.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: 800;
    font-size: 1.4em;
    padding-bottom: 5px;
    position: relative;
}

.sidebar-right .sidebar-heading .heading-title-2::after {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    height: 2px;
    background-color: var(--primary-color);
    width: 15%;
}

#detailContent img {
    max-width: 100% !important;
    height: auto !important;
}

#detailContent iframe {
    max-width: 100% !important;
}

#detailContent strong {
    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;
}

@media (max-width: 1024px) {
    .page-article .border-end {
        border-right: transparent !important;
    }

    .page-article .article-content .article-title {
        font-size: 1.8em;
    }

    #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;
    }
}

@media (max-width: 576px) {
    .page-article .article-content .article-title {
        font-size: 1.6em;
    }

    #detailContent h1 {
        font-size: 1.35em;
    }

    #detailContent h2 {
        font-size: 1.3em;
    }

    #detailContent h3 {
        font-size: 1.25em;
    }

    #detailContent h4 {
        font-size: 1.2em;
    }

    #detailContent h5 {
        font-size: 1.15em;
    }

    #detailContent h6 {
        font-size: 1.1em;
    }
}

/*==============================
         footer
=================================*/
.footer-decor {
    margin-bottom: -5px;
}

.footer {
    background: var(--primary-color);
    padding-top: 50px;
}

.footer-column__title {
    font-weight: 700;
    margin-bottom: 1em;
    font-size: 1.6em;
    color: var(--bs-gray-100);
    font-family: var(--font-heading);
    letter-spacing: .4px;
}

.footer-column__text,
.footer-column__text a {
    color: var(--bs-gray-200);
}

.footer-column ul > li > a {
    color: var(--bs-gray-200);
    transition: var(--transition);
}

.footer-column ul > li > a:hover {
    color: var(--bs-white);
}

.footer-social > a {
    width: 30px;
    height: 30px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    transition: var(--transition);
}

.footer-social > a:hover {
    color: var(--bs-white);
}

.footer-copyright {
    padding: 12px 0;
    color: var(--bs-gray-200);
    font-size: 0.9em;
    border-top: 1px solid #fdf8f829;
}

@media (max-width: 576px) {
    .footer-column__title {
        font-size: 1.4em;
        margin-bottom: 0.5em;
    }
}

/*===============================
      section-pagination
=============================*/

.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;
}

/*================================
   section-introduction
 ======================================*/

.section-introduction {
    padding: 100px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.section-introduce {
    margin-top: -30px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;

}

.section-introduce .heading-title {
    background: var(--bs-gray-100);
    background-clip: text;
    color: transparent;
    font-weight: 700;
    font-family: var(--font-family);
}

.introduce-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    position: relative;
    color: var(--bs-gray-200);

}

.introduce-item__title {
    font-family: var(--font-heading);
}

.introduce-item__image {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    background: #e27808;
    box-shadow: 0px 1px 4px 0px rgba(124, 134, 159, 0.25);
    padding: 5px;
}

.introduce-item__image > img {
    border-radius: 50%;
}

.col:nth-child(even):not(:last-child) .introduce-item::before {
    content: "";
    width: 123px;
    height: 70px;
    position: absolute;
    right: -85px;
    z-index: 5;
    top: 45px;
    background: url('/public/upload/images/line-arrow.png') no-repeat top left;
}

.col:nth-child(odd):not(:last-child) .introduce-item::before {
    content: "";
    width: 123px;
    height: 70px;
    position: absolute;
    right: -85px;
    z-index: 5;
    background: url('/public/upload/images/line-arrow-up.png') no-repeat top left;
}

@media (max-width: 1440px) {
    .col:nth-child(odd):not(:last-child) .introduce-item::before,
    .col:nth-child(even):not(:last-child) .introduce-item::before {
        position: unset !important;
        background: unset !important;
        width: unset;
        height: unset;
    }
}

@media (max-width: 1024px) {
    .introduce-item__image {
        width: 130px;
        height: 130px;
    }

    .introduce-item__title {
        font-size: 1.2em;
    }


    .introduce-item {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    .section-introduction::after {
        content: '';
        background: rgb(251 243 237 / 88%);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        transition: var(--transition);
        backdrop-filter: blur(1px);
    }
}

@media (max-width: 992px) {

    .introduce-item__image {
        width: 90px;
        height: 90px;
    }

}

/*================================
   product-card
 ======================================*/
.section-product__image {
    position: absolute;
    right: 0;
    width: 35vw;
    top: -170px;
    opacity: 0.4;
    z-index: 1;
    transform: rotate(180deg);
}

.product-card__image {
    overflow: hidden;
    margin-bottom: 20px;
}

.product-card__title {
    font-weight: 800;
    font-size: 1.15em;
    transition: var(--transition);
    text-transform: capitalize;
}

.product-card__text {
    color: var(--bs-gray-600);
    font-weight: 600;
}

.product-card:hover .product-card__image > img {
    transform: scale(1.1);
}

.product-card:hover .product-card__title {
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .product-card__title {
        font-size: 1.075em;
    }
}

/*================================
       page-detail__product
 ======================================*/
.page-detail__product .product-left,
.page-detail__product .product-right {
    padding: 50px 40px;
}

.page-detail__product .product-right {
    background-color: #fbf3ed;
}

.page-detail__product .heading-sub.page-product__text {
    color: var(--bs-gray-700);
}

.page-detail__product .section-heading.heading-line {
    padding-bottom: 25px;
}

.page-detail__product .section-heading.heading-line::before {
    position: absolute;
    content: '';
    left: 0;
    width: 20%;
    height: 1px;
    bottom: 0;
    background: #b80712d6;
}

.page-product__item {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-product__item .title {
    font-weight: 700;
    font-size: 1.05em;
}

.page-product__item ul > li:not(:last-child)::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    width: 1px;
    height: 15px;
    border-right: 1px solid var(--primary-color);
    transform: translateY(-50%);
}

.page-product__item ul > li > a {
    color: var(--primary-color);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95em;
}

.page-product__item ul > li > a:not(:first-child) {
    margin-left: 10px;
}

.product-buttons .button-theme {
    font-weight: 700;
    padding: 10px 26px;
    min-width: 180px;
}

.page-detail__product .slider-button_next,
.page-detail__product .slider-button_prev {
    background-color: rgb(237 237 237 / 80%);
    color: var(--bs-gray-700);
}

@media (max-width: 576px) {
    .page-detail__product .product-right {
        padding: 30px 15px;
    }

    .product-buttons .button-theme {
        min-width: 160px;
    }

    .page-detail__product .slider-button_next,
    .page-detail__product .slider-button_prev {
        display: none !important;
    }
}

@media (max-width: 375px) {
    .product-buttons .button-theme {
        min-width: 100%;
    }
}

/*================================
   card-blog
 ======================================*/
.card-blog__title {
    font-size: 1.15em;
    font-weight: 700;
    transition: var(--transition);
    color: var(--text-color);
}

.card-blog__title:hover {
    color: var(--bs-gray-900);
}

.card-blog__link {
    position: relative;
    border-radius: 25px;
    color: var(--primary-color);
    padding: 6px 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    width: max-content;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-blog__link > span {
    position: relative;
    z-index: 2;
}

.card-blog__link::before {
    position: absolute;
    content: '';
    width: 140%;
    height: 350%;
    transform: skew(20deg);
    top: -20px;
    left: -160%;
    transition: all .3s ease-in-out;
    background-color: var(--primary-color);
}

.card-blog__link:hover,
.card-blog__link:hover > span {
    color: var(--bs-white);
}

.card-blog__link:hover::before {
    left: -30%;
}

.card-blog:hover .card-blog__image > img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .card-blog__title {
        font-size: 1.075em;
    }

    .card-blog__link {
        font-size: 0.9em;
        padding: 5px 16px;
    }
}

/*=======================================
           article-card
 =========================================*/

.article-card__image {
    width: 150px;
}

.card-article-2__title,
.article-card__title {
    font-weight: 700;
    font-size: 1.1em;
    color: var(--bs-gray-800);
    transition: var(--transition);
    display: flex;
}

.card-article-2__title {
    height: 50px;
    font-size: 1.2em;
    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: 0.8em;
    color: var(--bs-gray-600);
    margin-bottom: 3px;
}

.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);
}

.view-all {
    position: relative;
    border-radius: 25px;
    color: var(--primary-color);
    padding: 6px 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    width: max-content;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.view-all > span {
    position: relative;
    z-index: 2;
}

.view-all::before {
    position: absolute;
    content: '';
    width: 140%;
    height: 350%;
    transform: skew(20deg);
    top: -20px;
    left: -160%;
    transition: all .3s ease-in-out;
    background-color: var(--primary-color);
}

.view-all:hover {
    color: var(--primary-color);
}

.view-all:hover > span {
    color: var(--bs-white);
}

.view-all:hover::before {
    left: -30%;
}

.page-category__section:not(:last-child) {
    border-bottom: 1px solid var(--bs-gray-200);
}

@media (max-width: 992px) {
    .card-article-2__title {
        height: 45px;
        font-size: 1.1em;
    }

    .view-all {
        font-size: 0.9em;
        padding: 5px 15px;
    }
}

@media (max-width: 576px) {
    .view-all {
        font-size: 0.85em;
    }
}

/*=======================================
      section-blog
=========================================*/
.section-blog {
    background-repeat: no-repeat;
    background-size: cover;
}


/*===============================
         scroll-top
==================================*/
.scroll-top {
    position: fixed;
    right: 15px;
    bottom: 40px;
    border-radius: 3px;
    height: 40px;
    width: 40px;
    background: #9f000a;
    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);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.is-show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #94020c;
}

/*======================================
          floating-hotline
========================================*/
.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);
}

.floating-zalo {
    position: fixed;
    right: 15px;
    bottom: 95px;
    cursor: pointer;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}


.floating-zalo.is-show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

/*===============================
        page-contact
==================================*/
.page-contact .contact-item {
    color: var(--text-color);
    transition: var(--transition);
    font-weight: 500;
    font-size: 1.1em;
}

.page-contact .contact-item:hover {
    color: var(--primary-color);
}

.contact-form_item label {
    font-weight: 700;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.contact-form_item .form-control {
    height: 45px;
    border-radius: 3px;
    font-size: 0.95em;
}

.contact-form_item .textarea-input {
    height: auto;
    resize: none;
}

.contact-iframe iframe {
    width: 100% !important;
    height: 400px;
}

.page-contact__decor {
    position: absolute;
    top: -30px;
    right: 0;
    width: 30vw;
    height: auto;
    z-index: 1;
    opacity: 0.6;
}

@media (max-width: 576px) {
    .page-contact .contact-item {
        font-size: 1em;
    }
}
