﻿@charset "UTF-8";
img {
  max-width: 100%;
}

.head-top {
  background-color: #c00000;
  padding: 0 1rem;
}
.head-top .head-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}
.head-top .head-content .logo {
  height: 50px;
  width: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: #fff;
  padding: 5px;
}
.head-top .head-content .logo img {
  display: block;
  max-height: 40px;
}
.head-top .head-content .box-search {
  width: 100%;
  max-width: 400px;
}
.head-top .head-content .box-search .form-control {
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  padding-left: 2rem;
  border-color: #9f241d;
}
.head-top .head-content .box-search .icon-search {
  position: absolute;
  left: 10px;
  top: 10px;
}
.head-top .head-content .box-search .btn-primary {
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
.head-top .head-content .box-search .btn-primary .--txt {
  display: none;
}
.head-top .head-content .box-right {
  display: flex;
  align-items: center;
  justify-content: end;
}
.head-top .head-content .btn-primary {
  background-color: #9f241d;
  border-color: #9f241d;
}
.head-top .head-content .btn-primary:hover {
  background-color: #9f241d;
  border-color: #9f241d;
}
.head-top .head-content .language-dropdown {
  margin-left: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.head-top .head-content .language-dropdown .btn-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px;
  background-color: #fff;
  border: 3px solid #9f241d;
  border-radius: 8px;
  width: 60px;
}
.head-top .head-content .language-dropdown .btn-language:hover {
  background-color: #f1f1f1;
}
.head-top .head-content .language-dropdown .flag-img {
  width: 45px;
  height: 30px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.head-top .head-content .language-dropdown .dropdown-menu {
  min-width: 210px;
  padding: 0;
  overflow: hidden;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.head-top .head-content .language-dropdown .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.head-top .head-content .language-dropdown .dropdown-item:hover {
  background-color: #e9ecef;
}
.head-top .head-content .language-dropdown .dropdown-toggle::after {
  display: none;
  margin-left: 0px;
  color: #6c757d;
}
.head-top .head-content .btn-toogle-menumobi {
  background-color: #fff;
  border-color: #fff;
  border-style: solid;
  color: #c00000;
}

@media (min-width: 768px) {
  .head-top {
    background-color: transparent;
  }
  .head-top .head-content {
    gap: 1rem;
  }
  .head-top .head-content .logo {
    height: 70px;
    width: 70px;
    min-width: 70px;
    padding: 3px;
  }
  .head-top .head-content .logo img {
    max-height: 64px;
  }
  .head-top .head-content .box-search {
    width: 100%;
    max-width: 500px;
  }
  .head-top .head-content .box-search .form-control {
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    padding-left: 3rem;
    border-color: #9f241d;
  }
  .head-top .head-content .box-search .btn-primary {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
  .head-top .head-content .box-right {
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .head-top .head-content .btn-primary {
    background-color: #9f241d;
    border-color: #9f241d;
  }
  .head-top .head-content .btn-primary:hover {
    background-color: #9f241d;
    border-color: #9f241d;
  }
  .head-top .head-content .language-dropdown {
    margin-left: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .head-top .head-content .language-dropdown .btn-language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px;
    background-color: #fff;
    border: 3px solid #9f241d;
    border-radius: 8px;
    width: 60px;
  }
  .head-top .head-content .language-dropdown .btn-language:hover {
    background-color: #f1f1f1;
  }
  .head-top .head-content .language-dropdown .flag-img {
    width: 45px;
    height: 30px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  .head-top .head-content .language-dropdown .dropdown-menu {
    min-width: 210px;
    padding: 0;
    overflow: hidden;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .head-top .head-content .language-dropdown .dropdown-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    cursor: pointer;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
  .head-top .head-content .language-dropdown .dropdown-item:hover {
    background-color: #e9ecef;
  }
  .head-top .head-content .language-dropdown .dropdown-toggle::after {
    display: none;
    margin-left: 0px;
    color: #6c757d;
  }
}
@media (min-width: 992px) {
  .head-top {
    background-color: transparent;
  }
  .head-top .head-content {
    gap: 1rem;
  }
  .head-top .head-content .logo {
    height: 80px;
    width: 80px;
    min-width: 80px;
    padding: 5px;
  }
  .head-top .head-content .logo img {
    max-height: 70px;
  }
  .head-top .head-content .box-search {
    max-width: 600px;
  }
  .head-top .head-content .box-search .form-control {
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    padding-left: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-color: #9f241d;
    border-width: 3px;
  }
  .head-top .head-content .box-search .icon-search {
    left: 10px;
    top: 14px;
  }
  .head-top .head-content .box-search .btn-primary {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    padding-right: 1.25rem;
  }
  .head-top .head-content .box-search .btn-primary .--txt {
    display: block;
  }
  .head-top .head-content .box-search .btn-primary svg {
    position: unset;
    display: none;
  }
  .head-top .head-content .box-right {
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .head-top .head-content .btn-primary {
    background-color: #9f241d;
    border-color: #9f241d;
  }
  .head-top .head-content .btn-primary:hover {
    background-color: #9f241d;
    border-color: #9f241d;
  }
  .head-top .head-content .language-dropdown {
    margin-left: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .head-top .head-content .language-dropdown .btn-language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px;
    background-color: #fff;
    border: 3px solid #9f241d;
    border-radius: 8px;
    width: 60px;
  }
  .head-top .head-content .language-dropdown .btn-language:hover {
    background-color: #f1f1f1;
  }
  .head-top .head-content .language-dropdown .flag-img {
    width: 45px;
    height: 30px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  .head-top .head-content .language-dropdown .dropdown-menu {
    min-width: 210px;
    padding: 0;
    overflow: hidden;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .head-top .head-content .language-dropdown .dropdown-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    cursor: pointer;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
  .head-top .head-content .language-dropdown .dropdown-item:hover {
    background-color: #e9ecef;
  }
  .head-top .head-content .language-dropdown .dropdown-toggle::after {
    display: none;
    margin-left: 0px;
    color: #6c757d;
  }
  .head-top .head-content .btn-toogle-menumobi {
    display: none;
  }
}
.menu-wrapper {
  margin-bottom: 1.5rem;
}
.menu-wrapper.--home {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
}
.menu-wrapper .dropdown-wrapper {
  display: none;
}

.dropdown-wrapper .btn-toggle {
  height: 56px;
  min-width: 56px;
  border-radius: 50px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(13, 110, 253, 0.3);
  border: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 20px;
}
.dropdown-wrapper .btn-toggle {
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 6px 6px 12px #d1d9e6, -6px -6px 12px #ffffff;
  border: 2px solid transparent;
  background-color: #f0f2f5;
  text-transform: uppercase;
  color: #333;
}
.dropdown-wrapper .btn-toggle svg {
  color: #be1111;
}
.dropdown-wrapper .btn-toggle .icon-close {
  display: none;
}
.dropdown-wrapper .btn-toggle .icon-hamburger {
  display: block;
}
.dropdown-wrapper .dropdown-item-next::after {
  content: "›";
  float: right;
  font-weight: 700;
  margin-left: 10px;
}
.dropdown-wrapper .dropdown-submenu {
  position: relative;
}
.dropdown-wrapper .dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  margin-left: 5px;
  display: none;
}
.dropdown-wrapper .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.dropdown-wrapper .dropdown-menu {
  border-radius: 15px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 8px;
}
.dropdown-wrapper .bottom-info-bar {
  position: fixed;
  bottom: 80px;
  left: 0;
  width: 100%;
  z-index: 100;
}

@media (min-width: 992px) {
  .menu-wrapper.--home {
    top: 1rem;
  }
  .menu-wrapper .dropdown-wrapper {
    display: block;
  }
}
.fade-out {
  opacity: 0;
}

/* Tùy chỉnh các biểu tượng */
.icon-left, .icon-mic {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.icon-mic {
  padding-right: 15px;
}

/* Container chứa menu */
.menu-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  background-color: #c00000;
  justify-content: center;
}

.btn-individual {
  display: flex;
  align-items: center;
  background-color: transparent;
  text-decoration: none;
  color: #fff;
  padding: 6px 10px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid transparent;
  min-height: 40px;
}

.btn-individual.active-item {
  background-color: #fff;
  border: 2px solid #be1111;
  color: #be1111;
  box-shadow: 0 5px 15px rgba(190, 17, 17, 0.2);
}

.btn-individual.active-item .icon-circle {
  background-color: #fff;
  border: 1px solid rgba(190, 17, 17, 0.1);
}

.btn-individual span {
  white-space: pre-line;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
}

.btn-individual .icon-circle {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  margin-right: 12px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  display: none;
}

.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1050;
  top: -110%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  display: block;
  padding: 50px 1rem 1rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.overlay::-webkit-scrollbar {
  width: 4px;
}
.overlay.active {
  top: 0;
}
.overlay.active .nav-item-wrapper {
  opacity: 1;
  transform: translateY(0);
}
.overlay::-webkit-scrollbar-thumb {
  background: #3b82f6;
  border-radius: 10px;
}
.overlay .overlay-content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.overlay .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.overlay .nav-item-wrapper {
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.overlay .nav-item-wrapper.open .toggle-icon {
  transform: rotate(180deg);
  color: #3b82f6;
}
.overlay .nav-item-wrapper.open .submenu {
  max-height: fit-content;
  padding: 10px 0;
  border-bottom: 2px solid #cfcfcf;
}
.overlay .nav-link-custom {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  transition: all 0.2s ease;
  border-radius: 10px;
}
.overlay .nav-link-custom:active {
  background: rgba(255, 255, 255, 0.1);
  color: #3b82f6;
}
.overlay .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  margin: 0 auto;
  border-radius: 12px;
}
.overlay .submenu-link {
  font-size: 1.1rem;
  color: #333;
  text-decoration: none;
  padding: 12px 20px;
  /* Tăng padding để dễ chạm */
  display: block;
  transition: all 0.2s ease;
  text-align: left;
}
.overlay .submenu-link:active {
  background: rgba(255, 255, 255, 0.08);
  color: #333;
}
.overlay .toggle-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: #333;
}
.overlay .close-overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1100;
  width: 50px;
  height: 50px;
  background: #be1111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

/* Media Queries cho Mobile */
@media (max-width: 767.98px) {
  .btn-individual span {
    /* display: none;*/
  }

  .btn-individual {
    padding: 5px;
    border-radius: 8px;
  }

  .btn-individual svg {
    margin-right: 0;
  }
}
/* Media Queries cho Desktop */
@media (min-width: 768px) {
  .menu-content {
    order: 1;
    gap: 20px;
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .btn-individual {
    display: flex;
    align-items: center;
    background-color: #f0f2f5;
    text-decoration: none;
    color: #333;
    padding: 6px 8px 6px 6px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 6px 6px 12px #d1d9e6, -6px -6px 12px #ffffff;
    border: 2px solid transparent;
    min-height: 55px;
  }

  .btn-individual:active {
    transform: scale(0.95);
    box-shadow: inset 4px 4px 8px #d1d9e6, inset -4px -4px 8px #ffffff;
  }

  .btn-individual:hover {
    transform: translateY(-3px);
    color: #be1111;
    box-shadow: 8px 12px 20px rgba(0, 0, 0, 0.15);
  }

  .btn-individual:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2);
  }

  .menu-content {
    order: 1;
    gap: 20px;
    padding: 0 20px;
    background-color: transparent;
  }

  .btn-individual .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 2px;
  }
}
@media (min-width: 1200px) {
  .btn-individual {
    padding: 6px 20px 6px 6px;
  }

  .btn-individual .icon-circle {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
}
/* Container bao ngoài để định vị ở đáy màn hình */
.bottom-info-bar {
  position: fixed;
  /* Cố định vị trí */
  bottom: 80px;
  /* Cách đáy màn hình 40px */
  left: 0;
  width: 100%;
  z-index: 100;
  /* Đảm bảo nằm trên các lớp khác */
}

/* Grid chứa các card */
.bottom-info-bar .info-grid {
  display: flex;
  justify-content: space-around;
}

/* Chi tiết cho từng card màu xám */
.bottom-info-bar .info-card {
  background-color: #00000091;
  width: 30%;
  border-radius: 25px;
  color: white;
  text-align: center;
  font-weight: bold;
  padding: 1rem;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.bottom-info-bar .info-card:hover {
  transform: translateY(-10px);
  /* Hiệu ứng nổi lên khi di chuột */
  background-color: #ad1919a3;
}

.bottom-info-bar .info-card p {
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Icon con dấu màu đỏ */
.bottom-info-bar .seal-icon {
  margin-bottom: 10px;
  text-align: center;
}

.bottom-info-bar .seal-icon img {
  width: 45px;
  height: 45px;
  /* Tạo hiệu ứng bóng đổ màu đỏ nhạt quanh icon */
  filter: drop-shadow(0 4px 8px rgba(195, 19, 19, 0.5));
}

@media (min-width: 992px) {
  .bottom-info-bar {
    bottom: 20px;
    /* Cách đáy màn hình 40px */
  }

  /* Grid chứa các card */
  .bottom-info-bar .info-grid {
    justify-content: center;
    gap: 20px;
    /* Khoảng cách giữa các card */
  }

  .bottom-info-bar .info-card {
    width: 14rem;
    height: 7rem;
    border-radius: 25px;
    font-size: 1.25rem;
    padding: 1rem;
  }

  .bottom-info-bar .seal-icon {
    margin-bottom: 10px;
  }

  .bottom-info-bar .seal-icon img {
    width: 50px;
    height: 50px;
  }

  /* Chi tiết cho từng card màu xám */
  .info-card {
    background-color: #00000091;
    width: 16rem;
    height: 16rem;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
}
@media (min-width: 1200px) {
  .bottom-info-bar {
    bottom: 40px;
    /* Cách đáy màn hình 40px */
  }

  .bottom-info-bar .info-grid {
    gap: 2rem;
  }

  .bottom-info-bar .info-card {
    width: 14rem;
    height: 8rem;
    border-radius: 25px;
    font-size: 1.25rem;
    padding: 1.25rem;
  }

  .bottom-info-bar .seal-icon img {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1400px) {
  .bottom-info-bar .info-card {
    width: 18rem;
    height: 12rem;
    border-radius: 25px;
    font-size: 1.5rem;
  }

  .bottom-info-bar .seal-icon img {
    width: 65px;
    height: 65px;
  }
}
.dropdown-menu-container {
  position: relative;
  display: inline-block;
}

.mega-menu-content {
  display: none;
  position: absolute;
  bottom: 70px;
  left: 0;
  background-color: white;
  min-width: 450px;
  border: 2px solid #be1111;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 20px;
  z-index: 1000;
}

.dropdown-menu-container.show .mega-menu-content {
  display: flex;
  animation: fadeInUp 0.3s ease;
}

.menu-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-column a {
  text-decoration: none;
  color: #be1111;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 15px;
  border-bottom: 1px solid #f2e6e6;
  text-align: center;
  transition: background 0.2s;
}

.menu-column a:last-child {
  border-bottom: none;
}

.menu-column a:hover {
  background-color: #fff5f5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.box_video {
  position: relative;
}

.box_video #home-video {
  display: block;
  width: 100%;
  height: calc(100vh - 70px);
  z-index: -100;
  object-fit: cover;
  background-color: black;
}

@media (min-width: 992px) {
  .box_video #home-video {
    height: calc(100vh - 80px);
  }

  .menu-bottom {
    display: none;
  }
}
.menu-bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 99;
}

.menu-bottom .container-fluid {
  background-color: #fff;
  box-shadow: 0 -3px 5px 0 rgba(193, 193, 193, 0.3);
  -webkit-box-shadow: 0 -3px 5px 0 rgba(193, 193, 193, 0.3);
  -moz-box-shadow: 0 -3px 5px 0 rgba(193, 193, 193, 0.3);
}

.menu-bottom .link-menu a {
  color: #cfcccc;
  text-align: center;
  padding: 7px 0;
  display: block;
  width: 20%;
  text-decoration: none;
}

.menu-bottom .link-menu a i {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
}

.menu-bottom .link-menu a span {
  font-size: 0.8rem;
  margin-top: 5px;
  line-height: 15px;
  height: 30px;
}

.menu-bottom .link-menu a:hover {
  text-decoration: none;
}

.menu-bottom .link-menu a.home-center {
  width: 74px;
  height: 74px;
  padding: 8px;
  margin: -0.75rem auto 0.25rem auto;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.menu-bottom .link-menu a:last-child {
  border-right: 0 solid #fff;
}

.menu-bottom .link-menu a.active {
  color: #326822;
}

.list-blogs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.list-blogs .blog-item {
  border-width: 1px;
  border-style: solid;
  border-color: #d1d5db;
}
.list-blogs .blog-item * {
  --tw-ring-inset: var(--tw-empty, );
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, .5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
}
.list-blogs .blog-item:hover {
  -webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, #9ca3af 0px 10px 15px -3px, #9ca3af 0px 4px 6px -4px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, #9ca3af 0px 10px 15px -3px, #9ca3af 0px 4px 6px -4px;
}
.list-blogs .blog-item:hover .blog-item-thumbnail img {
  transform: scale(1.1);
}
.list-blogs .blog-item:hover .blog-item-name {
  color: #9f241d;
}
.list-blogs .blog-item-thumbnail {
  display: block;
  padding: 5px;
  overflow: hidden;
}
.list-blogs .blog-item-thumbnail img {
  -webkit-transition-duration: 0.7s;
  -o-transition-duration: 0.7s;
  transition-duration: 0.7s;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
}
.list-blogs .blog-item-summary {
  font-size: 18px;
  color: #7d7d7d;
}
.list-blogs .blog-item-info {
  padding: 1rem;
}
.list-blogs .blog-item-name {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  text-decoration: none;
}
.list-blogs .blog-item .btn-white {
  text-decoration: underline;
  color: #2563eb;
}

@media (min-width: 768px) {
  .list-blogs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
  .list-blogs .blog-item {
    border-width: 1px;
    border-style: solid;
    border-color: #d1d5db;
    background-color: #fff;
  }
  .list-blogs .blog-item-thumbnail {
    display: block;
    padding: 5px;
  }
  .list-blogs .blog-item-thumbnail img {
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
  }
  .list-blogs .blog-item-summary {
    font-size: 18px;
    color: #7d7d7d;
  }
  .list-blogs .blog-item-name {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .list-blogs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
  .list-blogs .blog-item {
    border-width: 1px;
    border-style: solid;
    border-color: #d1d5db;
  }
  .list-blogs .blog-item-thumbnail {
    display: block;
  }
  .list-blogs .blog-item-summary {
    font-size: 18px;
    color: #7d7d7d;
  }
  .list-blogs .blog-item-name {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .list-blogs {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .list-blogs .blog-item {
    border-width: 1px;
    border-style: solid;
    border-color: #d1d5db;
  }
  .list-blogs .blog-item-thumbnail {
    display: block;
  }
  .list-blogs .blog-item-summary {
    font-size: 18px;
    color: #7d7d7d;
  }
  .list-blogs .blog-item-name {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .list-blogs {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
  }
  .list-blogs .blog-item {
    border-width: 1px;
    border-style: solid;
    border-color: #d1d5db;
  }
  .list-blogs .blog-item-thumbnail {
    display: block;
  }
  .list-blogs .blog-item-summary {
    font-size: 18px;
    color: #7d7d7d;
  }
  .list-blogs .blog-item-name {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
  }
}
.product-group {
  padding: 0 1rem;
}
.product-group .product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #D73932;
  margin-bottom: 1rem;
}
.product-group .product-header .title-group {
  text-decoration: none;
  color: #000;
  display: inline-block;
  font-size: clamp(1.125rem, 0.2361rem + 1.8519vw, 1.625rem);
}
.products-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #ebebeb;
  margin-top: 17px;
  margin-bottom: 17px;
}
.products-view .product-box {
  text-align: left;
  margin-bottom: 14px;
  background: #fff;
  position: relative;
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
  padding: 15px;
  padding-bottom: 5px;
  margin: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.products-view .product-box:hover {
  z-index: 99;
  -webkit-box-shadow: inset 0px 0px 0px 2px #D73932;
  -moz-box-shadow: inset 0px 0px 0px 2px #D73932;
  box-shadow: inset 0px 0px 0px 2px #D73932;
}
.products-view .product-box .product-thumbnail {
  display: -webkit-flex;
  -webkit-align-items: center;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.products-view .product-box .product-thumbnail img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}
.products-view .product-box .product-info {
  z-index: 10;
}
.products-view .product-box .product-name {
  font-size: 1em;
  /* line-height: 1.5; */
  color: #000;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: nowrap;
  margin: 0.5rem 0;
  display: block;
  text-decoration: unset;
  text-align: center;
}
.products-view .product-box .product-name a {
  color: #252525;
  text-decoration: none;
}
.products-view .product-box .product-name a:hover {
  color: #D73932;
}
.products-view .product-box .bizweb-product-reviews-badge {
  margin: 0;
  line-height: 19px;
  margin-bottom: 8px;
}
.products-view .product-box .bizweb-product-reviews-badge > div {
  display: none;
}
.products-view .product-box .bizweb-product-reviews-badge > div.bizweb-product-reviews-star {
  display: block;
}
.products-view .product-box .btn-cart {
  display: block;
  border: 1px dashed #D73932;
  border-radius: 0;
  color: #D73932;
  font-weight: 700;
  margin-bottom: 10px;
}
.products-view .product-box .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d73932;
  display: flex;
  justify-content: center;
}
.products-view .product-box .product-price {
  color: #D73932;
  font-size: 1.21429em;
  line-height: 23px;
  display: block;
  font-weight: 400;
  margin: 0 10px 0 0;
}
.products-view .product-box .product-price-old {
  text-decoration: line-through;
  font-size: 1em;
  line-height: 23px;
  display: inline-block;
  color: #adadad;
}
.products-view .product-box .sale-flash {
  position: absolute;
  font-size: 1em;
  color: #FFF;
  width: 41px;
  height: 41px;
  line-height: 42px;
  font-weight: 700;
  top: 10px;
  right: 10px;
  text-align: center;
  z-index: 99;
  background-color: transparent !important;
  background: url("/images/sale.png");
  font-size: 12px;
}
.products-view .product-box .product-summary {
  font-size: 1em;
  color: #acacac;
  line-height: 20px;
}
.products-view .product-box .form {
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media (min-width: 768px) {
  .products-view {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .products-view {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .products-view {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 1400px) {
  .products-view {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .profile-grid {
    gap: 3rem;
  }
}
@media (min-width: 1200px) {
  .profile-grid {
    gap: 4rem;
  }
}
.profile-item {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 1.5rem;
}
.profile-item .profile-user {
  background-image: url(/img/bg-hsns.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}
.profile-item .profile-user__school {
  padding: 1rem 0 0.25rem 0;
  line-height: 1.5;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
.profile-item .profile-user__name {
  padding: 0.5rem 0;
  line-height: 1.5;
  color: #800000;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}
.profile-item .profile-user__avatar img {
  aspect-ratio: 1;
  width: 70%;
  display: block;
  border-radius: 50%;
  border: 2px solid #800000;
  margin: 0.5rem auto;
}
.profile-item .profile-user .social-bar {
  justify-content: center;
}
.profile-item .profile-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 1rem;
}
.profile-item .profile-contact__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-item .profile-contact__row .mini-icon {
  color: #800000;
  font-size: 10px;
  width: 22px;
  height: 22px;
  border: 1px solid #800000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-item .profile-contact__row .contact-text {
  font-weight: 500;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

.social-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}
.social-bar .social-item {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  font-size: 18px;
}
.social-bar .fb {
  background: #3b5998;
}
.social-bar .tiktok {
  background: #000;
}
.social-bar .whatsapp {
  background: #25d366;
}
.social-bar .messenger {
  background: #0084ff;
}
.social-bar .youtube {
  background: #ff0000;
}
.social-bar .zalo {
  background: #0068ff;
  font-size: 11px;
  font-weight: bold;
}

.details-product .rte {
  color: #898989;
}

.details-product h1.title-head {
  margin-top: 0;
  font-size: 30px;
  color: black;
  font-weight: 400;
}

.details-product span.line {
  margin: 0 5px;
  transform: translateY(-1px);
  display: inline-block;
}

.details-product .masp {
  color: #898989;
}

.details-product .detail-header-info {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px dotted #cccccc;
}

.details-product .inventory_quantity {
  color: red;
}

.details-product .inventory_quantity span {
  color: red;
}

.details-product .large-image img {
  border: 1px solid #ebebeb;
  width: 100%;
}

.details-product .contact {
  font-weight: 700;
  font-size: 1.28571em;
}

.details-product .contact a {
  color: #ff0000;
}

.details-product #gallery_01 {
  margin-top: 20px;
}

.details-product #gallery_01 img {
  border: 1px solid #ebebeb;
}

.details-product #gallery_01 img:hover {
  border: 1px solid #D73932;
}

.details-product .owl-carousel.owl-loaded {
  overflow: hidden;
}

.details-product .details-pro .product-price {
  font-size: 2.57143em;
  display: inline-block;
}

.details-product .details-pro .price-box {
  margin: 10px 0 25px;
  padding-top: 30px;
  border-top: 1px dotted #cccccc;
}

.details-product .details-pro .price-box del {
  color: #adadad;
  font-size: 1.42857em;
}

.details-product .selector-wrapper {
  min-width: 260px;
}

.details-product .custom-btn-number {
  position: relative;
  padding: 0;
  margin-bottom: 20px;
  border: none;
  box-shadow: none;
  width: 100px;
  display: inline-block;
}

.details-product .custom-btn-number #qty {
  height: 60px;
  font-size: 1em;
  margin: 0;
  padding: 0 23px;
  border-radius: 3px;
}

.details-product .custom-btn-number .qtyminus {
  position: absolute;
  right: 17px;
  text-align: center;
  bottom: 5px;
  width: 20px;
  height: 25px;
  line-height: 13px;
  font-size: 1em;
  cursor: pointer;
  color: #898989;
}

.details-product .custom-btn-number .qtyplus {
  position: absolute;
  right: 17px;
  text-align: center;
  top: 5px;
  width: 20px;
  height: 25px;
  line-height: 35px;
  font-size: 1em;
  cursor: pointer;
  color: #898989;
}

.details-product .form-detail-action {
  width: 100%;
}

.details-product .form-detail-action label {
  font-weight: 400;
  display: inline-block;
  min-width: 80px;
}

.details-product .form-detail-action button, .details-product .form-detail-action .add_to_cart {
  float: right;
  height: 60px;
  width: calc(100% - 210px);
  border-radius: 3px;
  font-size: 1.28571em;
  text-transform: uppercase;
}

.details-product .form-wishlist {
  margin: 0;
  right: 30px;
  top: 15px;
  z-index: 10;
}

.details-product .form-wishlist a {
  padding: 0;
  border: none;
  color: #898989;
  background: #fff;
  border-radius: 50%;
  line-height: 34px;
  width: 33px;
  height: 33px;
  text-align: center;
}

.details-product .form-wishlist a.iWishAdded {
  color: #D73932;
}

.details-product .form-detail-action .add_to_cart {
  float: right;
  height: 60px;
  line-height: 60px;
  width: calc(100% - 210px);
  border-radius: 3px;
  font-size: 1.28571em;
  text-transform: uppercase;
}

.large-image a {
  display: block;
  position: relative;
}

.large-image a .img-hover {
  background: rgba(255, 255, 255, 0.7) url(../../../images/zoom-in-icon.png) center no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.large-image a:hover .img-hover {
  opacity: 1;
}

.details-product .custom-btn-number {
  height: 60px;
}

.details-product .custom-btn-number input {
  height: 60px;
  border: 1px solid #e1e1e1;
  padding: 0 20px;
  width: 100%;
  max-width: 100%;
  display: block;
}

.product-tab .tab-link {
  padding: 0 40px;
  border-left: 1px solid #e1e1e1;
  background: #fbfbfb;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .product-tab .tab-link {
    float: left;
  }
}
.product-tab .tab-link h3 {
  margin: 10px 0;
  font-size: 1.14286em;
}

.product-tab .tab-link span {
  font-size: 1.14286em;
}

.product-tab .tab-link.current {
  background: #fff;
  position: relative;
}

@media (min-width: 768px) {
  .product-tab .tab-link.current:before {
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    z-index: 1111;
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
  }
}
.product-tab .tab-content {
  border: 1px solid #e1e1e1 !important;
  display: none;
}

.product-tab .tab-content.current {
  display: block;
  padding: 24px;
  border: 1px solid #e1e1e1 !important;
  min-height: 200px;
}

@media (min-width: 768px) {
  .product-tab .tab-content.current {
    margin-top: -72px;
  }
}
