﻿body {
    font-family: "Roboto Regular", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
}

a,
p,
li {
    color: #000000;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: unset;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

:root {
    --color-main: #000000;
    --color-white: #ffffff;
    --color-menu: #257CA9;
    --color-note: #767676;
    --font-family-RobotoBold: "Roboto Bold";
    --font-family-RobotoRegular: "Roboto Regular";
    --font-family-RobotoItalic: "Roboto Italic";
    --font-family-RobotoMedium: "Roboto Medium";
}

/* form */
.form-group label {
    color: #767676;
    padding-bottom: 8px;
}

input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"],
textarea {
    display: table-cell;
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    padding: 10px 20px;
}

input:disabled,
textarea:disabled {
    background-color: #f4f4f4;
}

input[type="text"]:not(:disabled):hover,
input[type="password"]:not(:disabled):hover,
input[type="number"]:not(:disabled):hover,
input[type="date"]:not(:disabled):hover,
textarea:not(:disabled):hover {
    border-color: #257CA9;
}

input[type="text"]:active:not(:disabled),
input[type="password"]:active:not(:disabled),
input[type="number"]:active:not(:disabled),
input[type="date"]:active:not(:disabled),
textarea:active:not(:disabled) {
    border-color: #257CA9;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: #257CA9;
}

input::placeholder {
    color: #767676;
}

textarea::placeholder {
    color: #767676;
}

input[type=checkbox] {
    height: 15px;
    width: 15px;
    vertical-align: middle;
    margin: 0;
    border: 1px solid #257CA9;
    -webkit-appearance: none;
    -webkit-transition: box-shadow 200ms;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    margin-bottom: 2px;
}

input[type="checkbox"]:not(:disabled):hover {
    border-color: #257CA9;
}

input[type="checkbox"]:active:not(:disabled) {
    border-color: #257CA9;
}

input[type="checkbox"]:focus {
    outline: none;
}

input[type="checkbox"]:checked {
    border-color: #257CA9;
    background-color: #257CA9;
}

input[type="checkbox"]:checked:before {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 4px;
    margin-top: 1px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: table-cell;
    width: 100%;
    font-family: var(--font-family-MontserratRegular);
    background-color: #ffffff;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 7px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    margin-right: 2rem;
    padding: 10px 20px;
}

select:not(:disabled):hover {
    border-color: #257CA9;
}

select:active:not(:disabled) {
    border-color: #257CA9;
}

select:focus {
    outline: none;
    border-color: #257CA9;
}

select:disabled {
    background-color: #f4f4f4;
}

/* end form */
/*----------------------------------BACK TO TOP---------------------------------*/
#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: var(--color-menu);
    opacity: 1;
    filter: alpha(opacity=1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*--------------------------------END BACK TO TOP-------------------------------*/

.header-top {
    background-color: #257CA9;
    height: 46px;
}

.header-top .hd-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 46px;
}

.header-top .hd_contact {
    display: flex;
    align-items: center;
    position: relative;
}

.header-top .hd_contact p {
    color: var(--color-white);
    margin-bottom: 0;
    padding-right: 50px;
    position: relative;
    line-height: 22px;
}

.header-top .hd_contact p.phone:before {
    content: url(../images/icon_phone.png);
    position: absolute;
    top: 3px
}

.header-top .hd_contact p.email:before {
    content: url(../images/icon_email.png);
    position: absolute;
    top: 2px
}

.header-top .hd_contact p span {
    margin-left: 25px;
    display: block;
}

.header-top .register {
    display: block;
}

.header-top .register a {
    color: var(--color-white);
    font-size: 16px;
    font-family: var(--font-family-RobotoMedium);
    display: flex;
    align-items: center;
}

.header-top .register a:hover {
    text-decoration: underline;
}

.header-top .register a::before {
    content: url(../images/icon_login.png);
    padding-right: 8px;
    line-height: 1;
}

.header-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-navigation {
    z-index: 9996;
}

.no-scroll {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.navigation {
    z-index: 9996;
    position: relative;
}

.navigation .nav-menu>li {
    position: relative;
    display: inline-block;
    text-align: center;
    float: left;
}

.navigation .nav-menu li a {
    line-height: 22px;
    display: block;
    font-family: var(--font-family-RobotoMedium);
    font-size: 17px;
    color: #333333;
    padding: 34px 16px;
}

.navigation .nav-menu li:last-child a {
    padding-right: 0;
}

.navigation .nav-menu li:hover>a {
    color: #257CA9;
}

.navigation .nav-menu li a:hover,
.navigation .nav-menu li a:focus,
.navigation .nav-menu li.active a {
    color: #257CA9;
}

.nav-menu-child {
    width: 250px;
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 200;
    padding-top: 15px;
    background-color: #257CA9;
}

.navigation .nav-menu li .nav-menu-child li {
    text-align: left;
    width: 100%;

}

.navigation .nav-menu li .nav-menu-child li:last-child {
    border-bottom: none
}

.navigation .nav-menu li .nav-menu-child li a {
    padding: 15px 16px;
    transition: all 0.3s ease-in-out;
    border-top: none;
    font-size: 15px;
    text-transform: inherit;
    line-height: 18px;
    color: var(--color-white);
}

.navigation .nav-menu li .nav-menu-child li a:hover {
    background: #1392C8;
}

.navigation .nav-menu li:hover ul.nav-menu-child {
    display: block;
}


.nav-toggle {
    height: 30px;
    width: 32px;
    position: absolute;
    top: -15px;
    right: 0;
    cursor: pointer;
    display: none;
}

.nav-toggle i {
    line-height: 30px;
    cursor: pointer;
    font-size: 30px;
}

.navigation-portrait .nav-toggle {
    display: block;
}

.navigation-portrait .nav-menus-wrapper {
    width: 320px;
    height: 100%;
    top: 0;
    right: -400px;
    position: fixed;
    background-color: #fff;
    z-index: 20000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition-duration: .8s;
    transition-timing-function: ease;
}

.nav-menus-wrapper.nav-menus-wrapper-open {
    right: 0;
}

.nav-menus-wrapper-close-button {
    width: 26px;
    height: 26px;
    margin: 20px 20px 15px 15px;
    display: none;
    float: right;
    font-size: 26px;
    cursor: pointer;
    font-weight: bold;
}

.navigation-portrait .nav-menus-wrapper-close-button {
    display: block;
}

/* .navigation-portrait .nav-menu li a:hover, .navigation-portrait .nav-menu li a:focus, .navigation-portrait .nav-menu li.active a {
    opacity: 0.9;
    color: var(--color-white);
} */

.navigation-portrait .nav-menu {
    width: 100%
}

.navigation-portrait .nav-menu>li {
    width: 100%;
    position: relative;
    text-align: left;
    padding: 0;
}

.navigation-portrait .nav-menu li a {
    padding: 15px 30px;
}

.navigation-portrait .nav-menu li a:hover,
.navigation-portrait .nav-menu li a:focus,
.navigation-portrait .nav-menu li.active a {
    color: var(--color-menu);
}

.submenu-indicator {
    display: none;
}

.navigation-portrait .submenu-indicator {
    margin-left: 10px;
    transition: all .3s;
    display: inline-block;
}

.submenu-indicator-chevron::after {
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
    font-size: 13px;
}

.navigation-portrait .submenu-indicator.submenu-indicator-up {
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.navigation-portrait .nav-menu li .nav-menu-child {
    width: 100%;
    position: static;
    padding: 0;
    background-color: var(--color-white);
}

.navigation-portrait .nav-menu li .nav-menu-child li a {
    padding: 15px 30px 15px 50px;
    color: #333333;
}

.navigation,
.navigation * {
    -webkit-tap-highlight-color: transparent
}


.banner-session .item {
    min-height: 570px;
    background-size: cover !important;
    background-position-x: center !important;
    background-position-y: top !important;
}

.banner-session .banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.bg_banner .banner-content {
    min-height: 570px;
}

.bg_detail {
    background-color: #257CA9;
    min-height: 194px;
}

.bg_detail .banner-content {
    min-height: 194px;
}

.banner-session .banner-content .banner-title {
    font-family: var(--font-family-RobotoBold);
    font-size: 50px;
    line-height: 1.2;
    color: var(--color-white);
    padding-bottom: 20px;
    margin: 0;
}

.banner-session .banner-content .banner-short {
    padding-bottom: 20px;
    width: 70%;
}

.banner-session .banner-content .banner-short p {
    font-size: 20px;
    line-height: 25px;
    color: var(--color-white);
    margin: 0;
    padding-bottom: 7px;
}

.banner-session .banner-content a.view-more {
    display: inline-block;
    background-color: #38B6FF;
    color: var(--color-white);
    font-size: 16px;
    padding: 18px 50px;
    border-radius: 10px;
    margin-bottom:20px;
}

.banner-session .banner-content a.view-more:hover {
    background-color: var(--color-white);
    color: #38B6FF;
}

.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%;
}

.box-title-header {
    text-align: center;
    margin-bottom: 40px;
}

.title-header {
    font-family: var(--font-family-RobotoBold);
    font-size: 36px;
    margin: 0;
    color: #333333;
}

.title-header a {
    color: #333333;
}

.item_img {
    width: 100%;
    height:300px;
    object-fit:cover;
}
.content_info {
    margin-top: 30px;
}
.content-about {
    margin-top: 70px;
    margin-bottom: 80px;
}

.content-about .box_about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 100px;
}

.content-about .box_about .item_about {
    width: 50%;
}

.content-about .box_about .item_about img {
    width: 100%;
}

.content-about .box_about .al_right {
    text-align: right;
}

.content-about .box_about .al_left {
    text-align: left;
}

.content-about .about-short {
    margin-top: 22px;
    font-size: 18px;
}

.content-boxlink {
    margin: 70px 0;
}

.content-boxlink .box-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 35px;
    width: 100%;
    height: 105px;
    border-radius: 10px;
}

.content-boxlink .box-link::after {
    line-height: 1;
    position: absolute;
    right: 20px;
    bottom: -2px;
}

.content-boxlink .box-link.exam {
    background-color: #EDF2FF;
}

.content-boxlink .box-link.exam::after {
    content: url(../images/bg_exam.png);
}

.content-boxlink .box-link.schedule {
    background-color: #FFE5E9;
}

.content-boxlink .box-link.schedule::after {
    content: url(../images/bg_schedule.png);
}

.content-boxlink .box-link.search {
    background-color: #D3F2FF;
}

.content-boxlink .box-link.search::after {
    content: url(../images/bg_search.png);
}

.content-boxlink .box-link a {
    font-family: var(--font-family-RobotoBold);
    color: #333333;
    font-size: 25px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 105px;
}

.content-boxlink .box-link.exam a::before {
    content: url(../images/icon_exam.png);
    padding-right: 5px;
    height: 26px;
    line-height: 1;
}

.content-boxlink .box-link.schedule a::before {
    content: url(../images/icon_schedule.png);
    padding-right: 5px;
    height: 26px;
    line-height: 1;
}

.content-boxlink .box-link.search a::before {
    content: url(../images/icon_search.png);
    padding-right: 5px;
    height: 26px;
    line-height: 1;
}

.content-news {
    padding-top: 50px;
    padding-bottom: 60px;
    background-color: #F8F8F8;
}

.content-news .title-header {
    font-size: 30px;
}

.content-news .box-news {
    padding: 22px 20px;
    background-color: #FFFFFF;
    margin-bottom: 20px;
}

.content-news .box-news .title_news {
    margin-bottom: 10px;
}

.content-news .box-news .title_news a {
    font-family: var(--font-family-RobotoBold);
    color: #257CA9;
    font-size: 18px;
    line-height: 1.3;
    display: block;
}

.content-news .box-news .title_news:hover a {
    color: #1392C8;
}

.content-news .box-news p {
    margin-bottom: 10px;
}
    .content-news .box-news .short {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
.content-news .box-news .date_time {
    color: var(--color-note);
    font-family: var(--font-family-RobotoMedium);
    font-size: 14px;
}

.content-news .view_more {
    text-align: center;
    margin-top: 30px;
}

.content-news .view_more a {
    display: inline-block;
    color: #257CA9;
    font-size: 16px;
    border: 2px solid #257CA9;
    border-radius: 10px;
    padding: 16px 50px;
    line-height: 1;
}

.content-news .view_more a:hover {
    background-color: #257CA9;
    color: #FFFFFF;
}

.content-contact {
    padding: 70px 0;
    background-color: #257CA9;
}

.content-contact .contact_item {
    display: flex;
    align-items: center;
}

.content-contact .contact_item.address::before {
    content: url(../images/icon_address.png);
    margin-right: 15px;
}

.content-contact .contact_item.info::before {
    content: url(../images/icon_contact.png);
    margin-right: 15px;
}

.content-contact .contact_item.time::before {
    content: url(../images/icon_time.png);
    margin-right: 15px;
}

.content-contact .contact_item .contact_info p {
    margin-bottom: 0;
    color: #FFFFFF;
}

.content-contact .contact_item .contact_info p.contact_name {
    font-size: 18px;
    font-family: var(--font-family-RobotoBold);
    margin-bottom: 5px;
}


.footer-session {
    margin-top: 50px;
}

.footer-session .footer-box {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 60px;
}

.footer-session .footer-box .footer-info p.footer-title {
    font-family: var(--font-family-RobotoBold);
    font-size: 20px;
    margin-bottom: 25px;
    color: #333333;
}

.footer-session .footer-box .footer-info img {
    max-width: 80%;
    margin-bottom:25px;
}

.footer-session .footer-box .footer-social {
    padding-top: 25px;
}

.footer-session .footer-box .footer-social li {
    display: inline-block;
    padding-right: 8px;
}

.footer-session .footer-box .footer-social li:last-child {
    padding-right: 0;
}

.footer-session .footer-box .footer-social li a {
    width: 35px;
    height: 35px;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    display: flex;
    color: #D9D9D9;
    justify-content: center;
    align-items: center;
    -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-session .footer-box .footer-social li:hover a {
    border: 1px solid #38B6FF;
    background-color: #38B6FF;
    color: #FFFFFF;
}

.footer-session .footer-box .footer-social li a i {
    font-size: 20px;
}

.footer-session .footer-box .footer_menu {}

.footer-session .footer-box .footer_menu li {
    padding-bottom: 10px;
}

.footer-session .footer-box .footer_menu li a {
    color: #333333;
}

.footer-session .footer-box .footer_menu li a:hover {
    color: #38B6FF;
}

.footer-session .footer-box .footer_link img {
    margin-bottom: 10px;
    max-width: 100%;
}

.footer-session .footer_copyright {
    padding: 25px 0;
    text-align: center;
}

.footer-session .footer_copyright p {
    margin-bottom: 0;
    color: #333333;
    font-size: 16px;
    line-height: 25px;
}

.content_repo {
    width: 100%;
    position: relative;
    height: auto;
}

.content_repo .ovelay_menu {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 8888;
}

.bg_detail .banner-content .banner-title {
    font-size: 40px;
    padding-bottom: 15px;
}

.bg_detail .bread_crumb>li {
    display: inline-block;
    font-family: var(--font-family-RobotoMedium);
    color: #FFFFFF;
    font-size: 15px;
    /* text-transform: uppercase; */
}

.bg_detail .bread_crumb li a {
    color: #FFFFFF;

}

.bg_detail .bread_crumb>li+li:before {
    color: #FFFFFF;
    content: "/";
    padding: 0 5px;
}

.box-more {
    margin-top: 70px;
}

.paging-session {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.paging-session ul {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.paging-session ul li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    min-width: 38px;
    min-height: 38px;
    cursor: pointer;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    background-color: #FFFFFF;
}

    .paging-session ul li.active {
        background-color: #257CA9;
        cursor: not-allowed;
    }

.paging-session ul li a {
    font-family: var(--font-family-RobotoBold);
    font-size: 13px;
    color: #333333;
    display: inline-block;
}

.paging-session ul li.active span {
    color: #FFFFFF;
    cursor:not-allowed;
}

.paging-session ul li a i {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    height: 18px;
}

.paging-session ul li:hover {
    background-color: #257CA9;
}

.paging-session ul li:hover a {
    color: #FFFFFF;
}

.paging-session ul li.active a:hover {
    color: #FFFFFF;
}

.paging-session ul li:hover a i {
    color: #FFFFFF;
}

.content_login {
    margin-top: 70px;
    margin-bottom: 80px;
}
.content_login .title-header{
    font-size: 30px;
}

.content_login .line {
    display: inline-block;
    width: 75px;
    height: 2px;
    background-color: #257CA9;
}

.content_login .box_login {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content_login .box_login .tab {
    margin: 25px 0;
    border-bottom: 1px solid #D9D9D9;
    width: 400px;
    display: flex;
    align-items: center;
}

.content_login .box_login .tab_lg {
    font-size: 20px;
    display: inline-block;
    padding: 0 20px;
    margin: 0;
    cursor: pointer;
    text-align: center;
    padding-bottom: 10px;
    width: 50%;
}

.content_login .box_login .active_tab {
    color: #257CA9;
    border-bottom: 3px solid #257CA9;
    margin-bottom: -2px;
}

.content_login .box_login .tab_lg:hover {
    color: #257CA9;
    border-bottom: 3px solid #257CA9;
    margin-bottom: -2px;
}

.content_login .box_login .box_tab {
    display: none;
    width: 400px;
}

.content_login .box_login .box_tab:first-child {
    display: block;
}

.form-group {
    margin-bottom: 22px;
}

.content_login input[type="text"],
.content_login input[type="password"] {
    padding: 15px 20px;
}
.content_login .captcha {
    display:flex;
    gap:2px;
    align-items:end;
    margin-bottom:5px;
}
.content_login .captcha .img-captcha{
    width:250px;
}
    .content_login .captcha .img-captcha img{
        height:50px;
    }
.content_login .bbt_login {
    background-color: #257CA9;
    color: #FFFFFF;
    font-family: var(--font-family-RobotoBold);
    padding: 15px 25px;
    width: 100%;
    border: 0;
    border-radius: 30px;
}

.content_login .bbt_login:hover {
    background-color: #38B6FF;
}

.content-detail {
    margin-top: 60px;
}

.content-detail .title-header {
    font-size: 30px;
}

.content-detail .box_contact {
    margin-bottom: 60px;
}

.content-detail .box_content {
    padding-right: 50px;
}

.content-detail .content_form {
    margin-top: 60px;
}

.content-detail .content_form .group_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.content-detail .content_form .group_flex .item_group {
    width: 50%;
}

.content-detail .content_form .btt_send {
    background-color: #257CA9;
    color: #FFFFFF;
    font-family: var(--font-family-RobotoBold);
    padding: 15px 60px;
    border: 0;
    border-radius: 30px;
    font-size: 15px;
}

.content-detail .content_form .btt_send:hover {
    background-color: #38B6FF;
}

.content-detail .contact_info {
    margin-top: 60px;
}

.content-detail .contact_info .box_item {
    margin-bottom: 50px;
}

.content-detail .contact_info .box_item .title_right {
    color: #333333;
    font-size: 18px;
    font-family: var(--font-family-RobotoBold);
}

.content-detail .contact_info .box_item p {
    margin-bottom: 5px;
    color: #767676;
}

.content-detail .box_gallery {
    margin-bottom: 80px;
}
.content-detail .box_gallery .fiter_menu{
    display: none;
}
.content-detail .box_gallery .tab {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-detail .box_gallery .tab_lg {
    font-size: 25px;
    display: inline-block;
    padding: 0 40px;
    margin: 0;
    cursor: pointer;
    color: #767676;
    font-family: var(--font-family-RobotoBold);
}

.content-detail .box_gallery .active_tab {
    color: #257CA9;
}

.content-detail .box_gallery .tab_lg:hover {
    color: #257CA9;
}

.content-detail .box_gallery .box_tab {
    display: none;
    margin-top: 50px;
}

.content-detail .box_gallery .box_tab:first-child {
    display: block;
}

.content-detail .box_gallery .gl_item {
    position: relative;
    cursor: pointer;
    margin-bottom: 25px;
}

.content-detail .box_gallery .gl_item a.view_more .box_view_more {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.35;
    background: #000;
}

.content-detail .box_gallery .gl_item a.view_more {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.content-detail .box_gallery .gl_item a.view_more:hover .box_view_more {
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 20;
}

.content-detail .box_gallery .tab_mobile {
    display: none;
}

.content-news .news-detail .date_time {
    color: #767676;
    font-size: 14px;
    padding-top: 5px;
    margin-bottom: 20px;
}

.content-news .news-detail .content_info img {
    margin-top: 10px;
    margin-bottom: 20px;
    max-width: 100%;
}

.content-news .news-detail .content_info p {
    margin-bottom: 10px;
}

.content-news .news-detail .news_other .news_list {
    margin-top: 25px;
}

.content-news .news-detail .news_other .news_list .box_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.content-news .news-detail .news_other .news_list .box_item .img_news {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    margin: 0;
}

.content-news .news-detail .news_other .news_list .box_item .item_news {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-left: 15px;
}

   
.content-news .news-detail .news_other .news_list .box_item .item_news a {
    font-family: var(--font-family-RobotoBold);
    display: block;
    margin-bottom: 5px;
    line-height: 1.3;
    font-size: 16px;
}

.content-news .news-detail .news_other .news_list .box_item .item_news a:hover {
    color: #257CA9;
}

.content-news .news-detail .news_other .news_list .box_item .item_news .date {
    margin: 0;
    color: #767676;
    font-size: 14px;
}

    .content-news .news-detail .news_other .news_list .box_item .item_news_noimg {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
    }
        .content-news .news-detail .news_other .news_list .box_item .item_news_noimg a {
            font-family: var(--font-family-RobotoBold);
            display: block;
            margin-bottom: 5px;
            line-height: 1.3;
            font-size: 16px;
        }

            .content-news .news-detail .news_other .news_list .box_item .item_news_noimg a:hover {
                color: #257CA9;
            }

        .content-news .news-detail .news_other .news_list .box_item .item_news_noimg .date {
            margin: 0;
            color: #767676;
            font-size: 14px;
        }
.content-news .news-detail .box_tags {
    margin-top: 50px;
}

.content-news .news-detail .box_tags .tags {
    margin-top: 25px;
}

.content-news .news-detail .box_tags .tags a {
    border: 1px solid #D9D9D9;
    color: #333333;
    padding: 10px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 13px;
}

.content-news .news-detail .box_tags .tags a:hover {
   background-color: #38B6FF;
   color: #FFFFFF;
}
.content-news .news-detail .box_link ul.list_link {
    margin-top: 25px;
}
.content-news .news-detail .box_link ul.list_link li {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.content-news .news-detail .box_link ul.list_link li a{
   display: block;
   color: #333333;
   font-family: var(--font-family-RobotoBold);
   font-size: 16px;
   position: relative;
}
.content-news .news-detail .box_link ul.list_link li a:hover{
    color: #38B6FF;
}
.content-news .news-detail .box_link ul.list_link li a::after{
    content: '\f105';
    font-family: 'Font Awesome 5 Pro';
    padding-right: 10px;
    position: absolute;
    right: 0;
}
.content_login .box_form_search{
    width: 40%;
}
.content_login .box_form_search .bbt_search {
    background-color: #257CA9;
    color: #FFFFFF;
    font-family: var(--font-family-RobotoBold);
    padding: 15px 25px;
    width: 100%;
    border: 0;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content_login .box_form_search .bbt_search:hover {
    background-color: #38B6FF;
}
.content_login .box_form_search .bbt_search::before {
    content: url(../images/icon_search_wh.png);
    padding-right: 8px;
    line-height: 1;
}
.content_login .box_result{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.content_login .box_result .title-header {
    font-size: 25px;
}
.content_login .box_result .bxresult{
    width: 60%;
    display: table;
    border-collapse: collapse;
}
.content_login .box_result .bxresult .rs_row{
    display: table-row;
}
.content_login .box_result .bxresult .rs_row .rs_cell{
    display: table-cell;
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    padding: 16px 30px;
    font-family: var(--font-family-RobotoBold);
}
.content_login .box_result .bxresult .rs_row .rs_cell:first-child{
    width: 30%;
    color: #767676;
}
.content_login .box_result .bx_info p{
    color: #767676;
    font-size: 25px;
    font-family: var(--font-family-RobotoBold);
}
.header-top .box_log{
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-top .box_log .profile{
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}
.header-top .box_log .profile::before{
    content: url(../images/icon_user.png);
    padding-right: 10px;
    line-height: 1;
}
.header-top .box_log .logout {
    color: var(--color-white);
    font-size: 15px;
    font-family: var(--font-family-RobotoBold);
    border: 1px solid #FFFFFF;
    border-radius: 30px;
    padding: 6px 22px;
}
.box_register{
    margin-bottom: 80px;
}
.box_register .box_register_title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.box_register .box_register_title .res_title{
    font-family: var(--font-family-RobotoBold);
    font-size: 25px;
    color: #257CA9;
    margin-bottom: 0;
}
.box_register .box_register_title .res_add{
    padding: 10px 30px;
    cursor: pointer;
    background-color: #38B6FF;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    border-radius: 30px;
}
.box_register .box_register_title .res_add::before{
    content: "\f067";
    font-family: 'Font Awesome 5 Pro';
    padding-right: 10px;
}
.box_register .box_result{
    margin: 30px 0;
}
.box_register .box_result .box_no{
    display: flex;
    height: 100px;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid #D9D9D9;
}
.box_register .box_result .box_no p{
    margin-bottom: 0;
    color: #333333;
    display: flex;
    align-items: center;
}
.box_register .box_result .box_no p::before{
    content: url(../images/icon_info.png);
    padding-right: 10px;
}
.box_register .box_result .box_list{
    margin-bottom: 20px;
}
.box_register .box_result .box_list .tb_list{
    width: 100%;
}
.box_register .box_result .box_list .tb_list th, .box_register .box_result .box_list .tb_list td {
    border: 1px solid #D9D9D9;
    padding: 16px 20px;
    color: #333333;
    font-family: var(--font-family-RobotoBold);
}
.box_register .box_result .box_list .tb_list th {
    background-color: #F5F5F5;
    color: #767676;
    font-family: var(--font-family-RobotoMedium);
    font-weight: 500;
}
.box_register .box_register_form{
    margin: 30px 0;
    border: 1px solid #D9D9D9;
}
.box_register .box_register_form .bx_form{
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
}
.content-detail .box_register .box_register_form .btt_send{
    padding: 15px 30px;
    line-height: 1;
}
.content-detail .box_register .box_register_form .file_upload {
    border: 1px dashed #38B6FF;
    background-color: #EAF9FF;
    border-radius: 5px;
    position: relative;
}
.content-detail .box_register .box_register_form .file_upload .file_upload_input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}
.content-detail .box_register .box_register_form .file_upload .drag_text {
    text-align: center;
    padding: 30px;
}

.content-detail .box_register .box_register_form .file_upload .drag_text p {
    margin-bottom: 0;
    color: #333333;
    line-height: 1;
}
.content-detail .box_register .box_register_form .file_upload .drag_text .browser{
    margin-top: 15px;
}
.content-detail .box_register .box_register_form .file_upload .drag_text .browser span {
    font-family: var(--font-family-RobotoBold);
    color: #38B6FF;
    border-bottom: 1px solid #38B6FF;
}
.content-detail .box_register .box_register_form .file_upload .drag_text .file_title {
    display: none;
}
.content-detail .box_register .box_register_form .file_upload .drag_text img {
    margin-bottom: 10px;
}
.content-detail .box_register .box_register_form .bt_return {
    padding: 13px 50px;
    background-color: #D9D9D9;
    border-radius: 30px;
    font-family: var(--font-family-RobotoBold);
    color: #767676;
    line-height: 1;
    margin-left: 15px;
}






.modal.show .modal-dialog {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    position: fixed;
    max-width: inherit;
    width: 80%;
}

.modal-content .modal-header {
    display: block;
    padding: 38px;
    border-bottom: none;
}

.modal-content .modal-title {
    font-family: var(--font-family-RobotoBold);
    font-size: 25px;
    line-height: 29px;
    color: #1A2A49;
    text-align: center;
}

.modal-header .close {
    text-align: right;
}

.modal-header .close .fc-popup {
    font-size: 30px;
    cursor: pointer;
}

.modal-body {
    padding: 0;
}

.modal.show .modal-dialog .form-horizontal {
    padding: 0 50px;
}



.modal.show .modal-dialog .bt_box {
    margin-top: 10px;
    padding: 22px 50px 45px;
    text-align: end;
    margin: 0;
}

.modal.show .modal-dialog .bt_box .btt_submit {
    color: var(--color-white);
    background-color: #CA1C24;
    font-size: 16px;
    font-family: var(--font-family-RobotoBold);
    text-transform: uppercase;
    padding: 18px 36px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}


.slide_img img.small-preview {
    height: 150px;
    object-fit: cover;
}

.box-error {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.box-error .title_err {
    font-family: var(--font-family-RobotoBoldo);
    font-size: 44px;
    line-height: 52px;
    padding: 10px 0;
}

.box-error .return_home {
    background-color: #CA1C24;
    color: #ffffff;
    font-family: var(--font-family-RobotoMedium);
    font-size: 16px;
    padding: 19px 29px;
}

.box-error .return_home::before {
    content: '\f178';
    font-family: 'Font Awesome 5 Pro';
    padding-right: 10px;
}
.forgotPassword:hover {
    color: #257CA9;
}
.header-logo img{
    width:200px;
}
.news_other .item_img {
    width: 100%;
    max-height:100px;
    object-fit: cover;
}