@import url('fonts.css');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Chettan+2:wght@400;500;600;700;800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap");

/* CSS Variables */
:root {
    --neutralBlack: #000;
    --neutral100: #fff;
    --neutral200: #f8f9fa;
    --neutral400: #ced4da;
    --neutral500: #6c757d;
    --neutral600: #495057;
    --neutral900: #212529;
    --main400: #4285F4;
    --main500: #4285F4;
    --main600: #0056c0;
    --main800: #0056c0;
    --BrandOrange: #ff6b35;
    --BrandBlue: #4285F4;
    --BrandGreen: #28a745;
    --footer-bg: #2c3e50;
    --footer-title: #ecf0f1;
    --footer-link: #bdc3c7;
    --bg00: #ffe2e5;
    --bg100: #e9ecef;
    --bg200: #dee2e6;
    --statistic-w-h: 80px;
    --bg02: #ff4d4f;
}

/* Base Styles */
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
	font-family:Roboto,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;
    font: 400 16px 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    color: #000;
	background: #f7f8f9;
}

div, p, span {
    line-height: 26px;
}

p {
    margin-bottom: 8px;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

a, a:hover {
    color: #0056c0;
}

    a, a:hover, a:focus, a:active,
    input[type='button'], input[type='text'], input[type='search'], input[type='password'],
    button {
        outline: none;
        border: none;
        background: none;
    }

ul, ol, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Container & Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

@media screen and (min-width: 1024px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1280px;
    }
}

.rowfull-margin {
    padding: 0 40px;
    display: block;
    width: 100%;
}

.row-pad {
    padding-top: 30px;
    padding-bottom: 30px;
}
.bg-grey{
	background:#F7F8F9;
}
/* Utility Classes */
.no-pad-l {
    padding-left: 0 !important;
}

.no-pad-r {
    padding-right: 0 !important;
}

.no-margin-l-r {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mt-15 {
    margin-top: 15px;
}

.mt-row {
    margin-top: 48px;
}

.row-space-15 {
    display: block;
    height: 15px;
    width: 100%;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-start {
    justify-content: flex-start;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.gap-3 {
    gap: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.text-muted {
    color: #6c757d;
}

.small {
    font-size: 0.875rem;
}

.fw-bold {
    font-weight: 500;
}

.text-primary {
    color: #007bff;
}

.text-info {
    color: #17a2b8;
}

.text-secondary {
    color: #6c757d;
}

.d-none {
    display: none;
}

.d-lg-block {
    display: block;
}

.d-block-100 {
    display: block;
    width: 100%;
}

@media (max-width: 992px) {
    .d-lg-block {
        display: none !important;
    }
}

/* Padding Utilities */
.pad-b-20 {
    padding-bottom: 20px;
}

.pad-b-28 {
    padding-bottom: 28px;
}

.pad-b-32 {
    padding-bottom: 32px;
}

.pad-b-36 {
    padding-bottom: 36px;
}

.pad-t-20 {
    padding-top: 20px;
}

.pad-t-32 {
    padding-top: 32px;
}

.pad-t-36 {
    padding-top: 36px;
}

/* Background Classes */
.bg_00 {
    /*    */
	background: var(--bg00);
}

.bg_100 {
    background: var(--bg100);
}

.bg_200 {
    background: var(--bg200);
}

.bg-green {
    /*background: linear-gradient(135deg, #004aad, #007bff);
    background: linear-gradient(135deg, var(--bg00), var(--bg02));*/	
	Background:#E18AAA;
}

/* Text Colors */
._text_orange {
    color: var(--BrandOrange);
}

._text_white {
    color: var(--neutral100);
}

._text_blue {
    color: var(--BrandBlue);
}

._text_green {
    color: var(--BrandGreen);
}

._text_black {
    color: var(--neutral900);
}

._text-shadow {
    color: #000;
    text-shadow: 0px 1px 5px #fff, 2px 0px 3px rgb(255 255 255);
}

/* Column Classes */
.col, .col-12, .col-9, .col-8, .col-4 {
    padding: 0 15px;
}

.col-12 {
    width: 100%;
}

.col-9 {
    width: 75%;
}

.col-8 {
    width: 66.666%;
}

.col-4 {
    width: 33.333%;
}

@media (max-width: 768px) {
    .col-9, .col-8, .col-4 {
        width: 100%;
    }
}
.shadow{
	box-shadow: 0 0px 3px 0 rgba(69, 67, 96, 0.1) !important;
}
/* Header & Navigation */
.secondary-link {
    background: var(--neutralBlack);
    padding: 6px 0;
}

    .secondary-link a {
        color: var(--neutral500);
        font-size: 14px;
        margin-right: 20px;
    }

        .secondary-link a:hover,
        .secondary-link a:focus,
        .secondary-link a.active {
            color: var(--neutral100);
            text-decoration: none;
        }

    .secondary-link ul,
    .secondary-link ul > li {
        display: inline-block;
    }

        .secondary-link ul a {
            font-weight: 600;
            margin-right: 0;
            margin-left: 10px;
        }

.nav-menu > li.secondary-link_mobile {
    display: none;
}

.language-link {
    display: none;
}

/* Breadcrumb & Title */
.breadcrumb-header,
.title-menu {
    background: #db7093;
    color: #FFF4E9;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    padding: 20px 5px 0px;
}

.title-menu {
    padding: 30px;
    font-size: 35px;
    text-align: center;
    border-radius: 10px;
}

    .breadcrumb-header::after,
    .title-menu::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(120deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.0) 100%);
        transform: skewX(-20deg);
        animation: shine 2.5s infinite;
    }


.row-breadcrumb {
    height: auto;
    padding: 10px 0;
}

ul.breadcrumb {
    list-style: none;
    padding: 0;
    background: none;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    ul.breadcrumb li {
        display: inline;
        line-height: 44px;
        color: rgba(255, 255, 255, 0.9);
    }

        ul.breadcrumb li + li:before {
            padding: 4px 8px;
            color: rgba(255, 255, 255, 0.6);
            content: "/\00a0";
        }

        ul.breadcrumb li a {
            line-height: 44px;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            color: rgba(255, 255, 255, 0.9);
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

            ul.breadcrumb li a:hover {
                color: #FFE9B4;
                background: rgba(255, 255, 255, 0.1);
                border-bottom: 1px solid #FFE9B4;
            }

.page-title-section {
    background: #fff;
    padding: 5px 0;
    /*    border-bottom: 1px solid #e9ecef;*/
}

.page-title {
    font-size: 20px;
    color: #4285F4;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Carousel */
.carousel-indicators.main-banner {
    bottom: 12px;
}

    .carousel-indicators.main-banner li {
        width: 15px;
        height: 15px;
        border-top: 0px solid transparent;
        border-bottom: 0px solid transparent;
        border-radius: 50px;
    }

        .carousel-indicators.main-banner li.active {
            background: #0056c0;
        }

        .carousel-indicators.main-banner li:hover {
            background-color: var(--neutral900);
        }

#banner-slide.carousel > a > .bi {
    font-size: 40px;
}

    #banner-slide.carousel > a > .bi::before {
        font-weight: 700 !important;
    }

.carousel-control-next:hover,
.carousel-control-prev:hover {
    color: rgba(0, 0, 0, 0.65);
}

#banner-slide .carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    bottom: 44px;
    border-radius: .5rem;
}

    #banner-slide .carousel-caption h5 {
        font-size: 17px;
    }

.carousel {
    width: 100%;
}

.slide-box {
    display: flex;
    justify-content: space-between;
}

/* Responsive Carousel */
@media (min-width: 576px) and (max-width: 767.98px) {
    .slide-box img {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .slide-box img {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

@media (min-width: 992px) {
    .slide-box img {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Text Effects & Animations */
.text-effect {
    background-image: linear-gradient(to right, #000, #0078dc);
    color: rgba(0, 0, 0, 0);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    transition: color 0.2s linear, border 0.2s linear;
}

    .text-effect::before,
    [class*="col-"] > a[class*="link-"] > div > div::before {
        content: attr(data-heading);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, 0) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        mix-blend-mode: screen;
        animation: shine-label 7s infinite;
        background-size: 500%;
    }

@keyframes shine-label {
    0% {
        background-position: -100%;
    }

    100% {
        background-position: 100%;
    }
}

/* Statistics & Video Section */
.statistics {
    background: linear-gradient(135deg, #004aad, #007bff);
    padding: 60px 0;
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: #000;
}

    .video-container iframe {
        width: 100%;
        height: 450px;
        border: none;
    }

.menu-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 30px;
}

.promo-banner {
    /*    background: linear-gradient(135deg, #FFE9B4 0%, #ffd54f 100%);*/
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 233, 180, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

    .promo-banner:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(255, 233, 180, 0.6);
        text-decoration: none;
        color: inherit;
    }

    .promo-banner img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 15px;
    }

.menu-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .menu-item:hover {
        background: #4285F4;
        color: white;
        transform: translateX(10px);
        box-shadow: 0 15px 35px rgba(66, 133, 244, 0.3);
        text-decoration: none;
    }

.menu-icon {
    width: 60px;
    height: 60px;
    background: #4285F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.menu-item:hover .menu-icon {
    background: #FFE9B4;
    color: #4285F4;
    transform: scale(1.1);
}

.menu-content {
    flex: 1;
}

.menu-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.menu-description {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

/* Statistics Buttons */
.statistics button {
    border-radius: 5px;
    border: none;
    background-color: #FFE9B4;
    color: #4285F4;
    font-size: 32px;
    padding: 12px;
}

.statistics .col .Ebook,
.statistics .col .document-paper,
.statistics .col .Edocument {
    font-weight: bold;
    margin-left: 55px;
    padding: 13px;
    height: 100px;
    background-color: #FFE9B4;
    border-radius: 70px;
    transition: all 0.5s;
    cursor: pointer;
}

.statistics .col .document-paper {
    margin-top: 40px;
}

.statistics .col .Edocument {
    margin: 40px 0 70px 55px;
}

    .statistics .col .Ebook .icon,
    .statistics .col .document-paper .icon,
    .statistics .col .Edocument .icon {
        background-color: #4285F4;
        transition: all 0.5s;
        width: 75px;
        height: 75px;
        border-radius: 50%;
    }

        .statistics .col .Ebook .icon i,
        .statistics .col .document-paper .icon i,
        .statistics .col .Edocument .icon i {
            transition: all 0.5s;
            font-size: 45px;
            color: #FFE9B4;
        }

.statistics .col .Ebook .content {
    margin-left: 60px;
}

.statistics .col .document-paper .content,
.statistics .col .Edocument .content {
    width: 65%;
}

    .statistics .col .Ebook .content .number,
    .statistics .col .document-paper .content .number,
    .statistics .col .Edocument .content .number {
        transition: all 0.5s;
        color: #4285F4;
        font-size: 28px;
    }

    .statistics .col .document-paper .content .number {
        font-size: 27px;
    }

    .statistics .col .Edocument .content .number {
        font-size: 27px;
    }

    .statistics .col .Ebook .content .text,
    .statistics .col .document-paper .content .text,
    .statistics .col .Edocument .content .text {
        font-size: 20px;
    }

    .statistics .col .document-paper .content .text,
    .statistics .col .Edocument .content .text {
        font-size: 15px;
    }

.statistics .col .Ebook .content .number p {
    margin-bottom: 5px !important;
}

.statistics .col .document-paper .content .number p {
    margin-left: 5px !important;
    text-align: center;
    line-height: 33px;
}

.statistics .col .Edocument .content .number p {
    margin-bottom: 5px !important;
    text-align: center;
    line-height: 35px;
}

/* Hover Effects for Statistics */
.statistics .col .Ebook:hover,
.statistics .col .document-paper:hover,
.statistics .col .Edocument:hover {
    background-color: #4285F4;
    color: #fff;
}

    .statistics .col .Ebook:hover .icon,
    .statistics .col .document-paper:hover .icon,
    .statistics .col .Edocument:hover .icon {
        background-color: #FFE9B4;
    }

        .statistics .col .Ebook:hover .icon i,
        .statistics .col .document-paper:hover .icon i,
        .statistics .col .Edocument:hover .icon i {
            color: #4285F4;
        }

    .statistics .col .Ebook:hover .content .number,
    .statistics .col .document-paper:hover .content .number,
    .statistics .col .Edocument:hover .content .number {
        color: #FFF;
    }

.statistics .col-8 img {
    cursor: pointer;
    transition: width 0.3s ease;
}

    .statistics .col-8 img:hover {
        transform: scale(1.05);
    }

.tur {
    justify-content: center;
    margin-left: 55px;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
}

    .tur img {
        border-radius: 50px;
        height: 100px;
    }

/* Link Styles */
.cols-3links-underbanner {
    padding-left: 0;
    padding-right: 0;
}

    .cols-3links-underbanner > [class*="col-"] > a {
        background: #FFE9B4;
        padding: 8px;
        width: 100%;
        border-radius: 100px;
    }

[class*="col-"] > a[class*="link-"] {
    display: table;
    border: 2px solid transparent;
}

    [class*="col-"] > a[class*="link-"]:hover {
        cursor: pointer;
        text-decoration: none;
        background: #4285F4;
        transition: color 0.2s linear, border 0.2s linear;
    }

    [class*="col-"] > a[class*="link-"] > div {
        display: table-cell;
        vertical-align: middle;
    }

    [class*="col-"] > a[class*="link-"] > span {
        display: table-cell;
        vertical-align: middle;
        width: var(--statistic-w-h);
    }

    [class*="col-"] > a[class*="link-"] > div > div {
        text-align: center;
        font: 600 30px 'Baloo Chettan 2', cursive;
        color: #4285F4;
        transition: color 0.2s linear, border 0.2s linear;
    }

    [class*="col-"] > a[class*="link-"] > div p {
        color: var(--neutralBlack);
        text-align: center;
        font-size: 20px;
        font-weight: 400;
        padding-top: 6px;
        margin-bottom: 0;
    }

    [class*="col-"] > a[class*="link-"] > span > span {
        width: var(--statistic-w-h);
        height: var(--statistic-w-h);
        display: flex;
        align-items: center;
        justify-content: center;
        background: #4285F4;
        padding: 17px;
        text-align: center;
        border-radius: 50%;
    }

        /* Icon Masks */
        [class*="col-"] > a[class*="link-"] > span > span img.tua_sach,
        [class*="col-"] > a[class*="link-"] > span > span img.luan_van,
        [class*="col-"] > a[class*="link-"] > span > span img.du_lieu {
            width: 36px;
            height: 36px;
            display: inline-block;
            transition: transform 0.4s;
            background: #FFE9B4;
            mask: url('../images/statistic-icon-2.svg') no-repeat center / contain;
            -webkit-mask: url('../images/statistic-icon-2.svg') no-repeat center / contain;
        }

        [class*="col-"] > a[class*="link-"] > span > span img.luan_van {
            mask: url('../images/statistic-icon-3.svg') no-repeat center / contain;
            -webkit-mask: url('../images/statistic-icon-3.svg') no-repeat center / contain;
        }

        [class*="col-"] > a[class*="link-"] > span > span img.du_lieu {
            mask: url('../images/statistic-icon-4.svg') no-repeat center / contain;
            -webkit-mask: url('../images/statistic-icon-4.svg') no-repeat center / contain;
        }

    [class*="col-"] > a[class*="link-"]:hover > span > span img.tua_sach,
    [class*="col-"] > a[class*="link-"]:hover > span > span img.luan_van,
    [class*="col-"] > a[class*="link-"]:hover > span > span img.du_lieu {
        background: #4285F4;
    }

[class*="col-"] > a > span > span {
    background: #ccc;
}

[class*="col-"] > a:hover > span > span {
    background: #555;
}

[class*="col-"] > a[class*="link-"]:hover > span > span {
    background: #FFE9B4;
}

[class*="col-"] > a[class*="link-"]:hover > div > div,
[class*="col-"] > a[class*="link-"]:hover > div p {
    color: #fff;
}

[class*="col-"] > a[class*="link-"] img {
    width: 36px;
    height: 36px;
}

/* Product Boxes */
.box-product-full {
    overflow: hidden;
    border-radius: 5px;
}

    .box-product-full > a {
        position: relative;
        display: block;
    }

.box-product-1 {
    margin-bottom: 1rem;
}

.box-product-2 {
    margin-bottom: 1rem;
    padding-right: 9px;
}

.box-product-3 {
    margin-bottom: 1rem;
    padding-left: 9px;
}

.box-product-full > a > .contain-img {
    display: block;
    max-width: 100%;
    height: 520px;
    overflow: hidden;
}

    .box-product-full > a > .contain-img img {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-size: cover !important;
        background-position: center center !important;
        visibility: inherit;
    }

.box-product-full > a > .detail-link {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.9s linear, border 0.9s linear;
}

    .box-product-full > a > .detail-link p {
        text-align: center;
        color: var(--neutral200);
        display: inline-block;
        padding: 5px 10px;
        width: 158px;
        position: relative;
        left: calc(50% - 77px);
        font-size: 14px;
        bottom: 15px;
        line-height: 18px;
        background: linear-gradient(-45deg, rgba(255, 112, 29, .6), rgba(17,105, 176, 0.6), rgba(22, 177, 75,.6));
        background-size: 200% 200%;
        animation: gradient-btn-detail 8s ease infinite;
        font-weight: 500;
        border-radius: 25px;
        background: var(--neutral100);
        color: #0D74FF;
        padding: 4px 10px;
    }

@keyframes gradient-btn-detail {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.box-product-full > a > .detail-link p > i.bi {
    font-size: 10px;
}

.box-product-full > a > .detail-link p:nth-of-type(2) {
    color: var(--neutral200);
    padding: 15px 25px;
    display: none;
    text-align: center;
}

.box-product-full:hover > a > .detail-link p:nth-of-type(2) {
    display: block;
}

.contain-pro-img {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

    .contain-pro-img > ._flex {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        width: 100%;
        height: 520px;
    }

        .contain-pro-img > ._flex img {
            flex-shrink: 0;
            min-width: 100%;
            min-height: 100%;
        }

.box-product-1 .text-pro-title {
    padding: 0 110px;
}

.text-categories {
    position: absolute;
    width: 100%;
    bottom: 186px;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    color: var(--neutral900);
}

.text-pro-title {
    position: absolute;
    width: 100%;
    bottom: 88px;
    font-size: 33px;
    font-weight: 600;
    text-align: center;
    padding: 0 35px;
    height: 98px;
    display: table;
}

    .text-pro-title > p {
        display: table-cell;
        vertical-align: middle;
    }

/* Labels & Headers */
.label-h3,
.label-h2 {
    font: 600 36px 'Baloo Chettan 2', cursive;
    text-align: center;
    margin-bottom: 30px;
}

/* Multi Tab */
.tab__header {
    clear: both;
    width: 100%;
    display: inline-block;
    margin-bottom: 45px;
    text-align: center;
}

    .tab__header > div {
        display: inline-block;
        vertical-align: top;
        background: #F5F5F5;
        width: 200px;
        text-align: center;
        padding: 6px 12px;
        margin-left: 5px;
        margin-right: 5px;
        font-size: 27px;
        transition: color 0.2s linear, border 0.2s linear;
        border-radius: 25px;
    }

        .tab__header > div:hover {
            background: #4285F4;
            color: #FFF;
            cursor: pointer;
        }

        .tab__header > div.tab__header--active {
            background: #FFE9B4;
            border-radius: 25px;
            color: #4285F4;
            font-size: 27px;
        }

.tab__content {
    display: inline-block;
    clear: both;
}

    .tab__content > div {
        display: none;
        width: 100%;
    }

        .tab__content > div.tab__content--active {
            display: block;
        }

    .tab__content.tab-news {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

        .tab__content.tab-news [class*="col-"]:nth-of-type(1),
        .tab__content.tab-news [class*="col-"]:nth-of-type(2) {
            max-width: 50%;
            width: 50%;
        }

.tab_header_news {
    font-size: 15px;
}

.tab__header.tab_anpham {
    text-align: left;
}

    .tab__header.tab_anpham > div {
        width: 22%;
        margin-left: 0;
        margin-right: 0;
    }

/* News Items */
.news-items div .box-news {
    position: relative;
    height: 410px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 0;
}

    .news-items div .box-news img {
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-size: cover !important;
        background-position: center center !important;
        visibility: inherit;
        object-fit: cover;
        transition: transform 0.4s;
    }

    .news-items div .box-news .box-news-gradient {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent, rgba(0,0,0,.8)) no-repeat bottom;
        background-size: 100% 50%;
        padding-top: 300px;
        padding-left: 30px;
        padding-right: 30px;
        color: var(--neutral100);
    }

.box-news-1,
.box-news-3 {
    margin-bottom: 1rem;
    padding-right: 9px;
}

.box-news-2,
.box-news-5 {
    margin-bottom: 1rem;
    padding-left: 9px;
}

.box-news-4 {
    margin-bottom: 1rem;
    padding-left: 9px;
    padding-right: 9px;
}

.box-news .box-news-gradient .labe-category,
.box-news .box-news-gradient .labe-new,
.news-items div .box-news .box-news-gradient .labe-category-m,
.news-items div .box-news .box-news-gradient .labe-new-m {
    background: rgba(0, 0, 0, .3);
    border-radius: 5px;
    font-size: 12px;
    display: inline-block;
    padding: 6px 8px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 15px;
    margin-right: 10px;
}

.box-news .box-news-gradient .labe-new,
.news-items div .box-news .box-news-gradient .labe-new-m {
    background: var(--main600);
}

.news-items div .box-news .box-news-gradient .labe-category-m,
.news-items div .box-news .box-news-gradient .labe-new-m {
    display: none;
}

.box-news .box-news-gradient > .news-title {
    line-height: 26px;
    font-size: 18px;
    display: -webkit-box;
    max-width: 100%;
    height: 54px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s linear, border 0.2s linear;
}

.box-news .box-news-gradient:hover > .news-title {
    color: #4285F4;
}

.news-items div .box-news:hover img {
    transform: scale(1.07);
}

.news-items div .box-news a {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.news-items div .box-news.notify .box-news-gradient {
    /* Additional styles for notify type */
}

/* News Detail Styles */
.news-detail, .content, .content-document {
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0px 3px 0 rgba(69, 67, 96, 0.1) !important;
    margin-top: 15px;
    margin-bottom: 30px;
}

.news-detail-container {
    background: #F7F8F9;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.news-detail ul li{
  list-style: square;
  margin-left: 3rem;
}

.news-meta {
    color: #555;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

    .news-meta span {
        margin-right: 15px;
        background: #f3f3f3;
        padding: 5px 10px;
        border-radius: 15px;
        font-size: 13px;
        display: inline-block;
        margin-bottom: 5px;
    }

    .news-meta img {
        transition: transform 0.2s ease;
        border-radius: 4px;
    }

        .news-meta img:hover {
            transform: scale(1.1);
        }

.news-tags span {
    display: inline-block;
    margin-right: 10px;
    padding: 4px 10px;
    border-radius: 100px;
    background: #f3f3f3;
    color: #2952a1;
    font-size: 12px;
}

.news-title {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}

.news-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.news-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

.news-highlight {
    background: #e8f1fc;
    border-left: 4px solid #2952a1;
    padding: 15px;
    margin: 30px 0;
}

.news-detail h4.title {
    font-size: 17px;
    font-weight: 600;
    color: #4285F4;
    line-height: 23px;
}

.news-detail .date {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 24px;
    margin-top: 16px;
    border-bottom: 1px solid rgba(122,89,8,.23);
    background: rgba(122,89,8,.1);
    border-radius: 5px;
}

    .news-detail .date span {
        font-size: 11px;
        color: #D47D2F;
        padding: 3px;
    }

        .news-detail .date span:last-child {
            color: #b8a18c;
        }

.news-detail h5.description {
    font-weight: 500;
    color: #301600;
    font-size: 15px;
    padding: 12px 0px;
    line-height: 22px;
}

.news-detail img {
    object-fit: cover;
}

.news-detail .author {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,.1);
    color: #D3D3D3;
}

.news-detail p {
    margin-top: 16px;
}

.news-detail .option_1 img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.news-detail .height-block--list-news.scroll-new--more {
    display: flex;
    width: auto;
    margin-right: 0;
}

/* Social & Share */
.share {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
}

    .share a img {
        width: 24px;
        height: 24px;
        transition: transform 0.2s ease;
    }

    .share a:hover img {
        transform: scale(1.2);
    }

.social-icons a {
    color: #4285F4;
    font-size: 20px;
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icons a:hover {
        transform: translateY(-2px);
        opacity: 0.8;
    }

.block-share a > img {
    width: 22px;
}

.block-share a {
    padding-left: 4px;
}

/* News Items List */
.news-item {
    position: relative;
    display: flex;
    min-height: 80px;
    margin-bottom: 10px;
	background:#ffffff;
}

    .news-item:last-child {
        margin-bottom: 0;
    }

    .news-item div.left-block {
        padding-right: 16px;
    }

        .news-item div.left-block img {
            width: 240px;
            height: 123px;
            object-fit: cover;
            border-radius: 6px;
            transition: transform 0.4s;
        }

    .news-item div.right-block {
        width: 100%;
        position: relative;
        padding-right: 12px;
    }

        .news-item div.right-block .label-date {
            background: rgba(255, 255, 255, .5);
            border-radius: 5px;
            font-size: 12px;
            display: inline-block;
            padding: 6px 8px;
            font-weight: 400;
            text-transform: uppercase;
            line-height: 1;
            margin-bottom: 15px;
            margin-right: 10px;
            border-bottom: 1px solid #e8cdb3;
            color: #cca888;
        }

        .news-item div.right-block .title {
            font-size: 18px;
            font-weight: 400;
            color: var(--neutral900);
            line-height: 25px;
        }

    .news-item a {
        display: flex;
    }

        .news-item a:hover {
            text-decoration: none;
        }

            .news-item a:hover div.right-block .title {
                color: #4285F4;
            }

.bg_00 .news-item div.right-block .label-date {
    background: rgba(0, 0, 0, .05);
    border-bottom: 1px solid transparent;
    color: #656565;
}

.bg_00 .news-item a:hover div.right-block .label-date {
    border-bottom: 1px solid rgba(122,89,8,.23);
    background: rgba(122,89,8,.1);
}

.scroll-new--more .news-item div.right-block .title {
    color: #462100;
}

.news-item:hover div.left-block img {
    transform: scale(1.04);
}

/* Buttons */
.div-btn-more {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.btn-more--news {
    background: #4285F4 url('../images/icon-right-w.svg') no-repeat;
    background-position: calc(100% - 24px) center;
    background-size: 10px;
    color: #FFF4E9;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 40px 10px 28px;
    transition: color 0.2s linear, border 0.2s linear;
    border-radius: 6px;
}

    .btn-more--news:hover {
        background: #fff url('../images/icon-right-w.svg') no-repeat;
        border: 1px solid #4285F4;
        color: #4285F4;
        background-position: calc(100% - 24px) center;
        background-size: 10px;
        text-decoration: none;
    }

.btn-more-1 {
    background: #fff url('../images/icon-more.svg') no-repeat;
    background-position: calc(100% - 25px) center;
    background-size: 15px;
    border: 1px solid #E3E3E3;
    padding: 6px 48px 6px 24px;
    color: #4285F4;
    text-transform: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.2s linear, border 0.2s linear;
    border-radius: 6px;
}

    .btn-more-1:hover {
        background: #FFE9B4 url('../images/icon-more.svg') no-repeat;
        background-position: calc(100% - 25px) center;
        background-size: 15px;
        border: 1px solid #0056c0;
        text-decoration: none;
        color: #4285F4;
    }

.btn-del--medium,
.btn-del--small {
    width: 100%;
    height: 36px;
    border: 1px solid #D8D8D8;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #4285F4;
    font-weight: 400;
    font-size: 16px;
    border-radius: 6px;
}

    .btn-del--medium span,
    .btn-del--small span {
        width: 16px;
        height: 16px;
        display: flex;
        background-color: #4285F4;
        mask: url('../images/del-icon.svg') no-repeat center / contain;
        -webkit-mask: url('../images/del-icon.svg') no-repeat center / contain;
        margin-right: 12px;
    }

    .btn-del--medium:hover,
    .btn-del--small:hover {
        border: 1px solid #4285F4;
    }

.btn-del--small {
    height: 30px;
    font-size: 14px;
    padding: 8px 12px;
}

    .btn-del--small span {
        width: 14px;
        height: 14px;
    }

.btn-search--docs {
    width: 100%;
    height: 36px;
    border: 1px solid #D8D8D8;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #4285F4;
    font-weight: 400;
    font-size: 16px;
    border-radius: 6px;
}

    .btn-search--docs span {
        width: 16px;
        height: 16px;
        display: flex;
        background-color: #4285F4;
        mask: url('../images/search-icon.svg') no-repeat center / contain;
        -webkit-mask: url('../images/search-icon.svg') no-repeat center / contain;
        margin-right: 12px;
    }

    .btn-search--docs:hover {
        border: 1px solid #4285F4;
        background: #4285F4;
        color: #fff;
    }

        .btn-search--docs:hover span {
            background-color: #fff;
        }

.btn-modal {
    background-color: #4285F4;
    color: #fff;
}

    .btn-modal:hover {
        background-color: #fff;
        color: #4285F4;
        border: 1px solid #4285F4;
        transform: scale(1.05);
    }

/* Search Styles */
.row-search {
    padding-bottom: 36px;
}

    .row-search .text-search,
    .row-search .btn-submit,
    .right-search .text-search {
        width: 100%;
        height: 52px;
        border: 1px solid #4285F4;
        padding: 8px 16px;
        background: var(--neutral100);
        border-radius: 6px;
    }

    .row-search .btn-submit,
    .right-search .btn-submit {
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #4285F4;
        color: var(--neutral100);
        font-weight: 600;
        font-size: 17px;
    }

        .row-search .btn-submit span,
        .right-search .btn-submit span {
            width: 15px;
            height: 15px;
            display: flex;
            background-color: var(--neutral100);
            mask: url('../images/search-icon.svg') no-repeat center / contain;
            -webkit-mask: url('../images/search-icon.svg') no-repeat center / contain;
            margin-left: 8px;
            margin-top: -2px;
        }

        .row-search .btn-submit.advance,
        .right-search .btn-submit.advance {
            background: #fff;
            border: 1px solid #301600;
            color: #301600;
        }

            .row-search .btn-submit.advance span,
            .right-search .btn-submit.advance span {
                background-color: #301600;
                mask: url('../images/arrow-right.svg') no-repeat center / contain;
                -webkit-mask: url('../images/arrow-right.svg') no-repeat center / contain;
            }

.right-search .text-search {
    margin-bottom: 20px;
}

.right-search .btn-submit {
    font-size: 15px;
}

.div-search-link {
    padding-top: 16px;
}

    .div-search-link a {
        /*background: url('../images/icon-right.svg') right 4px no-repeat;*/
        background-size: 9px;
        font-weight: 500;
        color: var(--neutral900);
        margin-right: 32px;
        padding-right: 14px;
		font-size: 18px;
    }

/* Search Bar Specific */
.search-bar {
    padding: 32px 0;
    background-color:#E18AAA;/* #FFF4E9;*/
}

    .search-bar button {
        border-color: #ff1493;
    }

    .search-bar .search {
        background-color: #ff1493;
        border: none;
        margin-right: 10px;
    }

        .search-bar .search a {
            color: #FFF;
            text-decoration: none;
        }

        .search-bar .search:hover {
            background-color: #fff;
            border: 1px solid #4285F4;
        }

            .search-bar .search:hover a {
                color: #4285F4;
            }

    .search-bar .adv-search a {
        color: #ff1493;
        text-decoration: none;
    }

    .search-bar .adv-search:hover {
        background-color: #4285F4 !important;
        border: none;
    }

        .search-bar .adv-search:hover a {
            color: #fff;
        }

    .search-bar a {
       /* font-size: 18px;*/
    }

    .search-bar select {
        width: 200px;
        border-radius: 5px 0 0 5px;
        border-color: #4285F4;
    }

    .search-bar .form-control {
        border: 1px solid #4285F4;
        width: 55%;
        margin: 0 10px;
        padding: 10px;
        background-color: #fff;
    }

/* Document Styles */
.choose {
    color: #4285F4;
    padding-left: 20px;
}

.title-document {
    color: #4285F4;
    font-weight: bold;
    font-size: 25px;
    padding-bottom: 0 !important;
    text-align: start;
    line-height: 40px;
}

.select-document {
    width: 20%;
    border-radius: 5px 0 0 5px;
    border-color: #4285F4;
}

.search-document {
    width: 75%;
    border-radius: 0 5px 5px 0;
    padding-left: 15px;
    border: 1px solid #4285F4 !important;
    background-color: #fff !important;
}

.btn-search-document {
    padding: 10px;
    width: 150px;
    margin-right: 40px;
    background-color: #4285F4;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.group-search-document {
    background-color: #FFF4E9;
    padding: 5px 0 25px 20px;
}

.group-search {
    background-color: #FFF4E9;
    padding: 25px;
}

.content-document p {
    text-align: start;
}

.document-detail {
    border-bottom: 1px solid #4285F4;
    margin-bottom: 15px;
}

    .document-detail a {
        text-decoration: none;
        color: #000;
    }

        .document-detail a i {
            font-size: 100px;
        }

.infor-document p {
    text-align: start;
    margin-left: 10px;
}

.document-up {
    color: #000;
}

.document {
    font-size: 25px;
    font-weight: bold;
    color: #4285F4;
}

.tai-nguyen select {
    width: 20%;
    border-radius: 5px 0 0 5px;
    border-color: #4285F4;
    padding-right: 5px;
}

.tai-nguyen input .form-control {
    width: 70%;
    border-radius: 0 5px 5px 0;
    border-color: #4285F4;
    border: 1px solid !important;
}

/* Scrollbar */
.height-block--list-news {
    width: 100%;
    max-height: 410px;
    overflow-y: scroll;
    overflow-x: hidden;
    display: inline-block;
}

.scroll_div_style::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.scroll_div_style::-webkit-scrollbar-track {
    background-color: rgba(104, 104, 104, 0);
    border-radius: 6px;
}

.scroll_div_style::-webkit-scrollbar-thumb {
    background-color: rgba(104, 104, 104, 0.1);
    border-radius: 6px;
}

.scroll_div_style:hover::-webkit-scrollbar-thumb {
    background-color: #737396;
}

ul.flex--quick-link.scroll_div_style::-webkit-scrollbar-track {
    background-color: rgba(104, 104, 104, 0);
}

/* Flex Notes */
.flex-notes {
    display: flex;
    flex-flow: row wrap;
    padding: 40px 0 0;
    list-style: none;
    margin-left: -8px;
    margin-right: -8px;
}

    .flex-notes .item-note {
        margin-bottom: 16px;
        padding-left: 8px;
        padding-right: 8px;
    }

        .flex-notes .item-note > div {
            height: 100%;
            background: rgba(255,255,255, 0.4);
            font-size: 14px;
            line-height: 20px;
            font-weight: 500;
            border-radius: 16px;
            text-align: left;
            padding: 22px;
            position: relative;
            color: #777E90;
            border: 1px solid #E2BB96;
        }

            .flex-notes .item-note > div:hover {
                border: 1px solid var(--main800);
            }

.item-note > div div,
.item-note > div h4 {
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
    color: #141416;
}

.item-note > div p {
    margin: 0;
}

.item-note span {
    display: inline-block;
    padding-top: 15px;
}

/* Quick Links */
.div-quick-link {
    width: 100%;
    display: block;
    text-align: center;
}

    .div-quick-link div {
        font-size: 22px;
        font-weight: 600;
        color: #4285F4;
        text-transform: uppercase;
        position: relative;
        width: 100%;
        margin-bottom: 44px;
        display: inline-block;
    }

        .div-quick-link div::before {
            position: absolute;
            content: '';
            width: 40px;
            height: 4px;
            background: #4285F4;
            left: calc(50% - 20px);
            top: calc(100% + 6px);
            border-radius: 4px;
        }

    .div-quick-link p {
        font-size: 18px;
        font-weight: 600;
        color: #fff4e9;
        width: 66%;
        margin: 0 auto;
    }

ul.flex--quick-link,
ul.flex--quick-link li {
    list-style: none;
    padding: 0;
}

ul.flex--quick-link {
    width: 100%;
    overflow-x: scroll;
    margin: 32px auto 0;
    display: flex;
    justify-content: start;
}

    ul.flex--quick-link li {
        padding: 8px;
    }

        ul.flex--quick-link li.col-2 {
            flex: 0 0 208px;
            max-width: 208px;
        }

        ul.flex--quick-link li > div,
        ul.flex--quick-link li > a {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1px solid #4285F4;
            padding: 20px 12px 16px 12px;
            transition: transform 0.5s;
            border-radius: 9px;
        }

            ul.flex--quick-link li > a:hover {
                text-decoration: none;
            }

        ul.flex--quick-link li:hover > div,
        ul.flex--quick-link li:hover > a {
            background: #4285F4;
        }

        ul.flex--quick-link li > div > div,
        ul.flex--quick-link li > a > div {
            width: 100%;
            text-align: center;
        }

.flex--quick-link li > div ._icon,
.flex--quick-link li > a ._icon {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

    .flex--quick-link li > div ._icon div,
    .flex--quick-link li > a ._icon div {
        display: flex;
        align-items: center;
        width: 65px;
        height: 65px;
        background: #4285F4;
        transition: transform 0.4s;
        border-radius: 100px;
    }

.flex--quick-link li:hover > a ._icon div {
    transform: scale(1.5);
}

/* Icon Images for Quick Links */
.flex--quick-link li > div ._icon div .img_1,
.flex--quick-link li > a ._icon div .img_1,
.flex--quick-link li > a ._icon div .img_2,
.flex--quick-link li > a ._icon div .img_3,
.flex--quick-link li > a ._icon div .img_4,
.flex--quick-link li > a ._icon div .img_5,
.flex--quick-link li > a ._icon div .img_6 {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin: 0 auto;
    background-color: var(--neutral100);
    mask: url('../images/icon-gia-han-sach.svg') no-repeat center / contain;
    -webkit-mask: url('../images/icon-gia-han-sach.svg') no-repeat center / contain;
}

.flex--quick-link li > a ._icon div .img_2 {
    mask: url('../images/icon-dat-phong.svg') no-repeat center / contain;
    -webkit-mask: url('../images/icon-dat-phong.svg') no-repeat center / contain;
}

.flex--quick-link li > a ._icon div .img_3 {
    mask: url('../images/icon-dang-ky-tap-huan.svg') no-repeat center / contain;
    -webkit-mask: url('../images/icon-dang-ky-tap-huan.svg') no-repeat center / contain;
}

.flex--quick-link li > a ._icon div .img_4 {
    mask: url('../images/icon-yeu-cau-sach.svg') no-repeat center / contain;
    -webkit-mask: url('../images/icon-yeu-cau-sach.svg') no-repeat center / contain;
}

.flex--quick-link li > a ._icon div .img_5 {
    mask: url('../images/icon-yeu-cau-ho-tro.svg') no-repeat center / contain;
    -webkit-mask: url('../images/icon-yeu-cau-ho-tro.svg') no-repeat center / contain;
}

.flex--quick-link li > a ._icon div .img_6 {
    mask: url('../images/icon-scan-file.svg') no-repeat center / contain;
    -webkit-mask: url('../images/icon-scan-file.svg') no-repeat center / contain;
}

.flex--quick-link li > div p,
.flex--quick-link li > a p {
    margin: 0;
    color: #4285F4;
    font-size: 14px;
    font-weight: 500;
}

.flex--quick-link li:hover > a p {
    color: #fff;
}

/* Owl Carousel */
.owl_new_book .item-owl {
    padding-left: 12px;
    padding-right: 12px;
}

.owl_new_book .link {
    text-decoration: none;
    background: #fff;
    display: inline-block;
    border-radius: 9px;
    width: 100%;
}

    .owl_new_book .link .blockImg {
        position: relative;
    }

        .owl_new_book .link .blockImg img {
            height: 368px;
            object-fit: cover;
            transition: transform 0.4s;
            border-top-left-radius: 9px;
            border-top-right-radius: 9px;
        }

    .owl_new_book .link:hover .blockImg img {
        transform: scale(1.07);
    }

    .owl_new_book .link .blockText {
        display: flex;
        padding-top: 12px;
		font-size: 16px;
    }

        .owl_new_book .link .blockText > div {
        
            font-size: 18px;
            line-height: 21px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 13px;
            padding-left: 12px;
            padding-right: 12px;
			color: #343a40 !important;
			  height: 45px;
			  overflow: hidden;
        }

    .owl_new_book .link:hover .blockText > div {
        color: #4285F4;
    }

    .owl_new_book .link .blockText > span {
        width: 46px;
        height: 46px;
        margin-left: 12px;
        display: inline-block;
        transition: transform 0.4s;
        background: #4285F4;
        mask: url('../images/play-icon.svg') no-repeat center / contain;
        -webkit-mask: url('../images/play-icon.svg') no-repeat center / contain;
    }

    .owl_new_book .link:hover .blockText > span {
        background: #4285F4;
    }

    .owl_new_book .link .blockImg > span {
        position: absolute;
        background: #fff;
        display: inline-block;
        width: 60px;
        height: 60px;
        border: 2px solid #4285F4;
        top: calc(50% + 12px);
        left: calc(50% - 30px);
        opacity: 0;
        transition: transform 0.4s;
        border-radius: 90px;
    }

        .owl_new_book .link .blockImg > span > span {
            width: 100%;
            height: 100%;
            display: inline-block;
            transition: transform 0.4s;
            background: #4285F4;
            mask: url('../images/more-icon.svg') no-repeat center / contain;
            -webkit-mask: url('../images/more-icon.svg') no-repeat center / contain;
        }

    .owl_new_book .link:hover .blockImg > span {
        opacity: 1;
    }

    .owl_new_book .link .blockImg > span::after {
        position: absolute;
        content: 'xem';
        top: 27px;
        left: 0;
        width: 100%;
        height: 20px;
        text-align: center;
        font-size: 14px;
        color: #4285F4;
    }

.owl_new_book.docs .link {
    background: #ffffff;
	box-shadow: 0 0px 3px 0 rgba(69, 67, 96, 0.1) !important;
}

    .owl_new_book.docs .link:hover {
        background: #FFF4E9;
    }

.owl-carousel.slide-logo {
    padding: 20px 0;
}

._logo-foot .carousel-item {
    width: 100px;
}

/* 3D Library */
.lib-3d .block-iframe {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 450px;
    margin-top: 40px;
    margin-bottom: 28px;
    border-radius: 6px;
}

    .lib-3d .block-iframe iframe {
        width: 100%;
        height: 100%;
    }

.lib-3d .watch-now {
    display: flex;
    justify-content: center;
}

    .lib-3d .watch-now a {
        width: auto;
        height: 52px;
        border: 0;
        padding: 8px 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #4E2E12;
        color: #FFF4E9;
        font-weight: 500;
        font-size: 17px;
        border-radius: 6px;
    }

        .lib-3d .watch-now a:hover {
            text-decoration: none;
            background: #4285F4;
        }

/* Footer */
footer.footer {
    background: var(--footer-bg);
}

    footer.footer .row_logo {
        display: flex;
        align-items: center;
    }

.row_logo .icon-logo {
    margin-right: 20px;
}

.row_logo .branch-name {
    color: #0056c0;
    font-weight: 500;
    font-size: 16px;
}

footer.footer .row_logo .img-logo {
    width: 30px;
}

footer.footer .row-link-foot {
    color: #fff;
    padding: 16px 0;
    margin-right: 0;
    margin-left: 0;
    position: relative;
}

    footer.footer .row-link-foot p {
        margin-bottom: 6px;
    }

footer .foot-phone,
footer .foot-email {
    display: flex;
    align-items: center;
    width: auto;
    color: #000;
    margin-left: 0;
    text-decoration: none;
}

    footer .foot-phone:hover,
    footer .foot-email:hover {
        color: #4285F4;
    }

    footer .foot-phone span,
    footer .foot-email span {
        width: 20px;
        height: 20px;
        margin-right: 12px;
        display: inline-block;
        background-color: #000;
        mask: url('../images/phone-icon.svg') no-repeat center / contain;
        -webkit-mask: url('../images/phone-icon.svg') no-repeat center / contain;
    }

    footer .foot-email span {
        mask: url('../images/email-icon.svg') no-repeat center / contain;
        -webkit-mask: url('../images/email-icon.svg') no-repeat center / contain;
    }

    footer .foot-phone:hover span,
    footer .foot-email:hover span {
        background-color: #4285F4;
    }

footer.footer.v2 {
    background: #037ac1;
}

.v2 .row_logo .branch-name {
    color: #4285F4;
}

footer.v2 .foot-phone,
footer.v2 .foot-email,
footer.v2 .row-link-foot {
    color: #fff;
    padding-left: 0;
}

footer.v2 a.link-feedback {
    background: #0056c0;
    margin-left: 5px;
}

.link-feedback {
    background: #0056c0;
    margin-left: 5px;
    display: flex;
    align-items: center;
    margin-top: 20px;
    width: auto;
    padding: 4px 14px;
    border: none;
    color: var(--neutral100);
    margin-left: 0;
    border-radius: 16px;
}

a.link-feedback span {
    width: 16px;
    height: 17px;
    margin-left: 8px;
    display: inline-block;
    background-color: var(--neutral100);
    mask: url('../images/feedback-icon.svg') no-repeat center / contain;
    -webkit-mask: url('../images/feedback-icon.svg') no-repeat center / contain;
}

a.link-feedback:hover {
    color: #4285F4;
    background: #fff;
    text-decoration: none;
}

    a.link-feedback:hover span {
        background: #4285F4;
    }

/* Social Media Footer */
div .f-social {
    display: flex;
}

a.link-feedback-zalo span {
    width: 35px;
    height: 28px;
    margin-left: 8px;
    display: inline-block;
    background-color: #fff;
    mask: url('../images/foot-zalo.svg') no-repeat center;
    -webkit-mask: url('../images/foot-zalo.svg') no-repeat center;
}

a.link-feedback-facebook span {
    height: 28px;
    margin-left: 8px;
    display: inline-block;
    background-color: #fff;
    mask: url('../images/foot-facebook.svg') no-repeat center;
    -webkit-mask: url('../images/foot-facebook.svg') no-repeat center;
}

a.link-feedback-youtube span {
    height: 28px;
    margin-left: 8px;
    display: inline-block;
    background-color: #fff;
    mask: url('../images/foot-youtube.svg') no-repeat center;
    -webkit-mask: url('../images/foot-youtube.svg') no-repeat center;
}

.block-call_email .row-contact {
    width: 100%;
}

.block-feedback {
    position: absolute;
    right: 10px;
    top: 0;
}

.foot-social {
    display: flex;
    justify-content: flex-start;
}

    .foot-social.social-mobile {
        justify-content: center;
        padding-bottom: 15px;
        padding-top: 15px;
    }

    .foot-social > li {
        flex: 0;
        min-width: 42px;
        min-height: 40px;
        margin: 0 6px;
    }

        .foot-social > li > a {
            display: block;
            text-align: center;
        }

            .foot-social > li > a:hover {
                opacity: .5;
            }

.foot-title {
    color: var(--footer-title);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.link-footer h4 {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
}

.link-footer a,
.accordion-link-foot-content a {
    font-size: 14px;
    color: var(--footer-link);
    text-decoration: none;
}

    .link-footer a:hover,
    .accordion-link-foot-content a:hover {
        color: var(--neutral900);
        border-bottom: 1px solid var(--footer-link);
    }

.link-foot-left a {
    color: var(--neutral900);
    text-decoration: none;
    padding: 0;
}

    .link-foot-left a:first-child {
        padding-left: 0;
    }

    .link-foot-left a:last-child {
        border-right: 0 solid transparent;
    }

    .link-foot-left a:hover {
        color: var(--neutral900);
        border-bottom: 1px solid var(--neutral600);
    }

.link-foot-left > ._line {
    width: 1px;
    height: auto;
    display: inline;
    border-right: 1px solid var(--neutral400);
    margin-left: 5px;
    margin-right: 8px;
}

.foot-hotline,
.foot-hotline:hover {
    color: var(--neutral900);
    font-weight: 700;
    text-decoration: none;
}

.copyright {
    background: #4285F4;
    padding: 3px;
    color: #fff;
    text-align: center;
    font-size: 13px;
}

.license-text {
    margin-top: 15px;
    padding: 18px 0;
    border-top: 1px solid #E2E2E2;
    border-bottom: 1px solid #E2E2E2;
}

.link-footer-mobile {
    display: none;
}

/* Accordion Footer */
.accordion-link-foot {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

[id*="open-accordion"],
[id*="close-accordion"] {
    line-height: 28px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

[id*="close-accordion"] {
    display: none;
}

.accordion-link-foot > div {
    margin: 5px 0 0;
    padding: 5px 0;
    border-radius: 6px;
}

.accordion-link-foot a {
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    color: var(--neutral900);
    padding-right: 15px;
    transition: color 0.2s linear, border 0.2s linear;
}

[id*="open-accordion"]:after,
[id*="close-accordion"]:after {
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    right: -10px;
    top: 5px;
    line-height: 22px;
    z-index: 2;
    background: url('../images/arrow.svg') center no-repeat;
    width: 30px;
    height: 21px;
    background-size: 9px;
    opacity: .8;
    transform: rotate(180deg);
}

.target-fix-link-foot {
    display: block;
    top: 0;
    left: 0;
    position: fixed;
}

.accordion-link-foot-content {
    height: 0;
    margin: -1px auto 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: color 0.2s linear, border 0.2s linear;
}

.accordion-link-foot span:target ~ .accordion-link-foot-content {
    display: block;
    height: auto;
    padding-bottom: 0;
    padding-top: 10px;
}

.accordion-link-foot-content a {
    padding-right: 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--neutral600);
    text-decoration: none;
    line-height: 28px;
}

.accordion-link-foot span:target ~ [id*="close-accordion"] {
    display: block;
}

.accordion-link-foot span:target ~ [id*="open-accordion"] {
    display: none;
}

.accordion-link-foot span:target ~ [id*="close-accordion"]:after {
    transform: rotate(-90deg);
}

/* Document Pages */
.flex-docs {
    padding: 0;
    list-style: none;
    margin-left: -8px;
    margin-right: -8px;
}

    .flex-docs .item-docs {
        margin-bottom: 16px;
        padding-left: 8px;
        padding-right: 8px;
    }

        .flex-docs .item-docs > div,
        .flex-docs .item-docs > a {
            height: 100%;
            background: rgba(255, 238, 208, .5);
            background-size: 30px;
            font-size: 14px;
            line-height: 20px;
            border-radius: 8px;
            text-align: left;
            padding: 22px;
            position: relative;
            color: #000;
            display: block;
            border-left: 2px solid rgba(163, 81, 8, .08);
            border-bottom: 1px solid rgba(163, 81, 8, .08);
        }

            .flex-docs .item-docs > div:hover,
            .flex-docs .item-docs > a:hover {
                background: rgba(255, 238, 208, 1) url(../images/arrow_docs.svg) calc(100% - 12px) calc(100% - 12px) no-repeat;
                border-left: 2px solid rgba(163, 81, 8, .8);
                border-bottom: 1px solid rgba(163, 81, 8, .4);
                color: #5E3007;
                text-decoration: none;
            }

.item-docs > div div,
.item-docs > a div {
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
    color: #0056c0;
}

.item-docs > div h4,
.item-docs > a h4 {
    font-size: 17px;
    line-height: 24px;
    padding-bottom: 8px;
    font-weight: 600;
    color: #5E3007;
}

.item-docs > div:hover h4,
.item-docs > a:hover h4 {
    color: #4285F4;
}

.item-docs > div p,
.item-docs > a p {
    margin: 0;
    line-height: 24px;
}

.item-docs span {
    display: inline-block;
    padding-top: 15px;
}

.content img {
    max-width: 100%;
}

.docs > .content {
    margin-left: -15px;
    margin-right: -15px;
}

.docs .col-docs {
    width: 66.666%;
    padding-left: 15px;
    padding-right: 15px;
}

.docs .col-links {
    width: 33.333%;
    padding-right: 15px;
    border-right: 1px solid #f1f1f1;
}

/* Document Detail */
.docs-title {
    font-size: 18px;
    font-weight: 400;
    color: #4285F4;
}

    .docs-title span {
        width: 24px;
        height: 24px;
        margin-right: 8px;
        display: inline-block;
        background-color: #4285F4;
        mask: url('../images/arrow_docs.svg') no-repeat left center / contain;
        -webkit-mask: url('../images/arrow_docs.svg') no-repeat left center / contain;
    }

.docs-detail .label {
    padding-top: 12px;
    padding-bottom: 4px;
}

    .docs-detail .label span {
        font-weight: 600;
        font-size: 16px;
        color: #532500;
        border-bottom: 1px solid #A35108;
        padding-bottom: 2px;
    }

.docs-detail .step b {
    border-bottom: 1px solid rgba(0,0,0,0.5);
}

.docs-detail .step li {
    padding-left: 12px;
    margin-left: 16px;
    position: relative;
}

    .docs-detail .step li::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 0;
        width: 6px;
        height: 6px;
        background: #989898;
        border-radius: 50px;
    }

/* Form Search Documents */
.form-search-docs ._form {
    width: 100%;
    background: #fff3d6;
    padding: 20px;
    margin: 20px auto;
    border: 1px solid #fad4b3;
    border-radius: 8px;
}

    .form-search-docs ._form .rows {
        position: relative;
        margin-bottom: 15px;
    }

        .form-search-docs ._form .rows:last-child {
            margin-bottom: 0;
        }

    .form-search-docs ._form .input {
        width: 100%;
        height: 46px;
        border: 1px solid transparent;
        border-bottom: 1px solid #4285F4;
        padding: 8px 16px;
        background: var(--neutral100);
        border-radius: 6px;
    }

        .form-search-docs ._form .input:focus {
            border: 1px solid #4285F4;
        }

    .form-search-docs ._form .rows button {
        position: absolute;
        top: 7px;
        right: 7px;
        width: 36px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

._form .rows button span {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #1F2636;
    mask: url('../images/search-icon.svg') no-repeat left center / contain;
    -webkit-mask: url('../images/search-icon.svg') no-repeat left center / contain;
}

.form-search-docs ._form .rows .cols {
    padding-left: 8px;
    padding-right: 8px;
}

    .form-search-docs ._form .rows .cols:first-child {
        padding-left: 15px;
    }

    .form-search-docs ._form .rows .cols:last-child {
        padding-right: 15px;
    }

.form-search-docs.tra-cuu ._form {
    background: none;
    padding: 0;
    border: none;
}

    .form-search-docs.tra-cuu ._form .input {
        border: 1px solid #bbb;
        width: calc(100% - 200px);
    }

        .form-search-docs.tra-cuu ._form .input:focus {
            border: 1px solid #4285F4;
        }

.form-search-docs.tra-cuu .label {
    width: 122px;
    display: inline-block;
}

.form-search-docs.tra-cuu .btn-search {
    margin-left: 122px;
}

.form-search-docs.anpham ._form .input {
    border: 1px solid #bbb;
    width: 400px;
    height: 36px;
}

.form-search-docs.anpham textarea {
    width: 400px;
    border: 1px solid #bbb;
    outline: none;
    padding: 8px 16px;
    background: var(--neutral100);
    border-radius: 6px;
}

    .form-search-docs.anpham textarea:focus {
        border: 1px solid #4285F4;
    }

/* Select Dropdown */
.select-dropdown {
    position: relative;
    float: left;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

    .select-dropdown select {
        width: 100%;
        background-color: transparent;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        cursor: pointer;
        border: 1px solid transparent;
        border-bottom: 1px solid #4285F4;
        padding: 8px 16px;
        background: var(--neutral100);
        border-radius: 6px;
    }

        .select-dropdown select:active,
        .select-dropdown select:focus {
            outline: none;
            box-shadow: none;
            border: 1px solid #4285F4;
        }

    .select-dropdown:after {
        content: " ";
        position: absolute;
        top: 50%;
        margin-top: -2px;
        right: 8px;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #aaa;
    }

.tra-cuu .select-dropdown select {
    border: 1px solid #bbb;
}

    .tra-cuu .select-dropdown select:focus {
        border: 1px solid #4285F4;
    }

.tra-cuu .select-dropdown {
    position: relative;
    float: unset;
    width: calc(100% - 200px);
    padding-left: 0;
    padding-right: 0;
    display: inline-block;
    left: -4px;
}

.tra-cuu .link:hover {
    text-decoration: none;
    color: #4285F4;
}

.tra-cuu .link,
.tra-cuu .span {
    padding-left: 4px;
}

/* Block Info */
.block-info {
    padding-bottom: 32px;
    width: 33.333%;
    float: left;
    border-right: 1px solid #f1f1f1;
    padding-left: 0;
    padding-right: 0;
}

.list-arrow li {
    padding-left: 16px;
    position: relative;
}

    .list-arrow li::before {
        content: '';
        position: absolute;
        top: 9px;
        left: 0;
        width: 8px;
        height: 8px;
        background: #0056c0;
        border-radius: 50px;
    }

    .list-arrow li a {
        color: #000;
        text-decoration: none;
    }

        .list-arrow li a:hover {
            color: #0056c0;
        }

.block-info .welcome {
    padding-top: 20px;
}

.block-info .user-name {
    color: #A35108;
    position: relative;
}

    .block-info .user-name ._name {
        font-weight: 600;
    }

.user-name .user-logout {
    position: absolute;
    top: 8px;
    right: 10px;
    color: #A35108;
    text-decoration: none;
    display: flex;
    align-items: center;
}

    .user-name .user-logout span {
        width: 15px;
        height: 16px;
        display: inline-block;
        padding-right: 24px;
        background-color: #A35108;
        mask: url('../images/logout-icon.svg') no-repeat left 0px / contain;
        -webkit-mask: url('../images/logout-icon.svg') no-repeat left 0px / contain;
    }

    .user-name .user-logout:hover {
        color: #4285F4;
    }

        .user-name .user-logout:hover span {
            background-color: #4285F4;
        }

.user-name .row-name {
    padding-top: 8px;
    padding-bottom: 12px;
}

.user-label {
    color: #A35108;
    font-weight: 600;
    padding-bottom: 16px;
}

/* User Info */
.user-info > div:first-child {
    padding-left: 0;
}

.user-info > div:last-child {
    padding-right: 0;
}

.user-avata {
    width: 200px;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

.user-info {
    color: #5F2B00;
}

/* Tables */
.user-tbl .table td,
.user-tbl .table th {
    padding: 7px 8px;
    vertical-align: middle;
}

    .user-tbl .table th:first-child {
        text-align: center;
    }

.user-tbl .table thead th {
    border-bottom: 1px solid #dee2e6;
    border-top: 1px solid #ededed;
}

.user-tbl .table {
    margin-bottom: 8px;
}

    .user-tbl .table tbody a:hover {
        color: #5F2B00;
        text-decoration: none;
    }

    .user-tbl .table tbody a span {
        color: #A35108;
    }

.user-tbl.anpham-tbl .table thead th:nth-of-type(2) {
    width: 160px;
}

.user-tbl.anpham-tbl .table thead th:nth-of-type(3) {
    width: 190px;
}

table.tbl-simple th,
table.tbl-simple td {
    vertical-align: top;
}

table.tbl-simple.set-width th:first-child,
table.tbl-simple.set-width td:first-child {
    width: 148px;
}

table.tbl-simple.set-width--short th:nth-of-type(1),
table.tbl-simple.set-width--short th:nth-of-type(2),
table.tbl-simple.set-width--short td:nth-of-type(1),
table.tbl-simple.set-width--short td:nth-of-type(2) {
    width: 48px;
}

/* Checkbox Styles */
.box-check input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.box-check label {
    position: relative;
    cursor: pointer;
}

    .box-check label:before {
        content: '';
        -webkit-appearance: none;
        background-color: transparent;
        border: 1px solid #999;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
        padding: 8px;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        cursor: pointer;
        margin-right: 5px;
        border-radius: 3px;
    }

.box-check input:checked + label:before {
    border: 1px solid #FFB374;
}

.box-check input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: 7px;
    width: 6px;
    height: 11px;
    border: solid #f48121;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Radio Button Styles */
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 24px;
        margin-right: 10px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: #666;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 2px;
            width: 16px;
            height: 16px;
            border: 1px solid #ddd;
            border-radius: 100%;
            background: #fff;
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 10px;
            height: 10px;
            background: #4285F4;
            position: absolute;
            top: 5px;
            left: 3px;
            border-radius: 100%;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            transform: scale(1);
        }

/* Detail Docs */
.detail-docs {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: #4285F4;
    mask: url('../images/info-icon.svg') no-repeat left center / contain;
    -webkit-mask: url('../images/info-icon.svg') no-repeat left center / contain;
}

a:hover .detail-docs {
    background-color: #d66100;
}

/* Link Detail */
.link-detail {
    color: #007BFF;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 400;
    text-decoration: none;
}

    .link-detail:hover {
        color: #4285F4;
        text-decoration: none;
    }

    .link-detail span {
        width: 18px;
        height: 18px;
        margin-right: 8px;
        display: inline-block;
        background-color: #007BFF;
        mask: url('../images/info-icon.svg') no-repeat left center / contain;
        -webkit-mask: url('../images/info-icon-1.svg') no-repeat left center / contain;
    }

    .link-detail:hover span {
        background-color: #4285F4;
    }

    .link-detail.normal {
        display: unset;
    }

/* Input Styles */
._input[type='text'] {
    width: 100%;
    height: 36px;
    border: 1px solid #bbb;
    padding: 8px 12px;
    background: var(--neutral100);
    border-radius: 6px;
}

    ._input[type='text']:focus {
        border: 1px solid #4285F4;
    }

input.input[type="text"]:disabled {
    background: #f4f4f4;
}

/* Anpham 2 Column */
.anpham_2col div:first-child {
    padding-left: 0;
}

.anpham_2col div:last-child {
    padding-right: 0;
}

/* DKM Button */
.dkm {
    width: auto;
    padding: 10px 12px;
}

    .dkm span {
        width: 15px;
        height: 16px;
        display: flex;
        background-color: #4285F4;
        mask: url('../images/arrow-right.svg') no-repeat center / contain;
        -webkit-mask: url('../images/arrow-right.svg') no-repeat center / contain;
        margin-left: 12px;
        margin-right: 0;
    }

    .dkm:hover span {
        background-color: #fff;
    }

/* Miscellaneous */
sup {
    color: #4285F4;
    font-weight: 500;
}

    sup.sup-content {
        position: relative;
        right: -4px;
        top: 14px;
    }

.img-captcha {
    width: 150px;
    height: 40px;
    object-fit: cover;
}

/* Scroll Tab */
.scroll-tab {
    width: 100%;
}

.responsive__tabs ul.scrollable-tabs {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
}

    .responsive__tabs ul.scrollable-tabs li {
        list-style-type: none;
        margin-right: 8px;
    }

        .responsive__tabs ul.scrollable-tabs li a {
            display: inline-block;
            color: #000;
            text-align: center;
            padding: 6px 12px;
            min-width: 150px;
            text-decoration: none;
            background: #f2f2f2;
            transition: color 0.2s linear, border 0.2s linear;
            border-radius: 25px;
        }

            .responsive__tabs ul.scrollable-tabs li a:hover,
            .responsive__tabs ul.scrollable-tabs li a.active {
                background: #FFD776;
            }

.container.docs .row {
    margin: 0 auto;
}

/* Block Link */
.right-block_link .block-link {
    margin-top: 32px;
}

.block-link .label,
.div-label .label {
    font-size: 20px;
    font-weight: 600;
    background-color: #0056c0;
    padding: 10px;
    border-radius: 10px 0 10px 0;
    color: #fff;
}

    .block-link .label span,
    .div-label .label span {
        font-size: 20px;
        padding-bottom: 5px;
        border-bottom: 0.6px solid #4285F4;
    }

.block-link ul {
    margin: 5px 0 0 5px;
}

    .block-link ul li {
        display: flex;
        align-items: center;
    }

        .block-link ul li span {
            width: 22px;
            height: 15px;
            display: inline-block;
            background-color: #301600;
            mask: url('../images/arrow-link.svg') no-repeat left center / contain;
            -webkit-mask: url('../images/arrow-link.svg') no-repeat left center / contain;
        }

        .block-link ul li a {
            color: #301600;
            text-decoration: none;
            font-size: 17px;
            margin: 5px 8px;
        }

        .block-link ul li:hover a {
            color: #4285F4;
            text-decoration: underline;
        }

        .block-link ul li:hover span {
            background-color: #4285F4;
        }

/* Search Buttons */
.right-search .row-buttons div:nth-of-type(1) {
    padding-left: 0;
    padding-right: 8px;
}

.right-search .row-buttons div:nth-of-type(2) {
    padding-left: 8px;
    padding-right: 0;
}

/* List New More */
.list-new--more li {
    display: block;
    margin-bottom: 4px;
}

    .list-new--more li a b {
        width: 10px;
        height: 9px;
        display: inline-block;
        margin-right: 4px;
        background-color: #301600;
        mask: url('../images/arr-link.svg') no-repeat left center / contain;
        -webkit-mask: url('../images/arr-link.svg') no-repeat left center / contain;
    }

    .list-new--more li:hover a b {
        background-color: #4285F4;
    }

    .list-new--more li a {
        color: #462100;
        text-decoration: none;
    }

    .list-new--more li:hover a {
        color: #4285F4;
    }

    .list-new--more li span {
        background: rgba(0, 0, 0, .05);
        border-bottom: 1px solid transparent;
        color: #656565;
        border-radius: 5px;
        padding: 2px 4px;
        font-size: 12px;
        margin-left: 8px;
    }

        .list-new--more li span small {
            color: #a2a2a2;
            font-size: 11px;
            padding-left: 2px;
        }

    .list-new--more li:hover span {
        border-bottom: 1px solid rgba(122,89,8,.23);
        background: rgba(122,89,8,.1);
    }

/* Related News */
.relate-news {
    margin-top: 30px;
}

    .relate-news h5 {
        color: #4285F4;
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 18px;
    }

.see-more {
    cursor: pointer;
    margin-right: 20px;
    color: #4285F4;
    font-size: 14px;
}

    .see-more:hover {
        color: #0056c0;
    }

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .list li {
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }

        .list li a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .list li a:hover {
                color: #4285F4;
            }

        .list li span {
            color: #999;
            font-size: 12px;
            margin-left: 8px;
        }

/* Pagination */
.pagination {
    display: flex;
    list-style-type: none;
}

.pagination-item {
    margin: 0 5px;
}

    .pagination-item a {
        text-decoration: none;
        padding: 5px 10px;
        border: 1px solid #ccc;
        color: #333;
    }

        .pagination-item a:hover {
            background-color: #f0f0f0;
        }

.pagination-choose {
    background-color: #888888;
    color: #fff;
    padding: 0;
}

/* News Events & Document Titles */
.news-events-title {
    color: #ff1493;
    font-size: 25px;
	margin-bottom:20px;
}

    .news-events-title p {
        margin: 15px;
    }

.news-document-title {
    color: #FFF4E9;
    font-size: 25px;
    margin-bottom: 30px;
}

    .news-document-title p {
        margin: 15px;
		color: #ff1493;
    }

.title-about {
    color: #4285F4;
    font-size: 25px;
    padding: 10px;
}

    .title-about p {
        margin: 15px;
    }

/* News Detail Extra */
.all-news-more {
    margin: 0 0 20px 0;
    padding: 0 5px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background: #fff;
}

.news-more {
    margin: 15px 0;
}

    .news-more h4 {
        background: linear-gradient(135deg, #004aad, #007bff);
        color: #FFF4E9;
        padding: 10px 15px;
        font-size: 17px;
        border-radius: 10px 0;
        margin-bottom: 10px;
    }

.all-content-news-more {
    padding: 10px;
    transition: background 0.2s ease;
    cursor: pointer;
}

    .all-content-news-more:hover {
        background-color: #f3f8ff;
        color: #4285F4;
    }

        .all-content-news-more:hover a {
            color: #0056c0;
        }

    .all-content-news-more img {
        transition: transform 0.3s ease;
    }

    .all-content-news-more:hover img {
        transform: scale(1.05);
    }

.group-hover:hover {
    background-color: #f8fafd;
    transition: background 0.3s ease;
}

.hover-color:hover {
    color: #2952a1 !important;
    text-decoration: none;
}

.line-clamp-2,
.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

img.object-cover {
    object-fit: cover;
}

.header-news-more {
    margin: 15px 0;
}

/* Submenu */
.submenu2 {
   background-color: #db7093;
  padding: 45px 25px 10px;

}

    .submenu2 a {
        font-size: 18px;
        color: #fff;
        text-decoration: none;
        margin-left: 25px;
        margin-bottom: 15px;
    }

        .submenu2 a i {
            margin-right: 10px;
        }

.submenu3-line {
    background-color: #0056c0;
    padding: 50px 25px 10px;
}

.submenu3 h5 {
    font-size: 25px;
    font-weight: bold;
    background-color: #0056c0;
    padding: 15px;
    border-radius: 25px 0 25px 0;
    color: #fff;
}

.submenu3 p {
    font-size: 20px;
    padding-bottom: 5px;
    border-bottom: 0.6px solid #4285F4;
    text-align: start;
    line-height: 40px;
}

/* Back to Top */
#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #4285F4;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000000;
}

    #back-to-top i {
        color: #fff3d6;
    }

/* Box Chu De */
.boxs-chu_de > div div {
    padding: 6px;
}

    .boxs-chu_de > div div span {
        display: flex;
        border: 1px solid #dfdfdf;
        padding: 8px 10px;
        height: 72px;
        align-items: center;
        justify-content: center;
        font-weight: 500;
        font-size: 16px;
        box-shadow: 0px 0px 16px #cecece;
        border-radius: 6px;
    }

/* Line Decoration */
.line-deco {
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #2952a1, #7B1315);
    border-radius: 5px;
    flex-shrink: 0;
}

/* Smart Banner */
.smartbanner__info {
    line-height: 18px !important;
    font-family: 'SF UI Text', sans-serif !important;
    font-weight: 500 !important;
}

/* Custom by Dinh nguyen */

#aspnetForm{
  display: flex !important;
  flex-direction: column !important;
  min-height: 100vh !important;
}
.bgcover .bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, #2c4964, transparent 95%);
}

.bgcover .shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.bgcover .shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

.bgcover .shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 30%;
  animation: float 7s ease-in-out infinite;
}


.page-header {
  background: #db7093;
  color: #fff;
  position: relative;
  min-height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center; 
  overflow: hidden;
  z-index: 2;
  margin-top: 23px;
}

.page-header h2 {
  font-size: 1.1rem;
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
}

.page-header h2::before,
.page-header h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #dfecf9;
  display: inline-block;
  margin-bottom: 5px;
}

.page-header h2::before {
  margin-right: 15px;
}

.page-header h2::after {
  margin-left: 15px;
}

.page-header h2 a{
  color: #fff;
}

.page-content .col-content{
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
  text-align: justify;
}

.page-content .col-sidebar .list-group{
  color: #0c5460;
  background-color: #f1f5f9;
  padding-bottom: 1rem;
  border: 1px solid #E5EEF7;
  box-shadow: 0 0px 2px 0 #E5EEF7 !important;
}


.page-content .col-sidebar h2{
  padding: 1rem 1rem 2rem 1rem;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}


.page-content .col-sidebar h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #444444, transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: 1rem;
}

.page-content .col-sidebar h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #fc4902;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 1rem;
}


.page-content .col-sidebar .list-item{
  position: relative;
  padding: .5rem;
  line-height: 20px;
  list-style: square;
  color: #ff9200;
  margin-left:1.5rem;
  
}

.page-content .col-sidebar .list-item a{
  color: #333;
  font-weight: 500;
}


.page-content .col-sidebar .list-item a:hover{
  color: #ff1493;
  text-decoration: none;
}

.page-content .post-title{
  font-size: 1.3rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;

}

.page-content .col-content-services{
  padding: 1rem 1rem;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 10px;

}
.page-content .col-content-services .card-header{
  padding: .5rem 1.25rem;
}

.page-content .col-content-group{
  padding: 1rem 1rem;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 10px;

}
.page-content .col-content-product{
  padding: 1rem 1rem;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
}
.page-content .col-content-product a {
  color: #343a40;
  font-size: 1rem;
  font-weight:500;
}
.page-content .col-content-product .description{
	font-size: 0.9rem;
   color: rgb(85, 85, 85);
}
.page-content .list-product{
	border-bottom: 1px dotted #ccc;
	padding:1rem;
}
.page-content .product-img{
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.page-content .news-card {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  background-color: #fff;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.page-content .news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.page-content .news-card a{
  color: #343a40 ;
}

.page-content .news-card a:hover{
  text-decoration: none;
  color: #ff1493;
}

.page-content .news-card img {
  max-width: 150px;
  margin-right: 15px;
  border-radius: 3px;
  width: 150px;
  height: 100px;
}

.page-content .news-card h5 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.page-content .news-card .news-desc {
  font-size: 0.9rem;
  color: #555;
  margin-top: 5px;
}
.page-content .col-content-details{
  padding: 1.3rem;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
}

.page-content .entry-title{
  font-size: 1.3rem;
  padding-bottom: 0.5rem;
  line-height: 1.3;
  text-align: justify;
}

.page-content .entry-meta{
  color: #666;
  font-size: 0.8rem;
  padding-bottom: 1rem;
}
.page-content .entry-content{
  padding-top: 1.2rem;
  text-align: justify;
}
.owl_new_book.docs .link {
  background: #F7F8F9;
}

.s-search {
  min-height: 200px;
  background-color: #F1F7F8 !important;
  position: relative;
  padding-top: 0.1rem;

 }

.s-search .pattern {
  position: absolute;
}

.s-search .circle {
  background: #456BD9;
  border-radius: 50%;
  box-shadow: 0.375em 0.375em 0 0 rgba(15, 28, 63, 0.125);
  height: 5em;
  width: 5em;
  opacity: 0.5;
}

.s-search .circle-1 {
  background: #f26941;
  border-radius: 50%;
  box-shadow: 0.375em 0.375em 0 0 rgba(15, 28, 63, 0.125);
  height: 5em;
  width: 5em;
  opacity: 0.5;
  margin-left: 550px;
}

.s-search .info {
  color: #64748b;
  font-weight: bold;
  padding-bottom: 5px;
}
.s-search .form-control{
   border: 2px solid #ff1493;
  background: #fff;
}

.s-search .btn-search{
  background-color: #ff1493;
  color: #fff;
}

.s-search img{
  width: 200px;
  height: 200px;
  opacity: 0.7;
}
.s-news{
	padding-top:1rem;
}
.s-intro{
  background: #F1F7F8 !important;
}
.s-intro .grid-list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.s-intro .category-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 5px;
  background-color: hsla(var(--color), 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
}

.s-intro .category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.s-intro .category-card a {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.s-intro .category-card .card-icon {
  background-color: hsla(var(--color), 0.1);
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.s-intro .category-card img{
  width: 40px;
  height: 40px;
}
.s-intro .category-card .card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.s-intro .category-card .card-title {
  color: #333;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

.s-intro .category-card .card-badge {
  background-color: hsla(var(--color), 0.1);
  color: #444;
  font-size: 0.9rem;
  font-weight: normal;
  padding: 2px 10px;
  max-width: max-content;
  border-radius: 5px;
}

.s-banner{
  padding-top: 1rem;
}
.card-wrapper{
  background: #ffffff;
  padding: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-wrapper .section-title {
  text-align: center;
  position: relative;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-weight: bold;
  font-size: 1.2rem;
}


.card-wrapper .section-title:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, #444444, transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.card-wrapper .section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #fc4902;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.card-wrapper .card-news:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-wrapper .card-news .badge-date {
  background-color: #ffe7e6; /*#f36f21*/
  color: #404040;
  padding: 4px 8px;
  font-size: 0.85rem;
  border-radius: 0;
}

.card-wrapper .card-news .text-muted {
  color: #404040 !important; /*#ff6600*/
}

.card-wrapper .card-news .card-title{
  height: 45px;
  overflow: hidden;
  font-size: 1.1rem;
}

.card-wrapper .card-news .card-title a:hover {
  text-decoration: none;
  color: #f36f21;
}

.card-wrapper .card-news .card-img-top {
  width: 100%;
  height: 200px;   
  object-fit: cover; 
}

.card-wrapper .card-news .card-meta{
   border-bottom: 1px solid #dee2e6;
}

.card-wrapper .card-news a:hover {
  text-decoration: none; 
}

.card-wrapper .more-item{
  text-align: center;
  margin-top: 1rem;
}

.card-wrapper .btn-more{
  background: #E18AAA;
  color: #fff;
}

#owl-carousel-news .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%; 
  height: 45px;
  margin-top: -22.5px; 
  pointer-events: none;
}

#owl-carousel-news .owl-nav .owl-prev,
#owl-carousel-news .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  background: #DEE2E8;
  color: #000 !important;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  line-height: 45px;
  position: absolute;
  top: 0;
  pointer-events: auto;
  cursor: pointer;
}

#owl-carousel-news .owl-nav .owl-prev {
  left: -30px; 
}

#owl-carousel-news .owl-nav .owl-next {
  right: -30px; 
}

#owl-carousel-news .owl-nav {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* để không nhận sự kiện khi ẩn */
}

#owl-carousel-news:hover .owl-nav {
  opacity: 1;
  pointer-events: auto;
}


/* Styling cho paging bootstrap */

/* Responsive Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .rowfull-margin {
        padding: 0 20px;
    }

    .news-detail-container {
        padding: 20px;
    }

    .page-title {
        font-size: 22px;
    }

    .social-icons {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-sidebar {
        padding-left: 0;
        margin-top: 30px;
    }

    .video-container iframe {
        height: 250px;
    }

    .statistics .col .Ebook,
    .statistics .col .document-paper,
    .statistics .col .Edocument {
        margin-left: 0;
    }

    .block-info {
        width: 100%;
        border-right: none;
        padding-bottom: 20px;
    }

    .docs .col-docs,
    .docs .col-links {
        width: 100%;
        border-right: none;
        padding-right: 15px;
    }
}

