:root {
  --primary-color: #2ecc71;
  --secondary-color: #27ae60;
  --text-color: #2c3e50;
  --light-color: #ffffff;
  --dark-color: #1a1a1a;
  --border-radius: 8px;
  --card-border-radius: 12px;
  --icon-size: 80px;
}



/* CSS cho thanh thông báo Messenger - Phiên bản cải thiện */
 .messenger-notification-bar {
  /* Vị trí và kích thước - CẢI THIỆN */
  position: fixed;
  top: 15px;
  left: 10px;
  right: 10px;
  width: auto;
  z-index: 99999; /* Tăng z-index cao hơn */
  
  /* Giao diện */
  background-color: rgba(25, 25, 25, 0.95); /* Tăng độ đậm */
  color: white;
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4); /* Tăng shadow */
  backdrop-filter: blur(8px); /* Tăng blur */
  -webkit-backdrop-filter: blur(8px);
  
  /* Layout */
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  
  /* Animation Ẩn/Hiện - CẢI THIỆN */
  transform: translateY(-100px) scale(0.9);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  visibility: hidden;
  pointer-events: none;
  
  /* Thêm cho touch interaction */
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

/* Lớp .is-visible */
.messenger-notification-bar.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Hiệu ứng khi đang được kéo */
.messenger-notification-bar.dragging {
  transition: none;
}

/* Icon Wrapper */
.messenger-icon-wrapper {
  background-color: #fff;
  border-radius: 12px;
  padding: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.messenger-icon-wrapper img {
  width: 40px;
  height: 40px;
  display: block;
}

/* Text Content */
.messenger-text-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.messenger-text-line1 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}

.messenger-text-line1 strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f5f5f5;
}

.messenger-text-line1 span {
  font-size: 0.85rem;
  color: #b0b3b8;
}

.messenger-text-line2 {
  font-size: 0.9rem;
  color: #e4e6eb;
}

/* Close button - THÊM MỚI */
.messenger-close-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.messenger-close-btn:hover {
  background: rgba(255,255,255,0.3);
}



html {
  scroll-behavior: smooth;
}

header {
  position: relative;
  z-index: 2;
  background: #025f67;
  color: #fff;
  padding: 5px 0;
}
#logoWrp {
  display: flex;
  align-items: center;
}
#imgLogo {
  height: 62px;
  margin-left: 5px;
}
header #logo {
  width: 180px;
  height: 62px;
  background-position: -250px -175px;
}
header #logo a {
  display: block;
  height: 50px;
}
#menu {
  display: block;
  padding: 20px 10px;
}
#menu ul:after {
  content: "";
  display: table;
  clear: both;
}
#menu ul li {
  float: left;
  margin: 3px 5px;
}
#menu ul li a {
  display: block;
  border: 1px solid #017030;
  border-radius: 3px;
  color: #333;
  text-align: center;
  width: 70px;
  height: 25px;
  font-size: 0.8rem;
  font-family: "unsib";
}
#menu ul li:first-child a {
  display: block;
  width: 50px;
  height: 56px;
  color: #d93a09;
  border-color: #d93a09;
  font-size: 1.3rem;
  line-height: 50px;
}
#menu ul li:first-child a i {
  display: block;
  line-height: 50px;
}

/*Main*/
section:not(#sbn) {
  padding: 20px 0;
}
#sbn .slick-dots li {
  margin: 0;
}
#sbn .slick-dots li button {
  padding: 0;
}
#sbn .slick-dots li button:before {
  font-size: 40px;
  opacity: 1;
  color: #ccc;
}
#sbn .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #33436d;
}
#sbn .slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* s1 */
#s1 {
  background: #f5f8f6;
}
#s1 ul {
  text-align: center;
  margin: 0 -7px;
}
#s1 li {
  display: inline-block;
  width: calc(50% - 14px);
  margin: 0 5px;
  border: 1px solid #555555;
  border-radius: 5px;
  margin-bottom: 20px;
  color: #555555;
  text-align: center;
  position: relative;
  padding: 10px;
  max-width: 262px;
}
#s1 li i {
  display: block;
  height: 70px;
  margin: 0 auto 10px;
}
#s1 li span {
  display: block;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-family: "unsib";
  margin: auto;
}
#s1 li i.icon-namkhoa {
  width: 78px;
  background-position: -463px 0px;
}
#s1 li i.icon-phukhoa {
  width: 80px;
  background-position: -540px 0px;
}
#s1 li i.icon-haumon {
  width: 77px;
  background-position: -619px 0px;
}
#s1 li i.icon-bxh {
  width: 80px;
  background-position: -694px 0px;
}
#s1 #list_dichvu li i {
  height: 70px;
}
#s1 li i.icon-bacsi {
  width: 68px;
  background-position: 0px -105px;
}
#s1 li i.icon-datlich {
  width: 58px;
  background-position: -68px -105px;
}
#s1 li i.icon-dichvu {
  width: 62px;
  background-position: -126px -105px;
}
#s1 li i.icon-tuvan {
  width: 68px;
  background-position: -189px -105px;
}
#s1 #list_dichvu li span {
  background:#025f67;
  color: #ffff;
}

/* S2 */
#s2 {
  background: #f5f8f6;
}
#s2 .b-title {
  margin-bottom: 15px;
}
#s2 h2 {
  font-family: "unsib";
  color: #444;
  font-size: 25px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 900;
}
#s2 .b-content {
  text-align: center;
}
#s2 p {
  text-align: justify;
}

#s2 img {
  display: block;
  margin: auto;
  margin-bottom: 10px;
}
#s2 a.readmore {
  display: block;
  width: 200px;
  height: 40px;
  background: #025f67;
  color: #ffff;
  margin: 10px auto 20px;
}
#s2 a.readmore i {
  float: left;
  width: 40px;
  height: 40px;
  border-right: 1px solid;
  background: #025f67;
  font-size: 22px;
  color: #fff;
  line-height: 40px;
  text-align: center;
}
#s2 a.readmore span {
  float: left;
  width: calc(100% - 40px);
  text-align: center;
  line-height: 40px;
  text-transform: uppercase;
  font-size: 18px;
}

/* S3 */
#s3 .b-title {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}
#s3 .b-title h3 {
  margin: 0;
  font-family: "unsib";
  font-size: 22px;
  text-transform: uppercase;
  color: #333;
}
#s3 .b-content p {
  text-align: center;
}
#list_bs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.bs-items {
  text-align: center;
  width: calc(100% / 3);
  padding: 0 30px 15px;
}
.bs-items .img {
  width: 100%;
  max-width: 220px;
  border: 2px solid #b8b8b8;
  padding: 3px;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.bs-items .img img {
  width: 100%;
  border-radius: 50%;
  border: 1px solid #b8b8b8;
}

.bs-items .name {
  text-transform: uppercase;
  font-family: "unsib";
  font-size: 20px;
  border-bottom: 2px solid #444;
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.bs-items .text p {
  text-align: center;
}
.bs-items p span {
  color: #025f67;
}
.bs-items .list_s_bs {
  text-align: center;
}
.bs-items .list_s_bs a {
  display: inline-block;
  margin: 0 3px;
  width: 25px;
  height: 25px;
  background: #025f67;
  border-radius: 2px;
  line-height: 25px;
  text-align: center;
  color: #fff;
}
.bs-items .list_s_bs a i {
  display: block;
  line-height: 25px;
}
#list_bs .slick-dots li button:before {
  font-size: 15px;
}

/* S4 */
#s4 {
  display: block;
  background: url(../img/s4-bg.png) 0 0 no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  color: #fff;
}
#s4 .b-title {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}
#s4 .b-title h3 {
  margin: 0;
  font-family: "unsib";
  font-size: 30px;
  color: #ffff00;
}
#s4 .b-content p {
  text-align: center;
}
#s4 #list_contact {
  margin-top: 30px;
}
#s4 .box1 {
  padding: 30px 10px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
}
#s4 .box1 a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#s4 .box1 i {
  color: #3eb353;
  font-size: 60px;
  margin: 0 10px;
}
#s4 .box1 span {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  font-family: "unsib";
  line-height: 1;
}
#s4 .box1 span strong {
  display: block;
  font-size: 30px;
  color: #3eb353;
}
#s4 ul li:nth-child(2) {
  padding: 30px 0;
  text-align: center;
  font-family: "unsib";
  font-size: 30px;
  color: #ffff00;
}
#s4 #box_contact {
  display: block;
  background: #fffff6;
  padding: 15px 10px;
  border-radius: 10px;
}
#s4 #box_contact .tit {
  margin-bottom: 20px;
  text-transform: uppercase;
  font: 16px "unsib";
  color: #17a944;
  text-align: center;
}
#s4 #box_contact input {
  display: block;
  width: 100%;
  height: 35px;
  background: #fff;
  border: 1px solid #555;
  padding: 0 10px;
  margin-bottom: 10px;
  border-radius: 3px;
}
#s4 #box_contact textarea {
  display: block;
  width: 100%;
  height: 75px;
  background: #fff;
  border: 1px solid #555;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
#s4 #box_contact button {
  display: block;
  width: 120px;
  height: 35px;
  border-radius: 3px;
  background: #17a944;
  border: none;
  margin: auto;
  text-transform: uppercase;
  color: #fff;
  font-family: "unsib";
  font-size: 18px;
}
#s5 li {
  float: left;
  width: 100%;
  padding: 0 15px;
}
#s5 .box-s5 {
  margin-bottom: 20px;
}
#s5 .box-s5 .img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid #555;
}
#s5 .box-s5 img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#s5 .box-s5 h4 {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 50px;
  text-align: justify;
}
#s5 .box-s5 h4 a {
  font-family: "unsib";
}
/* Footer */
footer {
  background: #00515d;
  padding: 15px 0 60px;
  color: #fff;
}
footer #logo_ft {
  display: block;
}
footer i.icon-logoft {
  display: block;
  width: 260px;
  height: 62px;
  background-position: -250px -175px;
  margin: 0 auto;
}
footer .cxs12 > div {
  margin: 20px 0;
  padding: 10px 0;
}
footer .info {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
footer div p {
  padding: 5px 0;
}

footer ul:after {
  content: "";
  display: table;
  clear: both;
}
footer li {
  float: left;
  width: 100%;
  margin: 0 auto;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
footer li span,
footer li a {
  display: block;
  height: 40px;
  line-height: 40px;
  font-family: "unsib", sans-serif;
}
footer li span {
  font-size: 24px;
}
footer li a {
  border: 1px solid #fff;
  font-size: 16px;
  border-radius: 999999px;
}
footer li:first-child a {
  border: none;
}
footer img {
  display: block;
  margin: auto;
}
#frm_contact_ft {
  display: block;
  padding: 0;
  color: #fff;
}
#frm_contact_ft .tit_frm {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "unsib";
}
#frm_contact_ft .tit_frm strong {
  display: block;
  font-size: 40px;
}
#frm_contact_ft .ct_frm input,
#frm_contact_ft .ct_frm textarea {
  display: block;
  width: 100%;
  height: 45px;
  border: 1px solid #efefef;
  background: rgba(255, 255, 255, 0.75);
  margin-bottom: 15px;
  padding: 0 10px;
}
#frm_contact_ft .ct_frm textarea {
  height: 100px;
  padding-top: 5px;
  padding-bottom: 5px;
}
#frm_contact_ft .ct_frm button {
  display: block;
  width: 190px;
  height: 45px;
  text-align: center;
  background: #fff;
  border-radius: 9999999px;
  color: #006c7b;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 15px;
  border: none;
}
/* Menu Mobile */
#icon_menumobile {
  display: block;
  position: absolute;
  width: 35px;
  height: 35px;
  top: 10px;
  right: 10px;
  border: 1px solid #ffff00;
  text-align: center;
}
#icon_menumobile:after {
  content: "\f0c9";
  display: block;
  font-family: FontAwesome;
  font-size: 25px;
  color: #ffff00;
  line-height: 35px;
}
#menu_mobile {
  display: block;
  width: calc(100% - 60px);
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 999;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
#menu_mobile .in {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 15px 10px 30px;
}
#menu_mobile .in div {
  border-bottom: 2px solid #e1e1e1;
  padding-bottom: 10px;
}
#menu_mobile .in form {
  border: 1px solid #e1e1e1;
  height: 32px;
  width: 100%;
  max-width: 320px;
  margin: auto;
}
#menu_mobile .in form input {
  float: left;
  width: calc(100% - 40px);
  height: 30px;
  padding: 0 5px;
  outline: none;
  border: none;
}
#menu_mobile .in form button {
  float: left;
  outline: none;
  width: 40px;
  height: 30px;
  background: none;
  border: none;
}
#menu_mobile .in form button:after {
  content: "\f002";
  font-family: FontAwesome;
  color: #3d4c73;
  font-size: 20px;
}
#menu_mobile .in ul {
  margin-top: 10px;
}
#menu_mobile .in ul li {
  padding: 5px 0;
  border-bottom: 1px solid #e1e1e1;
}
#menu_mobile .in ul li a {
  display: block;
}
#menu_mobile a.icon-close {
  display: block;
  height: 60px;
  width: 60px;
  position: absolute;
  top: 0;
  right: -60px;
  background: #06b2b6;
  line-height: 60px;
  text-align: center;
}
#menu_mobile a.icon-close:after {
  content: "\f00d";
  font-family: FontAwesome;
  color: #fff;
  font-size: 35px;
  z-index: 12;
}
#overhidden {
  display: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.5);
  z-index: 10;
}

/* Category */
#main {
  margin-top: 20px;
}
#crumbs {
  border-bottom: 1px solid #e1e1e1;
}
#crumbs:after {
  content: "";
  display: table;
  clear: both;
}
#crumbs a,
#crumbs span {
  float: left;
  height: 45px;
  line-height: 45px;
}
#crumbs a:last-child {
  display: block;
  color: #00a244;
  border-bottom: 2px solid #00a244;
  line-height: 44px;
}
#crumbs span {
  padding: 0 10px;
}
.crumb_single #crumbs span:last-of-type {
  display: none;
}
#ct .posts {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #e1e1e1;
}
#ct .posts img {
  width: 100%;
}
#ct .posts .text-post a {
  display: block;
  color: #444;
  font-size: 16px;
  margin: 10px 0;
  font-family: "unsib";
}
#ct .posts a.view-article {
  display: none;
}
#ct .posts .text-post div {
  margin-top: 10px;
}
#ct .posts .text-post div span {
  margin-right: 10px;
}
#ct .posts .text-post div span:before {
  content: "\f06e";
  font-family: FontAwesome;
  margin-right: 5px;
}
#ct .posts .text-post div span + span {
  margin-right: 0;
}
#ct .posts .text-post div span + span:before {
  content: "\f017";
}
#ct .posts .text-post div a {
  float: right;
  font-family: "Avo";
  color: #00a244;
  margin: 0;
  position: relative;
}
#ct .posts .text-post div a:before {
  content: "";
  display: block;
  width: 25px;
  height: 12px;
  position: absolute;
  top: 7px;
  left: -30px;
  transform: skewX(-20deg);
  background-image: linear-gradient(to top right, #50bf55, #073d1e);
}
#ct .pagination {
  padding: 20px 0;
  border-bottom: 1px solid #e1e1e1;
  clear: both;
}
#ct .bncate {
  padding: 20px 0;
}
/* Post */
#title_post h1.h1_post {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  color: #025f67;
  padding: 15px 0 10px;
  line-height: 30px;
}
#title_post .meta {
  color: #777;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
}
#title_post .meta span {
  margin-right: 20px;
}
#title_post .meta span:before {
  content: "\f06e";
  font-family: FontAwesome;
  margin-right: 5px;
}
#title_post .meta span.date {
  margin-right: 0;
}
#title_post .meta span.date:before {
  content: "\f017";
}

.content-post {
  padding: 15px 0px;
  display: block;
}
.content-post .entry-content p {
  line-height: 1.5;
  margin-bottom: 8px;
}
.content-post .entry-content li {
  text-align: left !important;
}
.content-post .entry-content h2,
.content-post .entry-content h3,
.content-post .entry-content h4 {
  font-size: 18px;
  border-bottom: 2px solid #025f67;
  padding: 7px 0;
  text-transform: uppercase;
  font-weight: 600;
  color: #025f67;
  margin: 8px 0;
  line-height: 25px;
}
.content-post .entry-content h3 {
  font-size: 16px;
}
.content-post .entry-content h4 {
  font-size: 14px;
}
#ct .content-post .entry-content img,
#detail_gk .content-post .entry-content img {
  display: block;
  margin: 0 auto;
  margin-top: 0.5rem;
  max-width: 100%;
  height: auto;
  width: auto;
}
#ct .content-post .entry-content .box-bs img {
  width: 100%;
}
#ct .content-post ul,
#detail_gk .content-post ul {
  padding-left: 20px;
}
#ct .content-post ul li,
#detail_gk .content-post ul li {
  list-style-type: disc;
  padding: 5px 0;
}
.content-post blockquote {
  padding: 1.2rem;
  padding-left: 3rem;
  margin: 2rem;
  background: #e5f6f5;
  border-left: 5px solid #a40038;
  position: relative;
  text-align: center;
}
.content-post blockquote:before {
  content: "\f10d";
  font-family: FontAwesome;
  color: #54a486;
  font-size: 40px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 1rem;
  transform: translateY(-50%);
}
.content-post blockquote p {
  text-align: center;
}
#box--luuypost {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e1f6f4;
  border: 2px dashed #3ca288;
  border-radius: 7px;
  padding: 15px 20px;
  margin-top: 25px;
}
#box--luuypost i {
  font-size: 50px;
  color: #3ca288;
}
#box--luuypost span {
  flex: 1;
  padding-left: 15px;
  color: #323335;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}
.luu-y {
  padding: 15px;
  line-height: 1.5;
  text-align: justify;
  margin: 15px 0;
  background: #237c8a;
  font-style: italic;
  color: #fff;
}
.luu-y b {
  color: #ffff00;
}
#xem_theme_post {
  display: block;
  background: #f1fcf7;
  border: 2px solid #008080;
  border-radius: 5px;
  padding: 10px 15px;
  margin: 10px 0;
}
#xem_theme_post .title__ {
  display: inline-block;
  margin-bottom: 10px;
  border-bottom: 1px solid #56acaa;
  font-weight: 700;
  color: #008080;
  line-height: 1.1;
  font-size: 20px;
}
#xem_theme_post ul {
  padding-left: 15px !important;
}
#xem_theme_post ul li {
  position: relative;
  list-style: none !important;
}
#xem_theme_post ul li:before {
  content: "\f0da";
  font-family: FontAwesome;
  font-size: 16px;
  position: absolute;
  top: 7px;
  left: -15px;
  color: #025f67;
}
#xem_theme_post ul li a {
  font-weight: 600;
}

/* Shortcode BĂ¡c sÄ© trong bĂ i viáº¿t */
.wiget_bs {
  display: block;
  margin: 20px auto;
  padding: 15px 10px 5px;
  background: #f1fcf7;
  border: 1px dashed #025f67;
}
.wiget_bs .top {
  display: flex;
}
.wiget_bs .top .img {
  width: 80px;
}
.wiget_bs .top .img img {
  border: 1px solid #025f67;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.wiget_bs .top .name {
  flex: 1;
  padding-left: 10px;
  position: relative;
}
.wiget_bs .name a {
  display: block;
}
.wiget_bs .name a.name_bs {
  text-transform: uppercase;
  line-height: 1;
  font-weight: 600;
  font-size: 20px;
}
.wiget_bs a.name_bs strong {
  color: #025f67;
}
.wiget_bs a.btn_wiget_bs {
  display: inline-block;
  padding: 3px 10px;
  color: #fff;
  background: #025f67;
  border-radius: 3px;
  position: absolute;
  bottom: 6px;
  left: 10px;
}
.wiget_bs .info .tit {
  text-align: left !important;
  color: #025f67;
  margin-bottom: 3px !important;
  margin-top: 5px !important;
}
.wiget_bs .info .tit strong {
  padding-left: 5px;
  color: #025f67 !important;
}
.wiget_bs .info p {
  padding-left: 15px;
  margin-bottom: 0 !important;
  font-size: 14px;
}
.wiget_bs .info li {
  margin-bottom: 0 !important;
  font-size: 14px;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
.wiget_bs a.btn-bs {
  display: block;
  text-align: right;
  font-size: 14px;
  color: #025f67;
  line-height: 1;
  margin: 5px 0;
}
.wiget_bs li:before {
  top: 5px !important;
}

#s14_cdt5_2020 {
  border: none !important;
}

/* Page bĂ¡c sÄ© */
#h1_page {
  text-align: center;
  text-transform: uppercase;
  font-family: "unsib";
  font-size: 30px;
  color: #444;
  padding: 15px 0 0;
  line-height: 30px;
}
.content-bs {
  padding: 15px 0;
}
.content-bs .cxs12:nth-child(2n + 1) {
  clear: left;
}
.content-bs .box-bs {
  padding: 0 0 20px;
  border-radius: 15px;
  border: 1px solid #595959;
  margin-bottom: 20px;
}
.content-bs .box-bs img {
  width: 100%;
  margin-bottom: 5px;
  margin-top: 0 !important;
  border-radius: 15px 15px 0 0;
}
.content-bs .box-bs div {
  padding: 10px 10px 0;
}
.content-bs .box-bs p {
  font-size: 14px;
  line-height: 20px;
}
.content-bs .box-bs p:last-of-type {
  height: 40px;
  padding: 0;
}
.content-bs .box-bs p span {
  text-transform: uppercase;
  font-size: 16px;
}
.content-bs .box-bs p.name {
  border-bottom: 1px solid #595959;
  text-align: center;
  text-transform: uppercase;
  color: #00a244;
  font-size: 16px;
  font-family: "unsib";
}
.content-bs .box-bs p.des {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.content-bs .box-bs a.btns {
  display: block;
  margin: 15px auto 0;
  color: #ff8a00;
  background: #fff;
  width: 155px;
  height: 32px;
  border: 1px solid #acacac;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  padding-left: 30px;
  line-height: 30px;
}
.content-bs .box-bs a.btns:before {
  content: "\f053";
  font-family: FontAwesome;
  display: block;
  width: 30px;
  height: 30px;
  color: #fff;
  background: #00a244;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}
.content-bs .box-bs:after {
  content: "";
  display: table;
  clear: both;
}

#ez-toc-container {
  border: 2px solid #025f67 !important;
  max-height: 250px;
  display: block !important;
  overflow-y: hidden;
  padding: 0 !important;
  margin-left: 1rem;
}

.ez-toc-heading-level-2 > a {
  font-weight: 700;
  text-transform: capitalize !important;
  padding-top: 5px;
  display: block;
}

.ez-toc-title-container {
  padding: 10px;
  background: #025f67;
  color: #fff;
  font-size: 19px;
  font-weight: 700 !important;
}

.ez-toc-title {
  padding-left: 30px;
}

.ez-toc-title:before {
  content: "\f0c9";
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  margin-right: 5px;
  font-weight: 700;
}

.ez-toc-list {
  padding: 0 10px 10px !important;
  height: 200px;
  overflow-y: auto !important;
}

#ez-toc-container ul li::before {
  display: none;
}

.wmk,
.wtv {
  margin: 20px 0;
  position: relative;
  text-align: center;
}
.sc-ctn {
  position: relative;
}
.wmk a {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100px;
  height: 35px;
}
.wmk a.sc-makham_live {
  right: 60%;
}
.wmk a.sc-makham_hotline {
  left: 60%;
}

/* Page about */
main.page_about .b-title {
  margin-bottom: 20px;
  position: relative;
}
main.page_about .b-title h2,
main.page_about .b-title h3,
main.page_about .b-title h4 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Avo";
}
#s1_about {
  background: #00a244;
  color: #fff;
}
#s1_about h2 {
  padding-left: 50px;
  font-size: 18px;
}
#s1_about h2:before {
  content: "\f02d";
  font-family: FontAwesome;
  font-size: 40px;
  position: absolute;
  top: 0;
  left: 0;
}
#s1_about strong {
  color: #ffff00;
}
#s1_about img {
  margin-top: 15px;
}
#s2_about h3 {
  padding-left: 50px;
  position: relative;
  font-size: 18px;
  line-height: 45px;
}
#s2_about .phaply h3:before {
  content: "\f0e3";
  font-family: FontAwesome;
  font-size: 29px;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #000;
  padding: 0 7px;
}
#s2_about .phaply img {
  margin: 20px 0;
}
#s2_about h3:after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: #00a244;
  position: absolute;
  left: 50px;
  bottom: -1px;
}
#s2_about .coso h3:before {
  content: "\f0f8";
  font-family: FontAwesome;
  font-size: 40px;
  position: absolute;
  top: 5px;
  left: 5px;
}
#s2_about .coso ul li {
  float: left;
  width: 50%;
  padding: 0 5px;
  margin-bottom: 10px;
  text-align: center;
}
#s3_about {
  background: #00a244 url(a/i/gt/bg-1.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
}
#s3_about .tit {
  font-size: 22px;
  color: #ffff00;
  margin-bottom: 15px;
}
#s3_about img {
  margin-top: 10px;
}

#s4_about .text {
  padding-top: 30px;
}
#s4_about .tit {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: justify;
}
#s4_about .text span {
  text-transform: uppercase;
}
#s4_about .row .row {
  margin: 30px 0 20px;
  text-align: center;
}
#s4_about .row .row img {
  margin-bottom: 10px;
}
#s4_about ul {
  margin-top: 20px;
}
#s4_about ul li {
  padding: 5px 0 5px 15px;
  position: relative;
  text-align: justify;
}
#s4_about ul li:before {
  content: "\f111";
  font-family: FontAwesome;
  font-size: 10px;
  position: absolute;
  top: 9px;
  left: 0;
  color: #00a244;
}
#s4_about ul li span {
  color: #00a244;
}
#s4_about .g-btn {
  display: block;
  text-align: center;
  margin-top: 15px;
}
#s4_about .g-btn a {
  display: inline-block;
  height: 42px;
  width: 215px;
  border: 1px solid #308e95;
  padding: 3px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 20px;
}
#s4_about .g-btn a span {
  display: block;
  line-height: 34px;
}
#s4_about .g-btn a.btn-1 {
  margin-bottom: 15px;
}
#s4_about .g-btn a.btn-1 span,
#s4_about .g-btn a.btn-2.active span {
  background: #00a244;
}
#s4_about .g-btn a.btn-2 span,
#s4_about .g-btn a.btn-1.active span {
  background: #f26522;
}
#s5_about {
  color: #fff;
}
#s5_about .cleft {
  background: #00a244;
  padding: 20px 0;
}
#s5_about .cright {
  background: #0c752c;
  padding: 20px 0;
}
#s5_about .b-title {
  font-size: 18px;
}
#s5_about .cright .b-title {
  text-align: center;
  font-family: "unsib";
  color: #ffff00;
}
#s5_about .g-btn {
  display: block;
  text-align: center;
  margin-top: 15px;
}
#s5_about .g-btn a {
  display: inline-block;
  height: 42px;
  width: 215px;
  border: 1px solid;
  padding: 3px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 20px;
}
#s5_about .g-btn a span {
  display: block;
  line-height: 34px;
}
#s5_about .g-btn a.btn-1,
#s5_about .g-btn a.btn-2.active {
  margin-bottom: 15px;
  border-color: #ffff00;
}
#s5_about .g-btn a.btn-2,
#s5_about .g-btn a.btn-1.active {
  margin-bottom: 15px;
  border-color: #f26522;
}
#s5_about .g-btn a.btn-1 span,
#s5_about .g-btn a.btn-2.active span {
  background: #ffff00;
  color: #000;
}
#s5_about .g-btn a.btn-2 span,
#s5_about .g-btn a.btn-1.active span {
  background: #f26522;
  color: #fff;
}
#s5_about ul li {
  font-weight: 500;
}
#s5_about ul li strong {
  font-family: "unsib";
  color: #ffff00;
}
#s6_about {
  padding: 10px 0;
  background: url(a/i/gt/bg-2.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
}
#s6_about .wrap {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}
#s6_about .wrap img {
  width: 80px;
  margin: 0 auto 20px;
}
#s6_about .text {
  text-align: center;
}
#s6_about .text .tit {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 15px;
}

/* Page Device */
#device_pk {
  background: #e3f5e5;
}
ul.device {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#device_hh ul.device {
  justify-content: center;
}
ul.device li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}
ul.device li .img {
  margin-bottom: 15px;
}
ul.device li .text p {
  margin-bottom: 10px;
  text-align: center;
}
ul.device li .text p strong {
  font-family: "unsib";
}

/* POPUP TT COVID */
#popup_ttcovid {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
}
#w-ttcovid {
  width: 90%;
  max-width: 450px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f3f3f3;
}
.tit--ttcovid {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  text-transform: uppercase;
  font-size: 22px;
  position: relative;
  background: #fff;
}
#close-ttcovid {
  position: absolute;
  top: 14px;
  right: 10px;
  line-height: 1;
  cursor: pointer;
}
#close-ttcovid i {
  font-size: 26px;
  line-height: 1;
}
#popup_ttcovid ul {
  padding: 20px;
}
#popup_ttcovid ul li {
  padding-left: 15px;
  padding-top: 3px;
  padding-bottom: 3px;
  position: relative;
  font-weight: 500;
}
#popup_ttcovid ul li span {
  color: #cd2041;
}
#popup_ttcovid ul li:before {
  content: "\f0da";
  font-family: FontAwesome;
  font-size: 18px;
  color: #2a8465;
  position: absolute;
  top: 4px;
  left: 4px;
}
#frm--ttcovid {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
#frm--ttcovid input,
#frm--ttcovid textarea {
  width: 100%;
  height: 40px;
  margin-bottom: 10px;
  background: #fff;
  border: none;
  box-shadow: inset 2px 3px 5px #989898;
  padding: 0 10px;
  border-radius: 9999px;
}
#frm--ttcovid textarea {
  padding-top: 10px;
}
#frm--ttcovid button {
  width: 185px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: none;
  background: #cd2041;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  font-family: "unsi";
  margin: auto;
  padding-bottom: 5px;
}
#frm--ttcovid button i {
  margin-left: 10px;
  margin-top: 7px;
}

.sc-tuvanmoi {
  width: 448px;
  margin: 15px auto;
}
#sc-tvm {
  position: relative;
}
#sc-tvm_gbt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 0;
}
#sc-tvm_gbt a {
  height: 45px;
  width: 215px;
}
.sc-catbqd {
  width: 90%;
  max-width: 600px;
  margin: 15px auto;
}
#sc-tuvanbaogia {
  margin: 15px auto;
}
#sc-uudainenhong {
  border: 1px #ba1e71 dashed;
  padding: 5px 10px;
  background: rgba(255, 168, 172, 0.5);
  margin: 20px auto;
  color: #000;
}
#sc-uudainenhong .anmt {
  font-style: italic;
  font-weight: bold;
  color: #000;
}
#sc-uudainenhong .anmt.active {
  color: red;
}
#sc-uudainenhong img {
  -webkit-filter: drop-shadow(0px 0px 1px #000) !important;
  filter: drop-shadow(0px 0px 1px #000) !important;
}
#sc-uudainenhong i {
  color: #036242;
}
/* Arrow slider */
.slick_arrow {
  position: absolute;
  top: calc(50% - 20px);
  left: 10px;
  opacity: 1;
  border: none;
  background: #9d9d9dab;
  padding: 5px;
  border-radius: 3px;
  z-index: 1;
  cursor: pointer;
}
.sbanner_next {
  left: unset;
  right: 10px;
}

#postTop-nk {
  position: relative;
  max-width: 600px;
  margin: 0 auto 30px;
}
#postTop-btns {
  position: absolute;
  bottom: 7%;
  width: 100%;
  height: 55px;
  display: flex;
}
#postTop-btns a {
  width: calc(100% / 3);
  height: 55px;
}

/* Hiá»‡u á»©ng */
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

#popup--gk {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
#gk--content {
  background: #fff;
  width: 90%;
  max-width: 768px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}
table#cart {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dedede;
}
table#cart td,
table#cart th {
  border: 1px solid #dedede;
  padding: 8px;
}
table#cart th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #025f67;
  color: white;
  font-weight: 400;
  text-align: center;
}
table#cart .cart--thumb {
  width: 15%;
}
table#cart .cart--qty,
table#cart .cart--total {
  width: 20%;
  text-align: center;
}
table#cart .cart--name p {
  font-family: unsib;
}
input#qtycart {
  display: block;
  width: 50px;
  border: 1px solid #dedede;
  height: 25px;
  text-align: center;
  margin: auto;
  outline: none;
}
table#cart #w-qtymobile {
  display: none;
}
#frmcontact {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}
#frmcontact .tit-checkout {
  text-align: center;
  text-transform: uppercase;
  font-family: unsib;
  font-size: 24px;
  margin-bottom: 15px;
}
#frmcontact input,
#frmcontact textarea {
  width: 100%;
  height: 35px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  padding: 0 10px;
  outline: none;
}
#frmcontact textarea {
  height: 80px;
  padding-top: 5px;
  padding-bottom: 5px;
}
#frmcontact .gbtn-checkout {
  display: flex;
  justify-content: flex-end;
}
#frmcontact .gbtn-checkout button {
  width: 100px;
  height: 35px;
  margin-left: 12px;
}
#frmcontact .gbtn-checkout button.frmcart-submit {
  background: #025f67;
  border: none;
  color: #fff;
}
#wrap-cart {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  margin-top: 35px;
  margin-bottom: 50px;
}
.title-cart {
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.bnp {
  padding: 0 10px;
  cursor: pointer;
}

/* CSS trang gĂ³i khĂ¡m */
#gkDetail {
  margin-top: 30px;
}
#l_imggk {
  margin-top: 15px;
}
#l_imggk .itemimg {
  padding: 0 3px;
}
#l_imggk .slick-current img {
  border: 1px solid #035f57;
  border-radius: 5px;
}
#gkDetail-tit {
  font-size: 30px;
  line-height: 1.3;
}
#gkDetail-des {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
}
#gkDetail-metaWrp {
  display: flex;
  align-items: flex-end;
}
.gkDetail-pricekm {
  font-size: 24px;
  text-decoration: line-through;
}
.gkDetail-price {
  font-size: 65px;
  color: #eb2041;
  font-family: "unsib";
  line-height: 1.1;
  display: block;
}
.gkDetail-price sup {
  font-size: 65%;
  vertical-align: top;
}
#gkDetail-label {
  padding-left: 25px;
  margin-bottom: 10px;
}
#gkDetail-label span {
  width: 70px;
  height: 35px;
  border-radius: 0 5px 5px 0;
  font-size: 24px;
  line-height: 18px;
  margin-top: 10px;
  background: #eb2041;
  color: #fff;
  text-align: center;
  position: relative;
  padding-right: 5px;
  padding-bottom: 5px;
}
#gkDetail-label span:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-right: 15px solid #eb2041;
  position: absolute;
  top: 0;
  left: -15px;
}
#gkDetail-qty {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.quantity {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.quantity:before {
  content: "Sá»‘ lÆ°á»£ng";
  color: #666666;
  margin-right: 10px;
}
.quantity input {
  height: 35px;
  width: 40px;
  border: 1px solid #999;
  text-align: center;
}
.quantity input[type="number"] {
  border-right: none;
  border-left: none;
}
.quantity input[type="button"] {
  width: 30px;
}
#gkDetail-sub {
  display: flex;
  flex-direction: column;
  height: 35px;
  font-size: 14px;
}
#gkDetail-sub > span {
  line-height: 18px;
}
#gkDetail-subCntn {
  display: flex;
  justify-content: space-between;
}
#gkDetail-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#gkDetail-buttons > * {
  width: calc(50% - 15px);
  max-width: 300px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "unsib";
  color: #fff;
  background: rgb(13, 92, 142);
  background: -moz-linear-gradient(
    90deg,
    rgba(13, 92, 142, 1) 0%,
    rgba(31, 164, 131, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(13, 92, 142, 1) 0%,
    rgba(31, 164, 131, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(13, 92, 142, 1) 0%,
    rgba(31, 164, 131, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0d5c8e",endColorstr="#1fa483",GradientType=1);
  border: none;
  position: relative;
  cursor: pointer;
}
.gkDetail-buttonQBook {
  text-transform: uppercase;
}
.gkDetail-buttonBook:before {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 1px;
  left: 1px;
  background: #fff;
  z-index: 0;
}
.gkDetail-buttonBook * {
  position: relative;
  z-index: 1;
  color: #157b89;
}
.gkDetail-buttonBook i {
  margin-right: 10px;
}
#gkDetail-buttons i {
  font-size: 22px;
  margin-right: 10px;
}
#gkWrp {
  margin-top: 30px;
}
#gkCntn-title {
  text-transform: uppercase;
  font-size: 30px;
  font-family: "unsib";
  color: #eb2041;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.sc-viemttl,
.sc-ungthuth,
.sc-tvxts {
  text-align: center;
}
#sc-viemttl,
#sc-ungthuth,
#sc-tvxts {
  position: relative;
  display: inline-block;
  margin: 0.85rem auto;
}
#scViemttl-hl {
  width: 160px;
  height: 50px;
  position: absolute;
  bottom: 20px;
  left: 38%;
  transform: translateX(-50%);
}
#sc-ungthuth a {
  position: absolute;
  width: 30%;
  height: 40px;
  right: 5px;
}
#scUTTH-lc {
  bottom: 50%;
}
#scUTTH-hl {
  top: calc(50% + 5px);
}
#scTVXTS-hl {
  position: absolute;
  width: 30%;
  height: 40px;
  right: 20px;
  bottom: 0;
}

.map {
  width: 630px;
  height: 655px;
}

/* Định dạng dropdown mở rộng */
.mega-dropdown {
  width: 60vw;
  /* Chiếm toàn bộ chiều rộng màn hình */
  left: 0;
  right: 0;
  padding: 30px;
  background: #fff;
  margin-top: 30px !important;
  /* Đảm bảo màu nền */
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Căn chỉnh các cột trong dropdown */
.mega-dropdown .row {
  display: flex;
  flex-wrap: nowrap;
  /* Ngăn cột xuống dòng */
}

/* Định dạng từng cột */
.mega-dropdown .dropdown-column {
  /* padding: 10px; */
  border-right: 1px solid #ddd;
  /* Viền phân cách cột */
}

/* Xóa viền của cột cuối */
.mega-dropdown .dropdown-column:last-child {
  border-right: none;
}

/* Căn chỉnh tiêu đề chuyên khoa */
.mega-dropdown h6 {
  font-weight: bold;
  border-bottom: 2px solid #2f6d56;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #2f6d56;
}

/* Định dạng mục dropdown */
.mega-dropdown .dropdown-item {
  padding: 5px 0;
  color: #333;
  display: block;
}

.mega-dropdown .dropdown-item:hover {
  background: #2f6d56;
  color: white !important;
}

@media (max-width: 1600px) {
  .mega-dropdown {
    width: 100vw;
  }
}

/* Tùy chỉnh Offcanvas */
.offcanvas {
  background: #e0fff4;
}

.offcanvas-title {
  font-size: 22px;
  font-weight: bold;
  /* color: #007bff; */
}

/* Style cho danh sách menu */
.offcanvas-body .nav-item {
  padding: 10px;
}

.offcanvas-body .nav-link {
  font-size: 15px;
  font-weight: bold;
  color: #026356;
  border-bottom: 1px solid #026356;
}

.offcanvas-body .nav-link:hover {
  /* color: #007bff; */
}

.dropdown-column {
  flex: 1;
  min-width: 230px;
  padding: 10px 10px;
  margin: -15px -2px;
}

.dropdown-item {
  color: black !important;
  font-family: auto !important;
  padding-left: 20px;
  font-size: 16px !important;
  line-height: 20px !important;
}
.dropdown-scroll .scrollable-list {
  max-height: 650px;
  overflow-y: auto;
  padding-right: 10px;
}

::-webkit-scrollbar {
  width: 3px; /* Điều chỉnh giá trị này để có độ dày mong muốn */
  height: 3px; /* Nếu là thanh scroll dọc, bạn điều chỉnh chiều cao */
}

/* Tùy chỉnh màu sắc và hình dạng của nút kéo (thumb) */
::-webkit-scrollbar-thumb {
  background-color: #888; /* Màu của nút kéo */
  border-radius: 5px; /* Bo tròn góc của nút kéo */
}

/* Tùy chỉnh màu sắc của phần nền (track) */
::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Màu của phần nền */
}

/* Hiệu ứng khi di chuột qua nút kéo */
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.menu-nav {
  display: flex;
  align-items: center;
  background: #025f67; /* Hoặc màu nền ban đầu của bạn */
  color: #333; /* Hoặc màu chữ ban đầu của bạn */
  top: 0;
  left: 0;
  width: 100% !important;
  height: auto; /* Hoặc chiều cao ban đầu của bạn */
  z-index: 998; /* Đảm bảo nó ở dưới fixed menu khi không cố định */
  box-shadow: none; /* Hoặc box-shadow ban đầu của bạn */
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out; /* Thêm transition cho cả transform và top */
  transform: translateY(0); /* Đảm bảo menu ở vị trí ban đầu khi không cố định */
}
/* Ẩn header khi cuộn xuống - có hiệu ứng mượt */

.fixed-menu {
  position: fixed;
  display: flex;
  align-items: center;
  background: #025f67;
  color: #fff;
  padding: 30px 0 0 0px;
  margin-top: 0px !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 109px;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
   /* transform: translateY(0); */
  
}



/* Định dạng dropdown mở rộng */
.mega-dropdown {
  width: 30vw;
  /* Chiếm toàn bộ chiều rộng màn hình */
  left: 0;
  right: 0;
  padding: 20px;
  background: #fff;
  /* Đảm bảo màu nền */
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Căn chỉnh các cột trong dropdown */
.mega-dropdown .row {
  display: flex;
  flex-wrap: nowrap;
}

/* Định dạng từng cột */
.mega-dropdown .dropdown-column {
  /* padding: 10px; */
  border-right: 1px solid #ddd;
  /* Viền phân cách cột */
}
/* Xóa viền của cột cuối */
.mega-dropdown .dropdown-column:last-child {
  border-right: none;
}

/* Căn chỉnh tiêu đề chuyên khoa */
.mega-dropdown h6 {
  font-weight: bold;
  border-bottom: 2px solid #2f6d56;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #2f6d56;
}
/* Định dạng mục dropdown */
.mega-dropdown .dropdown-item {
  padding: 5px 0;
  color: #333;
  display: block;
}

.mega-dropdown .dropdown-item:hover {
  background: #2f6d56;
  color: white;
}
/* Tùy chỉnh Offcanvas */
.offcanvas {
  background: #e0fff4;
}

.offcanvas-title {
  font-size: 22px;
  font-weight: bold;
  /* color: #007bff; */
}
/* Style cho danh sách menu */
.offcanvas-body .nav-item {
  padding: 10px;
}

.offcanvas-body .nav-link {
  font-size: 15px;
  font-weight: bold;
  color: #026356;
  border-bottom: 1px solid #026356;
}

.offcanvas-body .nav-link:hover {
  /* color: #007bff; */
}
/* Nút đóng */
.btn-close {
  background: none;
  font-size: 20px;
}

/* Style cho hotline */
.hotline-box {
  background: red;
  color: white;
  padding: 0px;
  border-radius: 10px;
}

.hotline-title {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}

.hotline-number {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
.nav-item {
  display: block;
}

.submenu {
  display: none;
  /* Ẩn menu con ban đầu */
  padding-left: 20px;
}

.submenu.show {
  display: block;
  /* Hiển thị khi có class .show */
}


.header-1 {
  background-color: #007c70;
  color: #ffd700;
  font-weight: bold;
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.header-1.show {
  width: 100%;
  position: fixed;
  transition: top 0.3s;
  z-index: 1000;
}
.menu-group-1 {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #026356;
  padding: 0 8px;
}

.menu-icon-1 {
  font-size: 38px;
  color: #ffffff;
}

.menu-text-1 {
  color: #ffd700;
  font-size: 14px;
}

.brand-group-1 {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.brand-logo-1 {
  width: 90px;
  height: 90px;
  margin-right: -20px;
}

.brand-text-1 {
  color: #ffd700;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

.brand-subtext-1 {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}

/* menu-mobi */
.brand-text-menu-1 {
  color: #ffd700;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Menu */
/* Navbar chung */


.menu-nav .nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: -5px;
  left: 0;
}

/* Căn giữa menu dropdown */
.dropdown-menu {
  min-width: 1200px; /* Kích thước menu dropdown lớn */
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
  padding: 15px;
  display: none;
}
/* Khi bấm vào menu con sẽ hiện ra */
.nav-item.dropdown.show .dropdown-menu {
  display: flex !important;
  flex-wrap: wrap;
}
.dropdown-column {
  flex: 1;
  min-width: 177px;
  padding: 10px 10px;
  margin: -15px -2px;
}
.dropdown-column h6 {
  font-size: 16px;
  color: #368b3c;
  border-bottom: 1px solid #6f6767; /* Gạch dưới */
  padding-bottom: 5px; /* Khoảng cách với nội dung bên dưới */
  margin-bottom: 10px; /* Tạo khoảng cách */
}
.dropdown-item {
  padding: 5px 0;
  color: #333;
  font-size: 14px;
}
.dropdown-item:hover {
  color: #007bff;
}

.dropdown-scroll .scrollable-list {
  max-height: 650px; /* Điều chỉnh chiều cao tối đa để hiển thị khoảng 27 mục */
  overflow-y: auto; /* Kích hoạt thanh cuộn nếu vượt quá chiều cao */
  padding-right: 10px; /* Để tránh nội dung che thanh cuộn */
}


.content-viewpost{
  font-size: 20px;
  -webkit-font-smoothing: antialiased !important; /* Cho trình duyệt dựa trên WebKit (Chrome, Safari) */
  -moz-osx-font-smoothing: grayscale !important; /* Cho Firefox trên macOS */
}

.footer-menu {
  display: none;
 }

 .btn-chat-1 {
  background-color: #00695c;
}
.btn-chat-1:hover {
  background-color: #00695c;
}

.btn-commit-1 {
  background-color: #005ac8;
}
.btn-commit-1:hover {
  background-color: #005ac8;
}
.btn-hotline-1 {
  background-color: #a11b1b;
}
.btn-hotline-1:hover {
  background-color: #a11b1b;
}
 


/* Modal Background */
.modal-success {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content */
.modal-content-success {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 90%;
}

/* Modal Title */
.modal-content-success h3 {
  color: #28a745;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

/* Modal Text */
.modal-content-success p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* Close Button */
.btn-close-success {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.btn-close-success:hover {
  background-color: #218838;
}
.mb-3 input{
  border: 1px solid #c7bcbc;
}
.mb-3 textarea{
  border: 1px solid #c7bcbc;
}


#notificationContainer-1 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: white;
  padding: 15px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: none; /* Ẩn ban đầu */
}

#message-1 {
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.button-link-1 {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 5px;
  text-decoration: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.button-link-1:hover {
  text-decoration: none;
  cursor: pointer;
}

.accept-button-1 {
  background-color: orange;
}

.reject-button-1 {
  background-color: teal;
}


/* styles.css */

#registrationFormContainer-1 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #8e60a9 0%, #5d6aa9 100%);
  color: white;
  padding: 20px; /* Increased padding */
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  width: 350px; /* Adjust width */
  /* height: 400px; Remove fixed height for better responsiveness */
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.2s ease-out;
  transform: translate(-50%, -60%) scale(0.95); /* Slightly adjusted initial transform */
  border: 5px solid
}

#registrationFormContainer-1.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

#closeRegistrationForm-1 {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 1.5em;
  color: white; /* Keep white for better contrast on purple */
  width: 25px;
  height: 25px;
  background-color: #ff4d4d; /* Red background for close button */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

#registrationFormContainer-1 h2 {
  color: white;
  text-align: center;
  margin-top: 20px; /* Adjusted margin */
  margin-bottom: 15px; /* Adjusted margin */
  font-size: 1.1em; /* Slightly smaller font */
  font-weight: bold; /* Make the title bold */
}

#registrationFormContainer-1 > div { /* Style the phone input container */
  display: flex;
  align-items: center;
  margin: 0px;
  margin-top: 15px; /* Adjusted margin */
}

#phoneNumber-1 {
  flex-grow: 1;
  padding: 10px; /* Increased padding */
  border: 1px solid #ccc; /* Light gray border */
  border-radius: 5px;
  margin-right: 10px; /* Add some space between input and button */
  font-size: 0.9em;
  color: #333; /* Dark text color */
}

#registrationFormContainer-1 > div > button { /* Style the send button */
  background-color: #e9ecef; /* Light gray background */
  color: #007bff; /* Blue icon color */
  border: none;
  padding: 10px 12px; /* Adjusted padding */
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em;
}

#registrationFormContainer-1 > div > button svg {
  fill: #007bff; /* Ensure icon color */
}

#registerButton-1 {
  background-color: #ff9900; /* Orange background */
  color: white;
  border: none;
  padding: 12px 20px; /* Adjusted padding */
  border-radius: 25px; /* More rounded button */
  cursor: pointer;
  display: block;
  width: 90%;
  margin: 15px auto; /* Adjusted margin */
  font-size: 0.9em;
  font-weight: bold; /* Make button text bold */
  text-align: center; /* Ensure text is centered */
}

#registerButton-1 svg {
  margin-right: 8px; /* Add spacing for the icon */
  fill: white; /* Ensure icon is white */
}

#registrationFormContainer-1 p {
  color: white;
  text-align: center;
  font-size: 0.75em; /* Slightly smaller font size */
  margin-top: 10px; /* Adjusted margin */
  margin-bottom: 0; /* Remove default bottom margin */
}

.popup-footer {
  display: flex;
  justify-content: space-around; /* Distribute items evenly */
  margin-top: 8px; /* Adjusted margin */
  border-radius: 10px; /* More rounded footer */
}

.popup-footer-item {
  background-color: white;
  color: #333;
  border-radius: 8px;
  padding: 8px; /* Adjusted padding */
  width: 45%; /* Adjust width for spacing */
  box-sizing: border-box; /* Ensure padding doesn't increase width */
  display: flex; /* Thêm display flex cho item */
  height: 38px;

}


.popup-footer-item i.bi { /* Target Bootstrap icons */
  font-size: 1.2em;
    margin-bottom: 0;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    color: #4caf50;
    border-right: 1px solid;
    padding: 0 5px;
}

.popup-footer-item span {
  font-size: 0.7em;
  line-height: 1.2;
  color: #333; /* Dark gray color for text */
  display: inline-block; /* Chuyển thành inline-block */
  vertical-align: middle; /* Căn giữa chữ theo chiều dọc với icon */
}
.icon-send{
  background: #5a5ad7;
    padding: 12px;
    color: #fff;
    border-radius: 20px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

#registerButton-1 {
  animation: pulse 1.5s infinite;
}
/* Container cho ảnh nhạy cảm */
.sensitive-image-container {
  position: relative; /* Quan trọng: để các phần tử con (overlay, text) định vị tuyệt đối theo nó */
  display: inline-block; /* Hoặc block, tùy layout mong muốn */
  overflow: hidden; /* Đảm bảo không có gì tràn ra ngoài container */
  /* Có thể đặt width/height nếu cần, hoặc để ảnh tự định kích thước */
}

/* Ảnh gốc */
.sensitive-image-container img {
  display: block; /* Loại bỏ khoảng trắng dưới ảnh */
  width: 100%; /* Ảnh lấp đầy chiều rộng của container */
  height: 500px; /* Duy trì tỷ lệ khung hình */
}

/* Lớp phủ tối */
.sensitive-image-container .overlay {
  position: absolute; /* Định vị tuyệt đối */
  top: 0;
  left: 0;
    right: 0;
  bottom: 0; /* Lấp đầy toàn bộ container */
  background-color: rgba(0, 0, 0, 0.7); /* Màu đen với độ mờ 70% (có thể điều chỉnh 0.5 - 0.8 tùy ý) */
  z-index: 2; /* Đảm bảo nó nằm trên ảnh */
  transition: opacity 0.3s ease; /* Tạo hiệu ứng mờ dần khi hover */
}

/* Chữ cảnh báo */
.sensitive-image-container .warning-text {
  position: absolute; /* Định vị tuyệt đối */
  top: 50%; /* Đưa tâm chữ về giữa container theo chiều dọc */
  left: 50%; /* Đưa tâm chữ về giữa container theo chiều ngang */
  transform: translate(-50%, -50%); /* Dịch chuyển chữ ngược lại 50% chiều rộng và chiều cao của nó để căn giữa hoàn hảo */
  color: white; /* Màu chữ */
  font-size: 1.2em; /* Kích thước chữ */
  font-weight: bold;
  text-align: center;
  z-index: 3; /* Đảm bảo nó nằm trên lớp phủ */
  pointer-events: none; /* Quan trọng: cho phép click/hover xuyên qua lớp chữ để tương tác với container */
  transition: opacity 0.3s ease; /* Tạo hiệu ứng mờ dần khi hover */
}

/* Hiệu ứng khi hover vào container */
.sensitive-image-container:hover .overlay {
  opacity: 0; /* Lớp phủ trở nên trong suốt */
}

.sensitive-image-container:hover .warning-text {
  opacity: 0; /* Chữ cảnh báo trở nên trong suốt */
}

/* Tùy chọn: Ảnh cũng có thể có transition nếu muốn */
.sensitive-image-container:hover img {
  /* Ví dụ: có thể bỏ filter nếu bạn dùng filter thay cho overlay */
  /* filter: brightness(1); */
}
/* CSS cho khối cha */
.parent-container {
  text-align: center; /* Điều này sẽ căn giữa nội dung kiểu inline, inline-block, và text bên trong nó */
  /* Các thuộc tính khác của khối cha (ví dụ: padding, background, border...) */
}

/* Giữ nguyên các CSS đã có cho .sensitive-image-container và các phần tử bên trong */
.sensitive-image-container {
  position: relative;
  display: inline-block; /* GIỮ NGUYÊN thuộc tính này */
  overflow: hidden;
  /* ... các thuộc tính khác của container ... */
}





/* style.css */

.comment-slide-container {
  /* Đảm bảo các block comment chia đều không gian */
  justify-content: space-around; /* Phân bố không gian giữa các block */
  padding: 20px 0; /* Khoảng đệm trên dưới cho container */
}

.comment-block {
  background-color: #ffffff; /* Nền trắng cho bình luận */
  border: 1px solid #e0e0e0; /* Viền nhẹ */
  border-radius: 10px; /* Góc bo tròn */
  padding: 25px; /* Khoảng đệm bên trong */
  margin: 0 10px; /* Khoảng cách giữa các bình luận */
  text-align: center; /* Căn giữa nội dung */
  flex: 1; /* Cho phép flex item co giãn */
  min-width: 280px; /* Đảm bảo chiều rộng tối thiểu trước khi xuống dòng */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hiệu ứng đổ bóng nhẹ */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hiệu ứng chuyển động khi hover */
  display: flex; /* Sử dụng flexbox bên trong comment block */
  flex-direction: column; /* Xếp các phần tử theo cột */
  align-items: center; /* Căn giữa theo chiều ngang */
  
}

.comment-block:hover {
  transform: translateY(-5px); /* Nâng nhẹ block lên khi hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Bóng rõ hơn khi hover */
}

.comment-content {
  /* .comment-content chứa cả <p> nội dung và .comment-info */
  /* Cần đảm bảo các phần tử con bên trong nó cũng được định vị tốt */
  width: 100%; /* Choán hết chiều rộng của comment-block (đã căn giữa) */
}
.comment-avatar img {
  width: 60px; /* Kích thước avatar */
  height: 60px;
  border-radius: 50%; /* Bo tròn avatar */
  object-fit: cover; /* Đảm bảo ảnh không bị méo */
  margin-bottom: 15px; /* Khoảng cách dưới avatar */
  border: 2px solid #00515d; /* Viền màu cho avatar */
}

.comment-content p {
  font-style: italic; /* Chữ nghiêng cho nội dung */
  color: #555; /* Màu chữ xám */
  margin-bottom: 10px; /* Giảm khoảng cách dưới đoạn text bình luận */
}

/* CSS mới cho Thời gian và Địa chỉ */
.comment-info {
  font-size: 0.9em; /* Cỡ chữ nhỏ hơn */
  margin-bottom: 10px; /* Khoảng cách dưới thông tin */
  font-weight: 800;
  /* Bạn có thể thêm font-weight, vv. nếu muốn */
}


.comment-author {
  font-weight: bold; /* Chữ in đậm cho tên tác giả */
  color: #333; /* Màu chữ đậm hơn */
  
}

/* Điều chỉnh cho màn hình nhỏ hơn (dưới md - 768px) */


/* Tùy chỉnh màu sắc và kích thước cho nút điều hướng Bootstrap */
.carousel-control-prev,
.carousel-control-next {
  width: 5%; /* Giảm chiều rộng của vùng bấm */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Nền màu đen mờ cho icon */
  border-radius: 50%; /* Bo tròn icon */
  padding: 15px; /* Tăng kích thước icon */
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
   background-color: rgba(0, 0, 0, 0.8); /* Nền màu đen đậm hơn khi hover */
}
