﻿body {
    font-family: "Roboto Regular", sans-serif;
    font-size: 14px;
    color: #000;
}

a,
p,
li {
    color: #000;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: unset;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

:root {
    --color-red: #A9161C;
    --color-main: #333333;
    --color-white: #ffffff;
    --color-menu: #333333;
    --color-gray: #81868A;
    --font-family-all: "Roboto Regular";
    --font-family-RobotoMedium: "Roboto Medium";
    --font-family-RobotoBold: "Roboto Bold";
    --font-family-RobotoItalic: "Roboto Italic";
    --font-family-RobotoCondensedBold: "Roboto Condensed Bold";
}

.mt-top-bottom {
    margin: 2em 0;
}

.header-top {
    background-color: #CD2A32;
}

.header-top .box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
}

.box-header .language {
    display: flex;
    align-items: center;
}

.box-header .language ul.lang {
    padding-right: 10px;
    display: flex;
    align-items: center;
}

.box-header .language ul.lang li {
    display: inline-block;
    outline: none;
    padding-right: 5px;
}

.box-header .language ul.lang li a {}

.box-header .language ul.lang li a:hover img {
    transition: linear 0.3s;
    -webkit-filter: grayscale(0);
    filter: none;
}

.box-header .language ul.lang li a img {
    filter: gray;
    -webkit-filter: grayscale(0.4);
    filter: grayscale(0.4);
}

.box-header .language ul.lang li.active img {
    transition: linear 0.3s;
    -webkit-filter: grayscale(0);
    filter: none;
}

    .box-header .language .hd_contact {
        display: flex;
        align-items: center;
        position: relative;
        border-left: 0.5px solid rgb(255 255 255 / 30%);
        padding-left: 15px;
        height: 45px;
    }

.box-header .language .hd_contact p {
    color: var(--color-white);
    margin-bottom: 0;
    padding-right: 30px;
    position: relative;
    line-height: 22px;
}

.box-header .language .hd_contact p.phone:before {
    content: url(../images/icon_phone.png);
    position: absolute;
    top: 3px;
}

.box-header .language .hd_contact p.email:before {
    content: url(../images/icon_email.png);
    position: absolute;
    top: 2px;
}

.box-header .language .hd_contact p span {
    margin-left: 25px;
    display: block;
}

.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: var(--color-white);
}

    .header-top .box-menu-fix ul li a:hover {
        color: #ffb13c;
    }

.header-top .box-menu-fix .search-form {
    margin-left: 10px;
    position: relative;
}

.header-top .box-menu-fix .search-form .textsearch {
    border: 0;
    padding: 8px 10px;
    font-size: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 250px;
}

.header-top .box-menu-fix .search-form input::placeholder {
    color: #C4C4C4;
}

.header-top .box-menu-fix .search-form input[type="submit"] {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    background: url(../images/search.png) center center no-repeat;
    border-radius: 0;
    width: 20px;
}

.header-logo {
    margin: 12px 0;
}

.header-logo .logo_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .header-logo .logo_menu .header_title {
        text-align: center;
        text-transform: uppercase;
    }

.header-logo .logo_menu .header_title h2 {
    font-family: var(--font-family-RobotoBold);
    font-size: 20px;
    color: #81868A;
    margin: 0;
    line-height: 1.5;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}
.header-logo .logo_menu .header_title h1 {
    font-family: var(--font-family-RobotoBold);
    font-size: 25px;
    color: #A9161C;
    text-transform: uppercase;
    margin: 0;
}

.header-menu {
    background-color: #CD2A32;
}

.navigation {
    z-index: 9996;
    position: relative;
    width: 100%;
}

.nav-toggle {
    height: 44px;
    padding: 10px 0;
    position: relative;
    cursor: pointer;
    display: none;
}

.nav-toggle:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 6px;
    background-color: #ffffff;
    box-shadow: 0 0.7em 0 0 #ffffff, 0 1.4em 0 0 #ffffff;
}

.navigation-portrait .nav-toggle {
    display: block;
}

.navigation-portrait .nav-menus-wrapper {
    width: 250px;
    height: 100%;
    top: 0;
    left: -400px;
    position: fixed;
    background-color: var(--color-red);
    z-index: 20000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition-duration: .8s;
    transition-timing-function: ease;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
    left: auto;
    right: -400px;
}

.nav-menus-wrapper.nav-menus-wrapper-open {
    left: 0;
}

.nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
    right: 0;
}

.nav-menus-wrapper-close-button {
    margin: 10px 15px;
    display: none;
    float: right;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    font-weight: bold;
}

.navigation-portrait .nav-menus-wrapper-close-button {
    display: block;
}

.navigation .nav-menu {
    margin: 0;
    padding: 0;
    display: inline-flex;
    justify-content: space-evenly;
}

    .navigation .nav-menu > li {
        display: inline-block;
        position: relative;
        border-left: 0.5px solid rgb(255 255 255 / 30%);
    }

        .navigation .nav-menu > li:last-child {
            border-right: 0.5px solid rgb(255 255 255 / 30%);
        }

.navigation .nav-menu>li>a {
    padding: 10px 13px;
    line-height: 1.5;
    display: inline-block;
    font-size: 15px;
    color: var(--color-white);
    font-family: var(--font-family-RobotoMedium);
    text-transform: uppercase;
}

.navigation .nav-menu li a:hover,
.navigation .nav-menu li a:focus,
.navigation .nav-menu li.active a {
    background-color: #A9161C;
}

.navigation-portrait .nav-menu {
    width: 100% ;
    display:block;
}

.navigation-portrait .nav-menu>li {
    width: 100%;
    position: relative;
    border-top: solid 1px #f0f0f0
}

.navigation-portrait .nav-menu>li:last-child {
    border-bottom: solid 1px #f0f0f0
}

.navigation-portrait .nav-menu>li>a {
    height: auto;
    width: 100%;
}

.navigation .nav-menu li:hover .nav-dropdown {
    display: block;
}

.navigation .nav-menu li:hover .nav-dropdown .nav-dropdown {
    display: none;
}

.submenu-indicator {
    margin-left: 6px;
    margin-top: 6px;
    float: right;
    transition: all .3s;
    display: none;
}

.navigation-portrait .submenu-indicator {
    width: 54px;
    height: 44px;
    margin-top: 0;
    position: absolute;
    text-align: center;
    z-index: 20000;
    right: 0;
    top: 0;
}

.submenu-indicator-chevron {
    height: 6px;
    width: 6px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #ffffff #ffffff transparent;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: border .3s;
}

.navigation-portrait .submenu-indicator-chevron {
    position: absolute;
    top: 18px;
    left: 24px;
}

.nav-menu>.active>a .submenu-indicator-chevron,
.nav-menu>.focus>a .submenu-indicator-chevron,
.nav-menu>li:hover>a .submenu-indicator-chevron {
    border-color: transparent #03b97c #03b97c transparent
}

.navigation-portrait .submenu-indicator.submenu-indicator-up {
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.nav-dropdown {
    min-width: 200px;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    z-index: 98;
    white-space: nowrap;
}

.navigation-portrait .nav-dropdown {
    width: 100%;
    position: static;
    left: 0;
}

.nav-dropdown .nav-dropdown {
    left: 100%;
    display: none;
}

.nav-menu > li .nav-dropdown {
    border: none;
    background: #CD2A32;
    box-shadow: 0px 0px 42px 0px rgba(32, 32, 32, 0.15);
    -webkit-box-shadow: 0px 0px 42px 0px rgba(32, 32, 32, 0.15);
}

.nav-dropdown>li {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    text-align: left;
}

.nav-dropdown>li:last-child {
    margin-bottom: 0;
}

.nav-dropdown>li>a {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #e4e8ec;
    display: inline-block;
    float: left;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #FFF;
}

.nav-dropdown>li:last-child>a {
    border-bottom: none;
}

.nav-dropdown.nav-dropdown-left {
    right: 0
}

.nav-dropdown>li>.nav-dropdown-left {
    left: auto;
    right: 100%
}

.navigation-portrait .nav-dropdown>li>a {
    padding: 15px 25px;
}

.navigation-portrait .nav-dropdown>li>ul>li>a {
    padding-left: 50px
}

.nav-dropdown .submenu-indicator {
    right: 15px;
    top: 16px;
    position: absolute
}

.navigation-portrait .submenu-indicator {
    right: 0;
    top: 0
}

.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.navigation-landscape .nav-dropdown-left .submenu-indicator {
    left: 10px
}

.hide_desktop {
    display: none;
}


.content_repo {
    width: 100%;
    position: relative;
    height: auto;
}

.content_repo .ovelay_menu {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(169, 169, 169, 0.45);
    display: none;
    z-index: 8888;
}

.hiden_ove {
    overflow: hidden;
}

.title_block {
    display: block;
}

.banner {
    position: relative;
}

.banner .item {
    min-height: 570px;
    background-size: cover !important;
    background-position-x: center !important;
    background-position-y: top !important;
}

.banner .banner-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 50%;
}

.bg_banner .banner-content {
    min-height: 570px;
}

.banner .item .banner-content .slide-dtu {
    font-family: var(--font-family-RobotoBold);
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
}

.banner .item .banner-content .slide-h2 {
    font-family: var(--font-family-RobotoBold);
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-white);
    padding-bottom: 20px;
    margin: 0;
}

.banner .item .banner-content p.slide-p {
    font-family: var(--font-family-RobotoMedium);
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
    padding-bottom: 20px;
}

.banner .item .banner-content a.slide-read-more {
    display: inline-block;
    color: #fff;
    padding: 10px 30px;
    position: relative;
    text-transform: uppercase;
    font-size: 16px;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
}

.banner .item .banner-content a.slide-read-more:hover {
    background-color: #A9161C;
    border: 1px solid #A9161C;
    color: #FFFFFF;
}

.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-carousel .owl-item img {
    display: block;
    max-width: 100%;
}

.title {
    text-align: center;
}

.title_sub {
    font-family: var(--font-family-RobotoBold);
    font-size: 22px;
}

.title_name {
    font-family: var(--font-family-RobotoBold);
    font-size: 30px;
    color: var(--color-main);
    display: inline-block;
    text-transform: uppercase;
    position: relative;
}
    .title_name > a:hover {
        color: #ffb13c;
    }


.title_white {
    color: var(--color-white);
}

.title_white:after {
    background-color: var(--color-white);
}

.date_time {
    color: var(--color-gray);
    font-size: 13px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 16px;
}

.date_time:before {
    content: "\f133";
    color: var(--color-gray);
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}


.view {
    margin-top: 20px;
}

.flex_align {
    align-items: center;
}

.content-about {
    padding-top: 80px;
    padding-bottom: 70px;
}

.content-about .box_about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.content-about .box_about .item_about {
    width: 50%;
}

.content-about .box_about .item_about img {
    width: 100%;
}

.content-about .box_about .item_about .about-short {
    margin-top: 20px;
    font-size: 16px;
}

.content-about .box_about .item_about .view_more {
    background-color: #A9161C;
    border-radius: 5px;
    padding: 15px 40px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-top: 50px;
    display: inline-block;
}

    .content-about .box_about .item_about .view_more:hover {
        background-color: #ffb13c;
        color: #A9161C;
    }

.content-program {
    background-color: #F5F5F5;
    padding: 70px 0;
}

.content-program .box_program {
    margin-top: 30px;
}

.content-program .box_program .item_program {
    margin-bottom: 20px;
}

.content-program .box_program .item_program img {
    max-width: 220px;
    width: 100%;
    float: left;
    z-index: 9991;
    position: relative;
}

.content-program .box_program .item_program .box_list {
    padding: 20px 0;
    margin-left: 195px;
}

.content-program .box_program .item_program .box_list .box_title {
    background-image: linear-gradient(to right, #F5F5F5 1%, #A9161C 0);
    position: relative;
}

.content-program .box_program .item_program .box_list .box_title::before {
    content: '';
    width: 35px;
    height: 100%;
    background-color: #A9161C;
    -webkit-transform: skew(340deg);
    -moz-transform: skew(340deg);
    -o-transform: skew(340deg);
    transform: skew(340deg);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

.content-program .box_program .item_program .box_list h3 {
    padding: 8px 12px;
    margin: 0;
    margin-left: 25px;
    z-index: 9999;
    position: relative;
}

.content-program .box_program .item_program .box_list h3 a {
    color: #fff;
    font-size: 24px;
    font-family: var(--font-family-RobotoBold);
    text-transform: uppercase;
}
    .content-program .box_program .item_program .box_list h3 a:hover {
        color: #ffb13c;
    }

    .list-detail {
        padding: 28px 70px;
    }

.list-detail .item {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
}

.list-detail .item::before {
    content: url("../images/icon_program.png");
    padding-right: 10px;
}

.list-detail .item a {
    font-size: 18px;
}
    .list-detail .item a:hover {
        color: #ffb13b;
    }

.content-news {
    margin: 70px 0 50px;
}

.content-news .box_news {
    margin-top: 20px;
}

.content-news .box_news .news_first .news_info {
    background-color: #A9161C;
    padding: 17px;
    color: #FFFFFF;
}

.content-news .box_news .news_first .news_info .title_item {
    font-family: var(--font-family-RobotoMedium);
    font-size: 16px;
    margin-bottom: 12px;
}

.content-news .box_news .news_first .news_info .title_item a {
    display: block;
}

    .content-news .box_news .news_first .news_info .title_item a:hover {
        color: #ffb13c;
    }

.content-news .box_news .news_first .news_info p {
    color: #FFFFFF;
    margin-bottom: 10px;
}

.content-news .box_news .news_first .news_info .date_time::before {
    color: #FFFFFF;
}

.content-news .box_list_new {
    position: relative;
}

.content-news .box_list_new .item_news {
    padding-top: 22px;
    position: relative;
}

.content-news .box_list_new .item_news h3 {
    font-size: 16px;
    line-height: 1.3;
    font-family: var(--font-family-RobotoMedium);
}

.content-news .box_list_new .item_news h3 a {
    display: block;
}

    .content-news .box_list_new .item_news h3 a:hover {
        color: #ffb13c;
    }

.content-news .box_list_new .owl-theme .owl-controls {
    margin-top: 30px;
}

.content-news .box_list_new .owl-theme .owl-dots .owl-dot span {
    height: 3px;
    width: 40px;
    border-radius: 0;
}
.content-news .box_list_new .owl-theme .owl-dots .owl-dot.active span,
.content-news .box_list_new .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-red);
}

.content-news .box_thongbao {
    background-color: #F5F5F5;
    margin-top: 20px;
}

.content-news .box_thongbao .box_publication {
    
}

    .content-news .box_thongbao .box_publication ul.list_publication {
        list-style-image: url(../images/list-type-custom.png);
        /*padding-left: 18px;*/
        margin-top: 10px;
        overflow-y: scroll;
        max-height: 600px;
        min-height: 600px;
        scrollbar-width: thin;
        scrollbar-color: #f9b21e;
        margin-left: 10px;
    }

/* Works on Chrome, Edge, and Safari */
.content-news .box_publication ul.list_publication::-webkit-scrollbar {
    width: 5px;
}

.content-news .box_publication ul.list_publication::-webkit-scrollbar-track {
    background: #fff;
}

.content-news .box_publication ul.list_publication::-webkit-scrollbar-thumb {
    background-color: var(--color-red);
    border-radius: 20px;
}

.content-news .box_publication ul.list_publication>li {
    /*margin-bottom: 10px;*/
    border-bottom: solid 1px #ccc;
}

.content-news .box_publication ul.list_publication>li .art_pub {
    font-family: var(--font-family-RobotoBold);
    margin-bottom: 10px;
}

.content-news .box_publication ul.list_publication>li .art_pub span {
    font-family: var(--font-family-all);
}
    .content-news .box_publication ul.list_publication > li::marker {
        content: ''; /* Ẩn dấu đầu dòng */
    }
    .content-news .box_publication ul.list_publication > li .pgs {
        font-family: var(--font-family-RobotoItalic);
        margin-bottom: 10px;
    }

    .content-news .box_thongbao ul {
        margin-top: 10px;
        overflow-y: scroll;
        max-height: 534px;
        min-height: 300px;
        scrollbar-width: thin;
    }

        .content-news .box_thongbao ul > li {
            padding: 15px 5px 5px 10px; border-bottom: solid 1px #fff;
        }

/*.content-news .box_thongbao ul>li:before {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    display: inline-block;
    color: #ffffff;
    font-size: 12px;
    padding-right: 6px;
}*/

    .content-news .box_thongbao ul > li a {
        font-family: var(--font-family-RobotoBold);
        margin-bottom: 10px;
        color: #333333;
        font-size:14px;
        line-height:1.2;
    }
        .content-news .box_thongbao ul > li a > span:hover {
            color: #ffb13c;
        }


        .content-enroll {
            padding: 70px 0 50px;
            background-image: linear-gradient(to bottom, #A9161C 60%, #F5F5F5 0);
        }

.content-enroll .title_name {
    color: #FFFFFF;
}

.content-enroll .box_item {
    margin-top: 25px;
}

.content-enroll .item_enroll {
    position: relative;
}

.content-enroll .item_enroll .item_info {
    background-color: #FFFFFF;
    padding: 20px 15px;
    position: relative;
}

.content-enroll .item_enroll .item_info .news_title {
    margin-bottom: 10px;
}

.content-enroll .item_enroll .item_info .news_title a {
    font-family: var(--font-family-RobotoMedium);
    font-size: 16px;
    display: block;
    line-height: 1.4;
}

    .content-enroll .item_enroll .item_info .news_title a:hover {
        color: #ffb13c;
    }

.content-enroll .item_enroll .item_info .link_enroll {
    display: inline-flex;
    align-items: center;
    background-color: #FFB13C;
    border-radius: 15px;
    color: #FFFFFF;
    padding: 4px 10px;
}

    .content-enroll .item_enroll .item_info .link_enroll:hover {
        background-color: #a9161c;
    }

.content-enroll .item_enroll .item_info .link_enroll::before {
    content: url("../images/icon_enroll.png");
    padding-right: 5px;
    display: block;
}

.enroll-carousel .owl-controls {
    margin-top: 30px;
}

.enroll-carousel .owl-dots .owl-dot span {
    height: 3px;
    width: 40px;
    border-radius: 0;
}

.enroll-carousel .owl-dots .owl-dot.active span,
.enroll-carousel .owl-dots .owl-dot:hover span {
    background-color: #CA1C24;
    border: 0;
}

/*facility*/
.box-facilities {
    margin: 50px 0;
}

.box-facilities .parent {
    display: flex;
}

.box-facilities .parent .title_name {
    align-self: center;
}


.box-facilities .content {
    background: #a62823;
}

.box-facilities .content .item {
    padding: 30px;
    border-right: solid 1px #60120f;
}

.box-facilities .content .item span:first-child {
    color: #f4a228;
    font-size: 30px;
    display: block;
}

.box-facilities .content .item span:nth-child(2) {
    color: #ffffff;
    text-transform: uppercase;
    display: block;
}

.box-facilities .content .owl-controls {
    top: 0;
    left: auto;
    width: auto;
    right: 0;
    position: absolute;
}

.box-facilities .list-facilities {
    position: relative;
}

.box-facilities .list-facilities .owl-controls {
    position: absolute;
    top: 35%;
    width: 100%;
}

.facility-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;
}

.facility-carousel .owl-nav .owl-prev i {
    color: #FFF;
    padding-right: 4px;
    font-size: 1.6875rem;
}

.facility-carousel .owl-nav .owl-prev:focus {
    outline: 0;
}

.facility-carousel .owl-nav .owl-prev:hover {
    background: #000 !important;
}

.facility-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;
}

.facility-carousel .owl-nav .owl-next i {
    color: #FFF;
    padding-left: 4px;
    font-size: 1.6875rem;
}

.facility-carousel .owl-nav .owl-next:focus {
    outline: 0;
}

.facility-carousel .owl-nav .owl-next:hover {
    background: #000 !important;
}

.list-facilities .owl-carousel:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

.list-facilities .owl-carousel:hover .owl-next {
    right: 0px;
    opacity: 1;
}


.box-partners {
    margin: 50px 0;
}

.box-partners .partner-carousel {
    margin: 30px 0 50px;
}

.box-partners .partner-carousel .item .logo_uni {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex: 0 0 100%;
}

.box-partners .partner-carousel .item .logo_uni img {
    width: auto;
    display: inline;
    max-width: 100%;
    padding: 5px;
}


.center {
    text-align: center;
}

.item_img {
    width: 100%;
}

.item_img_50 {
    width: 49%;
}

.footer {}

.footer .footer_about {
    padding-right: 10%;
}
    .footer .footer_about ul li a:hover {
        color: #ffb13c;
    }

.footer .footer_box {
    padding: 40px 0;
    background-color: #ebebeb;
}

.footer .footer_box .title_img {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
    height: 63px;
    display: flex;
    align-items: flex-end;
}

.footer .footer_box .title_img .title_dept {
    font-family: var(--font-family-RobotoBold);
    font-size: 20px;
    margin-bottom: 0;
    color: var(--color-red);
}

.footer .footer_box .title_img .title_footer {
    font-family: var(--font-family-RobotoBold);
    font-size: 20px;
    margin-bottom: 0;
}

.footer .footer_box p {
    margin-bottom: 0.5rem;
    position: relative;
}

.footer .footer_box .footer_menu ul.menu li {
    padding-bottom: 5px;
}

.footer .footer_box .footer_menu ul.menu li a {
    display: block;
}

.footer .footer_box .footer_menu ul.menu li a:hover {
    color: var(--color-red);
}

.footer .footer_box .footer_menu .address:before {
    content: "\f3c5";
    font-family: "Font Awesome 5 Pro";
    font-size: 15px;
    position: absolute;
    top: 3px
}

.footer .footer_box .footer_menu .phone:before {
    content: "\f879";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 3px
}

.footer .footer_box .footer_menu .email:before {
    content: "\f0e0";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 3px
}

.footer .footer_box .footer_menu span {
    margin-left: 25px;
    display: block;
}

.footer .footer_box .footer-social ul {
    padding: 0;
    margin: 0;
}

.footer .footer_box .footer-social ul li {
    display: inline-block;
    background-color: transparent;
}

.footer .footer_box .footer-social ul li a {
    width: 30px;
    height: 30px;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    background-color: #5d6d8c;
    margin-bottom: 10px;
    opacity: 0.8;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    z-index: 8888;
    position: relative;
}

.footer .footer_box .footer-social ul li:hover a {
    opacity: 1;
}

.footer .footer_box .footer-social ul li a i {
    font-size: 20px;
}

.footer .footer_copyright {
    background-color: #d9d9d9;
    padding: 20px 0px;
    text-align: center;
}

.footer .footer_copyright p {
    margin-bottom: 0;
}

/*----------------------------------BACK TO TOP---------------------------------*/
#back-top a {
    width: 45px;
    height: 45px;
    right: 20px;
    bottom: 20px;
    position: fixed;
    padding-top: 10px;
    display: block;
    text-align: center;
    color: #FFF;
    background-color: #5D5D5D;
    border-radius: 50%;
    z-index: 9999;
    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: var(--color-red);
    opacity: 1;
    filter: alpha(opacity=1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*--------------------------------END BACK TO TOP-------------------------------*/

.flex_center {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 30px;
}

.flex_space {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.content_center {
    justify-content: center
}

/*-------------NAVIGATION -------------*/
.nav-header span + span {
    margin-top: 4px;
}

.nav-dtu {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: block;
    overflow-x: visible;
    position: relative;
}

.navigation-dtu {
    z-index: 9996;
}

    .navigation-dtu .text-keyword {
        position: absolute;
        top: 11px;
        right: 233px;
        width: 150px;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        overflow-x: hidden;
        overflow-y: auto;
        opacity: 0;
        z-index: -100;
    }

    .navigation-dtu .text-keyword-width {
        z-index: 100;
        opacity: 1;
        width: 50%;
    }

    .navigation-dtu .text-keyword-close {
        width: 150px;
        z-index: -100;
        opacity: 0;
    }

    .navigation-dtu .text-keyword input {
        width: 100%;
        background-color: #fff;
        border: 1px solid #fff;
    }

    .navigation-dtu .text-keyword .searchform-submit {
        box-shadow: none;
        border: 0;
        border-radius: 0;
        background-color: #fff;
        position: absolute;
        top: 0;
        right: 25px;
        margin: 0;
        padding: 0 5px;
        height: 100%;
    }

    .navigation-dtu .text-keyword .searchform-close {
        box-shadow: none;
        border: 0;
        border-radius: 0;
        background-color: #fff;
        position: absolute;
        top: 0;
        right: 5px;
        margin: 0;
        padding: 0 5px;
        height: 100%;
        border-left: #c3c3c3 solid 1px;
    }

.hide-mobile .nav-dtu {
    /*display: block;*/
}

.nav-dtu > li {
    position: relative;
    display: inline-block;
    text-align: center;
    float: left;
    padding: 2px 15px;
    border-right: 1px solid #b2b2b2;
    text-transform: uppercase;
    color: #fff
}

    .nav-dtu > li:first-child {
        padding-left: 0;
    }

    .nav-dtu > li:last-child {
        border-right: none;
    }
/*menu con*/
.primary-navigation__rectangle {
    background-color: #b00;
    content: '';
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    visibility: hidden;
    bottom: -1.25rem;
    display: block;
    height: .625rem;
    left: 0;
    position: absolute;
    width: 100%;
}

.primary-navigation__dropdown-menu-container {
    background-color: #fff;
    opacity: 0;
    -webkit-transform: translateY(-1rem);
    -ms-transform: translateY(-1rem);
    transform: translateY(-1rem);
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    visibility: hidden;
    display: block !important;
    margin-top: 10px;
    padding: 20px;
    left: 0;
    position: absolute;
    top: 100%;
    width: 250px;
    z-index: 200;
}

    .primary-navigation__dropdown-menu-container ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

.primary-navigation__dropdown-menu .primary-navigation__dropdown-menu-list-item {
    line-height: 1;
    margin-bottom: 12px;
    width: 100%;
    display: inline-block;
    text-align: left;
    text-transform: none;
}

    .primary-navigation__dropdown-menu .primary-navigation__dropdown-menu-list-item:last-child {
        margin-bottom: 0;
    }

    .primary-navigation__dropdown-menu .primary-navigation__dropdown-menu-list-item a {
        width: 100%;
        display: inline-block;
        text-align: left;
        text-transform: none;
        font-family: "Roboto Regular", Helvetica Neue, Helvetica, Arial, sans-serif !important;
        color: #333;
    }

.primary-navigation__dropdown-menu-link:hover, .primary-navigation__dropdown-menu-link:focus, .primary-navigation__dropdown-menu-link:active {
    color: #b00;
}

    .primary-navigation__dropdown-menu-link:hover:after, .primary-navigation__dropdown-menu-link:focus:after, .primary-navigation__dropdown-menu-link:active:after {
        background: transparent;
        opacity: 1;
    }

.nav-dtu li:hover .primary-navigation__dropdown-menu-container {
    opacity: 0.95;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
}
/*menu con*/
.nav-dtu li a {
    padding: 0;
    line-height: 20px;
    color: #fff;
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-family: "Roboto Bold", Helvetica Neue, Helvetica, Arial, sans-serif !important;
}

    .nav-dtu li a:hover, .nav-dtu li a:focus, .nav-dtu li.active a {
        color: #c61330;
    }

.nav-dtu li.no-border-right {
    border-right: none;
}

.nav-dtu .find-conf {
    background: url('../images/find-ico.png') no-repeat left center;
    padding: 8px 10px;
}

.nav-dtu li.no-padding-left {
    padding-left: 0;
}

.nav-dtu li.no-padding-left {
    padding-left: 0;
}

.nav-dtu li.sign-in {
    padding-right: 4px;
}

.nav-dtu .sign-in-up {
    background-color: #c7383e;
    border-radius: 5px;
    border: none;
    padding: 8px 15px;
}

    .nav-dtu .sign-in-up:hover {
        color: #333;
    }

.nav-header {
    display: none;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 34px;
    height: 34px;
    font-size: 0;
    text-indent: -9996px;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    /*border: #ff0000 solid 1px;*/
}

.toggle-switch span::before, .toggle-switch span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: #888;
    content: "";
}

.toggle-switch span::before {
    top: -11px;
}

.toggle-switch span::after {
    bottom: -11px;
}

.toggle-switch span {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 0;
    height: 6px;
    background: #888;
    width: 100%;
}

.toggle-switch span {
    -webkit-transition: background 0s 0.3s;
    transition: background 0s 0.3s;
}

    .toggle-switch span::before,
    .toggle-switch span::after {
        -webkit-transition-duration: 0.3s, 0.3s;
        transition-duration: 0.3s, 0.3s;
        -webkit-transition-delay: 0.3s, 0s;
        transition-delay: 0.3s, 0s;
    }

    .toggle-switch span::before {
        -webkit-transition-property: top, -webkit-transform;
        transition-property: top, transform;
    }

    .toggle-switch span::after {
        -webkit-transition-property: bottom, -webkit-transform;
        transition-property: bottom, transform;
    }

.toggle-switch.active-animate span {
    background: none;
}

    .toggle-switch.active-animate span::before {
        top: 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .toggle-switch.active-animate span::after {
        bottom: 0;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .toggle-switch.active-animate span::before,
    .toggle-switch.active-animate span::after {
        -webkit-transition-delay: 0s, 0.3s;
        transition-delay: 0s, 0.3s;
    }
.sitemap-mission {
    padding: 34px 0;
}

    .sitemap-mission .logo_dtu {
        /*height: 45px;*/
    }

    .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 ul.char_site_map li a:hover {
                    color: #ffb13c;
                }

    .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: normal normal normal 14px/1 FontAwesome;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 27px;
            width: 42px;
            height: 60px;
            display: block;
            /*background: url(../images/quote-left.jpg) top left no-repeat;*/
        }

        .sitemap-mission .block_quote:after {
            content: '\f10e';
            color: #999;
            font: normal normal normal 14px/1 FontAwesome;
            position: absolute;
            right: -15px;
            bottom: -25px;
            font-size: 27px;
            width: 42px;
            height: 60px;
            display: block;
            /*background: url(../images/quote-right.jpg) bottom right no-repeat;*/
        }
/*------Contact page-------*/
.map-section {
    height: 300px;
    position: relative;
}

.contact-info-warp {
    position: absolute;
    width: 400px;
    height: 100%;
    background: rgba(2, 0, 49, 0.8);
    text-align: center;
    z-index: 1;
    padding: 10px;
}

    .contact-info-warp .contact-info {
        margin-bottom: 20px;
    }

        .contact-info-warp .contact-info h4 {
            color: #fff;
            font-weight: 400;
            margin-bottom: 8px;
            font-size: 18px;
        }

        .contact-info-warp .contact-info p {
            color: #fff;
            margin-bottom: 0;
        }

.map-section .map {
    height: 100%;
}

.contact-form {
    background: #fff;
    margin-top: 50px;
}

    .contact-form .section-title {
        margin-bottom: 30px;
    }

.pb-0, .py-0 {
    padding-bottom: 0 !important;
}

.text-center {
    text-align: center !important;
}

.contact-form h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #111111;
    margin: 0;
    font-weight: 500;
    font-family: 'Roboto Regular', sans-serif;
}

.contact-form p.note {
    margin-bottom: 10px;
    text-align: center;
    font-size: 14px;
    color: #636363;
    line-height: 1.6;
}

.contact-form select,
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea,
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
    height: 37px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 10px;
    /*float: left;*/
    border: none;
    font-size: 14px;
    font-weight: normal;
    background: #edf4f6;
}

    .contact-form select:focus,
    .contact-form input[type=text]:focus,
    .contact-form input[type=email]:focus,
    .contact-form textarea:focus,
    .contact-form input[type=text]:focus,
    .contact-form input[type=email]:focus,
    .contact-form textarea:focus {
        border: none;
        border-bottom: 2px solid #d82a4e;
    }

.contact-form input[type=file],
.contact-form input[type=file] {
    display: none;
}

.contact-form textarea,
.contact-form textarea {
    padding-top: 23px;
    padding-bottom: 15px;
    height: 125px;
}

.contact-form .file-up-btn,
.contact-form .file-up-btn {
    display: block;
    background: #3e3e3e;
    color: #fff;
    max-width: 175px;
    padding: 13px 5px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 23px;
    clear: both;
    text-align: center;
    overflow: hidden;
}

.contact-form .site-btn {
    border: none;
    min-width: 150px;
    bottom: 0;
    padding: 15px 15px;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'Roboto Bold';
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    background-color: #ffb404;
    background-image: -webkit-linear-gradient(left,#ffb404 0%,#ECA500 50%,#ffb404 100%);
    background-image: linear-gradient(to right,#ffb404 0%,#ECA500 50%,#ffb404 100%);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    background-size: 200% 100%;
}

    .contact-form .site-btn:hover,
    .contact-form .site-btn:hover {
        color: #fff;
        background-color: #ECA500;
        border: none;
        background-position: 100% 0;
    }
/*------End Contact page-------*/
.pagination li a {
    margin-right: 10px;
    margin-bottom: 10px;
    color: #022438;
    border-radius: 4px;
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #428bca;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination li.active a {
    color: #fff;
    background-color: #AE151A;
}
.pagination > li > a.current,
.pagination > li.active > a:hover,
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus {
    color: #FFF;
    background-color: #AE151A;
}
academic-program, .admission, .news-research {
    padding: 34px 0;
}

.section-title {
    text-transform: uppercase;
    font-size: 30px;
    font-family: "Roboto Bold", Helvetica Neue, Helvetica, Arial, sans-serif !important;
    margin-top: 0;
    padding-bottom: 5px;
    position: relative;
    margin-bottom: 35px;
}

    .section-title:before {
        content: " ";
        width: 50px;
        padding: 5px;
        border-bottom: #a62823 solid 3px;
        position: absolute;
        bottom: 0;
     
    }

.doitac:after {
    content: "\f2b5";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 40px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: -100px;
    left: 46%;
    background: #e9ebeb;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    padding-top: 25px;
}

.section-title.slash100per:before {
    width: 100%;
}

.short-cont-cate {
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: #f3f1f1 solid 1px;
    padding-bottom: 20px;
    line-height: 22px;
}

.list-item-pro .section-title {
    font-size: 25px;
    text-transform: uppercase;
    color: #333;
    font-family: "Roboto Bold", Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: normal;
}

    .list-item-pro .section-title:before {
        border-bottom: #a62823 solid 1px;
        color: #333;
    }

.list-item-pro .list-item {
    /*border-bottom: #f3f1f1 solid 1px;*/
    margin-bottom: 20px;
}

    .list-item-pro .list-item .item {
        background-color: #fff;
        margin-bottom: 20px;
    }

        .list-item-pro .list-item .item .box {
            padding: 10px 0;
            margin-top:10px;
        }

        .list-item-pro .list-item .item .short-cont {
            margin: 0px 0 0 0;
        }

        .list-item-pro .list-item .item img {
            /*max-width: 274px;*/
            width: 100%;
        }

        .list-item-pro .list-item .item .box h3 {
            line-height: 19px;
            margin-bottom: 5px;
        }

            .list-item-pro .list-item .item .box h3 a {
                color: #00473f;
                font-size: 16px;
                font-family: "Roboto Bold", Helvetica Neue, Helvetica, Arial, sans-serif;
                text-transform: uppercase;
            }
                .list-item-pro .list-item .item .box h3 a:hover {
                    color: #c7383e !important;
                    transition: all 300ms ease-in-out 0s;
                    -webkit-transition: all 300ms ease-in-out 0s;
                }

.list-item-pro .adm .item img {
    margin-right: 25px;
    margin-bottom:15px;
}

.list-item-pro .adm .item .short-cont {
    margin: 15px 0;
}

.list-item-pro .adm .item .more-detail a {
    text-transform: uppercase;
}

.date {
    font-size: 12px;
    color: #d8d6d6
}

    .date i {
        font-size: 11px;
        color: #d8d6d6;
        margin-right: 3px;
    }

.paging {
    padding-bottom: 20px;
    text-align: center;
}

.pagination li {
    display: inline-block;
}

    .pagination li a.disable {
        color: #000;
        background-color: #fff;
    }

    .pagination li a {
        margin-right: 10px;
        margin-bottom: 10px;
        color: #022438;
        border-radius: 4px;
        position: relative;
        float: left;
        padding: 6px 12px;
        margin-left: -1px;
        line-height: 1.42857143;
        color: #428bca;
        text-decoration: none;
        background-color: #fff;
        border: 1px solid #ddd;
    }

.pagination > li > a.current,
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus {
    color: #FFF;
    background-color: #AE151A;
}
/*************************/
.academic-program .item {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

    .academic-program .item img {
        max-width: 216px;
        width: 100%;
        float: left;
        z-index: 9991;
        position: relative;
    }

    .academic-program .item .box {
        background-color: #fff;
        padding: 20px;
        margin-left: 170px;
    }

        .academic-program .item .box h3 {
            line-height: 22px;
            background-color: #a62823;
            width: 100%;
            padding: 10px;
            z-index: 9999;
            position: relative;
        }

            .academic-program .item .box h3 a {
                color: #fff;
                font-size: 20px;
                font-family: "Roboto Bold", Helvetica Neue, Helvetica, Arial, sans-serif;
                text-transform: uppercase;
            }

        .academic-program .item .box .short-cont {
            color: #333;
            margin: 15px 0px 20px 50px;
        }

        .academic-program .item .box .list-detail {
            /*margin: 15px 0px 20px 50px;*/
            margin: 15px 0px 20px 10px;
            display: inline-block;
        }

            .academic-program .item .box .list-detail ul, .academic-program .item .box .list-detail ul li {
                margin: 0;
                padding: 0;
                list-style: none;
            }

                .academic-program .item .box .list-detail ul li {
                    position: relative;
                    padding-left: 18px;
                    margin-bottom: 15px;
                }

                    .academic-program .item .box .list-detail ul li a {
                        font-size: 15px;
                        font-family: "Roboto Bold", Helvetica Neue, Helvetica, Arial, sans-serif;
                        font-weight: normal;
                        text-transform: uppercase;
                    }

                    .academic-program .item .box .list-detail ul li:before {
                        content: "\f111"; /**/
                        position: absolute;
                        top: 7px;
                        left: 0px;
                        color: #a62823;
                        display: inline-block;
                        font: normal normal normal 7px/1 FontAwesome;
                        text-rendering: auto;
                        -webkit-font-smoothing: antialiased;
                    }
/**********************************/

.alumni-blog .box_title {
    display: block;
    text-align: center;
    margin-bottom: 28px;
}

    .alumni-blog .box_title .title_name {
        margin-bottom: 0;
    }

    .alumni-blog .box_title .view_all {
        border: 1px solid #D9D9D9;
        border-radius: 5px;
        padding: 8px 30px;
        display: flex;
        align-items: center;
        font-family: var(--font-family-MontserratBold);
        color: #333333;
        background-color: #FFFFFF;
    }

        .alumni-blog .box_title .view_all::after {
            content: '\f105';
            display: inline-block;
            font-family: "Font Awesome 5 Pro";
            padding-left: 8px;
            line-height: 1;
            font-size: 16px;
        }

.alumni-blog {
    background-color: #F8F8F8;
    padding-bottom: 80px;
}

    .alumni-blog .box_item {
        background-color: #FFFFFF;
        border-radius: 10px;
        display: flex;
        gap: 20px;
        padding: 20px;
        margin-bottom: 25px;
    }
        /* 1107 */
        .alumni-blog .box_item .box_img {
            width: 195px;
            height: 130px;
            margin-right: 20px;
        }

            .alumni-blog .box_item .box_img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 5px;
            }

        .alumni-blog .box_item .box_content {
            width: calc(100% - 215px);
            padding: 5px 0;
        }

            .alumni-blog .box_item .box_content .blog_date {
                font-family: var(--font-family-MontserratRegular);
                font-size: 14px;
                color: #767676;
                margin-bottom: 10px;
            }

            .alumni-blog .box_item .box_content .blog_title {
                font-family: var(--font-family-MontserratBold);
                font-size: 16px;
                margin-bottom: 12px;
                line-height: 1.5;
            }

            .alumni-blog .box_item .box_content .bx_name {
                display: flex;
                align-items: center;
                gap: 12px;
            }

                .alumni-blog .box_item .box_content .bx_name img {
                    width: 30px;
                    height: 30px;
                    object-fit: cover;
                    border-radius: 50%;
                }

                .alumni-blog .box_item .box_content .bx_name .blog_name {
                    font-family: var(--font-family-MontserratMedium);
                    font-size: 15px;
                    color: #767676;
                    margin-bottom: 0;
                }

    .alumni-blog .owl-theme .owl-dots .owl-dot.active span,
    .alumni-blog .owl-theme .owl-dots .owl-dot:hover span {
        background-color: #A9161C;
    }

.owl-carousel .owl-item img {
    display: block !important;
    max-width: 100%;
}


.header-logo .logo_menu .logo-dtu {
    flex: 1;
    text-align: left;
}

.header-logo .logo_menu .logo-dept {
    flex: 1;
    text-align: right;
}

.header-logo .logo-dtu img,
.header-logo .logo-dept img {
    max-height: 80px;
    width: auto;
}

.header-logo .header_title {
    text-align: center;
}


/*Nhân Sự*/
.content-project .box-title-header .title-header {
    font-family: var(--font-family-RobotoBold);
    font-size: 30px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    padding: 40px 0 40px 0;
}

    .content-project .box-title-header .title-header > a:hover {
        color: #ffb13b;
    }

.bg_team {
    background-color:#a9161c;
    padding-bottom: 40px;
}

    .bg_team .box-team {
        padding: 20px;
        text-align: center;
        background-color: #FFFFFF;
    }

.content-project .box-team .title_team {
    padding-bottom: 5px;
    margin: 0;
}

    .content-project .box-team .title_team a {
        font-family: var(--font-family-RobotoBold);
        font-size: 20px;
        line-height: 1.3;
        display: block;
    }

.content-project .box-team .title_project:hover a {
    color: var(--color-hover);
}

.content-project .box-team .position {
    margin-bottom: 0;
    color: var(--color-bg-blue);
}

.bg_team .box_more {
    margin-top: 20px;
}

.content-project .box-team .title_team a:hover {
    color: #ffb13b;
}

.bg_team .item img {
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}

.bg_team .item:hover .box-team {
    border-bottom: 3px solid var(--color-bg-blue);
}

.content-project .owl-controls {
    margin-top: 0;
}

.content-project .owl-nav {
    position: absolute;
    width: 100%;
    top: 30%;
}

.content-project .owl-theme .owl-controls .owl-nav [class*='owl-'] {
    position: absolute;
    background: none;
    cursor: pointer;
    display: block;
    z-index: 10000;
    border: 1px solid #fff;
    padding: 12px;
    width: 48px;
    height: 48px;
    border-radius: 5px;
}

.content-project .owl-theme .owl-controls .owl-nav .owl-prev {
    left: -80px;
    display: block !important;
}

    .content-project .owl-theme .owl-controls .owl-nav .owl-prev i {
        color: var(--color-bg-blue);
        font-size: 22px;
        font-weight: normal;
    }

.content-project .owl-theme .owl-controls .owl-nav .owl-next {
    right: -80px;
    display: block !important;
}

    .content-project .owl-theme .owl-controls .owl-nav .owl-next i {
        color: var(--color-bg-blue);
        font-size: 22px;
        font-weight: normal;
    }

    .content-project .owl-theme .owl-controls .owl-nav .owl-prev:hover,
    .content-project .owl-theme .owl-controls .owl-nav .owl-next:hover {
        background-color: #fff;
    }

.content-project .owl-theme .owl-controls .owl-nav [class*='owl-']:hover i {
    color: #ffb13b !important;
}