.header {
    background-color: #2a83e9;
    padding: 16px 0px;
    display: flex;
    min-width: 1200px;
}

.header-menu {
    background-color: #f9fafb;
    padding: 16px 0px;
    position: sticky;
    top: 0;
    z-index: 100;
    color: #1d2939;
    height: 73px;
    display: flex;
    align-items: center;
    min-width: 1200px;
}

.menu-item {
    color: #1d2939;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .menu-item.active {
        color: #2a83e9;
    }

        .menu-item:hover a, .menu-item.active a {
            color: #2a83e9;
        }

        .menu-item:hover i.icon-row-4-col-1, .menu-item.active i.icon-row-4-col-1 {
            background-position: -30px -230px;
        }

        .menu-item:hover i.icon-row-4-col-3, .menu-item.active i.icon-row-4-col-3 {
            background-position: -85px -230px;
        }

        .menu-item:hover i.icon-row-4-col-5, .menu-item.active i.icon-row-4-col-5 {
            background-position: -145px -230px;
        }

        .menu-item:hover i.icon-row-4-col-7, .menu-item.active i.icon-row-4-col-7 {
            background-position: -204px -229px;
        }

        .menu-item:hover i.icon-row-4-col-9, .menu-item.active i.icon-row-4-col-9 {
            background-position: -274px -229px;
        }

        .menu-item:hover i.icon-row-4-col-11, .menu-item.active i.icon-row-4-col-11 {
            background-position: -344px -229px;
        }

        .menu-item:hover i.icon-row-4-col-13, .menu-item.active i.icon-row-4-col-13 {
            background-position: -415px -230px;
        }

        .menu-item:hover i.icon-row-5-col-13, .menu-item.active i.icon-row-5-col-13 {
            background-position: -234px -264px;
        }

        .menu-item:hover i.iconhome-header, .menu-item.active i.iconhome-header {
            width: 21px;
            height: 22px;
            background-image: url(../images/home-header-hover.svg);
            background-size: contain;
            background-repeat: no-repeat;
            display: inline-block;
        }

.footer {
    min-width: 1200px;
}

.body {
    min-width: 1200px;
}

.container {
    /*width: 1200px;*/
    margin-left: auto;
    margin-right: auto;
    /*overflow-x: auto;*/
}

.container-new {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 58px;
    padding-bottom: 38px;
}

.container-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.button-blue {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #2a83e9;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px 24px;
}

.button-yellow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #FCD900;
    color: #000;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px 24px;
}

.button-white {
    width: 180px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #FFF;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #FFF;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.news-title {
    color: #333;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-transform: uppercase;
}

.news-view-all {
    padding: 4px 32px;
    border-radius: 80px;
    color: #2f80ed;
    background-color: #f2f4f7;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.feature-box {
    background-color: #e3f1fe;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.feature-img {
    width: 568px;
    display: block;
}

.feature-content {
    padding-left: 27px;
    padding-right: 48px;
    flex: 1;
}

.feature-inner {
    display: flex;
    flex-direction: column;
    gap: 27px;
    padding-right: 30px;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    word-spacing: 2px;
}

.feature-desc {
    font-size: 14px;
    color: #333;
}

.feature-button {
    background-color: #2a83e9;
    color: #fff;
    border-radius: 4px;
    padding: 1px 20px;
    width: fit-content;
    font-weight: 500;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.card {
    display: flex;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 16px;
    background-color: #fff;
    box-sizing: border-box;
    align-items: center;
    background-color: #f1f8fe;
}

.card-img {
    width: 95px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 55%;
    line-height: 20px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.card-meta {
    display: flex;
    gap: 1px;
    align-items: center;
}

    .card-meta .icon {
        width: 16px;
        height: 16px;
        display: inline-block;
        background-color: #ccc;
        border-radius: 50%;
    }

.card-time {
    font-size: 10px;
    color: #667085;
}

.bg-update {
    background-image: url("../images/bg-new.png");
    width: "100%";
    height: 272px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
}

/*.update-content {
    width: 496px;
}*/

.update-card {
    width: 606px;
    background: #fff;
    border-radius: 16px;
    padding: 32px 48px;
    display: flex;
    gap: 16px;
    font-style: normal;
}

.update-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 32px;
    color: #1d2939;
}

.update-label {
    font-size: 16px;
    color: #667085;
}

.title-small {
    color: #fff;
    font-size: 16px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.title-big {
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    line-height: 150%;
    margin-bottom: 16px;
}

.box-content {
    border-radius: 16px;
    border: 1px solid #fcfcfd;
    padding: 30px;
    background: #fcfcfd;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .box-content.bg-blue {
        background-color: #2A83E9;
    }

.box-staff-item {
    display: flex;
    flex-direction: column;
    padding: 40px 19px 40px 40px;
    justify-content: center;
    align-items: start;
    align-self: stretch;
    background-color: #fff;
    border-radius: 24px;
    border: 1px solid #d0d5dd;
    height: 242px;
    width: 378px;
}

.box-staff {
    height: 508px;
    width: 378px;
    padding: 315px 0px 58px 37px;
    background-image: url("../images/bg-staff.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    flex-shrink: 0;
    min-width: 0;
    min-height: 0;
}

.staff-title {
    color: #2a83e9;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 150%;
}

.staff-content {
    color: #344054;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /*    padding-right: 80px;*/
}

.bg-public {
    background-image: url("../images/bg-cong-bo.png");
    width: 1140px;
    height: 118px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
}

.title-public {
    color: #1D2939;
    font-weight: 700;
    font-size: 32px;
    text-shadow: 3px 2px 4px rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-public {
    display: flex;
    width: 530px;
    height: 103px;
    padding: 15px 0;
    align-items: center;
    gap: 23px;
}

.layout-public {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card-public-title {
    color: #344054;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 5px;
}

    .card-public-title:hover {
        color: #2A83E9;
    }

.card-public-content {
    color: #98a2b3;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.bg-develop {
    background-image: url("../images/bg-develop.png");
    width: 1140px;
    height: 118px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
}

.card-report {
    display: flex;
    flex-direction: column;
    padding-top: 0px;
    padding: 30px;
    align-items: flex-start;
    gap: 20px;
    background: #fcfcfd;
    border-radius: 16px;
}

.bg-report {
    background-image: url("../images/bg-report.png");
    height: 108px;
    width: 590px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px 16px 0px 0px;
    margin: -30px;
    margin-bottom: 0px;
}

.bg-cash {
    background-image: url("../images/bg-cash.png");
    height: 108px;
    width: 590px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px 16px 0px 0px;
    margin: -30px;
    margin-bottom: 0px;
}

.card-cash {
    display: flex;
    padding: 16px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    border-radius: 12.621px;
    border: 1px solid #eaecf0;
    box-shadow: 0 0 15.145px 0 rgba(196, 196, 196, 0.25);
    background-color: #FCFCFD;
}

.title-cash {
    color: #333;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.card-cash-content {
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
}

.bg-intro {
    background-image: url('../images/bg-dmxv3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    padding-top: 72px;
    flex-direction: column;
    /*gap: 310px;*/
}

.eng .bg-intro {
    background-image: url('../images/bg-dmxv3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    width: 100%;
    padding-bottom: 30px;
    padding-top: 72px;
    flex-direction: column;
    /*gap: 310px;*/
}

.intro-image {
    width: 1280px;
    height: auto;
    align-self: center;
}

.bg-employ {
    background: radial-gradient( 37.05% 53.85% at 0% 89.34%, rgba(42, 131, 233, 0.5) 0%, #2a83e9 100% ), url("https://cdnv2.tgdd.vn/mwg-static/common/sample/nhung%20con%20so%20an%20tuong639002961281889499.png") no-repeat, #44a1fa;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.carousel-wrapper {
    position: relative;
    width: 400px;
    height: 146px;
    margin: auto;
    overflow: visible;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.6);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 1;
    width: 320px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(84, 78, 78, 0.2);
}

    .carousel-slide.center {
        transform: translateX(-50%) scale(1);
        opacity: 1;
        z-index: 10;
    }

    /* Slide bên trái, center đè lên 1/3 */
    .carousel-slide.left1 {
        transform: translateX(-110%) scale(0.75); /* trái 1/3 */
        opacity: 0.8;
        z-index: 8;
    }

    /* Slide bên phải, center đè lên 1/3 */
    .carousel-slide.right1 {
        transform: translateX(10%) scale(0.75); /* phải 1/3 */
        opacity: 0.8;
        z-index: 8;
    }

    /* Slide xa hơn bên trái */
    .carousel-slide.left2 {
        transform: translateX(-170%) scale(0.6);
        opacity: 0.5;
        z-index: 6;
    }

    /* Slide xa hơn bên phải */
    .carousel-slide.right2 {
        transform: translateX(70%) scale(0.6);
        opacity: 0.5;
        z-index: 6;
    }

    .carousel-slide.hidden {
        opacity: 0;
        z-index: 0;
        pointer-events: none;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.carousel-content {
    width: 700px;
    margin: auto;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    color: #344054;
    text-align: center;
}

.carousel-text {
    border-radius: 20px;
    padding: 16px;
    min-height: 110px;
    margin-bottom: 20px;
    color: #FFF;
}

#backToTop {
    position: fixed;
    bottom: 64px;
    right: 16px;
    display: none;
    cursor: pointer;
    z-index: 500;
    transition: opacity 0.3s;
}

    #backToTop.show {
        display: block;
    }

.chart-content {
    color: #98a2b3;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-style: italic;
    flex-direction: column;
    display: flex;
    max-width: 1024px;
    gap: 10px;
    margin-top: 10px;
}

.intro-img {
    width: 75%;
    align-self: center;
    margin-top: 127px;
}

.text-blue {
    color: #2A83E9;
}

.img-section {
    height: 124px;
    width: fit-content;
    align-self: center;
    margin-top: 8px;
}


.container-updating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

    .container-updating p {
        color: var(--Grey-400, #98A2B3);
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
    }

    .container-updating img.img-section {
        width: 80px;
        height: 80px;
    }

.employ {
    background: linear-gradient( -90deg, #E3F1FE 0%, #FFFFFF 40%, #FFFFFF 92% );
}

.employ-wrap {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.employ-left {
    width: 52%
}

.employ-right {
    width: 48%
}

.employ-ttl {
    font-size: 48px;
    font-weight: bold;
    line-height: 65px;
}

.employ-number {
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
}

    .employ-number li {
        border-left: 1px solid #D0D5DD;
        border-bottom: 1px solid #D0D5DD;
        padding: 22px 12px;
        width: 50%;
    }

        .employ-number li h3 {
            color: #2A83E9;
            font-size: 56px;
            font-weight: bold;
            line-height: 84px;
        }

        .employ-number li p {
            color: #1D2939;
            font-size: 20px;
            font-weight: bold;
            line-height: 30px;
        }

        .employ-number li:nth-child(3),
        .employ-number li:nth-child(4) {
            border-bottom: none;
        }

.box-staff .title {
    line-height: 44px;
}

.staff-title span {
    font-size: 28px;
}

/* Ticker-Container */
.container-site-ticker {
    width: 100%;
    position: sticky;
    background: #FFF;
    z-index: 100;
    top: 73px;
}
.site-ticker {
    display: flex;
    align-items: center;
    height: 38px;
    overflow: hidden;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

/* Fixed label */
.ticker-label {
    width: fit-content;
    height: 100%;
    flex-shrink: 0;
    background: #FD0;
    padding: 0 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 18px */
}

/* Scrolling container */
.ticker-wrapper {
    overflow: hidden;
    flex: 1;
}

.ticker-track {
    display: flex;
    width: 100%;
    animation: ticker-scroll 25s linear infinite;
}

.ticker-group {
    display: flex;
}

.ticker-item {
    white-space: nowrap;
    color: #2560C3;
    padding-right: 48px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
    .ticker-item::before {
        content: "•";
        margin-right: 8px;
        color: #2560C3;
        font-size: 12px;
        line-height: 1;
    }

/* Animation */
@keyframes ticker-scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Pause on hover (desktop) */
.site-ticker:hover .ticker-track {
    animation-play-state: paused;
}