:root {
  --color-1:rgb(2,6,24);
  --color-2: #a3b3ff;
  --color-3: #7c86ff;
  --color-4: #615fff;
  --color-5: #fffcf4;
  --color-white: #ffffff;
  --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 {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif !important;
  transition: var(--trans);
  max-width: 1920px;
  overflow-x: hidden;
  line-height: normal;
  margin:0 auto;
  background-color:var(--color-1);
  padding-top:5rem;
  font-size:0.8rem;
}
a {
  text-decoration: none;
  color:#fff;
}
a,
a:hover {
  transition: all 150ms ease-in-out;
}
a:hover{
  color:var(--color-3);
}
.breadcrumb .breadcrumb-item.active a {
  color: #222;
}
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: 50vh;
  overflow: hidden;
}
.item-slide {
  width: 100%;
  height: calc(100vh - 115px);
}
.item-slide img.full_width {
  width: 100%;
  height: 50vh;
  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;
  display:flex;
  justify-content: center;
  align-items: center;
}
#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;
}
#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 > 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: center;
}

.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;
}
.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: 4.5rem;
  max-width: 20rem;
}
.btn-book-app {
  background-color: var(--color-1);
  color: #fff;
  border-radius: 0.3rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn-book-app:hover {
  color: #fff;
}
.btn-book-app.btn-book-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.tit_normal {
  font-size: 1.7rem;
  font-family: "LexendDeca-M";
  color: var(--color-1);
}
.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: 6rem;
}
.pn-about-bg {
  height: 15vh;
  background-size: cover !important;
  background-attachment: fixed !important;
}
.tit_bl {
  text-transform: uppercase;
}
.img_fullWidth {
  width: 100%;
}
.container {
  max-width: 1140px;
}

.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(0, 0, 0, 0.08) 0px 4px 12px;
  display: inline-block;
  margin: 0 auto;
}
.item-feedBack .cont {
  text-align: justify;
  color: #555;
}
.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;
}
.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: 3rem;
}
.pn-footer {
  padding-bottom: 5rem;
}
.foot_logo {
  max-height: 4rem;
}
.foot_tit {
  font-size: 1.1rem;
  color: var(--color-1);
  font-family: "LexendDeca-M";
  position: relative;
  padding-bottom: 0.5rem;
  line-height: 1.3;
}
.foot_tit:before {
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #ccc;
  left: 0;
  bottom: 0;
}
.gird_foot .nd,
.gird_foot .nd * {
  font-size: 0.9rem;
  color: #444;
  list-style-type: none;
  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-end;
  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: 1rem;
  text-transform: capitalize;
  line-height: 1;
  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;
}
.post_item {
  display: flex;
  justify-content: space-between;
}
.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: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.9rem;
}
.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);
  border-right: 0.1rem solid #b9b9b9;
  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;
}
.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;
  border-radius: 0.2rem;
}
.post_rel .tit_rel_cate {
  font-size: 1.2rem;
  color: var(--color-2);
  font-family: "LexendDeca-M";
}
.list-rel > li {
  margin-bottom: 1rem;
}
.list-rel > li > a {
  color: #444;
  line-height: 1.5;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.siteBarVideo {
  position: relative;
  height: 0;
  padding-bottom: 150%;
}
.siteBarVideo iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.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:6rem !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;
}

/* Đã xóa định nghĩa ".m__menu" trùng lặp ở cuối file */
.header{
  background:rgb(2, 6, 24,0.9);
  border-bottom:1px solid rgb(255,255,255,0.1);
  position:fixed;
  width:100%;
  top:0;
  z-index:99;
}
.link-button{
  padding:0.5rem 1rem;
  border:0.1rem solid var(--color-2);
  border-radius:2rem;
  color:#fff;
  line-height:1;
  font-size:0.8rem;
  opacity:0.9;
}
.link-button:hover{
  color:#fff;
  background-color: oklab(0 0 0 / 0);
  opacity:1;
}

.block-about,.pn-services,.pn-process,.pn-pricing,.pn-faq,.pn-contact{
  background:var(--color-1);
  color:#fff;
  border-bottom:1px solid rgb(255,255,255,0.1);
  padding:5rem 0;
}
.block-about .the-title{
  font-size:3rem;
  line-height:1.2;
}
.block-about .the-title span{
  color:var(--color-3);
}
.block-about .cont{
  font-size:1rem;
  line-height:1.6;
}
.the-excerpt{
  line-height:1.4;
  Font-size:0.8rem;
  color:#fff;
}
.the-excerpt a{
  text-decoration:underline;
}
.group-bt > a{
  color:#fff;
  padding:0.6rem 1.5rem;
  border-radius:1.2rem;
  border:0.1rem solid transparent;
  margin-right:0.4rem;
  opacity:0.9;
}
.group-bt > .bt-2{
    border-color:rgba(255,255,255,0.5);
}
.group-bt > a:hover{
  color:#fff;
  opacity:1;
}
.group-bt .bt-1{
  background-color:var(--color-4);
}
.block-about .box-3xl{
  border-radius:1rem;
  background:rgb(255,255,255,0.05);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12);

}
.block-about .box-2xl{
  border-radius:0.8rem;
  background:rgb(2,6,24,0.6);
  box-shadow: rgb(255,255,255,0.05) 0px 1px 1px, rgb(255,255,255,0.05) 0px 0px 1px 1px;
}
.block-about .tit-group{
  font-size:0.8rem;
}
.block-about .gird-3c{
  display: grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-gap:1rem;
}
.gird-3c .item,.item-service{
  background:rgb(255,255,255,0.05);
   box-shadow:
    0 0 0 1px rgba(255,255,255,0.12);
  padding:1.4rem 0.7rem;
  border-radius:0.7rem;
}
.gird-3c .tit_3c{
  opacity:0.7;
}
.pn-services .the-excerpt{
  font-size:1rem;
  line-height:1.4;
}
.item-process .tit_3c{
  color:var(--color-3);
}

.item-pricing .cont{
  line-height:1.6;
}
.item-pricing .cont ul{
   list-style-type:none;
   padding:0 0;
}
.item-pricing .cont ul > li{
   margin:0.2rem 0;
}
.item-pricing{
  padding: 1.5rem 1.2rem;
}
.bt-pricing{
  display:block;
  text-align:center;
  color:#fff;
  background-color:var(--color-4);
  border-radius:0.6rem;
  font-size:1rem;
  line-height:1;
  padding:0.8rem 1rem;
  opacity:0.85;
}
.bt-pricing:hover{
  opacity:1;
}
.item-faq{
  padding:1.2rem 1.5rem;
  min-height:110px;
}
.item-faq .cont{
   line-height:1.6;
}
.pn-contact{
  text-align:center;
}
.pn-contact .the_excrept{
  font-size:0.9rem;
}
.mw-600{
  max-width:600px;
  margin:0 auto;
}
.item-contact{
  line-height:1;
  display:block;
  text-align:center;
  padding:1rem 1rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  border-radius:1rem;
}
.item-contact:hover{
  box-shadow: 0 0 0 1px rgba(255, 255, 255,0.4);
}
.pn-copy{
    color:#fff;
    font-size:0.9rem;
}

.pn-copy .cont{
  text-align:right;
}

.pn-block p{
  margin-bottom:0;
}

.item-service{
  min-height:150px;
}

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

}
@media screen and (max-width: 1400px) {
  .block-about .the-title{
    font-size:3rem;
  }
  .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;
  }
}
@media screen and (max-width: 1280px) {
   .block-about, .pn-services, .pn-process, .pn-pricing, .pn-faq, .pn-contact{
     padding:4rem 0;
  }
   .logo img{
     max-width:20rem;
   }
   .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) {
   .df-bh .nav{
      display:none!important;
   }
   .m__menu{
    display:block;
   }
   .foot_tit{
    margin-top:1rem;
   }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 991px) {
  .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;
  }

}
@media screen and (max-width: 850px) {
  .block-about, .pn-services, .pn-process, .pn-pricing, .pn-faq, .pn-contact{
     padding:3.5rem 0;
  }
      .block-about .the-title {
        font-size: 2.4rem;
    }
    .block-about .gird-3c{
      grid-template-columns:1fr 1fr;
    }
}
@media screen and (max-width: 768px) {
  .block-about .gird-3c {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (max-width: 700px) {
  .box-3xl{
    margin-top:2rem;
  }
  .pn-copy,.pn-copy .cont{
    text-align:center;
  }
.df-dtRightSideBar{
    flex-direction:column;
  }
  .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%;
  }
}
@media screen and (max-width: 650px) {
  .item-service{
    min-height:120px;
  }
  .block-about .gird-3c{
    grid-gap:0.7rem;
  }
  .post-banner .wrap-bg{
    padding-bottom:70%;
  }
  .post-banner .wrap-bg .content{
    padding:1rem;
  }
  .siteBarVideo{
    padding-bottom:100%;
  }
}
@media screen and (max-width: 576px) {
  .block-about, .pn-services, .pn-process, .pn-pricing, .pn-faq, .pn-contact{
     padding:2.5rem 0;
  }
  .img_map{
    width:100%;
  }
  .item-whyc .box-ic{
    width:3rem;
    height:3rem;
  }
  .pn-supFixed{
    padding:0.2rem 0.2rem;
  }
    .item_core{
    min-height:auto;
  }
}
@media screen and (max-width: 440px) {
  .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:2rem;
  }
  .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) {
  .block-about .gird-3c{
    grid-template-columns:1fr 1fr;
  }
}
@media screen and (max-width: 360px) {
}
