:root {
    --cl1: #609ee2;
    --cl2: #326196;
    --cl3: #1b7fd3;
    --cl4: #f2f4f6;
    --cl5: #1b2c51;
    --cl6: #ffd510;
}
body {
    background: white;
    font-size: 15px;
    overflow-x: hidden;
    color: #666;
    font-weight: 400;
    background-color: #fff;
    margin: 0;
    line-height: 1.4;
}
body, span, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: 'Open Sans', sans-serif;
}
@media (min-width: 1230px) {
    .container {
        max-width: 1200px
    }
}
/*=======================================================================================*/
/*=======================================================================================*/
/*=======================================================================================*/
/*=======================================================================================*/
/*=======================================================================================*/
/*=======================================================================================*/
/*=======================================================================================*/

/*HEADER*/
header.header{
    background: #fff;
    padding: 15px 0;
}

.header_main{
    position: relative;
}
.logo_hdm{
    display: block;
}
.logo_hdm a{
    display: block;
}
.logo_hdm a img{
    max-width: 200px;
}

ul.info_hdm{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: end;
}
ul.info_hdm li{
    display: flex;
}
ul.info_hdm li+li{
    margin-left: 30px;
}
ul.info_hdm li img{
    margin-right: 10px;
    object-fit: contain;
    width: 40px;
    height: 40px;
}
ul.info_hdm li span{
    line-height: 1.3;
}

.header_bottom{
    margin-top: 10px;
    background: #fff;
}
.header_bottom .row{
    align-items: center;
}
.menu_hdb{
    display: block;
}
.menu_hdb > ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu_hdb > ul > li{
    display: inline-block;
    position: relative;
    padding: 5px 0;
}
.menu_hdb > ul > li > a{
    text-transform: uppercase;
    color: #555;
    padding: 0 15px;
    font-weight: 500;
    font-size: 15px;
}
.menu_hdb > ul > li > a:hover{
    color: var(--cl2);
}
.menu_hdb > ul > li > a.home{
    color: var(--cl2);
}
.menu_hdb > ul > li:first-child > a{
    padding-left: 0;
}
.menu_hdb > ul > li > ul.submenu{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    background: #fff;
    border-top: 1px solid var(--cl2);
    width: max-content;
    min-width: 100%;
    display: none;
}
.menu_hdb > ul > li:hover > ul.submenu{
    display: block;
}
.menu_hdb > ul > li > ul.submenu > li{
    list-style: none;
    position: relative;
}
.menu_hdb > ul > li > ul.submenu > li > a{
    display: block;
    padding: 7px 20px;
}
.menu_hdb > ul > li > ul.submenu > li > a:hover{
    background: var(--cl2);
    color: #fff;
}

.menu_hdb > ul > li:hover > ul.submenu > li > ul.submenu_2{
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    width: max-content;
    display: none;
    border-top: 1px solid var(--cl2);
}
.menu_hdb > ul > li > ul.submenu > li:hover > ul.submenu_2{
    display: block;
}
.menu_hdb > ul > li:hover > ul.submenu > li > ul.submenu_2 a{
    display: block;
    padding: 7px 20px;
}
.menu_hdb > ul > li:hover > ul.submenu > li > ul.submenu_2 a:hover{
    background: var(--cl2);
    color: #fff;
}

.search_hdb{
    float: right;
    position: relative;
}
.search_hdb form{
    margin-bottom: 0;
    position: relative;
    width: 240px;
}
.search_hdb form input[type="search"]{
    background: #efefef;
    border: 0;
    padding: 6px 0;
    padding-left: 15px;
    border-radius: 3px;
}
.search_hdb form input[type="text"]::placeholder{
    font-style: italic;
}
.search_hdb form button#btn-searh {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 100%;
    background: url(../img/icon-serach.png);
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    cursor: pointer;
}
.search_hdb form button#btn-searh span {
    display: none;
}

#trigger_mobile{
    position: absolute;
    top: 20px;
    left: calc(var(--bs-gutter-x) * .5);
    padding: 0;
    border: 0;
    background: #fff0;
    z-index: 9999;
    cursor: pointer;
}
#trigger_mobile .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
#trigger_mobile .icon-bar{
    margin-bottom: 5px;
    background-color: var(--cl2);
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 1px;
}
#trigger_mobile .icon-bar:last-child{
    margin-bottom: 0px;
}

.menu_mobile{
    width: 280px;
    height: 100%;
    position: fixed;
    z-index: 999999;
    top: 0 !important;
    background-color: #fff;
    overflow-x: hidden;
    box-shadow: 0 2px 11px 1px rgb(168 168 168 / 54%);
    visibility: hidden;
    transition: all 0.35s ease;
    transform: translateX(-280px);
}
.menu_mobile.open_sidebar_menu {
    visibility: visible;
    transform: translateX(0);
}

/*ul.ulmenu_mobile{
    margin: 0;
    padding: 0 10px;
    list-style: none;
}
ul.ulmenu_mobile > li{
    border-bottom: 1px solid #CCC;
}
ul.ulmenu_mobile > li > a{
    display: block;
    cursor: pointer;
    z-index: 2;
    font-size: 16px;
    color: #555;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding: 10px 0;
}
ul.ulmenu_mobile > li > a:before {
    position: absolute;
    right: 0px;
    top: 23px;
    display: block;
    width: 10px;
    height: 2px;
    background: #999;
    content: "";
    transition: all 0.1s ease-out;
}
ul.ulmenu_mobile > li > a:after {
    position: absolute;
    right: 4px;
    top: 19px;
    z-index: 5;
    display: block;
    height: 10px;
    width: 2px;
    background: #999;
    content: "";
    transition: all 0.1s ease-out;
}
ul.ulmenu_mobile > li > a > img{
    width: 20px;
    height: 20px;
}

ul.ulmenu_mobile > li.has-sub.open > a:after,
ul.ulmenu_mobile > li.has-sub.open > a:before {
    transform: rotate(45deg);
}

ul.ulmenu_mobile > li > ul{
    padding-left: 20px;
    margin-bottom: 10px;
    display: none;
}
ul.ulmenu_mobile > li > ul > li{
    position: relative;
}
ul.ulmenu_mobile > li > ul > li > a {
    color: #555;
    padding: 5px 0;
    border-bottom: 1px dotted;
    display: block;
}
ul.ulmenu_mobile > li > ul > li:last-child > a {
    border-bottom: 0;
}

ul.ulmenu_mobile > li.open > ul{
    display: block;
}*/

.opacity_menu.open_opacity {
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0 !important;
    left: 0;
    z-index: 999999;
}

#search_mobile{
    position: absolute;
    top: 20px;
    right: calc(var(--bs-gutter-x) * .5);
    padding: 0;
    border: 0;
    z-index: 9999;
    cursor: pointer;
}
.formsearch_mobile{
    margin-top: 10px;

    display: none;
}
.formsearch_mobile.show_search{
    display: block;
}
.formsearch_mobile form{
    margin-bottom: 0;
    position: relative;
    width: 100%;
}
.formsearch_mobile form input[type="search"]{
    background: #efefef;
    border: 0;
    padding: 6px 0;
    padding-left: 15px;
    border-radius: 3px;
}
.formsearch_mobile form input[type="text"]::placeholder{
    font-style: italic;
}
.formsearch_mobile form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 100%;
    background: url(../img/icon-serach.png);
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    cursor: pointer;
}
.formsearch_mobile form button span {
    display: none;
}

ul.ulmenumobile {
    margin: 0;
    padding: 0 10px;
    list-style: none;
}
ul.ulmenumobile > li {
    position: relative;
    border-bottom: 1px solid #CCC;
}
ul.ulmenumobile > li > a{
    display: block;
    cursor: pointer;
    z-index: 2;
    font-size: 16px;
    color: #555;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding: 10px 0;
}
ul.ulmenumobile > li > i.p2u_down{
    content: '';
    background: url(../img/p2u_down.png);
    position: absolute;
    top: 10px;
    right: 0;
    width: 16px;
    height: 16px;
    z-index: 9999;
}
ul.ulmenumobile > li > ul.sub-menu{
    padding-left: 20px;
    margin-bottom: 10px;
    display: none;
}
ul.ulmenumobile > li > ul.sub-menu > li{
    position: relative;
}
ul.ulmenumobile > li > ul.sub-menu > li > a{
    color: #555;
    padding: 5px 0;
    border-bottom: 1px dotted;
    display: block;
}
ul.ulmenumobile > li > ul.sub-menu > li:last-child > a {
    border-bottom: 0;
}
ul.ulmenumobile > li > ul.sub-menu > li > i.p2u_down{
    content: '';
    background: url(../img/p2u_down.png);
    position: absolute;
    top: 10px;
    right: 0;
    width: 16px;
    height: 16px;
    z-index: 9999;
}
ul.ulmenumobile > li > ul.sub-menu > li > ul.sub-menu{
    padding-left: 10px;
    margin-bottom: 5px;
    display: none;
}
ul.ulmenumobile > li > ul.sub-menu > li > ul.sub-menu > li{
    position: relative;
}
ul.ulmenumobile > li > ul.sub-menu > li > ul.sub-menu > li > a{
    color: #555;
    padding: 5px 0;
    display: block;
}

@media only screen and (max-width: 991px){
    header.header{
        padding: 7px 0;
    }
    .header_main .row{
        position: relative;
    }
    .logo_hdm{
        text-align: center;
    }
}

ul.menu_main{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.menu_main > li{
    display: inline-block;
    position: relative;
}
ul.menu_main > li > a{
    position: relative;

    text-transform: uppercase;
    color: #555;
    padding: 7px 15px;
    font-weight: 500;
    font-size: 15px;
}
ul.menu_main > li:first-child > a {
    padding-left: 0;
}
ul.menu_main > li > a > i.p2u_down{
    content: '';
    background: url(../img/p2u_down.png);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}
ul.menu_main > li > ul.sub-menu{
    box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    background: #fff;
    width: max-content;
    min-width: 100%;
    display: none;
}
ul.menu_main > li:hover > ul.sub-menu {
    display: block;
}
ul.menu_main > li > ul.sub-menu > li {
    list-style: none;
    position: relative;
}
ul.menu_main > li > ul.sub-menu > li > a{
    display: block;
    padding: 7px 20px;
}
ul.menu_main > li > ul.sub-menu > li > a:hover{
    background: var(--cl2);
    color: #fff;
}
ul.menu_main > li > ul.sub-menu > li > ul.sub-menu{
    box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 100;
    background: #fff;
    width: max-content;
    min-width: 100%;
    display: none;
}
ul.menu_main > li > ul.sub-menu > li:hover > ul.sub-menu {
    display: block;
}
ul.menu_main > li > ul.sub-menu > li:hover > ul.sub-menu > li{
    list-style: none;
    position: relative;
}
ul.menu_main > li > ul.sub-menu > li > ul.sub-menu > li > a{
    display: block;
    padding: 7px 20px;
}
ul.menu_main > li > ul.sub-menu > li > ul.sub-menu > li > a:hover{
    background: var(--cl2);
    color: #fff;
}



/*END HEADER*/

/* SLIDER */
.slider_home{
    position: relative;
}
.slider_home img{
    width: 100%;
}
/* END SLIDER*/

/* FOOTER */
.footer_main{
    padding: 40px 0;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top left;
    color: #fff;
}

a.logo_ftm{
    display: block;
    margin-bottom: 30px;
    text-align: left;
}
a.logo_ftm img {
    max-width: 300px;
}

ul.info_ftm{
    margin-bottom: 20px;
}
ul.info_ftm li{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
ul.info_ftm li p{
    margin: 0;
    font-weight: normal;
}

h3.titlehead_ftm{
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-left: 20px;
}
h3.titlehead_ftm:before {
    content: "/";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    color: var(--cl3);
}

ul.post_ftm{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.post_ftm li{
    display: block;
    margin-bottom: 5px;
}
ul.post_ftm li a{
    color: #fff;
}

.sloganform_ftm{
    font-weight: normal;
    font-style: italic;
    margin-bottom: 15px;
}

.form_ftm form {
    margin: 15px 0;
}
.form_ftm input{
    display: block;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 10px;
    outline: none;
    background: #ffffff47;
    border: 0;
}
.form_ftm input::placeholder{
    color: #fff;
    font-style: italic;
}
.form_ftm textarea {
    display: block;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 10px;
    outline: none;
    resize: none;
    font-style: italic;
    background: #ffffff47;
    border: 0;
    color: #fff;
}
.form_ftm textarea::placeholder{
    color: #fff;
    font-style: italic;
}
.form_ftm button {
    display: inline-block;
    text-transform: uppercase;
    border: none;
    background: var(--cl2);
    color: #fff;
    line-height: 1;
    padding: 10px 20px;
    position: relative;
    border-radius: 3px 0 0 3px;
    height: 40px;
}
.form_ftm button::after{
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    width: 40px;
    height: 100%;
    background: url(../img/icon-btnformft.png);
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    cursor: pointer;
    background-color: #fff;
    border-radius:0 3px 3px 0;
}
@media(min-width: 768px) and (max-width: 991px){
    h3.titlehead_ftm{
        font-size: 16px;
    }
    .sloganform_ftm{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    a.logo_ftm{
        text-align: center;
    }
    h3.titlehead_ftm{
        font-size: 16px;
    }
    .sloganform_ftm{
        font-size: 13px;
    }
}
/* END FOOTER*/
.title_sectionhome{
    margin-bottom: 30px;
    padding-bottom: 10px;
    text-align: center;
    position: relative;
}
.title_sectionhome::after{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 3px;
    background: #0caff4;
}
.title_sectionhome span {
    font-size: 22px;
    font-weight: bold;
    color: var(--cl1);
    display: block;
}
.title_sectionhome p {
    font-size: 33px;
    text-transform: uppercase;
    color: var(--cl2);
    font-weight: bold;
    margin: 0;
}
@media(min-width: 768px) and (max-width: 991px){
    .title_sectionhome {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    .title_sectionhome span {
        font-size: 20px;
    }
    .title_sectionhome p {
        font-size: 28px;
    }
}
@media only screen and (max-width: 767px){
    .title_sectionhome {
        margin-bottom: 20px;
        padding-bottom: 5px;
    }
    .title_sectionhome span {
        font-size: 18px;
    }
    .title_sectionhome p {
        font-size: 25px;
    }
}


/* GIỚI THIỆU */
.section_gioithieu{
    padding: 50px 0;
}
.section_gioithieu .gioithieu_left img{
    object-fit: fill;
}

.section_gioithieu .title_sectionhome{
    text-align: left;   
}
.section_gioithieu .title_sectionhome::after{
    left: 0;
    transform: translateX(0%);
}
.slogan_gioithieu{
    color: #565656;
    font-size: 15px;
    margin-bottom: 20px;
}
.section_gioithieu .btn_gioithieu {
    display: inline-block;
    text-transform: uppercase;
    border: none;
    background: var(--cl2);
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    position: relative;
    border-radius: 3px 0 0 3px;
    height: 40px;
}
.section_gioithieu .btn_gioithieu::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    width: 40px;
    height: 100%;
    background: url(../img/icon-btntuvan.png);
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    cursor: pointer;
    background-color: var(--cl1);
    border-radius: 0 3px 3px 0;
}

ul.gioithieu_right{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}
ul.gioithieu_right li{
    margin-bottom: 15px;
}
ul.gioithieu_right li .title_gtr{
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    cursor: pointer;
}
ul.gioithieu_right li img{
    margin-right: 5px;
    transition: all 0.5s ease;
}
ul.gioithieu_right li .descr_gtr{
    color: #565656;
    font-style: italic;

    display: none;
}
ul.gioithieu_right li .descr_gtr span{
    padding-left: 25px;
    display: block;
}
ul.gioithieu_right li:first-child .descr_gtr{
    display: block;
}

ul.gioithieu_right li .title_gtr.show_open img{
    transform: rotate(90deg);
}

@media only screen and (max-width: 991px){
    .section_gioithieu {
        padding: 30px 0;
    }
}
@media only screen and (max-width: 767px){
    .section_gioithieu {
        padding: 30px 0;
    }
}

/* END GIỚI THIỆU */

/* CHUYEN KHOA */
.section_chuyenkhoa {
    padding: 50px 0;
    background: #f4f5f9;
}
.grid_chuyenkhoa {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 10px;
}
.chuyenkhoa_item {
    padding-bottom: 20px;
    padding-top: 10px;
}
.chuyenkhoa_left {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.chuyenkhoa_left img{
    margin-right: 15px;
}
.chuyenkhoa_left a {
    display: block;
    font-weight: bold;
    font-size: 18px;
    color: var(--cl2);
    text-transform: uppercase;
    text-align: center;
}
.chuyenkhoa_right {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
}
.chuyenkhoa_right a {
    display: inline-block;
    font-size: 14px;
}
.chuyenkhoa_right a:hover {
    color: var(--cl2);
}

.boxchuyenkhoa_one{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px;
    margin-bottom: 30px;
}
.colchuyenkhoa_one{
    grid-column-end:span 1;
}
.colchuyenkhoa_one .itemchuyenkhoa_one{
    height: 100%;
    background: #fff;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
    padding: 30px 0;
    height: 100%;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.colchuyenkhoa_one:nth-child(1) .itemchuyenkhoa_one{
    background: var(--cl2);
}
.itemchuyenkhoa_one a{
    display: block;
    text-align: center;
}
.itemchuyenkhoa_one a img{
    margin-bottom: 15px;
}
.itemchuyenkhoa_one a p{
    margin: 0;
    color: var(--cl2);
    font-size: 20px;
    text-transform: uppercase;
}
.colchuyenkhoa_one:nth-child(1) .itemchuyenkhoa_one a p{
    color: #fff;
}
@media(min-width: 768px) and (max-width: 991px){
    .section_chuyenkhoa{
        padding: 30px 0;
    }
    .boxchuyenkhoa_one{
        grid-template-columns: repeat(2,1fr);
    }
    .grid_chuyenkhoa{
        grid-template-columns: repeat(2,1fr);
        grid-gap: 20px;
    }
    .chuyenkhoa_right{
        grid-template-columns: repeat(1,1fr);
    }
    .chuyenkhoa_item{
        padding-bottom: 0px;
        padding-top: 0px;
    }
}
@media only screen and (max-width: 767px){
    .section_chuyenkhoa{
        padding: 30px 0;
    }
    .boxchuyenkhoa_one{
        grid-template-columns: repeat(2,1fr);
    }
    .grid_chuyenkhoa{
        grid-template-columns: repeat(2,1fr);
        grid-gap: 20px;
    }
    .chuyenkhoa_right{
        grid-template-columns: repeat(1,1fr);
    }
    .chuyenkhoa_item{
        padding-bottom: 0px;
        padding-top: 0px;
    }
}
/* END CHUYEN KHOA */

/* ƯU ĐIỂM */
.section_uudiem{
    padding: 50px 0;
    background: url(../img/bg_sectionuudiem.jpg);
    color: #fff;
}
.section_uudiem .title_sectionhome{
    text-align: left;   
}
.section_uudiem .title_sectionhome span{
    color: #fff;
}
.section_uudiem .title_sectionhome p{
    color: #fff;
    margin: 0;
}
.section_uudiem .title_sectionhome::after{
    background: #fff;
    left: 0;
    transform: translateX(0%);
}

.flex_uudiem {
    display: grid;
    grid-template-columns: 60% auto;
    grid-gap: 30px;
}
.uudiem-l .style1 * {
    color: #fff !important;
}
.uudiem-l ul {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
.uudiem-l li {
    display: grid;
    grid-template-columns: 50px auto;
    grid-gap: 15px;
    align-items: flex-start;
}
.uudiem-l li span {
    font-weight: bold;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}
.uudiem-l li p {
    font-size: 15px;
}
.uudiem-l .btn_uudiem {
    display: inline-block;
    text-transform: uppercase;
    border: none;
    background: #fff;
    color: var(--cl2);
    font-weight: bold;
    padding: 10px 20px;
    position: relative;
    border-radius: 3px 0 0 3px;
    height: 40px;
}
.uudiem-l .btn_uudiem::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    width: 40px;
    height: 100%;
    background: url(../img/icon-btntuvan.png);
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    cursor: pointer;
    background-color: var(--cl2);
    border-radius: 0 3px 3px 0;
}

@media(min-width: 768px) and (max-width: 991px){
    .section_uudiem{
        padding: 30px 0;
    }
    .flex_uudiem{
        grid-template-columns: 50% auto;
    }
    .uudiem-l ul {
        grid-gap: 15px;
    }
    .uudiem-l li{
        grid-template-columns: auto;
    }
}
@media only screen and (max-width: 767px){
    .section_uudiem{
        padding: 30px 0;
    }
    .flex_uudiem{
        grid-template-columns: 100% auto;
    }
    .uudiem-l ul {
        grid-gap: 15px;
    }
    .uudiem-l li{
        grid-template-columns: auto;
    }
}

/* END ƯU ĐIỂM*/

/* TƯ VẤN */
.section_tuvan{
    padding: 20px 0;
    background: var(--cl2);
}
.section_tuvan .flex_tuvan{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.item_tuvan{
    display: flex;
    align-items: center;
    width: max-content;
    font-size: 18px;
    color: #fff;
}
.img_tuvan{
    border-radius: 50%;
    background: #fff;
    width: 70px;
    height: 70px;
    text-align: center;
    position: relative;
    margin-right: 15px;
}
.img_tuvan img{
    object-fit: fill;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.item_tuvan p{
    margin: 0;
}
.item_tuvan strong{
    color: #fff;
    text-transform: uppercase;
}

@media(min-width: 768px) and (max-width: 991px){
    .section_tuvan {
        padding: 10px 0;
        background: var(--cl2);
    }
    .section_tuvan .flex_tuvan{
        flex-wrap: wrap;
    }
    .item_tuvan{
        max-width: 50%;
        flex: 0 0 100%;

        margin-bottom: 10px;
        font-size: 15px;
    }
}
@media only screen and (max-width: 767px){
    .section_tuvan {
        padding: 10px 0;
        background: var(--cl2);
    }
    .section_tuvan .flex_tuvan{
        flex-wrap: wrap;
    }
    .item_tuvan{
        max-width: 50%;
        flex: 0 0 100%;

        margin-bottom: 10px;
        font-size: 15px;
    }
}
/* END TƯ VẤN */

/* CẢM NHẬN KHÁCH HÀNG */
.section_camnhan{
    padding: 50px 0;
    background-image: url(../img/bg-camnhan.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top left;
}
.section_camnhan .title_sectionhome span{
    color: #fff;
}
.section_camnhan .title_sectionhome p{
    color: #fff;
}
.slick_camnhan{
    position: relative;
}
.slick_camnhan .slick-list{
    margin: 0 -10px;
}
.slick_camnhan .slick-slide{
    margin-right: 10px;
    margin-left: 10px;
}
.item_camnhan{
    padding-bottom: 20px;
}
.camnhan_info{
    display: flex;
    align-items: center;
    width: 85%;
    height: 90px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -40px;
    z-index: 10;
    background: var(--cl2);
    padding: 0 10px;
    border-radius: 10px;
}
.camnhan_img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: absolute;
    overflow: hidden;
    background: #fff;
    padding: 5px;
}
.camnhan_img img {
    border-radius: 50%;
}
.camnhan_name{
    padding: 20px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-left: 80px;
    color: #fff;
}
.camnhan_name span {
    text-transform: capitalize;
    font-weight: bold;
}
.camnhan_name p {
    font-size: 14px;
    margin: 0;
}
.camnhan_des {
    border-radius: 10px;
    padding: 20px;
    position: relative;
    padding-bottom: 30px;
    padding-top: 60px;
    box-shadow: 0px 5px 24px rgb(191 191 191 / 12%);
    background: #fff;
}
.camnhan_des p{
    text-align: center;
}
.camnhan_note {
    position: absolute;
    height: 30px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

.slick_camnhan .slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0;
    bottom: -20px;
}
.slick_camnhan .slick-dots li {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 6px;
    background-color: #ddd;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
}
.slick_camnhan .slick-dots li button {
    display: none;
}
.slick_camnhan .slick-dots li.slick-active {
    background-color: var(--cl1);;
}

@media(min-width: 768px) and (max-width: 991px){
    .section_camnhan{
        padding: 30px 0;
    }
}
@media only screen and (max-width: 767px){
    .section_camnhan{
        padding: 30px 0;
    }
}

/* END CẢM NHẬN KHÁCH HÀNG */

/*CƠ SỞ VẬT CHẤT*/
.section_csvc{
    padding: 50px 0;
}
.boxslick_cosovatchat{
    position: relative;
}

.slick_cosovatchat .slick-list{
    margin: 0 -10px;
}
.slick_cosovatchat .slick-slide{
    margin-right: 10px;
    margin-left: 10px;
}

.slick_cosovatchat .item_cosovatchat img{
    width: 100%;
}

.boxslick_cosovatchat span.cosovatchat-prev {
    position: absolute;
    top: 50%;
    left: -20px;
}
.boxslick_cosovatchat span.cosovatchat-next {
    position: absolute;
    top: 50%;
    right: -20px;
    cursor: pointer;
}

@media(min-width: 768px) and (max-width: 991px){
    .section_csvc{
        padding: 30px 0;
    }
}
@media only screen and (max-width: 767px){
    .section_csvc{
        padding: 30px 0;
    }
}
/*END CƠ SỞ VẬT CHẤT*/

/* NUMBER */
.section_number{
    padding:40px 0;
    background-image: url(../img/bg-number.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top left;
}
.section_number .online {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.section_number .online-item span {
    font-size: 50px;
    font-weight: bold;
    color: var(--cl2);
}
.section_number .online-item span b{
    font-weight: bold;
}
.section_number .online-item {
    text-align: center;
}
.section_number .online-item p {
    font-size: 22px;
}

@media(min-width: 768px) and (max-width: 991px){
    .section_number{
        padding: 20px 0;
    }
}
@media only screen and (max-width: 767px){
    .section_number{
        padding: 20px 0;
    }
    .section_number .online{
        grid-template-columns: repeat(2, 1fr);
    }
}
/* END NUMBER*/

/* ĐK PHONE */
.section_dkphone{
    padding: 50px 0;
    background-image: url(../img/bg_sshotline.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top left;
}
.boxform_ssphone{
    text-align: center;
}
.boxform_ssphone span{
    color: #fff;
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}
.boxform_ssphone form{
    display: grid;
    grid-template-columns: 75% auto;
    grid-gap: 15px;
    width: 700px;
    margin: auto;
}
.boxform_ssphone form input{
    display: block;
    width: 100%;
    padding: 7px 10px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 0;
    border-radius: 5px;
    outline: none;
    font-size: 15px;
}
.boxform_ssphone form button{
    border: 0;
    background: var(--cl1);
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    padding: 7px 15px;
    border-radius: 5px;
}
@media(min-width: 768px) and (max-width: 991px){
    .section_dkphone{
        padding: 30px 0;
    }
    .boxform_ssphone span{
        font-size: 15px;
    }
    .boxform_ssphone form{
        grid-template-columns: 65% auto;
        width: 80%;
    }
    .boxform_ssphone form button{
        font-size: 15px;
        padding: 7px 10px;
    }
}
@media only screen and (max-width: 767px){
    .section_dkphone{
        padding: 30px 0;
    }
    .boxform_ssphone span{
        font-size: 14px;
    }
    .boxform_ssphone form{
        grid-template-columns: 65% auto;
        width: 100%;
    }
    .boxform_ssphone form button{
        font-size: 14px;
        padding: 7px 10px;
    }
}
/* END ĐK PHONE */

/* TU VAN TRUC TIEP */
.section_tuvantructiep{
    margin-top: -80px;
}
.grid_stuvantt{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.colgrid_stuvantt{
    max-width: 49%;
    flex: 0 0 100%;
    background: #fff;
    padding: 30px 0;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
}
.flex_stuvantt{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}
.flex_stuvantt img{
    max-width: 60px;
    flex: 0 0 100%;
}
.flex_stuvantt div{
    max-width: calc(100% - 75px);
    flex: 0 0 100%;
    display: block;
}
.flex_stuvantt div p{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: var(--cl2);

    margin-bottom: 10px;
}
.flex_stuvantt div span{
    color: #565656;
    display: block;
}
.flex_stuvantt div .btn_stuvantt {
    display: inline-block;
    text-transform: uppercase;
    border: none;
    background: var(--cl1);
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    position: relative;
    height: 40px;
    border-radius: 0 3px 3px 0;
    margin-left: 40px;
}
.flex_stuvantt div .btn_stuvantt::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 100%;
    background: url(../img/icon-btntuvan.png);
    border: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    cursor: pointer;
    background-color: var(--cl2);
    border-radius: 3px 0 0 3px;
}
@media(min-width: 768px) and (max-width: 991px){
    .section_tuvantructiep{
        margin-top: -50px;
    }
    .colgrid_stuvantt{
        padding: 20px 0;
    }
    .flex_stuvantt div p{
        font-size: 16px;
        margin-bottom: 5px;
    }
    .flex_stuvantt div span{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .section_tuvantructiep{
        margin-top: -50px;
    }
    .colgrid_stuvantt{
        max-width: 100%;
        padding: 20px 0;
        margin-bottom: 10px;
    }
    .flex_stuvantt div p{
        font-size: 16px;
        margin-bottom: 5px;
    }
    .flex_stuvantt div span{
        font-size: 14px;
    }
}
/* END TU VAN TRUC TIEP */

.boxflex_titlechuyenkhoa{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #f1f2f4;
    padding: 0px 20px;
    margin-bottom: 20px;
    border-radius: 3px;
}
.colleft_chuyenkhoa{
    max-width: 250px;
    flex: 0 0 100%;
}
.colright_chuyenkhoa{
    max-width: calc(100% - 250px);
    flex: 0 0 100%;
}
.maincat_chuyenkhoa{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: var(--cl2);
}
.colright_chuyenkhoa .slickcat_chuyenkhoa{
    position: relative;
    padding: 0px 20px;
}
.colright_chuyenkhoa .slickcat_chuyenkhoa span{
    color: #565656;
    padding: 10px 20px;
    position: relative;
}
.colright_chuyenkhoa .slickcat_chuyenkhoa span::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #ddd;
}
.slickcat_chuyenkhoa span.active {
    color: var(--cl2);
    border-bottom:1px solid var(--cl2);
}
.slickcat_chuyenkhoa button {
    display: inline-block;
    cursor: pointer;
    border: 0;
    border-radius: 4px;
    width: 20px;
    height: 30px;
    color: #666;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.15s ease-out;
    text-decoration: none;
    z-index: 99999;
    text-indent: -9999px;
}
.slickcat_chuyenkhoa button:before{
    content: '';
}
.slickcat_chuyenkhoa .slick-prev{
    left: 0;
    background: url(../img/prev-cat.png) center center/contain no-repeat;
}
.slickcat_chuyenkhoa .slick-next{
    right: 0;
    background: url(../img/next-cat.png) center center/contain no-repeat;
}
@media(min-width: 768px) and (max-width: 991px){
    .colleft_chuyenkhoa{
        max-width: 200px;
    }
    .colright_chuyenkhoa{
        max-width: calc(100% - 200px);
    }
    .colright_chuyenkhoa .slickcat_chuyenkhoa span{
        padding: 5px 10px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .boxflex_titlechuyenkhoa{
        padding: 5px;
        margin-bottom: 15px;
    }
    .colleft_chuyenkhoa{
        max-width: 100%;
        margin-bottom: 10px;
    }
    .colright_chuyenkhoa{
        max-width: 100%;
    }
    .colright_chuyenkhoa .slickcat_chuyenkhoa span{
        padding: 5px 10px;
        font-size: 14px;
    }
}


.itempost_one{
    margin-bottom: 20px;
}
.itempost_one a{
    display: block;
}
.itempost_one a img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}
.itempost_one a h3{
    margin: 0;
    padding: 0;
    color: var(--cl2);
    font-size: 16px;
    font-weight: bold;
}
.itempost_one a .descr {
    margin-top: 5px;
    color: #565656;
    font-style: italic;

    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.itempost_two{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.itempost_two .img_itempost_two{
    max-width: 160px;
    flex: 0 0 100%;
}
.itempost_two .img_itempost_two img{
    width: 100%;
    border-radius: 10px;
}
.itempost_two .title_itempost_two{
    max-width: calc(100% - 180px);
    flex: 0 0 100%;
}
.itempost_two .title_itempost_two h3{
    margin: 0;
    padding: 0;
    color: #565656;
    font-size: 16px;
    font-weight: bold;
}
.itempost_two .title_itempost_two h3 a{
    color: #565656;
    font-weight: bold;
}

.itempost_three{
    overflow: hidden;
    border-radius: 5px;
}
.itempost_three a{
    display: block;
    position: relative;
}
.itempost_three a:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 80px;
    background: linear-gradient( 0deg, rgb(60 96 183) 0%, rgb(0 51 179 / 80%) 30%, rgba(59, 96, 188, 0) 100% );
}
.itempost_three a img{
    width: 100%;
    border-radius: 5px;
}
.itempost_three a h3{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 15px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #ffff;
    z-index: 2;
}

.itempost_four{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.itempost_four .img_itempost_four{
    max-width: 44%;
    flex: 0 0 100%;
}
.itempost_four .img_itempost_four a{
    display: block;
}
.itempost_four .img_itempost_four a img{
    width: 100%;
    border-radius: 10px;
}

.itempost_four .info_itempost_four{
    max-width: 53%;
    flex: 0 0 100%;
}
.itempost_four .info_itempost_four h3{
    margin: 0;
    padding: 0;
    color: var(--cl2);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.itempost_four .info_itempost_four h3 a{
    color: var(--cl2);
    font-weight: bold;
}
.itempost_four .info_itempost_four .descr{
    color: #565656;
    font-style: italic;
    margin-bottom: 10px;

    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.itempost_four .info_itempost_four a.readmore{
    color: var(--cl2);
    text-decoration: underline;
    font-style: italic;
    font-size: 16px;
}

.itempost_five{
    margin-bottom: 20px;
}
.itempost_five a{
    display: block;
}
.itempost_five a img{
    width: 100%;
    object-fit: fill;
    border-radius: 10px;
    margin-bottom: 10px;
}
.itempost_five a h3{
    margin: 0;
    padding: 0;
    color: #565656;
    font-size: 16px;
    font-weight: bold;
}

.itempost_six{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.itempost_six .img_itempost_six{
    max-width: 100px;
    flex: 0 0 100%;
}
.itempost_six .img_itempost_six img{
    width: 100%;
    border-radius: 5px;
}
.itempost_six .title_itempost_six{
    max-width: calc(100% - 110px);
    flex: 0 0 100%;
}
.itempost_six .title_itempost_six h3{
    margin: 0;
    padding: 0;
    color: #565656;
    font-size: 16px;
    font-weight: bold;
}
.itempost_six .title_itempost_six h3 a{
    color: #565656;
    font-weight: bold;
}

.itempost_seven{
    margin-bottom: 20px;

    border-radius: 15px;
    overflow: hidden;
}
.itempost_seven a{
    display: block;
    position: relative;
}
.itempost_seven a img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}
.itempost_seven .info_itempost_seven{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 10px 15px;
    background: linear-gradient( 0deg, rgb(60 96 183) 0%, rgb(0 51 179 / 80%) 30%, rgba(59, 96, 188, 0) 100% );
}
.itempost_seven .info_itempost_seven h3{
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}
.itempost_seven .info_itempost_seven .date{
    font-size: 14px;
    color: #fff;
}

.itempost_eight{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.itempost_eight .img_itempost_eight{
    max-width: 120px;
    flex: 0 0 100%;
}
.itempost_eight .img_itempost_eight img{
    width: 100%;
    border-radius: 10px;
}
.itempost_eight .title_itempost_eight{
    max-width: calc(100% - 130px);
    flex: 0 0 100%;
}
.itempost_eight .title_itempost_eight h3{
    margin: 0;
    padding: 0;
    color: var(--cl2);
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}
.itempost_eight .title_itempost_eight h3 a{
    color: var(--cl2);
    font-weight: bold;
}
.itempost_eight .title_itempost_eight .date{
    color: var(--cl2);
}

.h3title_itempost{
    display: block;
    margin-bottom: 8px;
}
.h3title_itempost h3{
    margin: 0;
    padding: 0;
    color: #565656;
    font-size: 15px;
    padding-left: 30px;
    position: relative;
}
.h3title_itempost h3:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--cl2);
    border-radius: 50%;
}
.h3title_itempost h3 a{
    color: #565656;
    font-weight: normal;
}

/* NAM KHOA */
.section_namkhoa{
    padding: 50px 0 0 0;
    margin-bottom: -50px;
}
.grid_namkhoa{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;

    padding: 15px;
    background: #fff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border-radius: 15px;
}
.colgrid_namkhoa{
    grid-column-end: span 1;
    color: #000;
}

@media(min-width: 768px) and (max-width: 991px){
    .section_namkhoa {
        padding: 30px 0;
        margin-bottom: -30px;
    }
    .grid_namkhoa{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;

        padding: 10px;
    }
}
@media only screen and (max-width: 767px){
    .section_namkhoa {
        padding: 30px 0 0 0;
        margin-bottom: -30px;
    }
    .grid_namkhoa{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 15px;

        padding: 10px;
    }
}
/*END NAM KHOA*/

/* PHU KHOA */
.section_phukhoa{
    padding: 100px 0 120px;
    background-image: url(../img/bg-footer.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top left;
    color: #fff;
}
.section_phukhoa .boxflex_titlechuyenkhoa{
    background: #fff;
}
.grid_phukhoa {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 20px;
    margin-bottom: 30px;
}
.colgridleft_phukhoa {
    grid-column-end: span 3;
    color: #000;
}

.colgridright_phukhoa{
    grid-column-end: span 4;
    color: #000;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
.grid_phukhoa2{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
}
.colgrid_phukhoa2{
    grid-column-end: span 1;
}

.section_phukhoa .itempost_one a h3{
    color: #fff;
}
.section_phukhoa .h3title_itempost h3 a{
    color: #fff;
}
.section_phukhoa .h3title_itempost h3:before{
    background: #fff;
}
@media(min-width: 768px) and (max-width: 991px){
    .section_phukhoa{
        padding: 60px 0 80px;
    }
    .grid_phukhoa{
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 15px;
    }
    .colgridleft_phukhoa{
        grid-column-end: span 1;
    }
    .colgridright_phukhoa{
        grid-column-end: span 1;
        grid-template-columns: repeat(1, 1fr);
    }
    .grid_phukhoa2{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 767px){
    .section_phukhoa{
        padding: 60px 0 80px;
    }
    .grid_phukhoa{
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 15px;
    }
    .colgridleft_phukhoa{
        grid-column-end: span 1;
    }
    .colgridright_phukhoa{
        grid-column-end: span 1;
        grid-template-columns: repeat(1, 1fr);
    }
    .grid_phukhoa2{
        grid-template-columns: repeat(2, 1fr);
    }
}
/*END PHU KHOA*/

/* BENH XA HOI */
.section_benhxahoi{
    padding: 50px 0;
}
.grid_benhxahoi{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.colgrid_benhxahoi{
    grid-column-end: span 1;
}

@media(min-width: 768px) and (max-width: 991px){
    .section_benhxahoi{
        padding: 30px 0;
    }
    .grid_benhxahoi{
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 10px;
    }
}
@media only screen and (max-width: 767px){
    .section_benhxahoi{
        padding: 30px 0;
    }
    .grid_benhxahoi{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }
}
/* END BENH XA HOI */

/* PHAI THAI */
.section_phathai{
    padding: 50px 0;
}
.grid_phathai{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 20px;
}
.colleftgrid_phathai{
    grid-column-end: span 4;
}
.colrightgrid_phathai{
    grid-column-end: span 3;
}

.gridright_phathai{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.colgridright_phathai{
    grid-column-end: span 1;
}

@media(min-width: 768px) and (max-width: 991px){
    .grid_phathai {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }
    .colleftgrid_phathai {
        grid-column-end: span 1;
    }
    .colrightgrid_phathai {
        grid-column-end: span 1;
    }
    .gridright_phathai{
        grid-gap: 10px;
    }
}
@media only screen and (max-width: 767px){
    .grid_phathai {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }
    .colleftgrid_phathai {
        grid-column-end: span 1;
    }
    .colrightgrid_phathai {
        grid-column-end: span 1;
    }
    .gridright_phathai{
        grid-gap: 10px;
    }
}
/* END PHAI THAI */

/* BENH TRI */
.section_benhtri{
    padding: 50px 0;
}
.grid_benhtri{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.colgrid_benhtri{
    grid-column-end: span 1;
}

.gridleft_benhtri {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin-top: 15px;
}
.colgridleft_benhtri {
    grid-column-end: span 1;
}

.gridright_benhtri {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 30px;
}
.colgridright_benhtri {
    grid-column-end: span 1;
}
.colgridright_benhtri .itempost_three{
    margin-bottom: 0;
}
.colgridright_benhtri .itempost_three a img{
    height: 175px;
    object-fit: fill;
}
.colgridright_benhtri .itempost_three a h3{
    padding: 10px 15px;
    font-size: 14px;
}

.colgridright_benhtri .itempost_three a:after{
    height: 50px;
}

@media(min-width: 768px) and (max-width: 991px){
    .section_benhtri{
        padding: 30px 0;
    }
    .grid_benhtri {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .gridleft_benhtri{
        grid-template-columns: repeat(1, 1fr);
    }
}
@media only screen and (max-width: 767px){
    .section_benhtri{
        padding: 30px 0;
    }
    .grid_benhtri {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }
}
/* END BENH TRI */


/* SIDEBAR */
ul.listcategogy_sidebar{
    margin: 0;
    padding: 0;
    list-style: none;

    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}
ul.listcategogy_sidebar > li{
    border-bottom: 1px solid #CCC;
}
ul.listcategogy_sidebar > li > a{
    display: block;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    z-index: 2;
    font-size: 16px;
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    position: relative;
}
ul.listcategogy_sidebar > li > a:before {
    position: absolute;
    right: 0px;
    top: 23px;
    display: block;
    width: 10px;
    height: 2px;
    background: #999;
    content: "";
    transition: all 0.1s ease-out;
}
ul.listcategogy_sidebar > li > a:after {
    position: absolute;
    right: 4px;
    top: 19px;
    z-index: 5;
    display: block;
    height: 10px;
    width: 2px;
    background: #999;
    content: "";
    transition: all 0.1s ease-out;
}
ul.listcategogy_sidebar > li > a > img{
    width: 20px;
    height: 20px;
}

ul.listcategogy_sidebar > li.has-sub.open > a:after,
ul.listcategogy_sidebar > li.has-sub.open > a:before {
    transform: rotate(45deg);
}

ul.listcategogy_sidebar > li > ul{
    padding-left: 30px;

    display: none;
}
ul.listcategogy_sidebar > li > ul > li{
    position: relative;
}
ul.listcategogy_sidebar > li > ul > li > a {
    height: 30px;
    line-height: 30px;
    color: #000;
}

ul.listcategogy_sidebar > li.open > ul{
    display: block;
}
/* END SIDEBAR */

/* BREADCRUMB */
.bread-crumb{

}
.bread-crumb p{
    margin: 0;
}
/* END BREADCRUMB */

.shock{}
.shock_wrap{
    position:relative;
    display:inline-block
}
.shock_block{
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    background:#747474e8;
    text-align:center;
    margin:auto;
    border:1px solid #ccc;
    color:#fff
}
.shock_block span{
    top: 0px;
    position: absolute;
    right: 0px;
    left: 0px;
    margin: auto;
    bottom: 0px;
    width:90%;
    display: flex;
    flex-direction: column;
    justify-content: center
}
.shock_click{
    padding:2%;
    background-color:#eee;
    border:1px solid #ccc;
    border-radius:5px;
    text-decoration:none;
    color:#666;
}