:root {
    --cl1: #00b2bd;
    --cl2: #0077ca;
    --cl3: #00456b;
    --cl4: #f2f5fb;
    --cl5: #161111;
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 14px;
}
body {
    font-family: Roboto,sans-serif;
    color: #555;
    overflow-x: hidden;
    min-width: 320px;
    line-height: 1.4;
    max-width: 650px;
    margin: 0 auto;
}
img {
    max-width: 100%;
    -o-object-fit: fill;
    object-fit: fill;
    vertical-align: middle;
    height: auto;
}
ul,
li {
    list-style: none;
    padding-left: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    padding: 0 10px;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background: var(--cl2);
    color: #fff;
}
textarea {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    line-height: 1.4;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--cl5);
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background: #f2f3f4;
    font-family: arial;
    margin-bottom: 8px;
}
input[type="text"] {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    line-height: 1.4;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--cl5);
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    outline: none;
}


/*======================================================================================*/
/*======================================================================================*/
/*======================================================================================*/
/*======================================================================================*/
/*======================================================================================*/

/*HEADER*/
div#nav {
    padding: 5px 0;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 5px;
}
.nav-logo img{
    max-width: 140px;
}

div#search {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    display: none;
}
div.show_search {
    display: block !important;
    margin-bottom: 5px;
}
div#search input[type="text"]{
    border: 1px solid var(--cl3);
}
div#search input[type="text"]::placeholder{
    font-style: italic;
}
button#btn-search {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 0;
    width: auto;
    height: 100%;
    padding: 0 10px;
    text-transform: capitalize;
    background: var(--cl3);
    color: #fff;
}
.form_header {
    margin-bottom: -20px;
}
.form_header form{
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}
.form_header form input[type="text"]{
    border: 1px solid #ddd;
    background: #efefef;
}
.form_header form input[type="text"]::placeholder{
    font-style: italic;
    color: #000;
}
.form_header form button{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 0;
    width: auto;
    height: 100%;
    padding: 0 10px;
    text-transform: capitalize;
    background: var(--cl2);
    color: #fff;
    text-transform: uppercase;
}

.contactheader{
    padding: 5px 0;
    background: var(--cl1);
    color: #fff;
}
.contactheader ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}
.contactheader ul li{
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
}
.contactheader ul li a{
    color: #fff;
}
.contactheader ul li img{
    margin-right: 5px;
}
/*END HEADER*/

/* FOOTER */
div#footer {
    background-image: url(../img/bg-ft.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100% 100%;

    padding:30px 0 30px 0;
}
.footer_top{
    margin-bottom: 30px;
}
.footer_top a.logo_ft{
    display: block;
    text-align: center;
    margin-bottom: 20px;
}
.footer_top a.logo_ft img{
    max-width: 180px;
    object-fit: fill;
}
.footer_top ul {
    display: grid;
    grid-gap: 0.5rem;
    margin-bottom: 20px;
}
.footer_top ul li{
    color: #fff;
    display: grid;
    grid-gap: 0.5rem;
    grid-template-columns: 1rem auto;
    align-items: center;
}
.footer_top .map_ft{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.footer_top .map_ft img{
    width: 100%;
}

.footer_middle{
    margin-bottom: 30px;
}
.footer_middle h3{
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-left: 20px;
}
.footer_middle h3:before{
    content: "/";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    color: var(--cl1);
}
.footer_middle a{
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.footer_bottom{
}
.footer_bottom h3{
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-left: 20px;
}
.footer_bottom h3:before{
    content: "/";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    color: var(--cl1);
}
.footer_bottom p{
    font-weight: normal;
    font-style: italic;
    margin-bottom: 15px ;
}
.footer_bottom form {
    margin: 15px 0;
}
.footer_bottom input{
    display: block;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 10px;
    outline: none;
    background: #ffffff47;
    border: 0;
}
.footer_bottom input::placeholder{
    color: #fff;
    font-style: italic;
}
.footer_bottom textarea {
    display: block;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 10px;
    outline: none;
    resize: none;
    font-style: italic;
    background: #ffffff47;
    border: 0;
    color: #fff;
}
.footer_bottom textarea::placeholder{
    color: #fff;
    font-style: italic;
}
.footer_bottom 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;
    padding-right: 60px;
}
.footer_bottom button::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    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;
}

.footer_copyright{
    background: #16394b;
    color: #fff;
    text-align: center;
    padding: 10px 10px;
    font-size: 14px;
}
.footer_copyright a{
    color: #fff;
}
/* END FOOTER */

.title_sshome{
    margin-bottom: 15px;
    padding-bottom: 10px;
    text-align: center;
    position: relative;
}
/*.title_sshome::after{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--cl1);
}*/
.title_sshome span {
    font-size: 20px;
    font-weight: bold;
    color: var(--cl1);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.title_sshome p {
    font-size: 28px;
    color: var(--cl2);
    font-weight: bold;
    margin: 0;
}

/* TU VAN */
.ss_tuvan{
    margin: 20px 0;
}
ul.grid_sstuvan{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);

    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 40%);
}
ul.grid_sstuvan li {
    display: grid;
    grid-template-columns: 40px auto;
    grid-gap: 15px;
    align-items: flex-start;
}
.icon_sstuvan{

}
.icon_sstuvan img{
    
}
.info_sstuvan span{
    display: block;
}
.info_sstuvan strong{
    text-transform: uppercase;
}
/* END TU VAN */


/* DANH MUC BENH */
.ss_danhmuc{
    padding: 10px 0;
}

ul.ul_ss_cknamkhoa{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap:10px;
}
ul.ul_ss_cknamkhoa li{
    grid-column-end: span 1;

    border-radius: 50%;
    background: #fff;
    position: relative;
    transition: all .5s;
/*    aspect-ratio: 1 / 1;*/
}

ul.ul_ss_cknamkhoa li a{
    display: block;
    text-align: center;
    width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
ul.ul_ss_cknamkhoa li a .icon_cknamkhoa{
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    transition: all .5s;
}

ul.ul_ss_cknamkhoa li a h3{
    margin: 0;
    color: #000;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

ul.ul_ss_cknamkhoa li:hover{
    background: var(--cl1);
}
ul.ul_ss_cknamkhoa li:hover a h3{
    color: #fff;
}
ul.ul_ss_cknamkhoa li:hover a .icon_cknamkhoa img{
    filter: brightness(0) invert(1);

    animation: shake 0.5s ease infinite;
    transform-origin: center;
}
@keyframes shake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  75% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

/* END DANH MUC BENH */

/* GIOI THIEU */
.ss_gioithieu{
    padding: 30px 0;
}
.ss_gioithieu .img_ssgioithieu{
    margin-bottom: 20px;
}
.ss_gioithieu .descr_ssgioithieu{
    color: #565656;
    margin-bottom: 20px;
    text-align: center;
}
.ss_gioithieu .btn_ssgioithieu{
    text-align: center;
    margin-bottom: 20px;
}

.btn_ssgioithieu{
    text-align: center;
}
.btn_ssgioithieu a{
    display: inline-block;
    background: var(--cl1);
    color: #fff;
    text-transform: uppercase;
    padding: 10px 20px;
    position: relative;
    border-radius: 5px;
    height: 40px;
    font-size: 16px;

    margin-bottom: 20px;
}

ul.ul_gioithieu{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px;

    margin-top: 20px;
}
ul.ul_gioithieu li{
    display: grid;
    grid-template-columns: 46px auto;
    grid-gap: 15px;
}
ul.ul_gioithieu li img{
    
}
ul.ul_gioithieu li p{
    margin-bottom: 0px;
    font-size: 14px;
}
ul.ul_gioithieu li strong{
    text-transform: uppercase;
    font-size: 16px;
    color: var(--cl1);
    margin-bottom: 5px;
}
/* END GIOI THIEU */

/* VI SAO CHON */
.ss_visao{
    margin-bottom: -100px;
}
ul.ul_visao{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 0px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    background: #fff;

    position: relative;
    overflow: hidden;
}
ul.ul_visao li{
    position: relative;
    padding: 20px;
    background: var(--cl1);
    text-align: center;
}
ul.ul_visao li:nth-child(2){
    background: var(--cl2);
}

.img_itemvisao{
    margin-bottom: 15px;
}
.img_itemvisao img{
    margin: auto;
}

.descr_itemvisao{
    color: #fff;
}
.descr_itemvisao span{
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}
.descr_itemvisao p{
    font-size: 14px;
    margin: 0;
}

.ul_visao .slick-prev, .ul_visao .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;

    display: block;
    width: 20px;
    height: 20px;
    line-height: 30px;

    text-align: center;

    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all .25s ease;
}
.ul_visao .slick-next:before, .ul_visao .slick-prev:before{
    content: '' !important;
}
.ul_visao .slick-prev{
    left: 0px;
}
.ul_visao .slick-next {
    right: 0px;
}
/* END VI SAO */

/* THONG SO */
.ss_number{
    padding: 130px 0 30px 0;

    background-image: url(../img/bg-numberBT.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top left;
}
.number {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}
.number-item span {
    font-weight: bold;
    font-size: 40px;
    color: #fff;
}
.number-item span b{
    font-weight: bold;
}
.number-item {
    text-align: center;
    color: #fff;
}
.number-item p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
}
/* END THONG SO */

/* UU DIEM */
.ss_uudiem{
    padding: 50px 0;
    background: #f5f5f5;
}
ul.ul_ssuudiem {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 15px;
}
ul.ul_ssuudiem li {
    display: grid;
    grid-template-columns: auto;
    grid-gap: 15px;
    align-items: flex-start;
    text-align: center;
}
ul.ul_ssuudiem li span {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
    color: #000;
}
ul.ul_ssuudiem li p {
    font-size: 14px;
    text-align: justify;
}

.btn_suudiem{
    text-align: center;
}
.btn_suudiem a{
    display: inline-block;
    background: #f3ca61;
    color: #000;
    font-weight: bold;
    padding: 10px 15px;
    position: relative;
    border-radius: 50px;
    height: 40px;
    font-size: 16px;

    margin-bottom: 15px;
}
.btn_suudiem a img{
    margin-right: 5px;
}

.img_ssloiich{

}
.img_ssloiich img{
    
}

/* END UU DIEM */

.ss_sodienthoai{
    margin-bottom: -40px;
}
.ss_sodienthoai img{
    width: 100%;
}

/* CAM NHAN */
.ss_camnhan{
    padding:80px 0 30px 0;
    background-color: #f2f5fb;
}

.item_sscamnhan{
    position: relative;
    overflow: hidden;
}

.avt_sscamnhan{
    display: block;
    margin: auto;
    width: 70px;
    height: 70px;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 20%);

    position: relative;
    z-index: 2;
}
.avt_sscamnhan img{
    width: 100%;
    border-radius: 50%;
}
.info_sscamnhan{
    display: grid;
    grid-template-columns: 70px auto;
    grid-gap: 15px;
    align-items: center;

    padding: 10px 20px;

    position: relative;
    background: var(--cl2);
    border-radius: 0 0 10px 10px;
}
.info_sscamnhan strong{
    color: #fff;
    font-size: 16px;
}
.info_sscamnhan span{
    font-size: 14px;
    color: #fff;
}
.desrc_sscamnhan{
    position: relative;
    z-index: 1;
    background: #fff;
    color: #000;
    border-radius: 10px 10px 0 0;
    padding: 30px 20px 60px 20px;
}
.desrc_sscamnhan .limit_text{
    text-align: center;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.note_sscamnhan{
    content: '';
    position: absolute;
    bottom: -15px;
    right: 20px;
}
.note_sscamnhan img{
    display: inline-block;
}

.camnhan_arrow{
    margin-top: 50px;
    text-align: center;
}
.camnhan_arrow span{
    cursor: pointer;
}

.slick_camnhan{
    position: relative;
}
.slick_camnhan .slick-list{
}
.slick_camnhan .slick-slide{
    padding: 0 ;
}

.slick_camnhan .slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0;
}
.slick_camnhan .slick-dots li {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 6px;
    background-color: #ddd;
    border-radius: 3px;
    margin: 0 5px;
    cursor: pointer;
}
.slick_camnhan .slick-dots li button {
    display: none;
}
.slick_camnhan .slick-dots li.slick-active {
    background-color: var(--cl2);
}
/* END CAM NHAN */

/* CO SO VAT CHAT */
.ss_moitruong{
    width: 100%;
    overflow: hidden;
    padding: 0;
}
.ss_moitruong .slick-slide>div{
    display: grid;
}
#moitruong {
    padding: 1rem 0;
}
.moitruong-item {
    padding: 0;
}

.moitruong-item img {
    width: 100%;
    height: auto;
}
/* END CO SO VAT CHAT */


/*BOX CHUNG CHUYEN KHOA*/
.boxcat_ss{
    margin-bottom: 15px;
}
.boxcat_ss .namecat_ss{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #cdcdcd;
}
.boxcat_ss .namecat_ss span{
    color: var(--cl2);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.boxcat_ss .namecat_ss span img{
    margin-right: 10px;
}
.boxcat_ss .namecat_ss a{
    color: var(--cl2);
    font-style: italic;
    font-size: 15px;
}

.slickcatmo_chuyenkhoa{
    position: relative;
    padding: 0px 30px;
}
.slickcatmo_chuyenkhoa span{
    color: var(--cl2);
    padding: 7px 12px;
    position: relative;

    background: #edf3f4;
    border-radius: 3px;
    font-size: 15px;
}
.slickcatmo_chuyenkhoa span.active {
    color: #fff;
    background: var(--cl1);
}
.slickcatmo_chuyenkhoa button {
    display: inline-block;
    cursor: pointer;
    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;
}
.slickcatmo_chuyenkhoa button:before{
    content: '';
}
.slickcatmo_chuyenkhoa .slick-prev{
    left: 0;
    background: url(../img/prev-cat.png) center center/contain no-repeat;
}
.slickcatmo_chuyenkhoa .slick-next{
    right: 0;
    background: url(../img/next-cat.png) center center/contain no-repeat;
}

.slickcatmo_chuyenkhoa .slick-list{
    margin: 0 -5px;
}
.slickcatmo_chuyenkhoa .slick-slide{
    margin: 0 5px;
}

.boxsubcat{
    margin-bottom: 30px;
}
.th_boxsubcat{
    background: var(--cl1);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    padding: 10px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 15px;
}
.th_boxsubcat span{
    color: #fff;
}
.boxsubcat .Toggle_boxsubcat{
    display: none;
}
.boxsubcat ul{
    margin: 0;
    list-style: none;
    border: 1px solid var(--cl1);
    padding: 15px;

    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
}
.boxsubcat ul li{
    position: relative;
    border-bottom: 1px dashed var(--cl1);
}
.boxsubcat ul li span{
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: #000;
}
.boxsubcat ul li span.active{
    color: var(--cl2);
    font-weight: bold;
}
.th_boxsubcat.show_open img.icon{
    transform: rotate(180deg);
    transition: all 0.5s ease;
}

.itempost_one{
    margin-bottom: 15px;
}
.itempost_one a{
    display: block;
    position: relative;
}
.itempost_one a img{
    margin-bottom: 5px;
    width: 100%;
    object-fit: fill;
    border-radius: 10px;
}
.itempost_one a h3{
    margin: 0;
    padding: 0;
    color: var(--cl5);
    font-size: 15px;
    font-weight: bold;

    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.itempost_one .date{
    margin-top: 5px;
    margin-bottom: 5px;
    color: #000;
}
.itempost_one .date span:nth-child(1){
    margin-right: 15px;
}
.itempost_one .date img{
    width: auto;
    border-radius: 0px;
    margin-bottom: 0px;
}
.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_one .date_abs{
    position: absolute;
    top: 0;
    left: 0;
    background: var(--cl3);
    border-radius: 8px 0 8px 0;
    padding: 5px 7px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
}
.itempost_one .date_abs p{
    margin: 0;
}

.itempost_two{
    position: relative;
}
.itempost_two a{
    display: block;
}
.itempost_two a img{
    margin-bottom: 5px;
    width: 100%;
    height: 125px;
    object-fit: fill;
    border-radius: 10px;
}
.itempost_two a h3{
    margin: 0;
    padding: 0;
    color: #565656;
    font-size: 15px;
    font-weight: normal;
}

.itempost_three{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.itempost_three .img_itempost_three{
    max-width: 58%;
    flex: 0 0 100%;
}
.itempost_three .img_itempost_three a{
    display: block;
}
.itempost_three .img_itempost_three img{
    width: 100%;
    border-radius: 10px;
}
.itempost_three .title_itempost_three{
    max-width: 40%;
    flex: 0 0 100%;
}
.itempost_three .title_itempost_three h3{
    margin: 0;
    padding: 0;
    color: #565656;
    font-size: 16px;
    font-weight: bold;
}
.itempost_three .title_itempost_three h3 a{
    color: #565656;
    font-weight: bold;
}

.h3title_itempost{
    display: block;
    margin-bottom: 8px;
}
.h3title_itempost h3{
    margin: 0;
    padding: 0;
    color: #565656;
    font-size: 15px;
    padding-left: 20px;
    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;
}

.itempost_four{
    overflow: hidden;
    border-radius: 5px;
}
.itempost_four a{
    display: block;
    position: relative;
}
.itempost_four a:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 80px;
    background: linear-gradient( 0deg, rgb(67 48 164) 0%, rgb(67 48 164) 30%, rgba(59, 96, 188, 0) 100% );
}
.itempost_four a img{
    width: 100%;
    border-radius: 5px;
}
.itempost_four 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_five{
    overflow: hidden;
    border-radius: 5px;
}
.itempost_five a{
    display: block;
    position: relative;
}
.itempost_five a:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 50px;
    background: linear-gradient( 0deg, rgb(60 96 183) 0%, rgb(0 51 179 / 80%) 30%, rgba(59, 96, 188, 0) 100% );
}
.itempost_five a img{
    width: 100%;
    height: 135px;
    object-fit: fill;
    border-radius: 5px;
}
.itempost_five a h3{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 5px 5px;
    font-size: 14px;
    font-weight: bold;
    color: #ffff;
    z-index: 2;
}

.itempost_six{
    margin-bottom: 20px;

    border-radius: 15px;
    overflow: hidden;
}
.itempost_six a{
    display: block;
    position: relative;
}
.itempost_six a img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}
.itempost_six .info_itempost_six{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 10px 15px;
    background: linear-gradient( 0deg, rgb(67 48 164) 0%, rgb(67 48 164) 30%, rgba(59, 96, 188, 0) 100% );
}
.itempost_six .info_itempost_six h3{
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}
.itempost_six .info_itempost_six .date{
    font-size: 14px;
    color: #fff;
}
.itempost_six .info_itempost_six .date img{
    width: auto;
    margin-bottom: 0;
    border-radius: 0;
}

.itempost_seven{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.itempost_seven .img_itempost_seven{
    max-width: 120px;
    flex: 0 0 100%;
}
.itempost_seven .img_itempost_seven img{
    width: 100%;
    border-radius: 10px;
}
.itempost_seven .title_itempost_seven{
    max-width: calc(100% - 130px);
    flex: 0 0 100%;
}
.itempost_seven .title_itempost_seven h3{
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}
.itempost_seven .title_itempost_seven h3 a{
    color: #000;
    font-weight: bold;
}
.itempost_seven .title_itempost_seven .date{
    color: #000;;
}
.itempost_seven .title_itempost_seven .date img{
    width: auto;
    margin-bottom: 0;
    border-radius: 0;
}

.itempost_eight{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.itempost_eight .img_itempost_eight{
    max-width: 100px;
    flex: 0 0 100%;
}
.itempost_eight .img_itempost_eight img{
    width: 100%;
    border-radius: 3px;
}
.itempost_eight .title_itempost_eight{
    max-width: calc(100% - 110px);
    flex: 0 0 100%;
}
.itempost_eight .title_itempost_eight h3{
    margin: 0;
    padding: 0;
    color: var(--cl5);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}
.itempost_eight .title_itempost_eight h3 a{
    color: var(--cl5);
    font-weight: bold;
}
.itempost_eight .title_itempost_eight .date{
    color: var(--cl5);
}

/*BOX CHUNG CHUYEN KHOA*/

/* NAM KHOA */
.ss_namkhoa{
    padding: 30px 0;
    background: #fff;
}
.gridmo_namkhoa{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}
.gridmo_namkhoa .colgrid_namkhoa{
    grid-column-end: span 1;
}
/* END NAM KHOA */

/* BENH XA HOI */
.ss_benhxahoi{
    padding: 30px 0;
}

.gridmo_benhxahoi{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}
.colgrid_benhxahoi{
    grid-column-end: span 1;
}

.ss_benhxahoi .itempost_one a h3{
    color: var(--cl1);
}

/* END BENH XA HOI */

/* PHA THAI */
.ss_phathai{
    padding: 30px 0;
}
.gridmo_phathai{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}
.gridmo_phathai .colgrid_phathai{
    grid-column-end: span 1;
}
/* END PHA THAI */

/* BENH TRI */
.ss_benhtri{
    color: #fff;
    padding: 30px 0;
}
.gridmo_benhtri{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.gridmo_benhtri .colgrid_benhtri{
    grid-column-end: span 1;
}
/* END BENH TRI */

/* PHU KHOA */
.ss_phukhoa{
    padding: 50px 0;
}

.gridmo_phukhoa{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}
.gridmo_phukhoa .colgrid_phukhoa{
    grid-column-end: span 1;
}

/* END PHU KHOA */

/* TU VAN DAT HEN */
.ss_tuvandathen{
    margin-top: -50px;
}
.grid_sstuvandathen{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.colgrid_sstuvandathen{
    max-width: 100%;
    flex: 0 0 100%;
    background: #fff;
    padding: 30px 0;
    border-radius: 7px;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 40%);
}
.colgrid_sstuvandathen:nth-child(1){
    margin-bottom: 15px;
}
.flex_sstuvandathen{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}
.flex_sstuvandathen img{
    max-width: 40px;
    flex: 0 0 100%;
}
.flex_sstuvandathen div{
    max-width: calc(100% - 60px);
    flex: 0 0 100%;
    display: block;
}
.flex_sstuvandathen div p{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: var(--cl2);

    margin-bottom: 10px;
}
.flex_sstuvandathen div span{
    color: #000;
    display: block;
}
.flex_sstuvandathen div .btn_sstuvandathen {
    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_sstuvandathen div .btn_sstuvandathen::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;
}
/* END TU VAN DAT HEN */


/* online */
div#online {
    position: relative;
    z-index: 5;
    background: var(--cl1);
    color: #fff;
    margin-top: -5rem;
    padding-top: 7rem;
    padding-bottom: 2rem;
}

.online {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem 0;
}

.online-item {
    display: grid;
    align-content: center;
    justify-content: center;
}

.online-item span {
    text-align: center;
    font-size: calc(40rem / 16);
    line-height: 2.2rem;
}

.online-item p {
    font-size: calc(20rem / 16);
}
/* online */

/* hkt seleted */
/* The container must be positioned relative: */
.hkt-select {
    position: relative;
    font-family: Arial;
    margin-bottom: 1rem;
}

.hkt-select select {
    display: none; /*hide original SELECT element: */
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: calc(50% - 3px);
    right: 15px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
    color: #ffffff;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 1rem;
    padding-left: 2.5rem;
    display: flex;
    align-content: center;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: var(--cl1);
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.select-selected:before {
    content: "";
    position: absolute;
    background: var(--cl2);
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../img/icon-menu2.png);
    background-repeat: no-repeat;
    background-position: left 1rem top 10px;
}

.select-items div {
    border-bottom: 1px solid rgb(255 255 255 / 30%);
}

/* hkt seleted */

/* tai mui hong */
.tmh-tab {
    overflow-x: scroll;
    white-space: nowrap;
    margin-bottom: 1rem;
}

.tmh-tab-item {
    display: inline-block;
    border-right: 1px solid;
    padding: 0.5rem 1rem;
}

.tmh-tab-item.active {
    color: var(--cl1);
    border-bottom: 1px solid;
}

div#taimuihong {
    padding: 1rem 0;
}
/* tai mui hong */

/* da lieu */
.dalieu-tab {
    overflow-x: scroll;
    white-space: nowrap;
    margin-bottom: 1rem;
}

.dalieu-tab-item {
    display: inline-block;
    border-right: 1px solid;
    padding: 0.5rem 1rem;
}

.dalieu-tab-item.active {
    color: var(--cl1);
    border-bottom: 1px solid;
}
.dalieu-3 a {
    display: block;
    position: relative;
    margin-bottom: 1rem;
}

.dalieu-abs h4 {
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
div#dalieu {
    padding: 1rem 0;
}

.dalieu-6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
}

.dalieu-6 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dalieu-6 div {
    padding-left: 1rem;
    position: relative;
}

.dalieu-6 div:before {
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--cl1);
    left: 0;
    top: 5px;
    border-radius: 50%;
}
/* da lieu */

/* page speed */
.banner-slider a {
    display: flex;
}

.banner-slider a img {
    width: 100%;
    object-fit: fill;
    height: auto;
}
div#hkt-baochi img {
    height: auto;
}
/* page speed */

.tuvan-slider {
    display: GRID;
    grid-template-columns: repeat(2, 1fr);
}

.tuvan-slider > div:first-child {
    border-right: 1px solid;
}

.danhmuc-list .danhmuc-item {
    display: none;
}
.danhmuc-list .danhmuc-item:first-child {
    display: block;
}
.danhmuc-list.slick-initialized .danhmuc-item {
    display: block;
}
.ft-map a {
    display: block;
}
.ft-top center a {
    display: block;
}

/* hkt chuyen khoa */
.hkt-chuyenkhoa {
    display: grid;
    grid-gap: 1rem;
}

.hkt-ck-item {
    display: grid;
    grid-gap: 1rem;
    border-bottom: 1px solid #2bc1ef;
    padding-bottom: 0.5rem;
}

.hkt-ck-left {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.hkt-ck-left img {
    max-width: 45px;
}

.hkt-ck-left a {
    display: inline-block;
    font-weight: bold;
    color: #165099;
    text-transform: uppercase;
}

.hkt-ck-right {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 0.5rem;
}

.hkt-ck-right a {
    display: inline-block;
    font-size: .9rem;
}

div#hkt-chuyenkhoa {
    padding: 1rem 0;
}

.hkt-ck-right a:hover {
    color: #2bc1ef;
}

/*BREADCRUMB*/
.breadcrumb_main{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.breadcrumb {
    padding: 5px 0px;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 0;
    background: #fff0;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.breadcrumb a span {
    color: var(--cl2);
}
.breadcrumb_main .dautron {
    height: 8px;
    width: 8px;
    display: block;
    background-color: #E83E75;
    border-radius: 8px;
    margin-right: 4px;
}
/*END BREADCRUMB*/