:root {
    --color-1:#064593;
    --color-2:#DEBD00;
    --color-3: #fd9706;
    --color-4: #ff2c2c;
    --color-5: #fffcf4;
    --trans: all 350ms ease-in-out;
}

@font-face {
    font-family: 'InterR';
    src: url(templates/fonts/Inter-Regular.ttf);
}

@font-face {
    font-family: 'InterM';
    src: url(templates/fonts/Inter-Medium.ttf);
}

@font-face {
    font-family: 'InterB';
    src: url(templates/fonts/Inter-Bold.ttf);
}

html {
    font: normal 'InterR'!important;
    overflow-x: hidden;
    max-width: 1920px;
     margin:0 auto;
    color: #444;
    scroll-behavior: smooth;
}

body {
    font-family: 'InterR'!important;
    transition: var(--trans);
    max-width: 1920px;
    overflow-x: hidden;

}
a{
   text-decoration:none;
}
a,
a:hover {
    transition: all 150ms ease-in-out;
}

p{
    margin-bottom:0.5rem;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: inherit;
    border-width: inherit;
}

img{
    max-width:100%;
    height:auto;
}

.img-contain{
    object-fit:contain;
}
.img-cover{
    object-fit:cover;
}

.webkit-box-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.webkit-box-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.webkit-box-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.webkit-box-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.webkit-box-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rel{
    position:relative!important;
}
.hide,
.hidden {
    display: none;
}
.df{
    display:flex;
    justify-content:space-between;
}
.df-jc-center{
    justify-content:center;
}
.df-jc-start{
    justify-content:flex-start;
}
.df-jc-end{
    justify-content:flex-end;
}
.df-al-center{
    align-items:center;
}
.df-al-end{
    align-items:flex-end;
}
.un-style{
    list-style-type:none;
    margin:0;
    padding:0;
}
.df-bh .left{
    width:40%;
}
.df-bh .center{
    width:30%;
    padding:0 0 0 3rem;
}
.df-bh .right{
    width:30%;
}
.box-heading{
  padding:0.5rem 0;
  position:relative;
}
.form-control{
    font-size:0.9rem;
}
.box-search{
    position:relative;
}
.box-search .btn__search{
    position:absolute;
    right:0;
    top:-0.2rem;
}
.box-search #key__search{
   padding-right:3rem;
}
.gird_header_social > li{
    margin-right:0.2rem;
}
.gird_header_social > li > a > img{
    width:2rem;
    max-height:rem;
}
.container{
    max-width:1280px;
}
.box-heading .logo img{
    max-height:6rem;
}
.item-slide{
    width:100%;
    max-height:calc(100vh);
}
.item-slide img.full_width{
   height:auto;
   width:100%;
   object-fit:cover;
}
.clearfix{
    clear:both;
}
.box-menu{
    position:relative;
    background-color:var(--color-1);
}
#nav_main{
    list-style-type:none;
    margin:0;
    padding:0;
}
#nav_main > li{
  display:inline-block;
  padding:0 0.7rem;
  position:relative;
}
#nav_main > li:first-child{
    padding-left:0;
}
#nav_main > li > a{
    color:#fff;
    display:block;
    line-height:3rem;
    font-size:0.9rem;
    text-transform:uppercase;
}
#nav_main > li.current > a,#nav_main > li:hover > a{
    color:var(--color-2);
}

 #nav_main > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#nav_main > li > a > .icon{
    margin-left:0.2rem;
}

/* #nav_main > li > ul{
  position: absolute;
  top: 100%;
  left: 0;
  z-index:-1;
  min-width:220px;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius:0.2rem;

  opacity: 0;
  z-index:9;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
} */


/*
#nav_main > li > ul > li {
  position: relative;
  display:block;
}

 */
/* #nav_main > li > ul > li > a {
  display: block;
  line-height:1.3;
  padding:0.5rem 0.7rem;
  color: #333;
  text-decoration: none;
  font-size:0.9rem;
}
#nav_main > li > ul > li:hover{
    background-color:var(--color-1);
}
#nav_main > li > ul > li:hover > a{
    color:#fff;
} */
/* #nav_main > li > ul > li > ul {
  position:absolute;
  top: 0;
  left: 100%;
  transform: translateX(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;

  min-width:200px;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius:0.2rem;
}
#nav_main li ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
#nav_main > li > ul > li > ul > li > a{
  display: block;
  line-height:1.3;
  padding:0.5rem 0.7rem;
  color: #333;
  text-decoration: none;
  font-size:0.9rem
}
#nav_main > li > ul > li > ul > li:hover{
    background-color:var(--color-1);
}
#nav_main > li > ul > li > ul > li:hover > a{
    color:#fff;
} */

/* #nav_main > li > ul > li > ul > li{
    position:relative;
}
#nav_main > li > ul > li > ul > li > ul{
     position:absolute;
    top: 0;
    left: 100%;
    transform: translateX(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width:200px;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius:0.2rem;
}

#nav_main > li > ul > li > ul > li:hover > ul{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
#nav_main > li > ul > li > ul > li > ul > li{
   display: block;
}
#nav_main > li > ul > li > ul > li > ul > li > a{
    display: block;
    line-height: 1.3;
    padding: 0.5rem 0.7rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}
#nav_main > li > ul > li > ul > li > ul > li:hover{
    background-color:var(--color-1);
}
#nav_main > li > ul > li > ul > li > ul > li:hover > a{
    color:#fff;
} */

/**/
ul.dropdown-animate{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    min-width: 220px;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.2rem;
    opacity: 0;
    z-index: 9;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
ul.dropdown-animate > li{
    position: relative;
    display: block;
}
ul.dropdown-animate > li > a{
    display: block;
    line-height:1.3;
    padding:0.5rem 0.7rem;
    color: #333;
    text-decoration: none;
    font-size:0.9rem;
}
ul.dropdown-animate > li:hover{
    background-color:var(--color-1);
}
ul.dropdown-animate > li:hover > a{
    color:#fff;
}
ul.dropdown-animate > li:hover > ul.show-right{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
ul.show-right{
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateX(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0.2rem;
}
ul.show-right > li{
    display:block;
    position:relative;
}
ul.show-right > li:hover{
    background-color:var(--color-1);
}
ul.show-right > li:hover > ul.show-right{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
ul.show-right > li > a{
    display: block;
    line-height: 1.3;
    padding: 0.5rem 0.7rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}
ul.show-right > li:hover > a{
    color:#fff;
}


/**/


.pn-box-nh{
    background-size:cover!important;
}
.block-tit{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:2rem;
}
.block-tit > h2{
    font-size:1.6rem;
    font-family:'InterB';
    color:var(--color-1);
    text-transform:uppercase;
    margin-bottom:0;
}
.block-tit > a{
    color:var(--color-1);
    font-family:'InterM';
    font-size:0.8rem;
}
.block-tit > a:hover{
    color:var(--color-2);
}

.block-tit.text-center{
    justify-content:center;
    flex-direction:column;
    align-items:center;
    margin-bottom:1rem;
}

.d-flex-nh .left,.d-flex-nh .right{
    width:50%;
}
.d-flex-nh .left{
    padding-right:1rem;
}
.d-flex-nh .right{
    padding-left:1rem;
}

.item-nh{
    position:relative;
}

.item-nh .img{
    position:relative;
    height:0;
    width:100%;
}
.item-nh .img img{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
.item-nh.item-nh-1 .img{
    padding-bottom:77%;
}
.item-nh .wrap-nd{
    position:relative;
    z-index:1;
    margin-top:-4rem;
    margin-left:1rem;
    width:calc(100% - 2rem);
    background-color:#fff;
    padding:1rem;
    border-radius:0.2rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.item-nh .wrap-nd h3 a{
    font-size:1rem;
    line-height:1.3;
    color:var(--color-1);
    font-family:'InterM';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item-nh .wrap-nd .the_excerpt{
    font-size:0.8rem;
    line-height:1.4;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:3;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom:0;
    position:relative;
    padding-top:0.5rem;
}

.item-nh .wrap-nd .the_excerpt:before{
    position:absolute;
    width:10rem;
    height:0.05rem;
    background-color:var(--color-1);
    content:'';
    left:0;
    top:0;
}
.item-nh .wrap-nd  .the_link{
  text-align:right;
  margin-bottom:0;
}
.item-nh .wrap-nd  .the_link a{
    font-size:0.8rem;
    color:var(--color-1);
    text-decoration:underline;
    line-height:1.4;
}
.item-nh .wrap-nd a:hover{
    color:var(--color-2);
}

.item-nh-2 .img,.item-nh-3 .img{
    padding-bottom:60%;
}
.item-nh-4 .img{
    padding-bottom:40%;
}

.item-nh.item-nh-2 .wrap-nd,.item-nh.item-nh-3 .wrap-nd{
    padding:0.7rem;
    margin-top:-7rem;
}

.item-nh.item-nh-2 .wrap-nd h3 a,.item-nh.item-nh-3 .wrap-nd h3 a{
    font-size:0.8rem;
}
.item-nh.item-nh-2 .wrap-nd .the_excerpt,.item-nh.item-nh-3 .wrap-nd .the_excerpt{
     -webkit-line-clamp:2;
}
.grid_hssv_2{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-gap:1rem;
}
.grid_hssv_2 .item_hssv{
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  padding-bottom:0.4rem;
}

.item_hssv .img{
    position:relative;
    width:100%;
    height:0;
    padding-bottom:70%;
}

.item_hssv .img img{
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    object-fit:contain;
    padding:0.2rem;
    border:1px solid #ddd;
    border-radius:0.2rem;
}
.item_hssv .the_title{
    margin-bottom:0.3rem;
    line-height:1;
}
.item_hssv .the_title a{
    font-size:1rem;
    line-height:1.3;
    color:#222;
    font-family:'InterM';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item_hssv .the_excerpt{
    font-size:0.8rem;
    line-height:1.4;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:3;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom:0.2rem;
}
.item_hssv .the_date{
    color:#777;
    font-size:0.7rem;
    line-height:1.3;
    font-style:italic;
    margin-bottom:0.2rem;
}
.item_hssv .the_link a{
   font-size: 0.75rem;
    color: var(--color-1);
    text-decoration: underline;
    line-height: 1.4;
    font-family:'InterM';
    line-height:1;
}
.item_hssv .the_link a:hover{
    color:var(--color-2);
}
.item_hssv .the_link{
    text-align:right;
    margin-bottom:0;
    padding-right:1rem;
    line-height:1;
}

.item_hssv .the_title a:hover{
    color:var(--color-1);
}
.pn-ts{
    background-size:cover!important;
    color:#fff!important;
}

.pn-ts .block-tit > h2,.pn-ts .block-tit > a{
    color:#fff;
}
.pn-ts .block-tit > a:hover{
    color:var(--color-2);
}
.ts-top{
    background-color:rgba(255,255,255, 0.12);
    border-radius:0.4rem;
    padding-bottom:0.5rem;
    border:2px solid;
    border-image: linear-gradient(to right,rgba(255, 255, 255, 0.15),  rgba(255, 255, 255, 1)) 1;
}
.ts-bottom{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    grid-gap:0.8rem;
    margin-top:1rem;
}
.ts-top .img{
    position:relative;
    width:100%;
    height:0;
    padding-bottom:50%;
}
.ts-top .img img{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    object-fit:cover;
    padding:0.2rem;
    border:1px solid #ddd;
    border-radius:0.3rem;
}
.ts-top .the_title{
    margin:0 0 0.3rem 0;
    line-height:1;
}
.ts-top .the_title a{
    font-size:1.4rem;
    color:#fff;
    line-height: 1.3;
    font-family:'InterM';
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ts-top .the_title a:hover{
    color:var(--color-2);
}
.ts-top .the_excerpt{
    font-size:1rem;
    line-height:1.4;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:8;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ts-top .the_date{
    font-style:italic;
    font-size:1rem;
}
.item-ts-xs .img{
    position:relative;
    width:100%;
    height:0;
    padding-bottom:70%;
}
.item-ts-xs .img img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:0.2rem;
}
.item-ts-xs .info-xs .the_title{
    line-height:1;
    margin:0 0 0.3rem 0;
}
.item-ts-xs .info-xs .the_title a{
     font-size:0.9rem;
    line-height:1.3;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family:'InterM';
    color:#fff;
}
.item-ts-xs .info-xs .the_title a:hover{
    color:var(--color-2);
}
.item-ts-xs .info-xs .the_date{
    margin-bottom:0.2rem;
    font-size:0.8rem;
    line-height:1.2;
}
.item-ts-xs .info-xs .the_excerpt{
      font-size:0.8rem;
    line-height:1.3;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:3;
    overflow: hidden;
    text-overflow: ellipsis;
     color:#fff;
     margin-bottom:0;
}
.ts-bottom .item-ts-xs{
    background:rgba(255, 255, 255, 0.12);
    border-radius:3px;
    overflow: hidden;
    border:2px solid;
    border-image: linear-gradient(to right,rgba(255, 255, 255, 0.15),  rgba(255, 255, 255, 1)) 1;
}

.pn-boxAbout .sub_tit{
    font-size:1.4rem;
    color:var(--color-1);
    font-family:'InterB';
    text-transform:uppercase;
    line-height:1;
    margin-bottom:0.4rem;
}
.pn-boxAbout .tit_ab{
   font-size:1.6rem;
    color:var(--color-1);
    font-family:'InterB';
    text-transform:uppercase;
    line-height:1.2;
    margin-bottom:0.4rem;
}
.pn-boxAbout .the_excerpt *{
    font-size:0.9rem;
    line-height:1.5;
    text-align:justify;
}
.df-atc{
    justify-content:flex-start;
    align-items:center;
}
.df-atc .icon{
    width:2.2rem;
}
.df-atc .icon img{
    width:1.8rem;
    max-height:1.8rem;
    border-radius:50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.df-atc p.tit{
    margin-bottom:0;
    font-size:0.9rem;
    font-family:'InterM';
    line-height:1.2;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list-tc > li{
    margin-bottom:0.3rem;
    padding-bottom:0.3rem;
    border-bottom:1px solid rgba(227, 227, 227, 1);
}
.list-tc > li:last-child{
    border-bottom-color:transparent;
}
.pn-boxAbout .the_link{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    margin-bottom:0;
}
.pn-boxAbout .the_link a{
    display:inline-block;
    background-color:var(--color-1);
    color:#fff;
    font-family:'InterM';
    font-size:1rem;
    padding:0.3rem 0.5rem 0.3rem 1rem;
    border-radius:0.3rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.pn-boxAbout .the_link a:hover{
    background-color:var(--color-2);
}
.group-abs{
    position:relative;
    clear:both;
}
.group-abs .img_1{
    position:relative;
    width:100%;
    height:0;
    padding-bottom:100%;
}
.group-abs .img_1 img.lg{
    position:absolute;
    width:calc(100% - 3rem);
    height:calc(100% - 4rem);
    top:0;
    right:0;
    object-fit:cover;
}
.group-abs .img_2{
    position:absolute;
    bottom:0;
    left:0;
    width:50%;
    height:35%;
    object-fit:cover;
    border:0.2rem solid #fff;
}
.group-abs .img_3{
    position:absolute;
    bottom:0;
    right:0;
    height:4rem;
    width:45%;
    object-fit:contain;
}

.group-abs .img_4{
    position:absolute;
    z-index:1;
    width:4rem;
    height:4rem;
    object-fit:contain;
    border-radius:50%;
    left:calc(50% - 2rem);
    bottom:calc(35% - 2rem);
    border:0.1rem solid #fff;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
.grid_ctdt{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-gap:1rem;
    padding:0;
    margin:0;
    list-style-type:none;
}
.grid_ctdt > .item_ctdt{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    background-color:#fff;
    border-radius:0.3rem;
    padding:0.4rem 0.2rem 0.4rem 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
.grid_ctdt > .item_ctdt img{
    width:3rem;
    height:3rem;
    object-fit:contain;
    margin-right:0.4rem;
    padding:0.3rem;
}
.grid_ctdt > .item_ctdt h4{
    font-size:1rem;
    font-family:'InterM';
    line-height:1.3;
    color:#333;
    margin-bottom:0;
}
.grid_ctdt > .item_ctdt h4:hover{
    color:var(--color-2);
}
.list_tvdt{
    list-style-type:none;
    margin:0;
    padding:0;
}
.list_tvdt > li  .img{
   position:relative;
   width:100%;
   height:0;
   padding-bottom:140%;
}
.list_tvdt > li .img img{
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    object-fit:cover;
}

.list_tvdt > li h4{
    font-size:1rem;
    line-height:1.3;
    color:#333;
    margin:1rem 0;
    font-family:'InterM';
}

.list_tvdt > li h4:hover{
    color:var(--color-2);
}
.pn-dktv{
    background-size:cover!important;
}
.pn-dktv .block-tit{
    justify-content:center;
    margin-bottom:1rem;
}
.pn-dktv .block-tit h3{
    text-align:center;
    font-size:1.8rem;
    text-transform:uppercase;
    font-family:'InterB';
    color:var(--color-1);
    text-align:center;
    margin-bottom:0;
}
.d-frmTv{
    justify-content:space-between;
}
.d-frmTv #b-sendtv{
    padding:0 1.5rem;
    background-color:var(--color-1);
    color:#fff;
    font-family:'InterM';
}
.d-frmTv #b-sendtv:hover{
    background-color:var(--color-2);
}
.list_dktv > li{
  display:flex;
  justify-content:flex-start;
  align-items:center;
}
.list_dktv > li > img{
    width:1.8rem;
    height:1.8rem;
    border-radius:50%;
    object-fit:contain;
    margin-right:0.5rem;
}
.dktv-box-tc{
    background-color:var(--color-1);
    color:#fff;
    padding:1rem;
    border-radius:0.4rem;
}
.list_dktv > li > .the_title{
    font-size:1rem;
    line-height:1.3;
      display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dktv-box-ct{
    background-color:var(--color-1);
    color:#fff;
    font-size:1.4rem;
    padding:1rem;
    border-radius:0.5rem;
}
.dktv-box-ct .tl{
    font-size:1rem;
    font-family:'InterB';
    text-transform:uppercase;
    background-color:#fff;
    border-radius:2rem;
    display:inline-block;
    padding:0.5rem 1.5rem;
    color:var(--color-1);
    line-height:1;
}
.list_dkct{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-gap:0.5rem;
}
.list_dkct > li{
    display:flex;
    justify-content:flex-start;
}
.list_dkct > li > .ic{
    width:2rem;
    margin-right:0.2rem;
}
.list_dkct > li  .tit{
    font-size:1rem;
    margin-bottom:0.2rem;
    line-height:1.2;
    font-family:'InterM';
}
.list_dkct > li >  .info{
    width:calc(100% - 2.7rem);
}
.list_dkct > li  a{
    font-size:1rem;
    color:#fff;
    font-family:'InterM';
    display:block;
    line-height:1.2;
}
.the_ds{
    max-width:40rem;
    margin:0.5rem 0;
    font-size:0.9rem;
    line-height:1.4;
    font-style:italic;
}
.pn-connect{
    background-size:cover!important;
}
.list-connect{
   position:relative;
}

.list-connect > li > a{
    display:flex;
}
.list-connect > li > a img{
    width:10rem;
    margin-right:0.5rem;
}
.list-connect > li > a:hover{
    color:var(--color-2);
}
.pn-connect .container{
    max-width:1200px;
}
.box-rss{
    padding:1rem 0.5rem;
    border-radius:0.4rem;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
.tit_rss{
    font-family:'InterB';
    color:var(--color-1);
    font-size:1rem;
    line-height:1.2;
    padding-left:1.2rem;
}

.tit_rss .icon img{
    width:40px;
    margin-right:0.3rem;
}
.list-rss{
    padding-left:1.5rem;
    margin:0 0;
}
.list-rss > li{
    margin-bottom:0.2rem;
    padding-bottom:0.4rem;
    border-bottom:1px solid #eee;
}
.list-rss > li:last-child{
    border-bottom-color:transparent;
}
.list-rss .the_title{
    font-size:0.8rem;
    color:#222;
    font-family:'InterM';
    line-height:1.3;
    margin-bottom:0.2rem;
}
.list-rss .the_title > a{
    color:#333;
}
.list-rss .the_title > a:hover{
    color:var(--color-1);
}
.list-rss .the_date{
    font-size:0.7rem;
    font-style:italic;
    color:#666;
    margin-bottom:0;
}
.link_rss{
    margin-bottom:0;
    text-align:center;
}
.link_rss > a{
    color:var(--color-1);
    font-size:1rem;
    display:inline-block;
    padding:0.2rem 0.6rem;
    border:1px solid var(--color-1);
    font-size:0.9rem;
    font-family:'InterM';
    border-radius:0.3rem;
    transition: all 0.1s linear;
}
.link_rss > a:hover{
    background-color:var(--color-2);
    color:#fff;
    border-color:var(--color-2);
}
.pn-foot{
    background-size:cover!important;
    color:#fff;
}
.img_foot{
    max-height:7rem;
}

.pn-foot a{
  color:#fff;
}
.pn-foot a:hover{
    color:var(--color-2);
}
.tit_foot{
    font-size:1.2rem;
    text-transform:uppercase;
    font-family:'InterB';
    color:#fff;
    margin-bottom:1rem;
}
.foot-top{
    margin-bottom:1rem;
}

.pn-foot .inner{
    line-height:1.4;
    font-size:0.9rem;
}
.pn-foot .inner ul{
    padding:0;
    margin:0;
    list-style-type:none;
}
.pn-foot .inner ul li{
    line-height:1.4;
    margin:0.5rem 0;
    position:relative;
    padding-left:1rem;
}
.pn-foot .inner ul li:before{
    position:absolute;
    width:0.8rem;
    height:0.8rem;
    content:'';
    left:0;
    top:0.3rem;
    background:url(templates/images/nav_foot.png)no-repeat center center;
}
.img_bn{
    width:100%!important;
    height:auto!important;
}
.pn-breadcrumb .breadcrumb{
    justify-content:flex-start;
}

.tit_page{
    text-align:center;
    color:var(--color-1);
    text-transform:uppercase;
    font-size:1.8rem;
    font-family:'InterB';
}

.pn-about_1{
    background-size:cover!important;
}

.block_tit .sub_1{
    font-size:1.4rem;
    text-transform:uppercase;
    color:var(--color-1);
    font-family:'InterB';
}
.block_tit .tit{
    font-size:2rem;
    text-transform:uppercase;
    color:var(--color-1);
    font-family:'InterB';
}
.gird_sb-ab{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    grid-gap:0;
}
.gird_sb-ab .item{
    text-align:center;
    filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.16));
    border-radius:0.5rem;
}
.gird_sb-ab .item.item2{
    position:relative;
    z-index:1;
}
.gird_sb-ab .item .wrapper{
    background-color: #fff;
    padding: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.gird_sb-ab .item.item2{
    margin-top:-1rem;
}
.gird_sb-ab .item.item2 .wrapper{
    clip-path: url(#clip-path-core-value-mission);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-top: 15%;
    padding-bottom: 15%;
    z-index: 2;
}
.svg-clip-path {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
}

.gird_sb-ab .item .img img{
    height:3.5rem;
}
.gird_sb-ab .item .the_title{
    font-size:1.4rem;
    text-transform:uppercase;
    font-family:'InterB';
    color:var(--color-1);
    margin-top:1rem;
}
.gird_sb-ab .item .the_excerpt{
    font-size:0.9rem;
    line-height:1.625;
}
.pn-timeline{
    background-size:cover!important;
}
.block_tit .tit_h2{
    color:var(--color-1);
    font-family:'InterB';
    font-size:1.8rem;
}
.timeline-container{
    position:relative;
    overflow: hidden;
    max-width:1000px;
    margin:1rem auto;
}

.timeline-container-thumbs .swiper-wrapper{
    justify-content:center;
}
.tit_timeline{
    font-size:1.8rem;
    font-family:'InterB';
    color:var(--color-1);
    cursor:pointer;
    transform:var(--trans);
}
.swiper-slide-thumb-active .tit_timeline{
    color:var(--color-2);
    text-align:center;
    transform:scale(1.2);
}


/*21-08-25*/
.typography{
    font-size:0.9rem;
    line-height:1.4;
}
.pn-breadcrumb{
    background-color:#eee;
    padding:0.5rem 0;
    margin-bottom:0.7rem;
}
.timeline-box-img{
    position:relative;
    width:100%;
    height:0;
    padding-bottom:40%;
     overflow: hidden;
}
.timeline-box-img img{
    width:100%;
    object-fit:contain;
}
.pn-breadcrumb .breadcrumb{
    margin-bottom:0;
    font-size:0.8rem;
}

.the_excerpt_block{
    max-width:600px;
    margin:0 auto;
    font-size:1rem;
    line-height:1.6;
    text-align:center;
}
.pn-AboutTs{
    background-size:cover!important;
}
.img_abts{
    width:100%;
}
.pn-AboutTs .the_excerpt *{
    font-size:1rem;
    line-height:1.625;
}

   .inner-tabs .tabs {
      display: flex;
      justify-content:center;
      background-color:rgba(217, 217, 217, 1);
      border-radius:2rem;
      padding:0.1rem;
    }

    .inner-tabs .tab {
      padding: 7px 20px;
      cursor: pointer;
      border: none;
      background-color: transparent;
      outline: none;
      font-weight: bold;
      transition:background 0.3s;
      border-radius:1.5rem;
      min-width:10rem;
    }

    .inner-tabs .tab.active {
      color: dodgerblue;
      background-color:rgba(255, 255, 255, 1);

      color:var(--color-1);
    }

    .inner-tabs .tab-content {
      display: none;
      padding: 20px 0;
      border-top: none;
    }

    .inner-tabs .tab-content.active {
      display: block;
    }
 .box-tss h4{
    font-size:1.2rem;
    color:var(--color-1);
    text-transform:uppercase;
    font-family:'InterB';
 }

 .box-tss .nd{
    border:1px solid #ddd;
    border-radius:1rem;
 }

  .box-tss .nd *{
    font-size:0.9rem;
    line-height:1.5;
  }
  .box-tss .nd ul{
    padding-left:1rem;
  }
  .pn-Specialized{
      background-size:cover!important;
      color:#fff;
   }

   .pn-Specialized .item-heading h2{
    text-transform:uppercase;
    line-height:1.4;
    font-family:'InterB';
    font-size:1.6rem;
   }
    .pn-Specialized .item-heading .the_excerpt{
        font-size:0.9rem;
        line-height:1.4;
    }
    .pn-Specialized .the_action > a{
         color:var(--color-1);
         font-size:1rem;
         font-family:'InterM';
         display:inline-block;
         padding:0.3rem 1rem;
         border-radius:0.5rem;
         background-color:#fff;
         box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }
    .pn-Specialized .the_action > a:hover{
        background-color:var(--color-2);
    }
     .pn-Specialized .item-normal{
        position:relative;
        background-color:rgba(255, 255, 255, 0.1);
        border-radius:0.5rem;
        min-height:12rem;
     }
    .pn-Specialized .item-normal h4.the_tit{
        font-size:1.05rem;
        font-family:'InterM';
    }
    .pn-Specialized .item-normal h4.the_tit span img{
         width:2rem;
         height:2rem;
         object-fit:contain;
         margin-right:0.3rem;

    }
    .gird_ts_3{
        display:grid;
        grid-template-columns:1fr 1fr 1fr;
        grid-gap:0.3rem;
        padding:0;
        margin:0;
        list-style-type:none;
    }
    .gird_ts_3 .it h5{
        font-size:1rem;
        line-height:1.4;
        font-family:'InterM';
        text-align:center;
    }
    .gird_ts_3 .it h5.tit_1{
        color:rgba(222, 189, 0, 1);
    }
     .gird_ts_3 .it h5.tit_2{
        color:rgba(236, 28, 37, 1);
    }
     .gird_ts_3 .it h5.tit_3{
        color:rgba(42, 192, 47, 1);
    }
    .gird_ts_3 .it .cont{
        font-size:0.8rem;
        text-align:center;
    }

     .pn-Specialized .item-normal .link{
        text-align:center;
        margin-bottom:0;
     }
      .pn-Specialized .item-normal .link a{
        color:#fff;
        display:inline-block;
        padding:0.3rem 1.4rem;
        border-radius:0.3rem;
        border-radius:0.5rem;
        font-size:0.8rem;
        border:1px solid #fff;
      }
      .pn-Specialized .item-normal .link a:hover{
        border-color:var(--color-2);
        color:var(--color-2);
      }
.wrap-inner{
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius:0.5rem;
}
.wrap-inner .box-txt{
   font-size:0.9rem;
   line-height:1.625;
   color:#666;
   position:relative;
   padding:0 1rem 1rem 2.5rem;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wrap-inner .box-txt:before,.wrap-inner .box-txt:after{
    position:absolute;
    content:'';
    width:1.6rem;
    height:1.6rem;
    background-size:contain!important;
}
.wrap-inner .box-txt:before{
    left:0;
    top:0;
    background:url(templates/images/dot_1.png)no-repeat center center;
}
.wrap-inner .box-txt:after{
    right:0;
    bottom:0;
    background:url(templates/images/dot_2.png)no-repeat center center;
}

.item_feel  .box-head{
    padding-left:2rem;
    margin-top:-4rem;
}
.item_feel  .box-head img{
    width:7rem;
    height:7rem;
}
.item_feel  .box-head .ht{
    padding-left:0.5rem;
}
.item_feel  .box-head h5{
    color:#222;
    font-size:1.2rem;
    font-family:'InterM';
    text-transform:capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pn-feel .container{
    max-width:1200px;
}
.pn-ads-year{
    background-size:cover!important;
}

.pn-ads-year .img_full50{
    width:100%;
}
.grid_ads_ts{
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
}
.grid_ads_ts .item img{
    height:2.4rem;
    width:2.4rem;
    border-radius:50%;
    margin-bottom:0.3rem;
}
.grid_ads_ts .item .the_tit{
    font-size:1rem;
    line-height:1.4;
}
.box-ads-action .bt{
    padding:0.5rem 1rem;
    border-radius:0.5rem;
    background-color:var(--color-1);
    color:#fff;
    margin:0 0.3rem;
    text-transform:uppercase;
    font-family:'InterM';
}
.box-ads-action .bt:hover{
    background-color:var(--color-2);
}
.pn-ads-year .block-tit h2{
    font-size:2rem;
}
.pn-lookup{
    padding:10rem 0;
}
.box-inner{
    position:relative;
    padding:12rem 0;
    max-width:800px;
    margin:0 auto;
}
.box-frm-lk{
    position:relative;
}
.box-frm-lk #cccd{
    background-color:rgba(255, 255, 255, 0.3);
    border-color:#fff;
    color:#333;
    outline:none;
}
.box-frm-lk .btn_lookup{
    background-color:var(--color-1);
    color:#fff;
    font-family:'InterM';
    position:absolute;
    display:inline-block;
    padding:0.45rem 2rem;
    right:0;
    top:0;
}
.box-frm-lk .btn_lookup:hover{
    background-color:var(--color-2);
}
.box-result-lk{
    background-color:#fff;
    border-radius:0.5rem;
}
#frm_lookup label.error{
    color:red;
    position:absolute;
    font-size:0.8rem;
    right:8rem;
    top:0.7rem;
}
.box-cp-social{
    position: relative;
    text-align:right;
    margin-top:-2.2rem;
}
.box-cp-social .bg{
   display:inline-flex;
   position:relative;
   padding:0.2rem 0.1rem 0.2rem 0.4rem;
   background-color:rgba(217, 217, 217, 1);
   height:38px;
}
.box-cp-social .bg:before{
    position:absolute;
    right:100%;
    top:0;
    width:46px;
    height:38px;
    content:'';
    background:url(templates/images/sl_01.png)no-repeat;
}
.box-cp-social .bg:after{
    position:absolute;
    left:100%;
    top:0;
    left:100%;
    width:46px;
    height:38px;
    content:'';
    background:url(templates/images/sl_02.png)no-repeat;
}
.pn-newsletter{
    background-color:rgba(0, 95, 212, 1);
    color:#fff;
}
.pn-newsletter h3{
    font-family:'InterM';
    font-size:1.4rem;
    margin-bottom:0.2rem;
}
.pn-newsletter p{
    font-size:0.8rem;
    margin-bottom:0;
}
#discountFrm{
    position:relative;
}
.btn_send_discount{
    position:absolute;
    right:0;
    top:0;
    color:#fff;
    padding:0.45rem 1rem;
    background-color:red;
    color:#fff;
    border-radius:0.2rem;
}
.btn_send_discount:hover{
    color:#fff;
    background-color:var(--color-2);
}

#discountFrm label.error{
    color:#fff;
    font-size:0.9rem;
    position:absolute;
    left:0.5rem;
    bottom:-1.5rem;

}
.list-social{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}
.list-social > li  img{
    height:1.8rem;
    margin-left:0.3rem;
}

.pn-heading-ts .top-head{
    background-color:var(--color-1);
    color:#fff;
}

.pn-heading-ts .top-head .ic{
    width:1.5rem;
    margin-right:0.5rem;
}
.pn-heading-ts .top-head .ic img{
    height:1rem;
}
.pn-heading-ts p{
    margin-bottom:0;
    line-height:1;
}
.pn-heading-ts .ts-1{
    margin-right:1rem;
}
.pn-heading-ts p a{
    color:#fff;
}
.pn-heading-ts .main-heading{
    background-color:#fff;
    color:#333;
}

.navbar-brand img{
    max-height:6rem;
    max-width:15rem;
}
#navbarsTs .nav-link{
    color:#333;
    font-family:'InterM';
}
#navbarsTs .nav-link:hover{
    color:var(--color-2);
}

#pn-dktv {
  scroll-margin-top: 200px; /* adds 200px padding when scrolled into view */
}
.pn-blockNews{
    background-size:cover!important;
}
.wrap_video{
    position:relative;
    width:100%;
    height:0;
    padding-bottom:40%;
}
.wrap_video img{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    object-fit:cover;
}

.box_vd {
    position: absolute;
    width: 8rem;
    height: 8rem;
    left: calc(50% - 4rem);
    top: calc(50% - 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.box_vd .ic {
    background: var(--color-1);
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    position: relative;
}

.box_vd .ic:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    -webkit-animation: pulse-animation 1.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-animation 1.5s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: 1;
}
.pn-blockNews .ts-top{
   background-color:rgba(244, 244, 244, 1);
}
.pn-blockNews .ts-top .the_title a{
  color:var(--color-1);
}
.pn-blockNews .ts-top .the_title a:hover{
    color:var(--color-2);
}
.pn-blockNews .item-ts-xs .info-xs .the_title a{
    color:#333;
}
.pn-blockNews .item-ts-xs .info-xs .the_title a:hover{
    color:var(--color-1);
}
.pn-blockNews .item-ts-xs .info-xs .the_excerpt{
    color:#444;
}
.pn-blockNews .the_link a{
    font-size:0.9rem;
    color:var(--color-1);
}
.pn-blockNews_1{
    background:url(templates/images/bg_gioithieu_ts.jpg)no-repeat top center;
    background-size:cover!important;
}
.pn-blockNews_1 .item_hssv{
    background-color:#fff;
    border-radius:0.4rem;
    padding:0.3rem 0.3rem;
}
.pn-post .block-tit > h2{
    font-size:1.4rem;
}
.fl_1{
    display: flex;
    width: 100%;
}

.item_news_2{
    position:relative;
    width:100%;
    height:0;
    padding-bottom:60%;
}
.item_news_2 img{
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    object-fit:cover;
}

.item_news_2 .cont{
    position:absolute;
    width:40%;
    height:100%;
    color:#fff;
    top:0;
    right:0;
    background-color:rgba(14, 78, 145, 0.85);
    display:flex;
    justify-content:center;
    flex-direction:column;
    padding:0 1rem;
}
.item_news_2 .cont .the_tit{
    line-height:1;
}
.item_news_2 .cont .the_tit a{
    font-size:1.2rem;
    font-family:'InterM';
    color:#fff;
    line-height:1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:4;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item_news_2 .cont .the_tit a:hover{
    color:var(--color-2);
}
.item_news_2 .cont .the_excerpt{
    font-size:0.9rem;
    line-height:1.5;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:7;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item_news_2 .cont .the_link{
    text-align:right;
}
.item_news_2 .cont .the_link a{
    color:#fff;
    font-size:0.8rem;
}
.item_news_2 .cont .the_link a:hover{
    color:var(--color-2);
}
.gird_2x{
    display:grid;
    grid-template-columns:1fr;
    grid-gap:0.5rem;
}
.gird_2x .item_2x{
    position:relative;
    height:0;
    width:100%;;
    padding-bottom:60%;
    overflow:hidden;
    border-radius:0.2rem;
}
.gird_2x .item_2x img{
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
}
.gird_2x .item_2x .the_tit{
    margin:0;
    padding:0.5rem 0.4rem;
    background-color:rgba(14, 78, 145, 0.85);
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:4rem;
    color:#fff;
}
.gird_2x .item_2x .the_tit a{
    color:#fff;
    font-size:0.9rem;
    line-height:1.4;
    font-family:'InterM';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gird_2x .item_2x .the_tit a:hover{
    color:var(--color-2);
}
.inner_rel{
    position:relative;
}

/* Style individual slides */
.swipper-hd .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: #6a5acd; /* A nice purple color */
    border-radius: 10px;

    /* --- Visual Effect --- */
    /* Make non-active slides smaller and semi-transparent */
    transform: scale(0.8);
    opacity: 0.7;
    transition: transform 0.4s, opacity 0.4s;
}

/* Style the active (centered) slide */
.swipper-hd .swiper-slide-active {
    /* Bring active slide to full size and opacity */
    transform: scale(1);
    opacity: 1;
}

.inner_rel{
    position:relative;
    overflow:hidden;
}
.pn-program{
    background:url(templates/images/bg_ctdt.jpg)no-repeat top center!important;
    background-size:cover!important;
}
.item-program{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    background-color:#fff;
    border-radius:0.5rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    min-height:65px;
}

.gird_programs{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-gap:1rem;

}
.item-program .ic{
    margin-right:0.5rem;
}
.item-program .ic img{
    width:2.4rem;
    height:2.4rem;
    object-fit:contain;
}
.item-program h4{
    line-height:1;
    margin:0;
}
.item-program h4 a{
    font-size:0.9rem;
    font-family:'InterM';
    line-height:1.2;
    color:#333;
}
.item-program h4 a:hover{
    color:var(--color-2);
}
.pn-blog-hot .ts-top{
    background-color:rgba(244, 244, 244, 1);
}
.pn-blog-hot .ts-top .the_title a{
    color:var(--color-1);
}

.pn-blog-hot .ts-top .the_title a:hover{
    color:var(--color-2);
}
.pn-blog-hot .ts-top .the_link a{
    color:var(--color-1);
}
.pn-blog-hot .ts-top .the_link a:hover{
    color:var(--color-2);
}
.item-depart.active{
    background-color:var(--color-1);
}
.item-depart.active *{

    color:#fff!important;
}
.item-depart .ic img{
    border-radius:50%;
    background-color:#fff;
    padding:0.2rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
#contact-form .form-group{
    position:relative;
}
#contact-form label.error{
    color:red;
    position:absolute;
    right:5px;
    top:12px;
    font-size:0.8rem;
}
.row_download{
    color:#333;
    font-size:0.8rem;
    line-height:1.3;
}

.row__post__lh {
    padding: 10px;
    border: 1px solid #eee;
    margin:1rem 0;
}
.tit__postlh {
    border-bottom: 1px solid #eee;
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 5px;
    color:#333;
    font-family:'InterB';
}
.wrapper-content{
    padding:0.5rem;
    border:1px solid #eee;
    border-radius:0.2rem;
}
.post__lh {
    position: relative;
    display: flex
;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0 0;
}
.post__lh>li {
    margin-bottom: 10px;
    display: flex
;
    align-items: center;
}

.post__lh>li .ic {
    margin-top: -0.3rem;
    margin-right: 0.2rem;
}
.post__lh>li>a {
    color: #444;
    font-size:0.9rem;
    line-height: 1.5;
    font-family:'InterM'
}
.post__lh>li>a:hover{
    color:var(--color-2);
}
.tit_pageDt{
    font-size:1.5rem;
    font-family:'InterB';
    color:#333;
    line-height:1.3;
}
.tit_aside{
    color:#fff;
    text-align:center;
    background-color:var(--color-1);
    text-transform:uppercase;
    font-size:1.2rem;
    line-height:1.4;
    padding:0.3rem 0;
}
.list_hot > li > a{
    display:flex;
    justify-content:flex-start;
    align-items:flex-start;
}
.list_hot > li {
    margin-bottom:0.5rem;
}
.list_hot > li > a img{
    width:5rem;
    margin-right:0.4rem;
}
.list_hot > li > a h5{
    font-size:0.85rem;
    line-height:1.3;
    font-family:'InterM';
    color:#444;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:4;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list_hot > li > a:hover h5{
    color:var(--color-2);
}
.the_datedt{
    color:#999;
    font-size:0.8rem;
    letter-spacing:0.1rem;
    border-bottom:1px solid #ddd;
    padding-bottom:0.4rem;
    font-family:'InterM';
    line-height:1;
}
.the_datedt .ic{
    margin-right:0.3rem;
}
.the_datedt .ic svg{
    margin-top:-0.3rem;
}
.list_searchs{
    display:grid;
    grid-template-columns:1fr;
    grid-gap:0.5rem;
}
.list_searchs .item_rs{
    padding-bottom:1rem;
    border-bottom:1px solid #ccc;
}
.list_searchs .item_rs h4{
    line-height:1;
}
.list_searchs .item_rs h4 a{
    color:var(--color-1);
    font-size:1.1rem;
    font-family:'InterM';
}
.list_searchs .item_rs .the_content,.list_searchs .item_rs .the_content *{
    font-size:0.85rem;
    line-height:1.4;
}
.list_searchs .item_rs h4 a:hover{
    color:var(--color-2);
}
.grid-medias{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-gap:1.2rem;
}
.grid-medias .the_tit{
   font-size:1rem;
   font-family:'InterM';
   line-height:1.3;
   color:#333;
   text-align:center;
}
.grid-medias .the_tit:hover{
    color:var(--color-1);
}
.tit_kg{
    color:red;
    font-size:1.2rem;
    text-transform:uppercase;
    font-family:'InterM';
}

.ic_toggleSearch{
    display:none;
}

    .pn-contact .container{
        max-width:800px;
    }
    .pn-contact{
        padding: 10rem 0;
        background:url(templates/images/bg_lookup.jpg)no-repeat top center!important;
        background-size:cover;
    }
    .btn__contact{
   background-color:var(--color-1);
   color:#fff;
}
.btn__contact:hover{
    color:var(--color-2);
}
#contact-form input.form-control{
    height:3rem;
}

.class__33  ul,.class__65 ul{
    min-width:150px;

}
.class__33 > ul,.class__65 > ul{
 right:0;
    left:unset;
}

.typography img{
    height:auto!important;
    max-width:100%!important;
}

.typography table td,.typography table th{
    padding:0.4rem!important;
}

.capitalize-first {
  text-transform: lowercase;      /* hạ tất cả về chữ thường */
}

.capitalize-first::first-letter {
  text-transform:uppercase;      /* chỉ viết hoa ký tự đầu tiên */
}

.typography table{
    line-height:1.2;
    font-size:0.825rem;
}
.typography .table-responsive{
    padding-bottom:0.5rem;
}


/* m_menu.php*/
/* m_menu.php*/


.close__menu {
    height: 1rem;
}

.title-rpmenu {
    padding:0.2rem 0.2rem;
    color: var(color-1);
    font-size: 1rem;
    position: relative!important;
    z-index: 999;
    display: flex;
    flex-direction: column;
    top: unset!important;
    right: unset!important;
}

.rp-name {
    font-size: 1.2rem;
    line-height: 1rem;
}

.title-rpmenu .icon-bar:last-child {
    margin-bottom: 0;
}

.title-rpmenu .wrap {
    display: flex;
    flex-direction: column;
    position: relative;
}

.title-rpmenu .icon-bar {
   width:2rem;
    height: 0.25rem;
    background: var(--color-1);
    float: left;
    clear: both;
    margin-bottom: 0.35em;
    border-radius: 0px;
    overflow: hidden;
}

#responsive-menu .content ul li span.gg {
    display: none;
}

#responsive-menu .close {
    position: absolute;
    top: 5px;
    right:5px;
    font-size:3rem;
    z-index: 99991;
    opacity: 1;
    font-weight:600;
    color: #fff;
    background: transparent;
    border-color: transparent;
    padding: 0;
}

#responsive-menu {
    border-top: none;
    width: 100%;
    overflow: hidden;
    background:var(--color-1);
    position: absolute;
    z-index: 9999;
    display: none;
    left: 0;
    top: 0!important;
}


/* #responsive-menu.show {
    display: block;
} */

#responsive-menu .search {
    position: relative;
    padding: 0 5px;
    margin-top: 25px;
}

#responsive-menu .content {
    float: right;
    width: 100%;
}

#responsive-menu .content ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

#responsive-menu .content>ul {
    padding: 0;
    margin: 0;
}

#responsive-menu .content .toggle-menu {
    float: right;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 10px;
}

#responsive-menu .content .toggle-menu i {
    font-size: 16px;
    font-weight: 500;
    transition: .4s all;
}

#responsive-menu .content ul li a {
    color: #FFFFFF;
    font-size: 1rem;
    padding-left: 10px;
    display: block;
    max-width: calc(100% - 15px);
    line-height:1.2
}

#responsive-menu .content ul li {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(247, 246, 246, 0.25);
    position: relative;
    cursor: pointer;
    float: none;
}

#responsive-menu .content ul li a {
    line-height: 40px;
}

#responsive-menu .content ul li:last-child {
    border-bottom: none;
}

#responsive-menu .content ul li:hover {
    background:var(--color-1);
}

#responsive-menu .content ul li ul {
    display: none
}

#responsive-menu .content li li:first-child {
    border-top: 1px solid #c4c4c4;
}

#responsive-menu .content>ul>li ul {
    position: relative;
}

#responsive-menu .content>ul li ul li {
    text-indent: 10px;
}

#responsive-menu .content>ul li ul li a {
    font-size:0.9rem;
    text-transform: capitalize;
}

#responsive-menu .content>ul li ul li ul li {
    text-indent: 10px
}

#responsive-menu .content>ul li ul li ul li a {
    font-size:0.9rem;
    text-indent:1rem;
}

.res__head {
    padding: 0.3rem 0.5rem;
    text-align:center;
}

.res__search {
    padding: 5px 10px;
}

.res__head span {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.res_search {
    padding: 1rem 1rem;
}

.res_search form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.res_search form input {
    height: 3.6rem;
    width: calc(100% - 5rem);
    font-size: 1.6rem;
    padding-left: 1rem;
    outline: none;
    border-color: transparent
}

.res_search form button {
    height: 3.6rem;
    background-color: var(--color-4);
    color: #fff;
    outline: none;
    box-shadow: unset;
    font-size: 1.6rem;
    border-color: transparent;
    width: 5rem;
}

.res_action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1rem;
}

.res_action a img {
    height: 3rem;
    margin-right: 0.5rem;
}

.m__menu{
    display:none;
}

/* End m_menu.php */


.page-link{
    color:var(--color-1);
}
.page-item.active .page-link{
    background-color:var(--color-1);
    border-color:var(--color-1);
}

@keyframes pulse-animation{
	0%{

		transform: scale(1);
		opacity: .6;
    }
    40%{

		transform: scale(1.3);
		opacity: .6;
	}

	100%{
		transform: scale(2);
		opacity: 0;
	}
}

/* Áp dụng cho class .table-responsive của bạn */
.table-responsive {
  /* Bắt buộc phải có thuộc tính này để thanh cuộn xuất hiện */
  overflow-x: auto;

  /* --- Dành cho Firefox --- */
  scrollbar-width: thin; /* Có thể là 'auto', 'thin', hoặc 'none' */
  scrollbar-color: #888 #f1f1f1; /* [màu của thumb] [màu của track] */
}

/* --- Dành cho các trình duyệt WebKit (Chrome, Safari, Edge, Opera) --- */

/* 1. Tùy chỉnh toàn bộ thanh cuộn */
.table-responsive::-webkit-scrollbar {
  height: 8px; /* Đối với thanh cuộn ngang */
  width: 8px;  /* Đối với thanh cuộn dọc */
}

/* 2. Tùy chỉnh phần rãnh (track) của thanh cuộn */
.table-responsive::-webkit-scrollbar-track {
  background: #f1f1f1; /* Màu nền của rãnh */
  border-radius: 10px;
}

/* 3. Tùy chỉnh con trượt (thumb) - phần có thể kéo đi */
.table-responsive::-webkit-scrollbar-thumb {
  background: #888; /* Màu của con trượt */
  border-radius: 10px;
}

/* 4. Tùy chỉnh con trượt khi rê chuột vào (hover) */
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #555; /* Đổi màu khi hover để tăng tương tác */
}


@media screen and (min-width:1600px) {

}

@media screen and (min-width:1250px) {
  .typography .table-responsive table{
     max-width:100%!important;
  }
}
@media screen and (max-width:1400px) {
   #nav_main > li{
      padding: 0 0.5rem;
   }
}
@media screen and (max-width:1200px) {
 .container{
        max-width:98%;
    }
}
@media screen and (max-width:1200px) {

   .grid_ctdt{
        grid-template-columns:1fr 1fr 1fr;
    }
     #nav_main > li{
      padding: 0 0.3rem;
   }
}
@media screen and (max-width:1024px) {
    .box-menu{
        display:none;
    }
    .m__menu {
        display: block;
        width:2.5rem;
    }
    .box-cp-social{
        display:none;
    }
    .menu-toggle{
        display:inline-block;
        padding-right:0;
    }
    .df-bh .right{
        width:5rem;
        display:flex;
        justify-content:flex-end;
        align-items:center;
    }
}
@media screen and (max-width:991px) {
  #navbarsTs .nav-item{
    border-bottom:1px solid #ddd;
  }
   #navbarsTs .nav-item:last-child{
    border-bottom:transparent;
   }
   .df-bh .center{
     padding:0 0.5rem;
   }
}
@media screen and (max-width:850px) {
   .grid_ctdt{
        grid-template-columns:1fr 1fr;
    }
    .grid-medias{
        grid-template-columns:1fr 1fr 1fr;
    }
}
@media screen and (max-width:768px) {

    .typography table{
        max-width:100%!important;
         width: 100%;
        border-collapse: collapse;
        white-space: nowrap;
    }

}
@media screen and (max-width:650px) {
    .tit_pageDt{
        font-size:1.3rem;
        margin-bottom:1rem;
    }
    .tit_timeline{
        font-size:1.6rem;
    }
    .wrap_video{
        padding-bottom:60%;
    }
    .block_tit .tit_h2{
        font-size:1.4rem;

    }
    .ts-top .the_title a{
        font-size:1.2rem;
        -webkit-line-clamp:3;
    }
    .item_news_2 .cont .the_tit a{
        font-size:1rem;
    }
    .item_news_2 .cont .the_excerpt{
        -webkit-line-clamp:4;
    }
    .item_news_2 .cont{
        width:80%;
    }
    .tab-auto{
        overflow-y:auto;
    }
    .inner-tabs .tabs{
        min-width:500px;
    }
    .inner-tabs .tab{
        min-width:unset;
        padding:7px 14px;
    }
    .pn-contact{
        padding:2rem 0!important;
    }
    .pn-foot,#pn-dktv,.pn-ts,.pn-connect,.pn-ctdt,.pn-Specialized,.pn-lookup{
        background-size: cover!important;
        background-repeat: no-repeat!important;
        background-position: 50% 50%!important;
    }
    .box-ads-action .bt{
        font-size:0.8rem;
    }
    .box-inner{
        padding:1rem 0;
    }
   .grid_hssv_2{
    grid-template-columns:1fr;
   }
   .ts-bottom{
    grid-template-columns:1fr;
   }
   .img_dktv{
     max-height:15rem;
   }
   .df-bh .center{
      width:3rem;
   }
   .box-search{
     position:absolute;
     right:0;
     top:100%;
     width:14rem;
     z-index:-1;
     opacity:0;
     visibility:hidden;
   }
   .box-search.open{
    z-index:2;
    visibility:visible;
    opacity:1;
   }
   .ic_toggleSearch{
    display:inline-block;
    margin-right:8px;
   }
   .gird_sb-ab{
       grid-template-columns:1fr;
   }
}
@media screen and (max-width:576px) {
    .gird_sb-ab .item.item2 .wrapper{
        margin-left:0;
        margin-right:0;
        margin-top:1.5rem;
        margin-bottom:1.5rem;
    }
   .gird_programs{
     grid-template-columns:1fr;
   }
   .pn-breadcrumb{
     overflow-y:auto;
   }
   .pn-breadcrumb .breadcrumb{
      min-width:420px;
   }
   .breadcrumb > li > a{
    font-size:0.8rem;
   }
   .tit_page{
    font-size:1.4rem;
   }
   .block-tit > h2{
    font-size:1.4rem;
   }
   .grid-medias{
    grid-template-columns:1fr 1fr;
   }
   .block_tit .tit{
    font-size:1.4rem;
    text-align:left;
   }
   .block-tit{
    flex-direction:column;
    justify-content:flex-start;
    align-items:flex-start;
    margin-bottom:1rem;
   }
   .post__lh>li>a{
    font-size:0.8rem;
    line-height:1.2;
   }
}
@media screen and (max-width:440px) {
    .typography table td *, .typography table th *{
        font-size:13px!important;
    }
    .pn-heading-ts p{
        font-size:0.8rem;
    }
    .item-ts-xs .info-xs .the_title a{
        line-height:1.2;
    }
    .item-ts-xs .info-xs .the_date{
        line-height:1;
        font-size:0.7rem;
    }
    .item-ts-xs .info-xs .the_excerpt{
        font-size:0.7rem;
    }
    .ts-top .the_date{
        font-size:0.8rem;
        line-height:1;
        margin:0 0 0.2rem 0;
    }
    .ts-top .the_title a{
        font-size:1rem;
    }
    .ts-top .the_excerpt{
        font-size:0.8rem;
    }
    .item-nh .wrap-nd{
        padding:0.7rem;
    }
    .item_hssv .the_date{
        font-size:0.6rem;
        margin-bottom:0;
    }
    .item_hssv .the_title{
        margin-top:-0.2rem;
        margin-bottom:0;
    }
    .item_hssv .img{
        padding-bottom:80%;
    }
    .tit_pageDt{
        font-size:1.4rem;
    }
    .row__post__lh{
        margin-top:1rem;
        margin-bottom:0;
    }
    .pn-breadcrumb .container{
        width:100%;
        padding:0 5px;
    }
    .item_hssv .the_title a{
        font-size:0.8rem;
    }
    .grid-medias .the_tit{
        font-size:0.9rem;
    }
    .item_hssv .the_excerpt{
        -webkit-line-clamp:2;
        margin-bottom:0;
    }
    .grid_ctdt{
        grid-template-columns:1fr;
        grid-gap:0.5rem;
    }
    .img_dktv {
        max-height: 10rem;
    }
    .pn-boxAbout .tit_ab{
        font-size:1.4rem;
    }
    .pn-boxAbout .sub_tit{
        font-size:1.2rem;
    }
    .block-tit > h2{
        font-size:1.4rem;
    }
    .grid_ctdt > .item_ctdt img{
        width:2.5rem;
        height:2.5rem;
    }
    .list_tvdt > li h4{
        font-size:0.9rem;
    }
    .row_download{
        line-height:1.1;
    }
    .grid_ads_ts .item .the_tit{
        font-size:0.9rem;
    }
}
@media screen and (max-width:416px) {
    .d-frmTv{
        flex-direction:column;
    }
    .d-frmTv #b-sendtv{
        padding:1rem 1rem;
        margin-top:0.5rem;
    }

}
@media screen and (max-width:390px) {

}
@media screen and (max-width:360px) {

    .grid-medias{
    grid-template-columns:1fr;
   }

}


