﻿@charset "UTF-8";
* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

body {
  box-sizing: border-box;
  font-size: 15px;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container-custom-80 {
  width: 90%;
  max-width: 1900px;
  margin-right: auto;
  margin-left: auto;
}

.container-custom-100 {
  width: 100%;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/******* RESPONSIVE ********/
/****Màn hình máy tính thông thường****/
/****Màn hình desktop loại bé****/
/**** Màn hình ipad hiển thị theo chiều ngang (Landscape) ****/
/****Màn hình ipad loại bé hiển thị theo chiều ngang (Landscape)****/
/****Màn hình ipad hiển thị theo chiều dọc (Portrait)****/
/****Màn hình ipad loại bé hiển thị theo chiều dọc (Portrait)****/
/****Màn hình điện thoại hiển thị theo chiều ngang (Landscape)****/
/****Màn hình điện thoại Iphone Plus****/
/****Màn hình điện thoại Iphone****/
/****Màn hình điện thoại loại bé****/
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
}
ul, li {
  list-style: none;
}

body {
  color: #0a2540;
  font-family: Manrope, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
}

a:hover {
  text-decoration: none;
}

.menu-hide {
  display: none !important;
}

.path-item {
  display: none;
}
.path-item.menu-show {
  display: block;
}

#header {
  border-bottom: 2px solid #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
#header .menu {
  display: none;
}
#header .menu.menu-show {
  display: block;
}
#header .update-message {
  padding: 50px 20px;
  background-color: #f8f9fa;
  border: 1px dashed #ccc;
  border-radius: 8px;
  max-width: 600px;
  margin: 50px auto;
  color: #555;
}
#header .update-message .icon {
  font-size: 48px;
  color: #17a2b8;
  margin-bottom: 15px;
}
#header .container-custom {
  width: 100%;
  max-width: 1600px;
  height: 78px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header .header-left {
  display: flex;
  align-items: center;
  min-width: max-content;
}
#header .header-center {
  height: 100%;
  max-width: calc(100% - 260px);
}
#header .header-center .menu-list {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 20px);
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .header-center .menu-list li a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #1c2f66;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 7px 10px;
}
#header .header-center .menu-list li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: #488cfa;
  border-radius: 50px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
#header .header-center .menu-list li a:hover, #header .header-center .menu-list li a.active {
  color: #488cfa;
}
#header .header-center .menu-list li a:hover::after, #header .header-center .menu-list li a.active::after {
  width: 100%;
}
#header .header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header .header-right .btn-notification {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-right: 15px;
}
#header .header-right .btn-notification i {
  font-size: 20px;
  color: #036bd6;
}
#header .header-right .btn-notification span {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d03b3b;
  border: 1.5px solid #fff;
}
#header .header-right .header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
#header .header-right .header-actions .search-box {
  position: relative;
}
#header .header-right .header-actions .search-box input {
  padding: 8px 35px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 350px;
  font-size: 15px;
  outline: none;
}
#header .header-right .header-actions .search-box button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #666;
}
#header .header-right .header-actions .btn-login {
  background: linear-gradient(105deg, #488cfa 20%, #60a5fa 100%);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.22s ease;
  white-space: nowrap;
}
#header .header-right .header-actions .btn-login i {
  font-size: 16px;
}
#header .header-right .header-actions .btn-login:hover {
  filter: brightness(0.95);
  color: #fff;
}
#header .banner {
  width: 100%;
}
#header .banner .img-wrap {
  position: relative;
  width: 100%;
  height: 76px;
}
#header .banner .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#header .banner .img-wrap .banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 12px;
}
#header .banner .img-wrap .banner-content .logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}
#header .banner .img-wrap .banner-content .logo-wrap img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-right: 14px;
}
#header .banner .img-wrap .banner-content .logo-wrap .logo-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
#header .banner .img-wrap .banner-content .logo-wrap .logo-content .title-top,
#header .banner .img-wrap .banner-content .logo-wrap .logo-content .title-bottom {
  font-size: 20px;
  font-weight: 500;
  color: #036bd6;
  line-height: 1.3;
  text-transform: uppercase;
}
#header .banner .img-wrap .banner-content .logo-wrap .logo-content #tenlv {
  font-size: 16px;
  color: #488cfa;
}
#header .banner .img-wrap .banner-content h1 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 4px 4px 4px #fff;
  color: #1258a0;
}
#header .menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#header .menu-toggle i {
  font-size: 18px;
  color: #1d2f6f;
}
@media (max-width: 1400px) {
  #header .header-center .menu-list {
    gap: 10px;
  }
  #header .header-center .menu-list li a {
    font-size: 13px;
    padding: 0 6px;
  }
  #header .banner .img-wrap .banner-content h1 {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  #header .header-center .menu-list {
    gap: 22px;
  }
  #header .header-center .menu-list li a {
    font-size: 13px;
  }
  #header .header-right .btn-login {
    padding: 0 18px;
  }
  #header .banner .img-wrap {
    height: 110px;
  }
  #header .banner .img-wrap .banner-content .logo-wrap img {
    width: 50px;
    height: 50px;
  }
  #header .banner .img-wrap .banner-content .logo-wrap .logo-content .title-top,
  #header .banner .img-wrap .banner-content .logo-wrap .logo-content .title-bottom {
    font-size: 13px;
  }
  #header .banner .img-wrap .banner-content h1 {
    font-size: 26px;
    padding: 0 180px;
  }
}
@media (max-width: 992px) {
  #header {
    height: 72px;
  }
  #header .container-custom {
    padding: 0 18px;
  }
  #header .menu-toggle {
    display: flex;
  }
  #header .header-center {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  #header .header-center.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  #header .header-center .menu-list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 0;
  }
  #header .header-center .menu-list li {
    width: 100%;
  }
  #header .header-center .menu-list li a {
    width: 100%;
    padding: 14px 22px;
    font-size: 15px;
  }
  #header .header-center .menu-list li a::after {
    display: none;
  }
  #header .header-center .menu-list li a:hover {
    background: #f5f7fb;
  }
  #header .banner .img-wrap {
    height: 100px;
  }
  #header .banner .img-wrap .banner-content .logo-wrap {
    left: 14px;
  }
  #header .banner .img-wrap .banner-content .logo-wrap img {
    width: 42px;
    height: 42px;
    margin-right: 10px;
  }
  #header .banner .img-wrap .banner-content .logo-wrap .logo-content .title-top,
  #header .banner .img-wrap .banner-content .logo-wrap .logo-content .title-bottom {
    font-size: 11px;
  }
  #header .banner .img-wrap .banner-content h1 {
    font-size: 22px;
    padding: 0 140px;
  }
}
@media (max-width: 768px) {
  #header .banner .img-wrap {
    height: 90px;
  }
  #header .banner .img-wrap .banner-content .logo-wrap img {
    width: 36px;
    height: 36px;
    margin-right: 8px;
  }
  #header .banner .img-wrap .banner-content .logo-wrap .logo-content .title-top,
  #header .banner .img-wrap .banner-content .logo-wrap .logo-content .title-bottom {
    font-size: 9px;
  }
  #header .banner .img-wrap .banner-content h1 {
    font-size: 18px;
    padding: 0 110px;
  }
  #header .header-left .logo-wrap img {
    width: 48px;
    height: 48px;
    margin-right: 10px;
  }
  #header .header-left .logo-wrap .logo-content .title-top,
  #header .header-left .logo-wrap .logo-content .title-bottom {
    font-size: 13px;
  }
  #header .header-right .btn-login {
    padding: 0 14px;
    font-size: 13px;
  }
  #header .header-right .btn-login span {
    display: none;
  }
}
@media (max-width: 576px) {
  #header {
    height: 68px;
  }
  #header .banner .img-wrap {
    height: 80px;
  }
  #header .banner .img-wrap .banner-content {
    padding: 0 10px;
  }
  #header .banner .img-wrap .banner-content .logo-wrap {
    left: 10px;
  }
  #header .banner .img-wrap .banner-content .logo-wrap img {
    width: 30px;
    height: 30px;
    margin-right: 6px;
  }
  #header .banner .img-wrap .banner-content .logo-wrap .logo-content .title-top,
  #header .banner .img-wrap .banner-content .logo-wrap .logo-content .title-bottom {
    font-size: 8px;
  }
  #header .banner .img-wrap .banner-content h1 {
    font-size: 14px;
    padding: 0 80px;
    text-shadow: 2px 2px 4px #fff;
  }
  #header .container-custom {
    padding: 0 14px;
  }
  #header .header-left .logo-wrap img {
    width: 42px;
    height: 42px;
  }
  #header .header-left .logo-wrap .logo-content .title-top,
  #header .header-left .logo-wrap .logo-content .title-bottom {
    font-size: 11px;
  }
  #header .header-right {
    gap: 8px;
  }
  #header .header-right .btn-search,
  #header .header-right .btn-login,
  #header .header-right .menu-toggle {
    width: 38px;
    height: 38px;
    padding: 0;
  }
  #header .header-right .btn-login {
    justify-content: center;
  }
  #header .header-right .btn-login i {
    margin: 0;
  }
}
@media (max-width: 420px) {
  #header .banner .img-wrap {
    height: 72px;
  }
  #header .banner .img-wrap .banner-content .logo-wrap .logo-content {
    display: none;
  }
  #header .banner .img-wrap .banner-content h1 {
    font-size: 12px;
    padding: 0 50px;
  }
}
