.header-top {
    background: var(--color-highlight);
    padding: 10px 0;
    color: #fff;
}

.header-top .container>.row {
    align-items: center;
}

.header-top .name-web {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-top .col-md-6:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}

.time-web {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    white-space: nowrap;
}

.time-web i {
    font-size: 13px;
}

.list-fanpage {
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-fanpage .item {
    margin: 0;
}

.list-fanpage a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-fanpage img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: .2s;
}

.list-fanpage a:hover img {
    transform: scale(1.15);
}

/* language */

.language-switch ol {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switch li {
    float: none !important;
}

.language-switch img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .4);
}

.language-switch a {
    display: block;
}

/* =========================================================
   INFO WEBSITE
========================================================= */

.info-website {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
    width: 100%;
}

.info-website .item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

/* ICON */

.info-website .icon {
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    color: var(--color-highlight);
    font-size: 19px;
    transition: all .25s ease;
}

.info-website .icon i {
    position: relative;
    z-index: 1;
}

.info-website .item:hover .icon {
    color: #fff;
    border-color: var(--color-highlight);
    background: var(--color-highlight);
    transform: translateY(-2px);
}

.info-website .item:hover .icon::before {
    background: transparent;
}


/* CONTENT */

.info-website .right {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.info-website .name {
    display: block;

    color: var(--color-text);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.info-website .value {
    display: block;

    color: #555;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;

    max-width: 280px;
}

.info-website .item:last-child:hover .icon {
    color: #fff;
    background: var(--color-main);
    border-color: var(--color-main);
}

.info-website .item:last-child .value {
    color: var(--color-main);
    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   ADDRESS
========================================================= */

.info-website .item:first-child {
    max-width: 400px;
}

.info-website .item:first-child .value {
    max-width: 330px;
}


.warp-title .icon-top-title {
    display: flex;
    justify-content: space-between;
}

.warp-title .icon-top-title .icon-left,
.warp-title .icon-top-title .icon-right {
    flex: 0 0 50px;
    height: 85px;
}

.warp-title .icon-top-title .icon-left img,
.warp-title .icon-top-title .icon-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-website .item:nth-child(2) {
    min-width: 210px;
}


/* =========================================================
   HOTLINE
========================================================= */

.info-website .item:nth-child(3) {
    min-width: 150px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .info-website {
        gap: 20px;
    }

    .info-website .icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .info-website .name {
        font-size: 13px;
    }

    .info-website .value {
        font-size: 12px;
    }

    .info-website .item:first-child {
        max-width: 330px;
    }

    .info-website .item:first-child .value {
        max-width: 260px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .info-website {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-website .item,
    .info-website .item:first-child,
    .info-website .item:nth-child(2),
    .info-website .item:nth-child(3) {
        max-width: none;
        min-width: 0;
    }

    .info-website .value,
    .info-website .item:first-child .value {
        max-width: none;
    }

    .info-website .item {
        padding: 8px 0;
    }

}

.list-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.highlight-item {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.highlight-item__circle:before {
    position: absolute;
    border-radius: 50%;
    background: var(--color-main);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 26px 26px 0;
    top: -95px;
    left: -40px;
    width: 200px;
    height: 200px;
    content: '';
}

.highlight-item:nth-child(2n) .highlight-item__circle:before {
    background: var(--color-highlight);
}

.highlight-item__icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    position: relative;
    z-index: 11;
}

.highlight-item__number {
    text-align: right;
    font-size: 60px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--color-highlight);
    letter-spacing: 4px;
    line-height: 1;
}

.highlight-item:nth-child(2n) .highlight-item__number {
    -webkit-text-stroke-color: var(--color-main);
    opacity: .45;
}

.highlight-item__title {
    margin-top: 45px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.highlight-item__title a {
    color: inherit;
}

.highlight-item__desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #2f2f2f;
}

.highlight-item .icon-number {
    display: flex;
    justify-content: space-between;
}

.box-section-home-02 {
    margin-top: -100px;
    z-index: 1;
    position: relative;
    padding-bottom: 80px;
}

@media (max-width: 1199.98px) {

    .list-highlight {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

}

@media (max-width: 767.98px) {

    .list-highlight {
        grid-template-columns: 1fr;
    }

    .highlight-item__title {
        margin-top: 30px;
    }

}

.header-menu {
    background: var(--color-main);
}

.header-menu.is-pinned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1010;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
    animation: header-menu-pin-in .25s ease-out;
}

@keyframes header-menu-pin-in {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-mid {
    padding: 10px 0;
}

.header-mid>.container>.row {
    display: flex;
    align-items: center;
}

@media (min-width:1200px) {
    .menu-section>ul {
        display: flex;
        justify-content: space-between;
    }

    .menu-section>ul>li:first-child {
        margin-left: 0;
    }
}

.box-thiet-bi {
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.box-thiet-bi::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(16, 86, 174, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.box-thiet-bi::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(203, 37, 38, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.warp-title {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}

.box-thiet-bi .head-text {
    position: relative;
}
.title-section {
    display: block;
    color: var(--color-main);
    font-size: 30px;
}
.box-thiet-bi .head-text .title-section {
    position: relative;
    display: inline-block;
    margin: 0;
    color: var(--color-main);
    font-size: 40px;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
}

.slogan-section {
    margin-top: 10px;
    color: var(--color-highlight);
    font-size: 25px;
    font-weight: 600;
}

.desc-section {
    max-width: 1120px;
    margin: 23px auto 0;
    color: #181818;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    text-align: center;
    opacity: 0.82;
}

.box-thiet-bi .thiet-bi-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 42px auto 0;
    border-top: 1px solid rgba(16, 86, 174, 0.14);
    border-bottom: 1px solid rgba(16, 86, 174, 0.14);
}


.box-thiet-bi .thiet-bi-stat {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 105px;

    padding: 18px 22px;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}


.box-thiet-bi .thiet-bi-stat+.thiet-bi-stat::before {
    content: "";

    position: absolute;

    left: 0;
    top: 22px;
    bottom: 22px;

    width: 1px;

    background: rgba(16, 86, 174, 0.14);
}

.box-thiet-bi .thiet-bi-stat__number {
    flex: 0 0 auto;
    margin-right: 20px;
    color: var(--color-main);
    font-size: 52px;
    line-height: 1;
    font-weight: 800;
}


/* =========================================================
   STAT LABEL
========================================================= */

.box-thiet-bi .thiet-bi-stat__label {
    display: flex;
    flex-direction: column;

    gap: 3px;

    text-align: left;
}

.box-thiet-bi .thiet-bi-stat__label-main {
    color: #181818;

    font-size: 15px;
    line-height: 1.3;

    font-weight: 700;
}

.box-thiet-bi .thiet-bi-stat__label-sub {
    color: #181818;

    font-size: 12px;
    line-height: 1.4;

    font-weight: 400;

    opacity: 0.55;
}

@media (max-width: 991px) {

    .box-thiet-bi .thiet-bi-stat {
        min-height: 95px;
    }

   .box-thiet-bi .thiet-bi-stat:nth-child(3)::before {
        display: none;
    }

    .box-thiet-bi .thiet-bi-stat:nth-child(n + 3) {
        border-top: 1px solid rgba(16, 86, 174, 0.14);
    }

}


/* =========================================================
   MOBILE
   <= 767px
========================================================= */

@media (max-width: 767px) {
    /* -----------------------------------------
       STATS
    ----------------------------------------- */

    .box-thiet-bi .thiet-bi-stats {
        margin-top: 30px;
        grid-template-columns: repeat(2, 1fr);
    }


    .box-thiet-bi .thiet-bi-stat {
        min-height: 90px;

        padding: 15px 12px;

        justify-content: flex-start;
    }


    /* -----------------------------------------
       NUMBER
    ----------------------------------------- */

    .box-thiet-bi .thiet-bi-stat__number {
        margin-right: 9px;

        font-size: 31px;
    }


    /* -----------------------------------------
       LABEL
    ----------------------------------------- */

    .box-thiet-bi .thiet-bi-stat__label-main {
        font-size: 14px;
    }

    .box-thiet-bi .thiet-bi-stat__label-sub {
        font-size: 11px;
    }

}

@media (max-width: 360px) {

    .box-thiet-bi {
        padding-left: 12px;
        padding-right: 12px;
    }

    .box-thiet-bi .title-section {
        font-size: 22px;
    }

    .box-thiet-bi .slogan-section {
        font-size: 15px;
    }

    .box-thiet-bi .thiet-bi-stat__number {
        font-size: 27px;
    }

}

.box-section-home-03 {
    padding-bottom: 60px;
}

.title-slogan {
    margin-bottom: 40px;
}

.title-slogan .icon-title {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.title-slogan .icon-title .icon-left,
.title-slogan .icon-title .icon-right {
    flex: 0 0 30px;
    height: 42px;
}

.title-slogan .icon-title .icon-left img,
.title-slogan .icon-title .icon-right img {
    height: 42px;
    width: 30px;
    object-fit: contain;
}

.title-slogan .icon-title .title-section {
    font-size: 15px;
    color: #000;
}

.title-slogan .slogan {
    color: var(--color-main);
    font-size: 30px;
    text-transform: capitalize;
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
}

/* =========================================================
   CATEGORY PRODUCT - TEXT OVER IMAGE
========================================================= */

.box-category-product {
    position: relative;
    width: 100%;
}

.box-category-product .category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


/* =========================================================
   CARD
========================================================= */

.box-category-product .item {
    position: relative;
    overflow: hidden;

    background: #181818;

    border-radius: 16px;

    box-shadow: 0 12px 35px rgba(24, 24, 24, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.box-category-product .item:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 50px rgba(16, 86, 174, 0.2);
}


/* =========================================================
   IMAGE
========================================================= */

.box-category-product .inter-img {
    position: relative;
    overflow: hidden;
}

.box-category-product .inter-img .img {
    position: relative;
    overflow: hidden;

    height: 100%;

    background: #181818;
}


/* ÃƒÆ’Ã‚Â¡Ãƒâ€šÃ‚ÂºÃƒâ€šÃ‚Â£nh */
.box-category-product .inter-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2, .8, .2, 1),
        filter 0.5s ease;
}


/* =========================================================
   OVERLAY
========================================================= */

.box-category-product .inter-img .img::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(24, 24, 24, 0.05) 20%,
            rgba(24, 24, 24, 0.15) 40%,
            rgba(24, 24, 24, 0.88) 100%);

    z-index: 1;

    pointer-events: none;

    transition:
        background 0.4s ease;
}


/* hover ÃƒÆ’Ã‚Â¡Ãƒâ€šÃ‚ÂºÃƒâ€šÃ‚Â£nh */
.box-category-product .item:hover .inter-img img {
    transform: scale(1.08);
    filter: brightness(1.05);
}


/* hover overlay */
.box-category-product .item:hover .inter-img .img::after {
    background:
        linear-gradient(to bottom,
            rgba(16, 86, 174, 0.05) 15%,
            rgba(16, 86, 174, 0.18) 40%,
            rgba(16, 86, 174, 0.92) 100%);
}


/* =========================================================
   CONTENT - ÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€¹Ã¢â‚¬Â  LÃƒÆ’Ã†â€™Ãƒâ€¦Ã‚Â N ÃƒÆ’Ã‚Â¡Ãƒâ€šÃ‚ÂºÃƒâ€šÃ‚Â¢NH
========================================================= */

.box-category-product .inter-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;

    display: flex;
    flex-direction: column;

    padding: 75px 28px 25px;

    background: transparent;

    border: 0;

    color: #fff;
}


/* bÃƒÆ’Ã‚Â¡Ãƒâ€šÃ‚Â»Ãƒâ€šÃ‚Â decor cÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â© */
.box-category-product .inter-content::before {
    content: "";

    position: absolute;

    left: 28px;
    bottom: 18px;

    width: 42px;
    height: 3px;

    background: var(--color-highlight);

    border-radius: 10px;

    transition:
        width 0.35s ease,
        background 0.35s ease;
}

.box-category-product .item:hover .inter-content::before {
    width: 70px;
    background: #fff;
}


/* =========================================================
   NAME
========================================================= */

.box-category-product .name {
    position: relative;

    margin: 0 0 7px;
    padding: 0;
}

.box-category-product .name a {
    display: block;

    color: #fff;

    font-size: 24px;
    line-height: 1.3;

    font-weight: 800;

    text-decoration: none;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3);

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.box-category-product .item:hover .name a {
    color: #fff;
}


/* =========================================================
   COUNT PRODUCT
========================================================= */

.box-category-product .count-product {
    display: flex;
    align-items: center;

    color: #fff;

    font-size: 13px;
    line-height: 1.5;

    opacity: 0.9;
}

.box-category-product .count-product span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 28px;
    height: 28px;

    margin-right: 8px;

    color: #fff;

    background: var(--color-highlight);

    border-radius: 5px;

    font-size: 12px;
    font-weight: 800;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.box-category-product .item:hover .count-product span {
    background: #fff;
    color: var(--color-main);

    transform: scale(1.08);
}


/* =========================================================
   LINK
========================================================= */

.box-category-product .link {
    margin-top: 14px;
}

.box-category-product .link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #fff;

    font-size: 13px;
    line-height: 1.4;

    font-weight: 700;

    text-decoration: none;

    opacity: 0.9;

    transition:
        gap 0.3s ease,
        opacity 0.3s ease;
}

.box-category-product .item:hover .link a {
    gap: 15px;
    opacity: 1;
}

.box-category-product .item:hover .link a::after {
    color: #fff;
    background: var(--color-highlight);

    transform: translateX(3px);
}


/* =========================================================
   RED ACCENT
========================================================= */

.box-category-product .inter-img::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    z-index: 4;

    width: 100%;
    height: 4px;

    background: var(--color-highlight);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.5s ease;
}

.box-category-product .item:hover .inter-img::before {
    transform: scaleX(1);
}

@media (max-width: 991px) {

    .box-category-product .category-list {
        gap: 20px;
    }

    .box-category-product .inter-content {
        padding: 65px 22px 22px;
    }

    .box-category-product .name a {
        font-size: 20px;
    }

}

@media (max-width: 767px) {
    .box-category-product .category-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .box-category-product .inter-content {
        padding: 80px 22px 23px;
    }

    .box-category-product .name a {
        font-size: 21px;
    }

}


.box-section-home-04 {
    background: #f8f8f8;
    padding: 50px 0;
}

/* =========================================================
   WHY CHOOSE US - BANNER
========================================================= */

.box-banner-why {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.box-banner-why .container {
    position: relative;
    z-index: 2;
}


.box-banner-why .title-slogan {
    margin-bottom: 0;
}


.box-banner-why .title-section {
    color: #ffffff !important;
}

.box-banner-why .slogan {
    color: #fff;
}

.banner-why__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.banner-why__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 26px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.banner-why__item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.banner-why__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
}

.banner-why__item-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.banner-why__item-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.banner-why__item-title a {
    color: inherit;
}

.banner-why__media {
    position: absolute;
    width: 40%;
    height: 100%;
    right: 0;
    top: 0px;
    z-index: 2;
}


.banner-why__photo {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.banner-why__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-why__photo--main {
    top: 20px;
    right: 30px;
    z-index: 3;
    width: 340px;
    height: 340px;
}

.banner-why__photo--secondary {
    top: 48px;
    z-index: 5;
    width: 400px;
    height: 400px;
    left: 16%;
}

.banner-why__photo--small {
    left: 0;
    bottom: 30px;
    z-index: 4;
    width: 280px;
    height: 280px;
}

@media (max-width: 1199px) {

    .banner-why__content {
        flex: 0 0 52%;
        max-width: 52%;
    }

    .box-banner-why .slogan {
        font-size: 34px;
    }

    .banner-why__photo--main {
        width: 290px;
        height: 290px;
    }

    .banner-why__photo--secondary {
        width: 160px;
        height: 160px;
    }

    .banner-why__photo--small {
        width: 130px;
        height: 130px;
    }

}

@media (max-width: 991px) {

    .box-banner-why {
        padding: 50px 0;
    }

    .banner-why {
        flex-direction: column;
        gap: 45px;
    }

    .banner-why__content {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .box-banner-why .icon-title {
        justify-content: center;
    }

    .box-banner-why .slogan {
        text-align: center;
    }

       .banner-why__media {
    display: none;
    }


    .banner-why__photo--main {
        right: 50%;
        transform: translateX(50%);
    }

    .banner-why__media::before {
        left: 50%;
        margin-left: -170px;
    }

    .banner-why__media::after {
        left: 50%;
        margin-left: -35px;
    }

    .banner-why__photo--secondary,
    .banner-why__photo--small {
        display: none;
    }

}

@media (max-width: 767px) {

    .box-banner-why {
        padding: 40px 0;
    }

    .box-banner-why .slogan {
        font-size: 27px;
    }

    .banner-why__list {
        gap: 14px;
        margin-top: 30px;
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-why__item {
        justify-content: center;
        padding: 14px 15px;
        align-items: center;
        text-align: center;
    }


    .banner-why__photo--main {
        width: 220px;
        height: 220px;
    }

}

.box-section-home-06 {
    padding: 50px 0;
    background: #f8f8f8;
}

.box-banner-why .before img {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.banner-why__media .img-01 {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    top: -85px;
    z-index: 5;
    width: 265px;
    height: 265px;
    left: 0;
    background: #91eef2;
}

.banner-why__media .img-02 {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    top: -85px;
    z-index: 5;
    width: 300px;
    height: 300px;
    left: 25%;
    background: #184693;
}

.box-banner-why .before img {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.banner-why__media .img-01 {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    top: -85px;
    z-index: 5;
    width: 265px;
    height: 265px;
    left: 0;
    background: #91eef2;
}

.banner-why__media .img-02 {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    top: -85px;
    z-index: 5;
    width: 300px;
    height: 300px;
    left: 25%;
    background: #184693;
}

/* =========================================================
   ARTICLE SLIDER - MODERN INDUSTRIAL
========================================================= */

.article-item-slider {
    height: auto;
}

.article-item-slider .card-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;

    display: flex;
    flex-direction: column;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* =========================================================
   IMAGE
========================================================= */

.article-item-slider .inner-image {
    overflow: hidden;
}

.article-item-slider .inner-image img {
    transition: transform .5s ease;
}

.article-item-slider:hover .inner-image img {
    transform: scale(1.06);
}

.article-item-slider .inner-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 20px 20px;
}


/* =========================================================
   ARTICLE INFO
========================================================= */

.article-item-slider .article-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin-bottom: 11px;
}

.article-item-slider .post-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #777;
    font-size: 12px;
    line-height: 1.4;
}

.article-item-slider .post-date i {
    color: var(--color-highlight);
    font-size: 12px;
}


/* CATEGORY */

.article-item-slider .article-category a {
    display: inline-flex;
    align-items: center;

    padding: 4px 9px;

    color: var(--color-highlight);
    background: rgba(16, 86, 174, .08);

    border-radius: 4px;

    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;

    transition: all .25s ease;
}

.article-item-slider:hover .article-category a {
    color: #fff;
    background: var(--color-highlight);
}


/* =========================================================
   TITLE
========================================================= */

.article-item-slider .article-title {
    margin-bottom: 9px;
}

.article-item-slider .article-title a {
    display: -webkit-box;

    color: var(--color-text);

    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    transition: color .25s ease;
}

.article-item-slider .article-title a:hover,
.article-item-slider:hover .article-title a {
    color: var(--color-highlight);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.article-item-slider .article-description {
    display: -webkit-box;

    margin-bottom: 15px;

    color: #666;
    font-size: 13px;
    line-height: 1.65;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* =========================================================
   READ MORE
========================================================= */

.article-item-slider .article-more-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: auto;
    padding-top: 13px;

    color: var(--color-highlight);

    border-top: 1px solid #eee;

    font-size: 13px;
    font-weight: 700;

    transition: all .25s ease;
}

.article-item-slider .article-more-link:hover {
    color: var(--color-main);
}

.article-item-slider .article-more-link:hover::after {
    transform: translateX(5px);
}


/* =========================================================
   SWIPER NAVIGATION
========================================================= */

.article-item-slider.swiper-slide {
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    width: 35px;
    height: 35px;
    margin-top: -22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-highlight) !important;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .10);
    transition: all .25s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 17px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #fff !important;
    background: var(--color-highlight);
    border-color: var(--color-highlight);
}

.box-slider-article {
    position: relative;
}

.box-slider-article .swiper {
    position: static;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}


/* DISABLED */

.swiper-button-disabled {
    opacity: .35 !important;
    pointer-events: none;
}


/* =========================================================
   SWIPER CONTAINER
========================================================= */

.article-item-slider.swiper-slide {
    box-sizing: border-box;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .article-item-slider .inner-content {
        padding: 16px 17px 18px;
    }

    .article-item-slider .article-title a {
        font-size: 16px;
    }

    .swiper-button-prev {
        left: -12px;
    }

    .swiper-button-next {
        right: -12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .article-item-slider .card-inner {
        border-radius: 9px;
    }

    .article-item-slider .inner-content {
        padding: 15px;
    }

    .article-item-slider .article-title a {
        font-size: 15px;
    }

    .article-item-slider .article-description {
        font-size: 12px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;

        margin-top: -18px;
    }

    .swiper-button-prev {
        left: 5px;
    }

    .swiper-button-next {
        right: 5px;
    }

}

.box-banner-form .contact-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 45px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .15),
        0 10px 25px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.box-banner-form .contact-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #00B4DB, #0083B0);
}

.box-banner-form .card-badge {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 40px;
    background: #e9f9ff;
    color: #0097c9;
    font-weight: 700;
    margin-bottom: 18px;
}

.box-banner-form .contact-card h3 {
    font-size: 34px;
    font-weight: 700;
    color: #0f2b46;
    margin-bottom: 10px;
}

.box-banner-form .contact-card p {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.8;
}

.box-banner-form .input-group-custom {
    display: flex;
    align-items: center;
    height: 60px;
    border: 1px solid #e6edf5;
    border-radius: 16px;
    padding: 0 20px;
    margin-bottom: 18px;
    transition: .35s;
    background: #fafcff;
}

.box-banner-form .input-group-custom:hover {
    border-color: #1ea7d7;
}

.box-banner-form .input-group-custom:focus-within {
    border-color: #1ea7d7;
    box-shadow: 0 0 0 5px rgba(30, 167, 215, .15);
    background: #fff;
}

.box-banner-form .input-group-custom i {
    width: 24px;
    color: #1ea7d7;
    font-size: 18px;
}

.box-banner-form .input-group-custom input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    padding-left: 15px;
    font-size: 15px;
}

.box-banner-form .btn-submit {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: var(--color-main);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .35s;
}

.box-banner-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px rgba(0, 132, 176, .45);
}

.box-banner-form {
    padding: 60px 0;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, .75) 0%,
            rgba(0, 0, 0, .45) 45%,
            rgba(0, 0, 0, .25) 100%);
}

.box-banner-form .title-slogan .title-section {
    color: #fff;
}

.box-banner-form .title-slogan .slogan {
    color: #fff;
}

.box-banner-form .contact-card .form-group {
    margin-bottom: 15px;
}

.box-banner-form .contact-card .form-group .form-control {
    background: #f3f3f3;
    border-radius: 8px;
    height: 45px;
}

.list-project {
    position: relative;
}

.list-project>.row {
    margin-left: -12px;
    margin-right: -12px;
}

.list-project>.row>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}


/* =========================================================
   ARTICLE CARD
========================================================= */

.list-project .article-item {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(24, 24, 24, .06);
    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
    margin-bottom: 0;
}

.list-project .article-item:hover {
    transform: translateY(-6px);

    border-color: rgba(16, 86, 174, .25);

    box-shadow: 0 16px 38px rgba(16, 86, 174, .13);
}


/* =========================================================
   IMAGE
========================================================= */

.list-project .inner-image {
    position: relative;
    overflow: hidden;
}

.list-project .inner-image .img {
    overflow: hidden;
    background: #181818;
}

.list-project .inner-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition:
        transform .65s cubic-bezier(.2, .7, .2, 1),
        filter .4s ease;
}

.list-project .article-item:hover .inner-image img {
    transform: scale(1.06);
    filter: brightness(.88);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.list-project .inner-image .img {
    position: relative;
}

.list-project .inner-image .img::after {
    content: "";

    position: absolute;
    z-index: 1;

    left: 0;
    right: 0;
    bottom: 0;

    height: 45%;

    background: linear-gradient(to top,
            rgba(24, 24, 24, .5),
            transparent);

    pointer-events: none;
}


/* =========================================================
   CATEGORY
========================================================= */

.list-project .article-category {
    position: absolute;

    z-index: 3;

    left: 18px;
    bottom: 16px;

    display: inline-flex;
    align-items: center;

    min-height: 32px;

    padding: 0 14px;

    background: var(--color-highlight);

    border-left: 3px solid #fff;

    box-shadow: 0 5px 14px rgba(24, 24, 24, .18);

    transition:
        background .3s ease,
        padding .3s ease;
}

.list-project .article-category a {
    color: #fff;

    font-size: 12px;
    line-height: 32px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .8px;

    text-decoration: none;
}

.list-project .article-item:hover .article-category {
    padding-left: 18px;
    padding-right: 18px;

    background: var(--color-main);
}


/* =========================================================
   CONTENT
========================================================= */

.list-project .inner-content {
    position: relative;

    padding: 19px 21px 20px;
}


/* =========================================================
   DATE
========================================================= */

.list-project .post-date {
    display: block;

    margin-bottom: 9px;

    color: #8a929d;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;

    letter-spacing: .3px;
}

.list-project .post-date::before {
    content: "";

    display: inline-block;

    width: 20px;
    height: 1px;

    margin-right: 7px;

    vertical-align: middle;

    background: var(--color-highlight);
}


/* =========================================================
   TITLE
========================================================= */

.list-project .article-title {
    position: relative;

    margin-bottom: 13px !important;
    padding-bottom: 13px;

    border-bottom: 1px solid #edf0f4;
}

.list-project .article-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 36px;
    height: 2px;

    background: var(--color-highlight);

    transition: width .35s ease;
}

.list-project .article-item:hover .article-title::after {
    width: 65px;
}

.list-project .article-title a {
    display: -webkit-box;
    overflow: hidden;
    color: #000;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color .25s ease;
}

.list-project .article-item:hover .article-title a {
    color: var(--color-main);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.list-project .article-description {
    position: relative;
    margin-bottom: 16px !important;
    padding-left: 14px;
    color: #666;
    font-size: 13px;
    line-height: 1.65;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list-project .article-description::before {
    content: "";

    position: absolute;

    left: 0;
    top: 4px;

    width: 2px;
    height: 28px;

    background: var(--color-main);
}


/* =========================================================
   BUTTON
========================================================= */

.list-project .link {
    padding-top: 14px;

    border-top: 1px solid #edf0f4;
}

.list-project .btn-submit-1 {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-main);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .3px;
    transition: color .25s ease;
}

.list-project .article-item:hover .btn-submit-1 {
    color: var(--color-highlight);
}

.list-project .article-item:hover .btn-submit-1 i {
    background: var(--color-highlight);
    transform: translateX(5px);
}


/* =========================================================
   EQUAL HEIGHT DESKTOP
========================================================= */

@media (min-width: 768px) {

    .list-project .article-item {
        display: flex;
        flex-direction: column;
    }

    .list-project .inner-content {
        flex: 1;

        display: flex;
        flex-direction: column;
    }

    .list-project .link {
        margin-top: auto;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767.98px) {

    .list-project>.row {
        margin-left: -7px;
        margin-right: -7px;
    }

    .list-project>.row>[class*="col-"] {
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 14px;
    }

    .list-project .inner-content {
        padding: 14px;
    }

    .list-project .article-title a {
        font-size: 15px;
    }

    .list-project .article-description {
        font-size: 12px;
    }

    .list-project .article-category {
        left: 12px;
        bottom: 12px;

        min-height: 28px;
        padding: 0 10px;
    }

    .list-project .article-category a {
        font-size: 10px;
        line-height: 28px;
    }

    .list-project .post-date {
        font-size: 10px;
    }

    .list-project .btn-submit-1 {
        font-size: 11px;
        line-height: 30px;
    }

    .list-project .btn-submit-1 i {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .list-project .article-item {
        border-radius: 8px;
    }

    .list-project .inner-content {
        padding: 11px;
    }

    .list-project .post-date {
        margin-bottom: 6px;
    }

    .list-project .article-title {
        margin-bottom: 9px !important;
        padding-bottom: 9px;
    }

    .list-project .article-title a {
        font-size: 13px;
        line-height: 1.45;
    }

    .list-project .article-description {
        min-height: 35px;
        margin-bottom: 10px !important;

        padding-left: 10px;

        font-size: 11px;
        line-height: 1.5;
    }

    .list-project .article-description::before {
        height: 22px;
    }

    .list-project .link {
        padding-top: 9px;
    }

    .list-project .btn-submit-1 {
        font-size: 10px;
        line-height: 27px;
    }

    .list-project .btn-submit-1 i {
        width: 25px;
        height: 25px;

        margin-left: 7px;
    }

    .list-project .article-category {
        left: 9px;
        bottom: 9px;
    }
}


.box-section-home-08 {
    padding: 60px 0 60px;
}

.box-section-home-09 {
    background: #f3f3f3;
    padding: 60px 0;
}

.section-brand .item-img-brand .img-brand {
    padding-top: 42.25%;
    background: #fff;
    border-radius: 8px;
}

.section-brand .item-img-brand .img-brand img {
    padding: 20px;
    object-fit: contain;
}


.header-menu>.container>.row {
    display: flex;
    align-items: center;
}

.box-search .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.box-search .input-group .input-group-append .btn-submit {
    width: 50px;
    border: 0;
}

.footer-mild-01 {
    padding: 68px 0 34px;
}

footer .title-footer {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

footer address {
    margin: 0;
    font-style: normal;
}

footer address p {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    line-height: 1.55;
}

footer address p i {
    flex: 0 0 16px;
    width: 16px;
    margin-top: 4px;
    color: #ff0050;
    font-size: 14px;
    text-align: center;
}

/* Menu footer */
footer .menu-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer .menu-footer ul li {
    margin-bottom: 12px;
}

footer .menu-footer ul li:last-child {
    margin-bottom: 0;
}

footer .menu-footer ul li a {
    position: relative;
    display: inline-block;
    padding: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
    transition:
        color .25s ease,
        transform .25s ease;
}

footer .menu-footer ul li a:hover,
footer .menu-footer ul li a.active:hover {
    color: #ff0050;
    transform: translateX(5px);
}


.dsc-footer {
    color: #fff;
}

.copyright {
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #fff;
    color: #fff;
}

footer {
    background: var(--color-main);
}

.newsletter .form-group {
    display: flex;
    margin-top: 15px;
    gap: 5px;
}

.header-page-title {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Overlay tÃ¡Â»â€˜i */
.header-page-title::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(9, 23, 46, .45),
            rgba(9, 23, 46, .72));
}

/* HiÃ¡Â»â€¡u Ã¡Â»Â©ng mÃƒÂ u xanh giÃ¡Â»â€˜ng website doanh nghiÃ¡Â»â€¡p */
.header-page-title::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right top,
            rgba(0, 140, 255, .15),
            transparent 45%);
}

.header-page-title .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.header-page-title .title {
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, .35);
}

/* Breadcrumb */
.breadcrumbs-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 500;
}

.breadcrumbs-section a {
    color: #fff;
    transition: .3s;
}

.breadcrumbs-section a:hover {
    opacity: 1;
    color: #1ea7ff;
}

.breadcrumbs-section .active {
    color: #fff;
    font-weight: 700;
    opacity: 1;
}

/* Responsive */
@media(max-width:991px) {

    .header-page-title {
        height: 200px;
    }

    .header-page-title .title {
        font-size: 23px;
    }

    .breadcrumbs-section {
        font-size: 15px;
    }

}

@media(max-width:576px) {

    .header-page-title {
        height: 185px;
    }

    .header-page-title .title {
        font-size: 19px;
        margin: 0 0 10px;
    }

    .breadcrumbs-section {
        flex-wrap: wrap;
        gap: 6px;
        font-size: 14px;
    }

}

.breadcrumbs-section a:last-child::after {
    display: none;
}


.list-product-page {
    padding: 60px 0;
}

.list-product-page .product-item {
    height: 100%;
    background: #f3f3f3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f3f3f3;
    transition: .35s ease;
    margin-bottom: 0;
}

.list-product-page .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
    border-color: var(
    --color-main);
}

.list-product-page .product-item img {
    transition: .5s;
}

.list-product-page .product-item:hover img {
    transform: scale(1.08);
}

.list-product-page .product-item .inner-content {
    padding: 16px;
    text-align: left !important;
}

.list-product-page .product-title {
    overflow: hidden;
    margin-bottom: 12px;
}

.list-product-page .product-title a {
    font-size: 16px;
    font-weight: 500;
    color: #172b4d;
    text-decoration: none;
    transition: .3s;
}

.list-product-page .product-title a:hover {
    color: var(--color-main);
}

.list-product-page .code {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 14px;
    border-radius: 30px;
    background: #ffffff;
    color: var(--color-main);
    font-size: 13px;
    font-weight: 600;
}

.list-product-page .product-description {
    color: #3e3e3e;
    font-size: 15px;
    margin-bottom: 15px;
    display: -webkit-box;
    overflow: hidden;
    color: var(--color-text);
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color .25s ease;
}

.list-product-page .link {
    display: flex;
    gap: 12px;
}

.list-product-page .link .item {
    flex: 1;
}

.list-product-page .link .item a {
    display: block;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-product-page .link .item:first-child a {
    background: var(--color-main);
    color: #fff;
}

.list-product-page .link .item:first-child a:hover {
    background: #0052cc;
}

.list-product-page .link .item:last-child a {
    background: #fff;
    border: 1px solid var(--color-main);
    color: var(--color-main);
}

.list-product-page .link .item:last-child a:hover {
    background: var(--color-main);
    color: #fff;
}

.list-product-page>.row {
    row-gap: 30px;
}

@media(max-width:991px) {
    .list-product-page .product-title a {
        font-size: 16px;
    }

    .list-product-page .product-description {
        min-height: auto;
        font-size: 14px;
    }

}

@media(max-width:575px) {

    .list-product-page .list-product-page {
        padding: 35px 0;
    }

    .list-product-page .product-item {
        border-radius: 14px;
    }

    .list-product-page .product-item .inner-content {
        padding: 10px;
    }

    .list-product-page .product-title a {
        font-size: 14px;
    }

}

.box-section-product-detail-02 {
    background: #f8f8f8;
    padding: 60px 0;
}

.product-detail-head {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, .08);
    margin-bottom: 40px;
}

.product-image-detail-top {
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    border-radius: 22px;
    border: 1px solid #e7edf5;
}

.product-image-detail img {
    width: 100%;
    border-radius: 18px;
    transition: .4s;
}



.product-title-detail {
    font-size: 30px;
    line-height: 1.35;
    color: var(--color-main);
    font-weight: 600;
    margin-bottom: 18px;
}

.product-meta-row {
    margin: 18px 0;
}

.product-meta-row .code {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eef6ff;
    color: #0d6efd;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
}

.product-meta-row .code i {
    font-size: 15px;
}

/*=========================
CATEGORY
=========================*/

.product-category {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.product-category label {
    margin: 0;
    font-weight: 700;
}

.product-category a {
    text-decoration: none;
    background: #edf6ff;
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 50px;
    transition: .3s;
}

.product-category a:hover {
    background: #0d6efd;
    color: #fff;
}

.product-content-detail .description {
    background: #fafbfc;
    border-left: 5px solid var(--color-main);
    padding: 25px;
    border-radius: 16px;
    margin: 20px 0;
}

.description p {
    margin: 0;
    line-height: 1.9;
    color: #555;
}

.btn-contact a:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, .35);
}

/*=========================
CONTENT
=========================*/

.product-detail-footer {
    margin-top: 40px;
}

.product-detail-footer>.title {
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.product-detail-footer>.title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 32px;
    border-radius: 20px;
    background: var(--color-main);
}

.content-pane-card {

    background: #fff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, .08);

}

.content-pane-card h3 {
    font-size: 18px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 15px;
}

.content-pane-card table {

    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;

}

.content-pane-card table th {

    background: #0d6efd;
    color: #fff;
    padding: 14px;

}

.content-pane-card table td {

    padding: 14px;
    border: 1px solid #e8edf5;

}

.product-detail-footer .tags {

    display: flex;
    gap: 12px;
    flex-wrap: wrap;

}

.product-detail-footer .tags li {

    margin: 0;

}

.product-detail-footer .tags a {

    text-decoration: none;
    background: #eef3f8;
    color: #444;
    padding: 10px 18px;
    border-radius: 50px;
    transition: .3s;

}

.product-detail-footer .tags a:hover {

    background: #0d6efd;
    color: #fff;

}

strong,
.font-semibold {

    color: #152238;

}

@media(max-width: 991px) {

    .product-detail-head {padding: 15px;border-radius: 12px;}

    .product-detail-footer .content-pane-card {padding: 15px;}

    .product-title-detail {font-size: 20px;}

    .product-detail-footer>.title {font-size: 21px;}

    .content-pane-card h3 {font-size: 18px;}

}

.product-image-detail .swiper-thumbs {
    margin-top: 15px;
}


.box-list-article .article-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
    box-shadow: 0px 4px 10px 0px #00000033;
    border-radius: 12px;
    margin-bottom: 0;
}

.box-list-article>.row {
    row-gap: 30px;
}

.box-list-article .article-item:hover {
    transform: translateY(-5px);

    border-color: rgba(203, 37, 38, .25);

    box-shadow:
        0 14px 35px rgba(24, 24, 24, .10),
        0 4px 12px rgba(24, 24, 24, .05);
}


/* =========================
   IMAGE
========================= */

.box-list-article .inner-image {
    margin-bottom: 0 !important;
    overflow: hidden;
    background: #f5f5f5;
}

.box-list-article .inner-image {
    overflow: hidden;
}

.box-list-article .inner-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.box-list-article .inner-image img {
    object-fit: cover;
    transition:
        transform .5s cubic-bezier(.2, .8, .2, 1);
}

.box-list-article .article-item:hover .inner-image img {
    transform: scale(1.06);
}


/* =========================
   CONTENT
========================= */

.box-list-article .inner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}



.box-list-article .article-title {
    margin-bottom: 10px !important;
}

.box-list-article .article-title a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--color-text);
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color .25s ease;
}

.box-list-article .article-item:hover .article-title a {
    color: var(--color-main);
}


.box-list-article .article-description {
    margin-bottom: 16px !important;
    color: #000;
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px !IMPORTANT;
}


.box-list-article .article-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    color: var(--color-highlight);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        color .25s ease,
        gap .25s ease;
    margin-top: auto;
}

.box-list-article .article-more:hover {
    color: var(--color-main);
    gap: 10px;
}

.box-list-article .article-more:hover::after {
    transform: translateX(3px);
}


@media (max-width: 767.98px) {

    .box-list-article>.row {
        row-gap: 15px;
    }

    .box-list-article .inner-content {
        padding: 16px;
    }

    .box-list-article .article-title a {
        font-size: 16px;
    }

    .box-list-article .article-description {
        font-size: 13px;
    }
}


@media (max-width: 575.98px) {

    .box-list-article>.row {
        margin-left: -7px;
        margin-right: -7px;
    }

    .box-list-article>.row>[class*="col-"] {
        padding-left: 7px;
        padding-right: 7px;
    }

    .box-list-article .inner-content {
        padding: 14px;
    }

    .box-list-article .article-title a {
        font-size: 15px;
    }
}

.box-list-article .inner-content .post-date {
    margin-bottom: 5px;
}

.box-section-article-02 {
    padding-top: 50px;
    padding-bottom: 40px;
}

.section-article-03 {
    padding: 50px 0;
}

.section-article-02 {
    padding-top: 60px;
}


.article-detail {
    width: 100%;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
    word-break: break-word;
}


/* =========================================================
   ARTICLE TITLE
========================================================= */

.article-detail__title {
    margin: 0 0 12px;
    color: var(--color-main);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.4px;
}

.article-detail__title::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 16px;
    background: var(--color-highlight);
    border-radius: 10px;
}


/* =========================================================
   META
========================================================= */

.article-detail__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;

    margin-bottom: 32px;

    color: var(--color-text);
    font-size: 14px;
    line-height: 1.5;
    opacity: .6;
}

.article-detail__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.article-detail__meta-item i {
    color: var(--color-highlight);
    font-size: 16px;
}


/* =========================================================
   BODY
========================================================= */

.article-detail__body {
    width: 100%;
}

.article-content {
    width: 100%;
    color: var(--color-text);
}


/* =========================================================
   LEAD / SAPO
========================================================= */

.article-detail__lead {
    position: relative;

    margin: 0 0 32px;
    padding: 20px 24px;

    background: rgba(0, 53, 148, .045);
    border-left: 4px solid var(--color-highlight);
    border-radius: 0 8px 8px 0;
}

.article-detail__lead p {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
}

.article-detail__lead strong {
    color: var(--color-main);
}


/* =========================================================
   RESET BASIC CONTENT
========================================================= */

.article-content > *:first-child {
    margin-top: 0;
}

.article-content > *:last-child {
    margin-bottom: 0;
}

.article-content p {
    margin: 0 0 18px;
    line-height: 1.85;
}

.article-content strong,
.article-content b {
    font-weight: 700;
    color: var(--color-main);
}

.article-content em,
.article-content i {
    font-style: italic;
}


/* =========================================================
   HEADINGS
========================================================= */

.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: var(--color-main);
    font-weight: 800;
    line-height: 1.4;
}

.article-content h2 {
    font-size: 22px;
    position: relative;
    margin: 20px 0 20px;
    padding: 10px 20px;
    background: rgba(0, 53, 148, .045);
    border-left: 4px solid var(--color-highlight);
    border-radius: 0 7px 7px 0;
}

.article-content h3 {
    position: relative;
    margin: 20px 0 20px;
    padding: 10px 20px;
    background: rgba(0, 53, 148, .045);
    border-left: 4px solid var(--color-highlight);
    border-radius: 0 7px 7px 0;
    font-size: 20px;
}

.article-content h4 {
    margin: 35px 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--color-highlight);
    font-size: 18px;
}

.article-content h5 {
    margin: 28px 0 14px;
    font-size: 18px;
}

.article-content h6 {
    margin: 24px 0 12px;
    font-size: 16px;
}


/* =========================================================
   HEADING STRONG
========================================================= */

.article-content h2 strong,
.article-content h3 strong,
.article-content h4 strong,
.article-content h5 strong,
.article-content h6 strong {
    color: inherit;
}


/* =========================================================
   LINKS
========================================================= */

.article-content a {
    color: var(--color-main);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(254, 169, 1, .6);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    transition: color .2s ease,
                text-decoration-color .2s ease;
}

.article-content a:hover {
    color: var(--color-highlight);
    text-decoration-color: var(--color-highlight);
}


/* =========================================================
   UNORDERED LIST
========================================================= */

.article-content ul {
    margin: 20px 0 26px;
    padding-left: 0;
    list-style: none;
}

.article-content ul li {
    position: relative;
    margin-bottom: 10px;
    line-height: 1.75;
}
.article-content ul li p {
    margin-bottom: 8px;
}

.article-content ul li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   NESTED UL
========================================================= */

.article-content ul ul {
    margin: 8px 0 8px 10px;
}

.article-content ul ul > li {
    padding-left: 30px;
}

.article-content ul ul > li::before {
    width: 5px;
    height: 5px;
    left: 13px;
    background: var(--color-main);
}


/* =========================================================
   ORDERED LIST
========================================================= */

.article-content ol {
    margin: 20px 0 26px;
    padding-left: 28px;
}

.article-content ol li {
    margin-bottom: 9px;
    padding-left: 5px;
    line-height: 1.75;
}

.article-content ol li::marker {
    color: var(--color-main);
    font-weight: 700;
}

.article-content ol li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   NESTED OL
========================================================= */

.article-content ol ol {
    margin: 8px 0;
}


/* =========================================================
   IMAGES
========================================================= */

.article-content img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 30px auto;

    border-radius: 9px;

    box-shadow: 0 8px 28px rgba(0, 53, 148, .12);
}

.article-content img[width],
.article-content img[height] {
    max-width: 100%;
}


/* =========================================================
   IMAGE INSIDE P
========================================================= */

.article-content p > img {
    margin-top: 28px;
    margin-bottom: 12px;
}


/* =========================================================
   IMAGE LINK
========================================================= */

.article-content a > img {
    display: block;
    margin: 30px auto;
}

.article-content a:has(> img) {
    display: block;
    text-decoration: none;
}



.article-content p:has(> em:only-child) {
    margin-top: -18px;
    color: rgba(24, 24, 24, .6);
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

.article-content > em {
    display: block;

    margin: -15px auto 28px;

    color: rgba(24, 24, 24, .6);
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.article-content blockquote {
    position: relative;

    margin: 30px 0;
    padding: 22px 25px 22px 28px;

    background: rgba(0, 53, 148, .045);
    border-left: 4px solid var(--color-highlight);
    border-radius: 0 8px 8px 0;

    color: var(--color-main);
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
}

.article-content blockquote p {
    margin: 0;
}


/* =========================================================
   TABLE
========================================================= */

.article-content .table-responsive {
    width: 100%;
    margin: 30px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.article-content table {
    width: 100%;
    min-width: 600px;
    margin: 30px 0;

    border-collapse: collapse;

    background: #fff;

    font-size: 15px;
}

.article-content .table-responsive table {
    margin: 0;
}

.article-content table th,
.article-content table td {
    padding: 12px 15px;
    border: 1px solid rgba(0, 53, 148, .12);
    vertical-align: middle;
    text-align: left;
}

.article-content table th {
    color: #fff;
    background: var(--color-main);
    font-weight: 700;
}

.article-content table tr:nth-child(even) td {
    background: rgba(0, 53, 148, .025);
}


/* =========================================================
   HORIZONTAL RULE
========================================================= */

.article-content hr {
    height: 1px;
    margin: 25px 0;
    border: 0;
    background: rgba(0, 53, 148, .12);
}


/* =========================================================
   VIDEO / IFRAME
========================================================= */

.article-content iframe {
    display: block;

    width: 100%;
    max-width: 100%;

    margin: 30px auto;

    border: 0;
    border-radius: 9px;
}

.article-content video {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    margin: 30px auto;

    border-radius: 9px;
}


/* =========================================================
   FIGURE
========================================================= */

.article-content figure {
    margin: 30px 0;
    text-align: center;
}

.article-content figure img {
    margin: 0 auto 12px;
}

.article-content figcaption {
    color: rgba(24, 24, 24, .6);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   TEXT ALIGNMENT
========================================================= */

.article-content .text-left {
    text-align: left;
}

.article-content .text-center {
    text-align: center;
}

.article-content .text-right {
    text-align: right;
}

.article-content .text-justify {
    text-align: justify;
}


/* =========================================================
   SHARE
========================================================= */

.article-detail__share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 45px;
    padding: 18px 0;

    border-top: 1px solid rgba(0, 53, 148, .12);
    border-bottom: 1px solid rgba(0, 53, 148, .12);
}

.article-detail__share-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--color-main);

    font-size: 14px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.article-detail__share-label i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    color: #fff;
    background: var(--color-main);

    border-radius: 50%;

    font-size: 14px;
}

.list-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-social {
    width: 38px;
    height: 38px;
}

.btn-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: var(--color-main);
    background: #fff;

    border: 1px solid rgba(0, 53, 148, .15);
    border-radius: 50%;

    text-decoration: none;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.btn-social a::after {
    display: none;
}

.btn-social a:hover {
    color: #fff;
    background: var(--color-main);
    border-color: var(--color-main);
    transform: translateY(-3px);
    box-shadow: 0 7px 18px rgba(0, 53, 148, .2);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .article-detail {
        font-size: 15px;
    }

    .article-detail__title {
        font-size: 25px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .article-content h4 {
        font-size: 19px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .article-detail {
        font-size: 15px;
        line-height: 1.75;
    }

    .article-detail__title {
        margin-bottom: 10px;
        padding-bottom: 15px;
        font-size: 20px;
        line-height: 1.3;
    }

    .article-detail__title::after {
        width: 52px;
        height: 3px;
        margin-top: 12px;
    }

    .article-detail__meta {
        margin-bottom: 22px;
        font-size: 13px;
    }

    .article-detail__lead {
        margin-bottom: 25px;
        padding: 16px 18px;
    }

    .article-detail__lead p {
        font-size: 15px;
    }

    .article-content p {
        margin-bottom: 16px;
        line-height: 1.78;
    }

    .article-content h2 {
        margin-top: 20px;
        margin-bottom: 18px;
        font-size: 16px;
    }

    .article-content h3 {
        margin-top: 15px;
        margin-bottom: 15px;
        padding: 10px 15px;
        font-size: 16px;
    }

    .article-content h4 {
        margin-top: 28px;
        font-size: 18px;
    }
    .article-content ul > li::before {
        left: 13px;
    }

    .article-content ol {
        padding-left: 24px;
    }

    .article-content img {
        margin: 24px auto;
        border-radius: 7px;
    }

    .article-content p > img {
        margin-top: 22px;
    }

    .article-content table {
        min-width: 550px;
    }

    .article-content blockquote {
        margin: 25px 0;
        padding: 17px 18px;
        font-size: 15px;
    }

    .article-content iframe {
        min-height: 250px;
        margin: 24px auto;
    }

    .article-detail__share {
        align-items: flex-start;
        flex-direction: column;

        margin-top: 32px;
        gap: 12px;
    }

    .list-social {
        gap: 6px;
    }

    .btn-social {
        width: 36px;
        height: 36px;
    }
}

.box-contact-us {
    position: relative;
    padding: 40px 0 20px;
}

.box-contact-us .contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-main);
    margin-bottom: 14px;
}

.box-contact-us .contact-eyebrow::after {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--color-main);
}

.box-contact-us .contact-title {
    margin: 0 0 18px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-main);
}

.box-contact-us .contact-title .text-highlight {
    color: var(--color-main);
}

.box-contact-us .contact-desc {
    max-width: 480px;
    margin: 0 0 32px;
    color: #667085;
    line-height: 1.7;
}

.box-contact-us .contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px -10px rgba(16, 24, 40, .25);
    padding: 18px 22px;
    margin-bottom: 16px;
}

.box-contact-us .contact-info-item .icon {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-main);
    color: #fff;
    font-size: 18px;
}

.box-contact-us .contact-info-item .text {
    display: flex;
    flex-direction: column;
}

.box-contact-us .contact-info-item .label {
    font-size: 13px;
    color: #667085;
    margin-bottom: 2px;
}

.box-contact-us .contact-info-item .value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-main);
    text-decoration: none;
}

.box-contact-us .contact-form-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 45px -20px rgba(16, 24, 40, .3);
    padding: 40px;
}

.box-contact-us .contact-form-card .form-group label {
    font-weight: 700;
    color: var(--color-black);
}

.box-contact-us .contact-form-card .field-wrap {
    position: relative;
}

.box-contact-us .contact-form-card .form-control {
    background: #f5f6fa;
    border: 1px solid #f5f6fa;
    border-radius: 12px;
    height: 52px;
    padding-right: 44px;
}

.box-contact-us .contact-form-card textarea.form-control {
    height: auto;
    min-height: 120px;
    padding-top: 14px;
}

.box-contact-us .contact-form-card .form-control:focus {
    background: #fff;
    border-color: var(--color-highlight);
    box-shadow: none;
}

.box-contact-us .contact-form-card .field-wrap .field-icon {
    position: absolute;
    top: 17px;
    right: 16px;
    color: #98a2b3;
    pointer-events: none;
}

.box-contact-us .contact-form-card .field-wrap textarea~.field-icon {
    top: 16px;
}

.box-contact-us .btn-contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--color-highlight), var(--color-main));
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
}

.box-contact-us .contact-map-wrap {
    position: relative;
    margin-top: 48px;
    border-radius: 20px;
    overflow: hidden;
}

.box-contact-us .contact-map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.box-contact-us .map-popup {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 35px -15px rgba(16, 24, 40, .35);
    padding: 16px 18px;
}

.box-contact-us .map-popup .icon {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-highlight);
    color: #fff;
    font-size: 14px;
}

.box-contact-us .map-popup .address {
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 4px;
}

.box-contact-us .map-popup .link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-highlight);
    text-decoration: none;
}

.box-phone-left {
    position: fixed;
    bottom: 85px;
    left: 0;
    gap: 15px;
    display: inline-flex;
    flex-direction: column;
}

.box-phone-left .item a {
    background-color: #003FCC;
    border-color: #E8E8E8;
    transition: all 0.3s ease-in-out 0s;
    padding: 15px 20px;
    border-style: none;
    border-radius: 50px 50px 50px 50px;
    display: inline-flex;
    color: #fff;
    gap: 10px;
    align-items: center;
}

.box-phone-left .item a:hover {
    background: var(--color-main);
}


.box-phone-left .item.item-0 a {
    background: var(--color-main);
}

.box-phone-left .item.item-0 a:hover {
    background: #7e0000;
}


.article-detail-about {
    margin: 40px auto 70px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
}

.article-detail-about * {
    box-sizing: border-box;
}

.article-detail-about>.title {
    position: relative;
    margin-bottom: 35px;
    padding-bottom: 18px;
    color: var(--color-title);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
}

.article-detail-about>.title:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg,
            var(--color-main),
            var(--color-highlight));
    content: "";
}

.article-detail-about .article-content {
    overflow: hidden;
    border: 1px solid #e3eaf2;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(17, 45, 78, 0.07);
    padding: 50px;
}

.article-detail-about .about-section {
    padding: 50px;
}

.article-detail-about .about-container {
    width: 100%;
}

.article-detail-about .about-content {
    width: 100%;
}

.article-detail-about .about-content h1 {
    margin: 0 0 30px;
    padding: 28px 30px;
    border-left: 5px solid var(--color-highlight);
    border-radius: 12px;
    background: linear-gradient(135deg, #073b70, var(--color-main));
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
}

.article-detail-about .about-content h1+h2 {
    margin-top: 0;
}

.article-detail-about .about-content p {
    margin: 0 0 16px;
    color: var(--color-text);
    text-align: justify;
}

.article-detail-about .about-content p strong {
    color: var(--color-title);
}

.article-detail-about .about-content p strong:first-child {
    font-weight: 700;
}

.article-detail-about .about-content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 20px 0 24px;
    padding: 0;
    list-style: none;
}

.article-detail-about .about-content li {
    position: relative;
    margin: 0;
    padding: 14px 16px 14px 16px;
    border: 1px solid #e3eaf2;
    border-radius: 10px;
    background: #f5f8fc;
    color: #152a42;
    font-size: 14px;
    line-height: 1.6;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.article-detail-about .about-content li:hover {
    transform: translateY(-2px);
    border-color: rgba(7, 81, 155, 0.3);
    background: var(--color-white);
}


.article-detail-about .about-content h2:last-of-type {
    margin-top: 30px;
}

.article-detail-about .about-content p:last-child {
    margin: 25px 0 0;
    padding: 16px 20px;
    border-radius: 10px;
    background: #eaf4ff;
    color: var(--color-main);
    font-size: 18px;
    text-align: center;
}

.list-product-page .swiper .product-item:hover {
    transform: none;
    box-shadow: none;
}


.hotline-phone-ring-wrap {
    right: 20px;
    bottom: 20px;
    position: fixed;
    z-index: 990;
}

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

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

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

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

#zalo .hotline-phone-ring-circle,
.messenger-toggle .hotline-phone-ring-circle {
    border-color: #0e95e5;
}

#zalo .hotline-phone-ring-circle-fill,
.messenger-toggle .hotline-phone-ring-circle-fill {
    background-color: #0a92e8;
}

#tiktok .hotline-phone-ring-circle {
    border-color: #7c7c7c;
}

#tiktok .hotline-phone-ring-img-circle {
    background-color: #fff;
}

#tiktok .hotline-phone-ring-circle-fill {
    background: #585858;
}

#facebook .hotline-phone-ring-circle {
    border-color: #3c5996;
}

#facebook .hotline-phone-ring-circle-fill {
    background: #3c5996;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.messenger-toggle {
    position: fixed;
    bottom: 5px;
    right: 0px;
    z-index: 9999;
    cursor: pointer;
    animation: shake 1.5s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
}

.social-buttons.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(2deg);
    }
}

.is-mobile .hotline-phone-ring-wrap {
    right: 0;
    bottom: 60px;
}

.messenger-toggle .hotline-phone-ring-img-circle i {
    font-size: 2.2rem;
}

.messenger-toggle:hover .hotline-phone-ring-img-circle i {
    color: #007bff;
}

.messenger-toggle.active i::before {
    content: '\f00d';
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 991px) {
    .article-detail-about .about-section {
        padding: 35px;
    }

    .article-detail-about .about-content h1 {
        font-size: 20px;
    }
    .footer-mild-01 {
        padding: 40px 0 20px;
    }
    
    .footer-mild-01>.container>.row>div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .highlight-item {
        padding: 15px;
    }
    
    .highlight-item__number {
        font-size: 41px;
    }
    
    .highlight-item__circle:before {
        width: 170px;
        height: 183px;
    }
    
    .highlight-item__title {
        margin-top: 20px;
    }
    
    .highlight-item__desc {
        font-size: 14px;
    }
    .box-thiet-bi .thiet-bi-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .article-detail-about {
        margin: 25px auto 45px;
        font-size: 15px;
    }

    .article-detail-about>.title {
        margin-bottom: 25px;
        font-size: 28px;
    }

    .article-detail-about .article-content {
        border-radius: 14px;
        padding: 15px;
    }

    .article-detail-about .about-section {
        padding: 25px 20px;
    }

    .article-detail-about .about-content h1 {
        margin-bottom: 25px;
        padding: 15px;
        font-size: 16px;
    }

    .article-detail-about .about-content ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .article-detail-about .about-content p {
        text-align: left;
    }
    .box-contact-us .contact-title {
        font-size: 20px;
    }

    .box-contact-us .contact-info-item .value {
        font-size: 14px;
    }

    .box-contact-us .contact-form-card {
        padding: 20px;
    }
}


@media (max-width:1200px){

    .title-section {
    font-size: 20px;
}   

    .header-mid-mb>.container>.row {
        display: flex;
        align-items: center;
    }

    .logo-section img {
        height: 5rem;
    }
    .box-section-home-02 {
        margin-top: 0;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .box-banner-why .before {
        display: none;
    }
    .box-section-home-06 {
        padding: 40px 0;
    }

    .article-item-slider .article-info {
        display: none;
    }

    .title-slogan {
        margin-bottom: 20px;
    }
    .title-slogan .slogan {
        font-size: 25px;
    }
    .box-banner-form .title-slogan .title-section {
        text-align: center;
    }
    .box-banner-form .contact-card {
        text-align: center;
        padding: 35px;
    }
    .box-banner-form {
        padding: 40px 0;
    }
    .box-section-home-08 {
        padding: 40px 0 40px;
    }
    .box-section-home-09 {
        padding: 40px 0;
    }
    .article-detail-about .about-content li {
        padding: 10px;
    }
    .list-product-page {
        padding: 40px 0;
    }

    .list-product-page>.row {
        row-gap: 15px;
        margin-right: -7.5px;
        margin-left: -7.5px;
    }

    .list-product-page>.row>div {
        padding-right: 7.5px;
        padding-left: 7.5px;
    }
    .list-product-page .link .item a {
        padding: 5px 0;
    }

    .list-product-page .link {
        gap: 7px;
    }
    .box-section-product-detail-02 {
        padding: 40px 0;
    }

    .product-detail-head>.row {
        row-gap: 20px;
    }
    .product-detail-footer>.title:before {
        top: 0;
    }
    
    .content-pane-card h4 {
        font-size: 16px;
    }

}