.header-menu {
    padding: 5px 0;
}

.entire-info-website p, .menu-footer a, .menu-footer p {
    font-size: 16px !important;
}

@media (min-width: 1200px){
    .header-menu .container {
        max-width: 1350px;
    }
}

/* ==================================================
   ABOUT SECTION
================================================== */

.box-section-about {
    position: relative;
    overflow: hidden;
}

.box-section-about .row {
    margin-left: -25px;
    margin-right: -25px;
}

.box-section-about [class*="col-"] {
    padding-left: 25px;
    padding-right: 25px;
}

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

.box-section-about .info-about {
    max-width: 650px;
}

.box-section-about .title-section {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-highlight);
}

.box-section-about .slogan {
    margin-bottom: 25px;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--color-main);
    font-family: "Montserrat", sans-serif;
}

.box-section-about .dsc-web {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text);
}

.box-section-about .company-name {
    display: inline;
    margin-right: 5px;
    font-weight: 700;
    color: var(--color-main);
}

.box-section-about .company-description {
    display: inline;
}

/* ==================================================
   OPTION LIST
================================================== */

.box-section-about .option {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.box-section-about .option .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 92px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(17, 28, 45, 0.08);
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.box-section-about .option .item:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 167, 30, 0.5);
}

.box-section-about .option .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    margin-top: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg,
            var(--color-highlight),
            var(--color-main));
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(229, 167, 30, 0.25);
}

.box-section-about .option .text {
    flex: 1;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
    color: var(--color-black);
}

.box-logistics .option {
    grid-template-columns: 1fr;
}

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

.box-section-about .inter-img {
    position: relative;
    padding: 30px 0 30px 45px;
}

.box-section-about .inter-img .img {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #f5f5f5;
}

.box-section-about .inter-img .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.box-section-about .inter-img:hover .img img {
    transform: scale(1.05);
}

/* ==================================================
   YEAR BADGE
================================================== */

.box-section-about .year {
    position: absolute;
    left: 0;
    bottom: 65px;
    z-index: 2;
    min-width: 165px;
    padding: 22px 24px;
    border-radius: 18px;
    background: var(--color-main);
    color: #ffffff;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
}

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

@media (max-width: 1199px) {
    .box-section-about .slogan {
        font-size: 38px;
    }

    .box-section-about .option {
        grid-template-columns: 1fr;
    }

    .box-section-about .option .item {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .box-section-about .info-about {
        max-width: 100%;
        margin-bottom: 45px;
    }

    .box-section-about .inter-img {
        max-width: 650px;
        margin: 0 auto;
        padding: 25px 0 25px 35px;
    }

    .box-section-about .year {
        bottom: 50px;
    }
}

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

@media (max-width: 767px) {

    .box-section-about .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .box-section-about [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }

    .box-section-about .title-section {
        margin-bottom: 14px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .box-section-about .slogan {
        margin-bottom: 20px;
        font-size: 31px;
        letter-spacing: -0.5px;
    }

    .box-section-about .dsc-web {
        margin-bottom: 26px;
        font-size: 15px;
        line-height: 1.75;
    }

    .box-section-about .option {
        gap: 12px;
    }

    .box-section-about .option .item {
        padding: 15px;
        border-radius: 14px;
    }

    .box-section-about .option .icon {
        width: 34px;
        min-width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .box-section-about .option .text {
        font-size: 14px;
    }

    .box-section-about .inter-img {
        padding: 0 0 30px;
    }

    .box-section-about .inter-img .img {
        border-radius: 20px;
    }

    .box-section-about .year {
        left: 18px;
        bottom: 10px;
        min-width: 135px;
        padding: 16px 18px;
        border-radius: 14px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .box-section-about .slogan {
        font-size: 27px;
    }

    .box-section-about .option {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   SERVICE HEADING - LUXURY STYLE
========================================= */

.section-heading {
    position: relative;
    max-width: 860px;
    margin: 0px auto 40px;
    padding: 0 20px;
}

.section-heading .sub-title {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    padding: 0 42px;
    color: var(--color-highlight);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-heading .sub-title::before,
.section-heading .sub-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--color-highlight));
}

.section-heading .sub-title::before {
    left: 0;
}

.section-heading .sub-title::after {
    right: 0;
    transform: rotate(180deg);
}

.section-heading .title-section {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-main);
    font-size: 32px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.section-heading .line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 20px;
    margin: 15px auto 0;
}

.section-heading .line::before,
.section-heading .line::after {
    content: "";
    width: 48px;
    height: 1px;
    background: rgba(17, 28, 45, 0.22);
}

.section-heading .line span {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 10px;
    border: 2px solid var(--color-highlight);
    transform: rotate(45deg);
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(229, 167, 30, 0.1);
}

/* TABLET */

@media (max-width: 991px) {
    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading .title-section {
        font-size: 38px;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .section-heading {
        margin-bottom: 32px;
        padding: 0;
    }

    .section-heading .sub-title {
        margin-bottom: 12px;
        padding: 0 34px;
        font-size: 11px;
        letter-spacing: 3px;
    }

    .section-heading .sub-title::before,
    .section-heading .sub-title::after {
        width: 22px;
    }

    .section-heading .title-section {
        font-size: 29px;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }

    .section-heading .line {
        margin-top: 18px;
    }
}

.box-service {
    position: relative;
    padding: 10px 0;
}

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

.box-service .item {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(16, 86, 174, .1);
    border-radius: 22px;
    box-shadow:
        0 8px 25px rgba(19, 39, 67, .06),
        0 2px 6px rgba(19, 39, 67, .03);
    cursor: pointer;
    transition:
        transform .4s cubic-bezier(.22, 1, .36, 1),
        box-shadow .4s ease,
        border-color .4s ease;
}

.box-service .item:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 86, 174, .24);
    box-shadow:
        0 24px 55px rgba(16, 86, 174, .14),
        0 6px 16px rgba(19, 39, 67, .08);
}

.box-service .inter-img {
    position: relative;
    overflow: hidden;
    padding: 15px 15px 0;
}

.box-service .img {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 15px;
    background: #edf3f9;
}

.box-service .img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .7s cubic-bezier(.22, 1, .36, 1),
        filter .5s ease;
}

.box-service .img::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(9, 35, 68, 0) 46%,
            rgba(9, 35, 68, .25) 100%);
    transition: background .4s ease;
}

.box-service .item:hover .img img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.03);
}

.box-service .item:hover .img::after {
    background: linear-gradient(180deg,
            rgba(16, 86, 174, .02) 30%,
            rgba(10, 42, 82, .38) 100%);
}

.box-service .content {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    padding: 20px 66px 20px 20px;
    color: var(--color-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -.2px;
    transition: color .3s ease;
}


.box-service .content .icon {
    content: "\f061";
    position: absolute;
    top: 50%;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(16, 86, 174, .14);
    border-radius: 50%;
    background: #f4f7fb;
    color: var(--color-highlight);
    font-family: "Font Awesome 6 Pro";
    font-size: 14px;
    font-weight: 400;
    transform: translateY(-50%);
    transition:
        color .3s ease,
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.box-service .item:hover .name {
    color: var(--color-highlight);
}

.box-service .item:hover .name::before {
    width: 62px;
}

.box-service .item:hover .name::after {
    color: #fff;
    background: var(--color-main);
    border-color: var(--color-main);
    transform: translate(4px, -50%);
}

.box-service .item:first-child {
    border-color: rgba(16, 86, 174, .2);
}

.box-service .item:first-child .name {
    color: var(--color-highlight);
}

@media(max-width:1199px) {
    .box-service .list-service {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}

/* Tablet */
@media(max-width:991px) {
    .box-service .list-service {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .box-service .name {
        font-size: 16px;
    }
}

/* Mobile */
@media(max-width:575px) {
    .box-service .list-service {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .box-service .item {
        border-radius: 18px;
    }

    .box-service .inter-img {
        padding: 8px 8px 0;
    }

    .box-service .img {
        aspect-ratio: 16/10;
        border-radius: 13px;
    }

    .box-service .name {
        font-size: 14px;
    }

    .box-service .name::before {
        left: 18px;
    }

    .box-service .name::after {
        right: 16px;
        width: 36px;
        height: 36px;
    }
}

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

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

.box-section-home-05 {
    position: relative;
}

.box-quy-trinh {
    position: relative;
    padding: 60px 0 105px;
    overflow: hidden;
    background: #12203f;
}

.box-quy-trinh>.img-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.box-quy-trinh>.img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.32);
}

.box-quy-trinh>.img-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(17, 31, 63, 0.95) 0%,
            rgba(19, 34, 68, 0.87) 50%,
            rgba(17, 31, 63, 0.96) 100%);
}

.box-quy-trinh>.container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.box-quy-trinh .warp-conent {
    position: relative;
}

.box-quy-trinh .before {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    bottom: 0;
    transform: rotate(180deg);
}

.box-quy-trinh .before svg {
    height: 53px;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.box-quy-trinh .before svg path {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

.box-quy-trinh .section-heading .description,
.box-quy-trinh .section-heading .desc {
    max-width: 1000px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.7;
}

.box-quy-trinh .section-heading .line {
    display: none;
}


.box-quy-trinh .list-quy-trinh {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.box-quy-trinh .list-quy-trinh .item {
    position: relative;
    min-width: 0;
    aspect-ratio: 1 / 0.95;
    overflow: hidden;
    border: 1px solid #f21650;
    background: #172545;
    isolation: isolate;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢nh dÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ch vÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ */
.box-quy-trinh .item .inter-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.box-quy-trinh .item .inter-img .img {
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.box-quy-trinh .item .inter-img .img::before {
    display: none;
}

.box-quy-trinh .item .inter-img img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.4s ease;
}

.box-quy-trinh .item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(7, 15, 34, 0.13) 0%,
            rgba(7, 15, 34, 0.25) 35%,
            rgba(7, 15, 34, 0.78) 100%);
    transition: background 0.4s ease;
}

.box-quy-trinh .item .content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px 24px;
    text-align: center;
}

.box-quy-trinh .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 17px;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.box-quy-trinh .item .icon .img-icon {
    width: 100%;
    height: 100%;
}

.box-quy-trinh .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 7px 8px rgba(0, 0, 0, 0.25));
}

.box-quy-trinh .item .name {
    display: -webkit-box;
    min-height: 52px;
    margin: 0 auto 10px;
    overflow: hidden;
    color: #fff;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.45);
}

/* Link chi tiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿t */
.box-quy-trinh .item .link {
    line-height: 1;
}

.box-quy-trinh .item .link a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 4px;
    color: #ff124f;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 0.3s ease,
        letter-spacing 0.3s ease;
}

.box-quy-trinh .list-quy-trinh .item:hover .inter-img img {
    transform: scale(1.1);
    filter: saturate(1.08);
}

.box-quy-trinh .list-quy-trinh .item:hover::after {
    background:
        linear-gradient(180deg,
            rgba(7, 15, 34, 0.05) 0%,
            rgba(7, 15, 34, 0.18) 32%,
            rgba(7, 15, 34, 0.86) 100%);
}

.box-quy-trinh .list-quy-trinh .item:hover .icon {
    transform: translateY(-7px) scale(1.07);
}

.box-quy-trinh .list-quy-trinh .item:hover .link a {
    color: #fff;
    letter-spacing: 0.8px;
}


@media (max-width: 1399px) {
    .box-quy-trinh>.container {
        max-width: 1240px;
    }

    .box-quy-trinh .section-heading .title-section {
        font-size: 40px;
    }

    .box-quy-trinh .list-quy-trinh {
        gap: 15px;
    }

    .box-quy-trinh .item .name {
        font-size: 16px;
    }

    .box-quy-trinh .item .icon {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 1199px) {

    .box-quy-trinh .list-quy-trinh {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .box-quy-trinh .list-quy-trinh .item {
        aspect-ratio: 1 / 0.9;
    }
}

@media (max-width: 767px) {
    .box-quy-trinh {
        padding: 50px 0 70px;
    }

    .box-quy-trinh>.container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .box-quy-trinh .section-heading {
        margin-bottom: 30px;
    }

    .box-quy-trinh .section-heading .title-section {
        font-size: 28px;
        line-height: 1.2;
    }

    .box-quy-trinh .list-quy-trinh {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .box-quy-trinh .item .content {
        padding: 20px 10px;
    }

    .box-quy-trinh .item .icon {
        width: 52px;
        height: 52px;
        margin-bottom: 12px;
    }

    .box-quy-trinh .item .name {
        min-height: 42px;
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 1.35;
    }

    .box-quy-trinh .item .link a {
        font-size: 11px;
    }
}

@media (max-width: 420px) {
    .box-quy-trinh .section-heading .title-section {
        font-size: 25px;
    }

    .box-quy-trinh .list-quy-trinh {
        grid-template-columns: 1fr;
    }

    .box-quy-trinh .list-quy-trinh .item {
        aspect-ratio: 1 / 0.75;
    }

    .box-quy-trinh .item .name {
        font-size: 17px;
    }
}

.box-quy-trinh .before {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    bottom: 0;
    transform: rotate(180deg);
}

.box-quy-trinh .before svg {
    height: 53px;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.box-quy-trinh .before svg path {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

.box-quy-trinh .section-heading span.sub-title {
    color: #fff;
}

.box-quy-trinh .section-heading span.sub-title::before,
.box-quy-trinh .section-heading span.sub-title::after {
    background: linear-gradient(90deg, transparent, #fff);
}

.box-quy-trinh .section-heading .title-section {
    color: #fff;
}

/* =========================
   Logistics Section
========================= */

.box-logistics {
    position: relative;
}

.box-logistics .row {
    align-items: center;
}

/* IMAGE */

.box-logistics .inter-img {
    position: relative;
}

.box-logistics .img {
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow:
        0 25px 60px rgba(20, 35, 80, .08);
}

.box-logistics .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.box-logistics .img:hover img {
    transform: scale(1.05);
}


/* CONTENT */

.box-logistics .info-about {
    padding-left: 70px;
}

.box-logistics .company-name {
    display: block;
    font-size: 18px;
    color: var(--color-highlight);
    margin-bottom: 20px;
    font-weight: 700;
}


/* LIST */

.box-logistics .option {
    display: grid;
    gap: 10px;
}


.box-logistics .option .item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border-radius: 18px;
    transition: .35s;
    cursor: pointer;
}

.box-logistics .option .icon {
    width: 20px;
    height: 20px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1677ff, #3db6ff);
    color: #fff;
    font-size: 10px;
    box-shadow:
        0 10px 22px rgba(22, 119, 255, .25);
}


.box-logistics .option .text {
    font-size: 16px;
    color: #1f2937;
    line-height: 1.6;
}


/* Hover */

.box-logistics .option .item:hover .text {

    color: #1677ff;

}


/* IMAGE DECOR */

.box-logistics .inter-img::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #1677ff, #66c4ff);
    border-radius: 40px;
    left: -30px;
    top: -30px;
    opacity: .08;
    z-index: -1;
}

.box-logistics .inter-img::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border: 2px dashed rgba(22, 119, 255, .15);

    right: -40px;
    bottom: -40px;

    border-radius: 40px;

    z-index: -1;

}


/* Responsive */

@media(max-width:991px) {
    .box-logistics .info-about {

        padding: 50px 0 0;

    }

    .box-logistics .title-section {

        font-size: 34px;

    }

    .box-logistics .option {

        grid-template-columns: 1fr;

    }

}

@media(max-width:576px) {

    .box-logistics .title-section {

        font-size: 28px;

    }

}

.box-section-home-03>.container {
    max-width: 1400px;
}

.box-section-home-04 {
    padding: 80px 0;
}

.box-count .inter-img {
    position: relative;
    padding-right: 20px;
}

.box-count .inter-img .img {
    overflow: hidden;
    border-radius: 24px;
    padding-top: 100%;
}

.box-count .inter-img .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.box-count .inter-img:hover .img img {
    transform: scale(1.05);
}

.box-count .info-count {
    max-width: 620px;
}

.box-count .sub-title {
    display: block;
    margin-bottom: 14px;
    color: var(--color-main);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.box-count .title-section {
    margin: 0 0 18px;
    color: var(--color-black);
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.box-count .dsc-web {
    margin-bottom: 34px;
    color: var(--color-text);
    opacity: 0.75;
    font-size: 15px;
    line-height: 1.8;
}

.box-count .list-count {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.box-count .list-count .item {
    padding: 18px 30px;
}

.box-count .list-count .item:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgba(17, 28, 45, 0.1);
}

.box-count .list-count .item:nth-child(even) {
    padding-right: 0;
}

.box-count .list-count .item:nth-child(-n + 2) {
    padding-top: 0;
    border-bottom: 1px solid rgba(17, 28, 45, 0.1);
}

.box-count .list-count .item:nth-child(n + 3) {
    padding-bottom: 0;
}

.box-count .list-count .number {
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
    color: var(--color-main);
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
}

.box-count .list-count .number .suffix {
    margin-left: 2px;
}

.box-count .list-count .label {
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
}

/* TABLET */

@media (max-width: 991px) {
    .box-count .inter-img {
        max-width: 500px;
        margin: 0 auto 40px;
        padding-right: 0;
    }

    .box-count .info-count {
        max-width: 100%;
    }

    .box-count .title-section {
        font-size: 28px;
    }
}

/* MOBILE */

@media (max-width: 575px) {
    .box-count .list-count .item {
        padding: 14px 16px;
    }

    .box-count .list-count .number {
        font-size: 32px;
    }
}

.box-khach-hang .section-heading {
    max-width: 640px;
    margin: 0 auto 40px;
}

.box-khach-hang .title-section {
    margin: 0 0 12px;
    font-size: 34px;
}

.box-khach-hang .dsc-web {
    color: var(--color-text);
    opacity: 0.75;
    font-size: 15px;
    line-height: 1.8;
}

.box-khach-hang .swiper-khach-hang {
    position: relative;
}

.box-khach-hang .item-khach-hang {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.box-khach-hang .rating {
    margin-bottom: 18px;
    color: var(--color-main);
    font-size: 16px;
    letter-spacing: 3px;
}

.box-khach-hang .rating .fa-light {
    color: #d8d8d8;
}

.box-khach-hang .description {
    margin-bottom: 24px;
    color: var(--color-text);
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
}

.box-khach-hang .info .avatar {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
}

.box-khach-hang .info .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-khach-hang .info .name {
    color: var(--color-black);
    font-size: 17px;
    font-weight: 600;
}

.box-khach-hang .swiper-button-next,
.box-khach-hang .swiper-button-prev {
    top: 40%;
    color: var(--color-main);
}

/* MOBILE */

@media (max-width: 575px) {
    .box-khach-hang .title-section {
        font-size: 26px;
    }
}

.box-section-home-06 {
    background: #fff;
    margin-top: -1px;
    position: relative;
    padding: 80px 0;
}

.box-banner-center-home {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    z-index: 1;
}

.box-banner-center-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 20, 28, .58),
            rgba(18, 20, 28, .58));
    z-index: -1;
}

.box-banner-center-home .content {
    max-width: 980px;
    margin: auto;
    text-align: center;
}

.box-banner-center-home .title-section {
    margin: 0 0 35px;
    color: #fff;
    text-transform: uppercase;
}

.box-banner-center-home .dsc {
    max-width: 1100px;
    margin: auto;
    color: rgba(255, 255, 255, .95);
    font-size: 20px;
    line-height: 1.9;
    font-weight: 400;
}

.box-banner-center-home .link {
    margin-top: 55px;
}

.box-banner-center-home .link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 270px;
    height: 64px;

    background: #ff004d;

    color: #fff;
    text-decoration: none;
    text-transform: uppercase;

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

    border-radius: 4px;

    transition: .35s;

    box-shadow:
        0 15px 35px rgba(255, 0, 77, .35);
}

.box-banner-center-home .link a:hover {
    background: #d90043;
    transform: translateY(-3px);
    box-shadow:
        0 22px 45px rgba(255, 0, 77, .45);
}

@media (max-width:991px) {

    .box-banner-center-home {
        padding: 60px 0;
    }

    .box-banner-center-home .title-section {
        font-size: 42px;
    }

    .box-banner-center-home .dsc {
        font-size: 17px;
        line-height: 1.8;
    }

}

@media (max-width:767px) {

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

    .box-banner-center-home .title-section {
        font-size: 30px;
    }

    .box-banner-center-home .dsc {
        font-size: 15px;
    }

    .box-banner-center-home .link a {
        width: 100%;
        max-width: 280px;
        height: 46px;
    }

}

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

.box-khach-hang .swiper.swiper-khach-hang {
    padding-bottom: 30px;
}

.box-khach-hang .swiper.swiper-khach-hang .swiper-pagination {
    bottom: 0;
}

/* Box ÃƒÆ’Ã¢â‚¬Å¾ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“ÃƒÆ’Ã¢â‚¬Â Ãƒâ€šÃ‚Â¡n hÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â ng vÃƒÆ’Ã‚Â¡Ãƒâ€šÃ‚Â»Ãƒâ€šÃ‚Â«a mua (fake order popup) */
.box-don-hang {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 999;
    width: 320px;
    max-width: calc(100vw - 40px);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.box-don-hang.is-hidden {
    display: none;
}

.box-don-hang.is-switching {
    opacity: 0;
    transform: translateY(16px);
}

.don-hang-item {
    display: none;
    position: relative;
}

.don-hang-item.active {
    display: block;
}

.don-hang-item .don-hang-close {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(17, 28, 45, 0.2);
    color: var(--color-text);
    font-size: 11px;
    cursor: pointer;
}

.don-hang-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(17, 28, 45, 0.15);
    text-decoration: none;
}

.don-hang-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.don-hang-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.don-hang-content {
    min-width: 0;
}

.don-hang-name {
    overflow: hidden;
    color: #ffffff;
    font-size: 12px;
    text-overflow: ellipsis;
}

.don-hang-desc {
    margin-top: 2px;
    color: var(--color-text);
    font-size: 13px;
    line-height: 1.4;
}

/* ==================================
   FOOTER LOGISTICS
================================== */

footer {
    position: relative;
    overflow: hidden;
    background: #080d17;
    color: #fff;
}

/* Ãƒâ€žÃ‚ÂÃƒâ€ Ã‚Â°a ÃƒÂ¡Ã‚ÂºÃ‚Â£nh banner thÃƒÆ’Ã‚Â nh ÃƒÂ¡Ã‚ÂºÃ‚Â£nh nÃƒÂ¡Ã‚Â»Ã‚Ân footer */
footer .banner-footer-01 {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

footer .banner-footer-01,
footer .banner-footer-01 .row,
footer .banner-footer-01 [class*="col-"],
footer .banner-footer-01 [nh-block],
footer .banner-footer {
    width: 100%;
    height: 100%;
}

footer .banner-footer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .52;
}

/* LÃƒÂ¡Ã‚Â»Ã¢â‚¬Âºp phÃƒÂ¡Ã‚Â»Ã‚Â§ tÃƒÂ¡Ã‚Â»Ã¢â‚¬Ëœi */
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-color: #0C0E14;
    opacity: 0.82;
}

/* Ãƒâ€žÃ‚ÂÃƒÂ¡Ã‚ÂºÃ‚Â£m bÃƒÂ¡Ã‚ÂºÃ‚Â£o nÃƒÂ¡Ã‚Â»Ã¢â€žÂ¢i dung nÃƒÂ¡Ã‚ÂºÃ‚Â±m trÃƒÆ’Ã‚Âªn ÃƒÂ¡Ã‚ÂºÃ‚Â£nh */
footer>[nh-row]:not(.banner-footer-01) {
    position: relative;
    z-index: 2;
}

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


footer .footer-mild-01 .row {
    margin-left: -24px;
    margin-right: -24px;
}

footer .footer-mild-01 .row>[class*="col-"] {
    padding-left: 24px;
    padding-right: 24px;
}

/* TiÃƒÆ’Ã‚Âªu Ãƒâ€žÃ¢â‚¬ËœÃƒÂ¡Ã‚Â»Ã‚Â footer */
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);
}

/* KhÃƒÆ’Ã‚Â´ng Ãƒâ€žÃ¢â‚¬ËœÃƒÂ¡Ã‚Â»Ã†â€™ class active lÃƒÆ’Ã‚Â m tÃƒÂ¡Ã‚ÂºÃ‚Â¥t cÃƒÂ¡Ã‚ÂºÃ‚Â£ link nÃƒÂ¡Ã‚Â»Ã¢â‚¬Â¢i bÃƒÂ¡Ã‚ÂºÃ‚Â­t */
footer .menu-footer ul li a.active {
    color: rgba(255, 255, 255, .92);
}


/* ÃƒÂ¡Ã‚ÂºÃ‚Â¨n khoÃƒÂ¡Ã‚ÂºÃ‚Â£ng trÃƒÂ¡Ã‚Â»Ã¢â‚¬Ëœng cÃƒÂ¡Ã‚Â»Ã‚Â§a row bÃƒÆ’Ã‚Âªn trong */
footer>[nh-row]:nth-of-type(2) .row {
    min-height: 0;
}

/* NÃƒÆ’Ã‚Âºt mÃƒÂ¡Ã‚ÂºÃ‚Â¡ng xÃƒÆ’Ã‚Â£ hÃƒÂ¡Ã‚Â»Ã¢â€žÂ¢i nÃƒÂ¡Ã‚Â»Ã¢â‚¬Â¢i giÃƒÂ¡Ã‚Â»Ã‚Â¯ nguyÃƒÆ’Ã‚Âªn bÃƒÆ’Ã‚Âªn mÃƒÆ’Ã‚Â©p mÃƒÆ’Ã‚Â n hÃƒÆ’Ã‚Â¬nh */
footer .share-buttons {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-50%);
}



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

    footer .footer-mild-01 {
        padding: 55px 0 20px;
    }

    footer .footer-mild-01 .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    footer .footer-mild-01 .row>[class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 35px;
    }

    footer .banner-footer img {
        object-position: center;
    }
}

@media (max-width: 767px) {

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

    footer .footer-mild-01 .row>[class*="col-"] {
        margin-bottom: 30px;
        flex: 0 0 100%;
        max-width: 100%;
    }

    footer .title-footer {
        margin-bottom: 14px;
        font-size: 15px;
    }

    footer address p,
    footer .menu-footer ul li a {
        font-size: 14px;
    }

    footer .share-buttons {
        display: none;
    }

    footer .box-don-hang {
        max-width: calc(100% - 24px);
    }
}

.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;
    left: 130%;
}

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

.tooltip-social:hover .tooltip-text::after {
    content: "";
    position: absolute;
    top: 27%;
    right: 100%;
    border-width: 7px;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.75) 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';
}


.header-menu>.container>.row>div:nth-child(3) {
    display: flex;
    justify-content: flex-end;
}

.language-section .language-switch .list-unstyled {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language-section .language-switch .list-unstyled img {
    width: 30px;
}

header {
    position: relative;
    z-index: 999;
}

header .header-menu {
    width: 100%;
    background: #fff;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background-color .35s ease;
}

header.header-fixed .header-menu {
    position: fixed;
    top: var(--header-fixed-top, 0);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9998;

    background: rgba(255, 255, 255, .98);
    box-shadow: 0 8px 30px rgba(15, 23, 42, .12);

    animation: headerSlideDown .35s ease forwards;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

header.header-fixed .logo-section img {
    max-height: 62px;
    transition: max-height .3s ease;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-placeholder {
    display: none;
    width: 100%;
}

.header-placeholder.active {
    display: block;
}

@media (max-width: 767px) {

    header.header-fixed .header-menu {
        top: 0 !important;
    }

    header.header-fixed .logo-section img {
        max-height: 52px;
    }
}

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

    .menu-section>ul>li>a {
        height: 80px;
        line-height: 80px;
    }

}

.article-detail-about {
    --color-main: #07519b;
    --color-main-dark: #073b70;
    --color-highlight: #e41e2b;
    --color-title: #152a42;
    --color-text: #526579;
    --color-muted: #718096;
    --color-border: #e3eaf2;
    --color-light: #f5f8fc;
    --color-white: #ffffff;
    max-width: 1170px;
    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 var(--color-border);
    border-radius: 20px;
    background: var(--color-white);
    box-shadow: 0 15px 45px rgba(17, 45, 78, 0.07);
}

.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,
            var(--color-main-dark),
            var(--color-main));
    color: var(--color-white);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
}

.article-detail-about .about-content h2 {
    position: relative;
    margin: 45px 0 18px;
    padding-left: 18px;
    color: var(--color-title);
    font-size: 24px;
    font-weight: 750;
    line-height: 1.4;
}

.article-detail-about .about-content h2:before {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;
    width: 4px;
    border-radius: 5px;
    background: var(--color-highlight);
    content: "";
}

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

.article-detail-about .about-content h3 {
    display: inline-flex;
    margin: 18px 0 8px;
    padding: 7px 14px;
    border-radius: 8px;
    background: #eaf4ff;
    color: var(--color-main);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.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 var(--color-border);
    border-radius: 10px;
    background: var(--color-light);
    color: var(--color-title);
    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 h3+p {
    margin-top: 5px;
    padding: 15px 18px;
    border-left: 3px solid var(--color-main);
    border-radius: 0 9px 9px 0;
    background: var(--color-light);
}

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

.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;
}

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

    .article-detail-about .about-content h1 {
        font-size: 28px;
    }
}

@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;
    }

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

    .article-detail-about .about-content h1 {
        margin-bottom: 25px;
        padding: 22px 20px;
        font-size: 24px;
    }

    .article-detail-about .about-content h2 {
        margin-top: 24px;
        font-size: 21px;
    }

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

    .article-detail-about .about-content p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .article-detail-about .about-section {
        padding: 22px 16px;
    }

    .article-detail-about .about-content h1 {
        font-size: 21px;
    }

    .article-detail-about .about-content h2 {
        font-size: 19px;
    }

    .article-detail-about .about-content li:before {
        top: 13px;
        left: 13px;
    }
}

.header-page-title {
    --color-highlight: #1056ae;
    --color-main: #cb2526;
    --color-text: #181818;

    position: relative;

    min-height: 320px;
    padding: 86px 0 120px;

    overflow: hidden;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    align-items: center;
}


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

.header-page-title::before {
    position: absolute;
    inset: 0;

    z-index: 1;

    content: "";

    background:
        linear-gradient(135deg,
            rgba(16, 86, 174, .88) 0%,
            rgba(16, 86, 174, .72) 50%,
            rgba(203, 37, 38, .68) 100%);
}


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

.header-page-title .container {
    position: relative;
    z-index: 3;
}


/* =========================
   BREADCRUMBS
========================= */

.header-page-title .breadcrumbs-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0;

    margin-bottom: 24px;

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

.header-page-title .breadcrumbs-section a {
    position: relative;

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

    color: rgba(255, 255, 255, .82);

    text-decoration: none;

    transition:
        color .25s ease,
        opacity .25s ease;
}

.header-page-title .breadcrumbs-section a:not(:last-child)::after {
    content: "/";

    margin: 0 12px;

    color: rgba(255, 255, 255, .45);
}

.header-page-title .breadcrumbs-section a:hover {
    color: #fff;
}

.header-page-title .breadcrumbs-section a.active {
    color: #fff;
    font-weight: 600;
}


.header-page-title .content {
    max-width: 950px;
}

.header-page-title .title {
    margin: 0;

    color: #fff;

    font-family: "Montserrat", sans-serif;

    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;

    text-transform: uppercase;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, .18);
}


.header-page-title .bg-bottom {
    position: absolute;

    right: 0;
    bottom: -1px;
    left: 0;

    z-index: 2;

    width: 100%;
    height: 70px;

    line-height: 0;

    overflow: hidden;
}

.header-page-title .bg-bottom svg {
    display: block;

    width: 100%;
    height: 100%;
}

.header-page-title .bg-bottom path {
    fill: #fff;
}


/* =========================
   NEWS PAGE
========================= */

.header-page-title-news {
    min-height: 396px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding-bottom: 50px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {

    .header-page-title {
        min-height: 300px;
        padding: 70px 0 105px;
    }

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

    .header-page-title .breadcrumbs-section {
        margin-bottom: 18px;
    }
}


@media (max-width: 767.98px) {

    .header-page-title {
        min-height: 260px;
        padding: 55px 0 90px;

        background-position: center;
    }

    .header-page-title .title {
        font-size: 30px;
        line-height: 1.25;
    }

    .header-page-title .breadcrumbs-section {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .header-page-title .breadcrumbs-section a:nth-child(3) {
        max-width: 100%;

        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

}


@media (max-width: 575.98px) {

    .header-page-title {
        min-height: 240px;
        padding: 45px 0 75px;
    }

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

    .header-page-title .breadcrumbs-section {
        font-size: 12px;
    }

    .header-page-title .breadcrumbs-section a:not(:last-child)::after {
        margin: 0 7px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .header-page-title {
        min-height: 240px;
        padding: 45px 0 75px;
        clip-path: polygon(0 0,
                100% 0,
                100% 88%,
                0 74%);
    }

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

/* Mobile */
@media (max-width: 767px) {
    .header-page-title {
        min-height: 190px;
        padding: 38px 0 65px;
        background-position: center;
        clip-path: polygon(0 0,
                100% 0,
                100% 88%,
                0 76%);
    }

    .header-page-title .title {
        font-size: 24px;
        letter-spacing: 0;
    }
}

@media (max-width: 480px) {
    .header-page-title {
        min-height: 165px;
        padding-top: 32px;
    }

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


.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;
}


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

.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);
}


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

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


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

.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);
}


/* =========================
   RESPONSIVE
========================= */

@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-section-article-02 {
    padding-top: 50px;
    padding-bottom: 40px;
}

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

.header-page-title .bg-bottom svg {
    height: 57px;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.header-page-title .bg-bottom {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -1px;
    transform: rotate(180deg);
    z-index: 2;
}

.header-page-title .bg-bottom svg path {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

/* Tab danh mÃƒÂ¡Ã‚Â»Ã‚Â¥c ngang - trang danh sÃƒÆ’Ã‚Â¡ch bÃƒÆ’Ã‚Â i viÃƒÂ¡Ã‚ÂºÃ‚Â¿t */
.categories-top-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    justify-content: center;
}

.categories-top-item {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    color: var(--gray-bold);
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
    background: #f3f3f3;
}

.categories-top-item:hover {
    background-color: rgba(203, 37, 38, 0.1);
    color: var(--color-main);
}

.categories-top-item.active {
    background-color: var(--color-main);
    color: var(--white);
}

.article-detail__title {
    font-size: 30px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
}

.article-detail__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--gray-bold);
    font-size: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

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

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

.article-detail__meta-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--gray-bold);
    opacity: 0.5;
    margin: 0 16px;
}

.article-detail__gallery {
    margin-bottom: 28px;
}

.article-detail__gallery-main {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

.article-detail__gallery .swiper-button-next,
.article-detail__gallery .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.article-detail__gallery .swiper-button-next i,
.article-detail__gallery .swiper-button-prev i {
    font-size: 16px;
}

.article-detail__thumbs .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.article-detail__thumbs .swiper-slide:hover,
.article-detail__thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.article-detail__video {
    border-radius: 14px;
    overflow: hidden;
}

.article-detail__body {
    background-color: var(--white);
    border: 1px solid var(--gray);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 28px;
}

.article-detail__lead {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

.article-detail__lead p {
    margin: 0;
}

.article-detail .article-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text);
}

.article-detail .article-content p {
    margin-bottom: 18px;
}

.article-detail .article-content h2,
.article-detail .article-content h3,
.article-detail .article-content h4 {
    font-weight: 700;
    line-height: 1.4;
    margin: 32px 0 14px;
    color: var(--color-text);
}

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

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

.article-detail .article-content ul,
.article-detail .article-content ol {
    margin-bottom: 18px;
    padding-left: 20px;
}

.article-detail .article-content li {
    margin-bottom: 8px;
}

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

.article-detail .article-content blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    border-left: 3px solid var(--color-main);
    background-color: var(--light);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--gray-bold);
}

.article-detail .article-content img {
    border-radius: 10px;
    margin: 8px 0;
}

.article-detail__files {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.article-detail__files .btn {
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
}

.article-detail__tags-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.article-detail__tags-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-bold);
    font-weight: 600;
}

.article-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.article-detail__tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background-color: var(--light);
    color: var(--color-text);
    font-size: 13px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.article-detail__tag:hover {
    background-color: var(--color-main);
    color: var(--white);
    text-decoration: none;
}

.article-detail__share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.article-detail__share-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-bold);
    font-weight: 600;
}

.article-detail__share .list-social {
    display: flex;
    gap: 10px;
}

.article-detail__share .btn-social {
    margin: 0;
    float: none;
}

.article-detail__share .btn-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--color-text);
    font-size: 15px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.article-detail__share .btn-social a:hover {
    background-color: var(--color-highlight);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .article-detail__title {
        font-size: 22px;
    }

    .article-detail__body {
        padding: 20px 18px;
    }

    .article-detail__lead {
        font-size: 16px;
    }

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

.box-list-article .swiper .swiper-slide {
    padding-left: 2px;
    padding-right: 2px;
    padding-top: 10px;
    padding-bottom: 5px;
}

.box-article-detail-02 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.box-list-article .swiper .swiper-slide .article-item {
    box-shadow: none;
    border: 1px solid #ddd;
}

.box-list-article .swiper {
    padding-bottom: 40px;
}

.box-list-article .title-section {
    margin-bottom: 30px;
}

.box-article-detail-01 {
    padding-top: 50px;
}

figure.image {
    text-align: center;
}

.box-article-service-01 {
    padding-bottom: 60px;
    padding-top: 50px;
}

```css
/* =========================================================
   ARTICLE DETAIL SERVICE
   CHá»ˆ Sá»¬ Dá»¤NG 3 MÃ€U THÆ¯Æ NG HIá»†U
   --color-highlight: #1056ae;
   --color-main:      #cb2526;
   --color-text:      #181818;
   ========================================================= */


/* =========================================================
   BASE
   ========================================================= */

.article-detail-service {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
}


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

.article-detail__title {
    position: relative;

    margin: 0 0 14px;
    padding-bottom: 16px;

    color: var(--color-text);

    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.article-detail__title::after {
    content: "";

    display: block;

    width: 58px;
    height: 4px;

    margin-top: 14px;

    border-radius: 99px;

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


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

.article-detail__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px 24px;

    margin-bottom: 28px;

    color: var(--color-text);

    font-size: 14px;
}

.article-detail__meta-item {
    display: inline-flex;
    align-items: center;

    gap: 7px;
}

.article-detail__meta-item i {
    color: var(--color-highlight);
}

.article-detail__meta-item strong {
    color: var(--color-text);
    font-weight: 600;
}


/* =========================================================
   GALLERY
   ========================================================= */

.article-detail__gallery {
    margin-bottom: 34px;
}


/* Main image */

.article-detail__gallery-main {
    overflow: hidden;

    border: 1px solid var(--color-text);

    border-radius: 16px;

    background: var(--color-text);

    box-shadow:
        0 10px 30px rgba(24, 24, 24, .12);
}

.article-detail__gallery-main .swiper-slide {
    overflow: hidden;
}

.article-detail__gallery-main .ratio-3-2 {
    overflow: hidden;

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

.article-detail__gallery-main img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.article-detail__gallery-main .swiper-slide-active img {
    transform: scale(1.01);
}


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

.article-detail__gallery-main .swiper-button-next,
.article-detail__gallery-main .swiper-button-prev {
    width: 44px;
    height: 44px;

    margin-top: -22px;

    border-radius: 50%;

    color: var(--color-text);

    background: rgba(255, 255, 255, .95);

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

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

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

.article-detail__gallery-main .swiper-button-next:hover,
.article-detail__gallery-main .swiper-button-prev:hover {
    color: var(--color-main);

    background: var(--color-text);

    transform: scale(1.08);
}

.article-detail__gallery-main .swiper-button-next i,
.article-detail__gallery-main .swiper-button-prev i {
    font-size: 18px;
}


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

.article-detail__gallery .additional-action {
    position: absolute;

    z-index: 10;

    right: 16px;
    bottom: 16px;
}

.article-detail__gallery .btn-addition-action {
    display: flex;

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

    width: 44px;
    height: 44px;

    border: 1px solid var(--color-text);

    border-radius: 12px;

    color: var(--color-text);

    background: rgba(255, 255, 255, .95);

    box-shadow:
        0 6px 20px rgba(24, 24, 24, .18);

    text-decoration: none;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.article-detail__gallery .btn-addition-action::before {
    content: "\f065";

    font-family: "Font Awesome 6 Pro";
    font-weight: 300;

    font-size: 17px;
}

.article-detail__gallery .btn-addition-action:hover {
    color: var(--color-main);

    background: var(--color-text);

    transform: translateY(-3px);
}


/* =========================================================
   THUMBNAILS
   ========================================================= */

.article-detail__thumbs {
    margin-top: 12px;
    padding: 2px;

    overflow: hidden;
}

.article-detail__thumbs .swiper-slide {
    position: relative;

    overflow: hidden;

    border: 1px solid var(--color-text);

    border-radius: 10px;

    cursor: pointer;

    opacity: .55;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.article-detail__thumbs .swiper-slide:hover {
    opacity: .85;

    transform: translateY(-2px);
}

.article-detail__thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.article-detail__thumbs .swiper-slide-thumb-active::after {
    content: "";

    position: absolute;

    z-index: 2;

    inset: 0;

    border: 3px solid var(--color-main);

    border-radius: 10px;

    pointer-events: none;
}

.article-detail__thumbs .ratio-1-1 {
    overflow: hidden;

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

.article-detail__thumbs img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}

.article-detail__thumbs .swiper-slide:hover img {
    transform: scale(1.05);
}


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

.article-detail__video {
    overflow: hidden;

    margin-top: 28px;

    border: 1px solid var(--color-text);

    border-radius: 16px;

    background: var(--color-text);

    box-shadow:
        0 10px 30px rgba(24, 24, 24, .12);
}

.article-detail__video iframe,
.article-detail__video video {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


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

.article-detail__body {
    margin-top: 32px;
}


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

.article-detail__lead {
    position: relative;

    margin-bottom: 28px;
    padding: 20px 24px;

    border-left: 4px solid var(--color-main);
    border-radius: 0 12px 12px 0;

    color: var(--color-text);

    background: rgba(203, 37, 38, .06);

    font-size: 17px;
    line-height: 1.75;
}

.article-detail__lead p:last-child {
    margin-bottom: 0;
}


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

.article-content {
    color: var(--color-text);

    font-size: 16px;
    line-height: 1.85;
}

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

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

.article-content p {
    margin-top: 0;
    margin-bottom: 18px;
}


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

.article-content h2 {
    position: relative;

    margin-top: 40px;
    margin-bottom: 18px;

    padding-left: 14px;

    color: var(--color-text);

    font-size: 27px;
    line-height: 1.35;
    font-weight: 700;
}

.article-content h2::before {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;
    bottom: 5px;

    width: 4px;

    border-radius: 99px;

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

.article-content h3 {
    margin-top: 32px;
    margin-bottom: 14px;

    color: var(--color-text);

    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
}

.article-content h4 {
    margin-top: 25px;
    margin-bottom: 12px;

    color: var(--color-text);

    font-size: 19px;
    line-height: 1.45;
    font-weight: 600;
}


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

.article-content a {
    color: var(--color-highlight);

    text-decoration: none;

    transition: color .2s ease;
}

.article-content a:hover {
    color: var(--color-main);

    text-decoration: underline;
}


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

.article-content img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 25px auto;

    border: 1px solid rgba(24, 24, 24, .15);

    border-radius: 12px;

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

.article-content img:hover {
    box-shadow:
        0 8px 25px rgba(24, 24, 24, .12);
}


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

.article-content ul,
.article-content ol {
    margin-top: 16px;
    margin-bottom: 20px;

    padding-left: 25px;
}

.article-content li {
    margin-bottom: 7px;
}

.article-content ul li::marker,
.article-content ol li::marker {
    color: var(--color-main);
}


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

.article-content blockquote {
    margin: 28px 0;
    padding: 18px 22px;

    border-left: 4px solid var(--color-highlight);
    border-radius: 0 12px 12px 0;

    color: var(--color-text);

    background: rgba(16, 86, 174, .06);

    font-size: 16px;
}


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

.article-content table {
    width: 100%;

    margin: 25px 0;

    border: 1px solid var(--color-text);

    border-collapse: separate;
    border-spacing: 0;

    border-radius: 10px;

    overflow: hidden;
}

.article-content th,
.article-content td {
    padding: 12px 14px;

    border-right: 1px solid rgba(24, 24, 24, .2);
    border-bottom: 1px solid rgba(24, 24, 24, .2);

    color: var(--color-text);

    text-align: left;
}

.article-content th:last-child,
.article-content td:last-child {
    border-right: 0;
}

.article-content tr:last-child td {
    border-bottom: 0;
}

.article-content th {
    color: var(--color-text);

    background: rgba(16, 86, 174, .08);

    font-weight: 600;
}


/* =========================================================
   DOWNLOAD FILES
   ========================================================= */

.article-detail__files {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 32px;
    padding-top: 24px;

    border-top: 1px solid rgba(24, 24, 24, .15);
}

.article-detail__files .btn {
    display: inline-flex;

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

    gap: 8px;

    min-height: 42px;

    padding: 9px 16px;

    border: 1px solid var(--color-main);
    border-radius: 9px;

    color: var(--color-main);

    background: transparent;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

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

.article-detail__files .btn:hover {
    color: var(--color-text);

    background: var(--color-main);

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(203, 37, 38, .2);
}


/* =========================================================
   TAGS
   ========================================================= */

.article-detail__tags-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;

    gap: 12px;

    margin-top: 30px;
    padding-top: 24px;

    border-top: 1px solid rgba(24, 24, 24, .15);
}

.article-detail__tags-label {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding-top: 5px;

    color: var(--color-text);

    font-size: 14px;
    font-weight: 600;
}

.article-detail__tags-label i {
    color: var(--color-main);
}

.article-detail__tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.article-detail__tag {
    display: inline-flex;

    align-items: center;

    min-height: 32px;

    padding: 5px 13px;

    border: 1px solid rgba(24, 24, 24, .2);

    border-radius: 99px;

    color: var(--color-text);

    background: transparent;

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

    text-decoration: none;

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

.article-detail__tag:hover {
    color: var(--color-text);

    border-color: var(--color-main);

    background: var(--color-main);

    transform: translateY(-2px);
}


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

.article-detail__share {
    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 15px;

    margin-top: 24px;
    padding: 18px 20px;

    border: 1px solid rgba(24, 24, 24, .12);

    border-radius: 12px;

    background: rgba(16, 86, 174, .05);
}

.article-detail__share-label {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--color-text);

    font-size: 14px;
    font-weight: 600;
}

.article-detail__share-label i {
    color: var(--color-highlight);
}

.article-detail__share .list-social {
    display: flex;

    align-items: center;

    gap: 8px;
}

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

.article-detail__share .btn-social a {
    display: flex;

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

    width: 100%;
    height: 100%;

    border: 1px solid rgba(24, 24, 24, .15);

    border-radius: 50%;

    color: var(--color-text);

    background: transparent;

    text-decoration: none;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.article-detail__share .btn-social a:hover {
    color: var(--color-text);

    background: var(--color-main);

    transform: translateY(-3px);
}

@media (max-width: 767px) {

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

    .article-detail__title {
        margin-bottom: 0;
        font-size: 26px;
        letter-spacing: 0;
    }

    .article-detail__title::after {
        width: 48px;
        height: 3px;

        margin-top: 12px;
    }

    .article-detail__meta {
        gap: 7px 15px;

        margin-bottom: 20px;

        font-size: 13px;
    }

    .article-detail__gallery {
        margin-bottom: 25px;
    }

    .article-detail__gallery-main {
        border-radius: 12px;
    }

    .article-detail__gallery-main .swiper-button-next,
    .article-detail__gallery-main .swiper-button-prev {
        width: 35px;
        height: 35px;

        margin-top: -17.5px;
    }

    .article-detail__gallery-main .swiper-button-next {
        right: 8px;
    }

    .article-detail__gallery-main .swiper-button-prev {
        left: 8px;
    }

    .article-detail__gallery .additional-action {
        right: 10px;
        bottom: 10px;
    }

    .article-detail__gallery .btn-addition-action {
        width: 38px;
        height: 38px;

        border-radius: 9px;
    }

    .article-detail__thumbs {
        margin-top: 8px;
    }

    .article-detail__body {
        margin-top: 23px;
    }

    .article-detail__lead {
        margin-bottom: 22px;
        padding: 15px 16px;
        font-size: 15px;
    }

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

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

    .article-content h3 {
        margin-top: 25px;

        font-size: 18px;
    }

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

    .article-content img {
        margin: 20px auto;

        border-radius: 9px;
    }


    /* Files */

    .article-detail__files {
        margin-top: 25px;
        padding-top: 20px;
    }

    .article-detail__files .btn {
        width: 100%;
    }

    .article-detail__tags-wrap {
        margin-top: 25px;
        padding-top: 20px;
    }

    .article-detail__share {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 20px;
        padding: 15px;
    }
}

@media (max-width: 575px) {

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

    .article-detail__meta-item {
        width: 100%;
    }

    .article-detail__thumbs .swiper-slide {
        border-radius: 8px;
    }

    .article-detail__thumbs .swiper-slide-thumb-active::after {
        border-width: 2px;
        border-radius: 8px;
    }

    .article-content table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
    }

    .article-detail__share .list-social {
        width: 100%;
    }

    .article-detail__share .btn-social {
        width: 35px;
        height: 35px;
    }
}

.box-section-article-01 {
    padding-top: 50px;
}

.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-highlight);
}

.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-highlight);
    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-highlight);
    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;
}

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

@media (max-width: 991.98px) {
    .box-contact-us .contact-title {
        font-size: 30px;
    }

    .box-contact-us .contact-form-card {
        padding: 28px;
        margin-top: 24px;
    }
}

@media (max-width:1200px) {
    .logo-section img {
        height: 7rem;
    }

    .box-section-home-02 {
        padding: 40px 0 30px;
    }

    .box-section-home-03 {
        padding: 40px 0;
    }

    .box-section-home-04 {
        padding: 60px 0 40px;
        overflow: hidden;
    }

    .box-section-home-06 {
        padding: 40px 0;
    }

    .box-section-home-09 {
        padding: 40px 0;
    }

    body {
        overflow-x: hidden;
    }

    .header-menu-mb>.container>.row>div:nth-child(3) {
        display: flex;
        justify-content: flex-end;
    }
}

@media (max-width:767px) {
    .box-service .content .icon {
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .box-service .content {
        padding: 15px 50px 15px 15px;
    }

    .box-logistics .option .text {
        font-size: 14px;
    }

    .box-service .content .icon {
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .box-service .content {
        padding: 15px 50px 15px 15px;
    }

    .box-section-article-01 {
        padding-top: 20px;
    }

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

    .don-hang-avatar {
        width: 30px;
        height: 30px;
    }

    .don-hang-name {
        font-size: 11px;
    }

    .box-phone-left {
        bottom: 70px;
        gap: 5px;
    }

    .box-phone-left .item a {
        padding: 10px 20px;
    }
}