:root {
  --color-1: rgba(22, 63, 119, 1);
  --color-2: rgba(251, 207, 0, 1);
  --color-3: #005ae0;
  --color-4: #1e293b;
  --color-5: #fffcf4;
  --trans: all 350ms ease-in-out;
}

@font-face {
  font-family: "LexendDeca-R";
  src: url(templates/fonts/LexendDeca-Regular.ttf);
}

@font-face {
  font-family: "LexendDeca-M";
  src: url(templates/fonts/LexendDeca-Medium.ttf);
}

@font-face {
  font-family: "LexendDeca-B";
  src: url(templates/fonts/LexendDeca-Bold.ttf);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "LexendDeca-R", sans-serif !important;
  transition: var(--trans);
  max-width: 1920px;
  line-height: normal;
  margin:0 auto;
}
a {
  text-decoration: none;
}
a,
a:hover {
  transition: all 150ms ease-in-out;
}
.breadcrumb .breadcrumb-item.active a {
  color: #fff;
}
.breadcrumb a,.breadcrumb-item+.breadcrumb-item::before{
  color:#fff;
}
p {
  margin-bottom: 0.4rem;
}

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

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

.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;
}

.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;
}
.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;
}
.box-heading .logo img {
  max-height: 6rem;

}
.site-slider {
  max-height:70vh;
  overflow: hidden;
  position:relative;
}
.site-slider:before{
  position:absolute;
  content:'';
  top:0;
  left:0;
  height:2rem;
  width:100%;
  z-index:99;
  background:url(templates/images/line-main.png)repeat-x;
}
.site-slider:after{
  position:absolute;
  content:'';
  bottom:-0.5rem;
  left:0;
  height:2rem;
  width:100%;
  z-index:99;
  background:url(templates/images/line-bottom.png)repeat-x;
}
.item-slide {
  width: 100%;
  height:70vh;
}
.item-slide img.full_width {
  width: 100%;
  height:70vh;
  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:#222;
  display: block;
  line-height: 3rem;
  font-size:1rem;
  text-transform: uppercase;
  font-family:'LexendDeca-M';
}
#nav_main > li.current > a,
#nav_main > li:hover > a {
  color: var(--color-2);
}
#nav_main > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  min-width: 240px;
  max-width: 1000px;
  width: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.2rem;

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

#nav_main > li.last-item > ul{
  right:0;
  left:unset;
}

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

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

#nav_main > li > ul > li > a {
  display: block;
  line-height: 1.3;
  padding: 0.5rem 0.7rem;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  flex-grow: 1;
  white-space: nowrap;
}
#nav_main > li > ul > li:hover > a {
  color: var(--color-2);
}
#nav_main > li > ul > li {
  position: relative;
  display: block;
}

#nav_main > li > ul > li > ul {
  position: absolute;
  top: 0;
  left: 100%; /* hiện bên phải */
  transform: translateX(10px); /* hiệu ứng trượt */
  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 > a {
  color: var(--color-2);
}
.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: "LexendDeca-B";
  color: var(--color-1);
  text-transform: uppercase;
  margin-bottom: 0;
}
.block-tit > a {
  color: var(--color-1);
  font-family: "LexendDeca-M";
  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: "LexendDeca-M";
  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%;
  left: 0;
  top: 0;
  object-fit: cover;
  border-radius: 0.2rem;
}
.item_hssv .the_title {
  margin-bottom: 0.3rem;
  line-height: 1;
}
.item_hssv .the_title a {
  font-size: 0.9rem;
  line-height: 1.3;
  color: #222;
  font-family: "LexendDeca-M";
  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: "LexendDeca-M";
}
.item_hssv .the_link a:hover {
  color: var(--color-2);
}
.item_hssv .the_link {
  text-align: right;
  margin-bottom: 0;
  padding-right: 1rem;
}

.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;
  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: "LexendDeca-M";
  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: "LexendDeca-M";
  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: "LexendDeca-B";
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pn-boxAbout .tit_ab {
  font-size: 1.6rem;
  color: var(--color-1);
  font-family: "LexendDeca-B";
  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: "LexendDeca-M";
  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: "LexendDeca-M";
  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: "LexendDeca-M";
  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: "LexendDeca-M";
}

.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: "LexendDeca-B";
  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: "LexendDeca-M";
}
.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: "LexendDeca-B";
  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: "LexendDeca-M";
}
.list_dkct > li > .info {
  width: calc(100% - 2.7rem);
}
.list_dkct > li a {
  font-size: 1rem;
  color: #fff;
  font-family: "LexendDeca-M";
  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);
}

.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: "LexendDeca-B";
  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: "LexendDeca-M";
  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: "LexendDeca-M";
  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: "LexendDeca-B";
  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 img {
  width: 100% !important;
  height: auto !important;
}
.pn-breadcrumb .breadcrumb {
  justify-content:flex-start;
  margin-bottom:0;
}

.pn-breadcrumb a{
  color:#003366;
}
.pn-breadcrumb .breadcrumb-item.active a{
  color:var(--color-1);
}

.tit_page {
  text-align: center;
  color: var(--color-1);
  text-transform: uppercase;
  font-size: 2.2rem;
  line-height:1.3;
  font-family: "LexendDeca-B";
  padding-top:1rem;
}
.pn-about_1 {
  background-size: cover !important;
}

.block_tit .sub_1 {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--color-1);
  font-family: "LexendDeca-B";
}
.block_tit .tit {
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-1);
  font-family: "LexendDeca-B";
}
.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: "LexendDeca-B";
  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: "LexendDeca-B";
  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: "LexendDeca-B";
  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: 1rem;
  line-height: 1.625;
}

.typography img{
   height:auto!important;
}
.pn-breadcrumb {
  padding: 0.3rem 0;
  margin-bottom: 0.4rem;
  margin-top:0.5rem;
}
.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;
}

.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: "LexendDeca-B";
}

.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: "LexendDeca-B";
  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: "LexendDeca-M";
  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: "LexendDeca-M";
}
.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: "LexendDeca-M";
  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: "LexendDeca-M";
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.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: "LexendDeca-M";
}
.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: "LexendDeca-M";
  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: "LexendDeca-M";
  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: "LexendDeca-M";
}
#navbarsTs .nav-link:hover {
  color: var(--color-2);
}

#contact-form .form-group {
  position: relative;
}
#contact-form .form-group label.error {
  color: red;
  font-size: 0.8rem;
  position: absolute;
  right: 10px;
  top: 0.7rem;
}

/* Luat */
.heading-top {
  background-color: var(--color-1);
}
.logo img {
  max-height:7rem;
  max-width: 20rem;
  transition: max-width 0.35s ease;
}
.btn-book-app {
  background-color: var(--color-2);
  color: #333;
  border-radius: 0.3rem;
  text-transform: uppercase;
  font-size:1rem;
  padding:0.5rem 3rem;
  display:block;
  width:100%;
}
.btn-book-app:hover {
  color: #fff;
}
.btn-book-app.btn-book-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
.bt_normal{
  background-color:var(--color-2);
  color:#fff;
  padding:0.5rem 1rem;
  border-radius: 50px;
  border-right: 2px solid #C5A405;
  border-bottom: 2px solid #C5A405;
  border-left: 1px solid #C5A405;
  background: #FBCF00;
}
.bt_normal:horver{
  color:var(--color-1);
}
.sub_line_img > p{
  color:var(--color-1);
  font-family:'LexendDeca-B';
  font-size:1.2rem;
}
.sub_line_img{
  display:flex;
  align-items:center;
  margin-bottom:1rem;
}
.sub_line_img #vt_7{
  margin-bottom:-40px;
  margin-left:15px;
}
.sub_line_img p{
  margin-bottom:0;
}

.content-program{
    position:relative;
    padding:10%;
}
.content-program .wrapper-border{
   position:relative;
   width:100%;
   height:0;
   padding-bottom: 100%;
   /* border:3px solid rgba(22, 63, 119, 0.5); */
   border-radius:50%;
   inset: -3px;
}

.content-program .wrapper-border::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(22, 63, 119, 0.2),
        rgba(22, 63, 119, 1),
        rgba(22, 63, 119, 0.2)
    );
    animation: spin 3s linear infinite;
}

.content-program .wrapper-border::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #fff; /* nền bên trong */
    border-radius: 50%;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#vt_7 path {
  stroke-dasharray: 4 4;
  animation: dashMove 1.5s linear infinite;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -20;
  }
}

.tit_normal {
  font-size:1.8rem;
  font-family: "LexendDeca-B";
  color:#222;
}
.w-border-bottom {
  border-bottom: 0.2rem solid #e58804;
}
.tit_normal .w-border-bottom {
  line-height: 1.3;
  padding-bottom: 0.5rem;
  font-size: 1.8rem;
}
.pn-about .cont {
  color: #666;
}
.pn-about .cont * {
  line-height: 1.6225;
}
.pn-about .nd {
  padding-right:3rem;
}
.pn-about-bg {
  height:200px;
  background-size: cover !important;
  background-attachment: fixed !important;
}
.tit_bl {
  text-transform: uppercase;
}
.img_fullWidth {
  width: 100%;
}
.container {
  max-width: 1400px;
}

.item-feedBack {
  background-color: #eaeaea;
  border-radius: 0.2rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  margin: 0.5rem 0;
}
.item-feedBack .avatar {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  border-radius: 50%;
 box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;

  display: inline-block;
  margin: 0 auto;
}
.item-feedBack .cont {
  text-align: justify;
  color: #555;
  line-height:1.625;
}
.tit-feed {
  color: var(--color-1);
  text-align: center;
  font-family: "LexendDeca-M";
  font-size: 1rem;
}
.item-whyc {
  display: flex;
  align-items: center;
  justify-content:flex-start;
}
.item-whyc .box-ic {
  width: 4rem;
  height: 4rem;
  display: inline-block;
  background-color: var(--color-1);
  border-radius: 50%;
  padding: 0.7rem;
  margin-right:0.5rem;
}
.item-whyc h4 {
  max-width: calc(100% - 4.5rem);
  display: inline-block;
  font-size: 0.9rem;
  font-family: "LexendDeca-M";
}
.wrapper-form {
  max-width: 600px;
  margin: 3rem auto;
  background-color:#fff;
  border-radius:0.5rem;
}

    /* Container for the whole section */
.video-intro {
    position: relative;
    width: 100%;
    height:100%; /* Full viewport height */
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    overflow: hidden;
    min-height:60vh;
}

/* The Video Styling */
.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crucial: Prevents stretching */
    z-index: -2; /* Puts video behind everything */
}

/* Dark Overlay (Optional) */
.pn-frmAdv .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% opacity black */
    z-index: -1;
}

.pn-frmAdv{
  position:relative;
}
.pn-frmAdv .form-control {
  border-color: var(--color-1);
}

#frmAdv_01 label.error,
#frmAdv_02 label.error {
  color: red;
  font-size: 0.8rem;
}

.not-home {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.25);
}
.gird_foot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap:2rem;
}
.gird_foot > .item{
  width:25%;
}

.row-foot .nd{
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height:1.5;
  font-size:0.9rem;
}
.pn-footer {
   position:relative;
   background-color:var(--color-1);
   color:#fff;
}
.foot_logo {
  max-height: 4rem;
}
.foot_tit {
  font-size: 1.3rem;
  font-family: "LexendDeca-M";
  position: relative;
  padding-bottom: 0.5rem;
  line-height:1.3;
}
.gird_foot .nd,
.gird_foot .nd * {
  font-size: 0.9rem;
  color: #fff;
  padding:0;
}
.btn-zalo-oa {
  color: #fff !important;
  background-color: var(--color-1);
  text-transform: uppercase;
  padding: 0.7rem 1rem !important;
  border-radius: 0.4rem;
}
.pn-supFixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  background-color: #f5f5f7;
  padding: 0.3rem 1rem 0 1rem;
  width: 100%;
  height: 70px;
  box-shadow: 0 -4px 7px -4px rgba(0, 0, 0, 0.25);
}
.pn-supFixed p {
  margin-bottom: 0;
  line-height: 1;
}
p.htv {
  color: var(--color-1);
  font-family: "LexendDeca-M";
}
a.a_htv {
  color: var(--color-1);
  font-family: "LexendDeca-M";
  font-size: 2rem;
  letter-spacing: 0.05rem;
  line-height: 1.2;
}
.foot_social {
  display: flex;
  justify-content:flex-start;
  align-items: center;
}
.foot_social > li {
  display: inline-block;
  margin-left: 0.2rem;
}
.foot_social > li img {
  width: 2rem;
  height: 2rem;
}
.btn_htv {
  color: #fff;
  font-family: "LexendDeca-M";
  font-size:0.95rem;
  text-transform: capitalize;
  line-height: 1.2;
  padding: 0.7rem 1rem;
  display: inline-block;

  margin-top: 0.2rem;
}
.btn_htv:hover {
  color: #fff;
}
.btn_htv_1 {
  background-color: var(--color-3);
}
.btn_htv_2 {
  background-color: var(--color-1);
}
.mw-1000 {
  max-width: 1000px;
  margin: 0 auto;
}
.pn-boxAb h2 {
  font-size: 1.2rem;
  font-family: "LexendDeca-M";
}
.pn-boxAb .cont {
  line-height: 1.625;
}

.block_tit .tit_c {
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--color-1);
  font-family: "LexendDeca-M";
}
.block_tit .block-desc {
  color: #666;
  line-height: 1.6;
}
.item_core {
  border: 1px solid #999;
  border-radius: 1rem;
  min-height: 400px;
  overflow: hidden;
}

.item_core:hover {
  background-color: transparent;
  background-image: linear-gradient(180deg, #f2fcfe 96%, #0396c2 96%);
  box-shadow: 1px 4px 35px 0px rgba(0, 0, 0, 0.04);
}
.item_core .cont {
  line-height: 1.625;
}
.tit_item_core {
  font-size: 1.6rem;
  font-family: "LexendDeca-M";
}
.tit_question {
  font-size: 2.4rem;
  font-family: "LexendDeca-M";
}
.tit_widget {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
}
.box-widget-bg {
  background-color: #f8f8f8;
  border-radius: 0.3rem;
}
.box-widget-bg h3 a {
  color: var(--color-2);
  font-size: 1.1rem;
  font-family: "LexendDeca-M";
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.box-widget-bg h3 a:hover {
  color: var(--color-1);
}
.list-post-widget {
  padding-left: 0.5rem;
}
.list-post-widget > li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #ccc;
}
.list-post-widget > li > a {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #444;
  position: relative;
  padding-left: 1.5rem;
}
.list-post-widget > li > a:before {
  content: "➜";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #54595f;
  position: absolute;
  left: 0;
  top: 0.1rem;
}
.list-post-widget > li > a:hover {
  color: var(--color-3);
}
.nav-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.nav-menu > li {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  position: relative;
  border-radius:0.3rem;
}
.nav-menu > li > a {
  color: var(--color-1);
  font-size:0.9rem;
  font-family: "LexendDeca-M";
  position: relative;
  z-index: 9;
  display: inline-block;
  line-height: 1;
}
.nav-menu > li:before {
  position: absolute;
  z-index: 1;
  width: 0;
  height: 100%;
  top: 0;
  content: "";
  background-color: var(--color-4);
  transition: 0.3s;
  transition-timing-function: cubic-bezier(0.58, 0.3, 0.005, 1);
}
.nav-menu > li:hover:before {
  left: 0;
  width: 100%;
  opacity: 1;
}
.nav-menu > li.current:before {
  left: 0;
  width: 100%;
  opacity: 1;
}
.nav-menu > li:hover > a,
.nav-menu > li.current > a {
  color: #fff;
}
.box-nav {
  border-bottom: 0.1rem solid #ccc;
  margin-bottom:2rem;
  padding-bottom:0.3rem;
}
.post_item {
  display: flex;
  justify-content: space-between;
  padding:10px 0;
}
.r-line{
  //border-right:1px solid #AAA;
}
.post_item .img {
  width: calc(45% - 0.5rem);
}
.post_item .post_text {
  width: calc(55% - 0.5rem);
}
.post_item .post_text .post_title {
  line-height: 1;
  margin-bottom: 0.2rem;
}
.post_item .post_text .post_title a {
  font-size:0.98rem;
  color: var(--color-1);
  font-family: "LexendDeca-M";
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post_item .post_text .post_title a::first-letter{
  text-transform:uppercase;
}
.post_item .post_text .post_title a:hover {
  color: var(--color-2);
}
.post_item .post_text .post__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
.post_item .post_date {
  color: #888;
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
}
.post_item .post__read-more {
  color: var(--color-1);
  font-size: 0.9rem;
  font-family: "LexendDeca-M";
  margin-bottom: 0;
}
.post_item .post__read-more:hover {
  color: var(--color-2);
}
.df-contact-b1 > .item {
  width: calc(33.33% - 1rem);
}
.wrap-map {
  position: relative;
  height: 0;
  padding-bottom: 100%;
}
.wrap-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.df-contact-b1 .wrap-info {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-color: var(--color-1);
  border-radius: 0.1rem;
}
.df-contact-b1 .wrap-info .inner {
  padding: 1rem;
  color: #fff;
  line-height: 1.625;
}
.df-contact-b2 > .item {
  width: calc(50% - 1rem);
}
.df-contact-b2 .cont {
  font-size: 1.6rem;
  font-family: "LexendDeca-M";
  color: var(--color-2);
  text-align: center;
}
.list-box-2 > li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 0.5rem;
}
.list-box-2 > li img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.list-box-2 > li p {
  line-height: 1.2;
}
.box-contact-form {
  background-color: #003366;
  border-radius: 0.5rem;
  padding: 20px;
  color: #fff;
}
.pn-thanks {
  background-color: #ffc501;
}
.pn-thanks .nd {
  line-height: 1.625;
}
#myFormAdv.fancybox-content {
  padding: 30px 50px !important;
  border-radius: 0.4rem;
  min-width: 30vw;
}
#myFormAdv .card {
  border-color: transparent;
}

#myFormAdv .fancybox-close-small {
  background-color: var(--color-1);
  color: #fff;
  border-radius: 50%;
  opacity: 1;
  top: 5px;
  right: 5px;
}
.btn-send-tv {
  background-color: var(--color-1);
  color: #fff;
}
.btn-send-tv:hover {
  color: #fff;
}

.df-dtRightSideBar .widget-box-main {
  width: calc(66.66% - 1rem);
  padding-right: 0.7rem;
}
.df-dtRightSideBar .widget-box-sideBar {
  width: 33.33%;
}
.post-title h1 {
  font-family: "LexendDeca-B";
  color: var(--color-1);
  line-height: 1.2;
  font-size: 2.2rem;
}
.post-excerpt {
  line-height: 1.4;
  color: #222;
  font-size: 1.1rem;
}
.post-text-editor h2 {
  font-size: 1.6rem;
  font-family: "LexendDeca-M";
  line-height: 1.3;
  color:#035b86;
}
.post-text-editor h3 {
  font-size: 1.4rem;
  font-family: "LexendDeca-M";
  line-height: 1.3;
}
.post-text-editor h4 {
  font-size: 1.2rem;
  font-family: "LexendDeca-M";
  line-height: 1.3;
}
.post-featured-image img {
  width: 100%;
}
.box-grid {
  margin: 1rem 0;
}
.list-PostHot > li {
  margin-bottom: 1.5rem;
  border-bottom: 0.1rem solid #1e293b;
}
.list-PostHot > li h4 {
  line-height: 1;
}
.list-PostHot > li a {
  color: #1e293b;
  line-height: 1.4;
  font-size: 0.9rem;
  font-family: "LexendDeca-M";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-PostHot > li a:hover {
  color: var(--color-3);
}
.f_sideBar {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.box-grid .bg-form {
  background-color: #ffd43b;
  padding: 0.5rem 0.5rem 2rem 0.5rem;
  line-height: 1.625;
  border-radius: 0.2rem;
}
.box-grid .box-form {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.box-grid.post_rel {
  background-color: #ededed;
}
.post_rel {
  padding: 1rem 0.5rem 1rem 1rem;
  border-radius: 0.2rem;
}
.post_rel .tit_rel_cate {
  font-size: 1.4rem;
  color: var(--color-2);
  font-family: "LexendDeca-M";
}
.list-rel > li {
  margin-bottom:0.7rem;
}
.list-rel > li > a {
  color: #444;
  line-height: 1.4;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-rel > li > a:hover{
  color:var(--color-2);
}
.siteBarVideo {
  position: relative;
  height: 0;
  padding-bottom: 150%;
}
.siteBarVideo iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.rating_dk{
  font-size:0.9rem;
}
.tit_faq{
  font-size:1.4rem;
  font-family: "LexendDeca-M";
}
.post-banner .wrap-bg {
  position: relative;
  height: 0;
  padding-bottom: 50%;
  background-size: cover !important;
}
.post-banner .wrap-bg .content {
  padding: 2rem;
  color: #fff;
  line-height: 1.625;
}

.post-text-editor blockquote {
  background-color: #e9e9e9ee;
  padding: 1rem;
  border-left: 5px solid #fff302;
}

/**/
.faq-container {
  padding: 10px 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
  background: #f8f9fa;
  padding:7px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size:1rem;
  color: #333;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #667eea;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  background: white;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  padding:15px 15px;
  max-height: 500px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  font-size:0.9rem;
}
#frm_rating label.error{
    color:red;
    font-size:0.8rem;
    margin-top:0.2rem;
    display:block;
}
#frm_rating .form-control{
    font-size:0.8rem;
}
.author-box .author-box__avatar{
  padding-right:1rem;
}
.author-box .author-box__avatar img{
   width:7rem;
   height:5rem;
   border-radius:1rem;
   object-fit:cover;
}
.author-box  .author-box__name{
  font-size:1.6rem;
  color:var(--color-1);
  font-family: "LexendDeca-M";
}
.author-box__bio{
  font-size:1.1rem;
  color:#666;
}
#page{
  min-height:100vh;
}
.author-blog_item .a-post__title{
  font-size:1rem;
  font-family: "LexendDeca-M";

}
.author-blog_item .a-post__title a{
  color:#444;
   line-height:1.3;
   display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.author-blog_item .a-post__title a:hover{
  color:var(--color-1);
}
.author-blog_item .a-post__meta{
  color:#999;
  line-height:1.3;
  font-size:0.9rem;
}
.a-post__excerpt{
  font-size:0.9rem;
   display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:2;
  overflow: hidden;
  text-overflow: ellipsis;
  color:#555;
  line-height:1.4;
}
.author-blog_item .link a{
   color:var(--color-1);
   font-size:0.8rem;
}
.author-blog_item .link a:hover{
  text-decoration:underline;
}
.tit_r{
  font-size:1rem;
  color:var(--color-1);
  font-family: "LexendDeca-M";
}
.tit_r:hover{
  color:var(--color-3);
}
.tit_rel_p{
  font-size:1.2rem;
}
.inner-bg{
  background-color:#1e293b;
  color:#fff;
  line-height:1.5;
}
.pn-from-adv .title{
   font-size:1.2rem;
   line-height:1.3;
   text-align:center;
}
.pn-from-adv .cont{
  font-size:0.9rem;
}
.box-form-2{
  background-color:#fff;
  padding:1rem 0.5rem;
  border-radius:0.2rem;
  color:#333;
}
#mucluc-pnvn{
  width:100%;
}
.mucluc-pnvn{
  display:none;
}
.ic_toc{
   display:inline-flex;
    align-items: center;
    width: 35px;
    height: 30px;
    justify-content: center;
    border:1px solid #ccc;
    border-radius:0.2rem;
    cursor:pointer;
}
#frmAdv_03 label.error{
  color:red;
  font-size:0.8rem;
}
.df_postTags{
  align-items:flex-start;
}
.df_postTags .head {
    width:6rem;
}
.df_postTags .list {
    width: calc(100% - 6rem);
}
.listTags>li {
    display: inline-block;
    margin: 0 0.2rem 0.5rem 0;
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 0.3rem 0.6rem;
    border-radius: 0.3rem;
}
.listTags>li:hover{
  color:var(--color-1);
  border-color:var(--color-1);
}
.listTags>li>a {
    color: #333;
    font-size:0.9rem;
}
.img-pd{
  position:relative;
  width:100%;
  height:0;
  padding-bottom:100%;
  margin-bottom:1rem;
}
.img-author{
   position:absolute;
   width:100%;
   height:100%;
   left:0;
   top:0;
   object-fit:contain;
   border-radius:50%;
   background-color:#fff;
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.item-user{
  text-align:center;
}
.item-user h4{
  color:#333;
  font-size:1.2rem;
  line-height:1.3;
    font-family: "LexendDeca-M";
}
.item-user p{
  font-size:1rem;
  line-height:1.3;
  color:#555;
}
.item-user:hover h4{
  color:var(--color-1)
}

/* m_menu.php*/
.m__menu {
	display: none;
}

.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);
	margin-bottom: 0.35em;
	border-radius: 0;
	/* 0px -> 0 */
	overflow: hidden;
	/* float: left; và clear: both; đã bị xóa vì không cần thiết trong flexbox */
}

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

#responsive-menu .close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 99991;
	opacity: 1;
	font-weight: 600;
	color: #fff;
	background: transparent;
	border-color: transparent;
	padding: 0;
	display: inline-block;
	line-height: 1;
}

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

/* Đã xóa mã "#responsive-menu.show" bị vô hiệu hóa */

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

#responsive-menu .content {
	/* float: right; đã bị xóa vì width: 100% */
	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: 0;
	/* 0px -> 0 */
	right: 10px;
}

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

/* Đã gộp hai khối định nghĩa cho "...li a" làm một */
#responsive-menu .content ul li a {
	color: #FFFFFF;
	font-size: 1rem;
	padding-left: 10px;
	display: block;
	max-width: calc(100% - 15px);
	line-height: 40px;
	/* Giá trị này ghi đè "line-height: 1.2" */
}

#responsive-menu .content ul li {
	transition: all 0.1s ease;
	/* Đã xóa các tiền tố -moz, -o, -ms */
	border-bottom: 1px solid rgba(247, 246, 246, 0.25);
	position: relative;
	cursor: pointer;
	float: none;
}

#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; đã bị xóa vì kế thừa từ cấp trên */
	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;
}
.post-text-editor h1{
  color:var(--color-1);
  font-family: "LexendDeca-B";
  font-size:2.2rem;
}
.wrap-nd{
   font-size:0.9rem;
   line-height:1.4;
   color:#444;
}
#result > div{
   margin-top:0;
}

.e-con-inner-p {
  display: flex;
  gap: 20px;
}

.e-con-inner-p .e-child {
  flex: 0 0 50%;
}

.e-con-inner-p .e-child:first-child{
  border-right:1px solid #AAAAAA;
}

.mySwiper,
.mySwiper .swiper-wrapper,
.mySwiper .swiper-slide {
  height: 100%;
}

.mySwiper .item-slide{
  position:relative;
}

.mySwiper .content {
  position: relative;
  z-index: 9;
  width: 100%;
  max-width:100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* CHỈNH Ở ĐÂY */
  align-items: flex-start;   /* canh trái */
  justify-content: center;   /* canh giữa theo chiều dọc */
  padding: 0 2rem;
  transition-duration: 2s;
  opacity: 0.1;
  margin: 0 auto;
}
.mySwiper .content:after{
  position:absolute;
  width:100%;
  height:100%;
  content:'';
  left:0;
  top:0;
  background-color:rgba(0, 0, 0, 0.5);
  z-index:-1;
}
.mySwiper .content h2 {
  font-size:2.4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
  pointer-events: none;
  transform: translateY(-40px);
  opacity: 0;
  transition-duration: 1s;
  transition-delay: 0.6s;
  text-transform:capitalize;
  text-align:left;
  font-family: "LexendDeca-M";
}

.mySwiper .content p.desc {
  font-size:1rem;
  line-height: 1.2;
  color: #fff;
  transform: translateY(-30px);
  opacity: 0;
  transition-duration: 1s;
  transition-delay: 1.2s;
  position: relative;
  margin-bottom: 0;
  text-align:left;
}

.mySwiper .swiper-slide-active .content {
  transform: translateX(0%);
  opacity: 1;
}


.mySwiper .swiper-slide-active .content h2,
.mySwiper .swiper-slide-active .content p {
  transform: none;
  opacity: 1;
}

.pn-hotro-m{
  display:none;
  opacity:0;
  visibility:hidden;
  position:fixed;
    width:100%;
    z-index:99;
    left:0;
    bottom:0;
    min-height:3rem;
}

.pn-hotro-m a.btn{
   padding:0.4rem 1rem;
   color:#fff;
   outline:none;
   border-radius:0.5rem;
}
.pn-hotro-m a.btn.btn-zalo{
  background-color:#005AE0;
}
.pn-hotro-m a.btn.btn-call{
  background-color:#61CE70;
}

header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color:#fff;
}
.banner_content_m{
  display:none;
  visibility:hidden;
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:2rem 1rem;
  color:#fff;
  background-color:var(--color-1);
  font-size:1rem;
  line-height:1.4;
}

.custom-alert {
    position: relative;
    text-align: center;
    padding: 30px 20px;
}

.custom-alert .title {
    color: #8b0000;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.custom-alert .title span {
    display: block;
}

.custom-alert p {
    color: #999;
    margin:8px 0;
    font-size: 15px;
}

.custom-alert .btn-action {
    margin-top: 25px;
    background: #0b6fa4;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    display:inline-block;
    line-height:1;
}

.custom-alert .btn-action:hover {
    background: #8b0000;
}

.custom-alert .close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #8b0000;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/**/
.heading-main .container-fluid{
  max-width:1400px;
}

.heading-top a{
  color:#fff;
}
.bt_hotline_top{
  background-color:var(--color-2);
  padding:0.1rem 1rem 0.1rem 0.5rem;
  border-radius:1rem;
  font-size:1.4rem;
}

.df-about{
  align-items:center;
}

.content-program .item{
  width:140px;
  height:140px;
  overflow: hidden;
  border-radius:50%;
  background-color:var(--color-1);
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
  text-align:center;
  align-items:center;
  padding:0.5rem;
  position:absolute;
  z-index:99;
}
.content-program .item img{
   height:40px;
   margin-bottom:5px;
}
.content-program .item h5{
  font-size:0.9rem;
  line-height:1.3;
  margin:0.2rem 0;
}
.content-program .item.item_1{
   left:calc(50% - 70px);
   top:-70px;
}
.content-program .item.item_2{
   right:-45px;
   top:calc(25% - 75px);
}
.content-program .item.item_3{
   right:-45px;
   top:calc(70% - 75px);
}
.content-program .item.item_4{
   left:calc(33.33% - 75px);
   bottom:-50px;
}
.content-program .item.item_5{
  right:calc(33.33% - 75px);
  bottom:-50px;
}
.content-program .item.item_6{
  left:-75px;
  bottom:calc(33.33% - 75px);
}

.content-program .item.item_7{
  left:-45px;
  top:calc(25% - 75px);
}
.cont-center{
  position:absolute;
  z-index:99;
  top:40%;
  width:100%;
  text-align:center;
  font-size:1.6rem;
  color:rgba(231, 221, 13, 1);
  padding:0 20%;
  line-height:1.3;
  font-family:"LexendDeca-B";
}
.cont-center .line-program{
  margin-top:1rem;
}
.line-program{
   display:flex;
   flex-direction:column;
   justify-content:center;
   align-items:center;
}
.line-program img{
  height:36px;
  width:43px;
  margin-top:-2rem;
}

.pn-activity{
   background-color:var(--color-1);
   color:#fff;
   position:relative;
}
.pn-activity .cont{
   max-width:80%;
   line-height:1.5;
}
.pn-activity .swiperAct-next,.pn-activity .swiperAct-prev{
   height:1rem!important;
   color:#fff;
}
.pn-activity .swiperAct-next:after,.pn-activity .swiperAct-prev:after {
  height:1rem!important;
  font-size:1.4rem!important;
}
.pn-activity .swiperAct-next{
  position: absolute;
  right:100px;
  top:7rem;
}
.pn-activity .swiperAct-prev{
  position: absolute;
  right:120px!important;;
  left:unset!important;
  top:7rem;
}
.swiperAct .img_act{
  width:100%;
  height:40vh;
  object-fit:cover;
  border-radius:10px;
  cursor: pointer;
}
.block-title{
  margin-bottom:2rem;
}
.block-title .the-sub{
  color:var(--color-1);
  font-family:'LexendDeca-M';
  font-size:1.4rem;
}
.block-title .the-title{
  font-size:2rem;
  font-family:'LexendDeca-B';
}
.girdWhy{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-gap:2rem;
}
.girdWhy .item{
  display:flex;

  padding:1rem 1rem;
}
.girdWhy .item.width-bg{
  background: url("templates/images/bg-cloud.svg") center / contain no-repeat;
}
.girdWhy .item .left{
  width:5rem;
  color:var(--color-1);
  font-size:2.6rem;
  line-height:1;
  font-family:'LexendDeca-B';
}
.girdWhy .item .right{
    width:calc(100% - 5.5rem);
}
.girdWhy .item .right .the_title{
  font-size:1.1rem;
  font-family:'LexendDeca-B';
}
.girdWhy .item .the_excerpt{
   line-height:1.4;
}
.girdWhy .item .the_excerpt p{
  margin-bottom:0.2rem;
  font-size:0.9rem;
}
.gridCsvc {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gridCsvc  .item {
  /* Mặc định mỗi item ở hàng đầu chiếm 2 cột (6 / 3 = 2) */
  grid-column: span 2;
}

.gridCsvc  .item:nth-child(4) {
  /* Item thứ 4 rộng gấp đôi các item trên -> chiếm 4 cột */
  grid-column: span 4;
}

.gridCsvc  .item:nth-child(5) {
  /* Item thứ 5 chiếm 2 cột còn lại */
  grid-column: span 2;
}

.gridCsvc  .item img{
  width:100%;
  height:30vh;
  object-fit:cover;
  border-radius:10px;
}

.site-reply{
   min-height:60vh;
   position:relative;
}
.sub_img_reply1{
   position:absolute;
   right:5vw;
   top:20px;
   height:7rem;
}
.sub_img_reply2{
   position:absolute;
   left:5vw;
   bottom:20px;
   height:7rem;
}
.item_reply{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:0 12vw;
  text-align:center;
}
.item_reply .img{
  margin:1rem 0;
}
.item_reply .img img{
   height:10rem;
}
.item_reply .cont{
  font-size:1.1rem;
  line-height:1.4;
}
.pn-dktv{
  position:relative;
  color:#fff;
}
.pn-dktv .img_dktv,.frm_dktv{
  width:100%;
  position:relative;
  height:0;
  padding-bottom:55%;
}
.pn-dktv .img_dktv img{
  position:absolute;
  width:100%;
  height:100%;
  left:0;
  top:0;
  object-fit:cover;
}
.frm_dktv .inner{
  max-width:700px;
  padding:1rem 1.5rem;
}

.frm_dktv h3{
  font-size:1.4rem;
}
.frm_dktv .the-content{
  font-size:0.9rem;
}

.frm_dktv .the-content{
   font-size:1rem;
   line-height:1.5;
}
.item_news{
   margin-bottom:0.5rem;
   padding:0.2rem;
   position:relative;
}
.item_news a{
  border-radius:5px;
  display:block;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}
.item_news a:hover{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.item_news .img{
  position:relative;
  height:0;
  padding-bottom:70%;
}
.item_news .img img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.item_news .info{
  padding:0.8rem;
}
.item_news .info h3{
  font-size:1.1rem;
  color:#222;
  line-height:1.4;
  font-family:'LexendDeca-M';
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item_news .info h3:hover{
  color:var(--color-1);
}

.item_news .info .desc{
  color:#333;
  font-size:1rem;
  line-height:1.3;
   display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item_news .info .date{
   color:#666;
   margin-bottom:0;
   font-size:0.9rem;
   padding-top:0.5rem;
   border-top:1px dashed #ccc;
}

.line-cp{
  margin-bottom:0;
  line-height:1.4;
  text-align:center;
  padding:0.5rem 0;
  font-size:0.8rem;
}
.line-cp a{
  color:#fff;
}
.pn-cp .container{
  border-top:1px solid #999;
}
.bg-banner{
  height:15rem;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
.bg-banner:after{
  position:absolute;
  content:'';
  background-color:rgba(0,0, 0, 0.3);
  left:0;
  top:0;
  width:100%;
  height:100%;
}
.breadcrumb{
  margin-bottom:0.5rem;
}
.tit_pageBanner{
    text-align:left;
    color: #fff;
    font-size:1.8rem;
    line-height: 1;
    font-family: "LexendDeca-M";
    margin:0 0;
    padding:0 0;
}
.grid_grContact{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
  grid-gap:2rem;
}
.grid_grContact .item{
  text-align:center;
  color:var(--color-1);
  position:relative;
  border:1px solid var(--color-1);
  border-radius:5px;
  padding:2rem 1rem;
}
.grid_grContact .item .icon{
  width:3rem;
  height:3rem;
  display:flex;
  background-color:var(--color-1);
  color:#fff;
  border-radius:4px;
  position:absolute;
  left:calc(50% - 1.5rem);
  top:-1.5rem;
}
.grid_grContact .item .icon img{
  height:2rem;
  object-fit:contain;
  margin:auto;
}
.c-map{
  position:relative;
  height:0;
  padding-bottom:35vh;
}
.c-map iframe{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
}

.row-g-contact .form-group{
  margin:0 0;
}
.grid-album{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-gap:2rem;
}

.item-album .img{
  position:relative;
  width:100%;
  height:0;
  padding-bottom:90%;
  overflow: hidden;
}

.item-album .img .the_title{
  position:absolute;
  left:0;
  bottom:0.5rem;
  text-indent:0.5rem;
  background-color:var(--color-1);
  color:#fff;
  line-height:3rem;
  padding:0 2rem 0 1rem;
  border-radius:0 2rem 2rem 0;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.item-album .img .the_title:hover{
  background-color:var(--color-2);
  color:#222;
}
.item-album .img img{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  object-fit:cover;
  filter: brightness(0.9);
   transition: all .4s ease-in-out;
}
.item-album .img:hover img{
  filter: brightness(1);
    transform: scale(1.1);
}
.item-album .info{
  padding:0.5rem 0;
}
.item-album .the_title{
  font-size:1.2rem;
  line-height:1.4;
  margin-bottom:0;
  color:#222;
   display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.item-album .the_title:hover{
  color:var(--color-1);
}
.item-album  .the_excerpt{
  font-size:1rem;
  line-height:1.4;
  color:#444;
   display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.df-bh .nav{
  align-items:center;
}
.search-menu{
  margin-left:1rem;
}
.search-menu img{
  cursor:pointer;
}

#pagination-ajax{
   justify-content:center;
}

.grid_albums{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.grid_albums .item {
    grid-column: span 2;
}
.grid_albums .item:nth-child(4) {
    grid-column: span 4;
}
.grid_albums .item:nth-child(5) {
    grid-column: span 2;
}
.grid_albums .item img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 10px;
}
.gridListPost{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-gap:2rem;
}

.gridListPost .img{
  position:relative;
  height:0;
  padding-bottom:70%;
  overflow:hidden;
}
.gridListPost .img img{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  object-fit:cover;
  transition: all .4s ease-in-out;
}
.gridListPost .item .info{
  padding:0.5rem 0.5rem;
}
.gridListPost .item .img:hover img{
    transform: scale(1.05);
}
.gridListPost .item .the_title{
  font-size:1.1rem;
  line-height:1.4;
  font-family: "LexendDeca-M";
  color:#111;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gridListPost .item .the_title:hover{
  color:red;
}
.gridListPost .item .the_excerpt{
  font-size:0.95rem;
  line-height:1.45;
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp:3;
  overflow: hidden;
  text-overflow: ellipsis;
  color:#333;
}
.gridListPost .item .the_link{
  text-decoration:underline;
  color:var(--color-1);
}
.gridListPost .item .the_link:hover{
  color:var(--color-2);
}

.gridListPost .img .date{
   position:absolute;
   left:0;
   bottom:1rem;
   font-size:1rem;
   color:#fff;
   background-color:var(--color-1);
   padding:0.5rem 2rem 0.5rem 1rem;
   line-height:1.4;
     font-family: "LexendDeca-M";
     border-radius:0 2rem 2rem 0;
}

/* Đã xóa định nghĩa ".m__menu" trùng lặp ở cuối file */

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

}
@media screen and (max-width: 1400px) {
  .heading-top a{
    font-size:0.85rem;
  }
  #nav_main > li{
    padding:0 0.5rem;
  }
  .pn-dktv .img_dktv, .frm_dktv{
    padding-bottom:65%;
  }
  .block-title h2{
    font-size:1.8rem;
  }
  .gridCsvc .item img{
     height:40vh;
  }
   .container{
    max-width:96%;
   }
  .pn-about .nd{
    padding-right:3rem;
  }
  .heading-main .container-fluid{
     width:100%;
  }
  .logo img{
    max-width:12rem;
  }
  .btn-book-app.btn-book-contact{
     padding:0 0.7rem;
  }
  .mySwiper .content h2{
      font-size:2rem;

  }
  .mySwiper .content h2,.mySwiper .content p.desc{
    position:relative;
      z-index:1;
  }
}
@media screen and (max-width: 1300px) {
  .block-title .the-title{
    font-size:1.8rem;
  }
  .block-title .the-sub{
    font-size:1.3rem;
  }
  .frm_dktv h3{
    font-size:1.2rem;
  }
  .frm_dktv .the-content{
    font-size:0.9rem;
  }
  #nav_main > li > a{
    font-size:0.95rem;
  }
  .heading-main .container{
     max-width:100%;
  }
  .mySwiper .content{
    max-width:100%;
    padding:0 1rem;

  }
  .heading-main .container-fluid{
    padding:0 0;
  }
  #nav_main > li{
    padding:0 0.4rem;
  }
   .logo img{
     max-width:9rem;
   }
   .nav{
     margin-top:0.5rem;
   }
   .pn-about .nd{
    padding-right:1.5rem;
   }
   .df-dtRightSideBar .widget-box-sideBar{
      width:17rem;
  }
  .df-dtRightSideBar .widget-box-main {
      width:calc(100% - 18rem);
  }
  .post-title h1{
    font-size:2rem;
  }
}
@media screen and (max-width: 1100px) {
  .banner_content_m{
    display:block;
    visibility:visible;
    z-index:9;
    padding:1rem 0.5rem;
  }
  .content-program .item {
    width: 130px;
    height: 130px;
  }
  .cont-center{
    font-size:1.4rem;
    padding:0 15%;
  }
  #responsive-menu{
    top:7.5rem!important;
  }
  header.fixed #responsive-menu{
    top:3rem!important;
  }
  header.fixed .logo img{
      max-width:7rem;
  }
  .heading-main .container-fluid{
    padding:0 0.6rem;
  }
   .df-bh .nav{
      display:none!important;
   }
   .m__menu{
    display:block;
   }
   .foot_tit{
    margin-top:1rem;
   }
   .bt_hotline_top{
    padding:0.4rem 1rem;
   }
   .logo img{
     max-height:5rem;
   }
   .content-program{
    padding:14%;
   }
   .pn-dktv .img_dktv, .frm_dktv {
        padding-bottom: 80%;
    }
    .c-map{
      padding-bottom:35vh;
    }
    .gridListPost .item .the_title{
      font-size:1rem;
    }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 991px) {
  .grid_grContact{
    grid-template-columns:1fr 1fr;
  }
  .site-slider{
    max-height:50vh;
  }
  .item-slide{
    height:50vh;
  }
  .pn-whyCh .tit_normal {
    text-align:center;
    margin-bottom:2rem!important;
  }
  .box-bk{
    text-align:center;
  }
  .df-lv .tit_normal,.pn-feedBack .tit_normal{
    text-align:center;
    margin:1.5rem 0;
    font-size:1.4rem;
  }
  .pn-field .tit_normal{
    text-align:center;
  }
  .pn-field .tit_bl{
    text-align:center;
  }
  .frm_dktv .the-content{
    display:none;
  }
  .df-lv{
    flex-direction:column-reverse;
  }
  .df-about .img_fullWidth{
     max-width:80vw;
     margin:0 auto;
    display: inherit;
  }
  .grid_grContact{
    grid-gap:1rem;
  }
  .df-about{
    flex-direction:column;
  }
  .girdWhy{
    grid-gap:1rem;
  }
  .mySwiper .content p.desc{
    font-size:0.9rem;
     position:relative;
      z-index:1;
  }
  .mySwiper .content h2{
      font-size:1.8rem;
      position:relative;
      z-index:1;
  }
  .gird_foot{
     grid-template-columns:1fr 1fr;
     grid-gap:2rem;
  }
  #myFormAdv.fancybox-content{
     padding:20px 30px!important;
  }
  #myFormAdv.fancybox-content{
     min-width:50vw;
  }
  .pn-about .nd{
    padding-right:0;
  }
  .item-album .img .the_title{
    text-indent:0.1rem;
  }
  .grid-album{
    grid-template-columns:1fr 1fr;
  }
}
@media screen and (max-width: 850px) {
}
@media screen and (max-width: 768px) {
  .pn-supFixed{
     padding:0.3rem 0 ;
  }
  .e-con-inner-p {
    flex-direction: column;
  }
  .v-desktop{
    display:none;
  }
  .pn-hotro-m{
    display:block;
    visibility:visible;
    opacity:1;
  }
}
@media screen and (max-width: 700px) {
  .gridListPost{
    grid-template-columns:1fr 1fr;
    grid-gap:1.5rem;
  }
  .tit_pageBanner{
    font-size:1.6rem;
  }
  .frm_dktv .inner{
    padding:2rem 1rem;
  }
  .frm_dktv{
    height:auto!important;
    padding-bottom:unset!important;
  }
    .block-title .the-title {
        font-size: 1.4rem;
    }
  .sub_img_reply1,.sub_img_reply2{
    height:4rem;
  }
.df-dtRightSideBar{
    flex-direction:column;
  }
  .e-con-inner-p .e-child:first-child{
    border-right-color:transparent;
  }
  .df-dtRightSideBar .widget-box-main{
    width:100%;
  }
  .df-dtRightSideBar .widget-box-sideBar{
    width:100%;
  }
  .df_postTags{
    flex-direction:column;
  }
  .df_postTags .head{
    width:100%;
    margin-bottom:0.3rem;
  }
  .df_postTags .list{
    width:100%;
  }
  .girdWhy{
    grid-template-columns:1fr 1fr;
  }
}
@media screen and (max-width: 650px) {
  .post-banner .wrap-bg{
    padding-bottom:70%;
  }
  .post-banner .wrap-bg .content{
    padding:1rem;
  }
  .siteBarVideo{
    padding-bottom:100%;
  }

   .tit_page{
     padding-left:0.4rem;
     padding-right:0.4rem;
  }
  .block-title h2{
    font-size:1.6rem;
  }
  .girdWhy{
    grid-template-columns:1fr;
  }
  .girdWhy .item .left{
    font-size:2rem;
    width:4rem;
  }
  .girdWhy .item .right {
    width: calc(100% - 4.5rem);
  }
  .gridCsvc{
     grid-template-columns: repeat(4, 1fr);
  }
  .gridCsvc .item:nth-child(4){
     grid-column: span 2;
  }

}
@media screen and (max-width: 576px) {
  .gridCsvc .item img{
     height:25vh;
  }
  .breadcrumb a, .breadcrumb-item+.breadcrumb-item::before{
    font-size:0.7rem;
  }
  .gridListPost .img .date{
     font-size:0.8rem;
         padding: 0.2rem 1rem 0.2rem 0.5rem;

  }
  .item_reply .cont{
    font-size:1rem;
  }
    .item_reply {
        padding: 0 2vh;
  }
  .gridListPost .item .the_title{
    font-size:0.9rem;
  }
  .tit_pageBanner{
    font-size:1.2rem;
  }
  .logo img{
     max-height:4rem;
  }
  .breadcrumb-item+.breadcrumb-item::before{
     margin-top:0.3rem;
  }
  .gridListPost{
    grid-gap:1rem;
  }
  .gridListPost .item .the_excerpt{
    font-size:0.8rem;
  }
      .item-slide {
        height: 25vh;
    }
    .bg-banner{
       height:9rem;
    }
  .grid_albums {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .grid_albums .item img{
     height:25vh;
  }
  .grid_albums .item:nth-child(4) {
    grid-column: span 2;
}
  .grid-album{
    grid-template-columns:1fr;
  }
  .grid_grContact{
    grid-template-columns:1fr;
    grid-gap:2rem;
  }
  .img_map{
    width:100%;
  }
  .item-whyc .box-ic{
    width:3rem;
    height:3rem;
  }
  .pn-supFixed{
    padding:0.2rem 0.2rem;
  }
    .item_core{
    min-height:auto;
  }
  .post-text-editor h1{
    font-size:1.6rem;
  }
  .post-text-editor h2{
    font-size:1.4rem!important;
  }
  .post-text-editor h3{
    font-size:1.2rem!important;
  }
  .post-text-editor h4{
    font-size:1rem!important;
  }
  p:empty{
    display:none;
  }
  .pn-breadcrumb a{
    font-size:0.8rem;
  }
  .swiperAct-next,.swiperAct-prev{
    display:none!important;
  }
  .pn-activity .cont{
    max-width:100%;
    font-size:0.9rem;
  }
    .foot_tit{
      margin-top:0.5rem;
    }
    .item_reply{
      padding:0 5vh;
    }
  .content-program{
    padding:0;
  }
  .content-program .wrapper-border{
     all: unset;
     margin-top:2rem;
     display:grid;
     grid-template-columns:1fr 1fr 1fr;
     grid-gap:1.5rem;
  }
  .content-program .wrapper-border::before,.content-program .wrapper-border::after{
      all: unset;
  }
  .cont-center{
     display:none;
  }
  .content-program .item{
     position:relative!important;
     left:auto!important;
     top:auto!important;
     right:auto!important;
     bottom:auto!important;
     margin:0 auto;
  }


}
@media screen and (max-width: 440px) {
    .content-program .wrapper-border{
       grid-template-columns:1fr 1fr;
    }
  .pn-supFixed p{
    font-size:0.8rem;
  }
  .post_item .img{
     width:33%;
  }
  .post_item .post_text {
    width: calc(67% - 0.3rem);
}
.post_item .post_text .post__excerpt{
  display:none;
}
.post_item{
  margin-bottom:1rem;
}
  .author-box{
    flex-direction:column;
    justify-content:center;
  }
  .wrapper-form{
     margin:0 auto;
  }
  .tit_page{
    font-size:1.8rem;
  }
  .btn_htv{
     padding:0.4rem 0.5rem;
     font-size:0.8rem;
     line-height:1.2;

  }
  a.a_htv{
    font-size:1.6rem;
  }
  .gird_foot{
    grid-template-columns:1fr;
    grid-gap:0.2rem;
  }
}
@media screen and (max-width: 416px) {
}
@media screen and (max-width: 390px) {
}
@media screen and (max-width: 360px) {
}
