.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 96px;
  background-color: #10101033;
  backdrop-filter: blur(20px);
}

/* Fix for WordPress Admin Bar overlap */
body.admin-bar .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
}

.header .container,
.header-container {
  height: 100%;
}

/* =========================
   HEADER LAYOUT
========================= */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.header-logo {
  flex: 0 0 auto;
}

.header-right {
  justify-content: flex-end;
  gap: 16px;
}

/* =========================
   LOGO
========================= */
.header-logo img {
  display: block;
  width: 55px;
  height: auto;
}

/* =========================
   MENU
========================= */
.header-menu ul {
  display: flex;
  align-items: center;
  gap: 36px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.header-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #adadad;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.header-pc-item:hover a,
.header-pc-item.active a{
	color: #fff;
}

/* =========================
   LANGUAGE
========================= */
.header-right .lang {
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.header-right a.lang:hover {
  color: inherit;
}

.header-right .lang .lang-icon {
  justify-content: center;

  width: 24px;
  height: 24px;

  border-radius: 50%;
}

.header-right .lang .lang-name {
  color: #adadad;
}

.icon-color {
  filter: invert(1);
}

/* =========================
   BUTTON
========================= */
/* .header-btn {

} */

.header-btn a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.d-header {
  display: none !important;
}
/* =========================
   MOBILE
========================= */
@media (max-width: 1024px) {
  .header {
    height: 76px;
  }
  .d-header {
    display: block !important;
  }
  .header-container {
    height: 76px;
  }
  .header-logo img {
    width: 57px;
  }
  /* Ẩn menu desktop */
  .header-menu,
  .header-btn {
    display: none;
  }
  .header-btn a {
    font-size: 14px;
  }
  .header-mb {
    display: block;
  }

  .header-logo {
    position: relative;
    z-index: 1;
  }

  .header-mobile {
    display: block;
    position: relative;
  }

  .mobile-lang-header {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mobile-bar {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mobile-close i,
  .lang-icon i .mobile-lang-header .text-lang,
  .mobile-lang-header i,
  .mobile-menu-icon i {
    font-size: 14px;
    color: #adadad;
    cursor: pointer;
  }
  .lang-name {
    font-size: 14px;
    color: #adadad;
  }
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10000;
  }

  /* Menu trượt */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 10001;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  }
  .mobile-menu.open {
    right: 0;
    overflow: hidden;
  }

  /* Header menu trong mobile */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }

  .mobile-contact .header-btn {
    border-radius: 60px;
    padding: 8px 24px;
    background-color: #fff;
    display: block;
  }
/*   .mobile-contact .header-btn:hover {
    background-color: #194185;
  } */
  /* List menu */
  .mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
  }

  .mobile-menu-list li {
    display: block;
    transition: 0.25s ease;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 18px;
  }
  .mobile-menu-list li.active,
  .mobile-menu-list li:hover {
    border-radius: 8px;
    background: #05b6da;
  }
  .mobile-menu-list li.active a,
  .mobile-menu-list li:hover a {
    color: #fff;
    opacity: 1;
  }

  /* Link item */
  .mobile-menu-list a {
    text-decoration: none;
    color: #194185;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    display: block;
    opacity: 0.6;
  }

  .header-btn a {
    display: flex;
    gap: 8px;
  }

  .mobile-contact {
    display: flex;
    height: 60px;
    padding: 12px 24px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 24px;
    border: 0.05px solid #cacaca;
    background: linear-gradient(181deg, #0099bc -38.93%, #001f28 41.99%);
  }
  .mobile-contact > .mobile-lang {
    display: flex;
    gap: 8px;
    padding: 8px;
    align-items: center;
  }
  .mobile-contact > .mobile-lang span {
    color: #fff;
    font-size: 14px;
  }
  .mobile-lang i {
    color: #fff;
  }
  .mobile-contact > .mobile-lang a {
    color: #fff;
  }
  .mobile-contact .header-btn span {
    color: #194185 !important;
  }

  .mobile-contact .header-btn:hover span {
    color: #fff !important;
  }
}
@media (max-width: 768px) {
  .header-mb {
    display: block;
  }
}
