@font-face {
    font-family: 'Barlow-Regular';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Barlow/Barlow-Regular.ttf');
}

@font-face {
    font-family: 'Barlow-Bold';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Barlow/Barlow-Bold.ttf');
}

@font-face {
    font-family: 'Barlow-Medium';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Barlow/Barlow-Medium.ttf');
}

@font-face {
    font-family: 'Barlow-Black';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Barlow/Barlow-Black.ttf');
}

@font-face {
    font-family: 'Barlow-Italic';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Barlow/Barlow-Italic.ttf');
}

@font-face {
    font-family: 'Barlow-Medium';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/Barlow/Barlow-Medium.ttf');
}
/*FiraSans*/
@font-face {
    font-family: 'FiraSans-Regular';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/FiraSans/FiraSansExtraCondensed-Regular.ttf');
}

@font-face {
    font-family: 'FiraSans-Bold';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/FiraSans/FiraSansExtraCondensed-Bold.ttf');
}

@font-face {
    font-family: 'FiraSans-Medium';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/FiraSans/FiraSansExtraCondensed-Medium.ttf');
}

@font-face {
    font-family: 'FiraSans-SemiBold';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/FiraSans/FiraSansExtraCondensed-SemiBold.ttf');
}

@font-face {
    font-family: 'FiraSans-Italic';
    font-weight: normal;
    font-style: normal;
    src: url('../fonts/FiraSans/FiraSansExtraCondensed-Italic.ttf');
}


body {
    font-family: Barlow-Regular;
    font-size: 14px;
    color: #333;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol {
    padding: 0.2rem;
}

a {
    color: unset;
}

    a:hover {
        text-decoration: none;
        color: inherit;
    }

.black {
    font-family: "Barlow-Black", sans-serif;
}

.bold {
    font-family: "Barlow-Bold", sans-serif;
}

.medium {
    font-family: "Barlow-Medium", sans-serif;
}

.italic {
    font-family: "Barlow-Italic", sans-serif;
}
/*:::::Menu:::::*/
.brand {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: inherit;
    border: none;
    outline: none;
    color: #e91e63;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    max-width: 200px;
}

    .brand .logo-dtu {
        height: 40px;
        padding-right: 13px;
    }

.header {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    outline: none;
    background: #ffffff;
    border: 1px solid rgba(217, 217, 217, 1)
}

    .header .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 1rem;
        max-width: 100%;
        height: auto;
        padding: 5px 0;
    }

    .header .navbar-cus {
        max-width: 100%;
        height: auto;
    }

    .header .menu > .menu-item {
        position: relative;
        display: inline-block;
        margin: 0 38px 0 0;
    }

        .header .menu > .menu-item > a {
            display: block;
            font-family: Barlow-Medium;
            font-size: 14px;
            font-weight: 500;
            line-height: 22px;
            padding: 1rem 0;
            border: none;
            outline: none;
            color: #333;
            text-transform: capitalize;
            text-rendering: optimizeLegibility;
            -webkit-transition: all 0.35s ease;
            -o-transition: all 0.35s ease;
            transition: all 0.35s ease;
        }




        .header .menu > .menu-item:hover > a {
            color: #A9161C;
        }



        .header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
            color: #A9161C;
        }

        .header .menu > .menu-item > .sub-menu {
            margin-top: 4px;
            position: absolute;
            z-index: 1;
            left: -1rem;
            top: 100%;
            width: 13rem;
            height: auto;
            padding: 0.75rem 0;
            border: none;
            outline: none;
            opacity: 0;
            visibility: hidden;
            border-top: 3px solid #A9161C;
            background: #ffffff;
            -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            -webkit-transform: translateY(1rem);
            -ms-transform: translateY(1rem);
            transform: translateY(1rem);
            -webkit-transition: all 0.35s ease;
            -o-transition: all 0.35s ease;
            transition: all 0.35s ease;
        }

.sub-menu1 {
    margin-top: 0px;
    position: absolute;
    z-index: 1;
    left: -1rem;
    top: 100%;
    width: 13rem;
    height: auto;
    padding: 0.75rem 0;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    border-top: 3px solid #e91e63;
    background: #ffffff;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    transform: translateY(1rem);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .menu > .menu-item > .sub-menu > .menu-item {
    display: block;
}

    .header .menu > .menu-item > .sub-menu > .menu-item > a {
        display: block;
        font-family: "Barlow-Regular", sans-serif;
        font-size: 14px;
        line-height: inherit;
        padding: 0.5rem 1.25rem;
        color: #121212;
        text-transform: capitalize;
        text-rendering: optimizeLegibility;
        -webkit-transition: all 0.35s ease;
        -o-transition: all 0.35s ease;
        transition: all 0.35s ease;
    }

.header .opened-menu {
    position: relative;
    display: none;
    cursor: pointer;
    width: 2rem;
    height: 1rem;
    border: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

    .header .opened-menu span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        border: none;
        outline: none;
        opacity: 1;
        border-radius: 0.25rem;
        background: #121212;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

        .header .opened-menu span:nth-child(1) {
            top: 0;
        }

        .header .opened-menu span:nth-child(2), .header .opened-menu span:nth-child(3) {
            top: 0.5rem;
        }

        .header .opened-menu span:nth-child(4) {
            top: 1rem;
        }

.header .closed-menu {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    outline: none;
    background: none;
}

    .header .closed-menu img.closed-icon {
        display: block;
        width: 1rem;
        height: auto;
    }

.header .overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.full-width {
    margin-left: -15px;
    margin-right: -15px;
}

.owl-banner .owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}

.owl-banner .owl-theme .owl-dots .owl-dot.active span,
.owl-banner .owl-theme .owl-dots .owl-dot:hover span {
    background: #A9161C;
}

.owl-banner .owl-theme .owl-dots {
    text-align: right;
    -webkit-tap-highlight-color: transparent;
    width: 1170px;
}

.owl-banner .owl-dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.owl-banner .owl-nav {
    display: none;
}

.owl-slider .owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}

.owl-slider .owl-stage {
    padding-top: 20px;
}

.owl-slider .owl-item {
    margin-top: 0;
    transition: ease-in-out 0.5s;
}

    .owl-slider .owl-item:hover {
        margin-top: -20px;
        transition: ease-in-out 0.5s;
    }

.owl-slider .owl-nav {
    display: block !important;
}

    .owl-slider .owl-nav .owl-prev {
        background: #a9161c;
        padding: 5px;
    }

.owl-slider-carousel .owl-stage-outer {
    margin-left: 50px;
}
/*::::: Content :::::*/
.see-more-wp {
    border: 1px solid #A9161C;
    float: right;
    background: #A9161C;
    border-radius: 4px;
}

    .see-more-wp:hover {
        border: 1px solid #A9161C;
        background-color: #FFFFFF;
        color: #000000;
    }

.hr-vinh {
    border-top: 1px solid #A9161C;
}

.card {
    border: none !important;
    border-radius: 0 !important;
    background-color: transparent;
}

.text-muted {
    color: unset !important;
    float: right;
}

a.ex1:hover {
    color: #A9161C;
}

a:hover {
    color: #A9161C;
}

.title-sm {
    font-family: "Barlow-Bold", sans-serif;
    text-transform: uppercase;
}

    .title-sm h5 {
        font-size: 1.5rem;
    }

.news-st {
    padding: 3em 0;
}

.notif-st {
    padding: 3em 0;
}

.list-bg {
    background-color: #fff;
    /*border-radius: 10px;*/
    padding: 15px 30px;
    height: 100%
}

.list-style {
    padding-left: 2.5em;
}

    .list-style li {
        padding: 15px 0;
        border-bottom: solid 1px #f2f2f2;
        text-indent: -15px;
    }

        .list-style li:last-child {
            border-bottom: none;
        }

        .list-style li a {
        }

.notif-list li:before {
    content: "\f111";
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 5px;
    color: #d5d5d5;
    margin-right: 15px;
}

.notif-list li:hover:before {
    color: #A9161C;
}

.file-list li:before {
    content: "\f15c";
    display: inline-block;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    color: #d5d5d5;
    margin-right: 15px;
}

.file-list li:hover:before {
    color: #A9161C;
}

.see-more {
    color: #fff;
    font-family: "Barlow-Medium", sans-serif;
    padding: 5px 10px;
    display: block;
    text-transform: uppercase;
}

.see-more-wp a:hover {
    color: #000 !important;
}

.bg-white-news {
    background-color: #fff;
    padding: 30px;
}

.bg-white-news-nopadingbot {
    background-color: #fff;
    padding: 30px 30px 0px 30px;
}

.other-news .news-item {
    display: flex;
    gap: 1rem;
}

    .other-news .news-item:first-child {
        margin-top: 40px;
    }

    .other-news .news-item .img-part {
        width: 40%;
    }

    .other-news .news-item .content-part {
        width: 60%;
    }

    .other-news .news-item .content-part-full {
        width: 100%;
    }

    .other-news .news-item .img-part img {
        width: 100%;
        object-fit: cover;
    }

    .other-news .news-item .content-part .title, .other-news .news-item .content-part-full .title {
        font-family: "Barlow-Bold", sans-serif;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .other-news .news-item .content-part .date, .other-news .news-item .content-part-full .date {
        display: inline-block;
        margin-top: 0;
        font-family: "Barlow-Light", sans-serif;
        font-size: 14px;
        color: #9f9f9f;
    }

    .other-news .news-item:last-child:after {
        content: none;
    }

.owl-news .owl-news-carousel .owl-nav {
    display: none;
}

.owl-news {
    position: relative;
}

    .owl-news .owl-news-carousel .owl-dots {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin-bottom: 5px;
    }

    .owl-news .owl-theme .owl-dots .owl-dot span {
        background: #fff;
        height: 8px;
        width: 8px;
    }

    .owl-news .owl-theme .owl-dots .owl-dot.active span {
        height: 10px;
        width: 10px;
    }

    .owl-news .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
        background: #A9161C;
    }

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    outline: none;
}

.owl-news-carousel .news-top-title {
    position: absolute;
    top: 40px;
    left: 40px;
    display: inline-block;
    padding: 8px 35px;
    background-color: #A9161C;
    color: #fff;
    font-family: "Barlow-Medium", sans-serif;
    font-size: 18px;
    border-radius: 10px;
}

.owl-news-carousel .news-lg-title {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 20px 40px;
    left: 0;
    font-family: "Barlow-Medium", sans-serif;
    font-size: 18px;
    color: #fff;
    height: 190px;
    background-image: linear-gradient(rgba(255,255,255,0), rgba(0,0,0,1))
}

.owl-news-carousel .date {
    font-family: "Barlow-Light", sans-serif;
    font-size: 14px;
    color: #fff;
}

.footer {
    background-color: #F3F3F3;
    /*padding: 5em 0 2.5em 0;*/
}

.footer-logo {
    display: flex;
}

    .footer-logo .logo-img {
        height: 47px;
        width: auto;
    }

    .footer-logo .footer-logo-text {
        font-family: Barlow-Bold;
        font-weight: 700;
        font-size: 20px;
        line-height: 100%;
        color: #C7383E;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .footer-logo .footer-logo-text2 {
        font-weight: 500;
        font-size: 15px;
        line-height: 100%;
        color: #81868A;
        text-transform: uppercase;
        margin-bottom: 0;
    }

.footer_about .footer-mission {
    margin-top: 26px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #333;
}

.footer .info-wp {
    text-align: center;
    margin-top: 5em;
    color: #fff !important;
}

    .footer .info-wp p:first-child {
        font-family: "Barlow-Bold", sans-serif;
        font-size: 18px;
        text-align: center;
    }

    .footer .info-wp p:last-child {
        font-family: "Barlow-Regular", sans-serif;
        font-size: 14px;
        color: #fff;
        text-align: center;
    }

.location-ic:before {
    content: "";
    display: inline-block;
    background-image: url("../img/location-ic.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
}

.mail-ic:before {
    content: "";
    display: inline-block;
    background-image: url("../img/email-ic.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
}

.phone-ic:before {
    content: "";
    display: inline-block;
    background-image: url("../img/phone-ic.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
}

.menu-bottom-wp {
    text-align: center;
    margin-top: 5em;
}

.menu-bottom {
    display: inline-block;
    color: #fff;
}

    .menu-bottom li {
        float: left;
    }

        .menu-bottom li a {
            display: block;
            text-decoration: none;
            padding: 10px 35px;
            font-size: 18px;
        }

            .menu-bottom li a:hover {
                color: yellow;
            }

.bottom-footer {
    background: #F3F3F3;
    padding: 14px 0;
    text-align:center;
}

    

       


.text-bt-footer {
    color: #363636;
    margin-bottom: 0 !important;
    margin-top: 6px;
}

.footer-info {
    color: #fff;
    font-size: 16px;
}
/* Page - css */

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb {
    background-color: transparent;
    padding-left: 0;
    padding-bottom: 0;
}

.breadcrumb-nav {
    display: inline-block;
    text-align: center;
}

.breadcrumb-page {
    text-align: center;
}

.no-padding {
    padding: 0 !important;
}

.no-mr {
    margin: 0 !important;
}

.date-ic:before {
    content: '\f073';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
    vertical-align: baseline;
}


.content-banner {
    font-size: 20px;
    font-family: system-ui;
}

.intro {
    margin-bottom: 5px !important;
}

/*banner*/
.banner-session {
    position: relative;
}

    .banner-session .item {
        min-height: 530px;
        background-size: cover !important;
        background-position-x: center !important;
        background-position-y: top !important;
        padding: 0;
    }

    .banner-session .banner-content {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        width: 50%;
        min-height: 530px;
    }

    .banner-session .item .banner-content .slide-h2 {
        font-family: 'Barlow-Bold';
        font-size: 38px;
        line-height: 1.2;
        padding-bottom: 15px;
        margin: 0;
    }

    .banner-session .item .banner-content .desc {
        font-size: 16px;
        text-shadow: 0.05em 0 white, 0 0.05em white, -0.05em 0 white, 0 -0.05em white, -0.05em -0.05em white, -0.05em 0.05em white, 0.05em -0.05em white, 0.05em 0.05em white;
    }

    .banner-session .mobile-banner img {
        width: 100%;
    }

.read_more {
    background-color: #A9161C;
    border: 1px solid #A9161C;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 10px 30px;
    font-size: 16px;
    display: inline-block;
    text-transform: uppercase;
}

    .read_more::after {
        content: "\f054";
        display: inline-block;
        font-weight: 900;
        font-family: "Font Awesome 5 Free";
        padding-left: 8px;
        font-size: 12px;
    }

    .read_more:hover {
        background-color: transparent;
        color: #A9161C;
    }

.banner-carousel .owl-controls {
    position: absolute;
    width: 100%;
    top: 43%;
}

.banner-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    display: block;
    z-index: 10000;
    border-radius: 0;
}

    .banner-carousel .owl-nav .owl-prev i {
        color: #b3b7be;
        padding-right: 4px;
        font-size: 1.6875rem;
    }

    .banner-carousel .owl-nav .owl-prev:focus {
        outline: 0;
    }

    .banner-carousel .owl-nav .owl-prev:hover {
        background: #000 !important;
    }

.banner-carousel .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    display: block;
    z-index: 10000;
    border-radius: 0;
}

    .banner-carousel .owl-nav .owl-next i {
        color: #b3b7be;
        padding-left: 4px;
        font-size: 1.6875rem;
    }

    .banner-carousel .owl-nav .owl-next:focus {
        outline: 0;
    }

    .banner-carousel .owl-nav .owl-next:hover {
        background: #000 !important;
    }

.owl-carousel:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

.owl-carousel:hover .owl-next {
    right: 0px;
    opacity: 1;
}

.owl-nav .owl-next, .owl-nav .owl-prev {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.owl-nav .owl-next {
    right: 0;
    display: flex;
    margin-right: 2%;
    font-size: 25px !important;
}

.owl-nav .owl-prev {
    left: 0;
    display: flex;
    margin-left: 2%;
    font-size: 25px !important;
}

.dbcl {
    background-color: #cc4a52;
}

.news-st .item {
    width: 540px;
    height: 540px;
    max-width: 100%;
}

    .news-st .item .img_item {
        /* border-radius:10px;*/
        max-width: 100%;
    }

.sitemap-mission {
    padding: 34px 0;
}

    .sitemap-mission .logo_dtu {
        width: auto;
    }

    .sitemap-mission .title_site {
        position: relative;
        display: block;
        width: 100%;
        margin-top: 25px;
        margin-bottom: 25px;
        font-size: 18px;
        padding-bottom: 4px;
    }

        .sitemap-mission .title_site:before {
            content: '';
            position: absolute;
            height: 1px;
            width: 100%;
            background: #333;
            left: 0;
            bottom: -5px;
        }

        .sitemap-mission .title_site:after {
            content: '';
            position: absolute;
            height: 1px;
            width: 70px;
            background: #a9161c;
            left: 0;
            bottom: -5px;
        }

    .sitemap-mission ul.char_site_map {
        padding-left: 0;
    }

        .sitemap-mission ul.char_site_map li {
            display: inline-block;
        }

            .sitemap-mission ul.char_site_map li a {
                text-decoration: none;
                outline: none;
                font-size: 18px;
                text-transform: uppercase;
            }


    .sitemap-mission .block_quote {
        position: relative;
        padding: 25px 30px;
        text-align: justify;
        font-size: 16px;
    }

        .sitemap-mission .block_quote p {
            padding: 0;
            margin: 0;
        }

        .sitemap-mission .block_quote:before {
            content: '\f10d';
            color: #999;
            font-weight: 900;
            font-family: "Font Awesome 5 Free";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 27px;
            width: 42px;
            height: 60px;
            display: block;
        }

        .sitemap-mission .block_quote:after {
            content: '\f10e';
            color: #999;
            font-weight: 900;
            font-family: "Font Awesome 5 Free";
            position: absolute;
            right: -15px;
            bottom: -25px;
            font-size: 27px;
            width: 42px;
            height: 60px;
            display: block;
        }

.header-top {
    background-color: #A9161C;
}

    .header-top .box-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .header-top .box-header h1 {
            text-align: center;
        }

            .header-top .box-header h1 a {
                text-transform: uppercase;
                font-weight: 600;
                font-size: 24px;
                color: white;
            }

                .header-top .box-header h1 a:hover {
                    color: white;
                }

    .header-top .box-menu-fix {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

        .header-top .box-menu-fix ul {
            height: 45px;
            display: flex;
            align-items: center;
        }

            .header-top .box-menu-fix ul li {
                border-right: 0.5px solid rgb(255 255 255 / 30%);
                padding: 11px 12px;
            }

                .header-top .box-menu-fix ul li:last-child {
                    border-right: none;
                }

                .header-top .box-menu-fix ul li a {
                    font-size: 14px;
                    color: #FFFFFF;
                }
/*RESPONSIVE*/
@media only screen and (max-width: 1024px) {
    .header-top .box-header .item_img {
        width: 120px;
    }

    .text-banner {
        padding: 60px !important;
        top: 0 !important;
    }

    .title-vinh {
        font-size: 28px;
    }

    .content-banner {
        font-size: 22px;
    }

    .content {
        padding-top: 2em !important;
    }
}

@media only screen and (max-width: 991px) {
    .header {
        padding: 20px 0px;
    }

        .header .wrapper {
            justify-content: space-between;
        }

    .header-top .box-header .item_img {
        width: 120px;
    }

    .header-top .box-header h1 a {
        font-size: 20px;
    }
}

@media only screen and (max-width: 768px) {
    /*.header-top .box-header {
       text-align:center;
    }*/
    .header-top .box-header .item_img {
        width: 120px;
    }

    .banner-session .banner-content {
        width: 100%;
    }

    .banner-session .item {
        box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.4);
        background-position-x: left !important;
    }

    .text-banner {
        padding: 60px !important;
        top: 0 !important;
    }


    .see-more-wp {
        width: 78px;
        font-size: 12px;
        float: right !important;
        margin-top: 0px !important;
    }

    .see-more-wp-vinh {
        background: #b42525;
        padding: 4px;
        border-radius: 4px;
        width: 54px;
        font-size: 10px;
        float: right !important;
        margin-top: 0px !important;
    }

    .content {
        padding-top: 2em !important;
    }
}

@media only screen and (max-width: 425px) {
    .text-banner {
        margin-top: -50px;
        margin-left: -60px;
    }

    .url-vinh {
        font-size: 14px !important;
    }

    .title-vinh {
        width: 146px;
        font-size: 21px !important;
    }

    .content-banner {
        font-size: 16px !important;
        display: none;
    }

    .menu-bottom {
        display: grid !important;
    }

    .see-more-wp-vinh {
        background: #b42525;
        padding: 4px;
        border-radius: 4px;
        width: 54px;
        font-size: 10px;
        float: right !important;
        margin-top: -30px !important;
    }

    .see-more-wp {
        width: 70px;
        font-size: 10px;
        float: right !important;
    }

    .content {
        padding-top: 2em !important;
    }
}

@media only screen and (max-width: 320px) {
    .text-banner {
        margin-top: -50px;
        margin-left: -60px;
    }

    .title-vinh {
        width: 146px !important;
        font-size: 16px !important;
    }

    .content-banner {
        font-size: 16px !important;
        display: none;
    }

    .url-vinh {
        padding: 2px !important;
        font-size: 14px !important;
    }

    .see-more-wp {
        width: 54px;
        font-size: 10px;
        float: right !important;
        margin-top: -55px !important;
    }

    .see-more-wp-vinh {
        background: #b42525;
        padding: 4px;
        border-radius: 4px;
        width: 54px;
        font-size: 10px;
        float: right !important;
        margin-top: -30px !important;
    }

    .content {
        padding-top: 2em !important;
    }
}

#back-top a {
    width: 45px;
    height: 45px;
    right: 20px;
    bottom: 20px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background-color: #5D5D5D;
    border-radius: 50%;
    z-index: 9990;
    opacity: 0.5;
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

    #back-top a i {
        font-size: 10px;
    }

    #back-top a:hover,
    #back-top a:focus {
        background-color: #A9161C;
        opacity: 1;
        filter: alpha(opacity=1);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }

.footer .footer_about {
    padding-right: 10%;
}

.footer .footer_box {
    padding: 38px 0;
    border-bottom: 1px solid #D9D9D9;
}

    .footer .footer_box .title_img {
        display: flex;
        align-items: flex-start;
    }

        .footer .footer_box .title_img .title_dept {
            font-family:FiraSans-Medium;
            font-weight: 500;
            font-size: 18px;
            line-height: 100%;
            color: #A9161C;
            text-transform:uppercase;
        }

    .footer .footer_box .menu li {
        font-family:Barlow-Medium;
        font-weight: 500;
        font-size: 14px;
        line-height: 32px;
        color: #333;
    }

    .footer .footer_box a.btn-register {
        border-radius: 5px;
        display: block;
        background-color: #A9161C;
        color: #fff;
        padding: 12px;
        font-weight: 600;
        font-size: 14px;
        line-height: 100%;
        text-align: center;
        width: 213px;
    }

        .footer .footer_box a.btn-register:hover {
            background-color: #7d0409;
        }


    .footer .footer_box .footer_menu span {
        display: block;
    }

        .footer .footer_box .footer_menu span i {
            margin-right: 5px;
        }



.footer .footer_about .social li {
    display: inline-block;
}

    .footer .footer_about .social li img {
        width: 40px;
    }

.footer .footer_copyright {
    background-color: #d9d9d9;
    padding: 20px 0px;
    text-align: center;
}

    .footer .footer_copyright p {
        margin-bottom: 0;
    }

.box-header .language li {
    display: inline-block;
    border-right: #fff solid 1px;
    padding: 0 5px;
}

    .box-header .language li:last-child {
        border-right: unset;
        padding: 0 1px;
    }

.lang-mobile {
    padding-left: 1rem;
}

    .lang-mobile li {
        display: inline-block;
        border-right: #121212 solid 1px;
        padding: 0 5px;
    }

        .lang-mobile li:last-child {
            border-right: unset;
            padding: 0 1px;
        }

.box-header .top-menu-left {
    border-right: 1px solid #960309;
    padding: 8px 22px 8px 15px;
}

    .box-header .top-menu-left .top-text-search {
        display: flex;
        justify-content: space-between;
    }

        .box-header .top-menu-left .top-text-search .top-text {
            align-content: center;
        }

            .box-header .top-menu-left .top-text-search .top-text p {
                font-family: FiraSans-Regular;
                font-weight: 600;
                font-size: 15px;
                line-height: 22px;
                color: #fff;
                text-transform: uppercase;
                margin: 0;
            }

        .box-header .top-menu-left .top-text-search .top-search {
            align-content: center;
            width: 280px;
        }

.box-thongtindaotao {
    padding: 70px 0;
    background-color: #F5F5F5;
}

    .box-thongtindaotao .list-container {
        background-color: #fff;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

        .box-thongtindaotao .list-container li:first-child {
            padding: 20px 20px 5px 20px;
        }

        .box-thongtindaotao .list-container li {
            padding: 5px 20px 10px 20px;
        }

            .box-thongtindaotao .list-container li div {
                padding-bottom: 10px;
            }

            .box-thongtindaotao .list-container li:not(:last-child) div {
                border-bottom: 1px solid rgba(228, 228, 228, 1);
            }

            .box-thongtindaotao .list-container li a {
                font-weight: 400;
                font-size: 15px;
                line-height: 100%;
                color: #333333;
            }

                .box-thongtindaotao .list-container li a:hover, .box-thongtindaotao .list-container li a.newArticle {
                    font-weight: 700;
                }

                .box-thongtindaotao .list-container li a i {
                    color: #D9D9D9;
                    font-size: 10px;
                    margin-right: 8px;
                }

                .box-thongtindaotao .list-container li a:hover i, .box-thongtindaotao .list-container li a.newArticle i {
                    color: #A9161C;
                }

.image-container {
    position: relative;
    width: 100%;
    height: 150px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(199, 56, 62, 0.85);
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .overlay .overlay-title {
        font-weight: 700;
        font-size: 18px;
        line-height: 100%;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .overlay h2 {
        font-size: 24px;
        margin: 0 0 0 20px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .overlay .btn {
        background-color: #1C88BA;
        color: #fff;
        border-color: #ffffff;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 12px;
        cursor: pointer;
        text-transform: uppercase;
    }

        .overlay .btn:hover {
            background-color: #fff;
            color: #1C88BA;
        }

.widget-title {
    margin-bottom: 15px;
    margin-top: 15px;
    display: block;
    width: 100%;
}

.box-central {
    margin-bottom: 20px;
    padding-left: 15px;
}

.title-central {
    position: relative;
    text-align: left;
    border-bottom: 2px solid #CDCDCD;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 25px;
}

    .title-central a {
        font: 500 15px/36px Barlow-Bold;
        line-height: 1.6;
    }

h3.title-central:before {
    border-right: 3px solid #ffffff;
    bottom: -2px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 32px;
    z-index: 0;
    background-color: #A9161C;
}

.research-central .widget-inner p {
    width: 100%;
}

    .research-central .widget-inner p img {
        width: 100%;
    }

.notices-dtu .widget-main {
    border-bottom: 1px solid #cdcdcd;
}

.notices-dtu .widget-inner {
    margin-bottom: 10px;
}

    .notices-dtu .widget-inner .desc {
        word-wrap: break-word;
    }


.notices-dtu ul {
    padding: 0;
    list-style: none;
}

    .notices-dtu ul li i {
        color: #CDCDCD;
        padding-right: 10px;
    }

    .notices-dtu ul li {
        padding-bottom: 10px;
    }

        .notices-dtu ul li a {
            font: 700 10.5pt/22px Barlow-Bold;
        }

            .notices-dtu ul li a span {
                font: 500 9pt/22px Barlow-Bold;
                color: #CDCDCD;
                font-style: italic;
                padding-left: 10px;
                display: inline-block;
            }
/*lightbox gallery*/
.lightbox-gallery {
    background-repeat: no-repeat;
    color: #000;
    overflow-x: hidden
}

    .lightbox-gallery p {
        color: #fff
    }

    .lightbox-gallery h2 {
        font-weight: bold;
        margin-bottom: 40px;
        padding-top: 40px;
        color: #fff
    }

@media (max-width:767px) {
    .lightbox-gallery h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px
    }
}

.lightbox-gallery .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 40px
}

    .lightbox-gallery .intro p {
        margin-bottom: 0
    }

.lightbox-gallery .photos {
    padding-bottom: 20px
}

.lightbox-gallery .item {
    width: 100%;
    height: unset;
    padding-bottom: 15px;
}

    .lightbox-gallery .item img {
        width: 100%;
        height: unset;
    }

.form-control:focus {
    outline: 0 !important;
    border-color: initial;
    box-shadow: none;
}

.title-content .news-top-title {
    position: absolute;
    top: 40px;
    left: 40px;
    display: inline-block;
    padding: 8px 35px;
    background-color: #A9161C;
    color: #fff;
    font-family: "Barlow-Medium", sans-serif;
    font-size: 18px;
    z-index: 2;
    border-radius: 10px;
}

.title-content .overlay a:hover {
    color: unset;
}

.news-research .news .news-lg-title {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 20px 20px;
    left: 0;
    font-family: "Barlow-Medium", sans-serif;
    font-size: 20px;
    color: #fff;
    height: 220px;
    background-image: linear-gradient(rgba(255,255,255,0), rgba(0,0,0,1))
}

.news-research .news .date {
    font-family: "Barlow-Light", sans-serif;
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
}

.news-research .news .img_item {
    width: 100% !important;
}

.h3_title {
    display: inline-block;
    padding: 8px 35px;
    background-color: #A9161C;
    font-family: "Barlow-Medium", sans-serif;
    z-index: 2;
    font-size: 18px;
    color: #fff;
    border-radius: 10px;
    border: 1px solid #A9161C;
}

a.h3_title:hover {
    background-color: transparent;
    border: 1px solid #A9161C;
    color: #A9161C;
}

#btnSearch:focus {
    outline: 0 !important;
    border-color: initial;
    box-shadow: none;
}

#example-search-input {
    font-size: 14px;
    background-color: #960309;
    color: #fff;
    border: 1px solid #A9161C !important;
    border-right: none !important;
}

    #example-search-input::placeholder {
        color: #fff;
    }

#btnSearch {
    background-color: #960309;
    border: 1px solid #A9161C !important;
    border-left: none !important;
    color: #fff;
    padding: 3px 10px;
}
/*ABOUT INDEX*/

.content-about {
    padding: 70px 0;
}

    .content-about .box_about {
        display: flex;
        gap: 66px;
    }

        .content-about .box_about .img_about {
            width: 50%;
        }

            .content-about .box_about .img_about img {
                max-width: 100%;
            }

        .content-about .box_about .text_about {
            width: 50%;
        }

            .content-about .box_about .text_about .title_name {
                font-family: Barlow-Bold;
                font-size: 20px;
                line-height: 22px;
                font-weight: 700;
                text-align: left;
                margin-bottom: 10px;
            }

            .content-about .box_about .text_about .tt-about-uni {
                font-size: 20px;
                font-family: Barlow-Medium;
                font-weight: 500;
                text-transform: uppercase;
                line-height: 100%;
                color: #A9161C;
                margin-bottom: 20px;
            }

            .content-about .box_about .text_about .about-short {
                font-size: 16px;
                font-weight: 400;
                line-height: 22px;
                margin-bottom: 30px;
                max-height: 400px;
                text-align:justify;
            }

                .content-about .box_about .text_about .about-short a.toggle {
                    font-family: FiraSans-Medium;
                    font-weight: 500;
                    font-size: 17px;
                    display: block;
                    text-transform: uppercase;
                    text-align: center;
                    line-height: 100%;
                    color: #C4C4C4;
                }
            /* toggle full story */
            .content-about .box_about .text_about .full-story {
                max-height: initial;
            }




/*content-quang-cao INDEX*/
.content-info .info-container .custom-card {
    border: none;
    border-radius: 15px;
    padding: 25px 18px;
    margin-bottom: 20px;
    display: flex;
    gap: 17px;
}

.content-info .info-container .nganh-hoc {
    background-color: #FFE6E6; /* Light pink */
}

.content-info .info-container .doi-ngu {
    background-color: #F6E6FF; /* Light purple */
}

.content-info .info-container .csvc {
    background-color: #D8F5FF; /* Light blue */
}

.content-info .info-container .custom-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.content-info .info-container .custom-card h5 {
    font-weight: bold;
    margin-bottom: 10px;
}

.content-info .info-container .custom-card p {
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

.content-info .adv-container {
    position: relative;
    background-color: #A9161C;
    padding: 30px 0;
    overflow: hidden;
    margin-top: 70px;
}

    .content-info .adv-container .overlay-image {
        position: absolute;
        top: 0;
        right: 0;
        width: 30%; /* Adjust size */
        height: 100%;
        opacity: 0.25;
        object-fit: cover;
        pointer-events: none; /* Makes sure it doesn't interfere with clicks */
        mix-blend-mode: lighten;
    }

    .content-info .adv-container .ranking .ranking-ins {
        max-width: 166px;
        max-height: 54px;
        border-radius: 4px;
    }

    .content-info .adv-container .ranking h5 {
        margin-top: 8px;
        font-weight: 700;
        color: #F7A600;
        font-size: 18px;
        line-height: 100%;
    }

    .content-info .adv-container .ranking p, .content-info .adv-container .ranking span {
        font-weight: 600;
        color: #fff;
        font-size: 14px;
        line-height: 100%;
        margin-bottom: 5px;
    }
/*content-program INDEX*/
.content-program {
    padding: 70px 0;
}

.title_name {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 25px;
}

.content-program .box_program .item_program {
    margin-bottom: 30px;
    min-height: 280px;
}

    .content-program .box_program .item_program .box_list {
        border: none;
        border-radius: 15px;
        padding: 30px 20px 5px 20px;
        margin-bottom: 20px;
        display: flex;
        gap: 17px;
        color: #fff;
    }

        .content-program .box_program .item_program .box_list .box_title .category-icon {
            max-width: 46px;
        }

        .content-program .box_program .item_program .box_list .box_title h3 a {
            font-weight: 700;
            font-size: 24px;
            margin-left: 10px;
        }

            .content-program .box_program .item_program .box_list .box_title h3 a:hover {
                color: #fff;
                font-weight: 900;
            }

        .content-program .box_program .item_program .box_list .list-detail {
            font-family: "Barlow-Regular";
            font-weight: 500;
            font-size: 15px;
            line-height: 22px;
        }

            .content-program .box_program .item_program .box_list .list-detail i {
                margin-right: 1rem;
            }

            .content-program .box_program .item_program .box_list .list-detail a:hover {
                color: #fff;
                font-weight: 700;
            }
/*content-tuyen-sinh INDEX*/
.content-tuyen-sinh {
    background-color: #F5F5F5;
    padding: 70px 15px;
}

    .content-tuyen-sinh .item {
        min-height: 500px;
        max-height: 500px;
    }

    .content-tuyen-sinh .news-card {
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.3s;
        border-bottom-left-radius: 15px !important;
        border-bottom-right-radius: 15px !important;
    }



        .content-tuyen-sinh .news-card img {
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            object-fit: cover;
            height: 220px;
            width: 100%;
        }

        .content-tuyen-sinh .news-card .card-body {
            min-height: 280px;
            max-height: 280px;
            background-color: #fff;
        }

            .content-tuyen-sinh .news-card .card-body .date {
                color: #6c757d !important;
                font-size: 14px;
                font-weight: 500;
                line-height: 22px;
                margin-bottom: 10px;
            }

                .content-tuyen-sinh .news-card .card-body .date i {
                    margin-right: 2px;
                }

            .content-tuyen-sinh .news-card .card-body .card-title {
                font-size: 18px;
                color: #000;
                font-weight: 600;
                line-height: 1.2;
                margin-bottom: 10px;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
            }

            .content-tuyen-sinh .news-card .card-body .card-text {
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                margin-top: 5px;
                margin-bottom: 0;
                font-weight: 400;
                font-size: 15px;
                line-height: 22px;
                color: #81868A;
            }

            .content-tuyen-sinh .news-card .card-body .viewmore {
                position: absolute;
                bottom: 20px;
                text-transform: uppercase;
                font-weight: 600;
                font-size: 16px;
                line-height: 100%;
                color: #A9161C;
            }
/*box-register*/
.box-register {
    background: url('/content/images/BG-dangky.png'),linear-gradient(180deg, rgba(245, 245, 245, 0) 54.81%, #F5F5F5 96.63%);
    padding: 70px 0;
    background-size: cover;
    height: 517px;
}

    .box-register form {
        background-color: #fff;
        box-shadow: 3px 4px 11px 0px rgba(0, 0, 0, 0.18);
        border-radius: 20px;
        border: 1px solid #D9D9D9;
        padding: 25px 22px 36px;
    }

        .box-register form .form-group {
            margin-bottom: 20px;
        }

        .box-register form .form-dk-title {
            font-weight: 700;
            font-size: 20px;
            line-height: 100%;
            text-align: center;
            margin-bottom: 18px;
            color: #000;
        }

        .box-register form input, .box-register form select {
            font-weight: 400;
            font-size: 14px;
            line-height: 100%;
        }

        .box-register form .btn-register {
            background: rgba(169, 22, 28, 1);
            border: unset;
            border-radius: 5px;
            padding: 12px 24px;
            color: #fff;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 14px;
            line-height: 100%;
            text-align: center;
            margin-bottom: unset;
        }

        .box-register form .label-receiveNews {
            font-weight: 400;
            font-size: 14px;
            line-height: 100%;
            color: #000000;
        }

            .box-register form .label-receiveNews input[type="checkbox"] {
                accent-color: #bb0101;
                transform: scale(1.2);
                margin-right: 5px;
            }
/* .box-register form .label-receiveNews input[type="checkbox"] {
                content: "";
                display: block;
                position: absolute;
                text-align: center;
                height: 20px;
                width: 20px;
                left: 15px;
                top: 0px;
                background-color: #A9161C;
                border-radius: 2px;
                border: 1px solid rgb(150 150 150 / 30%);
            }
            .box-register form .label-receiveNews input[type=checkbox]:checked + label::after {
                content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="white" viewBox="0 0 24 24"><path d="M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/></svg>');
                display: block;
                position: absolute;
                left: 3px;
                top: 3px;
            }*/
/*content-nhiemvu*/
.content-nhiemvu {
    padding: 0;
    background-image: url('/content/images/grid.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
    background-color: #A9161C;
}

    .content-nhiemvu .box-nhiemvu {
        display: flex;
    }

    .content-nhiemvu .box-nhiemvu {
        display: flex;
        justify-content: space-between;
        gap: 100px;
    }

        .content-nhiemvu .box-nhiemvu .text-nhiemvu {
            width: 50%;
            color: #fff;
            text-align: left;
            align-content:center;
        }

            .content-nhiemvu .box-nhiemvu .text-nhiemvu .title_nhiemvu {
                font-family: FiraSans-Regular;
                font-weight: 400;
                font-size: 36px;
                line-height: 100%;
                text-transform: uppercase;
                margin-bottom: 20px;
            }

            .content-nhiemvu .box-nhiemvu .text-nhiemvu .nhiemvu-content {
                font-family: Barlow-Regular;
                font-weight: 400;
                font-size: 18px;
                line-height: 25px;
                text-align: justify;
            }
        .content-nhiemvu .box-nhiemvu .img-nhiemvu  {
           padding-top:70px;
        }
        .content-nhiemvu .box-nhiemvu .img-nhiemvu img {
            width: 100%;
        }
/*box-doingu*/
.box-doingu {
    padding: 70px 0;
    background-image: url('/content/images/stork.png');
    background-repeat: no-repeat;
    background-size: 35% 100%; /* 30% width, 100% height */
    background-position: left top;
}

    .box-doingu .title {
        display: flex;
        justify-content: space-between;
    }

    .box-doingu .view-all {
        width: 20%;
        display: inline-block;
        text-align: right;
        padding-top: 10px;
        padding-right: 15px;
        font-family: FiraSans-Medium;
        font-weight: 500;
        font-size: 17px;
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #81868A;
    }

        .box-doingu .view-all img {
            width: 23px;
        }

    .box-doingu .title_name {
        width: 80%;
        font-family: FiraSans-Regular;
        font-weight: 400;
        font-size: 36px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #333;
        text-align: left;
        text-transform: uppercase;
    }

        .box-doingu .title_name .hoidong {
            color: #A9161C;
        }

    .box-doingu .doingu .doingu-card {
        margin-right: 15px;
    }

        .box-doingu .doingu .doingu-card .card-body {
            text-align: center;
        }

            .box-doingu .doingu .doingu-card .card-body .doingu-name {
                font-family: FiraSans-SemiBold;
                display: inline-block;
                font-weight: 600;
                font-size: 20px;
                line-height: 22px;
                color: #A9161C;
                text-align: center;
                margin-bottom: 5px;
                text-transform: uppercase;
            }

            .box-doingu .doingu .doingu-card .card-body .chucvu1 {
                font-family: Barlow-Medium;
                font-weight: 500;
                font-size: 15px;
                line-height: 22px;
                text-align: center;
                color: #000;
                margin-bottom: 0px;
            }

            .box-doingu .doingu .doingu-card .card-body .chucvu {
                font-family: Barlow-Medium;
                font-weight: 500;
                font-size: 15px;
                line-height: 22px;
                text-align: center;
                color: #000;
            }
/*box-news*/
.box-news {
    padding: 70px 0;
    background-color: #F5F5F5;
}

    .box-news .item {
        min-height: 600px;
        max-height: 600px;
    }

    .box-news .news-card {
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.3s;
        border-bottom-left-radius: 15px !important;
        border-bottom-right-radius: 15px !important;
    }



        .box-news .news-card img {
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            object-fit: cover;
            height: 340px;
            width: 100%;
        }

        .box-news .news-card .card-body {
            min-height: 260px;
            max-height: 260px;
            background-color: #fff;
        }

            .box-news .news-card .card-body .date {
                color: #6c757d !important;
                font-size: 14px;
                font-weight: 500;
                line-height: 22px;
                margin-bottom: 10px;
            }

                .box-news .news-card .card-body .date i {
                    margin-right: 2px;
                }

            .box-news .news-card .card-body .card-title {
                font-size: 18px;
                color: #000;
                font-weight: 600;
                line-height: 1.2;
                margin-bottom: 10px;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
            }

            .box-news .news-card .card-body .card-text {
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                margin-top: 5px;
                margin-bottom: 0;
                font-weight: 400;
                font-size: 15px;
                line-height: 22px;
                color: #81868A;
            }

            .box-news .news-card .card-body .viewmore {
                position: absolute;
                bottom: 20px;
                text-transform: uppercase;
                font-weight: 600;
                font-size: 16px;
                line-height: 100%;
                color: #A9161C;
            }

    .box-news .news-box-right {
        padding: 20px;
        min-height: 600px;
        max-height: 600px;
        overflow-y: auto;
        background-color: #fff;
        border-radius: 10px;
    }

        .box-news .news-box-right .news-item {
            display: flex;
            gap: 10px;
            margin-bottom: 1rem;
        }

            .box-news .news-box-right .news-item .news-title {
                font-weight: 600;
                font-size: 17px;
                line-height: 100%;
                color: #000;
                margin-bottom: 10px;
            }

            .box-news .news-box-right .news-item .date {
                font-weight: 500;
                font-size: 14px;
                line-height: 22px;
                color: #81868A;
            }

            .box-news .news-box-right .news-item .img-news img {
                height: 120px;
                border-radius: 5px;
            }
/*van ban chi dao*/
.content-vanbanchidao {
    padding: 70px 0;
    background-color: #F6F6F6;
}

    .content-vanbanchidao .title_name {
        width: 80%;
        font-family: FiraSans-Regular;
        font-weight: 400;
        font-size: 36px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #333;
        text-align: left;
        text-transform: uppercase;
    }

        .content-vanbanchidao .title_name .chidao {
            color: #A9161C;
        }

    .content-vanbanchidao .box-vanbanchidao {
        display: flex;
        gap: 66px;
    }

        .content-vanbanchidao .box-vanbanchidao .text-vanbanchidao {
            width: 50%;
        }

            .content-vanbanchidao .box-vanbanchidao .text-vanbanchidao .custom-list {
                counter-reset: item;
                list-style: none;
                padding: 0;
                margin: 0;
            }

                .content-vanbanchidao .box-vanbanchidao .text-vanbanchidao .custom-list li {
                    display: flex;
                    align-items: flex-start;
                    margin-bottom: 20px;
                    font-family: Barlow-Regular;
                    font-size: 16px;
                    line-height: 25px;
                    font-weight: 400;
                    color: #333;
                }

                    .content-vanbanchidao .box-vanbanchidao .text-vanbanchidao .custom-list li::before {
                        counter-increment: item;
                        content: counter(item, decimal-leading-zero);
                        font-family: FiraSans-SemiBold;
                        font-size: 40px;
                        font-weight: 700;
                        width: 40px;
                        color: #C4C4C4;
                        line-height: 25px;
                        margin-top: 10px;
                        margin-right: 24px;
                    }

        .content-vanbanchidao .box-vanbanchidao .img-vanbanchidao {
            width: 50%;
        }

            .content-vanbanchidao .box-vanbanchidao .img-vanbanchidao img {
                width: 100%;
            }

/*tin tuc sub kien*/
.content-news {
    padding: 70px 0;
    background-color: #fff;
}

    .content-news .title {
        display: flex;
        justify-content: space-between;
    }

    .content-news .title_name {
        width: 80%;
        font-family: FiraSans-Regular;
        font-weight: 400;
        font-size: 36px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #333;
        text-align: left;
        text-transform: uppercase;
    }

        .content-news .title_name .sukien {
            color: #A9161C;
        }

    .content-news .view-all {
        width: 20%;
        display: inline-block;
        text-align: right;
        padding-top: 10px;
        font-family: FiraSans-Medium;
        font-weight: 500;
        font-size: 17px;
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #81868A;
    }

        .content-news .view-all img {
            width: 23px;
        }

    .content-news .news-carousel .item_info {
        margin-top: 20px;
    }
    .content-news .news-carousel .item img{
        height:235px;
        object-fit:cover;
    }

        .content-news .news-carousel .item_info .news_title {
            font-family: FiraSans-Medium;
            font-size: 20px;
            color: #333;
            text-transform: uppercase;
        }

        .content-news .news-carousel .item_info .date_time {
            font-family: Barlow-Medium;
            font-weight: 500;
            font-size: 14px;
            line-height: 100%;
            color: #C4C4C4;
        }

            .content-news .news-carousel .item_info .date_time i {
                font-size: 14px;
                color: #C4C4C4;
                margin-right: 5px;
            }

.box-info {
    padding: 40px 0;
    text-align: center;
}

    .box-info .info-img img {
        width: 47px;
    }

    .box-info .info-text .info-text-title {
        margin-top: 1rem;
        font-weight: 600;
        font-size: 18px;
        line-height: 100%;
        text-align: center;
    }

    .box-info .info-text .info-text-info {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        color: #81868A;
    }

        .box-info .info-text .info-text-info p {
            margin-bottom: 5px;
        }

.dangky-khoahoc .text-danger {
    font-size: 12px;
}

.form-search {
    display: flex;
    gap: 25px;
    align-items: center;
    padding-left: 22px;
}

    .form-search ul {
        min-width: 70px;
    }

        .form-search ul > li {
            display: inline-block;
            border-right: #fff solid 1px;
            padding: 0 5px;
        }

            .form-search ul > li:last-child {
                border-right: unset;
                padding: 0 1px;
            }

    .form-search .dropdown .dropdown-toggle {
        color: #fff;
        font-family: Barlow-Regular;
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        padding-left: 0;
    }

.lang-mobile .dropdown .dropdown-toggle {
    color: #333;
    font-family: Barlow-Regular;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    padding-left: 0;
}

.form-search .dropdown .dropdown-menu, .lang-mobile .dropdown .dropdown-menu {
    color: #333;
    font-family: Barlow-Regular;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    padding-left: 0;
}

.form-search .dropdown .dropdown-toggle:focus, .lang-mobile .dropdown .dropdown-toggle:focus {
    box-shadow: unset;
}

.form-search .dropdown .dropdown-toggle::after, .lang-mobile .dropdown .dropdown-toggle::after {
    display: none;
}

.form-search .dropdown .dropdown-item, .lang-mobile .dropdown .dropdown-item {
    padding: 5px;
}
/*pagination*/
.pagination-sm .page-link {
    padding: 10px 12px;
    font-size: 1rem;
    line-height: 1;
}

.page-link {
    color: #A9161C;
}

    .page-link:hover {
        color: #7d0409;
    }

.page-item.active .page-link {
    color: #fff;
    background-color: #A9161C;
    border-color: #A9161C
}
.searchMobile{
    padding:0 7px;
}
    .searchMobile #btnSearchMobile {
        border:none;
        background-color:#fff;
    }
    .searchMobile #btnSearchMobile img{
       width:16px;
    }